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

<<11121314151617181920>>

  /external/javassist/src/main/javassist/bytecode/annotation/
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/libweave/include/weave/provider/
http_client.h 23 // HttpClient interface has only one method SendRequest(...) to implement.
27 // Implementation of the SendRequest(...) method should make a proper
29 // method - of the supported methods (kGet, kPatch, kPost, kPut) which
41 // example, kGet method should never have data. It is also possible to have
68 enum class Method {
88 virtual void SendRequest(Method method,
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
AddStaticInitTransformer.java 18 import java.lang.reflect.Method;
30 public AddStaticInitTransformer(Method classInit) {
  /external/objenesis/main/src/org/objenesis/instantiator/basic/
ObjectStreamClassInstantiator.java 19 import java.lang.reflect.Method;
25 * Instantiates a class by using reflection to make a call to private method
36 private static Method newInstanceMethod;
  /external/objenesis/main/src/org/objenesis/instantiator/gcj/
GCJInstantiatorBase.java 20 import java.lang.reflect.Method;
26 * Base class for GCJ-based instantiators. It initializes reflection access to method
28 * "this" argument for the method.
33 static Method newObjectMethod = null;
  /external/objenesis/main/src/org/objenesis/instantiator/jrockit/
JRockitLegacyInstantiator.java 16 import java.lang.reflect.Method;
32 private static Method safeAllocObjectMethod = null;
  /external/objenesis/main/src/org/objenesis/instantiator/perc/
PercInstantiator.java 19 import java.lang.reflect.Method;
34 private final Method newInstanceMethod;
  /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...]
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 75 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor)
80 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, AttributeVisitor attributeVisitor)
  /external/proguard/src/proguard/classfile/attribute/annotation/
RuntimeInvisibleTypeAnnotationsAttribute.java 67 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor)
69 attributeVisitor.visitRuntimeInvisibleTypeAnnotationsAttribute(clazz, method, this);
73 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, AttributeVisitor attributeVisitor)
75 attributeVisitor.visitRuntimeInvisibleTypeAnnotationsAttribute(clazz, method, codeAttribute, this);
RuntimeVisibleTypeAnnotationsAttribute.java 67 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor)
69 attributeVisitor.visitRuntimeVisibleTypeAnnotationsAttribute(clazz, method, this);
73 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, AttributeVisitor attributeVisitor)
75 attributeVisitor.visitRuntimeVisibleTypeAnnotationsAttribute(clazz, method, codeAttribute, this);
  /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/classfile/instruction/visitor/
InstructionConstantVisitor.java 55 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
58 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);
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowResultReceiver.java 10 import java.lang.reflect.Method;
21 Method onReceiveResult = ResultReceiver.class.getDeclaredMethod("onReceiveResult", Integer.TYPE, Bundle.class);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
TypeProto.java 34 import org.jf.dexlib2.iface.Method;
49 @Nullable Method getMethodByVtableIndex(int vtableIndex);
50 int findMethodIndexInVtable(@Nonnull MethodReference method);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
ImmutableMethod.java 40 import org.jf.dexlib2.iface.Method;
50 public class ImmutableMethod extends BaseMethodReference implements Method {
91 public static ImmutableMethod of(Method method) {
92 if (method instanceof ImmutableMethod) {
93 return (ImmutableMethod)method;
96 method.getDefiningClass(),
97 method.getName(),
98 method.getParameters(),
99 method.getReturnType()
    [all...]
  /external/testng/src/main/java/org/testng/junit/
JUnit4TestMethod.java 3 import java.lang.reflect.Method;
22 private static Method getMethod(Description desc) {
24 String method = desc.getMethodName(); local
25 // remove [index] from method name in case of parameterized test
26 int idx = method.indexOf('[');
28 method = method.substring(0, idx);
31 return c.getMethod(method);
34 "Method '" + method + "' not found in class '" + c.getName() + "': " + t.getMessage())
    [all...]
JUnitMethodFinder.java 12 import java.lang.reflect.Method;
53 public boolean accept(Method method) {
54 return method.getName().startsWith("test") &&
55 method.getParameterTypes().length == 0;
60 // ppp("FIND TEST METHOD RETURNING ");
72 // same method twice (e.g. setUp) which would lead to double-invocation.
74 // method names in a Set to filter out duplicates.
82 Method[] allMethods = current.getDeclaredMethods();
83 for(Method allMethod : allMethods)
87 Method method = m.getMethod(); local
    [all...]
  /external/testng/src/test/java/test/annotationtransformer/
MyTransformer.java 7 import java.lang.reflect.Method;
17 Constructor testConstructor, Method testMethod) {
  /external/testng/src/test/java/test/dataprovider/
TestInstanceTest.java 8 import java.lang.reflect.Method;
22 public Object[][] dp(Method m, @TestInstance Object instance) {

Completed in 1306 milliseconds

<<11121314151617181920>>