HomeSort by relevance Sort by last modified time
    Searched refs:full_name (Results 1 - 25 of 167) sorted by null

1 2 3 4 5 6 7

  /external/v8/build/android/pylib/instrumentation/
test_result.py 11 def __init__(self, full_name, test_type, start_date, dur, log=''):
15 full_name: Full name of the test.
22 full_name, test_type, dur, log)
23 name_pieces = full_name.rsplit('#')
28 self._class_name = full_name
29 self._test_name = full_name
  /external/autotest/site_utils/docgen/
fs_find_tests.py 36 full_name = os.path.join(root, filename)
38 found_test = control_data.parse_control(full_name,
43 logger.warn("Skipping %s\n%s", full_name, e)
45 logger.error("Bad %s\n%s", full_name, e)
  /external/protobuf/python/google/protobuf/
message_factory.py 76 if descriptor.full_name not in self._classes:
86 self._classes[descriptor.full_name] = result_class
91 if extension.containing_type.full_name not in self._classes:
93 extended_class = self._classes[extension.containing_type.full_name]
95 return self._classes[descriptor.full_name]
116 full_name = '.'.join([file_desc.package, name])
118 full_name = msg.name
119 result[full_name] = self.GetPrototype(
120 self.pool.FindMessageTypeByName(full_name))
132 if extension.containing_type.full_name not in self._classes
    [all...]
symbol_database.py 93 self._symbols[desc.full_name] = message
96 self._symbols_by_file[desc.file.name][desc.full_name] = message
154 return self.GetSymbol(descriptor.full_name)
descriptor.py 122 def __init__(self, options, options_class_name, name, full_name,
133 full_name: (str) Fully-qualified name of this protocol message type,
148 # TODO(falk): Add function to calculate full_name instead of having it in
150 self.full_name = full_name
189 full_name: (str) Fully-qualified name of this protocol message type,
241 def __init__(self, name, full_name, filename, containing_type, fields,
252 options, 'MessageOptions', name, full_name, file,
336 full_name: (str) Name of this field, including containing scope. This is
455 def __init__(self, name, full_name, index, number, type, cpp_type, label
    [all...]
descriptor_pool.py 126 self._descriptors[desc.full_name] = desc
141 self._enum_descriptors[enum_desc.full_name] = enum_desc
224 def FindMessageTypeByName(self, full_name):
228 full_name: The full name of the descriptor to load.
234 full_name = _NormalizeFullyQualifiedName(full_name)
235 if full_name not in self._descriptors:
236 self.FindFileContainingSymbol(full_name)
237 return self._descriptors[full_name]
239 def FindEnumTypeByName(self, full_name)
    [all...]
  /build/tools/fs_config/
fs_config.c 131 char* full_name = (char*) malloc(full_name_size); local
132 if (full_name == NULL) {
137 full_name[0] = '/';
138 strncpy(full_name + 1, buffer, full_name_size - 1);
139 full_name[full_name_size - 1] = '\0';
142 if (selabel_lookup(sehnd, &secontext, full_name, ( mode | (is_dir ? S_IFDIR : S_IFREG)))) {
147 free(full_name);
  /external/squashfs-tools/squashfs-tools/
unsquashfs_xattr.c 66 int res = lsetxattr(pathname, xattr_list[i].full_name,
84 xattr_list[i].full_name,
108 xattr_list[i].full_name,
119 "%s\n", xattr_list[i].full_name,
133 xattr_list[i].full_name, pathname);
android.c 79 char* full_name = (char*) malloc(full_name_size); local
80 if (full_name == NULL) {
85 full_name[0] = '/';
86 strncpy(full_name + 1, path, full_name_size - 1);
88 if (selabel_lookup(sehnd, &secontext, full_name, mode)) {
92 free(full_name);
read_xattrs.c 132 xattr->full_name = malloc(len + entry->size + 1);
133 if(xattr->full_name == NULL)
136 memcpy(xattr->full_name, prefix_table[i].prefix, len);
137 memcpy(xattr->full_name + len, name, entry->size);
138 xattr->full_name[len + entry->size] = '\0';
139 xattr->name = xattr->full_name + len;
284 free(xattr_list[i].full_name);
356 entry.type, entry.size, xattr_list[j].full_name);
  /external/nanopb-c/generator/proto/
plugin_pb2.py 20 full_name='google.protobuf.compiler.CodeGeneratorRequest', variable
26 name='file_to_generate', full_name='google.protobuf.compiler.CodeGeneratorRequest.file_to_generate', index=0,
33 name='parameter', full_name='google.protobuf.compiler.CodeGeneratorRequest.parameter', index=1,
40 name='proto_file', full_name='google.protobuf.compiler.CodeGeneratorRequest.proto_file', index=2,
62 full_name='google.protobuf.compiler.CodeGeneratorResponse.File', variable
68 name='name', full_name='google.protobuf.compiler.CodeGeneratorResponse.File.name', index=0,
75 name='insertion_point', full_name='google.protobuf.compiler.CodeGeneratorResponse.File.insertion_point', index=1,
82 name='content', full_name='google.protobuf.compiler.CodeGeneratorResponse.File.content', index=2,
103 full_name='google.protobuf.compiler.CodeGeneratorResponse', variable
109 name='error', full_name='google.protobuf.compiler.CodeGeneratorResponse.error', index=0
    [all...]
nanopb_pb2.py 17 full_name='FieldType', variable
57 name='nanopb_fileopt', full_name='nanopb_fileopt', index=0,
65 name='nanopb_msgopt', full_name='nanopb_msgopt', index=1,
73 name='nanopb_enumopt', full_name='nanopb_enumopt', index=2,
81 name='nanopb', full_name='nanopb', index=3,
91 full_name='NanoPBOptions', variable
97 name='max_size', full_name='NanoPBOptions.max_size', index=0,
104 name='max_count', full_name='NanoPBOptions.max_count', index=1,
111 name='type', full_name='NanoPBOptions.type', index=2,
118 name='long_names', full_name='NanoPBOptions.long_names', index=3
    [all...]
  /external/nanopb-c/generator/google/protobuf/
message_factory.py 61 if descriptor.full_name not in self._classes:
66 self._classes[descriptor.full_name] = result_class
70 return self._classes[descriptor.full_name]
94 result[desc.full_name] = _FACTORY.GetPrototype(desc)
descriptor.py 115 def __init__(self, options, options_class_name, name, full_name,
126 full_name: (str) Fully-qualified name of this protocol message type,
141 # TODO(falk): Add function to calculate full_name instead of having it in
143 self.full_name = full_name
182 full_name: (str) Fully-qualified name of this protocol message type,
226 def __init__(self, name, full_name, filename, containing_type, fields,
237 options, 'MessageOptions', name, full_name, file,
318 full_name: (str) Name of this field, including containing scope. This is
428 def __init__(self, name, full_name, index, number, type, cpp_type, label
    [all...]
descriptor_pool.py 140 def FindMessageTypeByName(self, full_name):
144 full_name: The full name of the descriptor to load.
150 full_name = full_name.lstrip('.') # fix inconsistent qualified name formats
151 if full_name not in self._descriptors:
152 self.FindFileContainingSymbol(full_name)
153 return self._descriptors[full_name]
155 def FindEnumTypeByName(self, full_name):
159 full_name: The full name of the enum descriptor to load.
165 full_name = full_name.lstrip('.') # fix inconsistent qualified name format
    [all...]
  /system/connectivity/shill/test-scripts/
crypto_util_pb2.py 33 full_name='shill_protos.ReturnCode', variable
75 full_name='shill_protos.EncryptDataMessage', variable
81 name='public_key', full_name='shill_protos.EncryptDataMessage.public_key', index=0,
88 name='data', full_name='shill_protos.EncryptDataMessage.data', index=1,
110 full_name='shill_protos.EncryptDataResponse', variable
116 name='ret', full_name='shill_protos.EncryptDataResponse.ret', index=0,
123 name='encrypted_data', full_name='shill_protos.EncryptDataResponse.encrypted_data', index=1,
145 full_name='shill_protos.VerifyCredentialsMessage', variable
151 name='certificate', full_name='shill_protos.VerifyCredentialsMessage.certificate', index=0,
158 name='signed_data', full_name='shill_protos.VerifyCredentialsMessage.signed_data', index=1
194 full_name='shill_protos.VerifyCredentialsResponse', variable
    [all...]
  /external/nanopb-c/generator/google/protobuf/compiler/
plugin_pb2.py 24 full_name='google.protobuf.compiler.CodeGeneratorRequest', variable
30 name='file_to_generate', full_name='google.protobuf.compiler.CodeGeneratorRequest.file_to_generate', index=0,
37 name='parameter', full_name='google.protobuf.compiler.CodeGeneratorRequest.parameter', index=1,
44 name='proto_file', full_name='google.protobuf.compiler.CodeGeneratorRequest.proto_file', index=2,
66 full_name='google.protobuf.compiler.CodeGeneratorResponse.File', variable
72 name='name', full_name='google.protobuf.compiler.CodeGeneratorResponse.File.name', index=0,
79 name='insertion_point', full_name='google.protobuf.compiler.CodeGeneratorResponse.File.insertion_point', index=1,
86 name='content', full_name='google.protobuf.compiler.CodeGeneratorResponse.File.content', index=2,
107 full_name='google.protobuf.compiler.CodeGeneratorResponse', variable
113 name='error', full_name='google.protobuf.compiler.CodeGeneratorResponse.error', index=0
    [all...]
  /external/autotest/client/
setup_modules.py 45 full_name = os.path.join(path, filename)
46 if not os.path.isdir(full_name):
50 if not os.access(full_name, os.R_OK | os.X_OK):
52 if "__init__.py" in os.listdir(full_name):
61 full_name = parent_module_name + "." + name
62 sys.modules[full_name] = module
  /external/protobuf/python/google/protobuf/internal/
symbol_database_test.py 85 'protobuf_unittest.ForeignEnum').full_name)
89 'protobuf_unittest.TestAllTypes.NestedEnum').full_name)
95 'protobuf_unittest.TestAllTypes').full_name)
99 'protobuf_unittest.TestAllTypes.NestedMessage').full_name)
  /external/skia/platform_tools/android/tests/
android_framework_gyp_tests.py 51 full_name = os.path.join(self.__tmp_dir, basename)
52 self.assertTrue(os.path.exists(full_name))
57 full_name = os.path.join(self.__tmp_dir, basename)
58 self.assertFalse(os.path.exists(full_name))
  /external/toybox/toys/other/
modinfo.c 38 static void modinfo_file(char *full_name)
47 if (-1 != (fd = open(full_name, O_RDONLY))) {
53 perror_msg_raw(full_name);
57 output_field("filename", full_name);
  /external/protobuf/src/google/protobuf/
descriptor.cc 427 bool AddSymbol(const string& full_name, Symbol symbol);
769 const string& full_name, Symbol symbol) {
770 if (InsertIfNotPresent(&symbols_by_name_, full_name.c_str(), symbol)) {
771 symbols_after_checkpoint_.push_back(full_name.c_str());
3528 string* full_name = tables_->AllocateString(scope); local
3598 string* full_name = tables_->AllocateString(scope); local
3892 string* full_name = tables_->AllocateString(parent->full_name()); local
3916 string* full_name = tables_->AllocateString(scope); local
3959 string* full_name = tables_->AllocateString(*parent->full_name_); local
4021 string* full_name = tables_->AllocateString(file_->package()); local
4050 string* full_name = tables_->AllocateString(parent->full_name()); local
    [all...]
  /external/protobuf/src/google/protobuf/compiler/java/
java_name_resolver.cc 54 string StripPackageName(const string& full_name,
57 return full_name;
60 return full_name.substr(file->package().size() + 1);
67 return StripPackageName(descriptor->full_name(),
87 string full_name = StripPackageName(descriptor->full_name(), local
90 GOOGLE_CHECK(full_name.find('.') == string::npos);
91 return full_name;
  /external/v8/tools/
generate-builtins-tests.py 47 def BuildTests(function, full_name, options):
54 TryCatch(result, "%s(%s);" % (full_name, GetVars(result, length)))
60 "var recv = new %s(%s);" % (full_name, GetVars(result, length)),
87 call = "%s.prototype.%s.call(%s)" % (full_name, method["name"], args)
90 filename = os.path.join(options.outdir, "%s.js" % (full_name))
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_linux_test.cc 237 char full_name[256]; local
245 internal_snprintf(full_name, ARRAY_SIZE(full_name), "%s%s%s.so",
247 EXPECT_TRUE(LibraryNameIs(full_name, base_names[k]))
248 << "Full name " << full_name
251 EXPECT_FALSE(LibraryNameIs(full_name, wrong_names[m]))
252 << "Full name " << full_name

Completed in 357 milliseconds

1 2 3 4 5 6 7