HomeSort by relevance Sort by last modified time
    Searched refs:method (Results 151 - 175 of 8284) sorted by null

1 2 3 4 5 67 8 91011>>

  /dalvik/dexgen/src/com/android/dexgen/dex/file/
ParameterAnnotationStruct.java 29 * Association of a method and its parameter annotations.
33 /** {@code non-null;} the method in question */
34 private final CstMethodRef method; field in class:ParameterAnnotationStruct
45 * @param method {@code non-null;} the method in question
48 public ParameterAnnotationStruct(CstMethodRef method,
50 if (method == null) {
51 throw new NullPointerException("method == null");
58 this.method = method;
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
ParameterAnnotationStruct.java 29 * Association of a method and its parameter annotations.
33 /** {@code non-null;} the method in question */
34 private final CstMethodRef method; field in class:ParameterAnnotationStruct
45 * @param method {@code non-null;} the method in question
49 public ParameterAnnotationStruct(CstMethodRef method,
51 if (method == null) {
52 throw new NullPointerException("method == null");
59 this.method = method;
    [all...]
  /external/guava/guava-tests/test/com/google/common/eventbus/
EventSubscriberTest.java 24 import java.lang.reflect.Method;
46 * Checks that a no-frills, no-issues method call is properly executed.
51 Method method = getRecordingMethod(); local
53 EventSubscriber subscriber = new EventSubscriber(this, method);
57 assertTrue("Subscriber must call provided method.", methodCalled);
63 Method method = getExceptionThrowingMethod(); local
64 EventSubscriber subscriber = new EventSubscriber(this, method);
76 Method method = getErrorThrowingMethod() local
108 Method method; local
131 Method method; local
154 Method method; local
    [all...]
  /external/javassist/src/test/test/javassist/bytecode/analysis/
AnalyzerTest.java 31 CtMethod method = clazz.getDeclaredMethod("commonSuperArray"); local
32 verifyArrayLoad(clazz, method, "java.lang.Number");
38 CtMethod method = clazz.getDeclaredMethod("commonInterfaceArray"); local
39 verifyArrayLoad(clazz, method, "java.io.Serializable");
43 CtMethod method = ClassPool.getDefault().getMethod( local
45 verifyReturn(method, "java.io.Serializable");
47 method = ClassPool.getDefault().getMethod(
49 verifyReturn(method, "java.io.Serializable");
51 method = ClassPool.getDefault().getMethod(
53 verifyReturn(method, getClass().getName() + "$Dummy$A")
57 CtMethod method = ClassPool.getDefault().getMethod( local
67 CtMethod method = ClassPool.getDefault().getMethod( local
149 CtMethod method = generateDeadCode(ClassPool.getDefault()); local
159 CtMethod method = generateInvalidCode(ClassPool.getDefault()); local
171 CtMethod method = generateCodeFalloff(ClassPool.getDefault()); local
183 CtMethod method = generateJsrMerge(ClassPool.getDefault()); local
190 CtMethod method = generateJsrMerge2(ClassPool.getDefault()); local
199 CtMethod method = new CtMethod(stringClass, "foo", new CtClass[0], clazz); local
219 CtMethod method = new CtMethod(stringClass, "foo", new CtClass[0], clazz); local
236 CtMethod method = new CtMethod(stringClass, "foo", new CtClass[0], clazz); local
251 CtMethod method = new CtMethod(stringClass, "foo", new CtClass[0], clazz); local
275 CtMethod method = new CtMethod(stringClass, "foo", new CtClass[0], clazz); local
    [all...]
  /external/proguard/src/proguard/optimize/info/
AccessMethodMarker.java 45 private Method invokingMethod;
50 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
53 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction)
55 invokingMethod = method;
76 // Check the bootstrap method.
83 // Check the method reference.
142 private static void setAccessesPrivateCode(Method method)
    [all...]
  /external/proguard/src/proguard/optimize/
ChangedCodePrinter.java 122 public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAttribute)
124 attributeVisitor.visitDeprecatedAttribute(clazz, method, deprecatedAttribute);
128 public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttribute)
130 attributeVisitor.visitSyntheticAttribute(clazz, method, syntheticAttribute);
134 public void visitSignatureAttribute(Clazz clazz, Method method, SignatureAttribute syntheticAttribute)
136 attributeVisitor.visitSignatureAttribute(clazz, method, syntheticAttribute);
146 public void visitMethodParametersAttribute(Clazz clazz, Method method, MethodParametersAttribute exceptionsAttribute
    [all...]
  /system/tools/hidl/
generateJava.cpp 21 #include "Method.h"
266 for (const auto &method : iface->methods()) {
267 if (method->isHiddenFromJava()) {
271 const bool returnsValue = !method->results().empty();
272 const bool needsCallback = method->results().size() > 1;
276 << method->name()
282 method->emitJavaResultSignature(out);
290 out << method->results()[0]->type().getJavaType();
296 << method->name()
298 method->emitJavaArgSignature(out)
348 const Method *method = tuple.method(); local
557 const Method *method = tuple.method(); local
    [all...]
  /art/runtime/
runtime-inl.h 40 inline QuickMethodFrameInfo Runtime::GetRuntimeMethodFrameInfo(ArtMethod* method) {
41 DCHECK(method != nullptr);
42 // Cannot be imt-conflict-method or resolution-method.
43 DCHECK_NE(method, GetImtConflictMethod());
44 DCHECK_NE(method, GetResolutionMethod());
46 if (method == GetCalleeSaveMethodUnchecked(Runtime::kSaveRefsAndArgs)) {
48 } else if (method == GetCalleeSaveMethodUnchecked(Runtime::kSaveAllCalleeSaves)) {
50 } else if (method == GetCalleeSaveMethodUnchecked(Runtime::kSaveRefsOnly)) {
53 DCHECK_EQ(method, GetCalleeSaveMethodUnchecked(Runtime::kSaveEverything))
    [all...]
  /art/test/472-unreachable-if-regression/smali/
Test.smali 20 .method public static UnreachableIf()V
27 .end method
29 .method public static UnreachablePackedSwitch()V
46 .end method
  /art/test/501-regression-packed-switch/smali/
Test.smali 20 .method public static EmptyPackedSwitch(I)I
29 .end method
31 .method public static PackedSwitchAfterData(I)I
54 .end method
  /art/test/954-invoke-polymorphic-verifier/smali/
MethodHandleToString.smali 21 .method public constructor <init>()V
29 .end method
31 .method public static getMethodHandle()Ljava/lang/invoke/MethodHandle;
35 .end method
  /build/make/tools/droiddoc/test/stubs/src/com/android/stubs/a/
A.java 30 public void method() { method in class:A
35 int method() { method in class:A.Inner
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/if_eq/d/
T_if_eq_1.d 6 .method public <init>()V
11 .end method
13 .method public run(II)I
24 .end method
T_if_eq_10.d 6 .method public <init>()V
11 .end method
13 .method public run(II)Z
23 .end method
T_if_eq_11.d 6 .method public <init>()V
11 .end method
13 .method public run(Ljava/lang/String;Ljava/lang/String;)V
26 .end method
T_if_eq_12.d 6 .method public <init>()V
11 .end method
13 .method public run(II)I
24 .end method
T_if_eq_2.d 6 .method public <init>()V
11 .end method
13 .method public run(Ljava/lang/String;Ljava/lang/String;)I
24 .end method
T_if_eq_4.d 6 .method public <init>()V
11 .end method
13 .method public run(FI)I
24 .end method
T_if_eq_5.d 6 .method public <init>()V
11 .end method
13 .method public run(II)I
24 .end method
T_if_eq_7.d 6 .method public <init>()V
11 .end method
13 .method public run(ID)I
24 .end method
T_if_eq_8.d 6 .method public <init>()V
11 .end method
13 .method public run(JI)I
24 .end method
T_if_eq_9.d 6 .method public <init>()V
11 .end method
13 .method public run(ILjava/lang/String;)I
24 .end method
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/if_eqz/d/
T_if_eqz_1.d 6 .method public <init>()V
11 .end method
13 .method public run(I)I
23 .end method
T_if_eqz_10.d 6 .method public <init>()V
11 .end method
13 .method public run(I)Z
24 .end method
T_if_eqz_11.d 6 .method public <init>()V
11 .end method
13 .method public run(I)Z
23 .end method

Completed in 194 milliseconds

1 2 3 4 5 67 8 91011>>