/third_party/libcoap/include/coap3/ |
H A D | coap_subscribe_internal.h | 77 * @param token The token used when the observe notify failed. 81 const coap_bin_const_t *token); 93 * identified by the given @p token. This function returns the registered 99 * @param token The token that identifies this subscription. 107 const coap_bin_const_t *token, 115 * @param token The token that identifies this subscription or @c NULL for 116 * any token [all...] |
/third_party/python/Lib/lib2to3/fixes/ |
H A D | fix_apply.py | 10 from ..pgen2 import token namespace 48 if (func.type not in (token.NAME, syms.atom) and 50 func.children[-2].type == token.DOUBLESTAR)): 59 l_newargs = [pytree.Leaf(token.STAR, "*"), args] 62 pytree.Leaf(token.DOUBLESTAR, "**"), 64 l_newargs[-2].prefix = " " # that's the ** token
|
H A D | fix_itertools_imports.py | 5 from lib2to3.fixer_util import BlankLine, syms, token namespace 21 if child.type == token.NAME: 24 elif child.type == token.STAR: 43 if remove_comma and child.type == token.COMMA: 48 while children and children[-1].type == token.COMMA:
|
/third_party/rust/crates/syn/src/ |
H A D | group.rs | 3 use crate::token; 11 pub token: token::Paren, 20 pub token: token::Brace, 29 pub token: token::Bracket, 39 pub token: token::Group, 48 token in parse_parens() [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/number/ |
H A D | SkeletonSyntaxException.java | 15 * Construct a new SkeletonSyntaxException with information about the token at the point of failure. 20 public SkeletonSyntaxException(String message, CharSequence token) { in SkeletonSyntaxException() argument 21 super("Syntax error in skeleton string: " + message + ": " + token); in SkeletonSyntaxException() 25 * Construct a new SkeletonSyntaxException with information about the token at the point of failure. 30 public SkeletonSyntaxException(String message, CharSequence token, Throwable cause) { in SkeletonSyntaxException() argument 31 super("Syntax error in skeleton string: " + message + ": " + token, cause); in SkeletonSyntaxException()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/number/ |
H A D | SkeletonSyntaxException.java | 16 * Construct a new SkeletonSyntaxException with information about the token at the point of failure. 20 public SkeletonSyntaxException(String message, CharSequence token) { in SkeletonSyntaxException() argument 21 super("Syntax error in skeleton string: " + message + ": " + token); in SkeletonSyntaxException() 25 * Construct a new SkeletonSyntaxException with information about the token at the point of failure. 29 public SkeletonSyntaxException(String message, CharSequence token, Throwable cause) { in SkeletonSyntaxException() argument 30 super("Syntax error in skeleton string: " + message + ": " + token, cause); in SkeletonSyntaxException()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/ |
H A D | ap_rrm.c | 29 wpa_printf(MSG_DEBUG, "RRM: LCI request (token %s) timed out", in hostapd_lci_rep_timeout_handler() 35 static void hostapd_handle_lci_report(struct hostapd_data *hapd, u8 token, in hostapd_handle_lci_report() argument 38 if (!hapd->lci_req_active || hapd->lci_req_token != token) { in hostapd_handle_lci_report() 39 wpa_printf(MSG_DEBUG, "Unexpected LCI report, token %s", anonymize_token(token)); in hostapd_handle_lci_report() 45 wpa_printf(MSG_DEBUG, "LCI report token %s len %zu", anonymize_token(token), len); in hostapd_handle_lci_report() 53 wpa_printf(MSG_DEBUG, "RRM: Range request (token %s) timed out", in hostapd_range_rep_timeout_handler() 59 static void hostapd_handle_range_report(struct hostapd_data *hapd, u8 token, in hostapd_handle_range_report() argument 62 if (!hapd->range_req_active || hapd->range_req_token != token) { in hostapd_handle_range_report() 74 hostapd_handle_beacon_report(struct hostapd_data *hapd, const u8 *addr, u8 token, u8 rep_mode, const u8 *pos, size_t len) hostapd_handle_beacon_report() argument 100 u8 token, rep_mode; hostapd_handle_radio_msmt_report() local 286 u8 token; hostapd_handle_nei_report_req() local [all...] |
/third_party/node/deps/npm/node_modules/@pkgjs/parseargs/examples/ |
H A D | no-repeated-options.js | 18 tokens.forEach((token) => { 19 if (token.kind !== 'option') return; 20 if (seenBefore.has(token.name)) { 21 throw new Error(`option '${token.name}' used multiple times`); 23 seenBefore.add(token.name);
|
/third_party/python/Lib/lib2to3/pgen2/ |
H A D | pgen.py | 5 from . import grammar, token, tokenize namespace 65 # Either a symbol name or a named token 75 # A named token (NAME, NUMBER, STRING) 76 itoken = getattr(token, label, None) 78 assert itoken in token.tok_name, label 94 c.labels.append((token.NAME, value)) 98 # An operator (any non-numeric token) 99 itoken = grammar.opmap[value] # Fails if unknown token 149 while self.type != token.ENDMARKER: 150 while self.type == token [all...] |
/third_party/node/deps/v8/third_party/inspector_protocol/crdtp/ |
H A D | json.cc | 439 const char* token) { in ParseConstToken() 440 // |token| is \0 terminated, it's one of the constants at top of the file. in ParseConstToken() 441 while (start < end && *token != '\0' && *start++ == *token++) { in ParseConstToken() 443 if (*token != '\0') in ParseConstToken() 841 Token token = ParseToken(start, end, &token_start, &token_end); in ParseValue() local 842 switch (token) { in ParseValue() 885 token = ParseToken(start, end, &token_start, &token_end); in ParseValue() 886 while (token != ArrayEnd) { in ParseValue() 893 token in ParseValue() 436 ParseConstToken(const Char* start, const Char* end, const Char** token_end, const char* token) ParseConstToken() argument [all...] |
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/lsp/span/ |
H A D | token111.go | 20 "go/token" 23 // lineStart is the pre-Go 1.12 version of (*token.File).LineStart. For Go 26 func lineStart(f *token.File, line int) token.Pos { 36 return pos - (token.Pos(posn.Column) - 1) 40 return token.NoPos
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/span/ |
H A D | token111.go | 20 "go/token" 23 // lineStart is the pre-Go 1.12 version of (*token.File).LineStart. For Go 26 func lineStart(f *token.File, line int) token.Pos { 36 return pos - (token.Pos(posn.Column) - 1) 40 return token.NoPos
|
/third_party/spirv-tools/utils/vscode/src/lsp/span/ |
H A D | token111.go | 20 "go/token" 23 // lineStart is the pre-Go 1.12 version of (*token.File).LineStart. For Go 26 func lineStart(f *token.File, line int) token.Pos { 36 return pos - (token.Pos(posn.Column) - 1) 40 return token.NoPos
|
/third_party/ninja/src/ |
H A D | lexer.in.cc | 123 Lexer::Token token; in ReadToken() local 137 [ ]*"\r\n" { token = NEWLINE; break; } in ReadToken() 138 [ ]*"\n" { token = NEWLINE; break; } in ReadToken() 139 [ ]+ { token = INDENT; break; } in ReadToken() 140 "build" { token = BUILD; break; } in ReadToken() 141 "pool" { token = POOL; break; } in ReadToken() 142 "rule" { token = RULE; break; } in ReadToken() 143 "default" { token = DEFAULT; break; } in ReadToken() 144 "=" { token = EQUALS; break; } in ReadToken() 145 ":" { token in ReadToken() 164 PeekToken(Token token) PeekToken() argument [all...] |
/third_party/PyYAML/tests/lib/ |
H A D | test_tokens.py | 51 for token in yaml.scan(file): 52 if not isinstance(token, (yaml.StreamStartToken, yaml.StreamEndToken)): 53 tokens1.append(_replaces[token.__class__]) 69 for token in yaml.scan(file): 70 tokens.append(token.__class__.__name__)
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/stringprep/ |
H A D | TestInputDataStructure.java | 41 private String token = null; field in TestInputDataStructure 131 * @return Returns the token. 134 return token; in getToken() 137 * @param token The token to set. 139 public void setToken(String token) { in setToken() argument 140 this.token = token; in setToken()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/ |
H A D | TestInputDataStructure.java | 38 private String token = null; field in TestInputDataStructure 128 * @return Returns the token. 131 return token; in getToken() 134 * @param token The token to set. 136 public void setToken(String token) { in setToken() argument 137 this.token = token; in setToken()
|
/third_party/ltp/testcases/kernel/containers/share/ |
H A D | ns_exec.c | 99 char *token; in main() local 113 while ((token = strsep(&argv[2], ","))) { in main() 114 struct param *p = get_param(token); in main() 117 tst_resm(TINFO, "Unknown namespace: %s", token); in main() 122 if (open_ns_fd(argv[1], token) != 0) in main()
|
/third_party/node/deps/ngtcp2/ngtcp2/lib/ |
H A D | ngtcp2_cid.h | 65 token is set in token field. */ 93 /* token is a stateless reset token associated to this CID. 94 Actually, the stateless reset token is tied to the connection, 96 uint8_t token[NGTCP2_STATELESS_RESET_TOKENLEN]; member 126 * |token| is NULL, the function fills dcid->token it with 0. |token| 130 const uint8_t *token); [all...] |
/third_party/skia/third_party/externals/libwebp/src/enc/ |
H A D | token_enc.c | 10 // Paginated token buffer 12 // A 'token' is a bit value associated with a probability, either fixed 30 #define MIN_PAGE_SIZE 8192 // minimum number of token per page 210 const token_t token = tokens[n]; in VP8EmitTokens() local 211 const int bit = (token >> 15) & 1; in VP8EmitTokens() 212 if (token & FIXED_PROBA_BIT) { in VP8EmitTokens() 213 VP8PutBit(bw, bit, token & 0xffu); // constant proba in VP8EmitTokens() 215 VP8PutBit(bw, bit, probas[token & 0x3fffu]); in VP8EmitTokens() 236 const token_t token = tokens[n]; in VP8EstimateTokenSize() local 237 const int bit = token in VP8EstimateTokenSize() [all...] |
/third_party/glslang/glslang/MachineIndependent/preprocessor/ |
H A D | PpContext.h | 114 // recognized, in front of the token returned: 118 // Numeric value of the token: 124 // Text string of the token: 204 int tokenPaste(int token, TPpToken&); 247 // Capture the needed parts of a token stream for macro recording/playback. 273 bool space; // did a space precede the token? 280 void putToken(int token, TPpToken* ppToken); 287 // should get both pasted together as one token when token pasting. in peekContinuedPasting() 361 // Get the next token fro 366 int token = EndOfInput; scanToken() local 513 int token = tokens->getToken(pp->parseContext, ppToken); global() variable 540 int token; global() member in glslang::TPpContext::tUngotTokenInput [all...] |
/third_party/rust/crates/nom/src/ |
H A D | traits.rs | 150 /// Transforms common types to a char for basic token parsing 875 /// Look for a token in self in compare() 877 /// Returns true if self contains the token in compare() 878 fn find_token(&self, token: T) -> bool; in compare() 882 fn find_token(&self, token: u8) -> bool { in find_token() 883 memchr::memchr(token, self).is_some() in find_token() 888 fn find_token(&self, token: u8) -> bool { in find_token() 889 self.as_bytes().find_token(token) in find_token() 894 fn find_token(&self, token: &u8) -> bool { in find_token() 895 self.find_token(*token) in find_token() [all...] |
/third_party/jerryscript/tools/vera++/scripts/rules/ |
H A D | jerry_no_space_before_closing_parentheses.tcl | 34 foreach token [getTokens $fileName 1 0 -1 -1 {}] { 35 set lineNumber [lindex $token 1] 36 set colNumber [lindex $token 2] 37 set tokenType [lindex $token 3]
|
H A D | jerry_no_space_after_opening_parentheses.tcl | 34 foreach token [getTokens $fileName 1 0 -1 -1 {}] { 35 set lineNumber [lindex $token 1] 36 set colNumber [lindex $token 2] 37 set tokenType [lindex $token 3]
|
H A D | jerry_funcname_space_parentheses.tcl | 38 foreach token [getTokens $fileName 1 0 -1 -1 {}] { 39 set lineNumber [lindex $token 1] 40 set colNumber [lindex $token 2] 41 set tokenType [lindex $token 3]
|