HomeSort by relevance Sort by last modified time
    Searched defs:Sel (Results 1 - 24 of 24) sorted by null

  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCMissingSuperCallChecker.cpp 45 explicit FindSuperCallVisitor(Selector S) : DoesCallSuper(false), Sel(S) {}
48 if (E->getSelector() == Sel)
59 Selector Sel;
78 void fillSelectors(ASTContext &Ctx, ArrayRef<SelectorDescriptor> Sel,
104 ArrayRef<SelectorDescriptor> Sel,
108 for (ArrayRef<SelectorDescriptor>::iterator I = Sel.begin(), E = Sel.end();
116 Selector Sel = Ctx.Selectors.getSelector(Descriptor.ArgumentCount, &II);
117 ClassSelectors.insert(Sel);
BasicObjCFoundationChecks.cpp 796 Selector Sel = M.getSelector();
797 if (Sel == ObjectAtIndex || Sel == ObjectAtIndexedSubscript) {
  /external/clang/lib/AST/
NSAPI.cpp 40 Selector Sel;
43 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("stringWithString"));
46 Sel = Ctx.Selectors.getUnarySelector(
54 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
58 Sel= Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("stringWithCString"));
61 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("initWithString"));
64 return (NSStringSelectors[MK] = Sel);
71 NSAPI::getNSStringMethodKind(Selector Sel) const {
74 if (Sel == getNSStringSelector(MK))
83 Selector Sel;
    [all...]
DeclObjC.cpp 68 ObjCContainerDecl::getMethod(Selector Sel, bool isInstance) const {
85 lookup_const_result R = lookup(Sel);
379 ObjCMethodDecl *ObjCInterfaceDecl::lookupMethod(Selector Sel,
393 if ((MethodDecl = ClassDecl->getMethod(Sel, isInstance)))
400 if ((MethodDecl = (*I)->lookupMethod(Sel, isInstance)))
408 if ((MethodDecl = Cat->getMethod(Sel, isInstance)))
417 if ((MethodDecl = (*I)->lookupMethod(Sel, isInstance)))
431 const Selector &Sel,
442 Method = Instance ? ImpDecl->getInstanceMethod(Sel)
443 : ImpDecl->getClassMethod(Sel);
    [all...]
  /external/clang/lib/Analysis/
CallGraph.cpp 70 Selector Sel = ME->getSelector();
75 D = IDecl->lookupPrivateMethod(Sel);
77 D = IDecl->lookupPrivateClassMethod(Sel);
  /external/clang/lib/Sema/
MultiplexExternalSemaSource.cpp 53 Selector Sel;
55 Sel = Sources[i]->GetExternalSelector(ID);
56 if (!Sel.isNull())
57 return Sel;
59 return Sel;
186 void MultiplexExternalSemaSource::ReadMethodPool(Selector Sel) {
188 Sources[i]->ReadMethodPool(Sel);
SemaExprMember.cpp 379 const Selector &Sel,
384 if (ObjCMethodDecl *OMD = PDecl->getInstanceMethod(Sel))
389 if (Decl *D = FindGetterSetterNameDeclFromProtocolList(*I, Member, Sel,
398 const Selector &Sel,
410 if (ObjCMethodDecl *OMD = (*I)->getInstanceMethod(Sel)) {
419 GDecl = FindGetterSetterNameDeclFromProtocolList(*I, Member, Sel,
    [all...]
SemaDeclObjC.cpp     [all...]
SemaExprObjC.cpp 147 Selector Sel, const ObjCMethodDecl *Method) {
150 S.Diag(Loc, diag::err_undeclared_boxing_method) << Sel << Class->getName();
158 << Sel;
188 Selector Sel = S.NSAPIObj->getNSNumberLiteralSelector(*Kind,
224 ObjCMethodDecl *Method = S.NSNumberDecl->lookupClassMethod(Sel);
228 Method = ObjCMethodDecl::Create(CX, SourceLocation(), SourceLocation(), Sel,
245 if (!validateBoxingMethod(S, Loc, S.NSNumberDecl, Sel, Method))
639 Sel = NSAPIObj->getNSArraySelector(NSAPI::NSArr_arrayWithObjectsCount);
640 ObjCMethodDecl *Method = NSArrayDecl->lookupClassMethod(Sel);
644 SourceLocation(), SourceLocation(), Sel,
    [all...]
SemaCodeComplete.cpp 242 void setPreferredSelector(Selector Sel) {
243 PreferredSelector = Sel;
    [all...]
SemaExpr.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyIndVar.cpp 221 SelectInst *Sel =
225 Rem->replaceAllUsesWith(Sel);
SimplifyLibCalls.cpp     [all...]
  /external/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp 68 Selector Sel = Msg->getSelector();
72 (NS.getNSStringSelector(NSAPI::NSStr_stringWithString) == Sel ||
73 NS.getNSStringSelector(NSAPI::NSStr_initWithString) == Sel)) ||
77 (NS.getNSArraySelector(NSAPI::NSArr_arrayWithArray) == Sel ||
78 NS.getNSArraySelector(NSAPI::NSArr_initWithArray) == Sel)) ||
83 NSAPI::NSDict_dictionaryWithDictionary) == Sel ||
84 NS.getNSDictionarySelector(NSAPI::NSDict_initWithDictionary) == Sel))) {
303 Selector Sel = Msg->getSelector();
305 if (Sel == NS.getNSArraySelector(NSAPI::NSArr_objectAtIndex))
308 if (Sel == NS.getNSDictionarySelector(NSAPI::NSDict_objectForKey)
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CallEvent.cpp 749 Selector Sel) const {
774 D = IDecl->lookupMethod(Sel, true);
806 Selector Sel = E->getSelector();
832 if (!canBeOverridenInSubclass(IDecl, Sel))
860 Optional<const ObjCMethodDecl *> &Val = PMC[std::make_pair(IDecl, Sel)];
864 Val = IDecl->lookupPrivateMethod(Sel);
879 return RuntimeDefinition(IDecl->lookupPrivateClassMethod(Sel));
    [all...]
  /external/llvm/lib/Target/R600/MCTargetDesc/
R600MCCodeEmitter.cpp 315 uint32_t Sel = SelMO.getImm();
316 Emit(Sel, OS);
  /external/llvm/lib/Analysis/
ScalarEvolutionExpander.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 497 Value *Sel = Builder.CreateSelect(BI->getCondition(),
502 Idx.push_back(Sel);
  /external/clang/lib/CodeGen/
CGException.cpp 419 return Builder.CreateLoad(getEHSelectorSlot(), "sel");
    [all...]
CGObjC.cpp 66 Selector Sel = BoxingMethod->getSelector();
82 BoxingMethod->getResultType(), Sel, Receiver, Args,
159 Selector Sel = MethodWithObjects->getSelector();
172 Sel,
    [all...]
  /external/clang/lib/Parse/
ParseObjc.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp 45 CallInst *&Sel,
59 assert(!Sel && "Found more than one eh.selector call!");
60 Sel = CI;
64 if (Exn && Sel) return;
68 if (Exn && Sel) return;
71 FindExnAndSelIntrinsics(*I, Exn, Sel, Visited);
72 if (Exn && Sel) return;
165 CallInst *Sel = 0;
166 FindExnAndSelIntrinsics(UnwindDest, Exn, Sel, Visited);
167 assert(Exn && Sel && "Cannot find eh.exception and eh.selector calls!")
    [all...]
  /external/clang/lib/Serialization/
ASTWriter.cpp     [all...]
ASTReader.cpp 390 unsigned ASTSelectorLookupTrait::ComputeHash(Selector Sel) {
391 return serialization::ComputeHash(Sel);
    [all...]

Completed in 447 milliseconds