/system/core/init/ |
keyword_map.h | 47 auto min_args = std::get<0>(function_info); local 49 if (min_args == max_args && num_args != min_args) { 51 keyword.c_str(), min_args, 52 (min_args > 1 || min_args == 0) ? "s" : ""); 56 if (num_args < min_args || num_args > max_args) { 59 keyword.c_str(), min_args, 60 min_args > 1 ? "s" : ""); 63 keyword.c_str(), min_args, max_args) [all...] |
/external/chromium-trace/catapult/third_party/gsutil/gslib/commands/ |
mv.py | 103 min_args=1, variable in class:MvCommand
|
cat.py | 92 min_args=1, variable in class:CatCommand
|
mb.py | 140 min_args=1, variable in class:MbCommand
|
rb.py | 63 min_args=1, variable in class:RbCommand
|
stat.py | 92 min_args=1, variable in class:StatCommand
|
version.py | 62 min_args=0, variable in class:VersionCommand
|
compose.py | 80 min_args=2, variable in class:ComposeCommand
|
cors.py | 100 min_args=2, variable in class:CorsCommand
|
hash.py | 74 min_args=1, variable in class:HashCommand
|
lifecycle.py | 101 min_args=2, variable in class:LifecycleCommand
|
notification.py | 151 min_args=3, variable in class:NotificationCommand
|
versioning.py | 73 min_args=2, variable in class:VersioningCommand
|
web.py | 141 min_args=2, variable in class:WebCommand
|
defacl.py | 157 min_args=2, variable in class:DefAclCommand
|
du.py | 119 min_args=0, variable in class:DuCommand
|
help.py | 87 min_args=0, variable in class:HelpCommand
|
logging.py | 128 min_args=2, variable in class:LoggingCommand
|
rm.py | 176 min_args=0, variable in class:RmCommand
|
signurl.py | 197 min_args=2, variable in class:UrlSignCommand
|
update.py | 101 min_args=0, variable in class:UpdateCommand
|
/external/chromium-trace/catapult/third_party/gsutil/gslib/ |
command.py | 298 'min_args', 337 command_name_aliases=None, min_args=0, 348 min_args=min_args, 450 if (len(self.args) < self.command_spec.min_args 496 if len(self.args) < self.command_spec.min_args: 497 tail_str = 's' if self.command_spec.min_args > 1 else '' 499 (self.command_name, self.command_spec.min_args, tail_str)) [all...] |
/external/libvpx/libvpx/examples/ |
vpx_temporal_svc_encoder.c | 498 const int min_args = min_args_base + 1; local 500 const int min_args = min_args_base; local 508 if (argc < min_args) { 537 if (argc != min_args + mode_to_num_layers[layering_mode]) {
|
/external/wpa_supplicant_8/hostapd/ |
hostapd_cli.c | 257 int min_args, int argc, char *argv[]) 261 if (argc < min_args) { 263 cmd, min_args, min_args > 1 ? "s are" : " is"); [all...] |
/art/compiler/utils/ |
test_dex_file_builder.h | 299 size_t min_args = std::min(lhs.args.size(), rhs.args.size()); local 300 for (size_t i = 0; i != min_args; ++i) {
|