Searched defs:Token (Results 1 - 25 of 113) 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/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/chromium_org/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.h22 short Token; member in struct:__anon20633
30 unsigned char Token; member in struct:__anon20634
44 /* 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/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
H A Dtoken.h6 typedef struct Token { struct
9 } Token; typedef in typeref:struct:Token
11 static void Token_init(Token *, SubStr, unsigned int);
12 static Token *Token_new(SubStr, unsigned int);
15 Token_init(Token *r, SubStr t, unsigned int l)
21 static Token *
24 Token *r = malloc(sizeof(Token));
/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/chromium_org/v8/src/
H A Dtoken.h186 class Token { class in namespace:v8::internal
/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.h184 class Token { class in namespace:v8::internal
/external/chromium_org/third_party/icu/source/i18n/unicode/
H A Dtranslit.h267 union Token { union in class:Transliterator
285 inline static Token integerToken(int32_t);
292 inline static Token pointerToken(void*);
309 typedef Transliterator* (U_EXPORT2 *Factory)(const UnicodeString& ID, Token context);
977 Token context);
1028 Token context);
1304 inline Transliterator::Token Transliterator::integerToken(int32_t i) {
1305 Token t;
1310 inline Transliterator::Token Transliterator::pointerToken(void* p) {
1311 Token
[all...]
/external/chromium_org/tools/gn/
H A Dtoken.h11 class Token { class
24 Token();
25 Token(const Location& location, Type t, const base::StringPiece& v);
/external/icu4c/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);
978 Token context);
1030 Token context);
1311 inline Transliterator::Token Transliterator::integerToken(int32_t i) {
1312 Token t;
1317 inline Transliterator::Token Transliterator::pointerToken(void* p) {
1318 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...]

Completed in 568 milliseconds

12345