Searched defs:token (Results 1 - 25 of 341) sorted by relevance

1234567891011>>

/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_symbolizer_test.cc21 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/
H A DANTLRCommonTree.h32 ANTLRCommonToken *token; variable
39 @property (retain, getter=getANTLRCommonToken, setter=setANTLRCommonToken) ANTLRCommonToken *token; variable
H A DANTLRRecognitionException.h37 id<ANTLRToken> token; variable
45 @property (retain, getter=getToken, setter=setToken:) id<ANTLRToken>token; variable
H A DANTLRRecognizerSharedState.h42 id<ANTLRToken> token; variable
59 @property (copy, getter=getToken, setter=setToken) id<ANTLRToken> token; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRCommonTree.h32 ANTLRCommonToken *token; variable
39 @property (retain, getter=getANTLRCommonToken, setter=setANTLRCommonToken) ANTLRCommonToken *token; variable
H A DANTLRRecognitionException.h37 id<ANTLRToken> token; variable
45 @property (retain, getter=getToken, setter=setToken:) id<ANTLRToken>token; variable
H A DANTLRRecognizerSharedState.h42 id<ANTLRToken> token; variable
59 @property (copy, getter=getToken, setter=setToken) id<ANTLRToken> token; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRCommonTree.h32 ANTLRCommonToken *token; variable
39 @property (retain, getter=getANTLRCommonToken, setter=setANTLRCommonToken) ANTLRCommonToken *token; variable
H A DANTLRRecognitionException.h37 id<ANTLRToken> token; variable
45 @property (retain, getter=getToken, setter=setToken:) id<ANTLRToken>token; variable
H A DANTLRRecognizerSharedState.h42 id<ANTLRToken> token; variable
59 @property (copy, getter=getToken, setter=setToken) id<ANTLRToken> token; variable
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRCommonTree.h32 __strong ANTLRCommonToken *token; variable
79 @property (retain, getter=getANTLRCommonToken, setter=setANTLRCommonToken:) ANTLRCommonToken *token;
86 @property (retain) ANTLRCommonToken *token; variable
H A DANTLRRecognitionException.h37 id<ANTLRToken> token; variable
46 @property (retain, getter=getToken, setter=setToken:) id<ANTLRToken>token; variable
H A DANTLRRecognizerSharedState.h43 __strong id<ANTLRToken> token; variable
60 @property (copy, getter=getToken, setter=setToken:) id<ANTLRToken> token; variable
/external/libcxx/test/std/numerics/rand/rand.device/
H A Dctor.pass.cpp14 // 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) { argument
29 return token == "/dev/urandom";
32 return token == "/dev/urandom" || token == "/dev/random";
36 void check_random_device_valid(const std::string &token) { argument
37 std::random_device r(token);
40 void check_random_device_invalid(const std::string &token) { argument
42 std::random_device r(token);
63 std::string token = "wrong file"; local
71 std::string token = "/dev/urandom"; local
79 std::string token = "/dev/random"; local
[all...]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dtoken.ml7 type token = type
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dtoken.ml7 type token = type
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dtoken.ml7 type token = type
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
H A DOutputTest.java36 private final Token token; field in class:OutputTest
38 public OutputTest(Token token) { argument
39 this.token = token;
44 return token.getText();
49 return token.getType();
65 return token.getText();
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DRecognitionException.as40 * exceptions are built with the expected token type.
57 * state can change before the exception is reported so current token index
59 * perhaps print an entire line of input not just a single token, for example.
67 /** What is index of token/char were we looking at when the error occurred? */
72 * For parsers. Even when it's a tree parser, token might be set.
74 public var token:Token; variable
94 * for most recent token with line/col info, but notify getErrorHeader()
106 this.token = TokenStream(input).LT(1);
107 this.line = token.line;
108 this.charPositionInLine = token
[all...]
H A DRecognizerSharedState.as11 /** Track the set of token types that can follow any rule invocation.
19 * matched a token. Prevents generation of more than one error message
26 * but no token is consumed during recovery...another error is found,
28 * one token/tree node is consumed for two errors.
32 /** In lieu of a return value, this indicates that a rule or token
33 * has failed to match. Reset to false upon valid token match.
46 * the stop token index for each rule. ruleMemo[ruleIndex] is
48 * get back the stop token for associated rule or MEMO_RULE_FAILED.
59 /** The goal of all lexer rules/methods is to create a token object.
61 * create a single token
67 public var token:Token; variable
[all...]
/external/javassist/src/main/javassist/compiler/ast/
H A DKeyword.java26 public Keyword(int token) { argument
27 tokenId = token;
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/
H A DParserException.java10 Token token; field in class:ParserException
12 public ParserException(@SuppressWarnings("hiding") Token token, String message) argument
15 this.token = token;
20 return this.token;
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_tokenize.h28 int16_t token; member in struct:__anon9609
35 uint8_t token; member in struct:__anon9610
/external/parameter-framework/utility/
H A DTokenizer.cpp44 string token; local
49 // Special case if there isn't any token anymore (string::substr's
55 // Starting from the token's start, find the first delimiter
66 string token; local
69 token = next();
70 if (token.empty()) {
73 result.push_back(token);
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DRecognitionException.java39 * exceptions are built with the expected token type.
56 * state can change before the exception is reported so current token index
58 * perhaps print an entire line of input not just a single token, for example.
66 /** What is index of token/char were we looking at when the error occurred? */
71 * For parsers. Even when it's a tree parser, token might be set.
73 public Token token; field in class:RecognitionException
93 * for most recent token with line/col info, but notify getErrorHeader()
106 this.token = ((TokenStream)input).LT(1);
107 this.line = token.getLine();
108 this.charPositionInLine = token
[all...]

Completed in 1399 milliseconds

1234567891011>>