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

/external/clang/include/clang/Basic/
H A DSourceLocation.h226 class CharSourceRange { class in class:clang::SourceLocation
230 CharSourceRange() : IsTokenRange(false) {} function in class:clang::SourceLocation::CharSourceRange
231 CharSourceRange(SourceRange R, bool ITR) : Range(R), IsTokenRange(ITR) {} function in class:clang::SourceLocation::CharSourceRange
233 static CharSourceRange getTokenRange(SourceRange R) {
234 return CharSourceRange(R, true);
237 static CharSourceRange getCharRange(SourceRange R) {
238 return CharSourceRange(R, false);
241 static CharSourceRange getTokenRange(SourceLocation B, SourceLocation E) {
244 static CharSourceRange getCharRange(SourceLocation B, SourceLocation E) {

Completed in 123 milliseconds