/cts/tools/vm-tests-tf/src/dot/junit/opcodes/shr_long/d/ |
T_shr_long_3.d | 6 .method public <init>()V 11 .end method 13 .method public run(JD)J 18 .end method
|
T_shr_long_4.d | 6 .method public <init>()V 11 .end method 13 .method public run(II)J 18 .end method
|
T_shr_long_5.d | 6 .method public <init>()V 11 .end method 13 .method public run(FI)J 18 .end method
|
T_shr_long_6.d | 6 .method public <init>()V 11 .end method 13 .method public run(JI)J 18 .end method
|
T_shr_long_7.d | 6 .method public <init>()V 11 .end method 13 .method public run(DI)J 18 .end method
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/shr_long_2addr/d/ |
T_shr_long_2addr_1.d | 6 .method public <init>()V 11 .end method 13 .method public run(JI)J 18 .end method
|
T_shr_long_2addr_2.d | 6 .method public <init>()V 11 .end method 13 .method public run(JI)J 18 .end method
|
T_shr_long_2addr_3.d | 6 .method public <init>()V 11 .end method 13 .method public run(JD)J 18 .end method
|
T_shr_long_2addr_4.d | 6 .method public <init>()V 11 .end method 13 .method public run(II)J 18 .end method
|
T_shr_long_2addr_5.d | 6 .method public <init>()V 11 .end method 13 .method public run(FI)J 18 .end method
|
T_shr_long_2addr_6.d | 6 .method public <init>()V 11 .end method 13 .method public run(JI)J 18 .end method
|
T_shr_long_2addr_7.d | 6 .method public <init>()V 11 .end method 13 .method public run(DI)J 18 .end method
|
/dalvik/dx/src/com/android/dx/cf/iface/ |
StdMethodList.java | 23 * an array of {@link Method} objects and can be made immutable. 36 public Method get(int n) { 37 return (Method) get0(n); 41 * Sets the method at the given index. 43 * @param n {@code >= 0, < size();} which method 44 * @param method {@code null-ok;} the method object 46 public void set(int n, Method method) { 47 set0(n, method); [all...] |
/dalvik/dx/tests/094-scala-locals/ |
run | 18 dx --debug --dump --ssa-blocks --method=scalalocals Blort.class
|
/dalvik/dx/tests/109-int-branch/ |
run | 18 dx --debug --dex --no-optimize --dump-method="blort.test*" blort.class
|
/dalvik/dx/tests/123-dex-transform-invalid-virtual-to-direct/ |
run | 18 --dump-method=Zorch.zorch1 Zorch.class
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/ |
Breakpoint.java | 49 * @param method Method in which breakpoint is created 50 * @param location Location within the method 52 public Breakpoint(String clazz, String method, int location) { 54 methodName = method;
|
/external/clang/test/Analysis/ |
bug_hash_test.cpp | 25 int method() && { function in class:AA::X 27 inline int method() const & { function in class:AA::X::Y 743 // CHECK-NEXT: <key>issue_context_kind</key><string>C++ method</string> [all...] |
/external/clang/test/CodeGenCXX/ |
optnone-templates.cpp | 29 // FIRST TEST: a method becomes marked with optnone in the specialization. 33 T method(T t, U u) function in class:template_normal_base 42 __attribute__((optnone)) int method (int t, U u) function in class:template_normal_base 49 // method is not marked optnone) and an instantiation of the partially 50 // specialized template (whose method is marked optnone). 57 float r1 = class_normal.method(z, y); 58 float r2 = class_optnone.method(y, z); 66 // SECOND TEST: a method loses optnone in the specialization. 70 __attribute__((optnone)) T method(T t, U u) function in class:template_optnone_base 79 int method (int t, U u function in class:template_optnone_base [all...] |
/external/clang/test/Index/ |
complete-type-factors.m | 26 + (void)method:(enum Color)color priority:(enum Priority)priority; 27 - (void)method:(enum Color)color priority:(enum Priority)priority; 31 [a method:Red priority:High]; 32 [A method:Red priority:Low];
|
/external/clang/test/Profile/ |
cxx-class.cpp | 48 void method() { function in class:Simple 67 S.method();
|
/external/clang/test/Sema/ |
ms_wide_predefined_expr.cpp | 17 void method() { function in class:PR13206::A 24 x.method();
|
/external/guava/guava/src/com/google/common/eventbus/ |
SynchronizedEventSubscriber.java | 20 import java.lang.reflect.Method; 23 * Wraps a single-argument subscriber method on a specific object, and ensures 24 * that only one thread may enter the method at a time. 33 * Creates a new SynchronizedEventSubscriber to wrap {@code method} on 36 * @param target object to which the method applies. 37 * @param method subscriber method. 39 public SynchronizedEventSubscriber(Object target, Method method) { 40 super(target, method); [all...] |
/external/guava/guava-testlib/src/com/google/common/testing/ |
ForwardingWrapperTester.java | 33 import java.lang.reflect.Method; 39 * Tester to ensure forwarding wrapper works by delegating calls to the corresponding method 68 * method calls with parameters passed as is, return value returned as is, and exceptions 75 Method[] methods = getMostConcreteMethods(interfaceType); 77 for (Method method : methods) { 81 if (!Modifier.isAbstract(method.getModifiers())) { 86 if (method.getName().equals("equals") 87 && method.getParameterTypes().length == 1 88 && method.getParameterTypes()[0] == Object.class) 179 private final Method method; field in class:ForwardingWrapperTester.InteractionTester [all...] |
/external/junit/src/main/java/org/junit/internal/runners/ |
TestMethod.java | 4 import java.lang.reflect.Method; 21 private final Method method; field in class:TestMethod 24 public TestMethod(Method method, TestClass testClass) { 25 this.method = method; 30 return method.getAnnotation(Ignore.class) != null; 34 Test annotation = method.getAnnotation(Test.class); 43 Test annotation = method.getAnnotation(Test.class) [all...] |