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

1 2

  /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/compiler-rt/lib/sanitizer_common/
sanitizer_symbolizer.h 87 const char *full_name() const { return full_name_; } function in class:__sanitizer::LoadedModule
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
gcc-plugin.h 80 const char *full_name; /* Path to the plugin as specified with member in struct:plugin_name_args
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
gcc-plugin.h 80 const char *full_name; /* Path to the plugin as specified with member in struct:plugin_name_args
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
gcc-plugin.h 80 const char *full_name; /* Path to the plugin as specified with member in struct:plugin_name_args
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
gcc-plugin.h 80 const char *full_name; /* Path to the plugin as specified with member in struct:plugin_name_args
  /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/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_helpers.cc 162 string ToJavaName(const Params& params, const string& full_name,
172 result += full_name;
174 // Strip the proto package from full_name since we've replaced it with
182 full_name.find_first_of('.', sizeToSkipPackageName + 1);
186 string class_name = full_name.substr(sizeToSkip + 1);
208 const string full_name = descriptor->full_name(); local
211 string base_name = full_name.substr(0, full_name.find_last_of('.'));
  /external/protobuf/src/google/protobuf/compiler/javanano/
javanano_helpers.cc 162 string ToJavaName(const Params& params, const string& full_name,
172 result += full_name;
174 // Strip the proto package from full_name since we've replaced it with
182 full_name.find_first_of('.', sizeToSkipPackageName + 1);
186 string class_name = full_name.substr(sizeToSkip + 1);
208 const string full_name = descriptor->full_name(); local
211 string base_name = full_name.substr(0, full_name.find_last_of('.'));
  /external/yaffs2/yaffs2/utils/
mkyaffsimage.c 403 char full_name[500]; local
408 sprintf(full_name,"%s/%s",path,entry->d_name);
410 lstat(full_name,&stats);
424 printf("Object %d, %s is a ",newObj,full_name);
445 readlink(full_name,symname,sizeof(symname) -1);
463 h = open(full_name,O_RDONLY);
511 // NCB modified 10/9/2001 process_directory(1,full_name);
512 process_directory(newObj,full_name);
mkyaffs2image.c 353 char full_name[500]; local
360 sprintf(full_name,"%s/%s",path,entry->d_name);
362 lstat(full_name,&stats);
365 suffix = full_name + seprefixlen;
412 fix_stat(full_name, &stats);
415 //printf("Object %d, %s is a ",newObj,full_name);
436 readlink(full_name,symname,sizeof(symname) -1);
454 h = open(full_name,O_RDONLY);
502 // NCB modified 10/9/2001 process_directory(1,full_name);
503 process_directory(newObj,full_name,fixstats)
    [all...]
  /external/blktrace/btreplay/
btrecord.c 341 char full_name[MAXPATHLEN]; local
343 sprintf(full_name, "%s/%s.blktrace.%d", idir, devnm, cpu);
344 if (access(full_name, R_OK) != 0)
347 __add_input_file(cpu, devnm, full_name);
btreplay.c 964 char full_name[MAXPATHLEN]; local
966 sprintf(full_name, "%s/%s.%s.%d", idir, dip->devnm, ibase, cpu);
967 if (access(full_name, R_OK) != 0)
970 add_input_file(cpu, dip->devnm, full_name);
    [all...]
  /external/protobuf/src/google/protobuf/compiler/
command_line_interface_unittest.cc 317 string full_name = temp_directory_ + "/" + name; local
318 File::WriteStringToFileOrDie(contents, full_name);
    [all...]
  /external/chromium/base/
file_util_posix.cc 731 FilePath full_name = source.Append(dent->d_name); local
734 ret = lstat(full_name.value().c_str(), &info.stat);
736 ret = stat(full_name.value().c_str(), &info.stat);
  /external/chromium/chrome/browser/
browser_about_handler.cc 707 std::string full_name = table->GetRowName(index); local
708 if (full_name.length() == 0)
710 DCHECK_EQ(':', full_name[1]);
711 char counter_type = full_name[0];
712 std::string name = full_name.substr(2);
    [all...]
  /external/freetype/src/cff/
cfftypes.h 110 FT_UInt full_name; member in struct:CFF_FontRecDictRec_
  /external/webkit/Tools/Scripts/webkitpy/style/checkers/
cpp.py 620 def full_name(self): member in class:FileInfo
634 fullname = self.full_name()
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
location_bar_view_gtk.cc 954 string16 full_name = l10n_util::GetStringFUTF16(message_id, local
    [all...]
  /external/freetype/include/freetype/
t1tables.h 73 FT_String* full_name; member in struct:PS_FontInfoRec_
  /external/genext2fs/
genext2fs.c 1666 char full_name[2048]; local
    [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...]
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest.cc 358 const String& full_name = String::Format("%s.%s", local
382 return (MatchesFilter(full_name, positive.c_str()) &&
383 !MatchesFilter(full_name, negative.c_str()));
    [all...]
  /external/chromium/testing/gtest/src/
gtest.cc 476 const String& full_name = String::Format("%s.%s", local
500 return (MatchesFilter(full_name, positive.c_str()) &&
501 !MatchesFilter(full_name, negative.c_str()));
    [all...]
  /external/gtest/src/
gtest.cc 476 const String& full_name = String::Format("%s.%s", local
500 return (MatchesFilter(full_name, positive.c_str()) &&
501 !MatchesFilter(full_name, negative.c_str()));
    [all...]

Completed in 929 milliseconds

1 2