HomeSort by relevance Sort by last modified time
    Searched refs:Method (Results 1 - 25 of 490) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/classfile/
Method.java 26 * Representation of a method from a class.
30 public interface Method extends Member
  /external/webkit/WebCore/bridge/
Bridge.h 37 class Method : public Noncopyable {
41 virtual ~Method() { }
  /dalvik/libcore/luni-kernel/src/main/java/java/lang/reflect/
ReflectionAccessImpl.java 37 public Method clone(Method method) {
38 return new Method(method);
45 public Method accessibleClone(Method method) {
46 Method result = new Method(method)
    [all...]
  /dalvik/libcore/luni-kernel/src/main/java/org/apache/harmony/kernel/vm/
ReflectionAccess.java 21 import java.lang.reflect.Method;
31 * Gets a clone of the given method.
33 * @param method non-null; the method to clone
36 public Method clone(Method method);
47 * Gets a clone of the given method, where the clone has
50 * @param method non-null; the method to clon
    [all...]
  /external/webkit/WebKit/chromium/src/
DevToolsRPCJS.h 48 #define TOOLS_RPC_JS_BIND_METHOD0(Method) \
49 boundObj.addProtoFunction(#Method, OCLASS::js##Method);
51 #define TOOLS_RPC_JS_BIND_METHOD1(Method, T1) \
52 boundObj.addProtoFunction(#Method, OCLASS::js##Method);
54 #define TOOLS_RPC_JS_BIND_METHOD2(Method, T1, T2) \
55 boundObj.addProtoFunction(#Method, OCLASS::js##Method);
57 #define TOOLS_RPC_JS_BIND_METHOD3(Method, T1, T2, T3)
    [all...]
DevToolsRPC.h 45 // 1. For each method defined in the marco MyApi will have a
145 // RPC Api method declarations
147 #define TOOLS_RPC_API_METHOD0(Method) \
148 virtual void Method() = 0;
150 #define TOOLS_RPC_API_METHOD1(Method, T1) \
151 virtual void Method(RpcTypeTrait<T1>::ApiType t1) = 0;
153 #define TOOLS_RPC_API_METHOD2(Method, T1, T2) \
154 virtual void Method(RpcTypeTrait<T1>::ApiType t1, \
157 #define TOOLS_RPC_API_METHOD3(Method, T1, T2, T3) \
158 virtual void Method(RpcTypeTrait<T1>::ApiType t1,
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/
Method.java 19 * $Id: Method.java 468654 2006-10-28 07:09:23Z minchau $
34 * OutputPropertiesFactory.getDefaultMethodProperties() method to get
44 public final class Method
49 private Method() {
54 * The output method type for XML documents: <tt>xml</tt>.
59 * The output method type for HTML documents: <tt>html</tt>.
64 * The output method for XHTML documents: <tt>xhtml</tt>.
66 * This method type is not currently supported.
71 * The output method type for text documents: <tt>text</tt>.
76 * The "internal" method, just used when no method is
    [all...]
  /dalvik/libcore/annotation/src/main/java/java/lang/annotation/
AnnotationTypeMismatchException.java 20 import java.lang.reflect.Method;
34 private Method element;
48 public AnnotationTypeMismatchException(Method element, String foundType) {
55 * Returns the method object for the invalid type.
57 * @return a {@link Method} instance.
59 public Method element() {
  /dalvik/vm/interp/
Interp.h 27 void dvmInterpret(Thread* thread, const Method* method, JValue* pResult);
33 * instruction. "method" is the method currently being executed.
35 void dvmThrowVerificationError(const Method* method, int kind, int ref);
47 void dvmAddBreakAddr(Method* method, unsigned int instrOffset);
48 void dvmClearBreakAddr(Method* method, unsigned int instrOffset)
    [all...]
  /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...]
MethodList.java 41 * Get the {@code n}th method.
43 * @param n {@code n >= 0, n < size();} which method
44 * @return {@code non-null;} the method in question
46 public Method get(int n);
Method.java 24 public interface Method
28 * Get the <i>effective</i> method descriptor, which includes, if
31 * @return {@code non-null;} the effective method descriptor
  /dalvik/vm/mterp/common/
FindInterface.h 27 INLINE Method* dvmFindInterfaceMethodInCache(ClassObject* thisClass,
28 u4 methodIdx, const Method* method, DvmDex* methodClassDex)
31 dvmInterpFindInterfaceMethod(thisClass, methodIdx, method, methodClassDex)
33 return (Method*) ATOMIC_CACHE_LOOKUP(methodClassDex->pInterfaceCache,
  /dalvik/vm/analysis/
VerifySubs.h 41 bool dvmComputeCodeWidths(const Method* meth, InsnFlags* insnFlags,
45 bool dvmSetTryFlags(const Method* meth, InsnFlags* insnFlags);
48 bool dvmCheckSwitchTargets(const Method* meth, InsnFlags* insnFlags,
52 bool dvmCheckBranchTarget(const Method* meth, InsnFlags* insnFlags,
59 /* log verification failure with optional method info */
60 void dvmLogVerifyFailure(const Method* meth, const char* format, ...)
68 const Method* meth);
71 bool dvmGetBranchTarget(const Method* meth, InsnFlags* insnFlags,
  /external/proguard/src/proguard/classfile/attribute/preverification/visitor/
VerificationTypeVisitor.java 36 public void visitIntegerType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, IntegerType integerType);
37 public void visitFloatType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FloatType floatType);
38 public void visitLongType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LongType longType);
39 public void visitDoubleType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, DoubleType doubleType);
40 public void visitTopType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, TopType topType)
    [all...]
StackMapFrameVisitor.java 35 public void visitSameZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameZeroFrame sameZeroFrame);
36 public void visitSameOneFrame( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameOneFrame sameOneFrame);
37 public void visitLessZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LessZeroFrame lessZeroFrame);
38 public void visitMoreZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, MoreZeroFrame moreZeroFrame);
39 public void visitFullFrame( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame)
    [all...]
  /dalvik/vm/oo/
Class.h 142 * Update method's "nativeFunc" and "insns" after native method resolution.
144 void dvmSetNativeFunc(const Method* method, DalvikBridgeFunc func,
148 * Set the method's "registerMap" field.
150 void dvmSetRegisterMap(Method* method, const RegisterMap* pMap);
153 * Make a method's DexCode (which includes the bytecode) read-write or
158 void dvmMakeCodeReadWrite(Method* meth);
159 void dvmMakeCodeReadOnly(Method* meth)
    [all...]
  /external/proguard/src/proguard/classfile/instruction/visitor/
InstructionVisitor.java 36 public void visitSimpleInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction);
37 public void visitVariableInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction);
38 public void visitConstantInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction);
39 public void visitBranchInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction);
40 public void visitTableSwitchInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, TableSwitchInstruction tableSwitchInstruction)
    [all...]
  /external/apache-http/src/org/apache/http/util/
ExceptionUtils.java 33 import java.lang.reflect.Method;
45 /** A reference to Throwable's initCause method, or null if it's not there in this JVM */
46 static private final Method INIT_CAUSE_METHOD = getInitCauseMethod();
49 * Returns a <code>Method<code> allowing access to
50 * {@link Throwable#initCause(Throwable) initCause} method of {@link Throwable},
51 * or <code>null</code> if the method
54 * @return A <code>Method<code> for <code>Throwable.initCause</code>, or
57 static private Method getInitCauseMethod() {
  /dalvik/libcore/luni/src/main/java/java/lang/reflect/
InvocationHandler.java 28 * Handles the method which was originally invoked on the proxy instance. A
32 * public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
33 * //do some processing before the method invocation
35 * //invoke the method
36 * Object result = method.invoke(proxy, args);
38 * //do some processing after the method invocation
43 * the proxy instance on which the method was invoked
44 * @param method
45 * the method invoked on the proxy instanc
    [all...]
  /dalvik/vm/native/
InternalNative.h 27 DalvikNativeFunc dvmLookupInternalNativeMethod(const Method* method);
  /external/proguard/src/proguard/classfile/attribute/visitor/
AttributeVisitor.java 48 public void visitDeprecatedAttribute( Clazz clazz, Method method, DeprecatedAttribute deprecatedAttribute);
52 public void visitSyntheticAttribute( Clazz clazz, Method method, SyntheticAttribute syntheticAttribute);
56 public void visitSignatureAttribute( Clazz clazz, Method method, SignatureAttribute signatureAttribute);
64 public void visitExceptionsAttribute( Clazz clazz, Method method, ExceptionsAttribute exceptionsAttribute);
65 public void visitCodeAttribute( Clazz clazz, Method method, CodeAttribute codeAttribute)
    [all...]
  /external/easymock/src/org/easymock/internal/
ILegacyMatcherMethods.java 18 import java.lang.reflect.Method;
26 void setMatcher(Method method, org.easymock.ArgumentsMatcher matcher);
  /external/proguard/src/proguard/evaluation/
InvocationUnit.java 29 * This interface sets up the variables for entering a method,
37 * Sets up the given variables for entering the given method.
40 Method method,
45 * Exits the given method with the given return value.
48 Method method,
54 * field or method reference instruction.
57 Method method,
    [all...]
  /dalvik/libcore/luni/src/test/java/tests/api/java/lang/reflect/
GenericMethodsTests.java 25 import java.lang.reflect.Method;
33 @TestTargetClass(Method.class)
56 method = "getTypeParameters",
64 * Tests whether the specified method declares a type parameter T.
65 * @param method the method
67 private void checkTypeParameter(Method method) {
68 TypeVariable<Method> typeParameter = getTypeParameter(method);
105 Method method = clazz.getMethod("noParamNoReturn"); local
130 Method method = clazz.getMethod("paramNoReturn", Object.class); local
150 Method method = clazz.getMethod("noParamReturn"); local
176 Method method = clazz.getMethod("paramReturn", Object.class); local
    [all...]

Completed in 3736 milliseconds

1 2 3 4 5 6 7 8 91011>>