/cts/tools/vm-tests-tf/src/dot/junit/opcodes/shr_long_2addr/d/ |
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/048-dex-new-array/ |
run | 18 dx --debug --dex --positions=none --no-locals --dump-method=Blort.test *.class
|
/dalvik/dx/tests/054-dex-high16/ |
run | 19 --dump-method=Blort.test'*' *.class
|
/dalvik/dx/tests/060-dex-call-static/ |
run | 19 --dump-method=Blort.test Blort.class
|
/dalvik/dx/tests/068-dex-infinite-loop/ |
run | 19 --dump-method=Blort.test'*' Blort.class
|
/dalvik/dx/tests/078-dex-local-variable-table/ |
run | 18 dx --debug --dex --no-optimize --positions=none --dump-method=Blort.test'*' \
|
/dalvik/dx/tests/079-dex-local-variable-renumbering/ |
run | 18 dx --debug --dex --no-optimize --positions=none --dump-method=Blort.test'*' \
|
/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/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/oauth/core/src/main/java/net/oauth/ |
OAuthAccessor.java | 65 * @param method 66 * the HTTP request method. If this is null, use the default 67 * method; that is getProperty("httpMethod") or (if that's null) 71 public OAuthMessage newRequestMessage(String method, String url, 74 if (method == null) { 75 method = (String) this.getProperty("httpMethod"); 76 if (method == null) { 77 method = (String) this.consumer.getProperty("httpMethod"); 78 if (method == null) { 79 method = OAuthMessage.GET [all...] |
/external/proguard/src/proguard/obfuscate/ |
ParameterNameMarker.java | 58 public void visitLocalVariableTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTableAttribute localVariableTableAttribute) 61 hasParameters(clazz, method)) 84 attributeUsageMarker.visitLocalVariableTableAttribute(clazz, method, codeAttribute, localVariableTableAttribute); 90 public void visitLocalVariableTypeTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeTableAttribute localVariableTypeTableAttribute) 93 hasParameters(clazz, method)) 116 attributeUsageMarker.visitLocalVariableTypeTableAttribute(clazz, method, codeAttribute, localVariableTypeTableAttribute); 124 private boolean hasParameters(Clazz clazz, Method method) [all...] |
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowLinkMovementMethod.java | 3 import android.text.method.LinkMovementMethod; 4 import android.text.method.MovementMethod;
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/representer/ |
WrongJavaBean.java | 26 method(); method 29 private void method() { method in class:WrongJavaBean
|