Home
last modified time | relevance | path

Searched refs:full_name (Results 1 – 25 of 108) sorted by relevance

12345

/external/nanopb-c/generator/google/protobuf/
Ddescriptor_pb2.py21 full_name='google.protobuf.FieldDescriptorProto.Type',
106 full_name='google.protobuf.FieldDescriptorProto.Label',
131 full_name='google.protobuf.FileOptions.OptimizeMode',
156 full_name='google.protobuf.FieldOptions.CType',
182 full_name='google.protobuf.FileDescriptorSet',
188 name='file', full_name='google.protobuf.FileDescriptorSet.file', index=0,
210 full_name='google.protobuf.FileDescriptorProto',
216 name='name', full_name='google.protobuf.FileDescriptorProto.name', index=0,
223 name='package', full_name='google.protobuf.FileDescriptorProto.package', index=1,
230 name='dependency', full_name='google.protobuf.FileDescriptorProto.dependency', index=2,
[all …]
Ddescriptor.py115 def __init__(self, options, options_class_name, name, full_name, argument
143 self.full_name = full_name
226 def __init__(self, name, full_name, filename, containing_type, fields, argument
237 options, 'MessageOptions', name, full_name, file,
428 def __init__(self, name, full_name, index, number, type, cpp_type, label, argument
441 self.full_name = full_name
457 self._cdescriptor = _message.GetExtensionDescriptor(full_name)
459 self._cdescriptor = cpp_message.GetExtensionDescriptor(full_name)
462 self._cdescriptor = _message.GetFieldDescriptor(full_name)
464 self._cdescriptor = cpp_message.GetFieldDescriptor(full_name)
[all …]
Ddescriptor_pool.py140 def FindMessageTypeByName(self, full_name): argument
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): argument
165 full_name = full_name.lstrip('.') # fix inconsistent qualified name formats
166 if full_name not in self._enum_descriptors:
167 self.FindFileContainingSymbol(full_name)
168 return self._enum_descriptors[full_name]
[all …]
Dmessage_factory.py61 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)
/external/protobuf/python/google/protobuf/
Dmessage_factory.py76 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 …]
Ddescriptor.py122 def __init__(self, options, options_class_name, name, full_name, argument
150 self.full_name = full_name
241 def __init__(self, name, full_name, filename, containing_type, fields, argument
252 options, 'MessageOptions', name, full_name, file,
455 def __init__(self, name, full_name, index, number, type, cpp_type, label, argument
468 self.full_name = full_name
487 _message.Message._GetExtensionDescriptor(full_name))
490 self._cdescriptor = cpp_message.GetExtensionDescriptor(full_name)
494 self._cdescriptor = _message.Message._GetFieldDescriptor(full_name)
497 self._cdescriptor = cpp_message.GetFieldDescriptor(full_name)
[all …]
Ddescriptor_pool.py126 self._descriptors[desc.full_name] = desc
141 self._enum_descriptors[enum_desc.full_name] = enum_desc
224 def FindMessageTypeByName(self, full_name): argument
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): argument
249 full_name = _NormalizeFullyQualifiedName(full_name)
250 if full_name not in self._enum_descriptors:
[all …]
Dsymbol_database.py93 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)
/external/nanopb-c/generator/proto/
Dplugin_pb2.py20 full_name='google.protobuf.compiler.CodeGeneratorRequest',
26 …name='file_to_generate', full_name='google.protobuf.compiler.CodeGeneratorRequest.file_to_generate…
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',
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_p…
82 … name='content', full_name='google.protobuf.compiler.CodeGeneratorResponse.File.content', index=2,
103 full_name='google.protobuf.compiler.CodeGeneratorResponse',
109 name='error', full_name='google.protobuf.compiler.CodeGeneratorResponse.error', index=0,
[all …]
Dnanopb_pb2.py17 full_name='FieldType',
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',
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/protobuf/src/google/protobuf/
Ddescriptor.cc427 bool AddSymbol(const string& full_name, Symbol symbol);
769 const string& full_name, Symbol symbol) { in AddSymbol() argument
770 if (InsertIfNotPresent(&symbols_by_name_, full_name.c_str(), symbol)) { in AddSymbol()
771 symbols_after_checkpoint_.push_back(full_name.c_str()); in AddSymbol()
1156 if (fallback_database_->FindAllExtensionNumbers(extendee->full_name(), in FindAllExtensions()
1494 containing_type->full_name(), field_number, &file_proto)) { in TryFindExtensionInFallbackDatabase()
1646 proto->mutable_extendee()->append(containing_type()->full_name()); in CopyTo()
1659 proto->mutable_type_name()->append(message_type()->full_name()); in CopyTo()
1664 proto->mutable_type_name()->append(enum_type()->full_name()); in CopyTo()
1723 proto->mutable_input_type()->append(input_type()->full_name()); in CopyTo()
[all …]
Dmessage.cc66 "to: " << descriptor->full_name() << ", " in MergeFrom()
67 "from:" << from.GetDescriptor()->full_name(); in MergeFrom()
79 "to: " << descriptor->full_name() << ", " in CopyFrom()
80 "from:" << from.GetDescriptor()->full_name(); in CopyFrom()
85 return GetDescriptor()->full_name(); in GetTypeName()
108 << "Message of type \"" << GetDescriptor()->full_name() in CheckInitialized()
153 GOOGLE_LOG(FATAL) << "Message class \"" << GetDescriptor()->full_name() in SetCachedSize()
295 GOOGLE_LOG(DFATAL) << "Type is already registered: " << descriptor->full_name(); in RegisterType()
333 << "registered: " << type->full_name(); in GetPrototype()
Ddescriptor.h136 const string& full_name() const;
416 const string& full_name() const; // Fully-qualified name of the field.
628 const string& full_name() const; // Fully-qualified name of the oneof.
689 const string& full_name() const;
791 const string& full_name() const;
851 const string& full_name() const;
923 const string& full_name() const;
1458 PROTOBUF_DEFINE_STRING_ACCESSOR(Descriptor, full_name)
1482 PROTOBUF_DEFINE_STRING_ACCESSOR(FieldDescriptor, full_name)
1513 PROTOBUF_DEFINE_STRING_ACCESSOR(OneofDescriptor, full_name)
[all …]
/external/nanopb-c/generator/google/protobuf/compiler/
Dplugin_pb2.py24 full_name='google.protobuf.compiler.CodeGeneratorRequest',
30 …name='file_to_generate', full_name='google.protobuf.compiler.CodeGeneratorRequest.file_to_generate…
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',
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_p…
86 … name='content', full_name='google.protobuf.compiler.CodeGeneratorResponse.File.content', index=2,
107 full_name='google.protobuf.compiler.CodeGeneratorResponse',
113 name='error', full_name='google.protobuf.compiler.CodeGeneratorResponse.error', index=0,
[all …]
/external/squashfs-tools/squashfs-tools/
Dandroid.c75 char* full_name = (char*) malloc(full_name_size); in set_selabel() local
76 if (full_name == NULL) { in set_selabel()
81 full_name[0] = '/'; in set_selabel()
82 strncpy(full_name + 1, path, full_name_size - 1); in set_selabel()
84 if (selabel_lookup(sehnd, &secontext, full_name, mode)) { in set_selabel()
88 free(full_name); in set_selabel()
Dunsquashfs_xattr.c61 int res = lsetxattr(pathname, xattr_list[i].full_name, in write_xattr()
79 xattr_list[i].full_name, in write_xattr()
103 xattr_list[i].full_name, in write_xattr()
114 "%s\n", xattr_list[i].full_name, in write_xattr()
128 xattr_list[i].full_name, pathname); in write_xattr()
Dxattr.c113 xattr->full_name = strdup(name); in get_prefix()
117 if(strncmp(xattr->full_name, p->prefix, strlen(p->prefix)) == 0) in get_prefix()
122 xattr->name = xattr->full_name + strlen(prefix_table[i].prefix); in get_prefix()
203 xattr_list[i].full_name); in read_xattrs_from_system()
204 free(xattr_list[i].full_name); in read_xattrs_from_system()
210 vsize = lgetxattr(filename, xattr_list[i].full_name, in read_xattrs_from_system()
217 free(xattr_list[i].full_name); in read_xattrs_from_system()
225 vsize = lgetxattr(filename, xattr_list[i].full_name, in read_xattrs_from_system()
237 free(xattr_list[i].full_name); in read_xattrs_from_system()
247 " vsize %d\n", filename, xattr_list[i].full_name, in read_xattrs_from_system()
[all …]
Dread_xattrs.c132 xattr->full_name = malloc(len + entry->size + 1); in read_xattr_entry()
133 if(xattr->full_name == NULL) in read_xattr_entry()
136 memcpy(xattr->full_name, prefix_table[i].prefix, len); in read_xattr_entry()
137 memcpy(xattr->full_name + len, name, entry->size); in read_xattr_entry()
138 xattr->full_name[len + entry->size] = '\0'; in read_xattr_entry()
139 xattr->name = xattr->full_name + len; in read_xattr_entry()
284 free(xattr_list[i].full_name); in free_xattr()
356 entry.type, entry.size, xattr_list[j].full_name); in get_xattr()
/external/protobuf/src/google/protobuf/compiler/java/
Djava_name_resolver.cc54 string StripPackageName(const string& full_name, in StripPackageName() argument
57 return full_name; in StripPackageName()
60 return full_name.substr(file->package().size() + 1); in StripPackageName()
67 return StripPackageName(descriptor->full_name(), in ClassNameWithoutPackage()
87 string full_name = StripPackageName(descriptor->full_name(), in ClassNameWithoutPackage() local
90 GOOGLE_CHECK(full_name.find('.') == string::npos); in ClassNameWithoutPackage()
91 return full_name; in ClassNameWithoutPackage()
/external/protobuf/python/google/protobuf/internal/
Ddescriptor_pool_test.py110 msg1.full_name)
131 msg2.full_name)
267 expected_enum_full_name = '.'.join([msg_desc.full_name, name])
268 test.assertEqual(expected_enum_full_name, enum_desc.full_name)
295 expected_full_name = '.'.join([containing_type_desc.full_name, name])
298 test.assertEqual(expected_full_name, desc.full_name)
323 expected_field_full_name = '.'.join([msg_desc.full_name, name])
324 test.assertEqual(expected_field_full_name, field_desc.full_name)
347 expected_field_full_name = '.'.join([msg_desc.full_name, name])
348 test.assertEqual(expected_field_full_name, field_desc.full_name)
[all …]
Dsymbol_database_test.py85 '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/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_linux_test.cc237 char full_name[256]; in TEST() local
245 internal_snprintf(full_name, ARRAY_SIZE(full_name), "%s%s%s.so", in TEST()
247 EXPECT_TRUE(LibraryNameIs(full_name, base_names[k])) in TEST()
248 << "Full name " << full_name in TEST()
251 EXPECT_FALSE(LibraryNameIs(full_name, wrong_names[m])) in TEST()
252 << "Full name " << full_name in TEST()
/external/v8/tools/
Dgenerate-builtins-tests.py47 def BuildTests(function, full_name, options): argument
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/skia/platform_tools/android/tests/
Dandroid_framework_gyp_tests.py51 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/
Dmodinfo.c36 static void modinfo_file(char *full_name) in modinfo_file() argument
45 if (-1 != (fd = open(full_name, O_RDONLY))) { in modinfo_file()
51 perror_msg("%s", full_name); in modinfo_file()
55 output_field("filename", full_name); in modinfo_file()

12345