HomeSort by relevance Sort by last modified time
    Searched defs:Field (Results 1 - 25 of 158) sorted by null

1 2 3 4 5 6 7

  /external/proguard/src/proguard/classfile/
Field.java 26 * Representation of a field from a class.
30 public interface Field extends Member
  /dalvik/dexgen/src/com/android/dexgen/rop/
Field.java 24 public interface Field
27 * Get the constant value for this field, if any. This only returns
28 * non-{@code null} for a {@code static final} field which
32 * field isn't a constant
  /dalvik/dx/src/com/android/dx/cf/iface/
Field.java 24 public interface Field
27 * Get the constant value for this field, if any. This only returns
28 * non-{@code null} for a {@code static final} field which
32 * field isn't a constant
  /external/apache-commons-math/src/main/java/org/apache/commons/math/
Field.java 20 * Interface representing a <a href="http://mathworld.wolfram.com/Field.html">field</a>.
24 * @param <T> the type of the field elements
29 public interface Field<T> {
31 /** Get the additive identity of the field.
33 * The additive identity is the element e<sub>0</sub> of the field such that
34 * for all elements a of the field, the equalities a + e<sub>0</sub> =
37 * @return additive identity of the field
41 /** Get the multiplicative identity of the field.
43 * The multiplicative identity is the element e<sub>1</sub> of the field such tha
    [all...]
  /external/clang/test/CodeGenCXX/
vtable-pointer-initialization.cpp 3 struct Field {
4 Field();
5 ~Field();
19 Field field; member in struct:A
39 Field field; member in struct:B
skip-vtable-pointer-initialization.cpp 40 // and Field's destructor body is also trivial.
41 struct Field {
42 ~Field() { }
49 Field field; member in struct:Test3::A
62 // Check that we do initialize the vtable pointer in A::~A(), since Field's destructor body
67 struct Field {
68 ~Field() { f(); }
75 Field field; member in struct:Test4::A
99 Field field; member in struct:Test5::A
127 Field field; member in struct:Test6::A
153 Field field; member in struct:Test7::A
179 Field field; member in struct:Test8::A
    [all...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
navier-stokes.js 73 function addPoints(field) {
76 field.setVelocity(i, i, n, n);
77 field.setDensity(i, i, 5);
78 field.setVelocity(i, n - i, -n, -n);
79 field.setDensity(i, n - i, 20);
80 field.setVelocity(128 - i, n + i, -n, -n);
81 field.setDensity(128 - i, n + i, 30);
88 function prepareFrame(field)
91 addPoints(field);
318 function Field(dens, u, v)
    [all...]
  /external/v8/benchmarks/
navier-stokes.js 55 function addPoints(field) {
58 field.setVelocity(i, i, n, n);
59 field.setDensity(i, i, 5);
60 field.setVelocity(i, n - i, -n, -n);
61 field.setDensity(i, n - i, 20);
62 field.setVelocity(128 - i, n + i, -n, -n);
63 field.setDensity(128 - i, n + i, 30);
70 function prepareFrame(field)
73 addPoints(field);
300 function Field(dens, u, v)
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/rawdex/formats/
ContainsPoolIndex.java 30 Field,
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
ChineseDateFormat.java 19 * This class handles a <code>ChineseCalendar</code>-specific field,
32 * <p>Summary of field changes vs. {@link SimpleDateFormat}:<pre>
79 * 2). To specify an alternate numbering system on a field by field basis, use the field letters from the pattern
163 protected DateFormat.Field patternCharToDateFormatField(char ch) {
164 // no longer any field corresponding to pattern char 'l'
179 public static class Field extends DateFormat.Field {
185 * @deprecated ICU 50 This field is only used by the deprecated ChineseDateFormat class
    [all...]
  /external/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCCodeEmitter.cpp 35 /// Possible values for instruction packet parse field.
40 ParseField Field = HexagonMCInstrInfo::isPacketEnd(HMI) ? ParseField::end : ParseField::last0;
41 return static_cast <uint32_t> (Field) << ParseFieldOffset;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/
Field.java 42 * This class represents a specific field definition in a class.
45 * and shouldn't take into account any non-FieldReference specifics of this field.
47 public interface Field extends FieldReference {
49 * Gets the type of the class that defines this field.
51 * @return The type of the class that defines this field
56 * Gets the name of this field.
58 * @return The name of this field
63 * Gets the type of this field.
65 * @return The type of this field
70 * Gets the access flags for this field
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
SimpleContentHandler.java 24 import org.apache.james.mime4j.field.Field;
71 * @see org.apache.james.mime4j.AbstractContentHandler#field(java.lang.String)
73 public final void field(String fieldData) { method in class:SimpleContentHandler
74 currHeader.addField(Field.parse(fieldData));
  /art/runtime/mirror/
field.h 36 // C++ mirror of java.lang.reflect.Field.
37 class MANAGED Field : public AccessibleObject {
48 return GetField32(OFFSET_OF_OBJECT_MEMBER(Field, dex_field_index_));
52 return GetFieldObject<Class>(OFFSET_OF_OBJECT_MEMBER(Field, declaring_class_));
56 return GetField32(OFFSET_OF_OBJECT_MEMBER(Field, access_flags_));
77 return GetFieldObject<mirror::Class>(OFFSET_OF_OBJECT_MEMBER(Field, type_));
81 return GetField32(OFFSET_OF_OBJECT_MEMBER(Field, offset_));
96 static mirror::Field* CreateFromArtField(Thread* self, ArtField* field,
109 SetFieldObject<kTransactionActive>(OFFSET_OF_OBJECT_MEMBER(Field, declaring_class_), c)
    [all...]
  /libcore/luni/src/main/java/java/text/
Format.java 101 * {@code field} is an input/output parameter. If its {@code field}
102 * member contains an enum value specifying a field on input, then its
104 * text offset of the first occurrence of this field in the formatted text.
110 * @param field
111 * on input: an optional alignment field; on output: the offsets
112 * of the alignment field in the formatted text.
118 FieldPosition field);
236 public static class Field extends AttributedCharacterIterator.Attribute {
241 * Constructs a new instance of {@code Field} with the given field name
    [all...]
  /external/skia/src/sfnt/
SkOTTable_gasp.h 33 struct Field {
54 } field; member in union:SkOTTableGridAndScanProcedure::GaspRange::behavior
  /libcore/dex/src/main/java/com/android/dex/
ClassData.java 20 private final Field[] staticFields;
21 private final Field[] instanceFields;
25 public ClassData(Field[] staticFields, Field[] instanceFields,
33 public Field[] getStaticFields() {
37 public Field[] getInstanceFields() {
49 public Field[] allFields() {
50 Field[] result = new Field[staticFields.length + instanceFields.length];
63 public static class Field {
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
FieldPositionTest.java 30 assertEquals("Test1: Constructor failed to set field identifier!",
32 assertNull("Constructor failed to set field attribute!", fpos
37 * @tests java.text.FieldPosition#FieldPosition(java.text.Format$Field)
39 public void test_ConstructorLjava_text_Format$Field() {
40 // Test for constructor java.text.FieldPosition(Format.Field)
41 FieldPosition fpos = new FieldPosition(DateFormat.Field.MONTH);
42 assertSame("Constructor failed to set field attribute!",
43 DateFormat.Field.MONTH, fpos.getFieldAttribute());
44 assertEquals("Test1: Constructor failed to set field identifier!", -1,
49 * @tests java.text.FieldPosition#FieldPosition(java.text.Format$Field, int
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
Field.java 30 * This class provides description of class field.
33 public final class Field {
50 public Field() {
59 * Constructor initializing all members of the Field instance.
62 * field id
66 * field name
68 * signature signature of the field class
70 * field modifiers
72 public Field(long id, long classID, String name, String signature,
85 * signature of the field clas
292 Field field = (Field) obj; local
    [all...]
  /external/clang/test/SemaCXX/
alignof.cpp 7 static const int test0 = __alignof__(x); // expected-error {{invalid application of 'alignof' to a field of a class still being defined}}
8 static const int test1 = __alignof__(S0::x); // expected-error {{invalid application of 'alignof' to a field of a class still being defined}}
9 auto test2() -> char(&)[__alignof__(x)]; // expected-error {{invalid application of 'alignof' to a field of a class still being defined}}
54 // Regression test for asking for the alignment of a field within an invalid
97 typedef __attribute__((aligned(N))) int Field[sizeof(N)]; // expected-error {{requested alignment is dependent but declaration is not dependent}}
offsetof.cpp 35 int j : 12; // expected-note{{bit-field is declared here}}
38 int test3 = __builtin_offsetof(struct has_bitfields, j); // expected-error{{cannot compute offset of bit-field 'j'}}
79 int Field;
82 void Fun() { (void)__builtin_offsetof(Derived, Field); } // expected-warning {{offset of on non-POD type}} \
83 expected-error {{invalid application of 'offsetof' to a field of a virtual base}}
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/
MimeHeader.java 51 protected final ArrayList<Field> mFields = new ArrayList<Field>();
66 mFields.add(new Field(name, value));
79 for (Field field : mFields) {
80 if (field.name.equalsIgnoreCase(name)) {
81 values.add(field.value);
91 ArrayList<Field> removeFields = new ArrayList<Field>();
92 for (Field field : mFields)
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/
Field.java 20 package org.apache.james.mime4j.field;
26 * The base class of all field classes.
29 * @version $Id: Field.java,v 1.6 2004/10/25 07:26:46 ntherning Exp $
31 public abstract class Field {
63 protected Field(final String name, final String body, final String raw) {
71 * <code>Field</code> class. The type of the class returned depends on
72 * the field name:
75 * <td><em>Field name</em></td><td><em>Class returned</em></td>
76 * <td>Content-Type</td><td>org.apache.james.mime4j.field.ContentTypeField</td>
77 * <td>other</td><td>org.apache.james.mime4j.field.UnstructuredField</td
    [all...]
  /packages/services/Telephony/src/com/android/phone/common/mail/internet/
MimeHeader.java 50 protected final ArrayList<Field> mFields = new ArrayList<Field>();
65 mFields.add(new Field(name, value));
78 for (Field field : mFields) {
79 if (field.name.equalsIgnoreCase(name)) {
80 values.add(field.value);
90 ArrayList<Field> removeFields = new ArrayList<Field>();
91 for (Field field : mFields)
    [all...]
  /packages/services/Telephony/src/org/apache/james/mime4j/field/
Field.java 20 package org.apache.james.mime4j.field;
26 * The base class of all field classes.
29 * @version $Id: Field.java,v 1.6 2004/10/25 07:26:46 ntherning Exp $
31 public abstract class Field {
63 protected Field(final String name, final String body, final String raw) {
71 * <code>Field</code> class. The type of the class returned depends on
72 * the field name:
75 * <td><em>Field name</em></td><td><em>Class returned</em></td>
76 * <td>Content-Type</td><td>org.apache.james.mime4j.field.ContentTypeField</td>
77 * <td>other</td><td>org.apache.james.mime4j.field.UnstructuredField</td
    [all...]

Completed in 1851 milliseconds

1 2 3 4 5 6 7