Home
last modified time | relevance | path

Searched refs:peek (Results 51 - 75 of 252) sorted by relevance

1234567891011

/third_party/node/deps/v8/src/date/
H A Ddateparser-inl.h106 DateToken peek = scanner.Peek(); in Parse() local
107 if (!peek.IsEndOfInput() && !peek.IsWhiteSpace() && in Parse()
108 !peek.IsKeywordZ() && !peek.IsAsciiSign()) in Parse()
/third_party/glslang/glslang/HLSL/
H A DhlslGrammar.cpp111 const char* idString = getTypeString(peek()); in acceptIdentifier()
538 if (peek() == EHTokAssign || peek() == EHTokLeftBracket || peek() == EHTokDot || peek() == EHTokComma) in acceptDeclaration()
639 if (forbidDeclarators || peek() != EHTokIdentifier) in acceptFullySpecifiedType()
672 switch (peek()) { in acceptPreQualifier()
783 switch (peek()) { in acceptPostQualifier()
855 switch (peek()) { in acceptTemplateVecMatBasicType()
1025 const EHlslTokenClass geometryType = peek(); in acceptOutputPrimitiveGeometry()
[all...]
H A DhlslTokenStream.cpp126 EHlslTokenClass HlslTokenStream::peek() const in peek() function in glslang::HlslTokenStream
135 return peek() == tokenClass; in peekTokenClass()
/third_party/glslang/glslang/MachineIndependent/
H A DScan.h83 int ret = peek(); in get()
100 int peek() in peek() function in glslang::TInputScanner
157 if (peek() == '\n') { in unget()
269 // Set to true once peek() returns EndOfFile, so that we won't roll back
/base/telephony/core_service/utils/vcard/src/
H A Dvcard_file_utils.cpp75 file_->peek(); in PeekLine()
97 return file_->peek() == EOF; in IsEnd()
/third_party/rust/crates/cxx/gen/build/src/syntax/
H A Dqualified.rs28 if input.peek(LitStr) { in parse_quoted_or_unquoted()
41 while trailing_punct && input.peek(Ident::peek_any) { in parse_unquoted()
/third_party/rust/crates/cxx/gen/cmd/src/syntax/
H A Dqualified.rs28 if input.peek(LitStr) { in parse_quoted_or_unquoted()
41 while trailing_punct && input.peek(Ident::peek_any) { in parse_unquoted()
/third_party/rust/crates/cxx/macro/src/syntax/
H A Dqualified.rs28 if input.peek(LitStr) { in parse_quoted_or_unquoted()
41 while trailing_punct && input.peek(Ident::peek_any) { in parse_unquoted()
/third_party/rust/crates/cxx/gen/lib/src/syntax/
H A Dqualified.rs28 if input.peek(LitStr) { in parse_quoted_or_unquoted()
41 while trailing_punct && input.peek(Ident::peek_any) { in parse_unquoted()
/third_party/skia/tests/
H A DFakeStreams.h27 size_t peek(void* buf, size_t bytes) const override {
28 return fStream.peek(buf, bytes);
/third_party/rust/crates/cxx/syntax/
H A Dqualified.rs28 if input.peek(LitStr) { in parse_quoted_or_unquoted()
41 while trailing_punct && input.peek(Ident::peek_any) { in parse_unquoted()
/third_party/glslang/SPIRV/
H A Dhex_float.h733 auto next_char = is.peek(); in RejectParseDueToLeadingSign()
844 while (std::isspace(is.peek())) { in operator >>()
849 auto next_char = is.peek(); in operator >>()
859 next_char = is.peek(); in operator >>()
864 auto maybe_hex_start = is.peek(); in operator >>()
884 while ((next_char = is.peek()) == '0') { in operator >>()
923 next_char = is.peek(); in operator >>()
954 next_char = is.peek(); in operator >>()
977 next_char = is.peek(); in operator >>()
/third_party/node/lib/internal/test_runner/mock/
H A Dmock_timers.js480 let timer = this.#executionQueue.peek();
493 timer = this.#executionQueue.peek();
546 let timer = this.#executionQueue.peek();
549 timer = this.#executionQueue.peek();
/third_party/node/deps/v8/src/json/
H A Djson-parser.h207 V8_INLINE JsonToken peek() const { return next_; } in peek() function
210 DCHECK_EQ(peek(), token); in Consume()
215 if (V8_LIKELY(peek() == token)) { in Expect()
218 ReportUnexpectedToken(peek()); in Expect()
/third_party/rust/crates/clap/clap_derive/src/
H A Dattr.rs108 let value = if input.peek(Token![=]) { in parse()
111 if input.peek(LitStr) { in parse()
124 } else if input.peek(syn::token::Paren) { in parse()
/third_party/glslang/glslang/MachineIndependent/preprocessor/
H A DPpContext.h562 if (input->peek() == '\r' || input->peek() == '\n') {
581 if (ch == '\r' && input->peek() == '\n')
598 int ch = input->peek();
603 if (input->peek() != '\r')
608 if (input->peek() == '\\')
/third_party/rust/crates/cxx/gen/cmd/src/
H A Dcfg.rs84 if lookahead.peek(LitBool) { in parse()
87 } else if lookahead.peek(LitStr) { in parse()
/third_party/rust/crates/syn/src/
H A Dparse_quote.rs146 if input.peek(Token![#]) && input.peek2(Token![!]) { in parse()
162 let is_named = input.peek(Ident) && input.peek2(Token![:]) && !input.peek2(Token![::]); in parse()
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/
H A D_tokenizer.py113 def check(self, name: str, *, peek: bool = False) -> bool:
117 another check. If `peek` is set to `True`, the token is not loaded and
130 if not peek:
/third_party/rust/crates/heck/src/
H A Dlib.rs124 if let Some(&(next_i, next)) = char_indices.peek() { in transform()
181 if c == 'Σ' && chars.peek().is_none() { in lowercase()
/third_party/python/Tools/peg_generator/pegen/
H A Dtokenizer.py37 tok = self.peek()
43 def peek(self) -> tokenize.TokenInfo: member in Tokenizer
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/breakiter/
H A DCjkBreakEngine.java268 if (foundBreaks.size() == 0 || foundBreaks.peek() < startPos) { in divideUpDictionaryRange()
290 if (!foundBreaks.isEmpty() && foundBreaks.peek() == endPos) { in divideUpDictionaryRange()
307 inText.setIndex(foundBreaks.peek()); in divideUpDictionaryRange()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DCjkBreakEngine.java224 if (foundBreaks.size() == 0 || foundBreaks.peek() < startPos) { in divideUpDictionaryRange()
237 if (!foundBreaks.isEmpty() && foundBreaks.peek() == endPos) { in divideUpDictionaryRange()
242 inText.setIndex(foundBreaks.peek()); in divideUpDictionaryRange()
/third_party/skia/third_party/externals/spirv-tools/source/util/
H A Dhex_float.h816 auto next_char = is.peek(); in RejectParseDueToLeadingSign()
927 while (std::isspace(is.peek())) { in operator >>()
932 auto next_char = is.peek(); in operator >>()
942 next_char = is.peek(); in operator >>()
947 auto maybe_hex_start = is.peek(); in operator >>()
967 while ((next_char = is.peek()) == '0') { in operator >>()
1006 next_char = is.peek(); in operator >>()
1040 next_char = is.peek(); in operator >>()
1069 next_char = is.peek(); in operator >>()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/util/
H A Dhex_float.h816 auto next_char = is.peek(); in RejectParseDueToLeadingSign()
927 while (std::isspace(is.peek())) { in operator >>()
932 auto next_char = is.peek(); in operator >>()
942 next_char = is.peek(); in operator >>()
947 auto maybe_hex_start = is.peek(); in operator >>()
967 while ((next_char = is.peek()) == '0') { in operator >>()
1006 next_char = is.peek(); in operator >>()
1040 next_char = is.peek(); in operator >>()
1069 next_char = is.peek(); in operator >>()

Completed in 16 milliseconds

1234567891011