HomeSort by: relevance | last modified time | path
    Searched defs:SourceRange (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/Dynamic/
Diagnostics.h 36 struct SourceRange {
45 SourceRange Range;
111 SourceRange MatcherRange);
115 SourceRange MatcherRange, unsigned ArgNumber);
144 ArgStream addError(SourceRange Range, ErrorType Error);
149 SourceRange Range;
157 SourceRange Range;
179 ArgStream pushContextFrame(ContextType Type, SourceRange Range);
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
SourceLocation.h 212 class SourceRange {
217 SourceRange() = default;
218 SourceRange(SourceLocation loc) : B(loc), E(loc) {}
219 SourceRange(SourceLocation begin, SourceLocation end) : B(begin), E(end) {}
230 bool operator==(const SourceRange &X) const {
234 bool operator!=(const SourceRange &X) const {
239 bool fullyContains(const SourceRange &other) const {
250 /// The underlying SourceRange can either specify the starting/ending character
256 SourceRange Range;
261 CharSourceRange(SourceRange R, bool ITR) : Range(R), IsTokenRange(ITR) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
YAMLParser.h 165 SMRange getSourceRange() const { return SourceRange; }
166 void setSourceRange(SMRange SR) { SourceRange = SR; }
182 SMRange SourceRange;
221 SourceRange = SMRange(Start, End);
264 SourceRange = SMRange(Start, End);
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MIRYamlMapping.h 36 SMRange SourceRange;
56 S.SourceRange = Node->getSourceRange();
102 SMRange SourceRange;
120 Value.SourceRange = Node->getSourceRange();
392 SMRange SourceRange;
422 FI.SourceRange = Node->getSourceRange();
  /src/external/apache2/llvm/dist/clang/bindings/python/clang/
cindex.py 39 SourceRange, SourceLocation, and File
63 # o implement additional SourceLocation, SourceRange, and File methods.
303 class SourceRange(Structure):
305 A SourceRange describes a range of source locations within the source
365 return "<SourceRange start %r, end %r>" % (self.start, self.end)
432 range = SourceRange()
2929 """Obtain a SourceRange from this translation unit.
2931 The bounds of the SourceRange must ultimately be defined by a start and
2966 return SourceRange.from_locations(start_location, end_location)
3081 2-tuple of SourceLocation or as a SourceRange. If both are defined
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaChecking.cpp 124 SourceRange range(call->getArg(desiredArgCount)->getBeginLoc(),
4595 SourceRange Range, VariadicCallType CallType) {
4701 Loc, SourceRange(), CallType);
4882 ExprResult Sema::BuildAtomicExpr(SourceRange CallRange, SourceRange ExprRange,
6118 << SourceRange(OrigArg0.get()->getBeginLoc(),
6242 << SourceRange(TheCall->getArg(2)->getBeginLoc(),
6254 << SourceRange(TheCall->getArg(0)->getBeginLoc(),
6262 << SourceRange(TheCall->getArg(0)->getBeginLoc(),
6298 << SourceRange(TheCall->getArg(0)->getBeginLoc()
    [all...]

Completed in 70 milliseconds