| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | NSAPI.cpp | 48 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("stringWithString")); in getNSStringSelector() 51 Sel = Ctx.Selectors.getUnarySelector( in getNSStringSelector() 55 Sel = Ctx.Selectors.getUnarySelector( in getNSStringSelector() 61 Sel = Ctx.Selectors.getSelector(2, KeyIdents); in getNSStringSelector() 65 Sel= Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("stringWithCString")); in getNSStringSelector() 68 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("initWithString")); in getNSStringSelector() 82 Sel = Ctx.Selectors.getNullarySelector(&Ctx.Idents.get("array")); in getNSArraySelector() 85 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("arrayWithArray")); in getNSArraySelector() 88 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("arrayWithObject")); in getNSArraySelector() 91 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("arrayWithObjects")); in getNSArraySelector() [all …]
|
| H A D | OpenMPClause.cpp | 2771 for (const OMPTraitSelector &Selector : Set.Selectors) { in getAsVariantMatchInfo() 2828 for (const OMPTraitSelector &Selector : Set.Selectors) { in print() 2876 for (const OMPTraitSelector &Selector : Set.Selectors) { in getMangledName() 2912 Set.Selectors.push_back(OMPTraitSelector()); in OMPTraitInfo() 2913 OMPTraitSelector &Selector = Set.Selectors.back(); in OMPTraitInfo()
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | ObjCMissingSuperCallChecker.cpp | 111 Selector Sel = Ctx.Selectors.getSelector(Descriptor.ArgumentCount, &II); in fillSelectors() 119 const SelectorDescriptor Selectors[] = { in initializeSelectors() local 134 fillSelectors(Ctx, Selectors, "UIViewController"); in initializeSelectors() 138 const SelectorDescriptor Selectors[] = { in initializeSelectors() local 141 fillSelectors(Ctx, Selectors, "UIResponder"); in initializeSelectors() 145 const SelectorDescriptor Selectors[] = { in initializeSelectors() local 149 fillSelectors(Ctx, Selectors, "NSResponder"); in initializeSelectors() 153 const SelectorDescriptor Selectors[] = { in initializeSelectors() local 157 fillSelectors(Ctx, Selectors, "NSDocument"); in initializeSelectors()
|
| H A D | LocalizationChecker.cpp | 137 {Ctx.Selectors.getNullarySelector(&Ctx.Idents.get(#method)), argument}); 140 {Ctx.Selectors.getUnarySelector(&Ctx.Idents.get(#method)), argument}); 142 receiver##M.insert({Ctx.Selectors.getSelector(count, method_list), argument}); 605 LSM.insert({&Ctx.Idents.get(receiver), Ctx.Selectors.getNullarySelector( \ 609 Ctx.Selectors.getUnarySelector(&Ctx.Idents.get(method_name))}); 612 Ctx.Selectors.getSelector(arguments, method_list)});
|
| H A D | ObjCSuperDeallocChecker.cpp | 225 SELdealloc = Ctx.Selectors.getSelector(0, &IIdealloc); in initIdentifierInfoAndSelectors()
|
| H A D | CheckObjCDealloc.cpp | 773 DeallocSel = Ctx.Selectors.getSelector(0, &DeallocII); in initIdentifierInfoAndSelectors() 774 ReleaseSel = Ctx.Selectors.getSelector(0, &ReleaseII); in initIdentifierInfoAndSelectors()
|
| /freebsd/contrib/llvm-project/lldb/source/DataFormatters/ |
| H A D | FormatterBytecode.h | 24 enum Selectors : uint8_t { enum 39 CompilerType, Selectors>; 57 DataStack &data, Selectors sel); 61 std::string toString(FormatterBytecode::Selectors sel);
|
| H A D | FormatterBytecode.cpp | 35 std::string toString(FormatterBytecode::Selectors sel) { in toString() 75 } else if (auto sel = std::get_if<FormatterBytecode::Selectors>(&d)) { in toString() 126 else if (auto sel = std::get_if<FormatterBytecode::Selectors>(&arg)) in FormatImpl() 163 if (!std::holds_alternative<Selectors>(elem)) in TypeCheck() 185 DataStack &data, Selectors sel) { in Interpret() 320 data.Push(Selectors(cur_block.getU8(pc))); in Interpret() 443 Selectors sel = data.Pop<Selectors>(); in Interpret()
|
| H A D | FormatterBytecode.def | 63 // Selectors.
|
| H A D | TypeSummary.cpp | 292 } else if (auto sel = std::get_if<FormatterBytecode::Selectors>(&top)) { in FormatObject()
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | ObjCNoReturn.cpp | 40 C.Selectors.getSelector(II.size(), &II[0]); in ObjCNoReturn() 45 C.Selectors.getSelector(II.size(), &II[0]); in ObjCNoReturn()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Analysis/ |
| H A D | SelectorExtras.h | 23 return Ctx.Selectors.getSelector(II.size(), &II[0]); in getKeywordSelector()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaCodeComplete.cpp | 7796 VisitedSelectorSet &Selectors, bool AllowSameLength, in AddObjCMethods() argument 7813 if (!Selectors.insert(M->getSelector()).second) in AddObjCMethods() 7834 Selectors, AllowSameLength, Results, false, IsRootClass); in AddObjCMethods() 7844 Selectors, AllowSameLength, Results, false, IsRootClass); in AddObjCMethods() 7849 CurContext, Selectors, AllowSameLength, Results, in AddObjCMethods() 7859 Selectors, AllowSameLength, Results, false, IsRootClass); in AddObjCMethods() 7864 Selectors, AllowSameLength, Results, InOriginalClass, in AddObjCMethods() 7872 SelIdents, CurContext, Selectors, AllowSameLength, Results, in AddObjCMethods() 7878 Selectors, AllowSameLength, Results, InOriginalClass, in AddObjCMethods() 7901 VisitedSelectorSet Selectors; in CodeCompleteObjCPropertyGetter() local [all …]
|
| H A D | SemaPseudoObject.cpp | 1058 Selector GetterSelector = S.Context.Selectors.getSelector(1, KeyIdents); in CheckKeyForObjCARCConversion() 1100 AtIndexGetterSelector = S.Context.Selectors.getSelector(1, KeyIdents); in findAtIndexGetter() 1107 AtIndexGetterSelector = S.Context.Selectors.getSelector(1, KeyIdents); in findAtIndexGetter() 1202 AtIndexSetterSelector = S.Context.Selectors.getSelector(2, KeyIdents); in findAtIndexSetter() 1209 AtIndexSetterSelector = S.Context.Selectors.getSelector(2, KeyIdents); in findAtIndexSetter()
|
| H A D | SemaExprObjC.cpp | 562 Selector stringWithUTF8String = Context.Selectors.getUnarySelector(II); in BuildObjCBoxedExpr() 671 Selector ValueWithBytesObjCType = Context.Selectors.getSelector(2, II); in BuildObjCBoxedExpr() 3432 RespondsToSelectorSel = Context.Selectors.getUnarySelector(SelectorId); in ActOnInstanceMessage() 4265 Selector Sel = Context.Selectors.getUnarySelector(CMId); in checkObjCBridgeRelatedComponents() 4279 Selector Sel = Context.Selectors.getNullarySelector(IMId); in checkObjCBridgeRelatedComponents()
|
| H A D | SemaObjC.cpp | 164 Selector selector = Context.Selectors.getSelector(3, &selectorIdents[0]); in CheckObjCForCollectionOperand()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangASTSource.cpp | 719 original_selector = original_ctx->Selectors.getSelector(0, &ident); in FindObjCMethodDeclsWithOrigin() 726 original_selector = original_ctx->Selectors.getSelector(1, &ident); in FindObjCMethodDeclsWithOrigin() 739 original_ctx->Selectors.getSelector(num_args, idents.data()); in FindObjCMethodDeclsWithOrigin()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleObjCDeclVendor.cpp | 344 clang::Selector sel = ast_ctx.Selectors.getSelector( in BuildMethod()
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGObjC.cpp | 1841 CGM.getContext().Selectors.getSelector(std::size(II), &II[0]); in EmitObjCForCollectionStmt() 2769 Selector AllocSel = getContext().Selectors.getSelector(0, &II); in EmitObjCMRRAutoreleasePoolPush() 2779 Selector InitSel = getContext().Selectors.getSelector(0, &II); in EmitObjCMRRAutoreleasePoolPush() 2816 Selector DrainSel = getContext().Selectors.getSelector(0, &II); in EmitObjCMRRAutoreleasePoolPop() 3957 getContext().Selectors.getNullarySelector(CopyID); in EmitBlockCopyAndAutorelease() 3960 getContext().Selectors.getNullarySelector(AutoreleaseID); in EmitBlockCopyAndAutorelease()
|
| H A D | CGObjCMac.cpp | 1490 return CGM.getContext().Selectors.getSelector(0, &II); in GetNullarySelector() 1495 return CGM.getContext().Selectors.getSelector(1, &II); in GetUnarySelector() 5528 return GetMethodVarName(CGM.getContext().Selectors.getNullarySelector(ID)); in GetMethodVarName() 6177 CGM.getContext().Selectors.getSelector(3, KeyIdents)); in isVTableDispatchedSelector()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | ASTContext.h | 733 SelectorTable &Selectors; variable 3722 return Ctx.Selectors.getSelector(0, &II); in GetNullarySelector() 3728 return Ctx.Selectors.getSelector(1, &II); in GetUnarySelector()
|
| H A D | OpenMPClause.h | 9503 SmallVector<OMPTraitSelector, 2> Selectors; member 9527 Set.Selectors, [&](OMPTraitSelector &Selector) { in anyScoreOrCondition() 9551 for (const OMPTraitSelector &Selector : Set.Selectors) { in isExtensionActive()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Lex/ |
| H A D | Preprocessor.h | 284 SelectorTable Selectors; variable 1235 SelectorTable &getSelectorTable() { return Selectors; } in getSelectorTable()
|
| /freebsd/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseOpenMP.cpp | 1305 TISet.Selectors.push_back(TISelector); in parseOMPContextSelectorSet() 1325 if (TISet.Kind != TraitSet::invalid && !TISet.Selectors.empty()) in parseOMPContextSelectors() 1544 for (const OMPTraitSelector &ParentSelector : ParentSet.Selectors) { in parseOMPDeclareVariantMatchClause() 1546 for (OMPTraitSelector &Selector : Set.Selectors) { in parseOMPDeclareVariantMatchClause() 1582 Set.Selectors.push_back(ParentSelector); in parseOMPDeclareVariantMatchClause()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/ |
| H A D | TypeSystemClang.cpp | 7971 setter_sel = clang_ast.Selectors.getSelector(1, &setter_ident); in AddObjCClassProperty() 7978 setter_sel = clang_ast.Selectors.getSelector(1, &setter_ident); in AddObjCClassProperty() 7986 getter_sel = clang_ast.Selectors.getSelector(0, &getter_ident); in AddObjCClassProperty() 7990 getter_sel = clang_ast.Selectors.getSelector(0, &getter_ident); in AddObjCClassProperty() 8162 clang::Selector method_selector = ast.Selectors.getSelector( in AddMethodToObjCObjectType()
|