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

1234567891011>>

/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/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/webkit/Source/WebCore/html/parser/
H A DHTMLSourceTracker.cpp35 void HTMLSourceTracker::start(const HTMLInputStream& input, HTMLToken& token) argument
37 m_sourceFromPreviousSegments = token.type() == HTMLToken::Uninitialized ? String() : m_sourceFromPreviousSegments + m_source.toString();
39 token.setBaseOffset(input.current().numberOfCharactersConsumed() - m_sourceFromPreviousSegments.length());
42 void HTMLSourceTracker::end(const HTMLInputStream& input, HTMLToken& token) argument
46 token.end(input.current().numberOfCharactersConsumed());
49 String HTMLSourceTracker::sourceForToken(const HTMLToken& token) argument
51 if (token.type() == HTMLToken::EndOfFile)
57 ASSERT(!token.startIndex());
59 int length = token.endIndex() - token
[all...]
/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...]
/external/chromium/chrome/browser/webdata/
H A Dtoken_service_table.cc42 const std::string& token) {
55 bool encrypted = Encryptor::EncryptString(token, &encrypted_token);
41 SetTokenForService(const std::string& service, const std::string& token) argument
/external/e2fsprogs/lib/blkid/
H A Dresolve.c56 * Locate a device name from a token (NAME=value string), or (name, value)
57 * pair. In the case of a token, value is ignored. If the "token" is not
61 char *blkid_get_devname(blkid_cache cache, const char *token, argument
69 if (!token)
78 printf("looking for %s%s%s %s\n", token, value ? "=" : "",
82 if (!strchr(token, '=')) {
83 ret = blkid_strdup(token);
86 blkid_parse_tag_string(token, &t, &v);
89 token
[all...]
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/util/
H A DTimeoutService.java74 /* We cannot simply go on, since it could be that the token
113 TimeoutToken token = new TimeoutToken(runTime, handler);
117 todolist.add(token);
141 return token;
144 public static void cancelTimeoutHandler(TimeoutToken token) argument
148 todolist.remove(token);

Completed in 2262 milliseconds

1234567891011>>