Home
last modified time | relevance | path

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

1234567

/external/chromium_org/third_party/protobuf/
Ddescriptor_pb2.py18 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/
Dtest_launcher.cc194 std::string GetPreTestName(const std::string& full_name) { in GetPreTestName() argument
195 size_t dot_pos = full_name.find('.'); in GetPreTestName()
197 std::string test_case_name = full_name.substr(0, dot_pos); in GetPreTestName()
198 std::string test_name = full_name.substr(dot_pos + 1); in GetPreTestName()
214 std::string full_name(test_names[i]); in RunTests() local
215 std::string pre_test_name(GetPreTestName(full_name)); in RunTests()
221 dependent_test_map_[pre_test_name] = full_name; in RunTests()
223 DCHECK(!ContainsKey(reverse_dependent_test_map_, full_name)); in RunTests()
224 reverse_dependent_test_map_[full_name] = pre_test_name; in RunTests()
226 full_name = pre_test_name; in RunTests()
[all …]
/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.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.cc65 "to: " << descriptor->full_name() << ", " in MergeFrom()
66 "from:" << from.GetDescriptor()->full_name(); in MergeFrom()
78 "to: " << descriptor->full_name() << ", " in CopyFrom()
79 "from:" << from.GetDescriptor()->full_name(); in CopyFrom()
84 return GetDescriptor()->full_name(); in GetTypeName()
107 << "Message of type \"" << GetDescriptor()->full_name() in CheckInitialized()
152 GOOGLE_LOG(FATAL) << "Message class \"" << GetDescriptor()->full_name() in SetCachedSize()
257 GOOGLE_LOG(DFATAL) << "Type is already registered: " << descriptor->full_name(); in RegisterType()
294 << "registered: " << type->full_name(); in GetPrototype()
/external/chromium_org/third_party/protobuf/python/google/protobuf/
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/chromium_org/third_party/protobuf/src/google/protobuf/
Ddescriptor.cc407 bool AddSymbol(const string& full_name, Symbol symbol);
730 const string& full_name, Symbol symbol) { in AddSymbol() argument
731 if (InsertIfNotPresent(&symbols_by_name_, full_name.c_str(), symbol)) { in AddSymbol()
732 symbols_after_checkpoint_.push_back(full_name.c_str()); in AddSymbol()
1076 if (fallback_database_->FindAllExtensionNumbers(extendee->full_name(), in FindAllExtensions()
1400 containing_type->full_name(), field_number, &file_proto)) { in TryFindExtensionInFallbackDatabase()
1549 proto->mutable_extendee()->append(containing_type()->full_name()); in CopyTo()
1562 proto->mutable_type_name()->append(message_type()->full_name()); in CopyTo()
1567 proto->mutable_type_name()->append(enum_type()->full_name()); in CopyTo()
1618 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()
/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 …]
/external/chromium_org/build/android/pylib/instrumentation/
Dtest_result.py11 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/
Dextension_api.cc185 void ExtensionAPI::SplitDependencyName(const std::string& full_name, in SplitDependencyName() argument
188 size_t colon_index = full_name.find(':'); in SplitDependencyName()
192 *feature_name = full_name; in SplitDependencyName()
196 *feature_type = full_name.substr(0, colon_index); in SplitDependencyName()
197 *feature_name = full_name.substr(colon_index + 1); in SplitDependencyName()
281 Feature::Availability ExtensionAPI::IsAvailable(const std::string& full_name, in IsAvailable() argument
285 Feature* feature = GetFeatureDependency(full_name); in IsAvailable()
288 std::string("Unknown feature: ") + full_name); in IsAvailable()
312 const std::string& full_name) { in GetSchema() argument
314 std::string api_name = GetAPINameFromFullName(full_name, &child_name); in GetSchema()
[all …]
/external/chromium_org/chrome/browser/profiles/
Dprofile_downloader_unittest.cc12 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/chromium_org/base/test/launcher/
Dtest_result.cc41 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/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()
/external/chromium_org/tools/json_schema_compiler/
Dschema_loader.py66 def ResolveType(self, full_name, default_namespace): argument
67 name_parts = full_name.rsplit('.', 1)
69 if full_name not in default_namespace.types:
72 full_namespace, type_name = full_name.rsplit('.', 1)
/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/chromium_org/third_party/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/chromium_org/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/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/qemu/scripts/
Dqapi-visit.py24 full_name = name
26 full_name = "%s_%s" % (name, fn_prefix)
45 name=name, full_name=full_name)
72 ret += generate_visit_struct_body(full_name, argname, argentry)
104 full_name = name
106 full_name = "%s_%s" % (field_prefix, name)
130 name=full_name)
/external/chromium_org/base/debug/
Dprofiler.cc32 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/third_party/protobuf/python/google/protobuf/pyext/
Dpython_descriptor.cc52 Py_XINCREF(self->full_name); in CFieldDescriptor_GetFullName()
53 return self->full_name; in CFieldDescriptor_GetFullName()
141 Py_DECREF(self->full_name); in CFieldDescriptorDealloc()
166 cfield_descriptor->full_name = PyString_FromString( in CDescriptorPool_NewCDescriptor()
167 field_descriptor->full_name().c_str()); in CDescriptorPool_NewCDescriptor()

1234567