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

1 2 3 4 5 6 7 8 910

  /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...]
microsoft-abi-virtual-inheritance.cpp 12 int field; member in struct:VBase
121 field = 42;
133 // CHECK: %[[FIELD:.*]] = getelementptr inbounds %struct.VBase, %struct.VBase* %[[VBASE]], i32 0, i32 1
134 // CHECK: store i32 42, i32* %[[FIELD]], align 4
356 int field; // Laid out between C and A subobjects in D. member in struct:test3::D
466 int Field;
481 // CHECK: %[[FIELD:.*]] = getelementptr inbounds i8, i8* %[[B_i8]], i32 4
482 // CHECK: call void @llvm.memset.p0i8.i32(i8* %[[FIELD]], i8 0, i32 4, i32 4, i1 false)
  /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/chromium-trace/catapult/third_party/webtest/webtest/
__init__.py 14 from webtest.forms import Field
  /external/icu/android_icu4j/src/main/java/android/icu/text/
ChineseDateFormat.java 20 * This class handles a <code>ChineseCalendar</code>-specific field,
33 * <p>Summary of field changes vs. {@link SimpleDateFormat}:<pre>
81 * 2). To specify an alternate numbering system on a field by field basis, use the field letters from the pattern
165 protected DateFormat.Field patternCharToDateFormatField(char ch) {
166 // no longer any field corresponding to pattern char 'l'
181 public static class Field extends DateFormat.Field {
187 * @deprecated ICU 50 This field is only used by the deprecated ChineseDateFormat class
    [all...]
  /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/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, Member {
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));
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/experimental/javascript/
messages.js 25 goog.provide('ProtoRpc.Field');
65 * Field definition error.
78 * Invalid variant provided to field.
91 * Invalid number provided to field.
104 * Duplicate number assigned to field.
267 * @type {Object.<Number, ProtoRpc.Field>}
284 var field = this.fieldMap[number];
285 if (field.isRepeated()) {
286 var adder = ProtoRpc.Util.toCamelCase(field.getName(), 'add');
289 var setter = ProtoRpc.Util.toCamelCase(field.getName(), 'set')
    [all...]
  /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/ojluni/src/main/java/java/text/
Format.java 112 * object which identifies what information is contained in the field and its
115 * the field. For examples of these constants, see <code>ERA_FIELD</code> and its
163 * If the <code>pos</code> argument identifies a field used by the format,
165 * field encountered.
169 * @param pos A <code>FieldPosition</code> identifying a field
189 * <code>Field</code>. It is up to each <code>Format</code> implementation
343 * field identifiers in <code>FieldPosition</code>.
347 public static class Field extends AttributedCharacterIterator.Attribute {
353 * Creates a Field with the specified name.
357 protected Field(String name)
    [all...]
  /system/tpm/attestation/common/
proto_print.py 42 # Holds information about a protobuf message field.
45 # repeated: Whether the field is a repeated field.
46 # type_: The type of the field. E.g. int32.
47 # name: The name of the field.
48 Field = collections.namedtuple('Field', 'repeated type_ name')
56 fields: A list of Field tuples.
69 """Adds a new field to the message.
73 field_type: The type of the field. E.g. int32
    [all...]
  /external/skia/src/sfnt/
SkOTTable_gasp.h 33 struct Field {
54 } field; member in union:SkOTTableGridAndScanProcedure::GaspRange::behavior
  /external/tpm2/generator/
command_generator.py 20 from structure_generator import Field
176 // Return value does not include parameter_size field.
205 // Does not include parameter_size field.
218 // field is located between the handle area and parameter area.
294 // Add parameter_size field, always equal to 0 here.
428 out_file, Field(handle['type'],
436 out_file, Field(parameter['type'], parameter['name'],
463 out_file, Field(parameter['type'],
  /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}}

Completed in 320 milliseconds

1 2 3 4 5 6 7 8 910