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
&) = delete;
48
void operator=(const
PTHLexer
&) = delete;
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
20
#include "clang/Lex/
PTHLexer
.h"
34
class
PTHLexer
;
39
friend class
PTHLexer
;
75
///
PTHLexer
objects.
98
/// getSpellingAtPTHOffset - Used by
PTHLexer
classes to get the cached
136
/// CreateLexer - Return a
PTHLexer
that "lexes" the cached tokens for the
139
PTHLexer
*CreateLexer(FileID FID);
Preprocessor.h
26
#include "clang/Lex/
PTHLexer
.h"
289
std::unique_ptr<
PTHLexer
> CurPTHLexer;
329
std::unique_ptr<
PTHLexer
> ThePTHLexer;
338
std::unique_ptr<
PTHLexer
> &&ThePTHLexer,
[
all
...]
/external/clang/lib/Lex/
Android.mk
24
PTHLexer
.cpp \
PTHLexer.cpp
1
//===---
PTHLexer
.cpp - Lex from a token stream ---------------------------===//
10
// This file implements the
PTHLexer
interface.
14
#include "clang/Lex/
PTHLexer
.h"
34
//
PTHLexer
methods.
37
PTHLexer
::
PTHLexer
(Preprocessor &PP, FileID FID, const unsigned char *D,
45
bool
PTHLexer
::Lex(Token& Tok) {
129
bool
PTHLexer
::LexEndOfFile(Token &Result) {
154
void
PTHLexer
::getEOF(Token& Tok) {
159
void
PTHLexer
::DiscardToEndOfLine()
[
all
...]
PPLexerChange.cpp
81
if (
PTHLexer
*PL = PTH->CreateLexer(FID)) {
137
void Preprocessor::EnterSourceFileWithPTH(
PTHLexer
*PL,
Completed in 47 milliseconds