/external/chromium_org/third_party/protobuf/ |
D | descriptor_pb2.py | 18 full_name='google.protobuf.FieldDescriptorProto.Type', 103 full_name='google.protobuf.FieldDescriptorProto.Label', 128 full_name='google.protobuf.FileOptions.OptimizeMode', 153 full_name='google.protobuf.FieldOptions.CType', 179 full_name='google.protobuf.FileDescriptorSet', 185 name='file', full_name='google.protobuf.FileDescriptorSet.file', index=0, 207 full_name='google.protobuf.FileDescriptorProto', 213 name='name', full_name='google.protobuf.FileDescriptorProto.name', index=0, 220 name='package', full_name='google.protobuf.FileDescriptorProto.package', index=1, 227 name='dependency', full_name='google.protobuf.FileDescriptorProto.dependency', index=2, [all …]
|
/external/chromium_org/content/public/test/ |
D | test_launcher.cc | 209 std::string GetPreTestName(const std::string& full_name) { in GetPreTestName() argument 210 size_t dot_pos = full_name.find('.'); in GetPreTestName() 212 std::string test_case_name = full_name.substr(0, dot_pos); in GetPreTestName() 213 std::string test_name = full_name.substr(dot_pos + 1); in GetPreTestName() 225 std::string full_name(test_names[i]); in RunTests() local 226 std::string pre_test_name(GetPreTestName(full_name)); in RunTests() 232 dependent_test_map_[pre_test_name] = full_name; in RunTests() 234 DCHECK(!ContainsKey(reverse_dependent_test_map_, full_name)); in RunTests() 235 reverse_dependent_test_map_[full_name] = pre_test_name; in RunTests() 237 full_name = pre_test_name; in RunTests() [all …]
|
/external/chromium_org/chrome/browser/autocomplete/ |
D | contact_provider_chromeos.cc | 68 ContactData(const base::string16& full_name, in ContactData() 73 : full_name(full_name), in ContactData() 81 given_name, full_name, &given_name_index, NULL); in ContactData() 83 family_name, full_name, &family_name_index, NULL); in ContactData() 86 base::string16 full_name; member 174 base::string16 full_name = in RefreshContacts() local 175 AutocompleteMatch::SanitizeString(UTF8ToUTF16(contact.full_name())); in RefreshContacts() 183 if (!full_name.empty()) { in RefreshContacts() 185 ContactData(full_name, given_name, family_name, contact.contact_id(), in RefreshContacts() 201 if (!WordIsNamePrefix(input.text(), contact.full_name, 0, in AddContactIfMatched() [all …]
|
/external/protobuf/src/google/protobuf/ |
D | descriptor.cc | 366 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 …]
|
D | message.cc | 64 "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()
|
/external/chromium_org/third_party/protobuf/python/google/protobuf/ |
D | descriptor.py | 115 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 …]
|
D | descriptor_pool.py | 140 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 …]
|
D | 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)
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/ |
D | descriptor.cc | 409 bool AddSymbol(const string& full_name, Symbol symbol); 732 const string& full_name, Symbol symbol) { in AddSymbol() argument 733 if (InsertIfNotPresent(&symbols_by_name_, full_name.c_str(), symbol)) { in AddSymbol() 734 symbols_after_checkpoint_.push_back(full_name.c_str()); in AddSymbol() 1078 if (fallback_database_->FindAllExtensionNumbers(extendee->full_name(), in FindAllExtensions() 1402 containing_type->full_name(), field_number, &file_proto)) { in TryFindExtensionInFallbackDatabase() 1551 proto->mutable_extendee()->append(containing_type()->full_name()); in CopyTo() 1564 proto->mutable_type_name()->append(message_type()->full_name()); in CopyTo() 1569 proto->mutable_type_name()->append(enum_type()->full_name()); in CopyTo() 1620 proto->mutable_input_type()->append(input_type()->full_name()); in CopyTo() [all …]
|
D | message.cc | 66 "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()
|
/external/protobuf/python/google/protobuf/ |
D | descriptor.py | 99 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 …]
|
/external/chromium_org/build/android/pylib/instrumentation/ |
D | test_result.py | 11 def __init__(self, full_name, test_type, start_date, dur, log=''): argument 21 super(InstrumentationTestResult, self).__init__(full_name, test_type, log) 22 name_pieces = full_name.rsplit('#') 27 self._class_name = full_name 28 self._test_name = full_name
|
/external/chromium_org/extensions/common/ |
D | extension_api.cc | 184 void ExtensionAPI::SplitDependencyName(const std::string& full_name, in SplitDependencyName() argument 187 size_t colon_index = full_name.find(':'); in SplitDependencyName() 191 *feature_name = full_name; in SplitDependencyName() 195 *feature_type = full_name.substr(0, colon_index); in SplitDependencyName() 196 *feature_name = full_name.substr(colon_index + 1); in SplitDependencyName() 301 Feature::Availability ExtensionAPI::IsAvailable(const std::string& full_name, in IsAvailable() argument 305 Feature* feature = GetFeatureDependency(full_name); in IsAvailable() 306 CHECK(feature) << full_name; in IsAvailable() 324 bool ExtensionAPI::IsPrivileged(const std::string& full_name) { in IsPrivileged() argument 325 Feature* feature = GetFeatureDependency(full_name); in IsPrivileged() [all …]
|
/external/chromium/base/debug/ |
D | profiler.cc | 25 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/chromium_org/base/test/launcher/ |
D | test_result.cc | 41 size_t dot_pos = full_name.find('.'); in GetTestName() 43 return full_name.substr(dot_pos + 1); in GetTestName() 47 size_t dot_pos = full_name.find('.'); in GetTestCaseName() 49 return full_name.substr(0, dot_pos); in GetTestCaseName()
|
/external/chromium_org/chrome/browser/profiles/ |
D | profile_downloader_unittest.cc | 12 std::string GetJSonData(const std::string& full_name, in GetJSonData() argument 20 if (!full_name.empty()) { in GetJSonData() 21 stream << "\"name\": \"" << full_name << "\""; in GetJSonData() 51 void VerifyWithAccountData(const std::string& full_name, in VerifyWithAccountData() argument 62 GetJSonData(full_name, given_name, url, locale), in VerifyWithAccountData() 72 EXPECT_EQ(full_name, parsed_full_name_utf8); in VerifyWithAccountData()
|
/external/protobuf/src/google/protobuf/compiler/java/ |
D | java_helpers.h | 74 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()
|
/external/chromium/chrome/browser/extensions/ |
D | extension_metrics_module.cc | 25 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()
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
D | sanitizer_linux_test.cc | 237 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/chromium_org/ui/app_list/test/ |
D | app_list_test_model.cc | 72 const std::string& full_name) { in CreateItem() argument 81 item->SetTitleAndFullName(title, full_name); in CreateItem() 86 const std::string& full_name) { in CreateAndAddItem() argument 87 item_list()->AddItem(CreateItem(title, full_name)); in CreateAndAddItem()
|
/external/chromium_org/components/autofill/core/browser/ |
D | contact_info.cc | 94 std::vector<base::string16> full_name; in FullName() local 96 full_name.push_back(first_); in FullName() 99 full_name.push_back(middle_); in FullName() 102 full_name.push_back(last_); in FullName() 104 return JoinString(full_name, ' '); in FullName()
|
/external/chromium_org/tools/json_schema_compiler/ |
D | schema_loader.py | 25 def ResolveType(self, full_name, default_namespace): argument 26 name_parts = full_name.rsplit('.', 1) 28 if full_name not in default_namespace.types:
|
/external/chromium_org/base/debug/ |
D | profiler.cc | 32 std::string full_name(name); in StartProfiling() local 35 ReplaceSubstringsAfterOffset(&full_name, 0, "{pid}", pid); in StartProfiling() 36 ReplaceSubstringsAfterOffset(&full_name, 0, "{count}", count); in StartProfiling() 37 ProfilerStart(full_name.c_str()); in StartProfiling()
|
/external/chromium_org/tools/checkdeps/ |
D | checkdeps.py | 94 full_name = os.path.join(dir_name, cur) 95 if os.path.isdir(full_name): 96 dirs_to_check.append(full_name) 97 elif os.path.splitext(full_name)[1] in checkers: 99 files_to_check.append(full_name)
|
/external/protobuf/python/google/protobuf/internal/ |
D | descriptor_test.py | 59 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',
|