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

<<11121314151617181920>>

  /dalvik/dx/src/com/android/dx/dex/cf/
AttributeTranslator.java 31 import com.android.dx.cf.iface.Method;
63 * Gets the list of thrown exceptions for a given method.
65 * @param method {@code non-null;} the method in question
68 public static TypeList getExceptions(Method method) {
69 AttributeList attribs = method.getAttributes();
147 * Gets the annotations out of a given method, similar to {@link
149 * of the method-specific attribute {@code Exceptions}.
151 * @param method {@code non-null;} the method in questio
    [all...]
  /dalvik/vm/
Debugger.h 32 struct Method;
71 const Method* method; member in struct:StepControl
91 Method* method; member in struct:DebugInvokeReq
102 /* condition variable to wait on while the method executes */
198 * Method and Field
263 void dvmDbgPostLocationEvent(const Method* method, int pcOffset,
291 const AddressSet *dvmAddressSetForLine(const Method* method, int line)
    [all...]
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::__anon705
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 LOGE("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:__anon711
355 Method** method; member in struct:__anon712
403 Method* method = dvmFindVirtualMethodByDescriptor(clazz, name, descriptor); local
    [all...]
DvmDex.cpp 26 * We need a 4-byte pointer for every reference to a class, method, field,
66 pDvmDex->pResMethods = (struct Method**)
67 calloc(methodCount, sizeof(struct Method*));
  /dalvik/vm/compiler/codegen/arm/
ArchUtility.cpp 333 dest ? ((Method *) dest)->clazz->descriptor : "",
334 dest ? ((Method *) dest)->name : "N/A");
339 ((Method *)dest)->clazz->descriptor,
340 ((Method *)dest)->name,
341 ((Method *)dest)->insns);
  /external/proguard/src/proguard/optimize/evaluation/
LivenessAnalyzer.java 179 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
183 // method.getName(clazz).equals("abc");
188 System.out.println("Liveness analysis: "+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz));
194 // Evaluate the method.
195 partialEvaluator.visitCodeAttribute(clazz, method, codeAttribute);
232 codeAttribute.instructionAccept(clazz, method, offset, this);
249 codeAttribute.exceptionsAccept(clazz, method, this);
335 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
OldGenericReflectionCornerCases.java 20 import java.lang.reflect.Method;
43 Method method = clazz.getDeclaredMethod("wildcardEquality", Pair.class); local
48 Type[] parameterTypes = method.getGenericParameterTypes();
86 Method method = clazz.getDeclaredMethod("wildcardUnEquality", Pair.class); local
91 Type[] parameterTypes = method.getGenericParameterTypes();
132 Method method = clazz.getDeclaredMethod("multipleBoundedWildcardUnEquality", Pair.class); local
149 Type[] parameterTypes = method.getGenericParameterTypes()
185 Method method = clazz.getDeclaredMethod("multipleBoundedWildcardEquality", Pair.class); local
    [all...]
  /dalvik/vm/interp/
Stack.cpp 18 * Stacks and their uses (e.g. native --> interpreted method calls).
44 * We're calling an interpreted method from an internal VM function or
47 * Push a frame for an interpreted method onto the stack. This is only
59 static bool dvmPushInterpFrame(Thread* self, const Method* method)
66 assert(!dvmIsNativeMethod(method));
67 assert(!dvmIsAbstractMethod(method));
69 stackReq = method->registersSize * 4 // params + locals
71 + method->outsSize * 4; // args to other methods
83 self->interpStackSize, method->clazz->descriptor, method->name)
    [all...]
InterpState.h 100 const Method *method; // Method being executed member in struct:InterpSaveState
222 * For example, if a trace run contains a method inlining target, the class
223 * descriptor/loader of "this" and the currently resolved method pointer are
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
InputMethodManagerCompatWrapper.java 37 import java.lang.reflect.Method;
50 private static final Method METHOD_getCurrentInputMethodSubtype =
52 private static final Method METHOD_getEnabledInputMethodSubtypeList =
55 private static final Method METHOD_getShortcutInputMethodsAndSubtypes =
57 private static final Method METHOD_setInputMethodAndSubtype =
61 private static final Method METHOD_switchToLastInputMethod = CompatUtils.getMethod(
206 // We don't call this method when we switch between subtypes within this IME.
  /external/clang/lib/AST/
DeclCXX.cpp 27 // Decl Allocation/Deallocation Method Implementations
359 const CXXMethodDecl* Method = dyn_cast<CXXMethodDecl>(*Op);
360 if (!Method || Method->isStatic() || Method->getPrimaryTemplate())
364 = Method->getType()->getAs<FunctionProtoType>();
390 Found.push_back(std::make_pair(const_cast<CXXMethodDecl *>(Method), Quals));
420 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
421 if (Method->isVirtual()) {
486 } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
    [all...]
Mangle.cpp 96 if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(DC)) {
97 mangleObjCMethodName(Method, Stream);
106 // calling the mangleName() method on the MangleContext; is there a
  /dalvik/vm/reflect/
Reflect.cpp 117 * Convert the method signature to an array of classes.
122 * "defClass" is the method's class, which is needed to make class loaders
341 * Convert a method pointer to a slot number.
346 static int methodToSlot(const Method* meth)
364 * Convert a slot number to a method pointer.
366 Method* dvmSlotToMethod(ClassObject* clazz, int slot)
388 static Object* createConstructorObject(Method* meth)
460 * Ordinarily we init the class the first time we resolve a method.
471 Method* meth = &clazz->directMethods[i];
492 Method* meth = &clazz->directMethods[i]
714 Method* method = NULL; local
    [all...]
  /frameworks/base/core/java/android/view/
ViewDebug.java 53 import java.lang.reflect.Method;
160 @Target({ ElementType.FIELD, ElementType.METHOD })
164 * When resolveId is true, and if the annotated field/method return value
329 @Target({ ElementType.FIELD, ElementType.METHOD })
342 private static HashMap<Class<?>, Method[]> mCapturedViewMethodsForClasses = null;
357 private static HashMap<Class<?>, Method[]> sMethodsForClasses;
580 buffer.putInt(entry.traceId); // entering method
589 buffer.putInt(entry.traceId | ACTION_EXIT_METHOD); // exiting method
612 addValue("num-method-calls", Integer.toString(entries.size()), out);
695 * Only one view recycler can be traced at the same time. After calling this method, an
1424 final Method method = methods[i]; local
1465 final Method method = methods[i]; local
1790 final Method method = methods[i]; local
1817 final Method method = methods[i]; local
    [all...]
  /dalvik/vm/mterp/x86-atom/
OP_INVOKE_STATIC.S 19 * Code: Call static direct method. Provides an "isrange" variable and
25 * Description: invoke-static is used to invoke static direct method.
47 FETCH 1, %eax # %eax<- method index
49 movl (%ecx, %eax, 4), %ecx # %ecx<- resolved method to call
52 jne common_invokeMethod${routine} # invoke method common code
57 movl offGlue_method(%edx), %edx # %edx<- glue->method
58 movl $$METHOD_STATIC, -4(%esp) # resolver method type
59 movl %eax, -8(%esp) # push parameter method index
60 movl offMethod_clazz(%edx), %edx # %edx<- glue->method->clazz
61 movl %edx, -12(%esp) # push parameter method
    [all...]
  /external/clang/test/SemaCXX/
virtual-override.cpp 170 virtual void f(int) = 0; // expected-note{{unimplemented pure virtual method}}
192 virtual Base* Method();
197 virtual Derived<int>* Method();
  /external/easymock/src/org/easymock/internal/
ExpectedInvocation.java 19 import java.lang.reflect.Method;
127 public Method getMethod() {
  /external/webkit/Source/WebCore/bridge/objc/
objc_class.mm 37 delete static_cast<const Method*>(value);
91 Method* method = (Method*)CFDictionaryGetValue(_methods.get(), methodName.get());
92 if (method) {
93 methodList.append(method);
131 Method* aMethod = new ObjcMethod(thisClass, objcMethodSelector); // deleted when the dictionary is destroyed
  /frameworks/base/test-runner/src/android/test/
TestCaseUtil.java 27 import java.lang.reflect.Method;
64 * If we want to run a single TestCase method only, we must not
65 * invoke the suite() method, because we will run all test methods
98 Method suiteMethod = testClass.getMethod(
102 * method that returns a TestSuite including the TestCase itself,
  /libcore/dom/src/test/java/org/w3c/domts/
DOMTestDocumentBuilderFactory.java 15 import java.lang.reflect.Method;
72 Method getFeatureMethod = doc.getClass().getMethod("getFeature",
  /packages/apps/Email/src/com/android/email/mail/
Store.java 36 import java.lang.reflect.Method;
68 * Because this method will be called through reflection, it can not be protected.
96 // invoke "newInstance" class method
97 Method m = klass.getMethod("newInstance", Account.class, Context.class);
101 "exception %s invoking method %s#newInstance(Account, Context) for %s",
129 * @return Activity class that has class method actionEditIncomingSettings().
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/sdk/
AndroidJarLoaderTest.java 25 import java.lang.reflect.Method;
86 /** call the protected method findClass */
88 Method findClassMethod = AndroidJarLoader.class.getDeclaredMethod(
  /sdk/sdklauncher/app/src/com/android/sdklauncher/
Main.java 26 import java.lang.reflect.Method;
119 Method m = clazz.getMethod("main", new Class[] { String[].class });
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/io/
FileOp.java 28 import java.lang.reflect.Method;
40 * Reflection method for File.setExecutable(boolean, boolean). Only present in Java 6.
42 private static Method sFileSetExecutable = null;

Completed in 939 milliseconds

<<11121314151617181920>>