OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LookAhead
(Results
1 - 11
of
11
) sorted by null
/frameworks/compile/slang/
slang_pragma_recorder.cpp
65
const clang::Token* NextToken = &PP.
LookAhead
(0);
72
NextToken = &PP.
LookAhead
(0);
85
NextToken = &PP.
LookAhead
(0);
slang_rs_pragma_handler.cpp
107
const clang::Token &NextTok = PP.
LookAhead
(0);
/external/llvm/lib/MC/MCParser/
AsmLexer.cpp
172
const char *
LookAhead
= CurPtr;
174
if (isdigit(*
LookAhead
)) {
175
++
LookAhead
;
176
} else if (isxdigit(*
LookAhead
)) {
178
FirstHex =
LookAhead
;
179
++
LookAhead
;
184
bool isHex = *
LookAhead
== 'h' || *
LookAhead
== 'H';
185
CurPtr = isHex || !FirstHex ?
LookAhead
: FirstHex;
/external/chromium_org/tools/gn/
parser.cc
119
bool Parser::
LookAhead
(Token::Type type) {
126
if (!
LookAhead
(type))
276
if (
LookAhead
(Token::LEFT_BRACE)) {
331
while (!
LookAhead
(stop_before)) {
372
if (
LookAhead
(Token::LEFT_BRACE)) {
374
} else if (
LookAhead
(Token::IF)) {
401
if (
LookAhead
(Token::RIGHT_BRACE)) {
parser.h
78
bool
LookAhead
(Token::Type type);
/external/clang/lib/Parse/
ParseInit.cpp
42
switch (PP.
LookAhead
(0).getKind()) {
65
return PP.
LookAhead
(0).is(tok::colon);
ParseExprCXX.cpp
411
PP.
LookAhead
(1).is(tok::identifier)) {
648
/// TryParseLambdaExpression - Use
lookahead
and potentially tentative
660
// If
lookahead
indicates this is a lambda...
671
// If
lookahead
indicates an ObjC message send...
[
all
...]
/external/clang/include/clang/Parse/
Parser.h
458
/// without consuming any tokens.
LookAhead
(0) returns 'Tok',
LookAhead
(1)
461
/// Note that this differs from the Preprocessor's
LookAhead
method, because
466
return PP.
LookAhead
(N-1);
473
return PP.
LookAhead
(0);
[
all
...]
/external/clang/include/clang/Lex/
Preprocessor.h
373
///
lookahead
. They are "lexed" by the CachingLex() method.
788
///
LookAhead
- This peeks ahead N tokens and returns that token without
789
/// consuming any tokens.
LookAhead
(0) returns the next token that would be
790
/// returned by Lex(),
LookAhead
(1) returns the token after it, etc. This
793
const Token &
LookAhead
(unsigned N) {
[
all
...]
/external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGRRList.cpp
885
unsigned
LookAhead
= std::min((unsigned)Sequence.size(),
887
if (
LookAhead
== 0)
890
std::vector<SUnit*>::const_iterator I = (Sequence.end() -
LookAhead
);
[
all
...]
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Tree.pas
[
all
...]
Completed in 1301 milliseconds