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

1 2 3

  /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/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/apps/CtsVerifier/lib/colorchecker/
grouping.h 23 // To use the Grouping function, derive one class from Field.
24 // Field class provides the interface for the Grouping function.
34 class Field {
41 virtual ~Field() {}
49 Field<FF_ID> *pField,
113 // Group the pixels in Field based on the FF_ID != operator.
116 // The labeasl of the pixels are stored in the mask member of Field.
119 void Grouping(Field <FF_ID> *pField) {
  /packages/apps/Email/emailcommon/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/webkit/Source/WebCore/bridge/jsc/
BridgeJSC.h 55 class Field {
60 virtual ~Field() { }
68 virtual Field* fieldNamed(const Identifier&, Instance*) const = 0;
148 typedef HashMap<RefPtr<StringImpl>, Field*> FieldMap;
  /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);
233 public static class Field extends AttributedCharacterIterator.Attribute {
238 * Constructs a new instance of {@code Field} with the given field name
    [all...]
DateFormat.java 114 * <li>align any particular field.
169 * The {@code FieldPosition} selector for 'G' field alignment, corresponds
170 * to the {@link Calendar#ERA} field.
175 * The {@code FieldPosition} selector for 'y' field alignment, corresponds
176 * to the {@link Calendar#YEAR} field.
181 * The {@code FieldPosition} selector for 'M' field alignment, corresponds
182 * to the {@link Calendar#MONTH} field.
187 * The {@code FieldPosition} selector for 'd' field alignment, corresponds
188 * to the {@link Calendar#DATE} field.
193 * The {@code FieldPosition} selector for 'k' field alignment, correspond
    [all...]
  /dalvik/dx/src/com/android/dx/io/
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...]
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/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/clang/test/SemaCXX/
empty-class-layout.cpp 126 struct Field : virtual Empty { };
128 Field f;
139 struct Field : virtual Empty { };
141 Field f;
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/
MimeHeader.java 56 protected final ArrayList<Field> mFields = new ArrayList<Field>();
71 mFields.add(new Field(name, value));
84 for (Field field : mFields) {
85 if (field.name.equalsIgnoreCase(name)) {
86 values.add(field.value);
96 ArrayList<Field> removeFields = new ArrayList<Field>();
97 for (Field field : mFields)
    [all...]
  /packages/apps/Email/emailcommon/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...]
  /frameworks/base/tools/aidl/
AST.cpp 56 Field::Field()
63 Field::Field(int m, Variable* v)
70 Field::~Field()
75 Field::GatherTypes(set<Type*>* types) const
81 Field::Write(FILE* to)
AST.h 86 struct Field : public ClassElement
93 Field();
94 Field(int modifiers, Variable* variable);
95 virtual ~Field();
  /external/icu4c/tools/ctestfw/
udbgutil.cpp 26 7. Define the field names, in order.
27 " static const Field names_UShoeSize[] = {
41 10. Find the function _udbg_enumFields and add the field macro:
49 struct Field {
61 * Define another field name. Used in an array of Field s
64 * @see Field
78 static const Field names_UCalendarDateFields[] =
107 static const Field names_UCalendarMonths[] =
128 static const Field names_UDateFormatStyle[] =
    [all...]
  /external/icu4c/tools/toolutil/
udbgutil.cpp 26 7. Define the field names, in order.
27 " static const Field names_UShoeSize[] = {
41 10. Find the function _udbg_enumFields and add the field macro:
49 struct Field {
61 * Define another field name. Used in an array of Field s
64 * @see Field
78 static const Field names_UCalendarDateFields[] =
107 static const Field names_UCalendarMonths[] =
128 static const Field names_UDateFormatStyle[] =
    [all...]
  /libcore/luni/src/main/java/javax/xml/datatype/
DatatypeConstants.java 122 * Designation that an "int" field is not set.
127 * <p>A constant that represents the years field.</p>
129 public static final Field YEARS = new Field("YEARS", 0);
132 * <p>A constant that represents the months field.</p>
134 public static final Field MONTHS = new Field("MONTHS", 1);
137 * <p>A constant that represents the days field.</p>
139 public static final Field DAYS = new Field("DAYS", 2)
    [all...]
  /external/llvm/lib/TableGen/
TGLexer.h 45 Bit, Bits, Class, Code, Dag, Def, Defm, Field, In, Int, Let, List,
  /external/valgrind/main/coregrind/m_debuginfo/
priv_tytypes.h 43 Te_UNKNOWN, /* denotes a unknown type/field/whatever */
45 Te_Field, /* struct/class field defn */
89 } Field;
162 this TyEnt, and set its tag to Te_EMPTY. The .cuOff field is
206 the entry which has .cuOff field as specified. Returns NULL if not
  /external/protobuf/java/src/main/java/com/google/protobuf/
UnknownFieldSet.java 47 * parsing a protocol message but whose field numbers or types are unrecognized.
83 new UnknownFieldSet(Collections.<Integer, Field>emptyMap());
89 private UnknownFieldSet(final Map<Integer, Field> fields) {
92 private Map<Integer, Field> fields;
109 public Map<Integer, Field> asMap() {
113 /** Check if the given field number is present in the set. */
119 * Get a field by number. Returns an empty field if not present. Never
122 public Field getField(final int number) {
123 final Field result = fields.get(number)
    [all...]
  /frameworks/compile/slang/
slang_rs_export_type.h 431 class Field {
434 // Field name
436 // Link to the struct that contain this field
442 Field(const RSExportType *T,
459 typedef std::list<const Field*>::const_iterator const_field_iterator;
469 std::list<const Field*> mFields;
501 inline const std::list<const Field*>& getFields() const { return mFields; }
510 for (std::list<const Field*>::iterator I = mFields.begin(),
  /libcore/luni/src/main/java/java/lang/reflect/
Field.java 42 * This class represents a field. Information about the field can be accessed,
43 * and the field's value can be accessed dynamically.
45 public final class Field extends AccessibleObject implements Member {
52 public static final Comparator<Field> ORDER_BY_NAME_AND_DECLARING_CLASS
53 = new Comparator<Field>() {
54 @Override public int compare(Field a, Field b) {
97 /*package*/ Field(Field orig)
    [all...]

Completed in 429 milliseconds

1 2 3