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

1234567

/external/chromium_org/build/android/pylib/instrumentation/
H A Dtest_result.py11 def __init__(self, full_name, test_type, start_date, dur, log=''):
15 full_name: Full name of the test.
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/base/test/launcher/
H A Dtest_result.cc41 size_t dot_pos = full_name.find('.');
43 return full_name.substr(dot_pos + 1);
47 size_t dot_pos = full_name.find('.');
49 return full_name.substr(0, dot_pos);
H A Dtest_result.h48 std::string full_name; member in struct:base::TestResult
/external/chromium_org/tools/json_schema_compiler/
H A Dschema_util.py33 full_name = namespace_name + "." + function_name
34 for part in full_name.split("."):
H A Dschema_loader.py66 def ResolveType(self, full_name, default_namespace):
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/nanopb-c/generator/proto/
H A Dnanopb_pb2.py17 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
[all...]
H A Dplugin_pb2.py20 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
[all...]
/external/chromium_org/third_party/protobuf/
H A Ddescriptor_pb2.py18 full_name='google.protobuf.FieldDescriptorProto.Type', variable
103 full_name='google.protobuf.FieldDescriptorProto.Label', variable
128 full_name='google.protobuf.FileOptions.OptimizeMode', variable
153 full_name='google.protobuf.FieldOptions.CType', variable
179 full_name='google.protobuf.FileDescriptorSet', variable
185 name='file', full_name='google.protobuf.FileDescriptorSet.file', index=0,
207 full_name='google.protobuf.FileDescriptorProto', variable
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
284 full_name='google.protobuf.DescriptorProto.ExtensionRange', variable
318 full_name='google.protobuf.DescriptorProto', variable
388 full_name='google.protobuf.FieldDescriptorProto', variable
467 full_name='google.protobuf.EnumDescriptorProto', variable
509 full_name='google.protobuf.EnumValueDescriptorProto', variable
551 full_name='google.protobuf.ServiceDescriptorProto', variable
593 full_name='google.protobuf.MethodDescriptorProto', variable
642 full_name='google.protobuf.FileOptions', variable
720 full_name='google.protobuf.MessageOptions', variable
762 full_name='google.protobuf.FieldOptions', variable
819 full_name='google.protobuf.EnumOptions', variable
847 full_name='google.protobuf.EnumValueOptions', variable
875 full_name='google.protobuf.ServiceOptions', variable
903 full_name='google.protobuf.MethodOptions', variable
931 full_name='google.protobuf.UninterpretedOption.NamePart', variable
965 full_name='google.protobuf.UninterpretedOption', variable
[all...]
/external/chromium_org/chrome/browser/android/profiles/
H A Dprofile_downloader_android.h25 const base::string16& full_name,
/external/chromium_org/third_party/protobuf/python/google/protobuf/
H A 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)
H A Ddescriptor.py115 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, inde
[all...]
H A Ddescriptor_pool.py140 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
[all...]
/external/chromium_org/content/public/test/
H A Dtest_launcher.cc194 std::string GetPreTestName(const std::string& full_name) { argument
195 size_t dot_pos = full_name.find('.');
197 std::string test_case_name = full_name.substr(0, dot_pos);
198 std::string test_name = full_name.substr(dot_pos + 1);
214 std::string full_name(test_names[i]);
215 std::string pre_test_name(GetPreTestName(full_name));
221 dependent_test_map_[pre_test_name] = full_name;
223 DCHECK(!ContainsKey(reverse_dependent_test_map_, full_name));
224 reverse_dependent_test_map_[full_name] = pre_test_name;
226 full_name
[all...]
/external/chromium_org/chrome/browser/profiles/
H A Dprofile_downloader_unittest.cc12 std::string GetJSonData(const std::string& full_name, argument
20 if (!full_name.empty()) {
21 stream << "\"name\": \"" << full_name << "\""; local
51 void VerifyWithAccountData(const std::string& full_name, argument
62 GetJSonData(full_name, given_name, url, locale),
72 EXPECT_EQ(full_name, parsed_full_name_utf8);
/external/chromium_org/extensions/common/
H A Dextension_api_stub.cc40 bool ExtensionAPI::IsAvailableInUntrustedContext(const std::string& full_name, argument
51 const std::string& full_name) {
50 GetSchema( const std::string& full_name) argument
H A Dextension_api.h56 static void SplitDependencyName(const std::string& full_name,
115 // Gets the schema for the extension API with namespace |full_name|.
117 const base::DictionaryValue* GetSchema(const std::string& full_name);
128 std::string GetAPINameFromFullName(const std::string& full_name,
H A Dextension_api.cc185 void ExtensionAPI::SplitDependencyName(const std::string& full_name, argument
188 size_t colon_index = full_name.find(':');
192 *feature_name = full_name;
196 *feature_type = full_name.substr(0, colon_index);
197 *feature_name = full_name.substr(colon_index + 1);
281 Feature::Availability ExtensionAPI::IsAvailable(const std::string& full_name, argument
285 Feature* feature = GetFeatureDependency(full_name);
288 std::string("Unknown feature: ") + full_name);
312 const std::string& full_name) {
314 std::string api_name = GetAPINameFromFullName(full_name,
311 GetSchema( const std::string& full_name) argument
348 GetFeatureDependency(const std::string& full_name) argument
368 GetAPINameFromFullName(const std::string& full_name, std::string* child_name) argument
[all...]
/external/chromium_org/third_party/skia/platform_tools/android/tests/
H A 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/skia/platform_tools/android/tests/
H A 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/protobuf/python/google/protobuf/
H A Ddescriptor.py99 def __init__(self, options, options_class_name, name, full_name,
110 full_name: (str) Fully-qualified name of this protocol message type,
125 # TODO(falk): Add function to calculate full_name instead of having it in
127 self.full_name = full_name
166 full_name: (str) Fully-qualified name of this protocol message type,
210 def __init__(self, name, full_name, filename, containing_type, fields,
221 options, 'MessageOptions', name, full_name, file,
284 full_name: (str) Name of this field, including containing scope. This is
373 def __init__(self, name, full_name, inde
[all...]
/external/protobuf/src/google/protobuf/compiler/java/
H A Djava_helpers.h74 string ToJavaName(const string& full_name, const FileDescriptor* file);
79 return ToJavaName(descriptor->full_name(), descriptor->file());
82 return ToJavaName(descriptor->full_name(), descriptor->file());
85 return ToJavaName(descriptor->full_name(), descriptor->file());
88 return ToJavaName(descriptor->full_name(), descriptor->file());
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Ddescriptor.cc407 bool AddSymbol(const string& full_name, Symbol symbol);
730 const string& full_name, Symbol symbol) {
731 if (InsertIfNotPresent(&symbols_by_name_, full_name.c_str(), symbol)) {
732 symbols_after_checkpoint_.push_back(full_name.c_str());
1076 if (fallback_database_->FindAllExtensionNumbers(extendee->full_name(),
1400 containing_type->full_name(), field_number, &file_proto)) {
1549 proto->mutable_extendee()->append(containing_type()->full_name());
1562 proto->mutable_type_name()->append(message_type()->full_name());
1567 proto->mutable_type_name()->append(enum_type()->full_name());
1618 proto->mutable_input_type()->append(input_type()->full_name());
729 AddSymbol( const string& full_name, Symbol symbol) argument
2853 AddSymbol( const string& full_name, const void* parent, const string& name, const Message& proto, Symbol symbol) argument
2918 ValidateSymbolName( const string& name, const string& full_name, const Message& proto) argument
3254 string* full_name = tables_->AllocateString(scope); local
3322 string* full_name = tables_->AllocateString(scope); local
3577 string* full_name = tables_->AllocateString(scope); local
3620 string* full_name = tables_->AllocateString(*parent->full_name_); local
3682 string* full_name = tables_->AllocateString(file_->package()); local
3711 string* full_name = tables_->AllocateString(parent->full_name()); local
[all...]
/external/protobuf/src/google/protobuf/
H A Ddescriptor.cc366 bool AddSymbol(const string& full_name, Symbol symbol);
638 const string& full_name, Symbol symbol) {
639 if (InsertIfNotPresent(&symbols_by_name_, full_name.c_str(), symbol)) {
640 symbols_after_checkpoint_.push_back(full_name.c_str());
985 if (fallback_database_->FindAllExtensionNumbers(extendee->full_name(),
1270 containing_type->full_name(), field_number, &file_proto)) {
1405 proto->mutable_extendee()->append(containing_type()->full_name());
1418 proto->mutable_type_name()->append(message_type()->full_name());
1423 proto->mutable_type_name()->append(enum_type()->full_name());
1474 proto->mutable_input_type()->append(input_type()->full_name());
637 AddSymbol( const string& full_name, Symbol symbol) argument
2516 AddSymbol( const string& full_name, const void* parent, const string& name, const Message& proto, Symbol symbol) argument
2581 ValidateSymbolName( const string& name, const string& full_name, const Message& proto) argument
2866 string* full_name = tables_->AllocateString(scope); local
2934 string* full_name = tables_->AllocateString(scope); local
3183 string* full_name = tables_->AllocateString(scope); local
3226 string* full_name = tables_->AllocateString(*parent->full_name_); local
3288 string* full_name = tables_->AllocateString(file_->package()); local
3317 string* full_name = tables_->AllocateString(parent->full_name()); local
[all...]
H A Dmessage.cc65 "to: " << descriptor->full_name() << ", "
66 "from:" << from.GetDescriptor()->full_name();
78 "to: " << descriptor->full_name() << ", "
79 "from:" << from.GetDescriptor()->full_name();
84 return GetDescriptor()->full_name();
107 << "Message of type \"" << GetDescriptor()->full_name()
152 GOOGLE_LOG(FATAL) << "Message class \"" << GetDescriptor()->full_name()
257 GOOGLE_LOG(DFATAL) << "Type is already registered: " << descriptor->full_name();
294 << "registered: " << type->full_name();
/external/chromium_org/base/debug/
H A Dprofiler.cc32 std::string full_name(name);
35 ReplaceSubstringsAfterOffset(&full_name, 0, "{pid}", pid);
36 ReplaceSubstringsAfterOffset(&full_name, 0, "{count}", count);
37 ProfilerStart(full_name.c_str());

Completed in 5509 milliseconds

1234567