Home
last modified time | relevance | path

Searched refs:tok1 (Results 1 – 6 of 6) sorted by relevance

/third_party/boost/libs/multi_index/example/
Dcomposite_keys.cpp118 command_tokenizer::iterator tok1,command_tokenizer::iterator tok2)=0;
129 command_tokenizer::iterator tok1,command_tokenizer::iterator tok2) in execute() argument
131 if(tok1==tok2)return; in execute()
132 std::string dir=*tok1++; in execute()
161 command_tokenizer::iterator tok1,command_tokenizer::iterator tok2) in execute() argument
164 if(tok1!=tok2)option=*tok1++; in execute()
197 command_tokenizer::iterator tok1,command_tokenizer::iterator tok2) in execute() argument
200 if(tok1!=tok2)dir=*tok1++; in execute()
/third_party/f2fs-tools/fsck/
Ddict.c1271 char *tok1, *tok2, *val; in construct() local
1302 if (tokenize(in+1, &tok1, &tok2, (char **) 0) != 2) { in construct()
1306 key = dupstring(tok1); in construct()
1337 char *tok1, *tok2, *val; in main() local
1373 if (tokenize(in+1, &tok1, &tok2, (char **) 0) != 2) { in main()
1377 key = dupstring(tok1); in main()
1394 if (tokenize(in+1, &tok1, (char **) 0) != 1) { in main()
1398 dn = dict_lookup(d, tok1); in main()
1416 if (tokenize(in+1, &tok1, (char **) 0) != 1) { in main()
1423 dn = dict_lookup(d, tok1); in main()
[all …]
/third_party/e2fsprogs/lib/support/
Ddict.c1311 char *tok1, *tok2, *val; in construct() local
1342 if (tokenize(in+1, &tok1, &tok2, (char **) 0) != 2) { in construct()
1346 key = dupstring(tok1); in construct()
1377 char *tok1, *tok2, *val; in main() local
1413 if (tokenize(in+1, &tok1, &tok2, (char **) 0) != 2) { in main()
1417 key = dupstring(tok1); in main()
1434 if (tokenize(in+1, &tok1, (char **) 0) != 1) { in main()
1438 dn = dict_lookup(d, tok1); in main()
1456 if (tokenize(in+1, &tok1, (char **) 0) != 1) { in main()
1463 dn = dict_lookup(d, tok1); in main()
[all …]
/third_party/toybox/toys/pending/
Ddiff.c361 int tok0 = 0, tok1 = 0; in create_j_vector() local
365 tok1 = read_tok(file[1].fp, NULL, tok1); in create_j_vector()
366 if (((tok0 ^ tok1) & empty) || ((tok0 & 0xff) != (tok1 & 0xff))) in create_j_vector()
368 } while (!(tok0 & tok1 & empty)); in create_j_vector()
/third_party/python/Lib/test/test_zoneinfo/
Dtest_zoneinfo.py1374 tok1 = self.klass("Asia/Tokyo")
1378 self.assertIs(tok0, tok1)
/third_party/quickjs/
Dquickjs.c23894 int opcode, scope, tok1, skip_bits; in js_parse_destructuring_element() local
23977 && ((tok1 = js_parse_skip_parens_token(s, &skip_bits, FALSE)) == ',' || in js_parse_destructuring_element()
23978 tok1 == '=' || tok1 == '}')) { in js_parse_destructuring_element()
24193 && ((tok1 = js_parse_skip_parens_token(s, &skip_bits, FALSE)) == ',' || in js_parse_destructuring_element()
24194 tok1 == '=' || tok1 == ']')) { in js_parse_destructuring_element()
24196 if (tok1 == '=') in js_parse_destructuring_element()
26062 int tok, tok1, opcode, scope, block_scope_level; in js_parse_for_in_of() local
26133 … && ((tok1 = js_parse_skip_parens_token(s, &skip_bits, FALSE)) == TOK_IN || tok1 == TOK_OF)) { in js_parse_for_in_of()