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

1 2 3 4 5 67 8 91011>>

  /external/clang/test/Modules/Inputs/private/
public2.h 6 struct use_this2 { struct mitts_off2 field; }; member in struct:use_this2
  /external/clang/test/Modules/Inputs/private1/
private1.h 6 struct mitts_off1 { common field; }; member in struct:mitts_off1
public1.h 6 struct use_this1 { struct mitts_off1 field; }; member in struct:use_this1
  /external/clang/test/Modules/Inputs/private2/
private2.h 6 struct mitts_off2 { common field; }; member in struct:mitts_off2
public2.h 6 struct use_this2 { struct mitts_off2 field; }; member in struct:use_this2
  /external/javassist/src/main/javassist/compiler/ast/
Member.java 26 // this is used to obtain the value of a static final field.
27 private CtField field; field in class:Member
31 field = null;
34 public void setField(CtField f) { field = f; }
36 public CtField getField() { return field; }
  /external/protobuf/objectivec/
GPBUtilities.h 55 /// @param unknownSet The unknown field set to generate from.
59 /// @return A @c NSString with the Text Format of the unknown field set.
63 /// Test if the given field is set on a message.
65 /// Test if the given field is set on a message.
66 BOOL GPBMessageHasFieldSet(GPBMessage *self, GPBFieldDescriptor *field);
68 /// Clear the given field of a message.
69 void GPBClearMessageField(GPBMessage *self, GPBFieldDescriptor *field);
76 // Get/Set the given field of a message.
81 /// Gets the value of a bytes field.
82 NSData *GPBGetMessageBytesField(GPBMessage *self, GPBFieldDescriptor *field);
    [all...]
  /external/mockito/src/main/java/org/mockito/internal/util/reflection/
FieldReader.java 9 import java.lang.reflect.Field;
14 final Field field; field in class:FieldReader
17 public FieldReader(Object target, Field field) {
19 this.field = field;
20 changer.enableAccess(field);
29 return field.get(target);
31 throw new MockitoException("Cannot read state from field: " + field + ", on instance: " + target)
    [all...]
FieldInitializer.java 14 import java.lang.reflect.Field;
23 * Initialize a field with type instance if a default constructor can be found.
26 * If the given field is already initialized, then <strong>the actual instance is returned</strong>.
34 private final Field field; field in class:FieldInitializer
39 * Prepare initializer with the given field on the given instance.
42 * This constructor fail fast if the field type cannot be handled.
46 * @param field Field to be initialize.
48 public FieldInitializer(Object fieldOwner, Field field)
176 private final Field field; field in class:FieldInitializer.NoArgConstructorInstantiator
227 private final Field field; field in class:FieldInitializer.ParameterizedConstructorInstantiator
    [all...]
FieldSetter.java 7 import java.lang.reflect.Field;
13 public static void setField(Object target, Field field,Object value) {
15 changer.enableAccess(field);
17 field.set(target, value);
19 throw new RuntimeException("Access not authorized on field '" + field + "' of object '" + target + "' with value: '" + value + "'", e);
21 throw new RuntimeException("Wrong argument on field '" + field + "' of object '" + target + "' with value: '" + value + "', \n" +
24 changer.safelyDisableAccess(field);
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic54x/
field.s 2 * test .field directive
6 f1: .field 0ABCh, 14 ; f1=0x0
7 f2: .field 0Ah, 5 ; should align to next word, f2=0x1
8 f3: .field 0Ch, 4 ; should be packed in previous word, f3=0x1
9 f4: .field f3 ; align at word 0x2
10 f5: .field 04321h, 32 ;
11 f6: .field 01111b ; default to 16-bit field
12 f7: .field 3,3
13 f8: .field 69,15 ; align at next wor
    [all...]
  /art/test/035-enum/src/
Main.java 17 import java.lang.reflect.Field;
26 Field field; local
28 field = Shubbery.class.getDeclaredField("CRAWLING");
33 System.out.println("found field " + field.getName());
34 System.out.println(" synthetic? " + field.isSynthetic());
35 System.out.println(" enum? " + field.isEnumConstant());
  /external/dhcpcd-6.8.2/compat/
queue.h 68 #define TAILQ_NEXT(elm, field) ((elm)->field.tqe_next)
71 #define TAILQ_PREV(elm, headname, field) \
72 (*(((struct headname *)((elm)->field.tqe_prev))->tqh_last))
77 #define TAILQ_FOREACH(var, head, field) \
80 (var) = ((var)->field.tqe_next))
82 #define TAILQ_FOREACH_REVERSE(var, head, headname, field) \
85 (var) = (*(((struct headname *)((var)->field.tqe_prev))->tqh_last)))
94 #define TAILQ_INSERT_HEAD(head, elm, field) do { \
95 if (((elm)->field.tqe_next = (head)->tqh_first) != TAILQ_END(head))
    [all...]
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/
generated_message_reflection.h 82 // the appropriate type. For primitive fields and string fields, each field
92 // of whatever type the individual field would be. Strings and
107 // the start of the message object, of each field. These can
114 // corresponding field of the message has been initialized.
115 // The bit for field index i is obtained by the expression:
146 bool HasField(const Message& message, const FieldDescriptor* field) const;
147 int FieldSize(const Message& message, const FieldDescriptor* field) const;
148 void ClearField(Message* message, const FieldDescriptor* field) const;
149 void RemoveLast(Message* message, const FieldDescriptor* field) const;
150 Message* ReleaseLast(Message* message, const FieldDescriptor* field) const
    [all...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/
generated_message_reflection.h 82 // the appropriate type. For primitive fields and string fields, each field
92 // of whatever type the individual field would be. Strings and
107 // the start of the message object, of each field. These can
114 // corresponding field of the message has been initialized.
115 // The bit for field index i is obtained by the expression:
146 bool HasField(const Message& message, const FieldDescriptor* field) const;
147 int FieldSize(const Message& message, const FieldDescriptor* field) const;
148 void ClearField(Message* message, const FieldDescriptor* field) const;
149 void RemoveLast(Message* message, const FieldDescriptor* field) const;
150 Message* ReleaseLast(Message* message, const FieldDescriptor* field) const
    [all...]
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/
generated_message_reflection.h 82 // the appropriate type. For primitive fields and string fields, each field
92 // of whatever type the individual field would be. Strings and
107 // the start of the message object, of each field. These can
114 // corresponding field of the message has been initialized.
115 // The bit for field index i is obtained by the expression:
146 bool HasField(const Message& message, const FieldDescriptor* field) const;
147 int FieldSize(const Message& message, const FieldDescriptor* field) const;
148 void ClearField(Message* message, const FieldDescriptor* field) const;
149 void RemoveLast(Message* message, const FieldDescriptor* field) const;
150 Message* ReleaseLast(Message* message, const FieldDescriptor* field) const
    [all...]
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/
generated_message_reflection.h 82 // the appropriate type. For primitive fields and string fields, each field
92 // of whatever type the individual field would be. Strings and
107 // the start of the message object, of each field. These can
114 // corresponding field of the message has been initialized.
115 // The bit for field index i is obtained by the expression:
146 bool HasField(const Message& message, const FieldDescriptor* field) const;
147 int FieldSize(const Message& message, const FieldDescriptor* field) const;
148 void ClearField(Message* message, const FieldDescriptor* field) const;
149 void RemoveLast(Message* message, const FieldDescriptor* field) const;
150 Message* ReleaseLast(Message* message, const FieldDescriptor* field) const
    [all...]
  /art/test/408-move-bug/src/
Main.java 37 foo1.field = b;
38 foo2.field = b;
39 foo3.field = b;
40 foo4.field = b;
51 foo1.field = b;
52 foo2.field = b;
53 foo3.field = b;
54 foo4.field = b;
66 boolean field; field in class:Main
  /libcore/ojluni/src/main/java/java/security/spec/
EllipticCurve.java 45 private final ECField field; field in class:EllipticCurve
50 // Check coefficient c is a valid element in ECField field.
51 private static void checkValidity(ECField field, BigInteger c,
53 // can only perform check if field is ECFieldFp or ECFieldF2m.
54 if (field instanceof ECFieldFp) {
55 BigInteger p = ((ECFieldFp)field).getP();
61 } else if (field instanceof ECFieldF2m) {
62 int m = ((ECFieldF2m)field).getM();
70 * Creates an elliptic curve with the specified elliptic field
71 * {@code field} and the coefficients {@code a} an
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
FieldsSet.java 29 throw new InternalError("Preposterous field count " + fieldsCount);
50 public void clear(int field) {
51 fValues[field] = -1;
52 fIsSet[field] = false;
55 public void set(int field, int amount) {
56 fValues[field] = amount;
57 fIsSet[field] = true;
60 public boolean isSet(int field) {
61 return fIsSet[field];
64 public int get(int field) {
137 int field = handleParseName(inheritFrom, key, value); local
164 int field = -1; local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
FieldsSet.java 28 throw new InternalError("Preposterous field count " + fieldsCount);
49 public void clear(int field) {
50 fValues[field] = -1;
51 fIsSet[field] = false;
54 public void set(int field, int amount) {
55 fValues[field] = amount;
56 fIsSet[field] = true;
59 public boolean isSet(int field) {
60 return fIsSet[field];
63 public int get(int field) {
136 int field = handleParseName(inheritFrom, key, value); local
163 int field = -1; local
    [all...]
  /external/openssh/openbsd-compat/
sys-queue.h 198 #define SLIST_NEXT(elm, field) ((elm)->field.sle_next)
200 #define SLIST_FOREACH(var, head, field) \
203 (var) = SLIST_NEXT(var, field))
205 #define SLIST_FOREACH_SAFE(var, head, field, tvar) \
207 (var) && ((tvar) = SLIST_NEXT(var, field), 1); \
217 #define SLIST_INSERT_AFTER(slistelm, elm, field) do { \
218 (elm)->field.sle_next = (slistelm)->field.sle_next; \
219 (slistelm)->field.sle_next = (elm);
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
elfcomm.c 64 byte_put_little_endian (unsigned char * field, elf_vma value, int size)
69 field[7] = (((value >> 24) >> 24) >> 8) & 0xff;
70 field[6] = ((value >> 24) >> 24) & 0xff;
71 field[5] = ((value >> 24) >> 16) & 0xff;
72 field[4] = ((value >> 24) >> 8) & 0xff;
75 field[3] = (value >> 24) & 0xff;
78 field[2] = (value >> 16) & 0xff;
81 field[1] = (value >> 8) & 0xff;
84 field[0] = value & 0xff;
94 byte_put_big_endian (unsigned char * field, elf_vma value, int size
    [all...]
  /external/junit/src/main/java/org/junit/runners/model/
FrameworkField.java 4 import java.lang.reflect.Field;
9 * Represents a field on a test class (currently used only for Rules in
15 private final Field field; field in class:FrameworkField
17 FrameworkField(Field field) {
18 if (field == null) {
20 "FrameworkField cannot be created without an underlying field.");
22 this.field = field;
    [all...]
  /art/runtime/openjdkjvmti/
ti_field.h 44 jfieldID field,
51 jfieldID field,
56 jfieldID field,
61 jfieldID field,
64 static jvmtiError SetFieldModificationWatch(jvmtiEnv* env, jclass klass, jfieldID field);
65 static jvmtiError ClearFieldModificationWatch(jvmtiEnv* env, jclass klass, jfieldID field);
66 static jvmtiError SetFieldAccessWatch(jvmtiEnv* env, jclass klass, jfieldID field);
67 static jvmtiError ClearFieldAccessWatch(jvmtiEnv* env, jclass klass, jfieldID field);

Completed in 1504 milliseconds

1 2 3 4 5 67 8 91011>>