/external/proguard/src/proguard/classfile/ |
Method.java | 26 * Representation of a method from a class. 30 public interface Method extends Member
|
/external/webkit/Source/WebCore/bridge/ |
Bridge.h | 37 class Method { 38 WTF_MAKE_NONCOPYABLE(Method); WTF_MAKE_FAST_ALLOCATED; 40 Method() { } 43 virtual ~Method() { }
|
/external/javassist/src/main/javassist/util/proxy/ |
MethodHandler.java | 18 import java.lang.reflect.Method; 28 * Is called when a method is invoked on a proxy instance associated 29 * with this handler. This method must process that method invocation. 32 * @param thisMethod the overridden method declared in the super 34 * @param proceed the forwarder method for invoking the overridden 35 * method. It is null if the overridden mehtod is 38 * the arguments passed in the method invocation 42 * @return the resulting value of the method invocation. 44 * @throws Throwable if the method invocation fails [all...] |
MethodFilter.java | 18 import java.lang.reflect.Method; 27 * Returns true if the given method is implemented by a handler. 29 boolean isHandled(Method m);
|
/libcore/luni/src/main/java/java/lang/annotation/ |
AnnotationTypeMismatchException.java | 20 import java.lang.reflect.Method; 32 private Method element; 46 public AnnotationTypeMismatchException(Method element, String foundType) { 53 * Returns the method object for the invalid type. 55 * @return a {@link Method} instance. 57 public Method element() {
|
/external/apache-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/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);
|
/dalvik/vm/mterp/common/ |
FindInterface.h | 29 INLINE Method* dvmFindInterfaceMethodInCache(ClassObject* thisClass, 30 u4 methodIdx, const Method* method, DvmDex* methodClassDex) 33 dvmInterpFindInterfaceMethod(thisClass, methodIdx, method, methodClassDex) 35 return (Method*) ATOMIC_CACHE_LOOKUP(methodClassDex->pInterfaceCache,
|
/external/clang/include/clang/Sema/ |
ObjCMethodList.h | 23 ObjCMethodDecl *Method; 27 Method = 0; 31 Method = M;
|
/external/llvm/test/FrontendC++/ |
2004-03-08-ReinterpretCastCopy.cpp | 4 virtual void Method() = 0; 8 virtual void Method() { } 16 fn_type_a f = reinterpret_cast<fn_type_a>(&B::Method);
|
/dalvik/dx/src/com/android/dx/io/ |
ClassData.java | 22 private final Method[] directMethods; 23 private final Method[] virtualMethods; 26 Method[] directMethods, Method[] virtualMethods) { 41 public Method[] getDirectMethods() { 45 public Method[] getVirtualMethods() { 56 public Method[] allMethods() { 57 Method[] result = new Method[directMethods.length + virtualMethods.length]; 81 public static class Method { [all...] |
/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...] |
/dalvik/vm/oo/ |
Class.h | 149 * Update method's "nativeFunc" and "insns". If "insns" is NULL, the 150 * current method->insns value is not changed. 152 void dvmSetNativeFunc(Method* method, DalvikBridgeFunc func, const u2* insns); 155 * Set the method's "registerMap" field. 157 void dvmSetRegisterMap(Method* method, const RegisterMap* pMap); 160 * Make a method's DexCode (which includes the bytecode) read-write or 165 void dvmMakeCodeReadWrite(Method* meth); 166 void dvmMakeCodeReadOnly(Method* meth) [all...] |
/dalvik/vm/analysis/ |
VerifySubs.h | 43 bool dvmComputeCodeWidths(const Method* meth, InsnFlags* insnFlags, 47 bool dvmSetTryFlags(const Method* meth, InsnFlags* insnFlags); 53 /* log verification failure with optional method info */ 54 void dvmLogVerifyFailure(const Method* meth, const char* format, ...) 62 const Method* meth); 65 bool dvmGetBranchOffset(const Method* meth, const InsnFlags* insnFlags, 72 bool dvmWantVerboseVerification(const Method* meth);
|
/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() {
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/ |
AudioManagerCompatWrapper.java | 21 import java.lang.reflect.Method; 24 private static final Method METHOD_isWiredHeadsetOn = CompatUtils.getMethod( 26 private static final Method METHOD_isBluetoothA2dpOn = CompatUtils.getMethod(
|
AccessibilityManagerCompatWrapper.java | 21 import java.lang.reflect.Method; 24 private static final Method METHOD_isTouchExplorationEnabled = CompatUtils.getMethod(
|
/dalvik/vm/mterp/ |
Mterp.h | 52 extern "C" void dvmMterpPrintMethod(Method* method);
|
/dalvik/vm/native/ |
InternalNative.h | 27 DalvikNativeFunc dvmLookupInternalNativeMethod(const Method* method);
|
/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...] |
/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...] |
/libcore/luni/src/test/java/tests/api/java/lang/reflect/ |
GenericMethodsTests.java | 20 import java.lang.reflect.Method; 52 * Tests whether the specified method declares a type parameter T. 53 * @param method the method 55 private void checkTypeParameter(Method method) { 56 TypeVariable<Method> typeParameter = getTypeParameter(method); 58 assertEquals(method, typeParameter.getGenericDeclaration()); 62 * Tests whether the specified method declares a parameter with th 87 Method method = clazz.getMethod("noParamNoReturn"); local 92 Method method = clazz.getMethod("paramNoReturn", Object.class); local 98 Method method = clazz.getMethod("noParamReturn"); local 104 Method method = clazz.getMethod("paramReturn", Object.class); local [all...] |
/external/easymock/src/org/easymock/internal/ |
ILegacyMatcherMethods.java | 18 import java.lang.reflect.Method;
26 void setMatcher(Method method, org.easymock.ArgumentsMatcher matcher);
|