/art/runtime/ |
instrumentation.cc | 89 static void UpdateEntrypoints(ArtMethod* method, const void* quick_code) 94 const void* old_code_ptr = method->GetEntryPointFromQuickCompiledCode(); 98 code_cache->SaveCompiledCode(method, old_code_ptr); 101 method->SetEntryPointFromQuickCompiledCode(quick_code); 102 if (!method->IsResolutionMethod()) { 107 !method->IsNative() && !method->IsProxyMethod())) { 108 DCHECK(!method->IsNative()) << PrettyMethod(method); 109 DCHECK(!method->IsProxyMethod()) << PrettyMethod(method) 797 ArtMethod* method; local 989 ArtMethod* method = instrumentation_frame.method_; local 1042 ArtMethod* method = instrumentation_frame.method_; local [all...] |
jni_internal_test.cc | 216 jmethodID method = env_->GetMethodID(nullptr, "<init>", "(Ljava/lang/String;)V"); local 217 EXPECT_EQ(nullptr, method); 222 method = env_->GetMethodID(jlnsme, nullptr, "(Ljava/lang/String;)V"); 223 EXPECT_EQ(nullptr, method); 226 method = env_->GetMethodID(jlnsme, "<init>", nullptr); 227 EXPECT_EQ(nullptr, method); 238 jmethodID method = env_->GetStaticMethodID(nullptr, "valueOf", "(I)Ljava/lang/String;"); local 239 EXPECT_EQ(nullptr, method); 243 method = env_->GetStaticMethodID(jlstring, nullptr, "(I)Ljava/lang/String;"); 244 EXPECT_EQ(nullptr, method); 296 jobject method = env_->ToReflectedMethod(nullptr, mid, JNI_FALSE); local 733 jmethodID method = env_->GetMethodID(jlobject, "foo", "()V"); local 765 jmethodID method; local 787 jmethodID method = env_->GetStaticMethodID(jlobject, "foo", "()V"); local 846 jobject method = env_->ToReflectedMethod(c, mid, JNI_FALSE); local [all...] |
/art/runtime/interpreter/ |
interpreter_common.cc | 430 // Exception is not caught by the current method. We will unwind to the 435 // Exception is caught in the current method. We will jump to the found_dex_pc. 492 // Compute method information. 633 LOG(FATAL) << "Attempt to invoke non-executable method: " 664 ArtMethod* method = shadow_frame.GetMethod(); local 665 MethodReference method_ref = method->ToMethodReference(); 671 string_init_map = std::move(verifier::MethodVerifier::FindStringInitMap(method)); [all...] |
/art/runtime/mirror/ |
class.cc | 28 #include "method.h" 351 ArtMethod* method = FindDeclaredVirtualMethod(name, signature, pointer_size); local 352 if (method != nullptr) { 353 return method; 359 method = iftable->GetInterface(i)->FindDeclaredVirtualMethod(name, signature, pointer_size); 360 if (method != nullptr) { 361 return method; 370 ArtMethod* method = FindDeclaredVirtualMethod(name, signature, pointer_size); local 371 if (method != nullptr) { 372 return method; 389 ArtMethod* method = FindDeclaredVirtualMethod(dex_cache, dex_method_idx, pointer_size); local 441 ArtMethod* method = klass->FindDeclaredDirectMethod(name, signature, pointer_size); local 452 ArtMethod* method = klass->FindDeclaredDirectMethod(name, signature, pointer_size); local 463 ArtMethod* method = klass->FindDeclaredDirectMethod(dex_cache, dex_method_idx, pointer_size); local 510 ArtMethod* method = klass->FindDeclaredVirtualMethod(name, signature, pointer_size); local 521 ArtMethod* method = klass->FindDeclaredVirtualMethod(name, signature, pointer_size); local 532 ArtMethod* method = klass->FindDeclaredVirtualMethod(dex_cache, dex_method_idx, pointer_size); local 809 auto method = methods[i]; local [all...] |
/art/runtime/native/ |
dalvik_system_VMRuntime.cc | 353 ArtMethod* method = dex_cache->GetResolvedMethod(method_idx, sizeof(void*)); local 354 if (method != nullptr) { 366 method = klass->FindDirectMethod(dex_cache.Get(), method_idx, sizeof(void*)); 369 method = klass->FindInterfaceMethod(dex_cache.Get(), method_idx, sizeof(void*)); 373 method = klass->FindVirtualMethod(dex_cache.Get(), method_idx, sizeof(void*)); 379 if (method == nullptr) { 382 // LOG(INFO) << "VMRuntime.preloadDexCaches resolved method " << PrettyMethod(method); 383 dex_cache->SetResolvedMethod(method_idx, method, sizeof(void*)); 455 ArtMethod* method = dex_cache->GetResolvedMethod(j, sizeof(void*)) local [all...] |
/cts/hostsidetests/appsecurity/test-apps/SplitApp/src/com/android/cts/splitapp/ |
SplitAppTest.java | 60 import java.lang.reflect.Method; 289 final Method method = logic.getDeclaredMethod("mult", new Class[] { local 291 assertEquals(72, (int) method.invoke(null, 12, 6));
|
/cts/tools/dex-tools/src/dex/reader/ |
DexClassImpl.java | 291 EncodedMethod method = null; local 293 method = methods[i]; 294 methodIdIdx = (i == 0) ? method.method_idx_diff : methodIdIdx 295 + method.method_idx_diff; 299 method.access_flags, idToMethodAnnotation
|
/cts/tools/signature-tools/test/signature/converter/ |
ConvertClassTest.java | 454 IMethod method = sigClass.getMethods().iterator().next(); local 455 assertTrue(method.getModifiers().contains(Modifier.PUBLIC)); 456 assertEquals("m", method.getName()); 457 assertSame(SigPrimitiveType.VOID_TYPE, method.getReturnType()); 467 IMethod method = sigClass.getMethods().iterator().next(); local 468 assertTrue(method.getModifiers().contains(Modifier.PUBLIC)); 469 assertEquals("m", method.getName()); 470 IArrayType arrayType = (IArrayType) method.getReturnType(); [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
RopTranslator.java | 46 * #translate} method is the thing to call on this class. 49 /** {@code non-null;} method to translate */ 50 private final RopMethod method; field in class:RopTranslator 61 /** {@code non-null;} container for all the address objects for the method */ 70 /** {@code >= 0;} register count for the method */ 76 /** size, in register units, of all the parameters to this method */ 80 * true if the parameters to this method happen to be in proper order 89 * @param method {@code non-null;} the original method 94 * this method [all...] |
/dalvik/dx/src/com/android/dx/dex/code/ |
RopTranslator.java | 46 * #translate} method is the thing to call on this class. 52 /** {@code non-null;} method to translate */ 53 private final RopMethod method; field in class:RopTranslator 64 /** {@code non-null;} container for all the address objects for the method */ 73 /** {@code >= 0;} register count for the method */ 79 /** size, in register units, of all the parameters to this method */ 83 * true if the parameters to this method happen to be in proper order 92 * @param method {@code non-null;} the original method 97 * this method [all...] |
/external/aac/libAACdec/src/ |
conceal.cpp | 270 pConcealCommonData->method = ConcealMethodInter; 292 \brief Get current concealment method. 296 \return Concealment method. 301 CConcealmentMethod method = ConcealMethodNone; local 304 method = pConcealCommonData->method; 307 return (method); 315 0 = interpolation method (adds delay) 356 \method 367 int method, [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/xslt/ |
EnvironmentCheck.java | 27 import java.lang.reflect.Method; 198 * <p>Worker method called from various places.</p> 723 * Cheap-o method to determine the product version of a .jar. 798 Method method = clazz.getMethod(JAXP11_METHOD, noArgs); local 809 // method, so we (probably) have JAXP 1.0.1 900 Method method = clazz.getMethod(XALAN2_2_VERSION_METHOD, noArgs); local 901 Object returnValue = method.invoke(null, new Object[0]); 999 Method method = clazz.getMethod(ANT_VERSION_METHOD, noArgs) local 1039 Method method = clazz.getMethod(DOM_LEVEL2_METHOD, twoStringArgs); local 1120 Method method = clazz.getMethod(SAX_VERSION2BETA_METHODNF, attributesArg); local 1138 Method method = clazz.getMethod(SAX_VERSION2_METHOD, oneStringArg); local 1157 Method method = clazz.getMethod(SAX_VERSION1_METHOD, oneStringArg); local [all...] |
/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
RopTranslator.java | 47 * #translate} method is the thing to call on this class. 53 /** {@code non-null;} method to translate */ 54 private final RopMethod method; field in class:RopTranslator 65 /** {@code non-null;} container for all the address objects for the method */ 74 /** {@code >= 0;} register count for the method */ 80 /** size, in register units, of all the parameters to this method */ 84 * true if the parameters to this method happen to be in proper order 93 * @param method {@code non-null;} the original method 98 * this method [all...] |
/external/dexmaker/src/main/java/com/google/dexmaker/ |
Code.java | 106 * method's return type. Constructors are considered void methods and should 125 * A method's caller must know its return type, name, parameters, and invoke 126 * kind. Lookup a method on a type using {@link TypeId#getMethod 128 * can infer the target method using the target object and parameters. There are 135 * <li>{@link #invokeInterface invokeInterface()} is used to invoke a method 138 * method. The target must not be static, private, a constructor, or an 139 * interface method.</li> 141 * superclass's virtual method. The target must not be static, private, 142 * a constructor method, or an interface method.</li 179 private final MethodId<?, ?> method; field in class:Code 633 invoke(Rops.opInvokeStatic(method.prototype(true)), method, target, null, args); local 647 invoke(Rops.opInvokeVirtual(method.prototype(true)), method, target, instance, args); local 661 invoke(Rops.opInvokeDirect(method.prototype(true)), method, target, instance, args); local 673 invoke(Rops.opInvokeSuper(method.prototype(true)), method, target, instance, args); local 686 invoke(Rops.opInvokeInterface(method.prototype(true)), method, target, instance, args); local [all...] |
/external/emma/core/java12/com/vladium/emma/data/ |
DataFactory.java | 399 final String method = "mergeload"; local 420 if (trace1) log.trace1 (method, "[" + file + "]: file length = " + length); 445 if (trace2) log.trace2 (method, "[" + file + "]: position " + raf.getFilePointer ()); 458 if (trace2) log.trace2 (method, "[" + file + "]: found valid entry of size " + entryLength + " and type " + type); 462 if (trace2) log.trace2 (method, "entry read in " + (System.currentTimeMillis () - entrystart) + " ms"); 492 log.trace1 (method, "[" + file + "]: file processed in " + (end - start) + " ms"); 508 final String method = "persist"; local 535 if (trace1) log.trace1 (method, "[" + file + "]: existing file length = " + length); 623 if (trace2) log.trace2 (method, "[" + file + "]: position " + raf.getFilePointer ()); 632 if (trace2) log.trace2 (method, "[" + file + "]: found valid entry of size " + entryLength) [all...] |
/external/emma/core/java12/com/vladium/jcd/cls/ |
ClassDef.java | 362 // a. The name of the method, <clinit>, in UTF encoding. 363 // b. The modifier of the method, ACC_STATIC, written as a 32-bit integer. 364 // c. The descriptor of the method, ()V, in UTF encoding. 365 // (6) For each non-private constructor sorted by method name and signature: 366 // a. The name of the method, <init>, in UTF encoding. 367 // b. The modifiers of the method written as a 32-bit integer. 368 // c. The descriptor of the method in UTF encoding. 369 // (7) For each non-private method sorted by method name and signature: 370 // a. The name of the method in UTF encoding. 387 final Method_info method = methods.get (i); local 588 final Method_info method = new Method_info (access_flags, name_index, descriptor_index, attributes); local [all...] |
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/ |
JSONObject.java | 31 import java.lang.reflect.Method; 51 * A <code>get</code> method returns a value if one can be found, and throws an 52 * exception if one cannot be found. An <code>opt</code> method returns a 100 * so the clone method returns itself. 270 * the method is invoked, and a key and the value returned from the getter method 277 * For example, if an object has a method named <code>"getName"</code>, and 295 * the method is invoked, and a key and the value returned from the getter method 320 Method[] methods = (includeSuperClass) 324 Method method = methods[i]; local [all...] |
/external/guava/guava-tests/test/com/google/common/reflect/ |
TypeTokenTest.java | 38 import java.lang.reflect.Method; 130 Method getFromList = List.class.getMethod("get", int.class); [all...] |
/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/javassist/src/main/javassist/compiler/ |
JvstCodeGen.java | 57 * @param name the name of the special method call. 114 private void callGetType(String method) { 115 bytecode.addInvokestatic("javassist/runtime/Desc", method, 226 /* Delegates to a ProcHandler object if the method call is 230 ASTree method = expr.oprand1(); local 231 if (method instanceof Member) { 232 String name = ((Member)method).get(); 294 * It can be used only as a parameter list of method call. 410 * Makes it valid to write "return <expr>;" for a void method. 461 * Makes method parameters $0, $1, ..., $args, $$, and $class available [all...] |
/external/jetty/src/java/org/eclipse/jetty/jmx/ |
ObjectMBean.java | 24 import java.lang.reflect.Method; 99 * Then this method would look for the following classes: 318 Method getter = (Method) _getters.get(name); 325 o = this; // mbean method 397 Method setter = (Method) _setters.get(attr.getName()); 478 Method method = (Method) _methods.get(methodKey) local 761 Method method = oClass.getMethod(method_name, types); local [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/util/ |
BufferUtils.java | 39 import java.lang.reflect.Method; 1156 Method method = Class.forName(className).getMethod(methodName); local [all...] |
/external/nist-sip/java/gov/nist/javax/sip/ |
DialogFilter.java | 395 * An agent responding to a REFER method MUST return a 400 (Bad Request) if the 421 String method = lastRequest.getMethod(); local 422 if (method.equals(Request.INVITE) && !dialog.isAckSent(cseqno)) { 431 * Got an UPDATE method and the user dialog does not exist and the user wants to be a 563 * response, and whose method, CSeq-num, and response-num in the RAck header field 564 * match, respectively, the method from the CSeq, the sequence number from the CSeq, 1273 String method = sipResponse.getCSeq().getMethod(); local [all...] |
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/ |
deflate.h | 107 Byte method; /* can only be DEFLATED */ member in struct:internal_state
|
/external/proguard/src/proguard/optimize/evaluation/ |
EvaluationSimplifier.java | 94 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) 98 // method.getName(clazz).equals("abc"); 101 // Catch any unexpected exceptions from the actual visiting method. 105 visitCodeAttribute0(clazz, method, codeAttribute); 111 System.err.println(" Method = ["+method.getName(clazz)+method.getDescriptor(clazz)+"]"); 113 System.err.println("Not optimizing this method"); 117 method.accept(clazz, new ClassPrinter()) [all...] |