HomeSort by relevance Sort by last modified time
    Searched refs:Field (Results 351 - 375 of 614) sorted by null

<<11121314151617181920>>

  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
ErrorManager.java 46 import java.lang.reflect.Field;
64 * do field name expansion to save me some typing. I have to map
825 Field[] fields = ErrorManager.class.getFields();
827 Field f = fields[i];
855 Field[] fields = ErrorManager.class.getFields();
857 Field f = fields[i];
    [all...]
  /frameworks/base/core/java/android/os/
Debug.java 31 import java.lang.reflect.Field;
    [all...]
  /frameworks/base/tools/aidl/
generate_java_binder.cpp 35 Field* descriptor = new Field(STATIC | FINAL | PRIVATE,
171 this->elements.push_back(new Field(PRIVATE, mRemote));
266 Field* transactCode = new Field(STATIC | FINAL,
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp 802 // Get the location for the field.
830 // For C++11 Lambdas a Field will be the same as a Capture, but the Capture
834 RecordDecl::field_iterator Field = CXXDecl->field_begin();
837 E = CXXDecl->captures_end(); I != E; ++I, ++Field, ++fieldno) {
844 if (Field->isBitField()) {
845 SizeInBitsOverride = Field->getBitWidthValue(CGM.getContext());
849 = createFieldType(VName, Field->getType(), SizeInBitsOverride,
850 C.getLocation(), Field->getAccess(),
855 // this of the lambda class and having a field member of 'this' or
858 assert(C.capturesThis() && "Field that isn't captured and isn't this?")
    [all...]
  /external/chromium_org/v8/src/arm/
macro-assembler-arm.h 19 // Generate a MemOperand for loading a field from an object.
    [all...]
  /external/chromium_org/v8/src/x64/
macro-assembler-x64.h 409 // Stores an integer32 value into a memory field that already holds a smi.
    [all...]
  /external/qemu-pc-bios/bochs/bios/
acpi-dsdt.dsl 32 Field (DBG, DWordAcc, NoLock, Preserve)
95 Field (PCST, DWordAcc, NoLock, WriteAsZeros)
102 Field (SEJ, DWordAcc, NoLock, WriteAsZeros)
415 Field (P13C, DWordAcc, NoLock, Preserve)
432 Field (\_SB.PCI0.ISA.P40C, ByteAcc, NoLock, Preserve)
  /external/clang/lib/AST/
ASTContext.cpp 5696 FieldDecl *field = cast<FieldDecl>(dcl); local
    [all...]
  /external/proguard/src/proguard/classfile/util/
SimplifiedVisitor.java 288 public void visitDeprecatedAttribute(Clazz clazz, Field field, DeprecatedAttribute deprecatedAttribute)
290 visitDeprecatedAttribute(clazz, (Member)field, deprecatedAttribute);
315 public void visitSyntheticAttribute(Clazz clazz, Field field, SyntheticAttribute syntheticAttribute)
317 visitSyntheticAttribute(clazz, (Member)field, syntheticAttribute);
342 public void visitSignatureAttribute(Clazz clazz, Field field, SignatureAttribute signatureAttribute)
344 visitSignatureAttribute(clazz, (Member)field, signatureAttribute);
354 public void visitConstantValueAttribute(Clazz clazz, Field field, ConstantValueAttribute constantValueAttribute
    [all...]
  /cts/tests/signature/src/android/signature/cts/
SignatureTest.java 31 import java.lang.reflect.Field;
53 private static final String TAG_FIELD = "field";
110 Field[] fs = rClass.getFields();
111 for (Field f : fs) {
112 logd(String.format("Field: %s", f.toString()));
204 JDiffField field = loadFieldInfo(currentClass.getClassName(), parser); local
205 currentClass.addField(field);
223 * Load field information from xml to memory.
227 * @return the new field
289 * @param name of the class/method/field being examined which will be shown in error message
    [all...]
  /cts/tests/tests/app/src/android/app/cts/
SystemFeaturesTest.java 45 import java.lang.reflect.Field;
355 Field[] fields = PackageManager.class.getFields();
356 for (Field field : fields) {
357 if (field.getName().startsWith(prefix)) {
358 String feature = (String) field.get(null);
  /cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/
DeviceInfoInstrument.java 38 import java.lang.reflect.Field;
285 Field[] fields = PackageManager.class.getFields();
286 for (Field field : fields) {
287 if (field.getName().startsWith("FEATURE_")) {
288 String feature = (String) field.get(null);
  /external/chromium_org/mojo/android/javatests/src/org/chromium/mojo/bindings/
BindingsTest.java 28 import java.lang.reflect.Field;
125 Field field, Class<T> expectedClass, T value) throws IllegalAccessException {
126 assertEquals(expectedClass, field.getType());
127 assertEquals(Modifier.FINAL, field.getModifiers() & Modifier.FINAL);
128 assertEquals(Modifier.STATIC, field.getModifiers() & Modifier.STATIC);
129 assertEquals(value, field.get(null));
132 private static <T> void checkField(Field field, Class<T> expectedClass,
134 assertEquals(expectedClass, field.getType())
    [all...]
  /external/mockito/src/org/mockito/exceptions/
Reporter.java 25 import java.lang.reflect.Field;
596 throw new MockitoException("You cannot have more than one Mockito annotation on a field!\n" +
597 "The field '" + fieldName + "' has multiple Mockito annotations.\n" +
602 throw new MockitoException("This combination of annotations is not permitted on a single field:\n" +
607 throw new MockitoException(join("Cannot instantiate a @Spy for '" + fieldName + "' field.",
608 "You haven't provided the instance for spying at field declaration so I tried to construct the instance.",
618 throw new MockitoException(join("Cannot instantiate @InjectMocks field named '" + fieldName + "'.",
619 "You haven't provided the instance at field declaration so I tried to construct the instance.",
640 public void fieldInitialisationThrewException(Field field, Throwable details)
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
readdwarf3.c 351 /* Read a DWARF3 'Initial Length' field */
394 .unit_length :: InitialLength field of the CU Header.
396 include the size of the .unit_length field itself, which is
592 vg_assert(nbytes <= 0xFFFF); /* else we overflow the nbytes field */
874 /* initial_length field */
877 "parse_CU_Header: invalid initial-length field" );
    [all...]
  /art/runtime/
jni_internal_test.cc 193 // Good declared field lookup.
198 // Good superclass field lookup.
244 // Good declared field lookup.
372 jclass jlrField = env_->FindClass("java/lang/reflect/Field");
377 // Turn the fid into a java.lang.reflect.Field...
378 jobject field = env_->ToReflectedField(c, fid, JNI_FALSE); local
385 ASSERT_TRUE(env_->IsInstanceOf(field, jlrField));
387 jfieldID fid2 = env_->FromReflectedField(field);
395 field = env_->ToReflectedField(c, nullptr, JNI_FALSE);
396 EXPECT_EQ(field, nullptr)
    [all...]
  /art/test/121-modifiers/src/
Main.java 109 for (java.lang.reflect.Field f : clazz.getDeclaredFields()) {
115 throw new RuntimeException("Unexpected field bits: " + name);
118 // Interface field, just check generically.
123 throw new RuntimeException("Expected field bit not set.");
146 int index = name.indexOf("Field");
171 throw new RuntimeException("Unexpected field name " + name);
  /external/chromium_org/third_party/skia/src/sfnt/
SkOTTable_OS_2_V3.h 54 struct Field {
75 } field; member in union:SkOTTableOS2_V3::Type
99 struct Field {
263 } field; member in union:SkOTTableOS2_V3::UnicodeRange
369 struct Field {
390 } field; member in union:SkOTTableOS2_V3::Selection
412 struct Field {
494 } field; member in union:SkOTTableOS2_V3::CodePageRange
SkOTTable_OS_2_V4.h 54 struct Field {
75 } field; member in union:SkOTTableOS2_V4::Type
99 struct Field {
263 } field; member in union:SkOTTableOS2_V4::UnicodeRange
401 struct Field {
422 } field; member in union:SkOTTableOS2_V4::Selection
447 struct Field {
529 } field; member in union:SkOTTableOS2_V4::CodePageRange
  /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/skia/src/sfnt/
SkOTTable_OS_2_V3.h 54 struct Field {
75 } field; member in union:SkOTTableOS2_V3::Type
99 struct Field {
263 } field; member in union:SkOTTableOS2_V3::UnicodeRange
369 struct Field {
390 } field; member in union:SkOTTableOS2_V3::Selection
412 struct Field {
494 } field; member in union:SkOTTableOS2_V3::CodePageRange
SkOTTable_OS_2_V4.h 54 struct Field {
75 } field; member in union:SkOTTableOS2_V4::Type
99 struct Field {
263 } field; member in union:SkOTTableOS2_V4::UnicodeRange
401 struct Field {
422 } field; member in union:SkOTTableOS2_V4::Selection
447 struct Field {
529 } field; member in union:SkOTTableOS2_V4::CodePageRange
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
DumpFields.java 40 import org.jf.dexlib2.iface.Field;
121 String field = fields.keyAt(i) + ":" + fields.valueAt(i).getType() + " " + fields.valueAt(i).getName() + "\n"; local
122 outStream.write(field.getBytes());
  /frameworks/compile/slang/
slang_rs_export_func.cpp 146 const RSExportRecordType::Field *F = *FI;
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
RenderScriptThunker.java 19 import java.lang.reflect.Field;

Completed in 2432 milliseconds

<<11121314151617181920>>