HomeSort by relevance Sort by last modified time
    Searched defs:token (Results 1 - 25 of 1424) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /cts/tools/dasm/src/java_cup/runtime/
token.java 13 public class token extends symbol { class in inherits:symbol
16 public token(int term_num) method in class:token
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_symbolizer_test.cc 21 char *token; local
24 rest = ExtractToken("a;b;c", ";", &token);
25 EXPECT_STREQ("a", token);
27 InternalFree(token);
29 rest = ExtractToken("aaa-bbb.ccc", ";.-*", &token);
30 EXPECT_STREQ("aaa", token);
32 InternalFree(token);
36 int token; local
37 const char *rest = ExtractInt("123,456;789", ";,", &token);
38 EXPECT_EQ(123, token);
43 uptr token; local
50 char *token; local
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRCommonTree.h 32 ANTLRCommonToken *token; variable
39 @property (retain, getter=getANTLRCommonToken, setter=setANTLRCommonToken) ANTLRCommonToken *token; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRCommonTree.h 32 ANTLRCommonToken *token; variable
39 @property (retain, getter=getANTLRCommonToken, setter=setANTLRCommonToken) ANTLRCommonToken *token; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRCommonTree.h 32 ANTLRCommonToken *token; variable
39 @property (retain, getter=getANTLRCommonToken, setter=setANTLRCommonToken) ANTLRCommonToken *token; variable
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRCommonTree.h 32 __strong ANTLRCommonToken *token; variable
79 @property (retain, getter=getANTLRCommonToken, setter=setANTLRCommonToken:) ANTLRCommonToken *token;
86 @property (retain) ANTLRCommonToken *token; variable
  /external/google-breakpad/src/processor/
tokenize.cc 57 char *token = strtok_r(line, separators, &save_ptr); local
58 while (token && --remaining > 0) {
59 tokens->push_back(token);
61 token = strtok_r(NULL, separators, &save_ptr);
64 // If there's anything left, just add it as a single token.
65 if (remaining == 0 && (token = strtok_r(NULL, "\r\n", &save_ptr))) {
66 tokens->push_back(token);
  /external/libcxx/test/std/numerics/rand/rand.device/
ctor.pass.cpp 14 // explicit random_device(const string& token = implementation-defined);
17 // value of the token parameter are implementation-defined". Implementations
25 bool is_valid_random_device(const std::string &token) {
28 return token == "/dev/urandom" || token == "/dev/random";
30 return token == "/dev/urandom";
34 void check_random_device_valid(const std::string &token) {
35 std::random_device r(token);
38 void check_random_device_invalid(const std::string &token) {
40 std::random_device r(token);
61 std::string token = "wrong file"; local
69 std::string token = "\/dev\/urandom"; local
77 std::string token = "\/dev\/random"; local
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
token.ml 7 type token = type
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
token.ml 7 type token = type
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
token.ml 7 type token = type
  /external/parameter-framework/upstream/utility/
Tokenizer.cpp 45 string token; local
52 if (token.empty()) {
58 // left-hand token and a right-side token. We are going to add
64 result.push_back(token);
65 token.clear();
68 token += character;
72 // push any leftover token:
74 result.push_back(token);
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_isinstance.py 13 from ..fixer_util import token namespace
36 if arg.type == token.NAME and arg.value in names_inserted:
37 if idx < len(args) - 1 and args[idx + 1].type == token.COMMA:
42 if arg.type == token.NAME:
44 if new_args and new_args[-1].type == token.COMMA:
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:
fix_ne.py 8 from ..pgen2 import token namespace
15 _accept_type = token.NOTEQUAL
22 new = pytree.Leaf(token.NOTEQUAL, u"!=", prefix=node.prefix)
fix_numliterals.py 7 from ..pgen2 import token namespace
15 _accept_type = token.NUMBER
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_isinstance.py 13 from ..fixer_util import token namespace
36 if arg.type == token.NAME and arg.value in names_inserted:
37 if idx < len(args) - 1 and args[idx + 1].type == token.COMMA:
42 if arg.type == token.NAME:
44 if new_args and new_args[-1].type == token.COMMA:
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:
fix_ne.py 8 from ..pgen2 import token namespace
15 _accept_type = token.NOTEQUAL
22 new = pytree.Leaf(token.NOTEQUAL, u"!=", prefix=node.prefix)
fix_numliterals.py 7 from ..pgen2 import token namespace
15 _accept_type = token.NUMBER
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_isinstance.py 13 from ..fixer_util import token namespace
36 if arg.type == token.NAME and arg.value in names_inserted:
37 if idx < len(args) - 1 and args[idx + 1].type == token.COMMA:
42 if arg.type == token.NAME:
44 if new_args and new_args[-1].type == token.COMMA:
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:
fix_ne.py 8 from ..pgen2 import token namespace
15 _accept_type = token.NOTEQUAL
22 new = pytree.Leaf(token.NOTEQUAL, u"!=", prefix=node.prefix)
fix_numliterals.py 7 from ..pgen2 import token namespace
15 _accept_type = token.NUMBER
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_isinstance.py 13 from ..fixer_util import token namespace
36 if arg.type == token.NAME and arg.value in names_inserted:
37 if idx < len(args) - 1 and args[idx + 1].type == token.COMMA:
42 if arg.type == token.NAME:
44 if new_args and new_args[-1].type == token.COMMA:

Completed in 655 milliseconds

1 2 3 4 5 6 7 8 91011>>