HomeSort by relevance Sort by last modified time
    Searched refs:Method (Results 426 - 450 of 680) sorted by null

<<11121314151617181920>>

  /dalvik/vm/
Profile.cpp 18 * Android's method call profiling goodies.
56 * u4 method ID | method action
61 * u4 method ID | method action
66 * u4 method ID | method action
179 * Initialize "dmtrace" method profiling.
198 * we can put interpreted method information. This allows interpreted
305 Method* meth
484 Method* method; local
    [all...]
Jni.cpp 54 when the native method returns into the VM, or global, which are held
68 The most common mode of operation is for a method to create zero or
172 const Method* meth = dvmGetCurrentJNIMethod();
717 static void dumpMethods(Method* methods, size_t methodCount, const char* name) {
720 Method* method = &methods[i]; local
721 if (strcmp(name, method->name) == 0) {
722 char* desc = dexProtoCopyMethodDescriptor(&method->prototype);
723 LOGE("Candidate: %s.%s:%s", method->clazz->descriptor, name, desc);
730 LOGE("ERROR: couldn't find native method");
755 Method* method = dvmFindDirectMethodByDescriptor(clazz, methodName, signature); local
1338 Object* method = dvmDecodeIndirectRef(env, jmethod); local
    [all...]
  /external/chromium/chrome/browser/search_engines/
template_url_parser.cc 50 static const char kParamMethodAttribute[] = "method";
90 enum Method {
193 void set_method(Method method) { method_ = method; }
194 Method method() { return method_; } function in class:__anon2933::ParsingContext
196 void set_suggestion_method(Method method) { suggestion_method_ = method; }
    [all...]
  /external/proguard/src/proguard/optimize/evaluation/
EvaluationSimplifier.java 89 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
93 // method.getName(clazz).equals("abc");
96 // Catch any unexpected exceptions from the actual visiting method.
100 visitCodeAttribute0(clazz, method, codeAttribute);
106 System.err.println(" Method = ["+method.getName(clazz)+method.getDescriptor(clazz)+"]");
108 System.err.println("Not optimizing this method");
112 method.accept(clazz, new ClassPrinter())
    [all...]
EvaluationShrinker.java 108 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
112 // method.getName(clazz).equals("abc");
115 // Catch any unexpected exceptions from the actual visiting method.
119 visitCodeAttribute0(clazz, method, codeAttribute);
125 System.err.println(" Method = ["+method.getName(clazz)+method.getDescriptor(clazz)+"]");
127 System.err.println("Not optimizing this method");
131 method.accept(clazz, new ClassPrinter())
    [all...]
PartialEvaluator.java 169 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
173 // method.getName(clazz).equals("abc");
176 // Catch any unexpected exceptions from the actual visiting method.
180 visitCodeAttribute0(clazz, method, codeAttribute);
186 System.err.println(" Method = ["+method.getName(clazz)+method.getDescriptor(clazz)+"]");
191 method.accept(clazz, new ClassPrinter());
199 public void visitCodeAttribute0(Clazz clazz, Method method, CodeAttribute codeAttribute
    [all...]
  /dalvik/vm/compiler/
Frontend.cpp 63 static inline bool findBlockBoundary(const Method *caller, MIR *insn,
66 const Method **callee)
92 const Method *calleeMethod =
105 const Method *calleeMethod =
117 const Method *calleeMethod =
130 const Method *calleeMethod =
203 return (int) m1->method - (int) m2->method;
207 * Analyze the body of the method to collect high-level information regarding
209 * - is empty method
397 const Method *method = ssaPtr->method; local
640 const Method *method = cUnit->method; local
1070 const Method *method = cUnit->method; local
    [all...]
  /external/javassist/src/main/javassist/util/proxy/
ProxyFactory.java 20 import java.lang.reflect.Method;
41 * forwarded and then <code>invoke()</code> is called on the method handler
43 * the interfaces are also forwarded to the method handler.
51 * public boolean isHandled(Method m) {
58 * public Object invoke(Object self, Method m, Method proceed,
61 * return proceed.invoke(self, args); // execute the original method.
68 * <p>Then, the following method call will be forwarded to MethodHandler
69 * <code>mi</code> and prints a message before executing the originally called method
77 * the helper method <code>create</code>, which generates a proxy class, instantiate
    [all...]
  /external/clang/lib/Sema/
SemaCodeComplete.cpp 156 /// \brief If we are in an instance method definition, the @implementation
173 // If this is an Objective-C instance method definition, dig out the
181 if (ObjCMethodDecl *Method = SemaRef.getCurMethodDecl())
182 if (Method->isInstanceMethod())
183 if (ObjCInterfaceDecl *Interface = Method->getClassInterface())
227 /// When an Objective-C method declaration result is added, and that
228 /// method's selector matches this preferred selector, we give that method
515 // NOTE: Unless it's an Objective-C property, method, or ivar, where
557 // There is no way to qualify a name declared in a function or method
    [all...]
  /dalvik/vm/reflect/
Annotation.cpp 25 * such as Method and Annotation. Another source of pain comes from the
217 * An annotation in "clazz" refers to a method by index. This just gives
218 * us the name of the class and the name and signature of the method. We
219 * need to find the method's class, and then find the method within that
220 * class. If the method has been resolved before, we can just use the
223 * Normally we do this as part of method invocation in the interpreter, which
225 * to initialize the class because it's a static method, etc. We don't have
228 * Returns NULL if the method was not found (exception may be pending).
230 static Method* resolveAmbiguousMethod(const ClassObject* referrer, u4 methodIdx
    [all...]
  /external/webkit/Source/WebKit/mac/Carbon/
HIViewAdapter.m 63 Method setNeedsDisplayMethod = class_getInstanceMethod(objc_getClass("NSView"), @selector(setNeedsDisplay:));
69 Method setNeedsDisplayInRectMethod = class_getInstanceMethod(objc_getClass("NSView"), @selector(setNeedsDisplayInRect:));
75 Method nextValidKeyViewMethod = class_getInstanceMethod(objc_getClass("NSView"), @selector(nextValidKeyView));
  /frameworks/base/tools/aidl/
AST.cpp 639 Method::Method()
648 Method::~Method()
653 Method::GatherTypes(set<Type*>* types) const
673 Method::Write(FILE* to)
  /dalvik/dx/src/com/android/dx/command/dump/
BlockDumper.java 31 import com.android.dx.cf.iface.Method;
65 /** whether this is the first method being dumped */
144 * @param name method name
145 * @return true if this method should be dumped
148 return args.method == null || args.method.equals(name);
156 // It's a field, not a method
164 // Reset the dump cursor to the start of the method.
175 parsed(bytes, offset, 0, "method " + name + " " + descriptor);
183 if (!(member instanceof Method)) {
    [all...]
  /external/android-mock/tests/com/google/android/testing/mocking/
ClassTypeTests.java 28 import java.lang.reflect.Method;
103 for (CtMethod method : methods) {
104 methodNames.add(method.getName());
109 private List<String> getMethodNames(Method[] methods, String[] exclusions) {
111 for (Method method : methods) {
112 if (!Arrays.asList(exclusions).contains(method.getName())) {
113 methodNames.add(method.getName());
  /external/proguard/src/proguard/classfile/util/
DynamicClassReferenceInitializer.java 241 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction)
244 instruction.accept(clazz, method, codeAttribute, offset,
259 instruction.accept(clazz, method, codeAttribute, offset,
270 instruction.accept(clazz, method, codeAttribute, offset,
282 instruction.accept(clazz, method, codeAttribute, offset,
331 * Checks whether the referenced method is a .class method.
337 // Do the method's class and type match?
343 // Does the method's name match one of the special names
    [all...]
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
VCardVerifier.java 40 import java.lang.reflect.Method;
230 * Errors around InputStream must be handled outside this method.
327 private Method getMockGetEntityIteratorMethod()
345 Method mockGetEntityIteratorMethod = null;
  /cts/tools/utils/
CollectAllTests.java 34 import java.lang.reflect.Method;
345 Method testMethod = testClass.getMethod(testName, (Class[])null);
380 Method[] testMethods = testClass.getDeclaredMethods();
381 for (Method testMethod : testMethods) {
  /dalvik/tests/046-reflect/src/
Main.java 11 void printMethodInfo(Method meth) {
15 System.out.println("Method name is " + meth.getName());
60 Method meth = null;
94 System.out.println("Calling no-arg void-return method");
98 /* try invoking a method that throws an exception */
308 Method m;
343 Method[] methods;
  /dalvik/vm/interp/
Jit.h 45 const Method *method; member in struct:ShadowSpace
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
ConsoleTest.java 30 import java.lang.reflect.Method;
  /external/javassist/src/main/javassist/
ClassPool.java 23 import java.lang.reflect.Method;
71 private static java.lang.reflect.Method defineClass1, defineClass2;
197 * The returned object is always identical since this method is
206 * <p>When this method is called for the first time, the default
271 * This method is periodically invoked so that memory
328 * For example, a package name can be recorded by this method.
331 * if the given name is an invalid name recorded by this method.
356 * Undocumented method. Do not use; internal-use only.
370 * This method is useful if you want to generate a new class as a copy
401 * This method is invoked by CtClassType.setName(). It removes
1069 java.lang.reflect.Method method; local
    [all...]
  /external/proguard/src/proguard/obfuscate/
MappingKeeper.java 148 // Find the method.
152 Method method = clazz.findMethod(methodName, descriptor); local
153 if (method != null)
159 String currentNewName = MemberObfuscator.newMemberName(method);
166 ": method '" + methodReturnType + " " + methodName + ClassConstants.EXTERNAL_METHOD_ARGUMENTS_OPEN + methodArguments + ClassConstants.EXTERNAL_METHOD_ARGUMENTS_CLOSE +
173 MemberObfuscator.setFixedNewMemberName(method, newMethodName);
  /external/webkit/Source/WebCore/bridge/objc/
objc_runtime.h 56 class ObjcMethod : public Method {
  /frameworks/base/core/java/com/android/internal/os/
ZygoteInit.java 43 import java.lang.reflect.Method;
103 * Invokes a static "main(argv[]) method on class "className".
124 Method m;
138 "Main method is not public and static on " + className);
143 * by invoking the exception's run() method. This arrangement
765 * Helper exception class which holds a method and arguments and
771 /** method to call */
772 private final Method mMethod;
777 public MethodAndArgsCaller(Method method, String[] args)
    [all...]
  /packages/apps/Email/src/com/android/email/mail/
Sender.java 38 * Because this method will be called through reflection, it can not be protected.
51 // and invoke "newInstance" class method and instantiate sender object.
52 java.lang.reflect.Method m =
57 "exception %s invoking method %s#newInstance(Account, Context) for %s",
123 * @return Activity class that has class method actionEditOutgoingSettings().

Completed in 722 milliseconds

<<11121314151617181920>>