HomeSort by relevance Sort by last modified time
    Searched refs:names (Results 176 - 200 of 4940) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/protobuf/gtest/src/
gtest-typed-test.cc 14 // * Neither the name of Google Inc. nor the names of its
48 // Verifies that registered_tests match the test names in
62 for (const char* names = registered_tests; names != NULL;
63 names = SkipComma(names)) {
64 const String name = GetPrefixUntilComma(names);
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/
gtest-typed-test.cc 14 // * Neither the name of Google Inc. nor the names of its
48 // Verifies that registered_tests match the test names in
62 for (const char* names = registered_tests; names != NULL;
63 names = SkipComma(names)) {
64 const String name = GetPrefixUntilComma(names);
  /external/vulkan-validation-layers/tests/gtest-1.7.0/src/
gtest-typed-test.cc 14 // * Neither the name of Google Inc. nor the names of its
48 // Verifies that registered_tests match the test names in
62 for (const char* names = registered_tests; names != NULL;
63 names = SkipComma(names)) {
64 const std::string name = GetPrefixUntilComma(names);
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/
HSFriendlyNameElement.java 37 public HSFriendlyNameElement(List<I18Name> names) {
39 mNames = names;
52 List<I18Name> names = new ArrayList<I18Name>(); local
62 names.add(name);
64 return new HSFriendlyNameElement(names);
VenueNameElement.java 56 public VenueNameElement(List<I18Name> names) {
58 mNames = names;
76 List<I18Name> names = new ArrayList<I18Name>(); local
84 names.add(name);
86 return new VenueNameElement(names);
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/src/
gtest-typed-test.cc 14 // * Neither the name of Google Inc. nor the names of its
48 // Verifies that registered_tests match the test names in
62 for (const char* names = registered_tests; names != NULL;
63 names = SkipComma(names)) {
64 const std::string name = GetPrefixUntilComma(names);
  /external/mesa3d/src/gallium/auxiliary/util/
u_debug.c 326 debug_dump_enum(const struct debug_named_value *names,
331 while (names->name) {
332 if (names->value == value)
333 return names->name;
334 ++names;
343 debug_dump_enum_noprefix(const struct debug_named_value *names,
349 while (names->name) {
350 if (names->value == value) {
351 const char *name = names->name;
358 ++names;
419 static const struct debug_named_value names[] = { local
487 static const struct debug_named_value names[] = { local
511 static const struct debug_named_value names[] = { local
544 static const struct debug_named_value names[] = { local
    [all...]
  /external/ply/ply/test/pkg_test1/parsing/
calcparse.py 17 # dictionary of names
18 names = { } variable
22 names[t[1]] = t[3]
53 t[0] = names[t[1]]
  /external/ply/ply/test/pkg_test2/parsing/
calcparse.py 17 # dictionary of names
18 names = { } variable
22 names[t[1]] = t[3]
53 t[0] = names[t[1]]
  /external/ply/ply/test/pkg_test3/parsing/
calcparse.py 17 # dictionary of names
18 names = { } variable
22 names[t[1]] = t[3]
53 t[0] = names[t[1]]
  /external/ply/ply/test/pkg_test4/parsing/
calcparse.py 17 # dictionary of names
18 names = { } variable
22 names[t[1]] = t[3]
53 t[0] = names[t[1]]
  /external/ply/ply/test/
yacc_badargs.py 20 # dictionary of names
21 names = { } variable
25 names[t[1]] = t[3]
56 t[0] = names[t[1]]
yacc_badtok.py 20 # dictionary of names
21 names = { } variable
25 names[t[1]] = t[3]
56 t[0] = names[t[1]]
yacc_error2.py 20 # dictionary of names
21 names = { } variable
25 names[t[1]] = t[3]
56 t[0] = names[t[1]]
yacc_error3.py 20 # dictionary of names
21 names = { } variable
25 names[t[1]] = t[3]
56 t[0] = names[t[1]]
yacc_noerror.py 20 # dictionary of names
21 names = { } variable
25 names[t[1]] = t[3]
56 t[0] = names[t[1]]
yacc_notok.py 19 # dictionary of names
20 names = { } variable
24 names[t[1]] = t[3]
55 t[0] = names[t[1]]
yacc_sr.py 15 # dictionary of names
16 names = { } variable
20 names[t[1]] = t[3]
51 t[0] = names[t[1]]
yacc_uprec.py 15 # dictionary of names
16 names = { } variable
20 names[t[1]] = t[3]
51 t[0] = names[t[1]]
yacc_uprec2.py 15 # dictionary of names
16 names = { } variable
20 names[t[1]] = t[3]
51 t[0] = names[t[1]]
  /external/wpa_supplicant_8/src/fst/
fst_ctrl_aux.c 44 const char * fst_get_str_name(unsigned index, const char *names[],
47 if (index >= names_size || !names[index])
49 return names[index];
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
CertPathHelper.java 58 Set<GeneralNameInterface> names);
63 Set<GeneralNameInterface> names) {
64 instance.implSetPathToNames(sel, names);
  /external/perfetto/tools/
update_protos.py 97 names = sorted(os.listdir(output_dir))
98 names = [name for name in names if name.endswith('.proto')]
99 names = ''.join([' "{}",\n'.format(name) for name in names])
100 body = 'ftrace_proto_names = [\n{}]'.format(names)
  /external/python/cpython2/Lib/plat-mac/Carbon/
MediaDescr.py 7 def __init__(self, trunc, size, names, fmt):
10 self.names = names
17 if len(values) != len(self.names):
18 raise Error, ('Format length does not match number of names')
21 name = self.names[i]
31 for name in self.names:
  /external/smali/smali/src/main/java/org/jf/smali/
AssembleCommand.java 15 * Neither the name of Google Inc. nor the names of its
52 @Parameter(names = {"-h", "-?", "--help"}, help = true,
56 @Parameter(names = {"-j", "--jobs"},
62 @Parameter(names = {"-a", "--api"},
67 @Parameter(names = {"-o", "--output"},
72 @Parameter(names = "--verbose",
76 @Parameter(names = {"--allow-odex-opcodes", "--allow-odex", "--ao"},

Completed in 1039 milliseconds

1 2 3 4 5 6 78 91011>>