/external/protobuf/java/src/test/java/com/google/protobuf/ |
DynamicMessageTest.java | 93 .addField(1, UnknownFieldSet.Field.newBuilder().addVarint(1).build()) 94 .addField(2, UnknownFieldSet.Field.newBuilder().addFixed32(1).build()) 271 UnknownFieldSet.Field.newBuilder() 291 FieldDescriptor field = oneof.getField(3); local 292 assertSame(field, builder.getOneofFieldDescriptor(oneof)); 303 assertTrue(mergedBuilder.hasField(field));
|
/external/v8/src/ppc/ |
macro-assembler-ppc.h | 34 // Generate a MemOperand for loading a field from an object. 706 // the loop, |current_address| points at the next uninitialized field. [all...] |
/packages/apps/Messaging/src/com/android/messaging/util/ |
UiUtils.java | 56 import java.lang.reflect.Field; 381 // AppCompatActionBar has one drawable Field, which is the shadow for the action bar 383 final Field[] fields = actionBarView.getClass().getDeclaredFields(); 385 for (final Field field : fields) { 386 if (field.getType().equals(Drawable.class)) { 387 field.setAccessible(true); 388 final Drawable shadowDrawable = (Drawable) field.get(actionBarView); 397 // Not expected, we should avoid this via field.setAccessible(true) above
|
/external/clang/lib/CodeGen/ |
CGDebugInfo.cpp | [all...] |
/art/test/121-modifiers/src/ |
Main.java | 109 for (java.lang.reflect.Field f : clazz.getDeclaredFields()) { 115 throw new RuntimeException("Unexpected field bits: " + name); 118 // Interface field, just check generically. 123 throw new RuntimeException("Expected field bit not set."); 146 int index = name.indexOf("Field"); 171 throw new RuntimeException("Unexpected field name " + name);
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/ |
generate_python.py | 68 for field in field_descriptors or []: 72 message_field = _MESSAGE_FIELD_MAP.get(field.type_name) 78 field_type = messages.Field.lookup_field_type_by_variant(field.variant) 81 type_format = '\'%s\', ' % field.type_name 83 if field.label == descriptor.FieldDescriptor.Label.REQUIRED: 86 elif field.label == descriptor.FieldDescriptor.Label.REPEATED: 89 if field_type.DEFAULT_VARIANT != field.variant: 90 variant_format = ', variant=messages.Variant.%s' % field.variant 94 if field.default_value [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
ExprEngineCXX.cpp | 134 const ValueDecl *Field; 137 Field = Init->getIndirectMember(); 140 Field = Init->getMember(); 144 QualType Ty = Field->getType(); 599 // The field stores the length of a captured variable-length array.
|
/external/dbus/dbus/ |
dbus-shell.c | 284 * delimited by the end of the quoted field." 309 * field splitting (using default whitespace IFS) and quote 310 * removal. Field splitting may increase the number of words. 314 * empty field, that empty field will be deleted from the list of 580 * perform field splitting. If we were going to honor IFS or do any 581 * expansions, we would have to do field splitting on each word 587 * So, we simply remove quotes, and don't do any field splitting or
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/duration/ |
BasicDurationFormat.java | 93 javax.xml.datatype.DatatypeConstants.Field inFields[] = { 119 boolean sawNonZero = false; // did we have a set, non-zero field? 124 continue; // ignore zero fields larger than the largest nonzero field
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/ |
BasicDurationFormat.java | 91 javax.xml.datatype.DatatypeConstants.Field inFields[] = { 117 boolean sawNonZero = false; // did we have a set, non-zero field? 122 continue; // ignore zero fields larger than the largest nonzero field
|
/external/skia/src/sfnt/ |
SkOTTable_OS_2_V3.h | 54 struct Field { 75 } field; member in union:SkOTTableOS2_V3::Type 99 struct Field { 263 } field; member in union:SkOTTableOS2_V3::UnicodeRange 369 struct Field { 390 } field; member in union:SkOTTableOS2_V3::Selection 412 struct Field { 494 } field; member in union:SkOTTableOS2_V3::CodePageRange
|
SkOTTable_OS_2_V4.h | 54 struct Field { 75 } field; member in union:SkOTTableOS2_V4::Type 99 struct Field { 263 } field; member in union:SkOTTableOS2_V4::UnicodeRange 401 struct Field { 422 } field; member in union:SkOTTableOS2_V4::Selection 447 struct Field { 529 } field; member in union:SkOTTableOS2_V4::CodePageRange
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/ |
DumpFields.java | 40 import org.jf.dexlib2.iface.Field; 125 String field = fields.keyAt(i) + ":" + fields.valueAt(i).getType() + " " + fields.valueAt(i).getName() + "\n"; local 126 outStream.write(field.getBytes());
|
/frameworks/compile/slang/ |
slang_rs_export_func.cpp | 146 const RSExportRecordType::Field *F = *FI;
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
TelephonyTest.java | 78 import java.lang.reflect.Field; 234 Field field = c.getDeclaredField(instanceName); local 235 field.setAccessible(true); 239 mOldInstances.put(key, field.get(obj)); 242 field.set(obj, newValue); 249 Field field = c.getDeclaredField(instanceName); local 250 field.setAccessible(true); 251 field.set(obj, mOldInstances.get(key)) 262 Field field = key.mClass.getDeclaredField(key.mInstName); local [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/ |
Support_Format.java | 38 String text, Format.Field field, int begin, int end) { 40 FieldPosition pos = new FieldPosition(field); 53 assertEquals(field + " " + begin + ".." + end,
|
/libcore/luni/src/test/java/libcore/java/net/ |
OldURLTest.java | 26 import java.lang.reflect.Field; 109 Field streamHandlerFactoryField = null; 116 Field[] fields = URL.class.getDeclaredFields(); 119 for (Field f : fields) {
|
/libcore/luni/src/test/java/libcore/java/util/zip/ |
DeflaterOutputStreamTest.java | 27 import java.lang.reflect.Field;
|
/libcore/support/src/test/java/tests/support/ |
Support_Format.java | 37 String text, Format.Field field, int begin, int end) { 39 FieldPosition pos = new FieldPosition(field); 53 assertEquals("Test " + count + ": incorrect begin index for field " 54 + field, begin, pos.getBeginIndex()); 55 assertEquals("Test " + count + ": incorrect end index for field" 56 + field, end, pos.getEndIndex());
|
/art/test/031-class-attributes/src/ |
ClassAttrs.java | 7 import java.lang.reflect.Field; 132 Field field; local 133 field = MemberClass.class.getField("mWha"); 134 System.out.println("field signature: " 135 + getSignatureAttribute(field));
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
CompactDecimalFormatTest.java | 265 assertEquals("Attributes", NumberFormat.Field.INTEGER, iter.getAttribute(NumberFormat.Field.INTEGER));
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
CompactDecimalFormatTest.java | 261 assertEquals("Attributes", NumberFormat.Field.INTEGER, iter.getAttribute(NumberFormat.Field.INTEGER));
|
/external/libvorbis/doc/ |
05-comment.tex | 4 \section{comment field and header specification} \label{vorbis:spec:comment} 14 The comment field is meant to be used much like someone jotting a 67 That is, comment fields consist of a field name and a corresponding value and 77 The field name is case-insensitive and may consist of ASCII 0x20 83 The field name is immediately followed by ASCII 0x3D ('='); 84 this equals sign is used to terminate the field name. 88 field contents to the end of the field. 91 \paragraph{Field names} 93 Below is a proposed, minimal list of standard field names with [all...] |
/external/okhttp/okio/okio/src/main/java/okio/ |
ByteString.java | 25 import java.lang.reflect.Field; 365 Field field = ByteString.class.getDeclaredField("data"); local 366 field.setAccessible(true); 367 field.set(this, byteString.data);
|
/frameworks/base/packages/CaptivePortalLogin/src/com/android/captiveportallogin/ |
CaptivePortalLoginActivity.java | 53 import java.lang.reflect.Field; 130 Field receiversField = LoadedApk.class.getDeclaredField("mReceivers");
|