HomeSort by relevance Sort by last modified time
    Searched refs:FIELD (Results 151 - 175 of 333) sorted by null

1 2 3 4 5 67 8 91011>>

  /art/test/084-class-init/src/
Main.java 73 System.out.println(Exploder.FIELD);
74 System.err.println("Load of FIELD succeeded unexpectedly");
  /external/protobuf/src/google/protobuf/
descriptor.h 39 // fields by passing the FieldDescriptor of the field you are interested
170 // Field stuff -----------------------------------------------------
174 // Gets a field by index, where 0 <= index < field_count().
176 const FieldDescriptor* field(int index) const;
178 // Looks up a field by declared tag number. Returns NULL if no such field
181 // Looks up a field by name. Returns NULL if no such field exists.
184 // Looks up a field by lowercased name (as returned by lowercase_name()).
185 // This lookup may be ambiguous if multiple field names differ only by case
1684 inline const FieldDescriptor* OneofDescriptor::field(int index) const { function in class:google::protobuf::OneofDescriptor
    [all...]
generated_message_reflection.h 83 // the appropriate type. For primitive fields and string fields, each field
93 // of whatever type the individual field would be. Strings and
108 // the start of the message object, of each field. These can
115 // corresponding field of the message has been initialized.
116 // The bit for field index i is obtained by the expression:
143 // For each oneof field, the offset is relative to the
147 // For each none oneof field, the offset is related to
158 // methods will return if the field is not set.
161 // indicates what field is set for each oneof.
183 bool HasField(const Message& message, const FieldDescriptor* field) const
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/EncodedValue/
EncodedValueAdaptor.java 74 case ValueType.FIELD:
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/value/
ImmutableEncodedValueFactory.java 66 case ValueType.FIELD:
  /external/libnl/lib/netfilter/
ct_obj.c 281 #define CT_DIFF_VAL(ATTR, FIELD) CT_DIFF(ATTR, a->FIELD != b->FIELD)
282 #define CT_DIFF_ADDR(ATTR, FIELD) \
284 ? CT_DIFF(ATTR, nl_addr_cmp_prefix(a->FIELD, b->FIELD)) \
285 : CT_DIFF(ATTR, nl_addr_cmp(a->FIELD, b->FIELD)))
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
DexPool.java 38 import org.jf.dexlib2.iface.Field;
56 TypeListPool.Key<? extends Collection<? extends CharSequence>>, Field, PoolMethod,
128 case ValueType.FIELD:
188 case ValueType.FIELD:
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/rewriter/
EncodedValueRewriter.java 56 case ValueType.FIELD:
InstructionRewriter.java 88 case ReferenceType.FIELD:
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
Preconditions.java 160 String.format("Invalid field offset: 0x%x. Must be between 0x0000 and 0xFFFF inclusive",
203 case ReferenceType.FIELD:
205 throw new IllegalArgumentException("Invalid reference type, expecting a field reference");
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
EncodedValueWriter.java 108 writer.writeEncodedUint(ValueType.FIELD, fieldSection.getItemIndex(value));
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/
ModelClass.java 361 * Returns the getter method or field that the name refers to.
362 * @param name The name of the field or the body of the method name -- can be name(),
366 * @return the getter method or field that the name refers to or null if none can be found.
370 return new Callable(Type.FIELD, name, ModelAnalyzer.getInstance().loadPrimitive("int"),
391 // if method is not bindable, look for a backing field
393 L.d("backing field for method %s is %s", method.getName(),
406 // could not find a method. Look for a public field
432 return new Callable(Callable.Type.FIELD, name, fieldType, flags);
437 for (ModelField field : fields) {
438 boolean nameMatch = name.equals(field.getName()) |
    [all...]
  /frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/writer/
CodeGenUtil.kt 51 if (it.getGetter().type == Callable.Type.FIELD) {
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/nestegg/src/
nestegg.c 113 /* Field Flags */
329 #define E_FIELD(ID, TYPE, STRUCT, FIELD) \
330 { #ID, ID, TYPE, offsetof(STRUCT, FIELD), DESC_FLAG_NONE, NULL, 0, 0 }
331 #define E_MASTER(ID, TYPE, STRUCT, FIELD) \
332 { #ID, ID, TYPE, offsetof(STRUCT, FIELD), DESC_FLAG_MULTI, ne_ ## FIELD ## _elements, \
333 sizeof(struct FIELD), 0 }
334 #define E_SINGLE_MASTER_O(ID, TYPE, STRUCT, FIELD) \
335 { #ID, ID, TYPE, offsetof(STRUCT, FIELD), DESC_FLAG_OFFSET, ne_ ## FIELD ## _elements, 0,
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
ClassWriter.java 99 * The type of field and method invocations instructions.
166 static final int FIELD = 9;
289 * {@link Item#strVal1} field.
387 * {@link FieldWriter#next} field. This field stores the first element of
395 * {@link FieldWriter#next} field. This field stores the last element of
403 * {@link MethodWriter#next} field. This field stores the first element of
411 * {@link MethodWriter#next} field. This field stores the last element of
    [all...]
  /external/v8/test/mjsunit/regress/
regress-merge-descriptors.js 80 // Convert self.copy from CONSTANT to FIELD.
  /cts/tools/dasm/src/dasm/
ReservedWords.java 45 reserved_words.put(".field", new token(sym.DFIELD));
61 reserved_words.put("field", new token(sym.FIELD));
  /external/mdnsresponder/mDNSShared/
CommonServices.h 603 @abstract Determines the size of a field of a type.
606 #define sizeof_field( TYPE, FIELD ) sizeof( ( ( (TYPE *) 0 )->FIELD ) )
627 @abstract Returns non-zero if FIELD of type TYPE is aligned to a Y byte boundary and 0 if not. Y must be a power of 2.
630 #define IsFieldAligned( X, TYPE, FIELD, Y ) IsAligned( ( (uintptr_t)( X ) ) + offsetof( TYPE, FIELD ), ( Y ) )
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
BuilderContext.java 116 case ValueType.FIELD:
DexBuilder.java 165 @Nonnull public BuilderFieldReference internFieldReference(@Nonnull FieldReference field) {
166 return context.fieldPool.internField(field);
235 case ValueType.FIELD:
  /external/v8/src/
property-details.h 51 FIELD = 1,
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
FieldTest.java 28 import java.lang.reflect.Field;
55 @Target( {ElementType.FIELD})
60 @Target( { ElementType.FIELD})
65 @Target( { ElementType.FIELD})
70 @Target( {ElementType.FIELD})
76 @Target( {ElementType.FIELD})
81 S field; field in class:FieldTest.GenericField
153 int field; field in class:FieldTest.TestEnum
157 * java.lang.reflect.Field#equals(java.lang.Object)
161 // java.lang.reflect.Field.equals(java.lang.Object
441 Field field = fields[j]; local
461 Field field = fields[j]; local
505 Field field = fields[j]; local
524 Field field = fields[j]; local
1531 Field field = TestClass.class.getField("annotatedField"); local
1546 Field field = TestEnum.class.getDeclaredField("A"); local
1564 Field field = TestEnum.class.getDeclaredField("field"); local
1575 Field field = GenericField.class.getDeclaredField("field"); local
1594 Field field = GenericField.class.getDeclaredField("field"); local
1615 Field field = TestClass.class.getDeclaredField("annotatedField"); local
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
construction.rb 21 FIELD;
168 -> ^(FIELD ID modifier* type expression?)
478 ast_test :input => "public int gnurz = 1 + 2;", :rule => :r31, :ast => "(FIELD gnurz public int (+ 1 2))", :flag => 2
  /external/v8/src/ic/
handler-compiler.cc 181 FieldIndex field) {
184 LoadFieldStub stub(isolate(), field); local
231 // So far the most popular follow ups for interceptor loads are FIELD and
244 inline_followup = it->property_details().type() == FIELD;
286 DCHECK_EQ(FIELD, it->property_details().type());
  /frameworks/data-binding/compiler/src/main/java/android/databinding/annotationprocessor/
ProcessBindable.java 68 L.e("Bindable must be on a member field or method. The enclosing type is %s",
135 case FIELD:

Completed in 1225 milliseconds

1 2 3 4 5 67 8 91011>>