Searched defs:Method (Results 1 - 25 of 68) sorted by path

123

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Method/
H A DBytecodesTest.java26 package org.apache.harmony.jpda.tests.jdwp.Method;
39 * JDWP Unit test for Method.Bytecodes command.
43 * This testcase exercises Method.Bytecodes command.
45 * prints it's bytecodes received with Method.Bytecodes command.
76 checkReplyPacket(reply, "Method::Bytecodes command");
H A DIsObsoleteTest.java26 package org.apache.harmony.jpda.tests.jdwp.Method;
38 * JDWP Unit test for Method.IsObsolete command.
42 * This testcase exercises Method.IsObsolete command.
44 * which is not obsolete, and checks it with Method.IsObsolete command.
75 checkReplyPacket(reply, "Method::IsObsolete command");
H A DJDWPMethodTestCase.java26 package org.apache.harmony.jpda.tests.jdwp.Method;
H A DLineTableTest.java26 package org.apache.harmony.jpda.tests.jdwp.Method;
36 * JDWP Unit test for Method.LineTable command.
40 * This testcase exercises Method.LineTable command.
42 * For each received method sends Method.LineTable command
H A DMethodDebuggee.java26 package org.apache.harmony.jpda.tests.jdwp.Method;
H A DVariableTableTest.java26 package org.apache.harmony.jpda.tests.jdwp.Method;
38 * JDWP Unit test for Method.VariableTable command.
42 * This testcase exercises Method.VariableTable command.
44 * For each received method sends Method.VariableTable command
66 checkReplyPacket(reply, "Method::VariableTable command");
H A DVariableTableWithGenericTest.java26 package org.apache.harmony.jpda.tests.jdwp.Method;
38 * JDWP Unit test for Method.VariableTableWithGeneric command.
43 * This testcase exercises Method.VariableTableWithGeneric command.
45 * For each received method sends Method.VariableTableWithGeneric command
67 checkReplyPacket(reply, "Method::VariableTableWithGeneric command");
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DMethod.java19 * $Id: Method.java 468654 2006-10-28 07:09:23Z minchau $
44 public final class Method class
49 private Method() { method in class:Method
/external/clang/include/clang/AST/
H A DCXXInheritance.h236 : Method(nullptr), Subobject(0), InVirtualSubobject(nullptr) { }
238 UniqueVirtualMethod(CXXMethodDecl *Method, unsigned Subobject, argument
240 : Method(Method), Subobject(Subobject),
244 CXXMethodDecl *Method; member in struct:clang::UniqueVirtualMethod
257 return X.Method == Y.Method && X.Subobject == Y.Subobject &&
/external/clang/include/clang/Basic/
H A DABI.h191 const CXXMethodDecl *Method; member in struct:clang::ThunkInfo
193 ThunkInfo() : Method(nullptr) { }
196 const CXXMethodDecl *Method = nullptr)
197 : This(This), Return(Return), Method(Method) {}
201 LHS.Method == RHS.Method;
205 return This.isEmpty() && Return.isEmpty() && Method == nullptr;
/external/clang/include/clang/Parse/
H A DParser.h979 : Self(P), Method(M), TemplateScope(false),
986 /// Method - The method declaration.
987 Decl *Method; member in struct:clang::Parser::LateParsedMethodDeclaration
1056 /// LateParsedDeclarations - Method declarations, inline definitions and
/external/clang/include/clang/Sema/
H A DSema.h892 /// Method Pool - allows efficient lookup when typechecking messages to "id".
900 /// Method selectors used in a \@selector expression. Used for implementation
926 bool isSelfExpr(Expr *RExpr, const ObjCMethodDecl *Method);
2083 CXXMethodDecl *Method);
2227 void AddMethodCandidate(CXXMethodDecl *Method,
2766 void WarnConflictingTypedMethods(ObjCMethodDecl *Method,
2770 void CheckConflictingOverridingMethod(ObjCMethodDecl *Method,
2776 void WarnExactTypedMethods(ObjCMethodDecl *Method,
2808 /// an ivar synthesized for 'Method' and 'Method' i
2949 AddInstanceMethodToGlobalPool(ObjCMethodDecl *Method, bool impl=false) argument
2954 AddFactoryMethodToGlobalPool(ObjCMethodDecl *Method, bool impl=false) argument
[all...]
/external/clang/lib/ARCMigrate/
H A DObjCMT.cpp252 const ObjCMethodDecl *Method = Msg->getMethodDecl(); local
253 if (!Method)
255 if (!Method->isPropertyAccessor())
258 const ObjCPropertyDecl *Prop = Method->findPropertyDecl();
586 for (auto *Method : D->methods()) {
587 if (Method->isDeprecated())
589 bool PropertyInferred = migrateProperty(Ctx, D, Method);
596 migrateNsReturnsInnerPointer(Ctx, Method);
1178 ObjCMethodDecl *Method) {
1179 if (Method
1176 migrateProperty(ASTContext &Ctx, ObjCContainerDecl *D, ObjCMethodDecl *Method) argument
[all...]
/external/clang/lib/AST/
H A DASTContext.cpp1198 ASTContext::overridden_methods_begin(const CXXMethodDecl *Method) const {
1200 = OverriddenMethods.find(Method->getCanonicalDecl());
1208 ASTContext::overridden_methods_end(const CXXMethodDecl *Method) const {
1210 = OverriddenMethods.find(Method->getCanonicalDecl());
1218 ASTContext::overridden_methods_size(const CXXMethodDecl *Method) const {
1220 = OverriddenMethods.find(Method->getCanonicalDecl());
1227 void ASTContext::addOverriddenMethod(const CXXMethodDecl *Method, argument
1229 assert(Method->isCanonicalDecl() && Overridden->isCanonicalDecl());
1230 OverriddenMethods[Method].push_back(Overridden);
1244 const ObjCMethodDecl *Method local
[all...]
H A DDeclObjC.cpp612 ObjCMethodDecl *Method = nullptr; local
614 Method = Instance ? ImpDecl->getInstanceMethod(Sel)
618 if (!Method)
619 Method = getCategoryMethod(Sel, Instance);
624 if (!Instance && !Method && !getSuperClass()) {
625 Method = lookupInstanceMethod(Sel);
628 if (!Method)
629 Method = lookupPrivateMethod(Sel, true);
632 if (!Method && getSuperClass())
634 return Method;
969 CollectOverriddenMethodsRecurse(const ObjCContainerDecl *Container, const ObjCMethodDecl *Method, SmallVectorImpl<const ObjCMethodDecl *> &Methods, bool MovedToSuper) argument
1031 CollectOverriddenMethods(const ObjCContainerDecl *Container, const ObjCMethodDecl *Method, SmallVectorImpl<const ObjCMethodDecl *> &Methods) argument
1038 collectOverriddenMethodsSlow(const ObjCMethodDecl *Method, SmallVectorImpl<const ObjCMethodDecl *> &overridden) argument
1081 const ObjCMethodDecl *Method = this; local
[all...]
H A DExpr.cpp3144 if (CXXMethodDecl *Method
3146 if (Method->isTrivial()) {
3468 ObjCMethodDecl *Method,
3476 SelectorOrMethod(reinterpret_cast<uintptr_t>(Method? Method
3479 HasMethod(Method != nullptr), IsDelegateInitCall(false),
3494 ObjCMethodDecl *Method,
3501 SelectorOrMethod(reinterpret_cast<uintptr_t>(Method? Method
3504 HasMethod(Method !
3459 ObjCMessageExpr(QualType T, ExprValueKind VK, SourceLocation LBracLoc, SourceLocation SuperLoc, bool IsInstanceSuper, QualType SuperType, Selector Sel, ArrayRef<SourceLocation> SelLocs, SelectorLocationsKind SelLocsK, ObjCMethodDecl *Method, ArrayRef<Expr *> Args, SourceLocation RBracLoc, bool isImplicit) argument
3487 ObjCMessageExpr(QualType T, ExprValueKind VK, SourceLocation LBracLoc, TypeSourceInfo *Receiver, Selector Sel, ArrayRef<SourceLocation> SelLocs, SelectorLocationsKind SelLocsK, ObjCMethodDecl *Method, ArrayRef<Expr *> Args, SourceLocation RBracLoc, bool isImplicit) argument
3511 ObjCMessageExpr(QualType T, ExprValueKind VK, SourceLocation LBracLoc, Expr *Receiver, Selector Sel, ArrayRef<SourceLocation> SelLocs, SelectorLocationsKind SelLocsK, ObjCMethodDecl *Method, ArrayRef<Expr *> Args, SourceLocation RBracLoc, bool isImplicit) argument
3561 Create(const ASTContext &Context, QualType T, ExprValueKind VK, SourceLocation LBracLoc, SourceLocation SuperLoc, bool IsInstanceSuper, QualType SuperType, Selector Sel, ArrayRef<SourceLocation> SelLocs, ObjCMethodDecl *Method, ArrayRef<Expr *> Args, SourceLocation RBracLoc, bool isImplicit) argument
3586 Create(const ASTContext &Context, QualType T, ExprValueKind VK, SourceLocation LBracLoc, TypeSourceInfo *Receiver, Selector Sel, ArrayRef<SourceLocation> SelLocs, ObjCMethodDecl *Method, ArrayRef<Expr *> Args, SourceLocation RBracLoc, bool isImplicit) argument
3609 Create(const ASTContext &Context, QualType T, ExprValueKind VK, SourceLocation LBracLoc, Expr *Receiver, Selector Sel, ArrayRef<SourceLocation> SelLocs, ObjCMethodDecl *Method, ArrayRef<Expr *> Args, SourceLocation RBracLoc, bool isImplicit) argument
4133 ObjCArrayLiteral(ArrayRef<Expr *> Elements, QualType T, ObjCMethodDecl *Method, SourceRange SR) argument
4153 Create(const ASTContext &C, ArrayRef<Expr *> Elements, QualType T, ObjCMethodDecl * Method, SourceRange SR) argument
[all...]
H A DRecordLayoutBuilder.cpp2970 void ASTContext::setNonKeyFunction(const CXXMethodDecl *Method) { argument
2971 assert(Method == Method->getFirstDecl() &&
2978 I = KeyFunctions.find(Method->getParent());
2987 if (Ptr.get(getExternalSource()) == Method) {
2989 KeyFunctions.erase(Method->getParent());
H A DStmtPrinter.cpp1780 CXXMethodDecl *Method = Node->getCallOperator(); local
1782 for (auto P : Method->params()) {
1791 if (Method->isVariadic()) {
1802 = Method->getType()->getAs<FunctionProtoType>();
H A DVTableBuilder.cpp64 /// Method - The method decl of the overrider.
65 const CXXMethodDecl *Method; member in struct:__anon881::FinalOverriders::OverriderInfo
74 OverriderInfo() : Method(nullptr), VirtualBase(nullptr),
194 const UniqueVirtualMethod &Method = I->second.front(); local
196 const CXXRecordDecl *OverriderRD = Method.Method->getParent();
198 std::make_pair(OverriderRD, Method.Subobject))
202 Method.Subobject)];
205 assert(!Overrider.Method && "Overrider should not exist yet!");
208 Overrider.Method
[all...]
/external/clang/lib/CodeGen/
H A DCGDebugInfo.cpp1015 CGDebugInfo::getOrCreateMethodType(const CXXMethodDecl *Method, argument
1017 const FunctionProtoType *Func = Method->getType()->getAs<FunctionProtoType>();
1018 if (Method->isStatic())
1021 return getOrCreateInstanceMethodType(Method->getThisType(CGM.getContext()),
1091 CGDebugInfo::CreateCXXMemberFunction(const CXXMethodDecl *Method, argument
1094 isa<CXXConstructorDecl>(Method) || isa<CXXDestructorDecl>(Method);
1096 StringRef MethodName = getFunctionName(Method);
1097 llvm::MDSubroutineType *MethodTy = getOrCreateMethodType(Method, Unit);
1102 if (!IsCtorOrDtor && !isFunctionLocalClass(Method
1177 const auto *Method = dyn_cast<CXXMethodDecl>(I); local
[all...]
H A DCGObjC.cpp36 const ObjCMethodDecl *Method,
225 const ObjCMethodDecl *Method,
227 if (!Method)
230 if (!Method->hasRelatedResultType() ||
231 CGF.getContext().hasSameType(ExpT, Method->getReturnType()) ||
223 AdjustRelatedResultType(CodeGenFunction &CGF, QualType ExpT, const ObjCMethodDecl *Method, RValue Result) argument
H A DCGObjCGNU.cpp123 /// Instance Method Pointer type. This is a pointer to a function that takes,
492 const ObjCMethodDecl *Method) override;
499 const ObjCMethodDecl *Method) override;
505 const ObjCMethodDecl *Method) override;
1082 const ObjCMethodDecl *Method) {
1084 CGM.getContext().getObjCEncodingForMethodDecl(Method, SelTypes);
1085 return GetSelector(CGF, Method->getSelector(), SelTypes, false);
1225 const ObjCMethodDecl *Method) {
1246 MessageSendInfo MSI = getMessageSendInfo(Method, ResultType, ActualArgs);
1329 const ObjCMethodDecl *Method) {
1081 GetSelector(CodeGenFunction &CGF, const ObjCMethodDecl *Method) argument
1216 GenerateMessageSendSuper(CodeGenFunction &CGF, ReturnValueSlot Return, QualType ResultType, Selector Sel, const ObjCInterfaceDecl *Class, bool isCategoryImpl, llvm::Value *Receiver, bool IsClassMessage, const CallArgList &CallArgs, const ObjCMethodDecl *Method) argument
1322 GenerateMessageSend(CodeGenFunction &CGF, ReturnValueSlot Return, QualType ResultType, Selector Sel, llvm::Value *Receiver, const CallArgList &CallArgs, const ObjCInterfaceDecl *Class, const ObjCMethodDecl *Method) argument
1489 llvm::Constant *Method = local
2603 llvm::Function *Method local
[all...]
H A DCGObjCMac.cpp1189 const ObjCMethodDecl *Method) override;
1197 const ObjCMethodDecl *Method) override;
1208 const ObjCMethodDecl *Method) override;
1361 const ObjCMethodDecl *Method);
1464 const ObjCMethodDecl *Method) override;
1472 const ObjCMethodDecl *Method) override;
1484 const ObjCMethodDecl *Method) override
1485 { return EmitSelector(CGF, Method->getSelector()); }
1583 const ObjCMethodDecl *Method) {
1602 if (Method) {
1581 complete(CodeGenFunction &CGF, RValue result, QualType resultType, const CallArgList &CallArgs, const ObjCMethodDecl *Method) argument
1718 GetSelector(CodeGenFunction &CGF, const ObjCMethodDecl *Method) argument
1774 GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF, ReturnValueSlot Return, QualType ResultType, Selector Sel, const ObjCInterfaceDecl *Class, bool isCategoryImpl, llvm::Value *Receiver, bool IsClassMessage, const CodeGen::CallArgList &CallArgs, const ObjCMethodDecl *Method) argument
1835 GenerateMessageSend(CodeGen::CodeGenFunction &CGF, ReturnValueSlot Return, QualType ResultType, Selector Sel, llvm::Value *Receiver, const CallArgList &CallArgs, const ObjCInterfaceDecl *Class, const ObjCMethodDecl *Method) argument
1850 EmitMessageSend(CodeGen::CodeGenFunction &CGF, ReturnValueSlot Return, QualType ResultType, llvm::Value *Sel, llvm::Value *Arg0, QualType Arg0Ty, bool IsSuper, const CallArgList &CallArgs, const ObjCMethodDecl *Method, const ObjCCommonTypesHelper &ObjCTypes) argument
3349 llvm::Function *Method = local
6582 GenerateMessageSend(CodeGen::CodeGenFunction &CGF, ReturnValueSlot Return, QualType ResultType, Selector Sel, llvm::Value *Receiver, const CallArgList &CallArgs, const ObjCInterfaceDecl *Class, const ObjCMethodDecl *Method) argument
6717 GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF, ReturnValueSlot Return, QualType ResultType, Selector Sel, const ObjCInterfaceDecl *Class, bool isCategoryImpl, llvm::Value *Receiver, bool IsClassMessage, const CodeGen::CallArgList &CallArgs, const ObjCMethodDecl *Method) argument
[all...]
/external/clang/lib/Edit/
H A DRewriteObjCFoundationAPI.cpp295 const ObjCMethodDecl *Method = Msg->getMethodDecl(); local
296 if (!Method)
300 NS.getASTContext().getObjContainingInterface(Method);
/external/clang/lib/Frontend/
H A DCompilerInvocation.cpp555 unsigned Method = llvm::StringSwitch<unsigned>(Name) local
560 if (Method == ~0U) {
565 static_cast<CodeGenOptions::ObjCDispatchMethodKind>(Method));

Completed in 507 milliseconds

123