Lines Matching refs:total
146 foreach ($nameList as $given => $total) {
147 if ($total < $threshold) {
988 * @param int $total
992 private function topTenOldestQuery(string $sex, int $total): array argument
998 ->take($total)
1019 * @param int $total
1023 public function topTenOldest(int $total = 10): string argument
1025 $records = $this->topTenOldestQuery('BOTH', $total);
1035 * @param int $total
1039 public function topTenOldestList(int $total = 10): string argument
1041 $records = $this->topTenOldestQuery('BOTH', $total);
1051 * @param int $total
1055 public function topTenOldestFemale(int $total = 10): string argument
1057 $records = $this->topTenOldestQuery('F', $total);
1067 * @param int $total
1071 public function topTenOldestFemaleList(int $total = 10): string argument
1073 $records = $this->topTenOldestQuery('F', $total);
1083 * @param int $total
1087 public function topTenOldestMale(int $total = 10): string argument
1089 $records = $this->topTenOldestQuery('M', $total);
1099 * @param int $total
1103 public function topTenOldestMaleList(int $total = 10): string argument
1105 $records = $this->topTenOldestQuery('M', $total);
1116 * @param int $total
1120 private function topTenOldestAliveQuery(string $sex, int $total): array argument
1143 ->take($total)
1157 * @param int $total
1161 public function topTenOldestAlive(int $total = 10): string argument
1167 $records = $this->topTenOldestAliveQuery('BOTH', $total);
1177 * @param int $total
1181 public function topTenOldestListAlive(int $total = 10): string argument
1187 $records = $this->topTenOldestAliveQuery('BOTH', $total);
1197 * @param int $total
1201 public function topTenOldestFemaleAlive(int $total = 10): string argument
1207 $records = $this->topTenOldestAliveQuery('F', $total);
1217 * @param int $total
1221 public function topTenOldestFemaleListAlive(int $total = 10): string argument
1227 $records = $this->topTenOldestAliveQuery('F', $total);
1237 * @param int $total
1241 public function topTenOldestMaleAlive(int $total = 10): string argument
1247 $records = $this->topTenOldestAliveQuery('M', $total);
1257 * @param int $total
1261 public function topTenOldestMaleListAlive(int $total = 10): string argument
1267 $records = $this->topTenOldestAliveQuery('M', $total);
1335 * @param int $total
1339 private function getPercentage(int $count, int $total): string argument
1341 return $total !== 0 ? I18N::percentage($count / $total, 1) : '';