Searched defs:CharSourceRange (Results 1 - 1 of 1) sorted by relevance

/external/clang/include/clang/Basic/
H A DSourceLocation.h225 class CharSourceRange { class in class:clang::SourceLocation
229 CharSourceRange() : IsTokenRange(false) {} function in class:clang::SourceLocation::CharSourceRange
230 CharSourceRange(SourceRange R, bool ITR) : Range(R), IsTokenRange(ITR) {} function in class:clang::SourceLocation::CharSourceRange
232 static CharSourceRange getTokenRange(SourceRange R) {
233 return CharSourceRange(R, true);
236 static CharSourceRange getCharRange(SourceRange R) {
237 return CharSourceRange(R, false);
240 static CharSourceRange getTokenRange(SourceLocation B, SourceLocation E) {
243 static CharSourceRange getCharRange(SourceLocation B, SourceLocation E) {

Completed in 655 milliseconds