Home
last modified time | relevance | path

Searched refs:pushback (Results 1 - 5 of 5) sorted by relevance

/third_party/python/Lib/
H A Dnetrc.py27 self.pushback = []
36 if self.pushback:
37 return self.pushback.pop(0)
63 self.pushback.append(token)
H A Dshlex.py48 self.pushback = deque()
76 self.pushback.appendleft(tok)
103 if self.pushback:
104 tok = self.pushback.popleft()
108 # No pushback. Get a token.
260 self.pushback.appendleft(nextchar)
/third_party/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/
H A DPerfTest.java874 PushbackInputStream pushback = new PushbackInputStream(in, MAX_BOM_LENGTH); in BOMFreeReader()
880 int amountRead = pushback.read(start, 0, MAX_BOM_LENGTH); in BOMFreeReader()
883 pushback.unread(start, bomLength, amountRead - bomLength); in BOMFreeReader()
885 reader = (encoding == null) ? new InputStreamReader(pushback) : new InputStreamReader(pushback, encoding); in BOMFreeReader()
/third_party/skia/src/sksl/
H A DSkSLDSLParser.h91 * of pushback is supported (that is, it is an error to call pushback() twice in a row without
94 void pushback(Token t);
H A DSkSLDSLParser.cpp145 void DSLParser::pushback(Token t) { in pushback() function in SkSL::DSLParser
168 this->pushback(std::move(next)); in checkNext()
777 this->pushback(start); in statement()
1666 this->pushback(id); in suffix()

Completed in 9 milliseconds