/external/clang/lib/AST/ |
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() 63 Sel = Ctx.Selectors.getSelector(2, KeyIdents); in getNSStringSelector() 67 Sel= Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("stringWithCString")); in getNSStringSelector() 70 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("initWithString")); in getNSStringSelector() 95 Sel = Ctx.Selectors.getNullarySelector(&Ctx.Idents.get("array")); in getNSArraySelector() 98 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("arrayWithArray")); in getNSArraySelector() 101 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("arrayWithObject")); in getNSArraySelector() 104 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("arrayWithObjects")); in getNSArraySelector() [all …]
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | ObjCMissingSuperCallChecker.cpp | 114 Selector Sel = Ctx.Selectors.getSelector(Descriptor.ArgumentCount, &II); in fillSelectors() 122 const SelectorDescriptor Selectors[] = { in initializeSelectors() local 137 fillSelectors(Ctx, Selectors, "UIViewController"); in initializeSelectors() 141 const SelectorDescriptor Selectors[] = { in initializeSelectors() local 144 fillSelectors(Ctx, Selectors, "UIResponder"); in initializeSelectors() 148 const SelectorDescriptor Selectors[] = { in initializeSelectors() local 152 fillSelectors(Ctx, Selectors, "NSResponder"); in initializeSelectors() 156 const SelectorDescriptor Selectors[] = { in initializeSelectors() local 160 fillSelectors(Ctx, Selectors, "NSDocument"); in initializeSelectors()
|
D | SelectorExtras.h | 28 return Ctx.Selectors.getSelector(II.size(), &II[0]); in getKeywordSelectorImpl()
|
D | LocalizationChecker.cpp | 145 {Ctx.Selectors.getNullarySelector(&Ctx.Idents.get(#method)), argument}); 148 {Ctx.Selectors.getUnarySelector(&Ctx.Idents.get(#method)), argument}); 150 receiver##M.insert({Ctx.Selectors.getSelector(count, method_list), argument}); 554 LSM.insert({&Ctx.Idents.get(receiver), Ctx.Selectors.getNullarySelector( \ 558 Ctx.Selectors.getUnarySelector(&Ctx.Idents.get(method_name))}); 561 Ctx.Selectors.getSelector(arguments, method_list)});
|
D | ObjCSuperDeallocChecker.cpp | 238 SELdealloc = Ctx.Selectors.getSelector(0, &IIdealloc); in initIdentifierInfoAndSelectors()
|
D | CheckObjCDealloc.cpp | 786 DeallocSel = Ctx.Selectors.getSelector(0, &DeallocII); in initIdentifierInfoAndSelectors() 787 ReleaseSel = Ctx.Selectors.getSelector(0, &ReleaseII); in initIdentifierInfoAndSelectors()
|
/external/clang/lib/Analysis/ |
D | ObjCNoReturn.cpp | 40 C.Selectors.getSelector(II.size(), &II[0]); in ObjCNoReturn() 45 C.Selectors.getSelector(II.size(), &II[0]); in ObjCNoReturn()
|
/external/clang/lib/Sema/ |
D | SemaCodeComplete.cpp | 5039 VisitedSelectorSet &Selectors, in AddObjCMethods() argument 5057 if (!Selectors.insert(M->getSelector()).second) in AddObjCMethods() 5078 CurContext, Selectors, AllowSameLength, Results, false); in AddObjCMethods() 5088 CurContext, Selectors, AllowSameLength, Results, false); in AddObjCMethods() 5093 CurContext, Selectors, AllowSameLength, in AddObjCMethods() 5103 CurContext, Selectors, AllowSameLength, in AddObjCMethods() 5109 CurContext, Selectors, AllowSameLength, in AddObjCMethods() 5116 SelIdents, CurContext, Selectors, in AddObjCMethods() 5122 CurContext, Selectors, AllowSameLength, in AddObjCMethods() 5145 VisitedSelectorSet Selectors; in CodeCompleteObjCPropertyGetter() local [all …]
|
D | SemaPseudoObject.cpp | 1122 Selector GetterSelector = S.Context.Selectors.getSelector(1, KeyIdents); in CheckKeyForObjCARCConversion() 1165 AtIndexGetterSelector = S.Context.Selectors.getSelector(1, KeyIdents); in findAtIndexGetter() 1173 AtIndexGetterSelector = S.Context.Selectors.getSelector(1, KeyIdents); in findAtIndexGetter() 1274 AtIndexSetterSelector = S.Context.Selectors.getSelector(2, KeyIdents); in findAtIndexSetter() 1282 AtIndexSetterSelector = S.Context.Selectors.getSelector(2, KeyIdents); in findAtIndexSetter()
|
D | SemaExprObjC.cpp | 531 Selector stringWithUTF8String = Context.Selectors.getUnarySelector(II); in BuildObjCBoxedExpr() 637 Selector ValueWithBytesObjCType = Context.Selectors.getSelector(2, II); in BuildObjCBoxedExpr() 3057 RespondsToSelectorSel = Context.Selectors.getUnarySelector(SelectorId); in ActOnInstanceMessage() 3889 Selector Sel = Context.Selectors.getUnarySelector(CMId); in checkObjCBridgeRelatedComponents() 3903 Selector Sel = Context.Selectors.getNullarySelector(IMId); in checkObjCBridgeRelatedComponents()
|
/external/clang/lib/ARCMigrate/ |
D | TransAPIUses.cpp | 40 SelectorTable &sels = Pass.Ctx.Selectors; in APIChecker()
|
D | TransRetainReleaseDealloc.cpp | 49 Pass.Ctx.Selectors.getNullarySelector(&Pass.Ctx.Idents.get("delegate")); in RetainReleaseDeallocRemover() 51 Pass.Ctx.Selectors.getNullarySelector(&Pass.Ctx.Idents.get("finalize")); in RetainReleaseDeallocRemover()
|
D | TransZeroOutPropsInDealloc.cpp | 40 Pass.Ctx.Selectors.getNullarySelector(&Pass.Ctx.Idents.get("finalize")); in ZeroOutInDeallocRemover()
|
D | TransEmptyStatementsAndDealloc.cpp | 200 Ctx.Selectors.getNullarySelector(&pass.Ctx.Idents.get("finalize")); in cleanupDeallocOrFinalize()
|
D | TransAutoreleasePool.cpp | 75 DrainSel = pass.Ctx.Selectors.getNullarySelector( in AutoreleasePoolRewriter()
|
D | Transforms.cpp | 527 Ctx.Selectors.getNullarySelector(&pass.Ctx.Idents.get("finalize")); in GCRewriteFinalize()
|
/external/clang/lib/CodeGen/ |
D | CGObjC.cpp | 1487 CGM.getContext().Selectors.getSelector(llvm::array_lengthof(II), &II[0]); in EmitObjCForCollectionStmt() 2329 Selector AllocSel = getContext().Selectors.getSelector(0, &II); in EmitObjCMRRAutoreleasePoolPush() 2339 Selector InitSel = getContext().Selectors.getSelector(0, &II); in EmitObjCMRRAutoreleasePoolPush() 2351 Selector DrainSel = getContext().Selectors.getSelector(0, &II); in EmitObjCMRRAutoreleasePoolPop() 3349 getContext().Selectors.getNullarySelector(CopyID); in EmitBlockCopyAndAutorelease() 3352 getContext().Selectors.getNullarySelector(AutoreleaseID); in EmitBlockCopyAndAutorelease()
|
D | CGObjCGNU.cpp | 2445 std::vector<llvm::Constant*> Selectors; in ModuleInitFunction() local 2463 Selectors.push_back(llvm::ConstantStruct::get(SelStructTy, Elements)); in ModuleInitFunction() 2470 unsigned SelectorCount = Selectors.size(); in ModuleInitFunction() 2477 Selectors.push_back(llvm::ConstantStruct::get(SelStructTy, Elements)); in ModuleInitFunction() 2483 MakeGlobalArray(SelStructTy, Selectors, CGM.getPointerAlign(), in ModuleInitFunction()
|
D | CGObjCMac.cpp | 1420 return CGM.getContext().Selectors.getSelector(0, &II); in GetNullarySelector() 1425 return CGM.getContext().Selectors.getSelector(1, &II); in GetUnarySelector() 5080 return GetMethodVarName(CGM.getContext().Selectors.getNullarySelector(ID)); in GetMethodVarName() 5806 CGM.getContext().Selectors.getSelector(3, KeyIdents)); in isVTableDispatchedSelector()
|
/external/clang/include/clang/AST/ |
D | ASTContext.h | 460 SelectorTable &Selectors; variable 2607 return Ctx.Selectors.getSelector(0, &II); in GetNullarySelector() 2613 return Ctx.Selectors.getSelector(1, &II); in GetUnarySelector()
|
/external/clang/include/clang/Lex/ |
D | Preprocessor.h | 200 SelectorTable Selectors; variable 699 SelectorTable &getSelectorTable() { return Selectors; } in getSelectorTable()
|
/external/harfbuzz_ng/ |
D | NEWS | 144 - Fix Mongolian Free Variation Selectors shaping with certain fonts. 633 - Fix Mongolian Variation Selectors for fonts without GDEF.
|
/external/netperf/doc/ |
D | netperf.info | 920 output selectors: Omni Output Selectors. include one or more of: 942 comparing the *note `MEAN_LATENCY': Omni Output Selectors. 1176 selector: Omni Output Selectors. for the histogram and so it 1880 Output Selectors. in an *note omni test: The Omni Tests. It will also 2812 Omni Output Selectors.: 2970 Output Selectors. *note output selector: Omni Output Selection. 3194 * Omni Output Selectors:: 3197 File: netperf.info, Node: Omni Output Selectors, Prev: Omni Output Selection, Up: Omni Output Se… 3199 9.3.1 Omni Output Selectors 4052 the UUID emitted by the *note UUID: Omni Output Selectors. output [all …]
|
D | netperf.texi | 978 @option{-k} @ref{Omni Output Selectors,output selectors} include one 997 Selectors,@code{MEAN_LATENCY}} calculated from the histogram with the 1254 In version 2.5.0 and later there is no @ref{Omni Output Selectors,output 1980 Selectors,output selector} in an @ref{The Omni Tests,omni test}. It 2964 Selectors,output selectors}: 3124 Selectors,DIRECTION} @ref{Omni Output Selection,output selector} when 3365 * Omni Output Selectors:: 3368 @node Omni Output Selectors, , Omni Output Selection, Omni Output Selection 3369 @subsection Omni Output Selectors 4035 the UUID emitted by the @ref{Omni Output Selectors,UUID} output
|
/external/python/cpython2/Doc/library/ |
D | tix.rst | 227 File Selectors
|