/external/llvm/tools/llvm-readobj/ |
COFFDumper.cpp | 67 void printDataDirectory(uint32_t Index, const std::string &FieldName); 353 void COFFDumper::printDataDirectory(uint32_t Index, const std::string &FieldName) { 357 W.printHex(FieldName + "RVA", Data->RelativeVirtualAddress); 358 W.printHex(FieldName + "Size", Data->Size); [all...] |
/external/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_helpers.h | 75 string FieldName(const FieldDescriptor* field);
|
/frameworks/base/docs/html/ndk/reference/ |
group___asset.jd | 139 <tr><th colspan="2">Enumerator</th></tr><tr><td class="fieldname"><em><a class="anchor" id="gga06fc87d81c62e9abb8790b6e5713c55ba5bf76576f07042f965f230086f7c09f4"></a>AASSET_MODE_UNKNOWN</em> </td><td class="fielddoc"> 142 <tr><td class="fieldname"><em><a class="anchor" id="gga06fc87d81c62e9abb8790b6e5713c55ba88e1b2a920963d7596735fe28bf30e2f"></a>AASSET_MODE_RANDOM</em> </td><td class="fielddoc"> 145 <tr><td class="fieldname"><em><a class="anchor" id="gga06fc87d81c62e9abb8790b6e5713c55bac76f5fdb953097efc04e534474a7ea74"></a>AASSET_MODE_STREAMING</em> </td><td class="fielddoc"> 148 <tr><td class="fieldname"><em><a class="anchor" id="gga06fc87d81c62e9abb8790b6e5713c55ba40ec098f4afb7c2869fa449d3059f6bb"></a>AASSET_MODE_BUFFER</em> </td><td class="fielddoc"> [all...] |
/frameworks/compile/slang/ |
slang_rs_reflection_cpp.cpp | 761 std::string FieldName; 768 FieldName = VarName + ("." + F->getName()); 770 FieldName = F->getName(); 777 genPackVarOfType(F->getType(), FieldName.c_str(), FieldPackerName); [all...] |
/libcore/luni/src/main/java/java/text/ |
DateFormat.java | 796 * fieldName and calendar field. 798 * @param fieldName 803 protected Field(String fieldName, int calendarField) { 804 super(fieldName);
|
/external/clang/lib/Parse/ |
ParseInit.cpp | 138 const IdentifierInfo *FieldName = Tok.getIdentifierInfo(); 141 llvm::raw_svector_ostream(NewSyntax) << '.' << FieldName->getName() 154 D.AddDesignator(Designator::getField(FieldName, SourceLocation(), NameLoc));
|
/external/icu/icu4c/source/test/intltest/ |
calcasts.cpp | 96 errln((UnicodeString)"Checking field " + fieldName(field) + " and got " + u_errorName(status)); 100 errln((UnicodeString)"FAIL: Checking field " + fieldName(field) + " expected " + value + " and got " + res + UnicodeString("\n")); 103 logln((UnicodeString)"Checking field " + fieldName(field) + " == " + value + UnicodeString("\n"));
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/ |
DangiTest.java | 223 buf.append(" " + fieldName(DATA[i-2]) + "=" + DATA[i-1]); 362 + fieldName(test[4]) + " by " + test[5] + ": expected " 366 + fieldName(test[4]) + " by " + test[5] + ": got " + ymdToString(cal));
|
ChineseTest.java | 358 buf.append(" " + fieldName(DATA[i-2]) + "=" + DATA[i-1]); 502 + " " + fieldName(test[4]) + " by " + test[5] 509 + " " + fieldName(test[4]) + " by " + test[5]
|
/external/protobuf/src/google/protobuf/compiler/java/ |
java_helpers.cc | 83 string FieldName(const FieldDescriptor* field) { 140 return UnderscoresToCamelCase(FieldName(field), false); 144 return UnderscoresToCamelCase(FieldName(field), true);
|
/frameworks/av/media/libstagefright/foundation/ |
AMessage.cpp | 220 #define BASIC_TYPE(NAME,FIELDNAME,TYPENAME) \ 225 item->u.FIELDNAME = value; \ 231 *value = item->u.FIELDNAME; \
|
/external/jdiff/src/jdiff/ |
HTMLReportGenerator.java | 656 String fieldName = fieldAPI.name_; 657 if (trace) System.out.println("Field " + fieldName + " was removed."); 669 String fieldName = fieldAPI.name_; 670 if (trace) System.out.println("Field " + fieldName + " was added."); [all...] |
/external/libphonenumber/demo/war/WEB-INF/lib/ |
commons-fileupload-1.2.1.jar | |
/external/chromium-trace/trace-viewer/third_party/Paste/paste/ |
fixture.py | 257 ``[(fieldname, filename, file_content)]``. You can also use 258 just ``[(fieldname, filename)]`` and the file content will be 276 ``[(fieldname, filename, file_content)]``. You can also use 277 just ``[(fieldname, filename)]`` and the file content will be 377 "upload_files need to be a list of tuples of (fieldname, " 378 "filename, filecontent) or (fieldname, filename); " [all...] |
/external/chromium-trace/trace-viewer/tracing/tracing/extras/importer/ |
trace_event_importer.html | 158 for (var fieldName in container) { 159 if (fieldName in knownFieldNames) 161 this.model_.metadata.push({name: fieldName, 162 value: container[fieldName]}); [all...] |
/development/tools/apkcheck/src/com/android/apkcheck/ |
ClassInfo.java | 137 * @param nameAndType fieldName:type
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/ |
plugin.xml | 198 name="org.eclipse.jdt.debug.core.fieldName">
|
/external/elfutils/src/libcpu/ |
i386_parse.y | 811 char *fieldname = runp->field->name; 813 struct synonym search = { .from = fieldname }; 817 fieldname = (*res)->to; 819 obstack_grow_str (&ob, fieldname); [all...] |
/external/javassist/src/main/javassist/util/proxy/ |
ProxyFactory.java | 514 private void setField(String fieldName, Object value) { 517 Field f = thisClass.getField(fieldName); 531 private static Object getField(Class clazz, String fieldName) { 533 Field f = clazz.getField(fieldName); [all...] |
/external/protobuf/src/google/protobuf/ |
unittest_custom_options.proto | 365 optional int32 fieldname = 1 [(fieldopt) = { s:'FieldAnnotation' }];
|
/external/valgrind/massif/ |
ms_print.in | 167 my ($line, $fieldname) = @_; 169 or die("Line $.: expected \"$fieldname\" line, got end of file\n"); 170 $line =~ s/^$fieldname=(.*)\s*$// 171 or die("Line $.: expected \"$fieldname\" line, got:\n$line");
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
ast.py | 163 Yield a tuple of ``(fieldname, value)`` for each field in ``node._fields``
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
ast.py | 163 Yield a tuple of ``(fieldname, value)`` for each field in ``node._fields``
|
/external/clang/tools/libclang/ |
CXType.cpp | 815 DeclarationName FieldName(II); 820 RecordDecl::lookup_result Res = RD->lookup(FieldName);
|
/external/llvm/test/CodeGen/ARM/ |
2010-06-21-nondarwin-tc.ll | 31 define %"struct.llvm::Init"* @_ZNK4llvm7VarInit12getFieldInitERNS_6RecordEPKNS_9RecordValERKSs(%"class.llvm::StringInit"* %this, %"class.llvm::Record"* %R, %"class.llvm::RecordVal"* %RV, %"class.std::basic_string"* %FieldName) align 2 { 139 %call25 = tail call %"struct.llvm::Init"* %11(%"struct.llvm::Init"* %tmp2.i2, %"class.llvm::Record"* %R, %"class.llvm::RecordVal"* %RV, %"class.std::basic_string"* %FieldName) ; <%"struct.llvm::Init"*> [#uses=1]
|