HomeSort by relevance Sort by last modified time
    Searched refs:Method (Results 576 - 600 of 1620) sorted by null

<<21222324252627282930>>

  /external/proguard/src/proguard/optimize/info/
InstanceofClassMarker.java 46 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
49 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction)
InstantiationClassMarker.java 46 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
49 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction)
  /external/proguard/src/proguard/optimize/peephole/
GotoGotoReplacer.java 72 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
75 public void visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction)
109 extraInstructionVisitor.visitBranchInstruction(clazz, method, codeAttribute, offset, branchInstruction);
GotoReturnReplacer.java 72 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
75 public void visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction)
107 extraInstructionVisitor.visitBranchInstruction(clazz, method, codeAttribute, offset, branchInstruction);
NopRemover.java 71 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
74 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction)
85 extraInstructionVisitor.visitSimpleInstruction(clazz, method, codeAttribute, offset, simpleInstruction);
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowHandlerThread.java 11 import java.lang.reflect.Method;
69 Method prepared;
  /external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
ServiceUtils.java 27 import java.lang.reflect.Method;
53 Method startForeground = null;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
AnalyzedMethodUtil.java 37 import org.jf.dexlib2.iface.Method;
44 public static boolean canAccess(@Nonnull TypeProto type, @Nonnull Method virtualMethod, boolean checkPackagePrivate,
PrimitiveProto.java 34 import org.jf.dexlib2.iface.Method;
69 public Method getMethodByVtableIndex(int vtableIndex) {
73 @Override public int findMethodIndexInVtable(@Nonnull MethodReference method) {
UnknownClassProto.java 34 import org.jf.dexlib2.iface.Method;
79 public Method getMethodByVtableIndex(int vtableIndex) {
83 @Override public int findMethodIndexInVtable(@Nonnull MethodReference method) {
84 return classPath.getClass("Ljava/lang/Object;").findMethodIndexInVtable(method);
  /external/smali/smalidea/src/main/java/org/jf/smalidea/dexlib/
SmalideaClassDef.java 48 import org.jf.dexlib2.iface.Method;
173 @Nonnull @Override public Iterable<? extends Method> getDirectMethods() {
187 new Function<PsiMethod, Method>() {
188 @Nullable @Override public Method apply(PsiMethod psiMethod) {
194 @Nonnull @Override public Iterable<? extends Method> getVirtualMethods() {
204 new Function<PsiMethod, Method>() {
205 @Nullable @Override public Method apply(PsiMethod psiMethod) {
211 @Nonnull @Override public Iterable<? extends Method> getMethods() {
  /external/testng/src/main/java/org/testng/internal/
Bsh.java 10 import java.lang.reflect.Method;
50 private void setContext(Interpreter interpreter, Method method, Map<String, String> groups, ITestNGMethod tm) {
52 interpreter.set("method", method);
63 interpreter.unset("method");
InvokeMethodRunnable.java 7 import java.lang.reflect.Method;
10 * A Runnable Method invoker.
52 Method m = m_method.getMethod();
  /external/testng/src/test/java/test/hook/
HookSuccess862Test.java 9 import java.lang.reflect.Method;
15 Method method = testResult.getMethod().getConstructorOrMethod().getMethod(); local
17 Annotation[] annotations = method.getParameterAnnotations()[i];
  /external/testng/src/test/java/test/listeners/
SuiteListener2.java 7 import java.lang.reflect.Method;
25 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) {
30 public void afterInvocation(IInvokedMethod method, ITestResult testResult) {
35 public void transform(ITestAnnotation annotation, Class testClass, Constructor testConstructor, Method testMethod) {
  /frameworks/base/core/java/android/hardware/camera2/dispatch/
HandlerDispatcher.java 23 import java.lang.reflect.Method;
33 * <p>Any exceptions thrown on the handler while trying to invoke a method
49 * @param dispatchTarget the destination whose method calls will be redirected into the handler
60 public Object dispatch(final Method method, final Object[] args) throws Throwable {
65 mDispatchTarget.dispatch(method, args);
72 Log.wtf(TAG, "IllegalAccessException while invoking " + method, e);
75 Log.wtf(TAG, "IllegalArgumentException while invoking " + method, e);
  /frameworks/base/test-runner/src/android/test/
ActivityInstrumentationTestCase2.java 22 import java.lang.reflect.Method;
31 * <li>You can run any test method on the UI thread (see {@link android.test.UiThreadTest}).</li>
80 * For each test method invocation, the Activity will not actually be created until the first
81 * time this method is called.
89 * If your test method is annotated with {@link android.test.UiThreadTest}, then your Activity
90 * will be started automatically just before your test method is run. You still call this
91 * method in order to get the Activity under test.
114 * Call this method before the first call to {@link #getActivity} to inject a customized Intent
121 * If your test method is annotated with {@link android.test.UiThreadTest}, then you must call
124 * <p>The default Intent (if this method is not called) is
185 Method method = getClass().getMethod(getName(), (Class[]) null); local
    [all...]
  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/
AssignableFromTest.java 21 import java.lang.reflect.Method;
54 Method method = aClass.getMethod("testX"); local
55 return new TestMethod(method, aClass);
  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/annotation/
HasAnnotationTest.java 26 import java.lang.reflect.Method;
46 Method method = aClass.getMethod(methodName); local
47 TestMethod testMethod = new TestMethod(method, aClass);
52 @Target({ElementType.TYPE, ElementType.METHOD})
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
BindingAdapterTestBase.java 22 import java.lang.reflect.Method;
30 private Method mSetMethod;
  /frameworks/support/design/src/android/support/design/widget/
DrawableUtils.java 25 import java.lang.reflect.Method;
34 private static Method sSetConstantStateMethod;
  /frameworks/support/v4/api24/android/support/v4/media/session/
MediaSessionCompatApi24.java 25 import java.lang.reflect.Method;
37 Method getCallingPackageMethod = session.getClass().getMethod("getCallingPackage");
  /frameworks/support/v4/kitkat/android/support/v4/app/
NotificationManagerCompatKitKat.java 24 import java.lang.reflect.Method;
37 Method checkOpNoThrowMethod = appOpsClass.getMethod(CHECK_OP_NO_THROW, Integer.TYPE,
  /frameworks/volley/src/main/java/com/android/volley/toolbox/
JsonObjectRequest.java 38 * @param method the HTTP method to use
45 public JsonObjectRequest(int method, String url, JSONObject jsonRequest,
47 super(method, url, (jsonRequest == null) ? null : jsonRequest.toString(), listener,
59 this(jsonRequest == null ? Method.GET : Method.POST, url, jsonRequest,
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
ProxyTest.java 26 import java.lang.reflect.Method;
36 * When multiple interfaces define the same method, the list of thrown
38 * other method:
51 public float method(float _number0, float _number1); method in interface:ProxyTest.Broken1
55 public Object invoke(Object proxy, Method method, Object[] args)
104 public Object invoke(Object proxy, Method method, Object[] args)
122 public Object invoke(Object proxy, Method method, Object[] args
    [all...]

Completed in 1121 milliseconds

<<21222324252627282930>>