Home | History | Annotate | Download | only in AST

Lines Matching refs:Range

57   SourceRange Range;
72 Range = getSourceRangeImpl();
96 SourceLocation getLocStart() const LLVM_READONLY { return Range.getBegin(); }
97 SourceLocation getLocEnd() const LLVM_READONLY { return Range.getEnd(); }
98 SourceRange getSourceRange() const { return Range; }
191 SourceRange AngleBrackets; // range for '<' '>'
541 SourceRange Range;
552 Operand(Operand), Range(R) { }
562 Operand(Operand), Range(R) { }
603 SourceLocation getLocStart() const LLVM_READONLY { return Range.getBegin(); }
604 SourceLocation getLocEnd() const LLVM_READONLY { return Range.getEnd(); }
605 SourceRange getSourceRange() const LLVM_READONLY { return Range; }
606 void setSourceRange(SourceRange R) { Range = R; }
750 SourceRange Range;
758 Operand(Operand), Range(R) { }
765 Operand(Operand), Range(R) { }
804 SourceLocation getLocStart() const LLVM_READONLY { return Range.getBegin(); }
805 SourceLocation getLocEnd() const LLVM_READONLY { return Range.getEnd(); }
806 SourceRange getSourceRange() const LLVM_READONLY { return Range; }
807 void setSourceRange(SourceRange R) { Range = R; }
998 /// source, so they have an empty source range.
1277 assert(Arg < NumArgs && "Arg access out of range!");
1281 assert(Arg < NumArgs && "Arg access out of range!");
1287 assert(Arg < NumArgs && "Arg access out of range!");
1294 void setParenOrBraceRange(SourceRange Range) { ParenOrBraceRange = Range; }
1419 /// \brief The source range that covers the lambda introducer ([...]).
1450 /// module file just to determine the source range.
1551 /// \brief An iterator over a range of lambda captures.
1639 /// \brief Retrieve the source range covering the lambda introducer,
1749 /// the source range covering the parenthesized type-id.
1752 /// \brief Range of the entire new expression.
1753 SourceRange Range;
1755 /// \brief Source-range of a paren-delimited initializer.
1787 SourceRange Range, SourceRange directInitRange);
1839 assert(i < NumPlacementArgs && "Index out of range");
1843 assert(i < NumPlacementArgs && "Index out of range");
1916 SourceLocation getStartLoc() const { return Range.getBegin(); }
1917 SourceLocation getEndLoc() const { return Range.getEnd(); }
1922 return Range;
2256 assert(I < getNumArgs() && "Argument out-of-range");
2933 assert(i < getNumObjects() && "Index out of range");
3046 assert(I < NumArgs && "Argument index out-of-range");
3051 assert(I < NumArgs && "Argument index out-of-range");
3056 assert(I < NumArgs && "Argument index out-of-range");
3486 SourceRange Range;
3498 Value(Val == CT_Cannot), Operand(Operand), Range
3507 SourceLocation getLocStart() const LLVM_READONLY { return Range.getBegin(); }
3508 SourceLocation getLocEnd() const LLVM_READONLY { return Range.getEnd(); }
3509 SourceRange getSourceRange() const LLVM_READONLY { return Range; }