Home
last modified time | relevance | path

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

123

/external/protobuf/src/google/protobuf/
Ddescriptor.cc366 bool AddSymbol(const string& full_name, Symbol symbol);
638 const string& full_name, Symbol symbol) { in AddSymbol() argument
639 if (InsertIfNotPresent(&symbols_by_name_, full_name.c_str(), symbol)) { in AddSymbol()
640 symbols_after_checkpoint_.push_back(full_name.c_str()); in AddSymbol()
985 if (fallback_database_->FindAllExtensionNumbers(extendee->full_name(), in FindAllExtensions()
1270 containing_type->full_name(), field_number, &file_proto)) { in TryFindExtensionInFallbackDatabase()
1405 proto->mutable_extendee()->append(containing_type()->full_name()); in CopyTo()
1418 proto->mutable_type_name()->append(message_type()->full_name()); in CopyTo()
1423 proto->mutable_type_name()->append(enum_type()->full_name()); in CopyTo()
1474 proto->mutable_input_type()->append(input_type()->full_name()); in CopyTo()
[all …]
Dmessage.cc64 "to: " << descriptor->full_name() << ", " in MergeFrom()
65 "from:" << from.GetDescriptor()->full_name(); in MergeFrom()
77 "to: " << descriptor->full_name() << ", " in CopyFrom()
78 "from:" << from.GetDescriptor()->full_name(); in CopyFrom()
83 return GetDescriptor()->full_name(); in GetTypeName()
106 << "Message of type \"" << GetDescriptor()->full_name() in CheckInitialized()
151 GOOGLE_LOG(FATAL) << "Message class \"" << GetDescriptor()->full_name() in SetCachedSize()
256 GOOGLE_LOG(DFATAL) << "Type is already registered: " << descriptor->full_name(); in RegisterType()
293 << "registered: " << type->full_name(); in GetPrototype()
Ddescriptor.h118 const string& full_name() const;
367 const string& full_name() const; // Fully-qualified name of the field.
549 const string& full_name() const;
635 const string& full_name() const;
684 const string& full_name() const;
746 const string& full_name() const;
1188 PROTOBUF_DEFINE_STRING_ACCESSOR(Descriptor, full_name)
1209 PROTOBUF_DEFINE_STRING_ACCESSOR(FieldDescriptor, full_name)
1237 PROTOBUF_DEFINE_STRING_ACCESSOR(EnumDescriptor, full_name)
1246 PROTOBUF_DEFINE_STRING_ACCESSOR(EnumValueDescriptor, full_name)
[all …]
Ddescriptor_unittest.cc486 EXPECT_EQ("TestMessage", message_->full_name()); in TEST_F()
490 EXPECT_EQ("corge.grault.TestMessage2", message2_->full_name()); in TEST_F()
550 EXPECT_EQ("TestMessage.foo", foo_->full_name()); in TEST_F()
551 EXPECT_EQ("TestMessage.bar", bar_->full_name()); in TEST_F()
552 EXPECT_EQ("TestMessage.baz", baz_->full_name()); in TEST_F()
553 EXPECT_EQ("TestMessage.qux", qux_->full_name()); in TEST_F()
555 EXPECT_EQ("corge.grault.TestMessage2.foo", foo2_->full_name()); in TEST_F()
556 EXPECT_EQ("corge.grault.TestMessage2.bar", bar2_->full_name()); in TEST_F()
557 EXPECT_EQ("corge.grault.TestMessage2.quux", quux2_->full_name()); in TEST_F()
908 EXPECT_EQ("TestEnum", enum_->full_name()); in TEST_F()
[all …]
Dgenerated_message_reflection.cc89 " Message type: " << descriptor->full_name() << "\n" in ReportReflectionUsageError()
90 " Field : " << field->full_name() << "\n" in ReportReflectionUsageError()
115 " Message type: " << descriptor->full_name() << "\n" in ReportReflectionUsageTypeError()
116 " Field : " << field->full_name() << "\n" in ReportReflectionUsageTypeError()
128 " Message type: " << descriptor->full_name() << "\n" in ReportReflectionUsageEnumTypeError()
129 " Field : " << field->full_name() << "\n" in ReportReflectionUsageEnumTypeError()
131 " Expected : " << field->enum_type()->full_name() << "\n" in ReportReflectionUsageEnumTypeError()
132 " Actual : " << value->full_name(); in ReportReflectionUsageEnumTypeError()
320 << message1->GetDescriptor()->full_name() in Swap()
322 << descriptor_->full_name() in Swap()
[all …]
Dtext_format.cc170 << root_message_type_->full_name() in ReportError()
175 << root_message_type_->full_name() in ReportError()
187 << root_message_type_->full_name() in ReportWarning()
192 << root_message_type_->full_name() in ReportWarning()
257 descriptor->full_name() + "\"."); in ConsumeField()
283 ReportError("Message type \"" + descriptor->full_name() + in ConsumeField()
1014 generator.Print(field->message_type()->full_name()); in PrintFieldName()
1016 generator.Print(field->full_name()); in PrintFieldName()
Dgenerated_message_reflection_unittest.cc317 reflection->FindKnownExtensionByName(extension1->full_name())); in TEST()
319 reflection->FindKnownExtensionByName(extension2->full_name())); in TEST()
327 FindKnownExtensionByName(extension1->full_name()) == NULL); in TEST()
/external/protobuf/python/google/protobuf/
Ddescriptor.py99 def __init__(self, options, options_class_name, name, full_name, argument
127 self.full_name = full_name
210 def __init__(self, name, full_name, filename, containing_type, fields, argument
221 options, 'MessageOptions', name, full_name, file,
373 def __init__(self, name, full_name, index, number, type, cpp_type, label, argument
386 self.full_name = full_name
426 def __init__(self, name, full_name, filename, values, argument
435 options, 'EnumOptions', name, full_name, file,
497 def __init__(self, name, full_name, index, methods, options=None, file=None, argument
500 options, 'ServiceOptions', name, full_name, file,
[all …]
Dreflection.py222 raise KeyError('"%s" is not an extension.' % extension_handle.full_name)
227 (extension_handle.full_name,
228 extension_handle.containing_type.full_name,
229 message.DESCRIPTOR.full_name))
592 (extension_handle.full_name, actual_handle.full_name,
593 cls.DESCRIPTOR.full_name, extension_handle.number))
595 cls._extensions_by_name[extension_handle.full_name] = extension_handle
601 extension_handle.message_type.full_name] = extension_handle
706 raise KeyError('"%s" is repeated.' % extension_handle.full_name)
915 name = "(%s)" % field.full_name
[all …]
Dtext_format.py84 out.write(field.message_type.full_name)
86 out.write(field.full_name)
161 message_descriptor.full_name)
169 name, message_descriptor.full_name))
190 message_descriptor.full_name, name))
269 enum_descriptor.full_name, number))
276 enum_descriptor.full_name, identifier))
/external/chromium/base/debug/
Dprofiler.cc25 std::string full_name(name); in StartProfiling() local
28 ReplaceSubstringsAfterOffset(&full_name, 0, "{pid}", pid); in StartProfiling()
29 ReplaceSubstringsAfterOffset(&full_name, 0, "{count}", count); in StartProfiling()
30 ProfilerStart(full_name.c_str()); in StartProfiling()
/external/protobuf/src/google/protobuf/compiler/java/
Djava_helpers.h74 string ToJavaName(const string& full_name, const FileDescriptor* file);
79 return ToJavaName(descriptor->full_name(), descriptor->file()); in ClassName()
82 return ToJavaName(descriptor->full_name(), descriptor->file()); in ClassName()
85 return ToJavaName(descriptor->full_name(), descriptor->file()); in ClassName()
88 return ToJavaName(descriptor->full_name(), descriptor->file()); in ExtensionIdentifierName()
Djava_helpers.cc149 string ToJavaName(const string& full_name, const FileDescriptor* file) { in ToJavaName() argument
160 result += full_name; in ToJavaName()
164 result += full_name.substr(file->package().size() + 1); in ToJavaName()
/external/chromium/chrome/browser/extensions/
Dextension_metrics_module.cc25 std::string full_name(name); in BuildMetricName() local
26 full_name += extension->id(); in BuildMetricName()
27 return full_name; in BuildMetricName()
77 std::string full_name = BuildMetricName(name, GetExtension()); in RecordValue() local
80 counter = LinearHistogram::FactoryGet(full_name, in RecordValue()
86 counter = Histogram::FactoryGet(full_name, in RecordValue()
Dextension_metrics_apitest.cc52 std::string full_name(name); in BuildFullName() local
53 full_name += extension->id(); in BuildFullName()
54 return full_name; in BuildFullName()
/external/bluetooth/glib/gmodule/
Dgmodule-ar.c109 gchar* full_name; in _g_module_open() local
116 full_name = g_strconcat (file_name, "(", member, ")", NULL); in _g_module_open()
120 full_name = g_strdup (file_name); in _g_module_open()
122 handle = dlopen (full_name, in _g_module_open()
125 g_free (full_name); in _g_module_open()
/external/protobuf/src/google/protobuf/compiler/javamicro/
Djavamicro_helpers.cc162 string ToJavaName(const Params& params, const string& full_name, in ToJavaName() argument
172 result += full_name; in ToJavaName()
182 full_name.find_first_of('.', sizeToSkipPackageName + 1); in ToJavaName()
186 string class_name = full_name.substr(sizeToSkip + 1); in ToJavaName()
208 const string full_name = descriptor->full_name(); in ClassName() local
211 string base_name = full_name.substr(0, full_name.find_last_of('.')); in ClassName()
Djavamicro_helpers.h75 string ToJavaName(const Params& params, const string& full_name,
81 return ToJavaName(params, descriptor->full_name(), descriptor->file()); in ClassName()
86 return ToJavaName(params, descriptor->full_name(), descriptor->file()); in ClassName()
90 return ToJavaName(params, descriptor->full_name(), descriptor->file()); in ExtensionIdentifierName()
/external/protobuf/python/google/protobuf/internal/
Ddescriptor_test.py59 full_name='protobuf_unittest.ForeignEnum',
69 full_name='protobuf_unittest.TestAllTypes.NestedMessage',
76 full_name='protobuf_unittest.TestAllTypes.NestedMessage.bb',
90 full_name='protobuf_unittest.TestService.Bar',
97 full_name='protobuf_unittest.TestServiceWithOptions',
/external/yaffs2/yaffs2/utils/
Dmkyaffs2image.c327 char full_name[500]; in process_directory() local
332 sprintf(full_name,"%s/%s",path,entry->d_name); in process_directory()
334 lstat(full_name,&stats); in process_directory()
349 fix_stat(full_name, &stats); in process_directory()
373 readlink(full_name,symname,sizeof(symname) -1); in process_directory()
391 h = open(full_name,O_RDONLY); in process_directory()
440 process_directory(newObj,full_name,fixstats); in process_directory()
Dmkyaffsimage.c403 char full_name[500]; in process_directory() local
408 sprintf(full_name,"%s/%s",path,entry->d_name); in process_directory()
410 lstat(full_name,&stats); in process_directory()
424 printf("Object %d, %s is a ",newObj,full_name); in process_directory()
445 readlink(full_name,symname,sizeof(symname) -1); in process_directory()
463 h = open(full_name,O_RDONLY); in process_directory()
512 process_directory(newObj,full_name); in process_directory()
/external/webkit/Tools/Scripts/webkitpy/tool/steps/
Dupdatechangelogswithreviewer.py51 …g \"%s\" as reviewer from attachment %s on bug %s." % (patch.reviewer().full_name, patch.id(), bug…
52 return patch.reviewer().full_name
/external/chromium/chrome/browser/autofill/
Dcontact_info.cc126 std::vector<string16> full_name; in FullName() local
127 full_name.push_back(first_); in FullName()
130 full_name.push_back(middle_); in FullName()
133 full_name.push_back(last_); in FullName()
135 return JoinString(full_name, ' '); in FullName()
/external/webkit/Tools/Scripts/webkitpy/common/config/
Dcommitters.py35 self.full_name = name
49 return '"%s" <%s>' % (self.full_name, self.emails[0])
347 if committer.full_name == name:
/external/protobuf/src/google/protobuf/compiler/cpp/
Dcpp_helpers.cc122 const string& outer_name = outer->full_name(); in ClassName()
123 string inner_name = descriptor->full_name().substr(outer_name.size()); in ClassName()
135 return DotsToColons(enum_descriptor->full_name()); in ClassName()

123