HomeSort by relevance Sort by last modified time
    Searched refs:Method (Results 126 - 150 of 778) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/guava/guava-testlib/src/com/google/common/collect/testing/
Platform.java 19 import java.lang.reflect.Method;
34 * <p>This method always returns {@code true} in GWT.
44 // Class.cast is not supported in GWT. This method is a no-op in GWT.
70 static Method getMethod(Class<?> clazz, String name) {
  /external/javassist/src/main/javassist/bytecode/annotation/
BooleanMemberValue.java 20 import java.lang.reflect.Method;
60 Object getValue(ClassLoader cl, ClassPool cp, Method m) {
ByteMemberValue.java 20 import java.lang.reflect.Method;
60 Object getValue(ClassLoader cl, ClassPool cp, Method m) {
CharMemberValue.java 21 import java.lang.reflect.Method;
61 Object getValue(ClassLoader cl, ClassPool cp, Method m) {
DoubleMemberValue.java 21 import java.lang.reflect.Method;
62 Object getValue(ClassLoader cl, ClassPool cp, Method m) {
FloatMemberValue.java 21 import java.lang.reflect.Method;
62 Object getValue(ClassLoader cl, ClassPool cp, Method m) {
IntegerMemberValue.java 21 import java.lang.reflect.Method;
67 Object getValue(ClassLoader cl, ClassPool cp, Method m) {
LongMemberValue.java 21 import java.lang.reflect.Method;
61 Object getValue(ClassLoader cl, ClassPool cp, Method m) {
ShortMemberValue.java 21 import java.lang.reflect.Method;
61 Object getValue(ClassLoader cl, ClassPool cp, Method m) {
StringMemberValue.java 21 import java.lang.reflect.Method;
61 Object getValue(ClassLoader cl, ClassPool cp, Method m) {
  /external/junit/src/org/junit/internal/runners/
SuiteMethod.java 4 import java.lang.reflect.Method;
11 * method). For example:
27 Method suiteMethod= null;
34 suite= (Test) suiteMethod.invoke(null); // static method
  /external/proguard/src/proguard/classfile/attribute/
CodeAttribute.java 99 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor)
101 attributeVisitor.visitCodeAttribute(clazz, method, this);
108 public void instructionsAccept(Clazz clazz, Method method, InstructionVisitor instructionVisitor)
110 instructionsAccept(clazz, method, 0, u4codeLength, instructionVisitor);
118 public void instructionAccept(Clazz clazz, Method method, int offset, InstructionVisitor instructionVisitor)
121 instruction.accept(clazz, method, this, offset, instructionVisitor);
129 public void instructionsAccept(Clazz clazz, Method method, int startOffset, int endOffset, InstructionVisitor instructionVisitor
    [all...]
LineNumberTableAttribute.java 82 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, AttributeVisitor attributeVisitor)
84 attributeVisitor.visitLineNumberTableAttribute(clazz, method, codeAttribute, this);
91 public void lineNumbersAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, LineNumberInfoVisitor lineNumberInfoVisitor)
97 lineNumberInfoVisitor.visitLineNumberInfo(clazz, method, codeAttribute, lineNumberTable[index]);
LocalVariableTableAttribute.java 61 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, AttributeVisitor attributeVisitor)
63 attributeVisitor.visitLocalVariableTableAttribute(clazz, method, codeAttribute, this);
70 public void localVariablesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableInfoVisitor localVariableInfoVisitor)
76 localVariableInfoVisitor.visitLocalVariableInfo(clazz, method, codeAttribute, localVariableTable[index]);
LocalVariableTypeTableAttribute.java 61 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, AttributeVisitor attributeVisitor)
63 attributeVisitor.visitLocalVariableTypeTableAttribute(clazz, method, codeAttribute, this);
70 public void localVariablesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeInfoVisitor localVariableTypeInfoVisitor)
76 localVariableTypeInfoVisitor.visitLocalVariableTypeInfo(clazz, method, codeAttribute, localVariableTypeTable[index]);
UnknownAttribute.java 73 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor)
78 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, AttributeVisitor attributeVisitor)
  /external/proguard/src/proguard/classfile/attribute/preverification/
StackMapAttribute.java 71 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, AttributeVisitor attributeVisitor)
73 attributeVisitor.visitStackMapAttribute(clazz, method, codeAttribute, this);
80 public void stackMapFramesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapFrameVisitor stackMapFrameVisitor)
88 stackMapFrameVisitor.visitFullFrame(clazz, method, codeAttribute, stackMapFrame.getOffsetDelta(), stackMapFrame);
  /external/proguard/src/proguard/classfile/editor/
InstructionAdder.java 58 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction)
65 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction)
  /external/proguard/src/proguard/optimize/info/
NoSideEffectMethodMarker.java 66 private static void markNoSideEffects(Method method)
68 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method);
75 MethodLinker.lastMember(method).setVisitorInfo(KEPT_BUT_NO_SIDE_EFFECTS);
80 public static boolean hasNoSideEffects(Method method)
82 if (MethodLinker.lastVisitorAccepter(method).getVisitorInfo() == KEPT_BUT_NO_SIDE_EFFECTS)
87 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method);
SideEffectInstructionChecker.java 59 public boolean hasSideEffects(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction)
63 instruction.accept(clazz, method, codeAttribute, offset, this);
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)
105 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction)
118 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction
    [all...]
  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/annotation/
HasClassAnnotationTest.java 22 import java.lang.reflect.Method;
39 Method method = aClass.getMethod("testSomeTest"); local
41 TestMethod testMethod = new TestMethod(method, aClass);
HasMethodAnnotationTest.java 23 import java.lang.reflect.Method;
42 Method method = aClass.getMethod(methodName); local
43 TestMethod testMethod = new TestMethod(method, aClass);
  /frameworks/ex/variablespeed/tests/src/com/android/ex/variablespeed/
DynamicProxy.java 21 import java.lang.reflect.Method;
25 * Contains a utility method for adapting a given interface against a real implementation.
34 * proxy object implementing that interface, which will forward all method calls made on the
50 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
53 .getMethod(method.getName(), method.getParameterTypes())
  /libcore/luni/src/main/java/org/xml/sax/helpers/
NewInstance.java 11 import java.lang.reflect.Method;
23 * <p>This class contains a static method for creating an instance of a
60 Method m = null;
  /dalvik/vm/
JniInternal.h 63 * This is part of Method.jniArgInfo, and must fit in 3 bits.
86 * Pop the JNI local stack when we return from a native method. "saveArea"
87 * points to the StackSaveArea for the method we're leaving.
107 const Method* method, Thread* self);
109 const Method* method, Thread* self);
112 * Configure "method" to use the JNI bridge to call "func".
114 void dvmUseJNIBridge(Method* method, void* func)
    [all...]

Completed in 1121 milliseconds

1 2 3 4 56 7 8 91011>>