Home
last modified time | relevance | path

Searched refs:Methods (Results 1 – 25 of 32) sorted by relevance

12

/minix3/external/bsd/llvm/dist/clang/lib/Sema/
H A DSemaDeclObjC.cpp2329 Selector Sel, SmallVectorImpl<ObjCMethodDecl *> &Methods, bool instance) { in CollectMultipleMethodsInGlobalPool() argument
2340 Methods.push_back(M->getMethod()); in CollectMultipleMethodsInGlobalPool()
2341 return Methods.size() > 1; in CollectMultipleMethodsInGlobalPool()
2366 SmallVector<ObjCMethodDecl *, 4> Methods; in LookupMethodInGlobalPool() local
2373 Methods.push_back(M->getMethod()); in LookupMethodInGlobalPool()
2379 if (Methods.empty()) in LookupMethodInGlobalPool()
2382 if (Methods.size() == 1) in LookupMethodInGlobalPool()
2383 return Methods[0]; in LookupMethodInGlobalPool()
2394 for (unsigned I = 1, N = Methods.size(); I != N; ++I) { in LookupMethodInGlobalPool()
2395 if (!MatchTwoMethodDeclarations(Methods[0], Methods[I], MMS_strict)) { in LookupMethodInGlobalPool()
[all …]
H A DSemaOverload.cpp5690 SmallVector<ObjCMethodDecl*, 4> Methods; in SelectBestMethod() local
5691 if (!CollectMultipleMethodsInGlobalPool(Sel, Methods, IsInstance)) in SelectBestMethod()
5694 for (unsigned b = 0, e = Methods.size(); b < e; b++) { in SelectBestMethod()
5696 ObjCMethodDecl *Method = Methods[b]; in SelectBestMethod()
5758 else if (Match && NumNamedArgs == 0 && Methods.size() > 1) { in SelectBestMethod()
5761 for (unsigned b = 0, e = Methods.size(); b < e; b++) { in SelectBestMethod()
5762 QualType ReturnT = Methods[b]->getReturnType(); in SelectBestMethod()
5764 return Methods[b]; in SelectBestMethod()
H A DSemaDeclCXX.cpp6189 const llvm::SmallPtrSetImpl<const CXXMethodDecl *>& Methods) { in CheckMostOverridenMethods() argument
6191 return Methods.count(MD->getCanonicalDecl()); in CheckMostOverridenMethods()
6195 if (CheckMostOverridenMethods(*I, Methods)) in CheckMostOverridenMethods()
6251 llvm::SmallPtrSetImpl<const CXXMethodDecl *>& Methods) { in AddMostOverridenMethods() argument
6253 Methods.insert(MD->getCanonicalDecl()); in AddMostOverridenMethods()
6257 AddMostOverridenMethods(*I, Methods); in AddMostOverridenMethods()
/minix3/external/bsd/llvm/dist/clang/lib/AST/
H A DDeclObjC.cpp411 llvm::SmallVectorImpl<const ObjCMethodDecl *> &Methods) const { in getDesignatedInitializers()
424 Methods.push_back(MD); in getDesignatedInitializers()
428 Methods.push_back(MD); in getDesignatedInitializers()
973 SmallVectorImpl<const ObjCMethodDecl *> &Methods, in CollectOverriddenMethodsRecurse() argument
993 Methods.push_back(Overridden); in CollectOverriddenMethodsRecurse()
998 CollectOverriddenMethodsRecurse(P, Method, Methods, MovedToSuper); in CollectOverriddenMethodsRecurse()
1010 Methods.push_back(Overridden); in CollectOverriddenMethodsRecurse()
1016 CollectOverriddenMethodsRecurse(P, Method, Methods, MovedToSuper); in CollectOverriddenMethodsRecurse()
1022 CollectOverriddenMethodsRecurse(P, Method, Methods, MovedToSuper); in CollectOverriddenMethodsRecurse()
1025 CollectOverriddenMethodsRecurse(Cat, Method, Methods, MovedToSuper); in CollectOverriddenMethodsRecurse()
[all …]
H A DVTableBuilder.cpp181 const OverridingMethods& Methods = I->second; in FinalOverriders() local
183 for (OverridingMethods::const_iterator I = Methods.begin(), in FinalOverriders()
184 E = Methods.end(); I != E; ++I) { in FinalOverriders()
1104 OverriddenMethodsSetTy *Methods; member
1108 return Methods->insert(MD).second; in visit()
/minix3/external/bsd/llvm/dist/clang/test/ASTMerge/Inputs/
H A Dinterface2.m25 // Methods match
H A Dinterface1.m25 // Methods match
/minix3/external/bsd/llvm/dist/clang/tools/libclang/
H A DCIndexHigh.cpp25 SmallVectorImpl<const Decl *> &Methods) { in getTopOverriddenMethods() argument
35 Methods.push_back(D->getCanonicalDecl()); in getTopOverriddenMethods()
41 getTopOverriddenMethods(TU, cxcursor::getCursorDecl(*I), Methods); in getTopOverriddenMethods()
/minix3/external/bsd/llvm/dist/clang/lib/CodeGen/
H A DCGObjCGNU.cpp425 llvm::Constant *Methods,
1478 std::vector<llvm::Constant*> Methods; in GenerateMethodList() local
1493 Methods.push_back(llvm::ConstantStruct::get(ObjCMethodTy, Elements)); in GenerateMethodList()
1498 Methods.size()); in GenerateMethodList()
1500 Methods); in GenerateMethodList()
1511 Methods.clear(); in GenerateMethodList()
1512 Methods.push_back(llvm::ConstantPointerNull::get( in GenerateMethodList()
1514 Methods.push_back(llvm::ConstantInt::get(Int32Ty, MethodTypes.size())); in GenerateMethodList()
1515 Methods.push_back(MethodArray); in GenerateMethodList()
1518 return MakeGlobal(ObjCMethodListTy, Methods, ".objc_method_list"); in GenerateMethodList()
[all …]
H A DCGObjCMac.cpp1122 ArrayRef<llvm::Constant*> Methods);
1132 ArrayRef<llvm::Constant*> Methods);
1147 ArrayRef<llvm::Constant*> Methods);
1327 ArrayRef<llvm::Constant*> Methods);
2866 ArrayRef<llvm::Constant*> Methods) { in EmitMethodDescList() argument
2868 if (Methods.empty()) in EmitMethodDescList()
2872 Values[0] = llvm::ConstantInt::get(ObjCTypes.IntTy, Methods.size()); in EmitMethodDescList()
2874 Methods.size()); in EmitMethodDescList()
2875 Values[1] = llvm::ConstantArray::get(AT, Methods); in EmitMethodDescList()
3102 ArrayRef<llvm::Constant*> Methods) { in EmitMetaClass() argument
[all …]
/minix3/external/bsd/llvm/dist/llvm/lib/Support/
H A DREADME.txt.system43 7. No Virtual Methods
/minix3/external/bsd/llvm/dist/clang/test/CodeGenObjC/
H A Ddot-syntax-1.m41 // Methods above property...
/minix3/external/bsd/llvm/dist/clang/test/SemaObjC/
H A Darc-repeated-weak.mm293 @interface Test (Methods) category
296 @implementation Test (Methods) category
/minix3/external/bsd/llvm/dist/clang/lib/Serialization/
H A DASTWriter.cpp2890 data_type_ref Methods) { in EmitKeyDataLength() argument
2896 for (const ObjCMethodList *Method = &Methods.Instance; Method; in EmitKeyDataLength()
2900 for (const ObjCMethodList *Method = &Methods.Factory; Method; in EmitKeyDataLength()
2924 data_type_ref Methods, unsigned DataLen) { in EmitData() argument
2928 LE.write<uint32_t>(Methods.ID); in EmitData()
2930 for (const ObjCMethodList *Method = &Methods.Instance; Method; in EmitData()
2936 for (const ObjCMethodList *Method = &Methods.Factory; Method; in EmitData()
2941 unsigned InstanceBits = Methods.Instance.getBits(); in EmitData()
2944 Methods.Instance.hasMoreThanOneDecl(); in EmitData()
2948 unsigned FactoryBits = Methods.Factory.getBits(); in EmitData()
[all …]
H A DASTReader.cpp7134 static void addMethodsToPool(Sema &S, ArrayRef<ObjCMethodDecl *> Methods, in addMethodsToPool() argument
7136 for (unsigned I = 0, N = Methods.size(); I != N; ++I) { in addMethodsToPool()
7137 S.addMethodToGlobalList(&List, Methods[I]); in addMethodsToPool()
/minix3/external/bsd/llvm/dist/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp6440 ArrayRef<ObjCMethodDecl *> Methods, in Write_method_list_t_initializer() argument
6444 if (Methods.size() > 0) { in Write_method_list_t_initializer()
6446 Write_method_list_t_TypeDecl(Result, Methods.size()); in Write_method_list_t_initializer()
6451 Result += "\t"; Result += utostr(Methods.size()); Result += ",\n"; in Write_method_list_t_initializer()
6452 for (unsigned i = 0, e = Methods.size(); i < e; i++) { in Write_method_list_t_initializer()
6453 ObjCMethodDecl *MD = Methods[i]; in Write_method_list_t_initializer()
6818 ArrayRef<ObjCMethodDecl *> Methods, in Write__extendedMethodTypes_initializer() argument
6821 if (Methods.size() == 0) in Write__extendedMethodTypes_initializer()
6828 for (unsigned i = 0, e = Methods.size(); i < e; i++) { in Write__extendedMethodTypes_initializer()
6829 ObjCMethodDecl *MD = Methods[i]; in Write__extendedMethodTypes_initializer()
/minix3/external/bsd/flex/dist/doc/
H A Dflex.info135 Node: Accessor Methods129394
H A Dflex.info-266 * accessor functions, use of: Accessor Methods. (line 18)
271 * reentrant, accessor functions: Accessor Methods. (line 6)
H A Dflex.info-1122 * Accessor Methods::
3250 * Accessor Methods::
3323 File: flex.info, Node: Init and Destroy Functions, Next: Accessor Methods, Prev: Global Replacem…
3386 File: flex.info, Node: Accessor Methods, Next: Extra Data, Prev: Init and Destroy Functions, Up…
3420 File: flex.info, Node: Extra Data, Next: About yyscan_t, Prev: Accessor Methods, Up: Reentrant …
/minix3/external/bsd/llvm/dist/llvm/docs/
H A DSystemLibrary.rst121 No Virtual Methods
H A DMergeFunctions.rst661 Methods described above implement order relationship. And latter, could be used
/minix3/external/bsd/llvm/dist/clang/docs/
H A DObjectiveCLiterals.rst303 Subscripting Methods
H A DAutomaticReferenceCounting.rst401 ``__attribute__((ns_consumes_self))`` to the method declaration. Methods in
455 Methods in the ``alloc``, ``copy``, ``init``, ``mutableCopy``, and ``new``
1254 Methods in the ``alloc``, ``copy``, ``mutableCopy``, and ``new`` families ---
1273 Methods in the ``init`` family implicitly :ref:`consume
/minix3/external/bsd/llvm/dist/clang/include/clang/AST/
H A DDeclObjC.h970 llvm::SmallVectorImpl<const ObjCMethodDecl *> &Methods) const;
/minix3/crypto/external/bsd/heimdal/dist/lib/wind/
H A Drfc3490.txt1054 there will be security as well as operational implications. Methods

12