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

1 2 3 4 5 6 7

  /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/base/debug/
profiler.cc 25 std::string full_name(name);
28 ReplaceSubstringsAfterOffset(&full_name, 0, "{pid}", pid);
29 ReplaceSubstringsAfterOffset(&full_name, 0, "{count}", count);
30 ProfilerStart(full_name.c_str());
  /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/extensions/common/
extension_api_stub.cc 39 bool ExtensionAPI::IsPrivileged(const std::string& full_name) {
44 const std::string& full_name) {
extension_api.cc 184 void ExtensionAPI::SplitDependencyName(const std::string& full_name,
187 size_t colon_index = full_name.find(':');
191 *feature_name = full_name;
195 *feature_type = full_name.substr(0, colon_index);
196 *feature_name = full_name.substr(colon_index + 1);
301 Feature::Availability ExtensionAPI::IsAvailable(const std::string& full_name,
305 Feature* feature = GetFeatureDependency(full_name);
306 CHECK(feature) << full_name;
324 bool ExtensionAPI::IsPrivileged(const std::string& full_name) {
325 Feature* feature = GetFeatureDependency(full_name);
    [all...]
extension_api.h 54 static void SplitDependencyName(const std::string& full_name,
90 // Gets the schema for the extension API with namespace |full_name|.
92 const base::DictionaryValue* GetSchema(const std::string& full_name);
103 std::string GetAPINameFromFullName(const std::string& 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 25 def ResolveType(self, full_name, default_namespace):
26 name_parts = full_name.rsplit('.', 1)
28 if full_name not in default_namespace.types:
  /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...]
  /bionic/tests/
benchmark_main.cpp 152 char full_name[100]; local
155 snprintf(full_name, sizeof(full_name), "%s/%dM", name_, arg/(1<<20));
157 snprintf(full_name, sizeof(full_name), "%s/%dK", name_, arg/(1<<10));
159 snprintf(full_name, sizeof(full_name), "%s/%d", name_, arg);
162 snprintf(full_name, sizeof(full_name), "%s", name_);
165 printf("%-20s %10lld %10lld%s\n", full_name,
    [all...]
  /external/chromium_org/content/public/test/
test_launcher.cc 209 std::string GetPreTestName(const std::string& full_name) {
210 size_t dot_pos = full_name.find('.');
212 std::string test_case_name = full_name.substr(0, dot_pos);
213 std::string test_name = full_name.substr(dot_pos + 1);
225 std::string full_name(test_names[i]);
226 std::string pre_test_name(GetPreTestName(full_name));
232 dependent_test_map_[pre_test_name] = full_name;
234 DCHECK(!ContainsKey(reverse_dependent_test_map_, full_name));
235 reverse_dependent_test_map_[full_name] = pre_test_name;
237 full_name = pre_test_name
    [all...]
  /external/chromium_org/chrome/browser/autocomplete/
contact_provider_chromeos.cc 68 ContactData(const base::string16& full_name,
73 : full_name(full_name),
81 given_name, full_name, &given_name_index, NULL);
83 family_name, full_name, &family_name_index, NULL);
86 base::string16 full_name; member in struct:ContactProvider::ContactData
90 // Indices into |full_name| where |given_name| and |family_name| first appear,
174 base::string16 full_name = local
175 AutocompleteMatch::SanitizeString(UTF8ToUTF16(contact.full_name()));
183 if (!full_name.empty())
    [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/ui/app_list/test/
app_list_test_model.h 49 // Creates an item with |title| and |full_name|. Caller owns the result.
51 const std::string& full_name);
53 // Creates and adds an item with |title| and |full_name| to the model.
54 void CreateAndAddItem(const std::string& title, const std::string& full_name);
app_list_test_model.cc 72 const std::string& full_name) {
81 item->SetTitleAndFullName(title, full_name);
86 const std::string& full_name) {
87 item_list()->AddItem(CreateItem(title, 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());
  /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...]
  /external/chromium/chrome/browser/extensions/
extension_metrics_module.cc 25 std::string full_name(name);
26 full_name += extension->id();
27 return full_name;
77 std::string full_name = BuildMetricName(name, GetExtension()); local
80 counter = LinearHistogram::FactoryGet(full_name,
86 counter = Histogram::FactoryGet(full_name,
  /external/chromium_org/ui/app_list/
app_list_item_model.cc 29 const std::string& full_name) {
30 if (title_ == title && full_name_ == full_name)
34 full_name_ = 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());

Completed in 648 milliseconds

1 2 3 4 5 6 7