Searched refs:Methods (Results 1 - 20 of 20) sorted by relevance

/freebsd-11-stable/contrib/sqlite3/
H A DReplace.cs85 #region Private Support Methods
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclObjC.cpp3484 Selector Sel, SmallVectorImpl<ObjCMethodDecl *> &Methods,
3500 Methods.push_back(M->getMethod());
3504 if (!Methods.empty())
3505 return Methods.size() > 1;
3516 Methods.push_back(M->getMethod());
3519 return Methods.size() > 1;
3524 bool receiverIdOrClass, SmallVectorImpl<ObjCMethodDecl *> &Methods) {
3529 for (auto *M : Methods)
3559 SmallVector<ObjCMethodDecl *, 4> Methods; local
3567 void Sema::DiagnoseMultipleMethodInGlobalPool(SmallVectorImpl<ObjCMethodDecl*> &Methods, argument
3483 CollectMultipleMethodsInGlobalPool( Selector Sel, SmallVectorImpl<ObjCMethodDecl *> &Methods, bool InstanceFirst, bool CheckTheOther, const ObjCObjectType *TypeBound) argument
3522 AreMultipleMethodsInGlobalPool( Selector Sel, ObjCMethodDecl *BestMethod, SourceRange R, bool receiverIdOrClass, SmallVectorImpl<ObjCMethodDecl *> &Methods) argument
3680 SmallVector<const ObjCMethodDecl *, 8> Methods; local
[all...]
H A DSemaExprObjC.cpp2818 SmallVector<ObjCMethodDecl*, 4> Methods; local
2820 CollectMultipleMethodsInGlobalPool(Sel, Methods, true/*InstanceFirst*/,
2822 if (!Methods.empty()) {
2825 Method = Methods[0];
2828 SelectBestMethod(Sel, ArgsIn, Method->isInstanceMethod(), Methods))
2833 receiverIsIdLike, Methods))
2878 SmallVector<ObjCMethodDecl*, 4> Methods; local
2879 CollectMultipleMethodsInGlobalPool(Sel, Methods,
2882 if (!Methods.empty()) {
2885 Method = Methods[
2966 SmallVector<ObjCMethodDecl*, 4> Methods; local
[all...]
H A DSemaOverload.cpp6356 SmallVectorImpl<ObjCMethodDecl *> &Methods) {
6357 if (Methods.size() <= 1)
6360 for (unsigned b = 0, e = Methods.size(); b < e; b++) {
6362 ObjCMethodDecl *Method = Methods[b];
6429 else if (Match && NumNamedArgs == 0 && Methods.size() > 1) {
6432 for (unsigned b = 0, e = Methods.size(); b < e; b++) {
6433 QualType ReturnT = Methods[b]->getReturnType();
6435 return Methods[b];
6733 assert(Proto && "Methods without a prototype cannot be overloaded");
H A DSemaDeclCXX.cpp5750 // Methods and method templates.
9335 /// Check whether any most overridden method from MD in Methods
9338 const llvm::SmallPtrSetImpl<const CXXMethodDecl *> &Methods) {
9340 return Methods.count(MD->getCanonicalDecl());
9342 if (CheckMostOverridenMethods(O, Methods))
9395 /// Add the most overriden methods from MD to Methods
9397 llvm::SmallPtrSetImpl<const CXXMethodDecl *>& Methods) {
9399 Methods.insert(MD->getCanonicalDecl());
9402 AddMostOverridenMethods(O, Methods);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h702 ArrayRef<StringRef> Methods)
706 MethodNames.insert(MethodNames.end(), Methods.begin(), Methods.end());
761 MethodOverloadListRecord(ArrayRef<OneMethodRecord> Methods) argument
762 : TypeRecord(TypeRecordKind::MethodOverloadList), Methods(Methods) {}
764 ArrayRef<OneMethodRecord> getMethods() const { return Methods; }
766 std::vector<OneMethodRecord> Methods; member in class:llvm::codeview::MethodOverloadListRecord
700 VFTableRecord(TypeIndex CompleteClass, TypeIndex OverriddenVFTable, uint32_t VFPtrOffset, StringRef Name, ArrayRef<StringRef> Methods) argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp539 llvm::SmallVectorImpl<const ObjCMethodDecl *> &Methods) const {
552 Methods.push_back(MD);
556 Methods.push_back(MD);
1190 SmallVectorImpl<const ObjCMethodDecl *> &Methods,
1209 Methods.push_back(Overridden);
1214 CollectOverriddenMethodsRecurse(P, Method, Methods, MovedToSuper);
1226 Methods.push_back(Overridden);
1232 CollectOverriddenMethodsRecurse(P, Method, Methods, MovedToSuper);
1237 CollectOverriddenMethodsRecurse(P, Method, Methods, MovedToSuper);
1240 CollectOverriddenMethodsRecurse(Cat, Method, Methods, MovedToSupe
1188 CollectOverriddenMethodsRecurse(const ObjCContainerDecl *Container, const ObjCMethodDecl *Method, SmallVectorImpl<const ObjCMethodDecl *> &Methods, bool MovedToSuper) argument
1248 CollectOverriddenMethods(const ObjCContainerDecl *Container, const ObjCMethodDecl *Method, SmallVectorImpl<const ObjCMethodDecl *> &Methods) argument
[all...]
H A DVTableBuilder.cpp181 const OverridingMethods &Methods = Overrider.second; local
183 for (const auto &M : Methods) {
598 /// Methods for iterating over the components.
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCGNU.cpp457 ArrayRef<const ObjCMethodDecl*> Methods,
491 llvm::Constant *Methods,
502 ArrayRef<const ObjCMethodDecl*> Methods);
505 void EmitProtocolMethodList(T &&Methods, llvm::Constant *&Required, argument
509 for (const auto *I : Methods)
1154 GenerateProtocolMethodList(ArrayRef<const ObjCMethodDecl*> Methods) override {
1173 MethodList.addInt(IntTy, Methods.size());
1180 for (auto *M : Methods) {
2772 ArrayRef<const ObjCMethodDecl*> Methods,
2774 if (Methods
2770 GenerateMethodList(StringRef ClassName, StringRef CategoryName, ArrayRef<const ObjCMethodDecl*> Methods, bool isClassMethodList) argument
2875 GenerateClassStructure( llvm::Constant *MetaClass, llvm::Constant *SuperClass, unsigned info, const char *Name, llvm::Constant *Version, llvm::Constant *InstanceSize, llvm::Constant *IVars, llvm::Constant *Methods, llvm::Constant *Protocols, llvm::Constant *IvarOffsets, llvm::Constant *Properties, llvm::Constant *StrongIvarBitmap, llvm::Constant *WeakIvarBitmap, bool isMeta) argument
2988 GenerateProtocolMethodList(ArrayRef<const ObjCMethodDecl*> Methods) argument
[all...]
H A DCGObjCMac.cpp1178 SmallVector<const ObjCMethodDecl *, 4> Methods[NumProtocolMethodLists]; member in class:__anon382::__anon383::ProtocolMethodLists
1186 result.Methods[index].push_back(MD);
1202 // Methods is already in the correct order for both ABIs.
1203 for (auto &list : Methods) {
1216 getMethodListKind(kind), Methods[kind]);
1278 ArrayRef<const ObjCMethodDecl *> Methods);
1289 ArrayRef<const ObjCMethodDecl *> Methods);
1461 ArrayRef<const ObjCMethodDecl *> Methods);
3405 SmallVector<const ObjCMethodDecl *, 16> Methods[NumMethodLists]; local
3408 Methods[unsigne
3588 SmallVector<const ObjCMethodDecl *, 16> Methods[NumMethodLists]; local
3654 EmitMetaClass(const ObjCImplementationDecl *ID, llvm::Constant *Protocols, ArrayRef<const ObjCMethodDecl*> Methods) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DUdtRecordCompleter.cpp197 for (const OneMethodRecord &method : method_list.Methods)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp2108 MethodsMap Methods; member in struct:llvm::ClassInfo
2176 Info.Methods[SP->getRawName()].push_back(SP);
2397 for (auto &MethodItr : Info.Methods) {
2400 std::vector<OneMethodRecord> Methods; local
2409 Methods.push_back(OneMethodRecord(
2415 assert(!Methods.empty() && "Empty methods map entry");
2416 if (Methods.size() == 1)
2417 ContinuationBuilder.writeMemberType(Methods[0]);
2421 MethodOverloadListRecord MOLR(Methods);
2424 OverloadedMethodRecord OMR(Methods
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp2951 data_type_ref Methods) {
2958 for (const ObjCMethodList *Method = &Methods.Instance; Method;
2962 for (const ObjCMethodList *Method = &Methods.Factory; Method;
2987 data_type_ref Methods, unsigned DataLen) {
2992 LE.write<uint32_t>(Methods.ID);
2994 for (const ObjCMethodList *Method = &Methods.Instance; Method;
3000 for (const ObjCMethodList *Method = &Methods.Factory; Method;
3005 unsigned InstanceBits = Methods.Instance.getBits();
3008 Methods.Instance.hasMoreThanOneDecl();
3012 unsigned FactoryBits = Methods
2950 EmitKeyDataLength(raw_ostream& Out, Selector Sel, data_type_ref Methods) argument
2986 EmitData(raw_ostream& Out, key_type_ref, data_type_ref Methods, unsigned DataLen) argument
[all...]
H A DASTReader.cpp8046 static void addMethodsToPool(Sema &S, ArrayRef<ObjCMethodDecl *> Methods,
8048 for (unsigned I = 0, N = Methods.size(); I != N; ++I) {
8049 S.addMethodToGlobalList(&List, Methods[I]);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp6318 ArrayRef<ObjCMethodDecl *> Methods,
6322 if (Methods.size() > 0) {
6324 Write_method_list_t_TypeDecl(Result, Methods.size());
6329 Result += "\t"; Result += utostr(Methods.size()); Result += ",\n";
6330 for (unsigned i = 0, e = Methods.size(); i < e; i++) {
6331 ObjCMethodDecl *MD = Methods[i];
6696 ArrayRef<ObjCMethodDecl *> Methods,
6699 if (Methods.size() == 0)
6706 for (unsigned i = 0, e = Methods.size(); i < e; i++) {
6707 ObjCMethodDecl *MD = Methods[
6316 Write_method_list_t_initializer(RewriteModernObjC &RewriteObj, ASTContext *Context, std::string &Result, ArrayRef<ObjCMethodDecl *> Methods, StringRef VarName, StringRef TopLevelDeclName, bool MethodImpl) argument
6694 Write__extendedMethodTypes_initializer(RewriteModernObjC &RewriteObj, ASTContext *Context, std::string &Result, ArrayRef<ObjCMethodDecl *> Methods, StringRef VarName, StringRef ProtocolName) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalTypeDumper.cpp478 for (auto &M : Overloads.Methods)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeRecordMapping.cpp559 error(IO.mapVectorTail(Record.Methods, MapOneMethodRecord(true), "Method"));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypes.cpp594 IO.mapRequired("Methods", Record.Methods);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h1742 /// Methods for marking which expressions involve dereferencing a pointer
4013 SmallVectorImpl<ObjCMethodDecl*>& Methods,
4020 SmallVectorImpl<ObjCMethodDecl*>& Methods);
4023 DiagnoseMultipleMethodInGlobalPool(SmallVectorImpl<ObjCMethodDecl*> &Methods,
4032 SmallVectorImpl<ObjCMethodDecl*>& Methods);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h1527 llvm::SmallVectorImpl<const ObjCMethodDecl *> &Methods) const;

Completed in 670 milliseconds