OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PTHLexer
(Results
1 - 6
of
6
) sorted by null
/external/clang/include/clang/Lex/
PTHLexer.h
1
//===---
PTHLexer
.h - Lexer based on Pre-tokenized input --------*- C++ -*-===//
10
// This file defines the
PTHLexer
interface.
24
class
PTHLexer
: public PreprocessorLexer {
47
PTHLexer
(const
PTHLexer
&); // DO NOT IMPLEMENT
48
void operator=(const
PTHLexer
&); // DO NOT IMPLEMENT
50
/// ReadToken - Used by
PTHLexer
to read tokens TokBuf.
55
/// PTHMgr - The PTHManager object that created this
PTHLexer
.
63
/// Create a
PTHLexer
for the specified token stream.
64
PTHLexer
(Preprocessor& pp, FileID FID, const unsigned char *D
[
all
...]
PTHManager.h
17
#include "clang/Lex/
PTHLexer
.h"
32
class
PTHLexer
;
37
friend class
PTHLexer
;
66
///
PTHLexer
objects.
88
/// getSpellingAtPTHOffset - Used by
PTHLexer
classes to get the cached
126
/// CreateLexer - Return a
PTHLexer
that "lexes" the cached tokens for the
129
PTHLexer
*CreateLexer(FileID FID);
Preprocessor.h
19
#include "clang/Lex/
PTHLexer
.h"
162
llvm::OwningPtr<
PTHLexer
> CurPTHLexer;
183
PTHLexer
*ThePTHLexer;
188
IncludeStackInfo(Lexer *L,
PTHLexer
* P, PreprocessorLexer* PPL,
[
all
...]
/external/clang/lib/Lex/
Android.mk
25
PTHLexer
.cpp \
PTHLexer.cpp
1
//===---
PTHLexer
.cpp - Lex from a token stream ---------------------------===//
10
// This file implements the
PTHLexer
interface.
20
#include "clang/Lex/
PTHLexer
.h"
36
//
PTHLexer
methods.
39
PTHLexer
::
PTHLexer
(Preprocessor &PP, FileID FID, const unsigned char *D,
47
void
PTHLexer
::Lex(Token& Tok) {
137
bool
PTHLexer
::LexEndOfFile(Token &Result) {
162
void
PTHLexer
::getEOF(Token& Tok) {
167
void
PTHLexer
::DiscardToEndOfLine()
[
all
...]
PPLexerChange.cpp
76
if (
PTHLexer
*PL = PTH->CreateLexer(FID)) {
122
void Preprocessor::EnterSourceFileWithPTH(
PTHLexer
*PL,
Completed in 210 milliseconds