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

1 2 3 45 6 7 8 91011>>

  /external/webkit/Source/WebCore/platform/graphics/chromium/cc/
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...]
  /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...]
  /dalvik/vm/oo/
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 ALOGW("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/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;
  /external/proguard/src/proguard/optimize/info/
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/chromium/base/
callback_old.h 20 // provides a Run method and is returned by the New* functions. This allows
56 template <class T, typename Method>
59 CallbackStorage(T* obj, Method meth) : obj_(obj), meth_(meth) {
64 Method meth_;
68 // of the method.
110 template <class T, typename Method, typename Params>
111 class CallbackImpl : public CallbackStorage<T, Method>,
114 CallbackImpl(T* obj, Method meth) : CallbackStorage<T, Method>(obj, meth) {
129 typename Callback0::Type* NewCallback(T* object, void (T::*method)()) {
    [all...]
  /dalvik/vm/
Globals.h 320 /* method offsets - Object */
340 /* method offsets - Thread */
351 /* method offsets - ThreadGroup */
358 /* method offsets - ClassLoader */
361 /* direct method pointers - ClassLoader */
362 Method* methJavaLangClassLoader_getSystemClassLoader;
381 /* method pointers - java.lang.ref.ReferenceQueue */
382 Method* methJavaLangRefReferenceQueueAdd;
384 /* method pointers - java.lang.ref.FinalizerReference */
385 Method* methJavaLangRefFinalizerReferenceAdd
    [all...]
  /external/proguard/src/proguard/classfile/instruction/visitor/
MultiInstructionVisitor.java 84 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction)
88 instructionVisitors[index].visitSimpleInstruction(clazz, method, codeAttribute, offset, simpleInstruction);
92 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction)
96 instructionVisitors[index].visitVariableInstruction(clazz, method, codeAttribute, offset, variableInstruction);
100 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction)
104 instructionVisitors[index].visitConstantInstruction(clazz, method, codeAttribute, offset, constantInstruction);
108 public void visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction
    [all...]
  /external/proguard/src/proguard/optimize/evaluation/
StoringInvocationUnit.java 112 generalizeMethodParameterValue((Method)referencedMember,
121 Method method,
126 generalizeMethodReturnValue(method, value);
171 private static void generalizeMethodParameterValue(Method method, int parameterIndex, Value value)
173 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method);
181 public static Value getMethodParameterValue(Method method, int parameterIndex)
183 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method);
    [all...]
  /external/webkit/Source/WebCore/loader/
FormSubmission.h 48 enum Method { GetMethod, PostMethod };
60 Method method() const { return m_method; } function in class:WebCore::FormSubmission::Attributes
79 Method m_method;
94 Method method() const { return m_method; } function in class:WebCore::FormSubmission
111 FormSubmission(Method, const KURL& action, const String& target, const String& contentType, PassRefPtr<FormState>, PassRefPtr<FormData>, const String& boundary, bool lockHistory, PassRefPtr<Event>);
114 Method m_method;
  /external/proguard/src/proguard/classfile/visitor/
ClassCleaner.java 117 public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAttribute)
125 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
129 codeAttribute.exceptionsAccept(clazz, method, this);
130 codeAttribute.attributesAccept(clazz, method, this);
134 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute)
138 stackMapAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
142 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute
    [all...]
  /external/dexmaker/src/test/java/com/google/dexmaker/
DexMakerTest.java 23 import java.lang.reflect.Method;
64 * This is necessary to generate multiple classes in the same test method.
117 Method method = generatedClass.getMethod("call"); local
118 method.invoke(instance);
143 * Method method = null;
147 TypeId<Method> methodType = TypeId.get(Method.class);
149 Local<Method> localMethod = code.newLocal(methodType)
157 Method method = generatedClass.getMethod("call", int.class); local
222 Method method = generatedClass.getMethod("call", generatedClass); local
255 Method method = generatedClass.getMethod("superHashCode"); local
470 Method method = generatedClass.getMethod("call"); local
1069 Method method = getMethod(); local
1094 Method method = getMethod(); local
1319 Method method = getMethod(); local
1400 Method method = getMethod(); local
1517 Method method = getMethod(); local
1679 Method method = generatedClass.getMethod("call"); local
1712 Method method = generatedClass.getMethod("call"); local
1818 Method method = environmentClass.getMethod("getDataDirectory"); local
    [all...]
  /dalvik/tests/044-proxy/src/
Clash.java 19 import java.lang.reflect.Method;
65 public Object invoke(Object proxy, Method method, Object[] args)
Clash2.java 19 import java.lang.reflect.Method;
55 public Object invoke(Object proxy, Method method, Object[] args)
Clash3.java 19 import java.lang.reflect.Method;
70 public Object invoke(Object proxy, Method method, Object[] args)
  /dalvik/vm/native/
java_lang_reflect_Method.cpp 18 * java.lang.reflect.Method
35 Method* meth;
45 * Invoke a static or virtual method via reflection.
58 const Method* meth;
62 * "If the underlying method is static, the class that declared the
63 * method is initialized if it has not already been initialized."
88 /* do the virtual table lookup for the method */
97 * If the method has a return value, "result" will be an object or
109 ALOGD("Method.invoke() on bad class %s failed",
118 * Return the annotations declared for this method
    [all...]
  /external/apache-http/src/org/apache/http/client/utils/
CloneUtils.java 33 import java.lang.reflect.Method;
46 Method m;
  /external/chromium/chrome/browser/ui/cocoa/
test_event_utils.h 23 Method old_selector_impl_;
24 Method new_selector_impl_;
  /external/clang/test/SemaCXX/
vtable-instantiation.cc 58 static GMG* Method() { return &singleton; } // expected-note{{in instantiation of}}
66 GMG<int>::Method(); // expected-note{{in instantiation of}}
  /external/easymock/src/org/easymock/internal/
MockInvocationHandler.java 20 import java.lang.reflect.Method;
32 public Object invoke(Object proxy, Method method, Object[] args)
39 new Invocation(proxy, method, args));
  /external/emma/ant/ant15/com/vladium/emma/ant/
IANTVersion.java 12 import java.lang.reflect.Method;
41 final Method m = FileSet.class.getMethod ("setFile", new Class [] { File.class });

Completed in 1634 milliseconds

1 2 3 45 6 7 8 91011>>