Home
last modified time | relevance | path

Searched refs:token (Results 276 - 300 of 990) sorted by relevance

1...<<11121314151617181920>>...40

/third_party/protobuf/conformance/third_party/jsoncpp/
H A Djson.h1440 bool readToken(Token& token);
1449 bool readObject(Token& token);
1450 bool readArray(Token& token);
1451 bool decodeNumber(Token& token);
1452 bool decodeNumber(Token& token, Value& decoded);
1453 bool decodeString(Token& token);
1454 bool decodeString(Token& token, std::string& decoded);
1455 bool decodeDouble(Token& token);
1456 bool decodeDouble(Token& token, Value& decoded);
1457 bool decodeUnicodeCodePoint(Token& token,
[all...]
/third_party/skia/third_party/externals/spirv-headers/tools/buildHeaders/jsoncpp/dist/json/
H A Djson.h1389 bool readToken(Token& token);
1398 bool readObject(Token& token);
1399 bool readArray(Token& token);
1400 bool decodeNumber(Token& token);
1401 bool decodeNumber(Token& token, Value& decoded);
1402 bool decodeString(Token& token);
1403 bool decodeString(Token& token, std::string& decoded);
1404 bool decodeDouble(Token& token);
1405 bool decodeDouble(Token& token, Value& decoded);
1406 bool decodeUnicodeCodePoint(Token& token,
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Headers/tools/buildHeaders/jsoncpp/dist/json/
H A Djson.h1389 bool readToken(Token& token);
1398 bool readObject(Token& token);
1399 bool readArray(Token& token);
1400 bool decodeNumber(Token& token);
1401 bool decodeNumber(Token& token, Value& decoded);
1402 bool decodeString(Token& token);
1403 bool decodeString(Token& token, std::string& decoded);
1404 bool decodeDouble(Token& token);
1405 bool decodeDouble(Token& token, Value& decoded);
1406 bool decodeUnicodeCodePoint(Token& token,
[all...]
/third_party/spirv-headers/tools/buildHeaders/jsoncpp/dist/json/
H A Djson.h1389 bool readToken(Token& token);
1398 bool readObject(Token& token);
1399 bool readArray(Token& token);
1400 bool decodeNumber(Token& token);
1401 bool decodeNumber(Token& token, Value& decoded);
1402 bool decodeString(Token& token);
1403 bool decodeString(Token& token, std::string& decoded);
1404 bool decodeDouble(Token& token);
1405 bool decodeDouble(Token& token, Value& decoded);
1406 bool decodeUnicodeCodePoint(Token& token,
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/
H A Ddpp_reconfig.c434 struct json_token *root = NULL, *own_root = NULL, *token; in dpp_reconfig_auth_req_rx() local
490 token = json_get_member(root, "expiry"); in dpp_reconfig_auth_req_rx()
491 if (token && token->type == JSON_STRING && in dpp_reconfig_auth_req_rx()
492 dpp_key_expired(token->string, NULL)) { in dpp_reconfig_auth_req_rx()
498 token = json_get_member(root, "netAccessKey"); in dpp_reconfig_auth_req_rx()
499 if (!token || token->type != JSON_OBJECT) { in dpp_reconfig_auth_req_rx()
522 net_access_key_len, token) < 0) in dpp_reconfig_auth_req_rx()
659 struct json_token *root = NULL, *token, *conn_status_jso in dpp_reconfig_auth_resp_rx() local
[all...]
/third_party/rust/crates/syn/src/
H A Dexpr.rs248 pub bracket_token: token::Bracket,
325 pub paren_token: token::Paren,
414 pub group_token: token::Group,
441 pub bracket_token: token::Bracket,
503 pub brace_token: token::Brace,
517 pub paren_token: token::Paren,
527 pub paren_token: token::Paren,
572 pub bracket_token: token::Bracket,
599 pub brace_token: token::Brace,
631 pub paren_token: token
[all...]
H A Dexport.rs54 pub use crate::token::parsing::{peek_punct, punct as parse_punct};
58 pub use crate::token::printing::punct as print_punct;
62 pub use crate::token::private::CustomToken;
H A Dlookahead.rs5 use crate::token::Token;
9 /// Support for checking the next token in a stream to decide how to parse.
12 /// automatically construct an appropriate error message based on the token
89 /// Looks at the next token in the parse stream to determine whether it
90 /// matches the requested type of token.
102 /// - `input.peek(token::Brace)`
103 pub fn peek<T: Peek>(&self, token: T) -> bool { in peek()
104 let _ = token; in peek()
110 /// The error message will identify all of the expected token types that
119 Error::new(self.cursor.span(), "unexpected token") in error()
[all...]
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/regex/
H A DRegexTransformer.java159 static String substitute(String s, char token, Function<Character, String> replaceFn) { in substitute() argument
160 if (s.indexOf(token) == -1) { in substitute()
165 for (int j = s.indexOf(token); j != -1; i = j + 2, j = s.indexOf(token, i)) { in substitute()
168 checkNotNull(replaceFn.apply(varChar), "no such variable %s%s", token, varChar); in substitute()
/third_party/libcoap/src/
H A Dcoap_cache.c173 memcpy(entry->pdu, pdu, offsetof(coap_pdu_t, token)); in coap_new_cache_entry()
174 memcpy(entry->pdu->token, pdu->token, pdu->used_size); in coap_new_cache_entry()
176 entry->pdu->data = entry->pdu->token + (pdu->data - pdu->token); in coap_new_cache_entry()
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/
H A DJsonTokenizerTest.cs123 var token = tokenizer.Next(); in ObjectDepth_WithPushBack()
126 tokenizer.PushBack(token); in ObjectDepth_WithPushBack()
128 // Read the same token again, and get back to depth 1 in ObjectDepth_WithPushBack()
129 token = tokenizer.Next(); in ObjectDepth_WithPushBack()
133 token = tokenizer.Next(); in ObjectDepth_WithPushBack()
135 tokenizer.PushBack(token); in ObjectDepth_WithPushBack()
357 /// messy string literal escaping. The "end document" token is not specified in the list of
369 /// are expected to be used *as* apostrophes. The "end document" token is not specified in the list of
381 Assert.Fail("Expected {0} but reached end of token stream", expectedTokens[i]); in AssertTokensNoReplacement()
388 Assert.Fail("Expected token strea in AssertTokensNoReplacement()
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
H A Dangle_format.py106 for token in tokens:
107 channels += token[0].lower()
117 for token in tokens:
118 bits[token[0]] = int(token[1:])
/third_party/glslang/glslang/MachineIndependent/preprocessor/
H A DPpTokens.cpp99 // Add a token (including backing string) to the end of a macro
100 // token stream, for later playback.
107 // Read the next token from a macro token stream.
119 parseContext.requireProfile(ppToken->loc, ~EEsProfile, "token pasting (##)"); in getToken()
120 parseContext.profileRequires(ppToken->loc, ~EEsProfile, 130, nullptr, "token pasting (##)"); in getToken()
133 // and we are also on the last token
147 // 2. last token and we've been told after this there will be a ## in peekTokenizedPasting()
151 // Getting here means the last token will be pasted, after this in peekTokenizedPasting()
153 // Are we at the last non-whitespace token in peekTokenizedPasting()
211 UngetToken(int token, TPpToken* ppToken) UngetToken() argument
[all...]
/third_party/node/deps/npm/node_modules/spdx-expression-parse/
H A Dscan.js103 // Tries to read the next token. Returns `undefined` if no token is
122 var token = parseToken()
123 if (!token) {
128 tokens.push(token)
/third_party/python/Lib/lib2to3/fixes/
H A Dfix_print.py19 from ..pgen2 import token namespace
58 if args and args[0] == pytree.Leaf(token.RIGHTSHIFT, ">>"):
82 pytree.Leaf(token.EQUAL, "="),
H A Dfix_raise.py27 from ..pgen2 import token namespace
42 if exc.type == token.STRING:
81 if val.type != token.NAME or val.value != "None":
/third_party/skia/third_party/externals/angle2/src/compiler/preprocessor/
H A DMacroExpander.h36 void lex(Token *token) override;
39 void getToken(Token *token);
40 void ungetToken(const Token &token);
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
H A DvkAppParamsUtil.cpp77 std::string token; in readApplicationParameters() local
80 while (std::getline(sstream, token, ',')) in readApplicationParameters()
81 tokens.push_back(trim(token)); in readApplicationParameters()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/preprocessor/
H A DMacroExpander.h37 void lex(Token *token) override;
42 void getToken(Token *token);
43 void ungetToken(const Token &token);
/third_party/pulseaudio/src/tests/
H A Dladspa-dbus.py59 for token in tokens:
60 if token == "default":
64 arguments.append(float(token))
/third_party/rust/crates/serde/serde_derive/src/
H A Dfragment.rs3 use syn::{token, Token};
33 token::Brace::default().surround(out, |out| block.to_tokens(out)); in to_tokens()
61 token::Brace::default().surround(out, |out| block.to_tokens(out)); in to_tokens()
/test/testfwk/arkxtest/uitest/server/
H A Dserver_main.cpp61 "start-daemon <token> start the test process\n"
206 static int32_t StartDaemon(string_view token, int32_t argc, char *argv[]) in StartDaemon() argument
208 if (token.empty()) { in StartDaemon()
209 LOG_E("Empty transaction token"); in StartDaemon()
212 auto transalatedToken = TranslateToken(token); in StartDaemon()
224 if (token == singlenessToken) { in StartDaemon()
316 string_view token = argc < 3 ? "" : argv[2]; in main()
317 _Exit(StartDaemon(token, argc - THREE, argv + THREE)); in main()
/third_party/node/deps/ngtcp2/ngtcp2/crypto/includes/ngtcp2/
H A Dngtcp2_crypto.h580 * stateless reset token using HKDF extraction using the given |cid|
581 * and static key |secret| as input. The token will be written to
582 * the buffer pointed by |token| and it must have a capacity of at
588 uint8_t *token, const uint8_t *secret, size_t secretlen,
595 * data added to a token generated by
605 * Retry token generated by `ngtcp2_crypto_generate_retry_token`.
613 * token generated by `ngtcp2_crypto_generate_regular_token`.
621 * a token generated by `ngtcp2_crypto_generate_retry_token`.
632 * of a token generated by `ngtcp2_crypto_generate_regular_token`.
641 * `ngtcp2_crypto_generate_retry_token` generates a token i
[all...]
/third_party/protobuf/csharp/src/Google.Protobuf/
H A DJsonTokenizer.cs47 /// between values. It validates the token stream as it goes - so callers can assume that the
50 /// <para>Implementation details: the base class handles single token push-back and </para>
82 // TODO: Why do we allow a different token to be pushed back? It might be better to always remember the previous
83 // token returned, and allow a parameterless Rewind() method (which could only be called once, just like the current PushBack).
84 internal void PushBack(JsonToken token) in PushBack() argument
90 bufferedToken = token; in PushBack()
91 if (token.Type == JsonToken.TokenType.StartObject) in PushBack()
95 else if (token.Type == JsonToken.TokenType.EndObject) in PushBack()
102 /// Returns the next JSON token in the stream. An EndDocument token i
[all...]
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A DValidateLimitations.cpp81 void error(TSourceLoc loc, const char *reason, const char *token);
82 void error(TSourceLoc loc, const char *reason, const ImmutableString &token);
159 void ValidateLimitationsTraverser::error(TSourceLoc loc, const char *reason, const char *token) in error() argument
161 mDiagnostics->error(loc, reason, token); in error()
166 const ImmutableString &token) in error()
168 error(loc, reason, token.data()); in error()
164 error(TSourceLoc loc, const char *reason, const ImmutableString &token) error() argument

Completed in 43 milliseconds

1...<<11121314151617181920>>...40