Searched defs:Token (Results 1 - 25 of 110) sorted by relevance

12345

/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DToken.js1 // NB: Because Token has static members of type CommonToken, the Token dummy
2 // constructor is defined in CommonToken. All methods and vars of Token are
3 // defined here. Token is an interface, not a subclass in the Java runtime.
7 * @name Token
10 org.antlr.runtime.Token = function() {};
11 org.antlr.lang.augmentObject(org.antlr.runtime.Token, /** @lends Token */ {
/external/chromium-trace/trace-viewer/tracing/third_party/closure_linter/closure_linter/common/
H A Dmatcher.py26 Token = tokens.Token variable
H A Dtokens.py24 """Token types common to all languages."""
30 class Token(object): class in inherits:object
31 """Token class for intelligent text splitting.
51 """Creates a new Token object.
123 return '<Token: %s, "%s", %r, %d, %r>' % (self.type, self.string,
/external/libvpx/libvpx/vp8/encoder/
H A Dtokenize.h26 short Token; member in struct:__anon9515
34 unsigned char Token; member in struct:__anon9516
48 /* TODO: The Token field should be broken out into a separate char array to
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dtoken.ml0 (*===----------------------------------------------------------------------=== module
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dtoken.ml0 (*===----------------------------------------------------------------------=== module
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dtoken.ml0 (*===----------------------------------------------------------------------=== module
/external/deqp/framework/randomshaders/
H A DrsgToken.cpp21 * \brief Token class.
31 Token::Token (const char* identifier) function in class:rsg::Token
39 Token::~Token (void)
45 Token& Token::operator= (const Token& other)
71 Token::Token (cons function in class:rsg::Token
[all...]
/external/clang/test/CodeGen/
H A Dbitfield-init.c6 struct Token { struct
10 struct Token one = { 1 };
/external/nist-sip/java/gov/nist/core/
H A DToken.java37 public class Token { class
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DToken.pm1 package ANTLR::Runtime::Token;
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dtoken.ml0 (*===----------------------------------------------------------------------=== module
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dtoken.ml0 (*===----------------------------------------------------------------------=== module
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dtoken.ml0 (*===----------------------------------------------------------------------=== module
/external/v8/src/
H A Dtoken.h168 class Token { class in namespace:v8::internal
/external/icu/icu4c/source/i18n/unicode/
H A Dtranslit.h267 union Token { union in class:Transliterator
286 inline static Token integerToken(int32_t);
293 inline static Token pointerToken(void*);
311 typedef Transliterator* (U_EXPORT2 *Factory)(const UnicodeString& ID, Token context);
983 Token context);
1039 Token context);
1325 inline Transliterator::Token Transliterator::integerToken(int32_t i) {
1326 Token t;
1331 inline Transliterator::Token Transliterator::pointerToken(void* p) {
1332 Token
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DRecognitionException.cs83 * The current Token when an error occurred. Since not all streams
84 * can retrieve the ith Token, we have to track the Token object.
212 public IToken Token { property in class:Antlr.Runtime.RecognitionException
320 this._token = ((CommonTree)this._node).Token;
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DCommonTree.cs38 * A tree node that is wrapper for a Token object. After 3.0 release
142 public virtual IToken Token { property in class:Antlr.Runtime.Tree.CommonTree
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DRecognitionException.cs85 * The current Token when an error occurred. Since not all streams
86 * can retrieve the ith Token, we have to track the Token object.
244 public IToken Token property in class:Antlr.Runtime.RecognitionException
392 this._token = ((CommonTree)this._node).Token;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DCommonTree.cs38 * A tree node that is wrapper for a Token object. After 3.0 release
75 this.Token = node.Token;
82 this.Token = t;
91 if ( Token == null || Token.CharPositionInLine == -1 )
98 return Token.CharPositionInLine;
124 return Token == null;
132 if ( Token == null || Token
177 public IToken Token property in class:Antlr.Runtime.Tree.CommonTree
[all...]
/external/chromium-trace/trace-viewer/tracing/third_party/closure_linter/closure_linter/
H A Derror_fixer.py32 Token = javascripttokens.JavaScriptToken variable
136 semicolon_token = Token(';', Type.SEMICOLON, token.line,
211 single_quote_start = Token(
213 single_quote_end = Token(
236 new_token = Token('{', Type.DOC_START_BRACE, start_token.line,
264 new_token = Token('}', Type.DOC_END_BRACE, last_type.line,
313 new_token = Token(' ' * expected, Type.WHITESPACE,
342 whitespace_token = Token(' ', Type.WHITESPACE, token.line,
344 start_comment_token = Token('//', Type.START_SINGLE_LINE_COMMENT,
346 comment_token = Token(' goo
[all...]
/external/clang/utils/
H A Dtoken-delta.py97 class Token: class in inherits:
127 tokens.append(Token(*kTokenRE.match(ln).groups()))
/external/google-breakpad/src/testing/scripts/generator/cpp/
H A Dtokenize.py52 # Token types.
64 class Token(object): class in inherits:object
83 return 'Token(%r)' % self.name
84 return 'Token(%r, %s, %s)' % (self.name, self.start, self.end)
126 Token that represents the next token in the source.
270 yield Token(token_type, source[start:i], start, i)
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DToken.java6 public abstract class Token extends Node class in inherits:Node
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DToken.java30 public interface Token { interface
42 public static final Token EOF_TOKEN = new CommonToken(EOF);
45 public static final Token INVALID_TOKEN = new CommonToken(INVALID_TOKEN_TYPE);
50 public static final Token SKIP_TOKEN = new CommonToken(INVALID_TOKEN_TYPE);
87 * implement but it's nice to know where a Token comes from if you have

Completed in 1846 milliseconds

12345