Home
last modified time | relevance | path

Searched refs:Lookahead (Results 1 – 25 of 26) sorted by relevance

12

/external/python/cpython3/Tools/peg_generator/scripts/
Dgrammar_grapher.py35 Lookahead,
62 elif isinstance(item, Lookahead):
/external/python/cpython3/Tools/peg_generator/pegen/
Dgrammar.py290 class Lookahead: class
308 class PositiveLookahead(Lookahead):
316 class NegativeLookahead(Lookahead):
461 Item = Union[Plain, Opt, Repeat, Lookahead, Rhs, Cut]
467 LookaheadOrCut = Union[Lookahead, Cut]
Dfirst_sets.py17 Lookahead,
83 def visit_PositiveLookahead(self, item: Lookahead) -> Set[str]: argument
Dpython_generator.py11 Lookahead,
79 def lookahead_call_helper(self, node: Lookahead) -> Tuple[str, str]: argument
Dmetagrammar.gram10 Lookahead,
Dc_generator.py14 Lookahead,
215 def lookahead_call_helper(self, node: Lookahead, positive: int) -> FunctionCall: argument
Dgrammar_parser.py19 Lookahead,
/external/rust/crates/libz-sys/src/zlib/contrib/gcc_gvmat64/
Dgvmat64.S162 #define Lookahead [ rcx + dsLookahead] //; 0ffffffffh on infozip macro
244 mov r10d, Lookahead
545 mov eax, Lookahead
/external/llvm/lib/Target/Hexagon/AsmParser/
DHexagonAsmParser.cpp1199 SmallVector<AsmToken, 5> Lookahead; in ParseRegister() local
1208 Lookahead.push_back(Token); in ParseRegister()
1211 Lookahead.back().getString().data() + in ParseRegister()
1212 Lookahead.back().getString().size(); in ParseRegister()
1217 Lookahead.back().is(AsmToken::Colon); in ParseRegister()
1248 Lexer.UnLex(Lookahead.back()); in ParseRegister()
1249 Lookahead.pop_back(); in ParseRegister()
1250 Lexer.UnLex(Lookahead.back()); in ParseRegister()
1251 Lookahead.pop_back(); in ParseRegister()
1258 while (!Lookahead.empty()) { in ParseRegister()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/AsmParser/
DHexagonAsmParser.cpp964 SmallVector<AsmToken, 5> Lookahead; in ParseRegister() local
973 Lookahead.push_back(Token); in ParseRegister()
976 Lookahead.back().getString().data() + in ParseRegister()
977 Lookahead.back().getString().size(); in ParseRegister()
982 Lexer.is(AsmToken::Colon) || Lookahead.back().is(AsmToken::Colon); in ParseRegister()
1013 Lexer.UnLex(Lookahead.back()); in ParseRegister()
1014 Lookahead.pop_back(); in ParseRegister()
1015 } while (!Lookahead.empty () && !Lexer.is(AsmToken::Colon)); in ParseRegister()
1022 while (!Lookahead.empty()) { in ParseRegister()
1023 Lexer.UnLex(Lookahead.back()); in ParseRegister()
[all …]
/external/llvm-project/llvm/lib/Target/Hexagon/AsmParser/
DHexagonAsmParser.cpp977 SmallVector<AsmToken, 5> Lookahead; in tryParseRegister() local
986 Lookahead.push_back(Token); in tryParseRegister()
989 Lookahead.back().getString().data() + in tryParseRegister()
990 Lookahead.back().getString().size(); in tryParseRegister()
995 Lexer.is(AsmToken::Colon) || Lookahead.back().is(AsmToken::Colon); in tryParseRegister()
1026 Lexer.UnLex(Lookahead.pop_back_val()); in tryParseRegister()
1027 } while (!Lookahead.empty() && !Lexer.is(AsmToken::Colon)); in tryParseRegister()
1034 while (!Lookahead.empty()) { in tryParseRegister()
1035 Lexer.UnLex(Lookahead.pop_back_val()); in tryParseRegister()
/external/antlr/runtime/ObjC/Framework/
DUnbufferedCommonTreeNodeStream.h106 #pragma mark Lookahead Handling
DCommonTokenStream.m103 #pragma mark Lookahead
DUnbufferedCommonTreeNodeStream.m272 #pragma mark Lookahead Handling
/external/rust/crates/libz-sys/src/zlib/contrib/masmx64/
Dgvmat64.asm150 ; Lookahead : ignore
186 Lookahead equ [ rcx + dsLookahead] ; 0ffffffffh on infozip define
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/
DRecognitionException.cs276 public int Lookahead property in Antlr.Runtime.RecognitionException
/external/llvm-project/clang/lib/Parse/
DParseTentative.cpp1251 int Lookahead) { in isCXXDeclarationSpecifier() argument
1255 GetLookAheadToken(Lookahead + 1).isOneOf(tok::kw_auto, tok::kw_decltype, in isCXXDeclarationSpecifier()
/external/icu/icu4c/source/tools/genrb/
Dparse.cpp86 struct Lookahead struct
111 struct Lookahead lookahead[MAX_LOOKAHEAD + 1]; argument
/external/llvm-project/libcxxabi/src/demangle/
DItaniumDemangle.h2466 char look(unsigned Lookahead = 0) {
2467 if (static_cast<size_t>(Last - First) <= Lookahead)
2469 return First[Lookahead];
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Demangle/
DItaniumDemangle.h2404 char look(unsigned Lookahead = 0) {
2405 if (static_cast<size_t>(Last - First) <= Lookahead)
2407 return First[Lookahead];
/external/llvm-project/llvm/include/llvm/Demangle/
DItaniumDemangle.h2466 char look(unsigned Lookahead = 0) {
2467 if (static_cast<size_t>(Last - First) <= Lookahead)
2469 return First[Lookahead];
/external/libcxxabi/src/demangle/
DItaniumDemangle.h2226 char look(unsigned Lookahead = 0) {
2227 if (static_cast<size_t>(Last - First) <= Lookahead)
2229 return First[Lookahead];
/external/python/cpython2/Doc/howto/
Dregex.rst957 Lookahead Assertions
960 Another zero-width assertion is the lookahead assertion. Lookahead assertions
/external/python/cpython3/Doc/howto/
Dregex.rst978 Lookahead Assertions
981 Another zero-width assertion is the lookahead assertion. Lookahead assertions
/external/icu/icu4c/source/test/testdata/
Dregextst.txt83 # Negated Lookahead, various regions and region transparency
92 # Nested Lookahead / Behind

12