/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/ |
DexWrapper.java | 29 import java.lang.reflect.Method; 36 * <p/>Since there is no proper api to call the method in the dex library, this wrapper is going 47 private Method mRunMethod; 178 // call the run method 179 Object res = mRunMethod.invoke(null /* obj: static method */, args);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/ |
SectionHelper.java | 41 import java.lang.reflect.Method; 153 * through the setLayoutData method. In some case, creating it will make the table parent 173 Method reflow; 336 * through the setLayoutData method. In some case, creating it will make the table parent
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/ |
CopyCutAction.java | 23 import org.apache.xml.serialize.Method; 200 new OutputFormat(Method.XML,
|
/external/clang/lib/Sema/ |
SemaOverload.cpp | [all...] |
SemaTemplateInstantiateDecl.cpp | 686 // If the enumeration is within a function or method, record the enum [all...] |
/external/clang/tools/libclang/ |
CIndex.cpp | [all...] |
/external/clang/lib/CodeGen/ |
CGDebugInfo.cpp | 667 /// routine to get a method type which includes "this" pointer. 669 CGDebugInfo::getOrCreateMethodType(const CXXMethodDecl *Method, 672 = getOrCreateType(QualType(Method->getType()->getAs<FunctionProtoType>(), 686 if (!Method->isStatic()) 689 QualType ThisPtr = Method->getThisType(CGM.getContext()); 720 CGDebugInfo::CreateCXXMemberFunction(const CXXMethodDecl *Method, 724 isa<CXXConstructorDecl>(Method) || isa<CXXDestructorDecl>(Method); 726 llvm::StringRef MethodName = getFunctionName(Method); 727 llvm::DIType MethodTy = getOrCreateMethodType(Method, Unit) 2195 const CXXMethodDecl *method = local [all...] |
/dalvik/vm/ |
Debugger.cpp | 321 * an enumeration index. For now we just use the Method*. 323 static MethodId methodToMethodId(const Method* meth) 327 static Method* methodIdToMethod(RefTypeId refTypeId, MethodId id) 329 // TODO? verify "id" is actually a method in "refTypeId" 330 return (Method*)(u4) id; 1137 * Method and Field 1142 * Get the method name from a MethodId. 1146 Method* meth; 1217 Method* meth; 1311 Method* method; local 1378 const Method* method = saveArea->method; local 1417 Method* method; local 2094 const Method* method = saveArea->method; local 2204 const Method* method = saveArea->method; local 2545 Method* method = methodIdToMethod(pLoc->classId, pLoc->methodId); local 2556 Method* method = methodIdToMethod(pLoc->classId, pLoc->methodId); local [all...] |
CheckJni.cpp | 49 * Check the result of a native method call that returns an object reference. 56 * return type class by name in method->clazz' class loader. We take a 65 const Method* method, Thread* self) 72 const Method* method = dvmGetCurrentJNIMethod(); local 73 char* desc = dexProtoCopyMethodDescriptor(&method->prototype); 74 LOGW(" in %s.%s:%s", method->clazz->descriptor, method->name, desc); 84 * method was expected to return 385 const Method* method = (const Method*) methodID; local 441 const Method* method = (const Method*) methodID; local 462 const Method* method = (const Method*) methodID; local 512 const Method* method = NULL; local 1037 const Method* method = dvmGetCurrentJNIMethod(); local [all...] |
/cts/tests/SignatureTest/src/android/tests/sigtest/ |
JDiffClassDescription.java | 22 import java.lang.reflect.Method; 43 /** Indicates that the method is a bridge method. */ 45 /** Indicates that the method is takes a variable number of arguments. */ 47 /** Indicates that the method is a synthetic method. */ 127 * Adds a method. 129 * @param method the method to be added. 131 public void addMethod(JDiffMethod method) { [all...] |
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
SortedMapTestBase.java | 25 import java.lang.reflect.Method; 361 Method refClone = ref.getClass().getMethod("clone", null); 362 Method mapClone = map.getClass().getMethod("clone", null);
|
/external/proguard/src/proguard/classfile/editor/ |
MemberReferenceFixer.java | 34 * This ClassVisitor fixes constant pool field and method references to fields 97 // Class.get[Declared]{Field,Method} construct? 151 // Do we know the referenced interface method? 178 // Check if this is an interface method. 182 // Has the method become a non-interface method? 190 System.out.println(" Ref method = "+interfaceMethodrefConstant.getName(clazz)+interfaceMethodrefConstant.getType(clazz)); 191 System.out.println(" -> ordinary method"); 194 // Replace the interface method reference by a method reference [all...] |
/frameworks/opt/vcard/java/com/android/vcard/ |
VCardComposer.java | 49 import java.lang.reflect.Method; 277 * You can call this method or a variant of this method just once. In other words, you cannot 297 * You can call this method or a variant of this method just once. In other words, you cannot 475 public String createOneEntry(Method getEntityIteratorMethod) { 494 final Method getEntityIteratorMethod) { 499 // they are hidden from the view of this method, though contact id itself exists. 580 * {ContactsContract}. Developers can override this method to customize the output.
|
/dalvik/vm/analysis/ |
CodeVerify.cpp | 76 * Array of RegisterLine structs, one per address in the method. We only 84 * to the method's declared "registersSize" plus kExtraRegs. 110 static bool isInitMethod(const Method* meth); 116 static bool verifyInstruction(const Method* meth, InsnFlags* insnFlags,\ 421 UninitInstanceMap* dvmCreateUninitInstanceMap(const Method* meth, 593 * Is this method a constructor? 595 static bool isInitMethod(const Method* meth) 601 * Is this method a class initializer? 604 static bool isClassInitMethod(const Method* meth) 615 static ClassObject* lookupClassByDescriptor(const Method* meth [all...] |
/external/chromium/testing/ |
gmock_mutant.h | 19 // DispatchToMethod/Function will also try to call the selected method or 22 // DispatchToMethod will try to invoke method that may not belong to the 85 // // method of an object that is not yet created. 112 template <typename R, typename T, typename Method> 113 inline R DispatchToMethod(T* obj, Method method, 116 return (obj->*method)(); 126 template <typename R, typename T, typename Method, typename C1> 127 inline R DispatchToMethod(T* obj, Method method, [all...] |
/dalvik/vm/native/ |
InternalNative.cpp | 46 { "Ljava/lang/reflect/Method;", dvm_java_lang_reflect_Method, 0 }, 98 DalvikNativeFunc dvmLookupInternalNativeMethod(const Method* method) 100 const char* classDescriptor = method->clazz->descriptor; 118 pMeth->signature, method) == 0) 138 * Magic "internal native" code stub, inserted into abstract method 145 dvmThrowAbstractMethodError("abstract method not implemented"); 231 * We insert native method stubs for abstract methods so we don't have to 232 * check the access flags at the time of the method call. This results in
|
/external/clang/lib/AST/ |
ExprClassification.cpp | 320 if (const ObjCMethodDecl *Method = 322 Cl::Kinds kind = ClassifyUnnamed(Ctx, Method->getResultType()); 456 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Member)) 457 return Method->isStatic() ? Cl::CL_LValue : Cl::CL_MemberFunction;
|
/external/emma/core/java12/com/vladium/emma/rt/ |
AppRunner.java | 13 import java.lang.reflect.Method; 489 final Method appMain; 493 appMain = appClass.getMethod ("main", MAIN_TYPE); // Sun JVMs do not seem to require the method to be declared 641 Invoker (final Method method, final Object target, final Object [] args) 643 if (method == null) throw new IllegalArgumentException ("null input: method"); 646 m_method = method; 669 private final Method m_method; [all...] |
/external/proguard/src/proguard/classfile/instruction/ |
ConstantInstruction.java | 159 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, InstructionVisitor instructionVisitor) 161 instructionVisitor.visitConstantInstruction(clazz, method, codeAttribute, offset, this);
|
Instruction.java | 740 public abstract void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, InstructionVisitor instructionVisitor);
|
SimpleInstruction.java | 216 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, InstructionVisitor instructionVisitor) 218 instructionVisitor.visitSimpleInstruction(clazz, method, codeAttribute, offset, this);
|
/external/proguard/src/proguard/optimize/evaluation/ |
VariableOptimizer.java | 92 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) 96 // method.getName(clazz).equals("abc"); 102 livenessAnalyzer.visitCodeAttribute(clazz, method, codeAttribute); 105 (method.getAccessFlags() & ClassConstants.INTERNAL_ACC_STATIC) != 0 || 109 ClassUtil.internalMethodParameterSize(method.getDescriptor(clazz), 110 method.getAccessFlags()); 152 System.out.println(" Method "+ClassUtil.externalFullMethodDescription(clazz.getName(), 154 method.getName(clazz), 155 method.getDescriptor(clazz))) [all...] |
/external/proguard/src/proguard/shrink/ |
ShortestUsageMarker.java | 98 protected void markMethodHierarchy(Clazz clazz, Method method) 102 currentUsageMark = new ShortestUsageMark(getShortestUsageMark(method), 106 method); 108 super.markMethodHierarchy(clazz, method); 268 // Check the causing class or method, if still necessary.
|
/external/webkit/Source/WebCore/svg/ |
SVGTextPathElement.cpp | 35 DEFINE_ANIMATED_ENUMERATION(SVGTextPathElement, SVGNames::methodAttr, Method, method)
|
/sdk/ide_common/src/com/android/ide/common/rendering/ |
LayoutLibrary.java | 51 import java.lang.reflect.Method; 97 private Method mViewGetParentMethod; 98 private Method mViewGetBaselineMethod; 99 private Method mViewParentIndexOfChildMethod; 312 * Starts a layout session by inflating and rendering it. The method returns a 363 * until this method is called. 380 * Utility method returning the parent of a given view object. 399 * Utility method returning the index of a given view in its parent. 442 // the first version of the api did not have this method 581 // implementation for all method [all...] |