Home
last modified time | relevance | path

Searched refs:arg_string (Results 1 - 10 of 10) sorted by relevance

/third_party/ltp/pan/
H A Dsplitstr.c63 char *arg_string = NULL, **arg_array = NULL, *cur_tok = NULL; in splitstr() local
80 arg_string = strdup(str); in splitstr()
82 if (arg_string == NULL) { in splitstr()
96 free(arg_string); in splitstr()
104 * Use strtok() to parse 'arg_string', placing pointers to the in splitstr()
108 cur_tok = strtok(arg_string, separator); in splitstr()
119 free(arg_string); in splitstr()
/third_party/mesa3d/src/mapi/glapi/gen/
H A Dgl_table.py47 arg_string = f.get_parameter_string()
49 f.return_type, f.name, arg_string, f.offset))
164 arg_string = gl_XML.create_parameter_string(f.parameters, 0)
166 print('typedef %s (GLAPIENTRYP _glptr_%s)(%s);' % (f.return_type, f.name, arg_string))
173 """.format(f.name, f.return_type, arg_string))
/third_party/ltp/testcases/kernel/fs/doio/
H A Dstring_to_tokens.c42 * int string_to_tokens(arg_string, arg_array, array_size, separator)
43 * char *arg_string;
55 * This function parses the string 'arg_string', placing pointers to
65 * were found in 'arg_string'.
69 * This function uses strtok() to parse 'arg_string', and thus
70 * physically alters 'arg_string' by placing null characters where the
80 string_to_tokens(char *arg_string, char *arg_array[], int array_size, in string_to_tokens() argument
90 * Use strtok() to parse 'arg_string', placing pointers to the in string_to_tokens()
93 if ((arg_array[num_toks] = strtok(arg_string, separator)) == NULL) { in string_to_tokens()
106 * Return the number of tokens that were found in 'arg_string' in string_to_tokens()
[all...]
/third_party/python/Lib/
H A Dargparse.py1934 for i, arg_string in enumerate(arg_strings_iter):
1937 if arg_string == '--':
1939 for arg_string in arg_strings_iter:
1945 option_tuple = self._parse_optional(arg_string)
2166 for arg_string in arg_strings:
2169 if not arg_string or arg_string[0] not in self.fromfile_prefix_chars:
2170 new_arg_strings.append(arg_string)
2175 with open(arg_string[1:]) as args_file:
2229 def _parse_optional(self, arg_string)
[all...]
/third_party/googletest/googlemock/src/
H A Dgmock.cc150 const std::string arg_string = StreamableToString(argv[i]); in InitGoogleMockImpl() local
151 const char* const arg = arg_string.c_str(); in InitGoogleMockImpl()
/third_party/pulseaudio/src/modules/dbus/
H A Diface-core.c1462 char *arg_string = NULL; in handle_load_module() local
1507 arg_string = pa_strbuf_to_string(arg_buffer); in handle_load_module()
1509 if (pa_module_load(&module, c->core, name, arg_string) < 0) { in handle_load_module()
1524 pa_xfree(arg_string); in handle_load_module()
/third_party/node/src/
H A Dnode_worker.cc549 std::string arg_string(arg_utf8_value.out(), arg_utf8_value.length()); in New()
550 exec_argv.push_back(arg_string); in New()
/third_party/mesa3d/src/gtest/src/
H A Dgtest.cc5998 const std::string arg_string = StreamableToString(argv[i]); in ParseGoogleTestFlagsOnlyImpl() local
5999 const char* const arg = arg_string.c_str(); in ParseGoogleTestFlagsOnlyImpl()
6013 } else if (arg_string == "--help" || arg_string == "-h" || in ParseGoogleTestFlagsOnlyImpl()
6014 arg_string == "-?" || arg_string == "/?" || in ParseGoogleTestFlagsOnlyImpl()
/third_party/googletest/googletest/src/
H A Dgtest.cc6625 const std::string arg_string = StreamableToString(argv[i]);
6626 const char* const arg = arg_string.c_str();
6639 } else if (arg_string == "--help" || HasGoogleTestFlagPrefix(arg)) {
/third_party/node/deps/googletest/src/
H A Dgtest.cc6634 const std::string arg_string = StreamableToString(argv[i]);
6635 const char* const arg = arg_string.c_str();
6648 } else if (arg_string == "--help" || HasGoogleTestFlagPrefix(arg)) {

Completed in 31 milliseconds