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

1 2 3 4

  /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...]
  /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...]
  /packages/apps/Email/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...]
  /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/smack/src/org/jivesoftware/smackx/
ReportedData.java 73 FormField field = (FormField)fields.next(); local
74 columns.add(new Column(field.getLabel(), field.getVariable(), field.getType()));
80 List<Field> fieldList = new ArrayList<Field>(columns.size());
81 FormField field; local
83 field = (FormField) fields.next();
84 // The field is created with all the values of the data form's field
236 Field field = it.next(); local
    [all...]
  /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/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)
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineCXX.cpp 150 SVal Field = State->getLValue(Init->getIndirectMember(), ThisVal);
151 Target = Field.getAsRegion();
153 SVal Field = State->getLValue(Init->getMember(), ThisVal);
154 Target = Field.getAsRegion();
  /external/clang/test/SemaCXX/
empty-class-layout.cpp 127 struct Field : virtual Empty { };
129 Field f;
140 struct Field : virtual Empty { };
142 Field f;
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
Field.java 10 * This class represents a single field in the structure. It can be either a primitive type or a table or a reference to
15 class Field implements Cloneable {
21 /** The type of the field. */
23 /** The name of the field. */
25 /** The value of the field. Filled during data reading. */
30 * This variable determines the sizes of the array. If the value is null the n the field is not an array.
33 /** This variable indicates if the field is a function pointer. */
37 * Constructor. Saves the field data and parses its name.
39 * the name of the field
41 * the type of the field
    [all...]
  /external/skia/include/svg/
SkSVGPaintState.h 18 enum Field {
  /external/skia/src/sfnt/
SkOTTable_OS_2_V0.h 56 struct Field {
77 } field; member in union:SkOTTableOS2_V0::Type
101 struct Field {
122 } field; member in union:SkOTTableOS2_V0::Selection
SkOTTable_OS_2_VA.h 56 struct Field {
77 } field; member in union:SkOTTableOS2_VA::Type
101 struct Field {
122 } field; member in union:SkOTTableOS2_VA::Selection
SkOTTable_head.h 32 struct Field {
53 } field; member in union:SkOTTableHead::Flags
83 struct Field {
104 } field; member in union:SkOTTableHead::MacStyle
  /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/clang/include/clang/AST/
APValue.h 100 const FieldDecl *Field;
318 return ((const UnionData*)(const char*)Data)->Field;
375 void setUnion(const FieldDecl *Field, const APValue &Value) {
377 ((UnionData*)(char*)Data)->Field = Field;
  /external/icu4c/tools/toolutil/
udbgutil.cpp 31 7. Define the field names, in order.
32 " static const Field names_UShoeSize[] = {
46 10. Find the function _udbg_enumFields and add the field macro:
54 struct Field {
66 * Define another field name. Used in an array of Field s
69 * @see Field
83 static const Field names_UCalendarDateFields[] =
112 static const Field names_UCalendarMonths[] =
133 static const Field names_UDateFormatStyle[] =
    [all...]

Completed in 1353 milliseconds

1 2 3 4