/external/protobuf/src/google/protobuf/compiler/ |
command_line_interface_unittest.cc | 294 vector<string> args = Split(command, " ", true); local 337 args.push_back("--plugin=prefix-gen-plug=" + plugin_path); 341 google::protobuf::scoped_array<const char * > argv(new const char* [args.size()]); 343 for (int i = 0; i < args.size(); i++) { 344 args[i] = StringReplace(args[i], "$tmpdir", temp_directory_, true); 345 argv[i] = args[i].c_str(); 356 return_code_ = cli_.Run(args.size(), argv.get()); 1715 vector<string> args; local [all...] |
/external/regex-re2/re2/testing/ |
re2_test.cc | 248 const RE2::Arg* const args[2] = { &argv[0], &argv[1] }; member in class:re2::RE2 251 EXPECT_TRUE(RE2::ConsumeN(&input, "\\s*(\\w+)", args, 0)); // Skips "one". 256 EXPECT_TRUE(RE2::ConsumeN(&input, "\\s*(\\w+)", args, 1)); 259 // Multi-args 262 EXPECT_TRUE(RE2::ConsumeN(&input, "\\s*(\\w+)\\s*(\\d+)", args, 2)); 297 const RE2::Arg* const args[2] = { &argv[0], &argv[1] }; member in class:re2::RE2 300 EXPECT_TRUE(RE2::FindAndConsumeN(&input, "(\\w+)", args, 0)); // Skips "one". 305 EXPECT_TRUE(RE2::FindAndConsumeN(&input, "(\\w+)", args, 1)); 308 // Multi-args 311 EXPECT_TRUE(RE2::FindAndConsumeN(&input, "(\\w+)\\s*(\\d+)", args, 2)) 525 const RE2::Arg* const args[2] = { &argv[0], &argv[1] }; member in class:re2::RE2 609 const RE2::Arg* const args[2] = { &argv[0], &argv[1] }; member in class:re2::RE2 [all...] |
/external/regex-re2/util/ |
pcre.cc | 27 // Maximum number of args we can set 160 const Arg* args[kMaxArgs]; local 162 if (&a0 == &no_more_args) goto done; args[n++] = &a0; 163 if (&a1 == &no_more_args) goto done; args[n++] = &a1; 164 if (&a2 == &no_more_args) goto done; args[n++] = &a2; 165 if (&a3 == &no_more_args) goto done; args[n++] = &a3; 166 if (&a4 == &no_more_args) goto done; args[n++] = &a4; 167 if (&a5 == &no_more_args) goto done; args[n++] = &a5; 168 if (&a6 == &no_more_args) goto done; args[n++] = &a6; 169 if (&a7 == &no_more_args) goto done; args[n++] = &a7 203 const Arg* args[kMaxArgs]; local 246 const Arg* args[kMaxArgs]; local 295 const Arg* args[kMaxArgs]; local [all...] |
/external/selinux/libsepol/cil/src/ |
android.c | 62 hashtab_datum_t d, __attribute__ ((unused))void *args) 77 struct version_args *args = (struct version_args *) extra_args; local 94 datum->db = args->db; 104 rc = hashtab_insert(args->vers_map, (hashtab_key_t) key, (hashtab_datum_t) datum); 204 static int __cil_attrib_convert_type(struct cil_tree_node *node, struct version_args *args) 213 new_key = __cil_attrib_get_versname(type->datum.name, args->num); 218 rc = cil_gen_node(args->db, node, (struct cil_symtab_datum *) typeattr, 265 static int cil_attrib_type_expr(struct cil_list *expr_str, struct version_args *args) 276 rc = cil_attrib_type_expr((struct cil_list *)curr->data, args); 282 enum plat_flavor pf = __cil_get_plat_flavor(args->vers_map, key) 607 struct version_args *args = (struct version_args *) extra_args; local [all...] |
/external/selinux/libsepol/src/ |
hierarchy.c | 155 void *args) 157 struct bounds_expand_args *a = (struct bounds_expand_args *)args; 193 struct bounds_expand_args args; local 200 args.handle = handle; 201 args.p = p; 202 args.avtab = global_avtab; 203 args.parent = parent; 204 rc = avtab_map(&p->te_avtab, bounds_expand_rule_callback, &args); 363 void *args) 365 struct bounds_check_args *a = (struct bounds_check_args *)args; 382 struct bounds_check_args args; local 494 struct bounds_args args; local 539 struct bounds_args args; local 582 struct bounds_args args; local 648 struct bounds_args args; local [all...] |
/external/skia/src/gpu/ |
GrReducedClip.cpp | 789 GrPathRenderer::StencilPathArgs args; local [all...] |
/external/skia/src/gpu/glsl/ |
GrGLSLShaderBuilder.h | 98 va_list args; local 99 va_start(args, fmt); 100 this->definitions().appendVAList(fmt, args); 101 va_end(args); 111 va_list args; variable 112 va_start(args, format); 113 this->code().appendVAList(format, args); 114 va_end(args); variable 120 va_list args; variable 121 va_start(args, format) 123 va_end(args); variable [all...] |
/external/skia/src/utils/ |
SkDumpCanvas.cpp | 183 va_list args; local 184 va_start(args, format); 185 vsnprintf(buffer, BUFFER_SIZE, format, args); 186 va_end(args);
|
/external/skia/third_party/lua/src/ |
lua.c | 115 "usage: %s [options] [script [args]]\n" 176 lua_insert(L, base); /* put it under chunk and args */ 348 /* indices of various argument indicators in array args */ 357 static int collectargs (char **argv, int *args) { 369 args[has_E] = 1; 373 args[has_i] = 1; /* go through */ 376 args[has_v] = 1; 379 args[has_e] = 1; /* go through */ 442 int args[num_has]; local 443 args[has_i] = args[has_v] = args[has_e] = args[has_E] = 0 [all...] |
/external/skia/tools/skpbench/ |
skpbench.cpp | 401 va_list args; local 402 va_start(args, format); 403 vfprintf(stderr, format, args); 404 va_end(args);
|
/external/sl4a/Common/src/com/googlecode/android_scripting/rpc/ |
MethodDescriptor.java | 87 final Object[] args = new Object[parameterTypes.length]; local 90 if (parameters.length() > args.length) { 94 for (int i = 0; i < args.length; i++) { 97 args[i] = convertParameter(parameters, i, parameterType); 99 args[i] = MethodDescriptor.getDefaultValue(parameterType, annotations[i]); 105 return invoke(manager, args); 119 final Object[] args = new Object[parameterTypes.length]; local 125 args[i] = convertParameter(parameters, parameterType, parameterName); 127 args[i] = MethodDescriptor.getDefaultValue(parameterType, annotations[i]); 132 return invoke(manager, args); [all...] |
/external/strace/ |
btrfs.c | 602 struct btrfs_ioctl_defrag_range_args args; local 606 if (umove_or_printaddr(tcp, arg, &args)) 609 tprintf("{start=%" PRIu64 ", len=", (uint64_t)args.start); 611 tprintf("%" PRIu64, (uint64_t) args.len); 612 if (args.len == UINT64_MAX) 616 printflags64(btrfs_defrag_flags, args.flags, 619 args.extent_thresh); 620 printxval(btrfs_compress_types, args.compress_type, 627 struct btrfs_ioctl_dev_info_args args; local 637 if (umove_or_printaddr(tcp, arg, &args)) 661 struct_btrfs_ioctl_dev_replace_args args; local 796 struct btrfs_ioctl_fs_info_args args; local 833 struct btrfs_ioctl_get_dev_stats args; local 882 struct btrfs_ioctl_ino_lookup_args args; local 922 struct btrfs_ioctl_ino_path_args args; local 951 struct btrfs_ioctl_logical_ino_args args; local 980 struct btrfs_ioctl_qgroup_assign_args args; local 993 struct btrfs_ioctl_qgroup_create_args args; local 1005 struct btrfs_ioctl_qgroup_limit_args args; local 1021 struct btrfs_ioctl_quota_ctl_args args; local 1035 struct btrfs_ioctl_quota_rescan_args args; local 1046 struct btrfs_ioctl_quota_rescan_args args; local 1062 struct_btrfs_ioctl_received_subvol_args args; local 1092 struct btrfs_ioctl_scrub_args args; local 1153 struct btrfs_ioctl_search_args args; local 1175 struct btrfs_ioctl_search_args_v2 args; local 1205 struct_btrfs_ioctl_send_args args; local 1236 struct btrfs_ioctl_space_args args; local 1284 struct btrfs_ioctl_vol_args args; local 1301 struct_btrfs_ioctl_vol_args_v2 args; local [all...] |
/external/strace/tests/ |
ioctl_dm.c | 112 struct args { struct 171 static struct args dummy_check_cmds_nodev[] = { 176 static struct args dummy_check_cmds[] = {
|
/external/strace/tests-m32/ |
ioctl_dm.c | 112 struct args { struct 171 static struct args dummy_check_cmds_nodev[] = { 176 static struct args dummy_check_cmds[] = {
|
/external/strace/tests-mx32/ |
ioctl_dm.c | 112 struct args { struct 171 static struct args dummy_check_cmds_nodev[] = { 176 static struct args dummy_check_cmds[] = {
|
/external/swiftshader/third_party/LLVM/tools/bugpoint/ |
Miscompilation.cpp | 785 std::vector<Value*> args;
local 790 args.push_back(I);
795 CallInst *call = CallInst::Create(oldMainProto, args, "", BB);
[all...] |
/external/swiftshader/third_party/LLVM/unittests/VMCore/ |
PassManagerTest.cpp | 512 Function::arg_iterator args = func_test4->arg_begin(); local 513 Value* int1_f = args++;
|
/external/swiftshader/third_party/PowerVR_SDK/Tools/ |
PVRTPrint3D.cpp | 559 va_list args; local 561 va_start(args, pszFormat); 562 vswprintf(s_Text, MAX_LETTERS+1, pszFormat, args); 563 va_end(args); 622 va_list args; 626 va_start(args, pszFormat); 627 vsnprintf(s_Text, MAX_LETTERS+1, pszFormat, args); 628 va_end(args); [all...] |
/external/syslinux/bios/com32/cmenu/ |
test.c | 97 char *curr,*next,*p,*args; local 123 // split command into command and args (may be empty) 124 args = curr; 125 while ( (*args != ' ') && (*args != '\0') ) args++; 126 if (*args) { // found a space 127 *args++ = '\0'; 128 while (*args == ' ') args++; // skip over space [all...] |
test2.c | 97 char *curr,*next,*p,*args; local 123 // split command into command and args (may be empty) 124 args = curr; 125 while ( (*args != ' ') && (*args != '\0') ) args++; 126 if (*args) { // found a space 127 *args++ = '\0'; 128 while (*args == ' ') args++; // skip over space [all...] |
/external/syslinux/com32/lua/src/ |
lua.c | 122 "usage: %s [options] [script [args]]\n" 183 lua_insert(L, base); /* put it under chunk and args */ 355 /* indices of various argument indicators in array args */ 364 static int collectargs (char **argv, int *args) { 376 args[has_E] = 1; 380 args[has_i] = 1; /* go through */ 383 args[has_v] = 1; 386 args[has_e] = 1; /* go through */ 449 int args[num_has]; local 450 args[has_i] = args[has_v] = args[has_e] = args[has_E] = 0 [all...] |
/external/syslinux/efi32/com32/cmenu/ |
test.c | 97 char *curr,*next,*p,*args; local 123 // split command into command and args (may be empty) 124 args = curr; 125 while ( (*args != ' ') && (*args != '\0') ) args++; 126 if (*args) { // found a space 127 *args++ = '\0'; 128 while (*args == ' ') args++; // skip over space [all...] |
test2.c | 97 char *curr,*next,*p,*args; local 123 // split command into command and args (may be empty) 124 args = curr; 125 while ( (*args != ' ') && (*args != '\0') ) args++; 126 if (*args) { // found a space 127 *args++ = '\0'; 128 while (*args == ' ') args++; // skip over space [all...] |
/external/syslinux/efi64/com32/cmenu/ |
test.c | 97 char *curr,*next,*p,*args; local 123 // split command into command and args (may be empty) 124 args = curr; 125 while ( (*args != ' ') && (*args != '\0') ) args++; 126 if (*args) { // found a space 127 *args++ = '\0'; 128 while (*args == ' ') args++; // skip over space [all...] |
test2.c | 97 char *curr,*next,*p,*args; local 123 // split command into command and args (may be empty) 124 args = curr; 125 while ( (*args != ' ') && (*args != '\0') ) args++; 126 if (*args) { // found a space 127 *args++ = '\0'; 128 while (*args == ' ') args++; // skip over space [all...] |