| /minix3/external/bsd/llvm/dist/clang/lib/Sema/ |
| H A D | SemaDeclObjC.cpp | 2329 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 D | SemaOverload.cpp | 5690 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 D | SemaDeclCXX.cpp | 6189 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 D | DeclObjC.cpp | 411 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 D | VTableBuilder.cpp | 181 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 D | interface2.m | 25 // Methods match
|
| H A D | interface1.m | 25 // Methods match
|
| /minix3/external/bsd/llvm/dist/clang/tools/libclang/ |
| H A D | CIndexHigh.cpp | 25 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 D | CGObjCGNU.cpp | 425 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 D | CGObjCMac.cpp | 1122 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 D | README.txt.system | 43 7. No Virtual Methods
|
| /minix3/external/bsd/llvm/dist/clang/test/CodeGenObjC/ |
| H A D | dot-syntax-1.m | 41 // Methods above property...
|
| /minix3/external/bsd/llvm/dist/clang/test/SemaObjC/ |
| H A D | arc-repeated-weak.mm | 293 @interface Test (Methods) category 296 @implementation Test (Methods) category
|
| /minix3/external/bsd/llvm/dist/clang/lib/Serialization/ |
| H A D | ASTWriter.cpp | 2890 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 D | ASTReader.cpp | 7134 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 D | RewriteModernObjC.cpp | 6440 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 D | flex.info | 135 Node: Accessor Methods129394
|
| H A D | flex.info-2 | 66 * accessor functions, use of: Accessor Methods. (line 18) 271 * reentrant, accessor functions: Accessor Methods. (line 6)
|
| H A D | flex.info-1 | 122 * 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 D | SystemLibrary.rst | 121 No Virtual Methods
|
| H A D | MergeFunctions.rst | 661 Methods described above implement order relationship. And latter, could be used
|
| /minix3/external/bsd/llvm/dist/clang/docs/ |
| H A D | ObjectiveCLiterals.rst | 303 Subscripting Methods
|
| H A D | AutomaticReferenceCounting.rst | 401 ``__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 D | DeclObjC.h | 970 llvm::SmallVectorImpl<const ObjCMethodDecl *> &Methods) const;
|
| /minix3/crypto/external/bsd/heimdal/dist/lib/wind/ |
| H A D | rfc3490.txt | 1054 there will be security as well as operational implications. Methods
|