HomeSort by relevance Sort by last modified time
    Searched refs:full_name (Results 1 - 25 of 177) sorted by null

1 2 3 4 5 6 7 8

  /external/chromium_org/build/android/pylib/instrumentation/
test_result.py 11 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/
test_result.cc 41 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);
test_result.h 48 std::string full_name; member in struct:base::TestResult
  /build/tools/fs_config/
fs_config.c 128 char* full_name = (char*) malloc(full_name_size); local
129 if (full_name == NULL) {
134 full_name[0] = '/';
135 strncpy(full_name + 1, buffer, full_name_size - 1);
136 full_name[full_name_size - 1] = '\0';
139 if (selabel_lookup(sehnd, &secontext, full_name, ( mode | (is_dir ? S_IFDIR : S_IFREG)))) {
144 free(full_name);
  /external/chromium_org/tools/json_schema_compiler/
schema_util.py 33 full_name = namespace_name + "." + function_name
34 for part in full_name.split("."):
schema_loader.py 26 def ResolveType(self, full_name, default_namespace):
27 name_parts = full_name.rsplit('.', 1)
29 if full_name not in default_namespace.types:
  /external/nanopb-c/generator/proto/
plugin_pb2.py 20 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='google.protobuf.compiler.CodeGeneratorResponse.error', index=0
    [all...]
nanopb_pb2.py 17 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='NanoPBOptions.long_names', index=3
    [all...]
  /external/chromium_org/chrome/browser/android/profiles/
profile_downloader_android.h 25 const base::string16& full_name,
  /external/chromium_org/third_party/protobuf/python/google/protobuf/
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)
descriptor.py 115 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, index, number, type, cpp_type, label
    [all...]
descriptor_pool.py 140 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 = full_name.lstrip('.') # fix inconsistent qualified name format
    [all...]
  /external/chromium_org/content/public/test/
test_launcher.cc 194 std::string GetPreTestName(const std::string& full_name) {
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 = pre_test_name
    [all...]
  /external/chromium_org/chrome/browser/profiles/
profile_downloader_unittest.cc 12 std::string GetJSonData(const std::string& full_name,
20 if (!full_name.empty()) {
21 stream << "\"name\": \"" << full_name << "\""; local
51 void VerifyWithAccountData(const std::string& full_name,
62 GetJSonData(full_name, given_name, url, locale),
72 EXPECT_EQ(full_name, parsed_full_name_utf8);
  /external/chromium_org/extensions/common/
extension_api_stub.cc 47 bool ExtensionAPI::IsPrivileged(const std::string& full_name) {
52 const std::string& full_name) {
extension_api.cc 180 void ExtensionAPI::SplitDependencyName(const std::string& full_name,
183 size_t colon_index = full_name.find(':');
187 *feature_name = full_name;
191 *feature_type = full_name.substr(0, colon_index);
192 *feature_name = full_name.substr(colon_index + 1);
265 Feature::Availability ExtensionAPI::IsAvailable(const std::string& full_name,
269 Feature* feature = GetFeatureDependency(full_name);
272 std::string("Unknown feature: ") + full_name);
297 bool ExtensionAPI::IsPrivileged(const std::string& full_name) {
298 Feature* feature = GetFeatureDependency(full_name);
    [all...]
extension_api.h 54 static void SplitDependencyName(const std::string& full_name,
102 // Gets the schema for the extension API with namespace |full_name|.
104 const base::DictionaryValue* GetSchema(const std::string& full_name);
115 std::string GetAPINameFromFullName(const std::string& full_name,
  /external/protobuf/python/google/protobuf/
descriptor.py 99 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, index, number, type, cpp_type, label
    [all...]
  /external/protobuf/src/google/protobuf/compiler/java/
java_helpers.h 74 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());
  /bionic/benchmarks/
benchmark_main.cpp 155 char full_name[100]; local
158 snprintf(full_name, sizeof(full_name), "%s/%dM", name_, arg/(1<<20));
160 snprintf(full_name, sizeof(full_name), "%s/%dK", name_, arg/(1<<10));
162 snprintf(full_name, sizeof(full_name), "%s/%d", name_, arg);
165 snprintf(full_name, sizeof(full_name), "%s", name_);
168 printf("%-*s %10d %10" PRId64 "%s\n", g_name_column_width, full_name,
    [all...]
  /external/protobuf/src/google/protobuf/
descriptor.cc 366 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());
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...]
message.cc 65 "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/
profiler.cc 32 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());
  /external/chromium_org/third_party/skia/platform_tools/android/tests/
android_framework_gyp_tests.py 51 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/
android_framework_gyp_tests.py 51 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))

Completed in 2185 milliseconds

1 2 3 4 5 6 7 8