HomeSort by relevance Sort by last modified time
    Searched refs:TokEnd (Results 1 - 3 of 3) sorted by null

  /external/clang/include/clang/AST/
CommentLexer.h 295 void formTokenWithChars(Token &Result, const char *TokEnd,
297 const unsigned TokLen = TokEnd - BufferPtr;
305 BufferPtr = TokEnd;
308 void formTextToken(Token &Result, const char *TokEnd) {
309 StringRef Text(BufferPtr, TokEnd - BufferPtr);
310 formTokenWithChars(Result, TokEnd, tok::text);
  /external/clang/include/clang/Lex/
Lexer.h 457 /// starting at BufferPtr, going to TokEnd that forms the token. This method
460 /// TokEnd.
461 void FormTokenWithChars(Token &Result, const char *TokEnd,
463 unsigned TokLen = TokEnd-BufferPtr;
467 BufferPtr = TokEnd;
  /external/clang/lib/Rewrite/Core/
HTMLRewrite.cpp 422 unsigned TokEnd = TokOffs+TokLen;
425 TokEnd = SM.getFileOffset(Tok.getLocation())+Tok.getLength();
430 HighlightRange(RB, TokOffs, TokEnd, BufferStart,

Completed in 769 milliseconds