HomeSort by relevance Sort by last modified time
    Searched refs:Field (Results 326 - 350 of 614) sorted by null

<<11121314151617181920>>

  /ndk/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-tuple.h 804 Field(Tuple& t) { return t.f0_; } // NOLINT
816 Field(Tuple& t) { return t.f1_; } // NOLINT
828 Field(Tuple& t) { return t.f2_; } // NOLINT
840 Field(Tuple& t) { return t.f3_; } // NOLINT
852 Field(Tuple& t) { return t.f4_; } // NOLINT
864 Field(Tuple& t) { return t.f5_; } // NOLINT
876 Field(Tuple& t) { return t.f6_; } // NOLINT
888 Field(Tuple& t) { return t.f7_; } // NOLINT
900 Field(Tuple& t) { return t.f8_; } // NOLINT
912 Field(Tuple& t) { return t.f9_; } // NOLIN
    [all...]
  /art/test/046-reflect/src/
Main.java 53 void printFieldInfo(Field field) {
54 System.out.println("Field name is " + field.getName());
56 + field.getDeclaringClass().getName());
57 System.out.println(" Field type is " + field.getType().getName());
59 + Integer.toHexString(field.getModifiers()));
67 Field field = null local
109 Field field = target.getField("innerField"); local
126 Field field = null; local
452 Field field = niuClass.getField("staticField"); local
493 Field field; local
    [all...]
  /cts/tests/signature/src/android/signature/cts/
JDiffClassDescription.java 20 import java.lang.reflect.Field;
58 // A map of field name to field of the fields contained in {@code mClass}
59 private Map<String, Field> mClassFieldMap;
119 * Adds a field.
121 * @param field the field to be added.
123 public void addField(JDiffField field) {
124 jDiffFields.add(field);
242 * Represents a field
1214 fieldMap.put(field.getName(), field); local
    [all...]
  /cts/tests/tests/accessibility/src/android/view/accessibility/cts/
AccessibilityRecordTest.java 27 import java.lang.reflect.Field;
208 for (Field field : clazz.getDeclaredFields()) {
209 if ((field.getModifiers() & Modifier.STATIC) == 0) {
  /dalvik/dx/tests/115-merge/com/android/dx/merge/
DexMergeTest.java 27 import java.lang.reflect.Field;
106 Field field = annotated.getField("field"); local
119 assertEquals("@testdata.Annotated$Marker(a=on field, b=[], "
121 field.getAnnotation(marker).toString());
  /external/chromium_org/content/renderer/media/
media_stream_video_capture_source_unittest.cc 107 testing::Field(&media::VideoCaptureParams::resolution_change_policy,
123 testing::Field(&media::VideoCaptureParams::resolution_change_policy,
  /external/chromium_org/tools/metrics/histograms/
extract_histograms.py 158 'Prefix Field Trial expansions require histogram names which include a '
159 'dot separator. Histogram name is %s, and Field Trial is %s',
  /external/chromium_org/v8/src/ia32/
macro-assembler-ia32.h 517 template<typename Field>
519 static const int shift = Field::kShift;
520 static const int mask = Field::kMask >> Field::kShift;
527 template<typename Field>
529 static const int shift = Field::kShift;
530 static const int mask = (Field::kMask >> Field::kShift) << kSmiTagSize;
666 // Allocate a raw cons string object. Only the map field of the result is
675 // Allocate a raw sliced string object. Only the map field of the result i
    [all...]
  /external/chromium_org/v8/src/x87/
macro-assembler-x87.h 489 template<typename Field>
491 static const int shift = Field::kShift;
492 static const int mask = Field::kMask >> Field::kShift;
499 template<typename Field>
501 static const int shift = Field::kShift;
502 static const int mask = (Field::kMask >> Field::kShift) << kSmiTagSize;
636 // Allocate a raw cons string object. Only the map field of the result is
645 // Allocate a raw sliced string object. Only the map field of the result i
    [all...]
  /external/clang/lib/Sema/
SemaDeclCXX.cpp     [all...]
  /external/mockito/src/org/mockito/internal/creation/
AcrossJVMSerializationFeature.java 17 import java.lang.reflect.Field;
311 * Hack the <code>name</code> field of the given <code>ObjectStreamClass</code> with
330 Field classNameField = descInstance.getClass().getDeclaredField("name");
335 "Wow, the class 'ObjectStreamClass' in the JDK don't have the field 'name',",
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
DexPool.java 38 import org.jf.dexlib2.iface.Field;
55 TypeListPool.Key<? extends Collection<? extends CharSequence>>, Field, PoolMethod,
119 case ValueType.FIELD:
179 case ValueType.FIELD:
  /frameworks/base/core/java/android/test/
InstrumentationTestCase.java 26 import java.lang.reflect.Field;
271 final Field keyCodeField = KeyEvent.class.getField("KEYCODE_" + key);
  /frameworks/base/core/tests/coretests/src/android/widget/
TextViewWordLimitsTest.java 26 import java.lang.reflect.Field;
39 Field mContextMenuTriggeredByKey, mSelectionControllerEnabled;
  /frameworks/base/packages/CaptivePortalLogin/src/com/android/captiveportallogin/
CaptivePortalLoginActivity.java 53 import java.lang.reflect.Field;
143 Field receiversField = LoadedApk.class.getDeclaredField("mReceivers");
  /frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/setup/
LayoutLibTestCallback.java 36 import java.lang.reflect.Field;
69 for (Field field : resClass.getDeclaredFields()) {
70 final int modifiers = field.getModifiers();
72 final Class<?> type = field.getType();
76 new IntArrayWrapper((int[]) field.get(null)),
77 field.getName());
79 final Integer value = (Integer) field.get(null);
80 mProjectResources.put(value, Pair.of(resType, field.getName()));
81 resName2Id.put(field.getName(), value)
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ListViewCompat.java 31 import java.lang.reflect.Field;
52 private Field mIsChildViewEnabled;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/apache/harmony/kernel/dalvik/
ThreadsTest.java 19 import java.lang.reflect.Field;
39 Field field = Unsafe.class.getDeclaredField("THE_ONE"); typedefs
40 field.setAccessible(true);
42 UNSAFE = (Unsafe) field.get(null);
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicIntegerFieldUpdater.java 11 import java.lang.reflect.Field;
23 * Because this class cannot ensure that all uses of the field
30 * @param <T> The type of the object holding the updatable field
34 * Creates and returns an updater for objects with the given field.
38 * @param tclass the class of the objects holding the field
39 * @param fieldName the name of the field to be updated
41 * @throws IllegalArgumentException if the field is not a
44 * exception if the class does not hold field or is the wrong type,
45 * or the field is inaccessible to the caller according to Java language
59 * Atomically sets the field of the given object managed by this update
247 final Field field; local
    [all...]
AtomicReferenceFieldUpdater.java 10 import java.lang.reflect.Field;
39 * Because this class cannot ensure that all uses of the field
46 * @param <T> The type of the object holding the updatable field
47 * @param <V> The type of the field
52 * Creates and returns an updater for objects with the given field.
56 * @param tclass the class of the objects holding the field
57 * @param vclass the class of the field
58 * @param fieldName the name of the field to be updated
60 * @throws IllegalArgumentException if the field is not a volatile reference type
62 * exception if the class does not hold field or is the wrong type
178 final Field field; local
    [all...]
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLSocketFactoryTest.java 19 import java.lang.reflect.Field;
194 Field field_secprops = Security.class.getDeclaredField("secprops");
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
ApiHelper.java 27 import java.lang.reflect.Field;
198 Field f = klass.getDeclaredField(fieldName);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
MoreKeySpecSplitTests.java 25 import java.lang.reflect.Field;
55 for (final Field field : resourceIdClass.getFields()) {
56 if (field.getType() == int.class) {
57 names.add(field.getName());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
CompiledResourcesMonitor.java 43 import java.lang.reflect.Field;
267 for (Field f : inner.getDeclaredFields()) {
  /art/test/064-field-access/src/
Main.java 18 import java.lang.reflect.Field;
22 * Test field access through reflection.
41 * Get the field specified by "field" from "obj".
44 * field.getByte().
51 public Object getValue(Field field, Object obj, char type,
57 result = field.getBoolean(obj);
60 result = field.getByte(obj);
63 result = field.getShort(obj)
    [all...]

Completed in 3647 milliseconds

<<11121314151617181920>>