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...]
Expr.cpp     [all...]
DeclObjC.cpp 686 ArrayRef<SourceLocation> SelLocs) {
689 if (Params.empty() && SelLocs.empty())
693 sizeof(SourceLocation) * SelLocs.size();
696 std::copy(SelLocs.begin(), SelLocs.end(), getStoredSelLocs());
700 SmallVectorImpl<SourceLocation> &SelLocs) const {
702 SelLocs.push_back(getSelectorLoc(i));
707 ArrayRef<SourceLocation> SelLocs) {
708 assert((!SelLocs.empty() || isImplicit()) &&
713 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 =
    [all...]
  /external/clang/tools/libclang/
CXCursor.cpp 85 SmallVector<SourceLocation, 16> SelLocs;
86 cast<ObjCMethodDecl>(D)->getSelectorLocs(SelLocs);
88 I=std::find(SelLocs.begin(), SelLocs.end(),RegionOfInterest.getBegin());
89 if (I != SelLocs.end())
90 SelectorIdIndex = I - SelLocs.begin();
506 SmallVector<SourceLocation, 16> SelLocs;
507 cast<ObjCMessageExpr>(S)->getSelectorLocs(SelLocs);
509 I=std::find(SelLocs.begin(), SelLocs.end(),RegionOfInterest.getBegin())
    [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteModernObjC.cpp     [all...]
RewriteObjC.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 751 SmallVector<SourceLocation, 16> SelLocs;
752 SelLocs.reserve(NumStoredSelLocs);
754 SelLocs.push_back(ReadSourceLocation(Record, Idx));
756 MD->setParamsAndSelLocs(Reader.getContext(), Params, SelLocs);
    [all...]
ASTWriterDecl.cpp 488 SourceLocation *SelLocs = D->getStoredSelLocs();
491 Writer.AddSourceLocation(SelLocs[i], Record);
    [all...]
  /external/clang/lib/Sema/
TreeTransform.h     [all...]

Completed in 367 milliseconds