/external/chromium_org/third_party/skia/src/core/ |
SkBitmapScaler.cpp | 14 SkResizeFilter(SkBitmapScaler::ResizeMethod method, 52 SkResizeFilter::SkResizeFilter(SkBitmapScaler::ResizeMethod method, 58 // method will only ever refer to an "algorithm method". 59 SkASSERT((SkBitmapScaler::RESIZE_FIRST_ALGORITHM_METHOD <= method) && 60 (method <= SkBitmapScaler::RESIZE_LAST_ALGORITHM_METHOD)); 62 switch(method) { 211 SkBitmapScaler::ResizeMethod method) { 212 // Convert any "Quality Method" into an "Algorithm Method" [all...] |
/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"); 73 // Catch any unexpected exceptions from the actual visiting method. 77 visitCodeAttribute0(clazz, method, codeAttribute); 83 System.err.println(" Method = ["+method.getName(clazz)+method.getDescriptor(clazz)+"]"); 88 method.accept(clazz, new ClassPrinter()); 96 public void visitCodeAttribute0(Clazz clazz, Method method, CodeAttribute codeAttribute [all...] |
/external/skia/src/core/ |
SkBitmapScaler.cpp | 14 SkResizeFilter(SkBitmapScaler::ResizeMethod method, 52 SkResizeFilter::SkResizeFilter(SkBitmapScaler::ResizeMethod method, 58 // method will only ever refer to an "algorithm method". 59 SkASSERT((SkBitmapScaler::RESIZE_FIRST_ALGORITHM_METHOD <= method) && 60 (method <= SkBitmapScaler::RESIZE_LAST_ALGORITHM_METHOD)); 62 switch(method) { 211 SkBitmapScaler::ResizeMethod method) { 212 // Convert any "Quality Method" into an "Algorithm Method" [all...] |
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/ |
MethodPool.java | 52 public void intern(@Nonnull MethodReference method) { 53 Integer prev = internedItems.put(method, 0); 55 typePool.intern(method.getDefiningClass()); 56 protoPool.intern(method); 57 stringPool.intern(method.getName());
|
/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, int64_t 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...] |
/art/runtime/ |
instrumentation.cc | 50 // Do we want to deoptimize for method entry and exit listeners or just try to intercept 85 static void UpdateEntrypoints(mirror::ArtMethod* method, const void* quick_code, 89 method->SetEntryPointFromPortableCompiledCode(portable_code); 91 method->SetEntryPointFromQuickCompiledCode(quick_code); 92 bool portable_enabled = method->IsPortableCompiled(); 94 method->SetIsPortableCompiled(); 96 method->ClearIsPortableCompiled(); 98 if (!method->IsResolutionMethod()) { 104 && !method->IsNative() && !method->IsProxyMethod())) 883 mirror::ArtMethod* method; local 1068 mirror::ArtMethod* method = instrumentation_frame.method_; local 1121 mirror::ArtMethod* method = instrumentation_frame.method_; local [all...] |
instrumentation.h | 54 // the events they are listening for. The call backs supply the thread, method and dex_pc the event 60 // Call-back for when a method is entered. 62 mirror::ArtMethod* method, 65 // Call-back for when a method is exited. 69 mirror::ArtMethod* method, uint32_t dex_pc, 73 // Call-back for when a method is popped due to an exception throw. A method will either cause a 76 mirror::ArtMethod* method, uint32_t dex_pc) 79 // Call-back for when the dex pc moves in a method. 81 mirror::ArtMethod* method, uint32_t new_dex_pc [all...] |
reflection_test.cc | 84 void ReflectionTestMakeExecutable(mirror::ArtMethod** method, 110 *method = is_static ? c->FindDirectMethod(method_name, method_signature) 112 CHECK(method != nullptr); 133 mirror::ArtMethod* method; local 135 ReflectionTestMakeExecutable(&method, &receiver, is_static, "nop", "()V"); 136 InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), nullptr); 141 mirror::ArtMethod* method; local 143 ReflectionTestMakeExecutable(&method, &receiver, is_static, "identity", "(B)B"); 147 JValue result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args); 151 result = InvokeWithJValues(soa, receiver, soa.EncodeMethod(method), args) 165 mirror::ArtMethod* method; local 189 mirror::ArtMethod* method; local 213 mirror::ArtMethod* method; local 241 mirror::ArtMethod* method; local 279 mirror::ArtMethod* method; local 322 mirror::ArtMethod* method; local 370 mirror::ArtMethod* method; local 403 mirror::ArtMethod* method; local 429 mirror::ArtMethod* method; local 458 mirror::ArtMethod* method; local 507 mirror::ArtMethod* method = klass->FindDirectMethod("main", "([Ljava\/lang\/String;)V"); local [all...] |
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
Request.java | 38 private final String method; field in class:Request 49 this.method = builder.method; 72 public String method() { method in class:Request 73 return method; 234 private String method; 240 this.method = "GET"; 246 this.method = request.method; 276 * Adds a header with {@code name} and {@code value}. Prefer this method fo [all...] |
/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
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_direct/d/ |
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
|
T_invoke_direct_27.d | 20 .method public <init>()V 25 .end method 27 .method private test()V 29 .end method 31 .method public static run()V 39 .end method
|
T_invoke_direct_3.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_4.d | 19 .method static <clinit>()V 21 .end method 23 .method public <init>()V 27 .end method 29 .method public run()V 32 .end method
|
T_invoke_direct_5.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_8.d | 20 .method public <init>()V 25 .end method 27 .method public run()I 35 .end method 38 .method private toInt()I 42 .end method
|
T_invoke_direct_9.d | 20 .method public <init>()V 25 .end method 27 .method public run()I 34 .end method 37 .method private native toInt()I 38 .end method
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_direct_range/d/ |
T_invoke_direct_range_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
|