HomeSort by relevance Sort by last modified time
    Searched refs:field (Results 276 - 300 of 5806) sorted by null

<<11121314151617181920>>

  /external/v8/tools/clang/blink_gc_plugin/
CheckFinalizerVisitor.h 16 // fields that are potentially finalized. A potentially finalized field is
18 // contains Members. Invalid uses are currently identified as passing the field
26 FieldPoint* field)
29 field(field) {}
33 FieldPoint* field; member in struct:CheckFinalizerVisitor::Error
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/
DelegatingFieldParser.java 16 package org.apache.james.mime4j.field;
27 * Sets the parser used for the field named <code>name</code>.
28 * @param name the name of the field
36 final FieldParser field = parsers.get(name.toLowerCase()); local
37 if(field==null) {
40 return field;
43 public Field parse(final String name, final String body, final String raw) {
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/
Address.java 20 package org.apache.james.mime4j.field.address;
  /tools/tradefederation/core/src/com/android/tradefed/config/
OptionSetter.java 28 import java.lang.reflect.Field;
54 * long as the parameter type is otherwise supported by the option setter. The collection field
99 Field field; field in class:OptionSetter.FieldDef
102 FieldDef(Object object, Field field, Object key) {
104 this.field = field;
117 Objects.equal(this.field, other.field) &
377 final Field field = fieldEntry.getValue(); local
710 final Field field = fieldEntry.getValue(); local
858 Field field = fieldsForArg(name).getFirstField(); local
867 Field field = fieldsForArg(name).getFirstField(); local
    [all...]
  /external/mockito/src/main/java/org/mockito/internal/configuration/
IndependentAnnotationEngine.java 8 import java.lang.reflect.Field;
37 private Object createMockFor(Annotation annotation, Field field) {
38 return forAnnotation(annotation).process(annotation, field);
46 public Object process(A annotation, Field field) {
58 Field[] fields = clazz.getDeclaredFields();
59 for (Field field : fields) {
61 for(Annotation annotation : field.getAnnotations())
    [all...]
  /art/runtime/interpreter/mterp/arm/
op_iget_object_quick.S 4 FETCH r1, 1 @ r1<- field byte offset
op_iget_quick.S 5 FETCH r1, 1 @ r1<- field byte offset
10 $load r0, [r3, r1] @ r0<- obj.field
op_iget_wide_quick.S 3 FETCH ip, 1 @ ip<- field byte offset
8 ldrd r0, [r3, ip] @ r0<- obj.field (64 bits, aligned)
  /art/runtime/interpreter/mterp/mips/
op_iget_object_quick.S 4 FETCH(a1, 1) # a1 <- field byte offset
  /art/runtime/interpreter/mterp/mips64/
op_iget_object_quick.S 5 lhu a1, 2(rPC) # a1 <- field byte offset
op_iget_quick.S 5 lhu a1, 2(rPC) # a1 <- field byte offset
10 $load a0, 0(a1) # a0 <- obj.field
op_iget_wide_quick.S 3 lhu a4, 2(rPC) # a4 <- field byte offset
  /external/autotest/frontend/client/src/autotest/common/table/
DataSource.java 13 private String field; field in class:DataSource.SortSpec
16 public SortSpec(String field, SortDirection direction) {
17 this.field = field;
21 public SortSpec(String field) {
22 this(field, SortDirection.ASCENDING);
30 return field;
43 return prefix + field;
70 * first field, then the second, etc.
  /external/doclava/src/com/google/doclava/
Linter.java 20 public void lintField(FieldInfo field);
28 public void lintField(FieldInfo field) {
  /external/emma/core/java12/com/vladium/jcd/cls/
IFieldCollection.java 32 * @param offset field offset [must be in [0, size()) range; input not checked]
47 * @param name field name [null or empty will result in no matches]
48 * @return array of field offsets in no particular order [never null; could be empty]
71 * that all data referenced in 'field' will eventually appear in the
74 * @param field new field descriptor [may not be null]
75 * @return new field's offset
77 int add (Field_info field);
81 * checks are made. No field type compatibility checks are made. It is
83 * in 'field' will eventually appear in the constant pool
    [all...]
  /external/protobuf/objectivec/
GPBRootObject_PackagePrivate.h 40 + (void)globallyRegisterExtension:(GPBExtensionDescriptor *)field;
  /system/bt/vendor_libs/test_vendor_lib/src/
device_properties.cc 36 bool ParseUint8t(const base::StringPiece& value, uint8_t* field) {
37 *field = std::stoi(value.as_string());
41 bool ParseUint16t(const base::StringPiece& value, uint16_t* field) {
42 *field = std::stoi(value.as_string());
106 #define REGISTER_UINT8_T(field_name, field) \
108 field_name, &DeviceProperties::field, &ParseUint8t);
109 #define REGISTER_UINT16_T(field_name, field) \
111 field_name, &DeviceProperties::field, &ParseUint16t);
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
addsw-bad.d 1 #name: Invalid Immediate field for flag-setting add,sub
  /system/tools/hidl/
CompoundType.cpp 48 for (const auto* field : *mFields) {
49 const Type& type = field->type();
53 << field->location() << "\n";
60 << field->location() << "\n";
75 for (const auto* field : *mFields) {
76 if (names.find(field->name()) != names.end()) {
77 std::cerr << "ERROR: Redefinition of field '" << field->name() << "' at "
78 << field->location() << "\n";
81 names.insert(field->name())
    [all...]
  /art/openjdkjvmti/
ti_field.cc 46 // Note: For all these functions, we could do a check that the field actually belongs to the given
47 // class. But the spec seems to assume a certain encoding of the field ID, and so doesn't
52 jfieldID field,
59 if (field == nullptr) {
64 art::ArtField* art_field = art::jni::DecodeArtField(field);
124 jfieldID field,
129 if (field == nullptr) {
137 art::ArtField* art_field = art::jni::DecodeArtField(field);
147 jfieldID field,
152 if (field == nullptr)
    [all...]
  /art/runtime/
common_dex_operations.h 91 ArtField* field,
94 DCheckStaticState(self, field);
96 // Report this field access to instrumentation if needed.
103 if (!field->IsStatic()) {
110 field);
118 result->SetZ(field->GetBoolean(obj));
121 result->SetB(field->GetByte(obj));
124 result->SetC(field->GetChar(obj));
127 result->SetS(field->GetShort(obj));
130 result->SetI(field->GetInt(obj))
    [all...]
  /art/runtime/mirror/
class-refvisitor-inl.h 56 for (ArtField& field : GetSFieldsUnchecked()) {
58 field.VisitRoots(visitor);
60 CHECK_EQ(field.GetDeclaringClass<kReadBarrierOption>(), this) << GetStatus();
63 for (ArtField& field : GetIFieldsUnchecked()) {
65 field.VisitRoots(visitor);
67 CHECK_EQ(field.GetDeclaringClass<kReadBarrierOption>(), this) << GetStatus();
  /external/annotation-tools/scene-lib/src/annotations/el/
AField.java 36 AField(AField field) {
37 super(field.fieldName, field);
38 fieldName = field.fieldName;
39 init = field.init == null ? null : field.init.clone();
  /external/clang/test/CodeGenCXX/
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/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
DateTimeStyleSet.java 50 protected void handleParseValue(FieldsSet inheritFrom, int field, String substr) {
52 parseValueEnum(DebugUtilitiesData.UDateFormatStyle, inheritFrom, field, substr.substring(kRELATIVE_.length()));
53 if(isSet(field)) {
54 set(field, get(field) | DateFormat.RELATIVE);
57 parseValueEnum(DebugUtilitiesData.UDateFormatStyle, inheritFrom, field, substr);
67 throw new IllegalArgumentException("Bad field: " + name);

Completed in 2083 milliseconds

<<11121314151617181920>>