/art/test/918-fields/src/art/ |
D | Test918.java | 39 Field f = base.getDeclaredField(fieldName); in testField() local 62 private static native String[] getFieldName(Field f); in getFieldName() 63 private static native Class<?> getFieldDeclaringClass(Field f); in getFieldDeclaringClass() 64 private static native int getFieldModifiers(Field f); in getFieldModifiers() 65 private static native boolean isFieldSynthetic(Field f); in isFieldSynthetic()
|
/art/test/991-field-trace-2/src/art/ |
D | Test991.java | 32 Executable method, long location, Class<?> f_klass, Object target, Field f) { in notifyFieldAccess() 41 Executable method, long location, Class<?> f_klass, Object target, Field f, Object value) { in notifyFieldModify() 50 public void handleFieldAccess(Executable m, long l, Class<?> fk, Object t, Field f) {} in handleFieldAccess() 51 public void handleFieldModify(Executable m, long l, Class<?> fk, Object t, Field f, Object v) {} in handleFieldModify() 61 public void handleFieldAccess(Executable m, long l, Class<?> fk, Object t, Field f) { in handleFieldAccess() 67 public void handleFieldModify(Executable m, long l, Class<?> fk, Object t, Field f, Object v) { in handleFieldModify() 73 public void handleFieldModify(Executable m, long l, Class<?> fk, Object t, Field f, Object v) { in handleFieldModify() 79 public void handleFieldAccess(Executable m, long l, Class<?> fk, Object t, Field f) { in handleFieldAccess() 88 public void handleFieldModify(Executable m, long l, Class<?> fk, Object t, Field f, Object v) { in handleFieldModify() 97 public void handleFieldAccess(Executable m, long l, Class<?> fk, Object t, Field f) { in handleFieldAccess() [all …]
|
/art/test/608-checker-unresolved-lse/src/ |
D | Main.java | 45 Foo f = new Foo(); in instanceFieldTest() local 72 Foo f = new Foo(); in instanceFieldTest2() local 94 Foo f = new Foo(); in staticFieldTest() local
|
/art/test/990-field-trace/src/art/ |
D | Test990.java | 43 private Field f; field in Test990.FieldWrite 47 public FieldWrite(Executable method, Object target, Field f, Object v) { in FieldWrite() 67 private Field f; field in Test990.FieldRead 69 public FieldRead(Executable method, Object target, Field f) { in FieldRead()
|
/art/libartbase/base/ |
D | casts.h | 51 inline To implicit_cast(From const &f) { in implicit_cast() 74 inline To down_cast(From* f) { // so we only accept pointers in down_cast() 82 inline To down_cast(From& f) { // so we only accept references in down_cast()
|
D | transform_iterator.h | 166 TransformIterator<BaseIterator, Function> MakeTransformIterator(BaseIterator base, Function f) { in MakeTransformIterator() 171 auto MakeTransformRange(BaseRange& range, Function f) { in MakeTransformRange()
|
/art/test/003-omnibus-opcodes/src/ |
D | FloatMath.java | 25 float f; in convTest() local 232 static float unopTest(float f) { in unopTest() 237 static int[] convI(long l, float f, double d, float zero) { in convI() 257 static long[] convL(int i, float f, double d, double zero) { in convL() 291 static double[] convD(int i, long l, float f) { in convD() 308 float f = 10.0f; // const/special in checkConsts() local
|
/art/tools/ |
D | stream-trace-converter.py | 29 def ReadShortLE(f): argument 38 def WriteShortLE(f, val): argument 43 def ReadIntLE(f): argument 58 def WriteIntLE(f, val): argument
|
/art/test/655-checker-simd-arm-opt/src/ |
D | Main.java | 51 … void encodableConstants(byte[] b, short[] s, char[] c, int[] a, long[] l, float[] f, double[] d) { in encodableConstants() 75 …private static int sumArray(byte[] b, short[] s, char[] c, int[] a, long[] l, float[] f, double[] … in sumArray() 91 float[] f = new float[ARRAY_SIZE]; in main() local
|
/art/runtime/entrypoints/ |
D | math_entrypoints.cc | 39 extern "C" int64_t art_f2l(float f) { in art_f2l() 47 extern "C" int32_t art_f2i(float f) { in art_f2i()
|
/art/test/528-long-hint/src/ |
D | Main.java | 28 Main f = new Main(); in main() local 41 Field f = Unsafe.class.getDeclaredField("theUnsafe"); in getUnsafe() local
|
/art/test/474-fp-sub-neg/src/ |
D | Main.java | 19 float f = 0; in floatTest() local 59 float f=-0.0f; in bug_1() local
|
/art/test/529-long-split/src/ |
D | Main.java | 35 int f = myField1; // EBX in testOddLow1() local 77 int f = myField1; // EBX in testNonFollowingHigh() local 117 int f = myField1; // EBX in testOddLow2() local
|
/art/test/439-swap-double/src/ |
D | Main.java | 35 double a, double b, double c, double d, double e, double f, double g) { in callWithDoubles() 44 double f = 6.0; field in Main
|
/art/test/100-reflect2/src/ |
D | Main.java | 25 private static float f = 3.14f; field in Main 31 Field f; in testFieldReflection() local 269 …private static void ZBCDFIJSV(boolean z, byte b, char c, double d, float f, int i, long l, short s… in ZBCDFIJSV() 273 …private static void ZBCDLFIJSV(boolean z, byte b, char c, double d, String string, float f, int i,… in ZBCDLFIJSV()
|
/art/test/454-get-vreg/src/ |
D | Main.java | 21 int testSimpleVReg(int a, float f, short s, boolean z, byte b, char c) { in testSimpleVReg() 28 long f = doCall(); in testPairVReg() local
|
/art/test/073-mismatched-field/src/ |
D | SuperMain.java | 18 public int f = 456; field in SuperMain
|
/art/test/073-mismatched-field/src2/ |
D | IMain.java | 18 static int f = 123; field
|
/art/test/027-arithmetic/src/ |
D | Main.java | 58 long f = 0x66; in shiftTest2() local 70 float f; in convTest() local
|
/art/test/962-iface-static/src/ |
D | Iface.java | 17 public static final Displayer f = new Displayer(); field
|
/art/test/ExceptionHandle/ |
D | ExceptionHandle.java | 20 int f() throws Exception { in f() method in ExceptionHandle
|
/art/runtime/native/ |
D | java_lang_reflect_Field.cc | 78 ObjPtr<mirror::Field> f, in GetFieldValue() 126 ObjPtr<mirror::Field>* f, in CheckReceiver() 155 ObjPtr<mirror::Field> f = soa.Decode<mirror::Field>(javaField); in Field_get() local 182 ObjPtr<mirror::Field> f = soa.Decode<mirror::Field>(javaField); in GetPrimitiveField() local 254 ObjPtr<mirror::Field> f, in SetFieldValue() 329 ObjPtr<mirror::Field> f = soa.Decode<mirror::Field>(javaField); in Field_set() local 371 ObjPtr<mirror::Field> f = soa.Decode<mirror::Field>(javaField); in SetPrimitiveField() local 425 static void Field_setFloat(JNIEnv* env, jobject javaField, jobject javaObj, jfloat f) { in Field_setFloat()
|
/art/test/484-checker-register-hints/src/ |
D | Main.java | 45 int f = live2; in test1() local 80 int f = live2; in test2() local 105 int f = live2; in test3() local
|
/art/test/404-optimizing-allocator/src/ |
D | Main.java | 86 int f = 0; in $opt$reg$TestMultipleLive() local 129 public static int $opt$reg$TestAgressiveLive1(int a, int b, int c, int d, int e, int f, int g) { in $opt$reg$TestAgressiveLive1() 150 public static int $opt$reg$TestAgressiveLive2(int a, int b, int c, int d, int e, int f, int g) { in $opt$reg$TestAgressiveLive2()
|
/art/test/405-optimizing-long-allocator/src/ |
D | Main.java | 92 long f = 0; in $opt$TestMultipleLive() local 135 …public static long $opt$TestAgressiveLive1(long a, long b, long c, long d, long e, long f, long g)… in $opt$TestAgressiveLive1() 156 …public static long $opt$TestAgressiveLive2(long a, long b, long c, long d, long e, long f, long g)… in $opt$TestAgressiveLive2()
|