/dalvik/vm/analysis/ |
VerifySubs.cpp | 27 * verification of a particular method. 29 bool dvmWantVerboseVerification(const Method* meth) 45 void dvmLogVerifyFailure(const Method* meth, const char* format, ...) 75 const Method* meth) 83 LOGE("Could not find class '%s', referenced from method %s.%s", 92 bool dvmGetBranchOffset(const Method* meth, const InsnFlags* insnFlags,
|
/dalvik/vm/oo/ |
AccessCheck.h | 29 * Determine whether the "accessFrom" class is allowed to get at "method". 31 bool dvmCheckMethodAccess(const ClassObject* accessFrom, const Method* method);
|
Object.cpp | 206 * of the given method. This returns 0 if they are equal and non-zero if not. 208 static inline int compareMethodHelper(Method* method, const char* methodName, 214 if (strcmp(methodName, method->name) != 0) { 218 proto = &method->prototype; 246 /* ...and through all the method's arguments; success! */ 255 * Get the count of arguments in the given method descriptor string, 365 static Method* findMethodInListByDescriptor(const ClassObject* clazz, 372 LOGW("Bogus method descriptor: %s", descriptor); 387 Method* methods 400 Method* method = &methods[i]; local 436 Method* method = &clazz->virtualMethods[i]; local 444 Method* method = &clazz->directMethods[i]; local [all...] |
/external/chromium/chrome/browser/ui/cocoa/ |
objc_method_swizzle.h | 17 Method GetImplementedInstanceMethod(Class aClass, SEL aSelector);
|
/external/proguard/src/proguard/classfile/visitor/ |
ExceptionCounter.java | 48 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
|
/external/proguard/src/proguard/optimize/ |
ChangedCodePrinter.java | 117 public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAttribute) 119 attributeVisitor.visitDeprecatedAttribute(clazz, method, deprecatedAttribute); 123 public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttribute) 125 attributeVisitor.visitSyntheticAttribute(clazz, method, syntheticAttribute); 129 public void visitSignatureAttribute(Clazz clazz, Method method, SignatureAttribute syntheticAttribute) 131 attributeVisitor.visitSignatureAttribute(clazz, method, syntheticAttribute); 141 public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAttribute [all...] |
/external/proguard/src/proguard/optimize/info/ |
MethodInvocationMarker.java | 46 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} 49 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) 62 // Mark the referenced method, if any. 69 // Mark the referenced method. 87 private static void incrementInvocationCount(Method method) 89 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method); 98 * Returns the number of times the given method was invoked by th [all...] |
SuperInvocationMarker.java | 47 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} 50 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) 60 setInvokesSuperMethods(method); 78 private static void setInvokesSuperMethods(Method method) 80 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method); 88 public static boolean invokesSuperMethods(Method method) [all...] |
ParameterUsageMarker.java | 107 // Is it a native method? 114 // Is it an abstract method? 121 // Is it a non-native, concrete method? 124 // Is the method not static, but synchronized, or can it have 158 // Can the method have other implementations? 161 // All implementations must keep all parameters of this method, 173 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) 176 partialEvaluator.visitCodeAttribute(clazz, method, codeAttribute); 179 codeAttribute.instructionsAccept(clazz, method, this) [all...] |
/external/webkit/Source/WebCore/bridge/jni/ |
JavaMethod.h | 43 class JavaMethod : public Method {
|
/external/webkit/Source/WebCore/bridge/objc/ |
objc_header.h | 37 typedef Method MethodStructPtr;
|
/external/webkit/Source/WebCore/fileapi/ |
FileThreadTask.h | 45 typedef void (T::*Method)(); 48 static PassOwnPtr<FileThreadTaskImpl> create(T* instance, Method method) 50 return adoptPtr(new FileThreadTaskImpl(instance, method)); 54 FileThreadTask0(T* instance, Method method) 56 , m_method(method) 66 Method m_method; 72 typedef void (T::*Method)(MP1); 76 static PassOwnPtr<FileThreadTaskImpl> create(T* instance, Method method, Param1 parameter1 [all...] |
/external/webkit/Source/WebCore/platform/graphics/chromium/cc/ |
CCMainThreadTask.h | 38 typedef void (T::*Method)(); 41 static PassOwnPtr<MainThreadTaskImpl> create(T* instance, Method method) 43 return adoptPtr(new MainThreadTaskImpl(instance, method)); 47 MainThreadTask0(T* instance, Method method) 49 , m_method(method) 59 Method m_method; 65 typedef void (T::*Method)(MP1); 69 static PassOwnPtr<MainThreadTaskImpl> create(T* instance, Method method, Param1 parameter1 [all...] |
CCThreadTask.h | 38 typedef void (T::*Method)(); 41 static PassOwnPtr<CCThreadTaskImpl> create(T* instance, Method method) 43 return adoptPtr(new CCThreadTaskImpl(instance, method)); 47 CCThreadTask0(T* instance, Method method) 49 , m_method(method) 59 Method m_method; 65 typedef void (T::*Method)(MP1); 69 static PassOwnPtr<CCThreadTaskImpl> create(T* instance, Method method, Param1 parameter1 [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/ |
InputConnectionCompatUtils.java | 24 import java.lang.reflect.Method; 33 private static final Method METHOD_InputConnection_commitCorrection = CompatUtils 35 private static final Method METHOD_getSelectedText = CompatUtils 37 private static final Method METHOD_setComposingRegion = CompatUtils 75 // If method not found, there's nothing we can do. It still works but just wont underline
|
/external/proguard/src/proguard/classfile/editor/ |
VariableRemapper.java | 63 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) 69 codeAttribute.instructionsAccept(clazz, method, this); 72 codeAttributeEditor.visitCodeAttribute(clazz, method, codeAttribute); 75 codeAttribute.attributesAccept(clazz, method, this); 79 public void visitLocalVariableTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTableAttribute localVariableTableAttribute) 82 localVariableTableAttribute.localVariablesAccept(clazz, method, codeAttribute, this); 91 public void visitLocalVariableTypeTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeTableAttribute localVariableTypeTableAttribute [all...] |
/external/proguard/src/proguard/optimize/peephole/ |
ReachableCodeMarker.java | 82 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) 101 markCode(clazz, method, codeAttribute, 0); 108 codeAttribute.exceptionsAccept(clazz, method, this); 116 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction) 132 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) 137 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction [all...] |
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/ |
TestDelegates.java | 22 import java.lang.reflect.Method; 36 * {@link LayoutlibDelegate}, and look for a matching method in the delegate (named the same 38 * If the original native method is not static, then we make sure the delegate method also 83 List<Method> checkedDelegateMethods = new ArrayList<Method>(); 86 // with @LayoutlibDelegate, look for a matching method in the delegate class. 87 // The annotation is automatically added by layoutlib_create when it replace a method 89 Method[] originalMethods = originalClass.getDeclaredMethods(); 90 for (Method originalMethod : originalMethods) [all...] |
/libcore/luni/src/test/java/libcore/java/lang/reflect/ |
MethodTest.java | 19 import java.lang.reflect.Method; 25 Method m = String.class.getMethod("charAt", int.class); 60 Method method = MethodTestHelper.class.getMethod("m1", new Class[0]); local 61 Class[] exceptions = method.getExceptionTypes(); 66 exceptions = method.getExceptionTypes(); 73 Method method = MethodTestHelper.class.getMethod("m2", expectedParameters); local 74 Class[] parameters = method.getParameterTypes(); 79 parameters = method.getParameterTypes() 141 Method method = Super.class.getDeclaredMethod("a"); local 166 Method method = anonymous.getClass().getMethod("a"); local 175 Method method = anonymous.getClass().getMethod("a"); local 196 Method method = anonymous.getClass().getDeclaredMethod("a"); local [all...] |
/external/javassist/src/main/javassist/util/proxy/ |
RuntimeSupport.java | 18 import java.lang.reflect.Method; 28 * A method handler that only executes a method. 33 public Object invoke(Object self, Method m, 34 Method proceed, Object[] args) 50 String desc, java.lang.reflect.Method[] methods) 62 * Finds a method with the given name and descriptor. 65 * @throws RuntimeException if the method is not found. 67 public static Method findMethod(Object self, String name, String desc) { 68 Method m = findMethod2(self.getClass(), name, desc) [all...] |
/external/proguard/src/proguard/classfile/attribute/visitor/ |
AttributeNameFilter.java | 123 public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAttribute) 127 deprecatedAttribute.accept(clazz, method, attributeVisitor); 150 public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttribute) 154 syntheticAttribute.accept(clazz, method, attributeVisitor); 177 public void visitSignatureAttribute(Clazz clazz, Method method, SignatureAttribute signatureAttribute) 181 signatureAttribute.accept(clazz, method, attributeVisitor); 195 public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAttribute [all...] |
RequiredAttributeFilter.java | 137 public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAttribute) 141 deprecatedAttribute.accept(clazz, method, optionalAttributeVisitor); 164 public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttribute) 168 syntheticAttribute.accept(clazz, method, optionalAttributeVisitor); 191 public void visitSignatureAttribute(Clazz clazz, Method method, SignatureAttribute signatureAttribute) 195 signatureAttribute.accept(clazz, method, optionalAttributeVisitor); 209 public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAttribute [all...] |
/external/proguard/src/proguard/classfile/util/ |
SimplifiedVisitor.java | 47 throw new UnsupportedOperationException("Method must be overridden in ["+this.getClass().getName()+"] if ever called"); 70 throw new UnsupportedOperationException("Method must be overridden in ["+this.getClass().getName()+"] if ever called"); 120 throw new UnsupportedOperationException("Method must be overridden in ["+this.getClass().getName()+"] if ever called"); 176 * Visits any type of method RefConstant of the given class. 215 throw new UnsupportedOperationException("Method must be overridden in ["+this.getClass().getName()+"] if ever called"); 270 public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAttribute) 272 visitDeprecatedAttribute(clazz, (Member)method, deprecatedAttribute); 297 public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttribute [all...] |
/external/chromium/testing/gmock/include/gmock/ |
gmock-generated-function-mockers.h | 341 // The variable for mocking the given method. 343 #define GMOCK_MOCKER_(arity, constness, Method) \ 344 GTEST_CONCAT_TOKEN_(gmock##constness##arity##_##Method##_, __LINE__) 347 #define GMOCK_METHOD0_(tn, constness, ct, Method, F) \ 348 GMOCK_RESULT_(tn, F) ct Method() constness { \ 352 GMOCK_MOCKER_(0, constness, Method).SetOwnerAndName(this, #Method); \ 353 return GMOCK_MOCKER_(0, constness, Method).Invoke(); \ 356 gmock_##Method() constness { \ 357 GMOCK_MOCKER_(0, constness, Method).RegisterOwner(this); [all...] |
/development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/ |
RemoteControlClientCompat.java | 25 import java.lang.reflect.Method; 44 private static Method sRCCEditMetadataMethod; 45 private static Method sRCCSetPlayStateMethod; 46 private static Method sRCCSetTransportControlFlags; 136 private Method mPutStringMethod; 137 private Method mPutBitmapMethod; 138 private Method mPutLongMethod; 139 private Method mClearMethod; 140 private Method mApplyMethod;
|