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

1 2 3

  /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/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_helpers.h 75 string ToJavaName(const Params& params, const string& full_name,
81 return ToJavaName(params, descriptor->full_name(), descriptor->file());
86 return ToJavaName(params, descriptor->full_name(), descriptor->file());
90 return ToJavaName(params, descriptor->full_name(), descriptor->file());
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/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...]
text_format.py 84 out.write(field.message_type.full_name)
86 out.write(field.full_name)
161 message_descriptor.full_name)
169 name, message_descriptor.full_name))
190 message_descriptor.full_name, name))
269 enum_descriptor.full_name, number))
276 enum_descriptor.full_name, identifier))
reflection.py 222 raise KeyError('"%s" is not an extension.' % extension_handle.full_name)
227 (extension_handle.full_name,
228 extension_handle.containing_type.full_name,
229 message.DESCRIPTOR.full_name))
592 (extension_handle.full_name, actual_handle.full_name,
593 cls.DESCRIPTOR.full_name, extension_handle.number))
595 cls._extensions_by_name[extension_handle.full_name] = extension_handle
601 extension_handle.message_type.full_name] = extension_handle
706 raise KeyError('"%s" is repeated.' % extension_handle.full_name)
    [all...]
  /external/bluetooth/glib/gmodule/
gmodule-ar.c 109 gchar* full_name; local
116 full_name = g_strconcat (file_name, "(", member, ")", NULL);
120 full_name = g_strdup (file_name);
122 handle = dlopen (full_name,
125 g_free (full_name);
  /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());
java_helpers.cc 149 string ToJavaName(const string& full_name, const FileDescriptor* file) {
160 result += full_name;
162 // Strip the proto package from full_name since we've replaced it with
164 result += full_name.substr(file->package().size() + 1);
  /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 64 "to: " << descriptor->full_name() << ", "
65 "from:" << from.GetDescriptor()->full_name();
77 "to: " << descriptor->full_name() << ", "
78 "from:" << from.GetDescriptor()->full_name();
83 return GetDescriptor()->full_name();
106 << "Message of type \"" << GetDescriptor()->full_name()
151 GOOGLE_LOG(FATAL) << "Message class \"" << GetDescriptor()->full_name()
256 GOOGLE_LOG(DFATAL) << "Type is already registered: " << descriptor->full_name();
293 << "registered: " << type->full_name();
descriptor.h 116 // Foo, Baz's full_name is "bar.Foo.Baz". To get only the part that
118 const string& full_name() const;
367 const string& full_name() const; // Fully-qualified name of the field.
549 const string& full_name() const;
630 // The full_name of an enum value is a sibling symbol of the enum type.
635 const string& full_name() const;
684 const string& full_name() const;
746 const string& full_name() const;
    [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,
extension_metrics_apitest.cc 52 std::string full_name(name);
53 full_name += extension->id();
54 return full_name;
  /external/webkit/Tools/Scripts/webkitpy/tool/steps/
updatechangelogswithreviewer.py 51 log("Guessing \"%s\" as reviewer from attachment %s on bug %s." % (patch.reviewer().full_name, patch.id(), bug_id))
52 return patch.reviewer().full_name
suggestreviewers.py 47 print "\n".join([reviewer.full_name for reviewer in reviewers])
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
gcc-plugin.h 100 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
  /external/protobuf/python/google/protobuf/internal/
descriptor_test.py 59 full_name='protobuf_unittest.ForeignEnum',
69 full_name='protobuf_unittest.TestAllTypes.NestedMessage',
76 full_name='protobuf_unittest.TestAllTypes.NestedMessage.bb',
90 full_name='protobuf_unittest.TestService.Bar',
97 full_name='protobuf_unittest.TestServiceWithOptions',
  /external/chromium/chrome/browser/autofill/
contact_info.cc 126 std::vector<string16> full_name;
127 full_name.push_back(first_);
130 full_name.push_back(middle_);
133 full_name.push_back(last_);
135 return JoinString(full_name, ' ');
  /external/yaffs2/yaffs2/utils/
mkyaffs2image.c 358 char full_name[500]; local
367 sprintf(full_name,"%s/%s",path,entry->d_name);
369 lstat(full_name,&stats);
373 suffix = full_name + seprefixlen;
407 fix_stat(full_name, &stats);
410 //printf("Object %d, %s is a ",newObj,full_name);
431 readlink(full_name,symname,sizeof(symname) -1);
449 h = open(full_name,O_RDONLY);
497 // NCB modified 10/9/2001 process_directory(1,full_name);
498 process_directory(newObj,full_name,fixstats)
    [all...]
  /external/freetype/src/cff/
cfftoken.h 28 CFF_FIELD_STRING ( 2, full_name, "FullName" )
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_helpers.cc 122 const string& outer_name = outer->full_name();
123 string inner_name = descriptor->full_name().substr(outer_name.size());
135 return DotsToColons(enum_descriptor->full_name());

Completed in 457 milliseconds

1 2 3