Home
last modified time | relevance | path

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

12

/external/rust/crates/pest/src/
Dparser_state.rs30 pub enum Lookahead { enum
132 lookahead: Lookahead,
202 lookahead: Lookahead::None, in new()
305 if self.lookahead == Lookahead::None && self.atomicity != Atomicity::Atomic { in rule()
319 if new_state.lookahead == Lookahead::Negative { in rule()
329 if new_state.lookahead == Lookahead::None in rule()
355 if new_state.lookahead != Lookahead::Negative { in rule()
365 if new_state.lookahead == Lookahead::None in rule()
415 let attempts = if self.lookahead != Lookahead::Negative { in track()
841 Lookahead::None | Lookahead::Positive => Lookahead::Positive, in lookahead()
[all …]
Dlib.rs339 set_call_limit, state, Atomicity, Lookahead, MatchDir, ParseResult, ParserState,
/external/python/cpython3/Tools/peg_generator/scripts/
Dgrammar_grapher.py36 Lookahead,
65 elif isinstance(item, Lookahead):
/external/cronet/net/websockets/
Dwebsocket_extension_parser.cc79 if (Lookahead('\"')) { in ConsumeExtensionParameter()
133 bool WebSocketExtensionParser::Lookahead(char c) { in Lookahead() function in net::WebSocketExtensionParser
Dwebsocket_extension_parser.h52 [[nodiscard]] bool Lookahead(char c);
/external/python/cpython3/Tools/peg_generator/pegen/
Dgrammar.py308 class Lookahead: class
326 class PositiveLookahead(Lookahead):
334 class NegativeLookahead(Lookahead):
479 Item = Union[Plain, Opt, Repeat, Forced, Lookahead, Rhs, Cut]
485 LookaheadOrCut = Union[Lookahead, Cut]
Dfirst_sets.py17 Lookahead,
83 def visit_PositiveLookahead(self, item: Lookahead) -> Set[str]: argument
Dvalidator.py8 Lookahead,
Dpython_generator.py12 Lookahead,
77 def lookahead_call_helper(self, node: Lookahead) -> Tuple[str, str]: argument
Dmetagrammar.gram11 Lookahead,
Dc_generator.py16 Lookahead,
227 def lookahead_call_helper(self, node: Lookahead, positive: int) -> FunctionCall: argument
Dgrammar_parser.py17 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/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/icu/icu4c/source/tools/genrb/
Dparse.cpp93 struct Lookahead struct
118 struct Lookahead lookahead[MAX_LOOKAHEAD + 1]; argument
/external/cronet/third_party/icu/source/tools/genrb/
Dparse.cpp93 struct Lookahead struct
118 struct Lookahead lookahead[MAX_LOOKAHEAD + 1]; argument
/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/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/cronet/buildtools/third_party/libc++abi/trunk/src/demangle/
DItaniumDemangle.h2504 char look(unsigned Lookahead = 0) const {
2505 if (static_cast<size_t>(Last - First) <= Lookahead)
2507 return First[Lookahead];
/external/python/cpython2/Doc/howto/
Dregex.rst957 Lookahead Assertions
960 Another zero-width assertion is the lookahead assertion. Lookahead assertions

12