HomeSort by relevance Sort by last modified time
    Searched defs:BufferPtr (Results 1 - 2 of 2) sorted by null

  /external/clang/include/clang/Lex/
Lexer.h 75 // BufferPtr - Current pointer into the buffer. This is the next character
77 const char *BufferPtr;
165 return BufferPtr == BufferEnd;
216 SourceLocation getSourceLocation() { return getSourceLocation(BufferPtr); }
219 const char *getBufferLocation() const { return BufferPtr; }
388 /// starting at BufferPtr, going to TokEnd that forms the token. This method
390 /// addition, since tokens cannot overlap, this also updates BufferPtr to be
394 unsigned TokLen = TokEnd-BufferPtr;
396 Result.setLocation(getSourceLocation(BufferPtr, TokLen));
398 BufferPtr = TokEnd
    [all...]
  /external/clang/tools/driver/
cc1as_main.cpp 267 OwningPtr<MemoryBuffer> BufferPtr;
268 if (error_code ec = MemoryBuffer::getFileOrSTDIN(Opts.InputFile, BufferPtr)) {
273 MemoryBuffer *Buffer = BufferPtr.take();

Completed in 47 milliseconds