HomeSort by relevance Sort by last modified time
    Searched refs:Field (Results 576 - 600 of 955) sorted by null

<<21222324252627282930>>

  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
ListViewCompat.java 33 import java.lang.reflect.Field;
56 private Field mIsChildViewEnabled;
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
OldAndroidClassTest.java 20 import java.lang.reflect.Field;
114 Field field = obj.getClass().getDeclaredField("str"); local
115 field.set(obj, null);
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
ICUJDKCompare.java 17 import java.lang.reflect.Field;
300 Field fld = cls.getField("ICU_VERSION");
379 Field[] fields1 = class1.getFields();
380 Field[] fields2 = class2.getFields();
758 private String toString(Field f) {
771 private Set getFieldSet(Field[] fs) {
  /libcore/dex/src/main/java/com/android/dex/
Dex.java 333 * Look up a field id name index from a field index. Cheaper than:
374 * Look up a field id type index from a field index. Cheaper than:
725 ClassData.Field[] staticFields = readFields(staticFieldsSize);
726 ClassData.Field[] instanceFields = readFields(instanceFieldsSize);
732 private ClassData.Field[] readFields(int count) {
733 ClassData.Field[] result = new ClassData.Field[count];
736 fieldIndex += readUleb128(); // field index dif
    [all...]
  /external/v8/src/arm/
macro-assembler-arm.h 34 // Generate a MemOperand for loading a field from an object.
    [all...]
  /external/v8/src/mips/
macro-assembler-mips.h 122 // Generate a MemOperand for loading a field from an object.
    [all...]
  /external/v8/src/x64/
macro-assembler-x64.h 417 // Stores an integer32 value into a memory field that already holds a smi.
    [all...]
  /external/google-breakpad/src/testing/test/
gmock-matchers_test.cc 86 using testing::Field;
    [all...]
gmock_link_test.h 90 // Field
141 using testing::Field;
236 int field() const { return field_; } function in class:FieldHelper
238 // the Field matcher.
603 // Tests the linkage of the Field matcher.
607 Matcher<const FieldHelper&> m = Field(&FieldHelper::field_, Eq(0));
610 Matcher<const FieldHelper*> m2 = Field(&FieldHelper::field_, Eq(0));
618 Matcher<const FieldHelper&> m = Property(&FieldHelper::field, Eq(0));
621 Matcher<const FieldHelper*> m2 = Property(&FieldHelper::field, Eq(0));
  /external/messageformat/java/com/ibm/icu/simple/
MessageFormat.java     [all...]
  /external/clang/lib/AST/
Expr.cpp 79 if (FieldDecl *Field = dyn_cast<FieldDecl>(ME->getMemberDecl())) {
80 if (!Field->isBitField() && !Field->getType()->isReferenceType()) {
82 Adjustments.push_back(SubobjectAdjustment(Field));
    [all...]
ASTContext.cpp 5982 FieldDecl *field = cast<FieldDecl>(dcl); local
    [all...]
RecordLayoutBuilder.cpp 69 /// \brief Record field offsets in bits.
78 /// Get the offset of the given field. The external source must provide
82 "Field does not have an external offset");
145 "Field offset not at char boundary!");
181 /// CanPlaceFieldAtOffset - Return whether a field can be placed at the given
484 // field subobjects are subobjects of empty bases that can be placed at offset
485 // zero. Because of this, we only need to keep track of empty field
552 // field subobjects are subobjects of empty bases that can be placed at
553 // offset zero. Because of this, we only need to keep track of empty field
604 /// UnfilledBitsInLastUnit - If the last field laid out was a bitfield
    [all...]
  /libcore/ojluni/src/main/java/java/io/
ObjectStreamClass.java 33 import java.lang.reflect.Field;
89 /** cache mapping field group/local desc pairs -> field reflectors */
96 /** queue for WeakReferences to field reflectors keys */
166 /** reflector for setting/getting serializable field values */
270 * @return an array containing an element for each persistent field of
280 * Get the field of this class by name.
282 * @param name the name of the data field to look for
283 * @return The ObjectStreamField object of the named field or null if
284 * there is no such named field
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridModel.java 65 import java.lang.reflect.Field;
598 Field spanField = null;
599 Field rowSpecField = null;
600 Field colSpecField = null;
601 Field minField = null;
602 Field maxField = null;
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/its/
ItsSerializer.java 47 import java.lang.reflect.Field;
472 Field[] allFields = md.getClass().getDeclaredFields();
476 for (Field field : allFields) {
477 if (Modifier.isPublic(field.getModifiers()) &&
478 Modifier.isStatic(field.getModifiers()) &&
479 (field.getType() == CaptureRequest.Key.class
480 || field.getType() == CaptureResult.Key.class
481 || field.getType() == TotalCaptureResult.Key.class
482 || field.getType() == CameraCharacteristics.Key.class) &
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/xslt/
EnvironmentCheck.java 26 import java.lang.reflect.Field;
847 Field f = clazz.getField("PRODUCT");
880 Field f = clazz.getField("S_VERSION");
934 Field f = clazz.getField("fVersion");
953 Field f = clazz.getField("fVersion");
    [all...]
  /external/clang/lib/Parse/
ParseCXXInlineMethods.cpp 614 if (!MI.Field || MI.Field->isInvalidDecl())
629 ExprResult Init = ParseCXXMemberInitializer(MI.Field, /*IsFunction=*/false,
632 Actions.ActOnFinishCXXInClassMemberInitializer(MI.Field, EqualLoc,
650 if (Tok.getEofData() == MI.Field)
    [all...]
  /frameworks/base/core/java/android/os/
Debug.java 34 import java.lang.reflect.Field;
438 * <td>The private Java Heap usage in kB. This corresponds to the Java Heap field
446 * field in the App Summary section output by dumpsys meminfo.</td>
453 * the Code field in the App Summary section output by dumpsys meminfo.</td>
459 * <td>The stack usage in kB. This corresponds to the Stack field in the
466 * <td>The graphics usage in kB. This corresponds to the Graphics field in the
474 * field output in the App Summary section by dumpsys meminfo.</td>
481 * field output in the App Summary section by dumpsys meminfo.</td>
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
MessageFormatTest.java 565 new FieldPosition(MessageFormat.Field.ARGUMENT));
572 format.format(new Object[] { new Double(1.6), new Integer(3), date }, buffer, new FieldPosition(MessageFormat.Field.ARGUMENT));
582 new FieldPosition(MessageFormat.Field.ARGUMENT));
589 new FieldPosition(MessageFormat.Field.ARGUMENT));
604 format.format(objects, new StringBuffer(), new FieldPosition(DateFormat.Field.AM_PM));
    [all...]
  /external/valgrind/coregrind/m_debuginfo/
readdwarf3.c 356 /* Read a DWARF3 'Initial Length' field */
431 .unit_length :: InitialLength field of the CU Header.
433 include the size of the .unit_length field itself, which is
626 vg_assert(nbytes <= 0xFFFF); /* else we overflow the nbytes field */
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
Array2DRowFieldMatrix.java 22 import org.apache.commons.math.Field;
36 * @param <T> the type of the field elements
49 * @param field field to which the elements belong
51 public Array2DRowFieldMatrix(final Field<T> field) {
52 super(field);
58 * @param field field to which the elements belong
64 public Array2DRowFieldMatrix(final Field<T> field
    [all...]
  /external/gmock/test/
gmock_link_test.h 90 // Field
141 using testing::Field;
236 int field() const { return field_; } function in class:FieldHelper
238 // the Field matcher.
603 // Tests the linkage of the Field matcher.
607 Matcher<const FieldHelper&> m = Field(&FieldHelper::field_, Eq(0));
610 Matcher<const FieldHelper*> m2 = Field(&FieldHelper::field_, Eq(0));
618 Matcher<const FieldHelper&> m = Property(&FieldHelper::field, Eq(0));
621 Matcher<const FieldHelper*> m2 = Property(&FieldHelper::field, Eq(0));
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
MeasureUnitTest.java 1082 NumberFormat.Field field = (NumberFormat.Field) row[4]; local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
MeasureUnitTest.java 1078 NumberFormat.Field field = (NumberFormat.Field) row[4]; local
    [all...]

Completed in 1104 milliseconds

<<21222324252627282930>>