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

1 2 3 4

  /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/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/chromium_org/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...]
  /external/chromium_org/third_party/skia/src/sfnt/
SkOTTable_gasp.h 33 struct Field {
54 } field; member in union:SkOTTableGridAndScanProcedure::GaspRange::behavior
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
SkOTTable_EBLC.h 67 struct Field {
78 } field; member in union:SkOTTableEmbeddedBitmapLocation::BitmapSizeTable::Flags
  /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/chromium_org/chrome/browser/profile_resetter/
resettable_settings_snapshot.h 31 enum Field {
74 // corresponding |ResetableSettingsSnapshot::Field| bit to 1 in case of
76 // The return value is a bit mask of Field values signifying which members
125 // mask of ResettableSettingsSnapshot::Field values.
  /external/chromium_org/tools/usb_gadget/
usb_descriptors.py 16 class Field(object):
17 """USB descriptor field information."""
20 """Define a new USB descriptor field.
23 name: Name of the field.
24 str_fmt: Python 'string' module format string for this field.
25 struct_fmt: Python 'struct' module format string for this field.
26 required: Is this a required field?
50 """Adds a user-specified field to this descriptor.
52 Adds a field to the binary structure representing this descriptor. The field
    [all...]
  /external/clang/test/Layout/
ms-x86-pack-and-align.cpp 390 __declspec(align(256)) int Field;
396 // CHECK-NEXT: 256 | int Field
402 // CHECK-X64-NEXT: 256 | int Field
410 __declspec(align(256)) int Field;
417 // CHECK-NEXT: 256 | int Field
425 // CHECK-X64-NEXT: 256 | int Field
  /external/clang/test/SemaCXX/
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}}
empty-class-layout.cpp 127 struct Field : virtual Empty { };
129 Field f;
140 struct Field : virtual Empty { };
142 Field f;
  /external/chromium_org/content/common/gpu/media/
h264_dpb.h 19 // A picture (a frame or a field) in the H.264 spec sense.
22 enum Field {
53 Field field; member in struct:content::H264Picture
  /external/chromium_org/third_party/skia/include/svg/
SkSVGPaintState.h 18 enum Field {
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineCXX.cpp 151 const ValueDecl *Field;
154 Field = Init->getIndirectMember();
157 Field = Init->getMember();
161 QualType Ty = Field->getType();
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom/generate/
module.py 159 def __init__(self, module, enum, field):
160 NamedValue.__init__(self, module, enum.parent_kind, field.name)
176 class Field(object):
202 field = Field(name, kind, ordinal, default)
203 self.fields.append(field)
204 return field
  /external/clang/include/clang/AST/
APValue.h 100 const FieldDecl *Field;
324 return ((const UnionData*)(const char*)Data.buffer)->Field;
381 void setUnion(const FieldDecl *Field, const APValue &Value) {
383 ((UnionData*)(char*)Data.buffer)->Field = Field;
  /external/llvm/lib/TableGen/
TGLexer.h 46 Bit, Bits, Class, Code, Dag, Def, Foreach, Defm, Field, In, Int, Let, List,
  /external/nanopb-c/generator/
nanopb_generator.py 104 '''Class used to represent the encoded size of a field or a message.
161 class Field:
174 # Parse field options
184 # Check field rules, i.e. required/optional/repeated.
199 # Check if the field can be implemented with static allocation
207 # Decide how the field data will be allocated
215 raise Exception("Field %s is defined as static, but max_size or "
285 '''Return definitions for any special types this field might need.'''
296 '''Return definition for this field's default value.'''
331 '''Return the #define for the tag number of this field.''
    [all...]
  /external/chromium_org/third_party/icu/source/tools/toolutil/
udbgutil.cpp 32 7. Define the field names, in order.
33 " static const Field names_UShoeSize[] = {
47 10. Find the function _udbg_enumFields and add the field macro:
55 struct Field {
67 * Define another field name. Used in an array of Field s
70 * @see Field
84 static const Field names_UCalendarDateFields[] =
113 static const Field names_UCalendarMonths[] =
134 static const Field names_UDateFormatStyle[]
    [all...]

Completed in 1472 milliseconds

1 2 3 4