/external/javassist/src/main/javassist/bytecode/analysis/ |
FramePrinter.java | 33 * instructions of a method. 64 private String getMethodString(CtMethod method) { 66 return Modifier.toString(method.getModifiers()) + " " 67 + method.getReturnType().getName() + " " + method.getName() 68 + Descriptor.toString(method.getSignature()) + ";"; 75 * Prints the instructions and the frame states of the given method. 77 public void print(CtMethod method) { 78 stream.println("\n" + getMethodString(method)); 79 MethodInfo info = method.getMethodInfo2() [all...] |
/art/runtime/entrypoints/quick/ |
quick_instrumentation_entrypoints.cc | 26 extern "C" const void* artInstrumentationMethodEntryFromCode(mirror::ArtMethod* method, 34 const void* result = instrumentation->GetQuickCodeFor(method); 36 instrumentation->PushInstrumentationStackFrame(self, method->IsStatic() ? NULL : this_object, 37 method, lr, interpreter_entry); 38 CHECK(result != NULL) << PrettyMethod(method);
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_direct/d/ |
T_invoke_direct_26.d | 18 .method public abstract test()V 19 .end method 28 .method public <init>()V 33 .end method 35 .method public test()V 37 .end method 46 .method public <init>()V 51 .end method 53 .method public run()V 58 .end method [all...] |
T_invoke_direct_10.d | 20 .method public <init>()V 25 .end method 27 .method private getInt()I 32 .end method 34 .method public run()I 41 .end method
|
T_invoke_direct_11.d | 20 .method public <init>()V 25 .end method 27 .method public run()I 33 .end method 36 .method private static toInt()I 40 .end method
|
T_invoke_direct_15.d | 20 .method public <init>()V 25 .end method 27 .method private getInt()I 32 .end method 34 .method public run()I 40 .end method
|
T_invoke_direct_16.d | 20 .method public <init>()V 24 .end method 26 .method public run()I 33 .end method 36 .method private toInt()I 40 .end method
|
T_invoke_direct_2.d | 20 .method public <init>()V 25 .end method 27 .method private getInt()I 32 .end method 34 .method public run()I 40 .end method
|
T_invoke_direct_25.d | 20 .method public <init>()V 25 .end method 27 .method private test()V 29 .end method 31 .method public run()I 40 .end method
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_direct_range/d/ |
T_invoke_direct_range_26.d | 18 .method public abstract test()V 19 .end method 28 .method public <init>()V 33 .end method 35 .method public test()V 37 .end method 46 .method public <init>()V 51 .end method 53 .method public run()V 58 .end method [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_static/d/ |
T_invoke_static_24.d | 18 .method public abstract test()V 19 .end method 28 .method public <init>()V 33 .end method 35 .method public test()V 37 .end method 46 .method public <init>()V 51 .end method 53 .method public run()V 58 .end method [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_static_range/d/ |
T_invoke_static_range_24.d | 18 .method public abstract test()V 19 .end method 28 .method public <init>()V 33 .end method 35 .method public test()V 37 .end method 46 .method public <init>()V 51 .end method 53 .method public run()V 58 .end method [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_super/d/ |
T_invoke_super_24.d | 18 .method public abstract test()V 19 .end method 28 .method public <init>()V 33 .end method 35 .method public test()V 37 .end method 46 .method public <init>()V 51 .end method 53 .method public run()V 58 .end method [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_super_range/d/ |
T_invoke_super_range_24.d | 18 .method public abstract test()V 19 .end method 28 .method public <init>()V 33 .end method 35 .method public test()V 37 .end method 46 .method public <init>()V 51 .end method 53 .method public run()V 58 .end method [all...] |
/dalvik/vm/analysis/ |
Optimize.cpp | 30 * Virtual/direct calls to "method" are replaced with an execute-inline 34 Method* method; member in struct:InlineSub 40 static void optimizeMethod(Method* method, bool essentialOnly); 41 static void rewriteInstField(Method* method, u2* insns, Opcode quickOpc, 43 static void rewriteStaticField(Method* method, u2* insns, Opcode volatileOpc); 44 static void rewriteVirtualInvoke(Method* method, u2* insns, Opcode newOpc) 76 Method* method = dvmFindInlinableMethod(ops[i].classDescriptor, local [all...] |
/external/chromium_org/chrome/test/chromedriver/chrome/ |
performance_logger.cc | 24 bool ShouldLogEvent(const std::string& method) { 26 if (StartsWithASCII(method, kDomains[i_domain], true /* case_sensitive */)) 49 const std::string& method, 51 if (!ShouldLogEvent(method)) 56 log_message_dict.SetString("message.method", method);
|
/external/lzma/CPP/7zip/Common/ |
MethodProps.cpp | 14 HRESULT SetMethodProperties(const CMethod &method, const UInt64 *inSizeForReduce, IUnknown *coder)
18 if (inSizeForReduce != 0 && (method.Id == k_LZMA || method.Id == k_LZMA2))
41 int numProps = method.Props.Size();
58 const CProp &prop = method.Props[i];
|
/external/proguard/src/proguard/preverify/ |
CodeSubroutineInliner.java | 65 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) 69 // method.getName(clazz).equals("abc"); 72 // Catch any unexpected exceptions from the actual visiting method. 76 visitCodeAttribute0(clazz, method, codeAttribute); 82 System.err.println(" Method = ["+method.getName(clazz)+method.getDescriptor(clazz)+"]"); 87 method.accept(clazz, new ClassPrinter()); 95 public void visitCodeAttribute0(Clazz clazz, Method method, CodeAttribute codeAttribute [all...] |
/frameworks/base/core/java/com/android/internal/view/ |
InputBindResult.java | 24 * Bundle of information returned by input method manager about a successful 25 * binding to an input method. 31 * The input method service. 33 public final IInputMethodSession method; field in class:InputBindResult 41 * The ID for this input method, as found in InputMethodInfo; null if 42 * no input method will be bound. 53 method = _method; 60 method = IInputMethodSession.Stub.asInterface(source.readStrongBinder()); 72 return "InputBindResult{" + method + " " + id 84 dest.writeStrongInterface(method); [all...] |
/dalvik/tools/dmtracedump/ |
TraceDump.c | 97 "<th>Method</th>\n" 108 "<th>Method</th>\n" 140 struct MethodEntry *method; member in struct:TimedMethod 159 * Entry from the method list. 177 int graphState; /* used when graphing to see if this method has been visited before */ 196 MethodEntry *method; member in struct:StackEntry 300 void initMethodEntry(MethodEntry *method, unsigned int methodId, 305 method->methodId = methodId; 306 method->className = className; 307 method->methodName = methodName 1202 MethodEntry* method; local 1497 MethodEntry *method = pStack->calls[ii].method; local 1534 MethodEntry* method; local 1695 MethodEntry* method; local 1896 MethodEntry* method; local 2132 MethodEntry* method; local 2297 MethodEntry* method; local 2550 MethodEntry* method = methods[i]; local [all...] |
/dalvik/vm/ |
AllocTracker.cpp | 63 /* stack trace elements; unused entries have method==NULL */ 65 const Method* method; /* which method we're executing in */ member in struct:AllocRecord::__anon832 177 const Method* method = saveArea->method; local 180 pRec->stackElem[stackDepth].method = method; 181 if (dvmIsNativeMethod(method)) { 363 const Method* method = pRec->stackElem[i].method; local 437 const Method* method = pRec->stackElem[i].method; local 649 const Method* method = pRec->stackElem[i].method; local [all...] |
/art/runtime/ |
instrumentation.h | 42 // the events they are listening for. The call backs supply the thread, method and dex_pc the event 48 // Call-back for when a method is entered. 50 const mirror::ArtMethod* method, 53 // Call-back for when a method is exited. 57 const mirror::ArtMethod* method, uint32_t dex_pc, 61 // Call-back for when a method is popped due to an exception throw. A method will either cause a 63 virtual void MethodUnwind(Thread* thread, const mirror::ArtMethod* method, 66 // Call-back for when the dex pc moves in a method. 68 const mirror::ArtMethod* method, uint32_t new_dex_pc [all...] |
/cts/tests/tests/text/src/android/text/method/cts/ |
KeyListenerTestCase.java | 17 package android.text.method.cts; 24 import android.text.method.cts.KeyListenerStubActivity; 25 import android.text.method.KeyListener;
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/iget/d/ |
T_iget_2.d | 21 .method <clinit>()V 24 .end method 26 .method public <init>()V 35 .end method 37 .method public run()F 42 .end method
|
T_iget_9.d | 21 .method <clinit>()V 24 .end method 26 .method public <init>()V 31 .end method 33 .method public run()F 39 .end method
|