/dalvik/dx/src/com/android/dx/cf/code/ |
RopperMachine.java | 56 * {@code non-null;} method constant for use in converting 68 /** {@code non-null;} method being converted */ 69 private final ConcreteMethod method; field in class:RopperMachine 74 /** max locals of the method */ 124 * @param method {@code non-null;} method being converted 127 public RopperMachine(Ropper ropper, ConcreteMethod method, 129 super(method.getEffectiveDescriptor()); 140 this.method = method; [all...] |
BasicBlocker.java | 32 /** {@code non-null;} method being converted */ 33 private final ConcreteMethod method; field in class:BasicBlocker 71 * Identifies and enumerates the basic blocks in the given method, 75 * @param method {@code non-null;} method to convert 78 public static ByteBlockList identifyBlocks(ConcreteMethod method) { 79 BasicBlocker bb = new BasicBlocker(method); 89 * @param method {@code non-null;} method to convert 91 private BasicBlocker(ConcreteMethod method) { [all...] |
/external/javassist/src/main/javassist/compiler/ |
Javac.java | 48 * @param thisClass the class that a compiled method/field 61 * @param thisClass the class that a compiled method/field 76 * Compiles a method, constructor, or field declaration 80 * <p>In a method or constructor body, $0, $1, ... and $_ 164 CtMethod method = new CtMethod(rtype, r.getVariable().get(), local 166 method.setModifiers(mod); 167 gen.setThisMethod(method); 170 method.getMethodInfo().setCodeAttribute( 173 method.setModifiers(mod | Modifier.ABSTRACT); 175 method.setExceptionTypes(tlist) 525 final String method = methodname; local [all...] |
/libcore/luni/src/test/java/libcore/java/lang/reflect/ |
OldAndroidClassTest.java | 21 import java.lang.reflect.Method; 55 Method method = helloClass.getDeclaredMethod("method", (Class[]) null); local 56 method.invoke(new OldAndroidClassTest(), (Object[]) null); 61 Method method = helloClass.getDeclaredMethod("methodWithArgs", Object.class); local 65 Object ret = method.invoke(new OldAndroidClassTest(), invokeArgs); 71 Method method = helloClass.getDeclaredMethod("privateMethod", (Class[]) null) local 128 public void method() { method in class:OldAndroidClassTest [all...] |
/cts/tests/tests/jni/libjnitest/ |
macroized_tests.c | 23 * This file also defines a static method called runAllTests(), which 50 * how to call a method: (virtual, direct, static) x (standard, array of 132 * Looks up a static method on StaticFromNative. 140 *errorMsg = failure("could not find static test method %s:%s", 148 * Looks up an instance method on InstanceFromNative. 155 *errorMsg = failure("could not find instance test method %s:%s", 163 * Looks up either an instance method on InstanceFromNative or a 164 * static method on StaticFromNative, depending on the given 191 jmethodID method = findAppropriateMethod(env, &msg, ct, local 194 if (method == NULL) 294 jmethodID method = findAppropriateMethod(env, &msg, ct, local 397 jmethodID method = findAppropriateMethod(env, &msg, ct, local 500 jmethodID method = findAppropriateMethod(env, &msg, ct, local 603 jmethodID method = findAppropriateMethod(env, &msg, ct, local 706 jmethodID method = findAppropriateMethod(env, &msg, ct, local 809 jmethodID method = findAppropriateMethod(env, &msg, ct, local 912 jmethodID method = findAppropriateMethod(env, &msg, ct, local 1015 jmethodID method = findAppropriateMethod(env, &msg, ct, local 1118 jmethodID method = findAppropriateMethod(env, &msg, ct, local 1239 jmethodID method = findAppropriateMethod(env, &msg, ct, local 1359 jmethodID method = findAppropriateMethod(env, &msg, ct, local [all...] |
/cts/tests/tests/text/src/android/text/method/cts/ |
CharacterPickerDialogTest.java | 17 package android.text.method.cts; 26 import android.text.method.CharacterPickerDialog;
|
DigitsKeyListenerTest.java | 17 package android.text.method.cts; 30 import android.text.method.DigitsKeyListener;
|
MultiTapKeyListenerTest.java | 17 package android.text.method.cts; 29 import android.text.method.MultiTapKeyListener; 30 import android.text.method.TextKeyListener.Capitalize;
|
NumberKeyListenerTest.java | 17 package android.text.method.cts; 31 import android.text.method.NumberKeyListener;
|
QwertyKeyListenerTest.java | 17 package android.text.method.cts; 29 import android.text.method.QwertyKeyListener; 30 import android.text.method.TextKeyListener; 31 import android.text.method.TextKeyListener.Capitalize;
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
StdCatchBuilder.java | 38 /** {@code non-null;} method to build the list for */ 39 private final RopMethod method; field in class:StdCatchBuilder 51 * @param method {@code non-null;} method to build the list for 55 public StdCatchBuilder(RopMethod method, int[] order, 57 if (method == null) { 58 throw new NullPointerException("method == null"); 69 this.method = method; 76 return build(method, order, addresses) [all...] |
/dalvik/dexgen/src/com/android/dexgen/rop/code/ |
LocalVariableExtractor.java | 24 * a method. 27 /** {@code non-null;} method being extracted from */ 28 private final RopMethod method; field in class:LocalVariableExtractor 30 /** {@code non-null;} block list for the method */ 40 * Extracts out all the local variable information from the given method. 42 * @param method {@code non-null;} the method to extract from 45 public static LocalVariableInfo extract(RopMethod method) { 46 LocalVariableExtractor lve = new LocalVariableExtractor(method); 51 * Constructs an instance. This method is private. Use {@link #extract} [all...] |
/dalvik/dx/src/com/android/dx/dex/code/ |
StdCatchBuilder.java | 38 /** {@code non-null;} method to build the list for */ 39 private final RopMethod method; field in class:StdCatchBuilder 51 * @param method {@code non-null;} method to build the list for 55 public StdCatchBuilder(RopMethod method, int[] order, 57 if (method == null) { 58 throw new NullPointerException("method == null"); 69 this.method = method; 76 return build(method, order, addresses) [all...] |
/dalvik/dx/src/com/android/dx/rop/code/ |
LocalVariableExtractor.java | 24 * a method. 27 /** {@code non-null;} method being extracted from */ 28 private final RopMethod method; field in class:LocalVariableExtractor 30 /** {@code non-null;} block list for the method */ 40 * Extracts out all the local variable information from the given method. 42 * @param method {@code non-null;} the method to extract from 45 public static LocalVariableInfo extract(RopMethod method) { 46 LocalVariableExtractor lve = new LocalVariableExtractor(method); 51 * Constructs an instance. This method is private. Use {@link #extract} [all...] |
/dalvik/dx/tests/115-merge/com/android/dx/merge/ |
DexMergeTest.java | 28 import java.lang.reflect.Method; 69 tryCatchFinally.getDeclaredMethod("method").invoke(null); 105 Method method = annotated.getMethod("method", String.class, String.class); local 116 assertEquals("@testdata.Annotated$Marker(a=on method, b=[], " 118 method.getAnnotation(marker).toString()); 124 method.getParameterAnnotations()[1][0].toString());
|
/dalvik/vm/ |
AllocTracker.cpp | 57 /* stack trace elements; unused entries have method==NULL */ 59 const Method* method; /* which method we're executing in */ member in struct:AllocRecord::__anon780 156 const Method* method = saveArea->method; local 159 pRec->stackElem[stackDepth].method = method; 160 if (dvmIsNativeMethod(method)) { 342 const Method* method = pRec->stackElem[i].method; local 416 const Method* method = pRec->stackElem[i].method; local 628 const Method* method = pRec->stackElem[i].method; local [all...] |
InitRefs.cpp | 127 { &gDvm.classJavaLangReflectMethod, "Ljava/lang/reflect/Method;" }, 128 { &gDvm.classJavaLangReflectMethodArray, "[Ljava/lang/reflect/Method;"}, 269 { "Ljava/lang/reflect/Method;", infoMethod }, 297 static bool initDirectMethodReferenceByClass(Method** pMethod, ClassObject* clazz, 299 Method* method = dvmFindDirectMethodByDescriptor(clazz, name, descriptor); local 301 if (method == NULL) { 302 ALOGE("Could not find essential direct method %s.%s with descriptor %s", 307 *pMethod = method; 311 static bool initDirectMethodReference(Method** pMethod, const char* className 324 static struct { Method** method; const char* name; const char* descriptor; } constructors[] = { member in struct:__anon790 355 Method** method; member in struct:__anon791 403 Method* method = dvmFindVirtualMethodByDescriptor(clazz, name, descriptor); local [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...] |
/dalvik/vm/interp/ |
Jit.h | 45 const Method *method; member in struct:ShadowSpace
|
/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...] |
/development/ndk/platforms/android-3/include/linux/ |
msm_audio.h | 69 uint32_t method; member in struct:msm_snd_volume_config
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
ForegroundService.java | 33 import java.lang.reflect.Method; 60 private Method mSetForeground; 61 private Method mStartForeground; 62 private Method mStopForeground; 67 void invokeMethod(Method method, Object[] args) { 69 method.invoke(this, args); 72 Log.w("ApiDemos", "Unable to invoke method", e); 75 Log.w("ApiDemos", "Unable to invoke method", e); 80 * This is a wrapper around the new startForeground method, using the olde [all...] |
/external/aac/libAACdec/src/ |
conceal_types.h | 138 CConcealmentMethod method; member in struct:__anon2018
|
/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/apache-http/src/org/apache/http/impl/auth/ |
DigestScheme.java | 207 * {@link Credentials}, method name and URI. 230 // Add method name and request-URI to the parameter map 265 String method = getParameter("methodname"); local 331 //TODO: add Method ":" digest-uri-value ":" H(entity-body) 333 a2 = method + ':' + uri;
|