HomeSort by: relevance | last modified time | path
    Searched refs:SelLocs (Results 1 - 13 of 13) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
SelectorLocationsKind.cpp 70 ArrayRef<SourceLocation> SelLocs,
75 for (i = 0; i != SelLocs.size(); ++i) {
76 if (SelLocs[i] != getStandardSelectorLoc(i, Sel, /*WithArgSpace=*/false,
80 if (i == SelLocs.size())
84 for (i = 0; i != SelLocs.size(); ++i) {
85 if (SelLocs[i] != getStandardSelectorLoc(i, Sel, /*WithArgSpace=*/true,
97 ArrayRef<SourceLocation> SelLocs,
100 return hasStandardSelLocs(Sel, SelLocs, Args, EndLoc);
114 ArrayRef<SourceLocation> SelLocs,
117 return hasStandardSelLocs(Sel, SelLocs, Args, EndLoc)
    [all...]
ExprObjC.cpp 110 ArrayRef<SourceLocation> SelLocs,
121 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
129 ArrayRef<SourceLocation> SelLocs,
138 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
145 Selector Sel, ArrayRef<SourceLocation> SelLocs,
154 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
160 ArrayRef<SourceLocation> SelLocs,
170 std::copy(SelLocs.begin(), SelLocs.end(), getStoredSelLocs());
178 ArrayRef<SourceLocation> SelLocs,
    [all...]
DeclObjC.cpp 871 ArrayRef<SourceLocation> SelLocs) {
874 if (Params.empty() && SelLocs.empty())
881 sizeof(SourceLocation) * SelLocs.size();
884 std::copy(SelLocs.begin(), SelLocs.end(), getStoredSelLocs());
888 SmallVectorImpl<SourceLocation> &SelLocs) const {
890 SelLocs.push_back(getSelectorLoc(i));
895 ArrayRef<SourceLocation> SelLocs) {
896 assert((!SelLocs.empty() || isImplicit()) &&
901 setSelLocsKind(hasStandardSelectorLocs(getSelector(), SelLocs, Params
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
SelectorLocationsKind.h 44 /// Returns true if all \p SelLocs are in a "standard" location.
46 ArrayRef<SourceLocation> SelLocs,
62 /// Returns true if all \p SelLocs are in a "standard" location.
64 ArrayRef<SourceLocation> SelLocs,
ExprObjC.h 999 ArrayRef<SourceLocation> SelLocs,
1009 ArrayRef<SourceLocation> SelLocs,
1019 ArrayRef<SourceLocation> SelLocs,
1034 ArrayRef<SourceLocation> SelLocs,
1073 ArrayRef<SourceLocation> SelLocs,
1132 ArrayRef<SourceLocation> SelLocs,
1166 ArrayRef<SourceLocation> SelLocs,
1426 void getSelectorLocs(SmallVectorImpl<SourceLocation> &SelLocs) const;
DeclObjC.h 221 ArrayRef<SourceLocation> SelLocs);
307 void getSelectorLocs(SmallVectorImpl<SourceLocation> &SelLocs) const;
390 /// If the method is implicit (not coming from source) \p SelLocs is
394 ArrayRef<SourceLocation> SelLocs = llvm::None);
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CXCursor.cpp 152 SmallVector<SourceLocation, 16> SelLocs;
153 cast<ObjCMethodDecl>(D)->getSelectorLocs(SelLocs);
155 llvm::find(SelLocs, RegionOfInterest.getBegin());
156 if (I != SelLocs.end())
157 SelectorIdIndex = I - SelLocs.begin();
628 SmallVector<SourceLocation, 16> SelLocs;
629 cast<ObjCMessageExpr>(S)->getSelectorLocs(SelLocs);
631 llvm::find(SelLocs, RegionOfInterest.getBegin());
632 if (I != SelLocs.end())
633 SelectorIdIndex = I - SelLocs.begin()
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp 1449 SmallVector<SourceLocation, 1> SelLocs;
1450 OldMsg->getSelectorLocs(SelLocs);
1460 SelLocs,
1473 SelLocs,
1489 SelLocs,
1533 SmallVector<SourceLocation, 1> SelLocs;
1543 SelLocs,
1556 SelLocs,
1572 SelLocs,
RewriteObjC.cpp 1265 SmallVector<SourceLocation, 1> SelLocs;
1266 OldMsg->getSelectorLocs(SelLocs);
1276 SelLocs,
1289 SelLocs,
1305 SelLocs,
1341 SmallVector<SourceLocation, 1> SelLocs;
1352 SelLocs,
1365 SelLocs,
1381 SelLocs,
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderDecl.cpp 1072 SmallVector<SourceLocation, 16> SelLocs;
1073 SelLocs.reserve(NumStoredSelLocs);
1075 SelLocs.push_back(readSourceLocation());
1077 MD->setParamsAndSelLocs(Reader.getContext(), Params, SelLocs);
ASTWriterDecl.cpp 721 SourceLocation *SelLocs = D->getStoredSelLocs();
724 Record.AddSourceLocation(SelLocs[i]);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaObjCProperty.cpp 1065 SmallVector<SourceLocation, 1> SelLocs;
1066 Decl->getSelectorLocs(SelLocs);
1067 ImplDecl->setMethodParams(Context, Decl->parameters(), SelLocs);
TreeTransform.h 13782 SmallVector<SourceLocation, 16> SelLocs;
13783 E->getSelectorLocs(SelLocs);
13786 SelLocs,
13798 SmallVector<SourceLocation, 16> SelLocs;
13799 E->getSelectorLocs(SelLocs);
13802 SelLocs,
13824 SmallVector<SourceLocation, 16> SelLocs;
13825 E->getSelectorLocs(SelLocs);
13828 SelLocs,

Completed in 69 milliseconds