HomeSort by relevance Sort by last modified time
    Searched refs:SelLocs (Results 1 - 13 of 13) sorted by null

  /external/clang/lib/AST/
SelectorLocationsKind.cpp 71 ArrayRef<SourceLocation> SelLocs,
76 for (i = 0; i != SelLocs.size(); ++i) {
77 if (SelLocs[i] != getStandardSelectorLoc(i, Sel, /*WithArgSpace=*/false,
81 if (i == SelLocs.size())
85 for (i = 0; i != SelLocs.size(); ++i) {
86 if (SelLocs[i] != getStandardSelectorLoc(i, Sel, /*WithArgSpace=*/true,
98 ArrayRef<SourceLocation> SelLocs,
101 return hasStandardSelLocs(Sel, SelLocs, Args, EndLoc);
115 ArrayRef<SourceLocation> SelLocs,
118 return hasStandardSelLocs(Sel, SelLocs, Args, EndLoc)
    [all...]
ExprObjC.cpp 121 ArrayRef<SourceLocation> SelLocs,
135 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
142 ArrayRef<SourceLocation> SelLocs,
153 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
159 Selector Sel, ArrayRef<SourceLocation> SelLocs,
171 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
176 ArrayRef<SourceLocation> SelLocs,
196 std::copy(SelLocs.begin(), SelLocs.end(), getStoredSelLocs());
204 ArrayRef<SourceLocation> SelLocs,
    [all...]
DeclObjC.cpp 797 ArrayRef<SourceLocation> SelLocs) {
800 if (Params.empty() && SelLocs.empty())
808 sizeof(SourceLocation) * SelLocs.size();
811 std::copy(SelLocs.begin(), SelLocs.end(), getStoredSelLocs());
815 SmallVectorImpl<SourceLocation> &SelLocs) const {
817 SelLocs.push_back(getSelectorLoc(i));
822 ArrayRef<SourceLocation> SelLocs) {
823 assert((!SelLocs.empty() || isImplicit()) &&
828 SelLocsKind = hasStandardSelectorLocs(getSelector(), SelLocs, Params
    [all...]
ASTImporter.cpp     [all...]
  /external/clang/include/clang/AST/
SelectorLocationsKind.h 45 /// \brief Returns true if all \p SelLocs are in a "standard" location.
47 ArrayRef<SourceLocation> SelLocs,
63 /// \brief Returns true if all \p SelLocs are in a "standard" location.
65 ArrayRef<SourceLocation> SelLocs,
ExprObjC.h     [all...]
DeclObjC.h 224 ArrayRef<SourceLocation> SelLocs);
312 void getSelectorLocs(SmallVectorImpl<SourceLocation> &SelLocs) const;
377 /// If the method is implicit (not coming from source) \p SelLocs is
381 ArrayRef<SourceLocation> SelLocs = llvm::None);
    [all...]
  /external/clang/tools/libclang/
CXCursor.cpp 89 SmallVector<SourceLocation, 16> SelLocs;
90 cast<ObjCMethodDecl>(D)->getSelectorLocs(SelLocs);
92 I=std::find(SelLocs.begin(), SelLocs.end(),RegionOfInterest.getBegin());
93 if (I != SelLocs.end())
94 SelectorIdIndex = I - SelLocs.begin();
524 SmallVector<SourceLocation, 16> SelLocs;
525 cast<ObjCMessageExpr>(S)->getSelectorLocs(SelLocs);
527 I=std::find(SelLocs.begin(), SelLocs.end(),RegionOfInterest.getBegin())
    [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteObjC.cpp     [all...]
RewriteModernObjC.cpp     [all...]
  /external/clang/lib/Serialization/
ASTWriterDecl.cpp 646 SourceLocation *SelLocs = D->getStoredSelLocs();
649 Record.AddSourceLocation(SelLocs[i]);
    [all...]
ASTReaderDecl.cpp     [all...]
  /external/clang/lib/Sema/
TreeTransform.h     [all...]

Completed in 1338 milliseconds