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

1 2 3 4 5 6

  /external/jmonkeyengine/engine/src/core/com/jme3/system/
JmeVersion.java 4 public static final String FULL_NAME = "jMonkeyEngine 3.0.0 Beta";
  /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());
  /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/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
DistributionPointName.java 27 public static final int FULL_NAME = 0;
63 this(FULL_NAME, name);
112 if (type == FULL_NAME)
  /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/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();
generated_message_reflection.cc 89 " Message type: " << descriptor->full_name() << "\n"
90 " Field : " << field->full_name() << "\n"
115 " Message type: " << descriptor->full_name() << "\n"
116 " Field : " << field->full_name() << "\n"
128 " Message type: " << descriptor->full_name() << "\n"
129 " Field : " << field->full_name() << "\n"
131 " Expected : " << field->enum_type()->full_name() << "\n"
132 " Actual : " << value->full_name();
320 << message1->GetDescriptor()->full_name()
322 << descriptor_->full_name()
    [all...]
  /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());
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/compiler/python/
python_generator.cc 357 m["full_name"] = enum_descriptor.full_name();
362 " full_name='$full_name$',\n"
446 m["full_name"] = descriptor.full_name();
452 "full_name='$full_name$',\n"
469 m["full_name"] = method->full_name();
    [all...]
  /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/src/google/protobuf/compiler/javanano/
javanano_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());
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('.'));
  /packages/apps/Browser/src/com/android/browser/
AutoFillProfileDatabase.java 40 static final String FULL_NAME = "fullname";
61 + Profiles.FULL_NAME + " TEXT,"
101 + Profiles.FULL_NAME + ","
128 Profiles.FULL_NAME,
  /external/yaffs2/yaffs2/utils/
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...]
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);
  /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/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
  /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/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
task.rb 76 full_name = ( @namespace + [ @name, 'compile' ] ).join( ':' )
77 Rake::Task[ full_name ]
85 full_name = ( @namespace + [ @name, 'clobber' ] ).join( ':' )
86 Rake::Task[ full_name ]
  /external/freetype/src/cff/
cfftoken.h 28 CFF_FIELD_STRING ( 2, full_name, "FullName" )

Completed in 219 milliseconds

1 2 3 4 5 6