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

123

/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/libvpx/vp8/encoder/
H A Dtokenize.h22 short Token; member in struct:__anon6939
30 unsigned char Token; member in struct:__anon6940
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/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.h184 class Token { class in namespace:v8::internal
/external/icu4c/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/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/testing/gmock/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/clang/utils/
H A Dtoken-delta.py97 class Token: class in inherits:
127 tokens.append(Token(*kTokenRE.match(ln).groups()))
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DToken.java6 public abstract class Token extends Node class in inherits:Node
/external/webkit/Source/WebCore/xml/
H A DXPathParser.h47 struct Token { struct in namespace:WebCore::XPath
54 Token(int t) : type(t) {} function in struct:WebCore::XPath::Token
55 Token(int t, const String& v): type(t), str(v) {} function in struct:WebCore::XPath::Token
56 Token(int t, Step::Axis v): type(t), axis(v) {} function in struct:WebCore::XPath::Token
57 Token(int t, NumericOp::Opcode v): type(t), numop(v) {} function in struct:WebCore::XPath::Token
58 Token(int t, EqTestOp::Opcode v): type(t), eqop(v) {} function in struct:WebCore::XPath::Token
98 Token makeTokenAndAdvance(int type, int advance = 1);
99 Token makeTokenAndAdvance(int type, NumericOp::Opcode, int advance = 1);
100 Token makeTokenAndAdvance(int type, EqTestOp::Opcode, int advance = 1);
104 Token lexStrin
[all...]
/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
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dtokens.py41 class Token(object): class in inherits:object
144 You don't have to implement but it's nice to know where a Token
152 You don't have to implement but it's nice to know where a Token
162 # Token
168 class CommonToken(Token):
179 Token.__init__(self)
312 class ClassicToken(Token):
315 A Token object like we'd use in ANTLR 2.x; has an actual string created
317 tree nodes that have payload objects. We need to create a Token object
326 Token
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dtoken.rb37 =begin rdoc ANTLR3::Token
52 originated. Token streams will also provide an index value for the token, which
57 == Token as an Interface
63 checking, it's a good idea to include this ANTLR3::Token into your customized
68 module Token module in class:ANTLR3
218 The base class for the standard implementation of Token. It is implemented as a
227 subclass named XYZ::Token.
244 include Token
345 ANTLR3::CommonToken). Token classes are presumed to have an #initialize method
347 have the standard token attributes (see ANTLR3::Token)
[all...]
/external/chromium/base/json/
H A Djson_reader.h53 class Token { class in class:base::JSONReader
70 Token(Type t, const wchar_t* b, int len) function in class:base::JSONReader::Token
161 // Parses a sequence of characters into a Token::NUMBER. If the sequence of
162 // characters is not a valid number, returns a Token::INVALID_TOKEN. Note
165 Token ParseNumberToken();
169 Value* DecodeNumber(const Token& token);
171 // Parses a sequence of characters into a Token::STRING. If the sequence of
172 // characters is not a valid string, returns a Token::INVALID_TOKEN. Note
175 Token ParseStringToken();
179 Value* DecodeString(const Token
[all...]

Completed in 358 milliseconds

123