/dalvik/dx/tests/064-dex-array-access/ |
D | Blort.java | 19 public boolean test01(boolean[] x) { in test01() 24 public byte test02(byte[] x) { in test02() 29 public short test03(short[] x) { in test03() 34 public char test04(char[] x) { in test04() 39 public int test05(int[] x) { in test05() 44 public long test06(long[] x) { in test06() 49 public float test07(float[] x) { in test07() 54 public double test08(double[] x) { in test08() 59 public Object test09(Object[] x) { in test09() 64 public static Object test10(Object[][] x) { in test10() [all …]
|
/dalvik/dx/tests/078-dex-local-variable-table/ |
D | Blort.java | 19 public static void test01(Object x) { in test01() 28 public static String test03(int x) { in test03() 33 public static String test04(int x) { in test04() 41 public static int test05(Object x) { in test05() 47 public static int test06(int x) { in test06() 58 public static void test07(boolean x) { in test07() 63 public static void test08(byte x) { in test08() 68 public static void test09(char x) { in test09() 73 public static void test10(double x) { in test10() 78 public static void test11(float x) { in test11() [all …]
|
/dalvik/dx/tests/072-dex-switch-edge-cases/ |
D | Blort.java | 22 public int test1(int x) { in test1() 31 public int test2(int x) { in test2() 40 public int test3(int x) { in test3() 49 public int test4(int x) { in test4() 58 public int test5(int x) { in test5() 68 public int test6(int x) { in test6() 78 public int test7(int x) { in test7() 89 public int test8(int x) { in test8()
|
/dalvik/dx/tests/070-dex-multianewarray/ |
D | Blort.java | 20 Object[][] x = new Object[2][5]; in test01() local 25 Object[][][] x = new Object[4][1][]; in test02() local 30 Object[][][] x = new Object[7][2][4]; in test03() local 35 Object[][][] x = new Object[3][0][0]; in test04() local 40 Object[][][][] x = new Object[1][3][5][7]; in test05() local 45 Object[][][][][] x = new Object[8][7][2][3][4]; in test06() local 50 Object[][][][][][] x = new Object[8][7][2][3][4][]; in test07() local 55 Object[][][][][][][] x = new Object[8][7][2][3][4][][]; in test08() local
|
/dalvik/dx/tests/062-dex-synch-method/ |
D | Blort.java | 23 public synchronized void testInstance2(Object x) { in testInstance2() 27 public synchronized int testInstance3(int x, int y, int z) { in testInstance3() 35 public synchronized long testInstance4(long x) { in testInstance4() 51 public static synchronized void testStatic2(Object x) { in testStatic2() 55 public static synchronized int testStatic3(int x, int y, int z) { in testStatic3() 63 public static synchronized long testStatic4(long x) { in testStatic4()
|
/dalvik/dx/tests/067-dex-switch-and-try/ |
D | Blort.java | 24 public int test1(int x) { in test1() 44 public int test2(int x) { in test2() 67 public int test3(int x) { in test3() 91 public int test4(int x) { in test4()
|
/dalvik/dx/tests/046-dex-exceptions/ |
D | Blort.java | 19 public static int maybeThrow(int x) { in maybeThrow() 27 public static int exTest1(int x) { in exTest1() 36 public static int exTest2(int x) { in exTest2()
|
/dalvik/vm/ |
D | Sync.h | 29 #define LW_SHAPE(x) ((x) & LW_SHAPE_MASK) argument 40 #define LW_HASH_STATE(x) (((x) >> LW_HASH_STATE_SHIFT) & LW_HASH_STATE_MASK) argument 46 #define LW_MONITOR(x) \ argument 56 #define LW_LOCK_OWNER(x) (((x) >> LW_LOCK_OWNER_SHIFT) & LW_LOCK_OWNER_MASK) argument 64 #define LW_LOCK_COUNT(x) (((x) >> LW_LOCK_COUNT_SHIFT) & LW_LOCK_COUNT_MASK) argument
|
D | Common.h | 47 # define assert(x) \ argument 52 #define MIN(x,y) (((x) < (y)) ? (x) : (y)) argument 53 #define MAX(x,y) (((x) > (y)) ? (x) : (y)) argument 58 #define ALIGN_UP(x, n) (((size_t)(x) + (n) - 1) & ~((n) - 1)) argument 59 #define ALIGN_DOWN(x, n) ((size_t)(x) & -(n)) argument 63 #define CLZ(x) __builtin_clz(x) argument 121 #define NELEM(x) ((int) (sizeof(x) / sizeof((x)[0]))) argument
|
/dalvik/dx/tests/061-dex-try-catch/ |
D | Blort.java | 23 public static void zorch(int x) { in zorch() 27 public static void test1(int x) { in test1() 40 int x = sa.length; in test2() local
|
/dalvik/dx/tests/063-dex-empty-switch/ |
D | Blort.java | 19 public int test1(int x) { in test1() 25 public int test2(int x) { in test2()
|
/dalvik/dx/tests/045-dex-switch-ops/ |
D | Blort.java | 19 public int switchTest1(int x) { in switchTest1() 38 public int switchTest2(int x) { in switchTest2()
|
/dalvik/dx/tests/097-dex-branch-offset-zero/ |
D | Blort.java | 23 public void test2(int x) { in test2() 27 public void test3(int x, int y) { in test3()
|
/dalvik/tests/003-omnibus-opcodes/src/ |
D | UnresTest1.java | 10 int x = stuff.instField; in run() local 16 int x = stuff.instField; in run() local
|
D | IntMath.java | 117 static int[] intOperTest(int x, int y) { in intOperTest() 163 static int[] lit16Test(int x) { in lit16Test() 193 static int[] lit8Test(int x) { in lit8Test() 257 static long[] longOperTest(long x, long y) { in longOperTest() 334 static int unopTest(int x) { in unopTest() 352 static Shorty truncateTest(int x) { in truncateTest() 374 int x = 100 / z; in divideByZero() local 380 int x = 100 % z; in divideByZero() local 386 long x = 100L / z; in divideByZero() local 392 long x = 100L % z; in divideByZero() local
|
/dalvik/dx/tests/086-ssa-edge-split/ |
D | Blort.java | 25 public int edgeSplitPredTest(int x) { in edgeSplitPredTest() 61 int edgeSplitSuccessor(int x) { in edgeSplitSuccessor()
|
/dalvik/dx/tests/047-dex-wide-args/ |
D | Blort.java | 19 public static long test1(int w, long x, int y, long z) { in test1() 23 public static long test2(long w, int x, long y, int z) { in test2()
|
/dalvik/tests/044-proxy/src/ |
D | BasicTest.java | 118 public int rectangle(int x, int y); in rectangle() 128 public int rectangle(int x, int y); in rectangle() 129 public int square(int x, int y); in square() 130 public int trapezoid(int x, double off, int y); in trapezoid() 164 public int rectangle(int x, int y) { in rectangle() 168 public int square(int x, int y) { in square() 172 public int trapezoid(int x, double off, int y) { in trapezoid()
|
D | Clash3.java | 45 class R3base implements I3 { int mBlah; public void x() {} } in x() method in R3base 48 class R3b implements I3 { int mBlah_b; public void x() {} } in x() method in R3b 51 void x(); in x() method
|
/dalvik/tests/075-verification-error/src/ |
D | Main.java | 55 int x = mutant.disappearingField; in testMissingStuff() local 90 int x = mutant.inaccessibleField; in testBadAccess() local
|
/dalvik/dx/tests/066-dex-try-catch-rethrow/ |
D | Blort.java | 55 public static Object zorch4(int x) { in zorch4() 67 public static Object zorch5(int x) { in zorch5()
|
/dalvik/tests/003-omnibus-opcodes/src2/ |
D | UnresStuff.java | 8 public int x; field in UnresStuff
|
/dalvik/dx/tests/069-dex-source-position/ |
D | Blort.java | 19 public static int test(int x) { in test()
|
/dalvik/dx/tests/050-dex-checkcast/ |
D | Blort.java | 19 public static Blort test(Object x) { in test()
|
/dalvik/dx/tests/049-dex-instanceof/ |
D | Blort.java | 19 public static boolean test(Object x) { in test()
|