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

123456

/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_org/chrome/renderer/resources/extensions/
H A Denterprise_platform_keys_custom_bindings.js15 // The Token object holds the token id and the SubtleCrypto member.
18 var Token = require('enterprise.platformKeys.Token').Token; variable
27 function(tokenId) { return new Token(tokenId); }));
/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/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dtokenize.h26 short Token; member in struct:__anon12119
34 unsigned char Token; member in struct:__anon12120
48 /* TODO: The Token field should be broken out into a separate char array to
/external/chromium_org/tools/gn/
H A Dtoken.cc9 Token::Token() : type_(INVALID), value_() { function in class:Token
12 Token::Token(const Location& location, function in class:Token
20 bool Token::IsIdentifierEqualTo(const char* v) const {
24 bool Token::IsStringEqualTo(const char* v) const {
/external/libvpx/libvpx/vp8/encoder/
H A Dtokenize.h26 short Token; member in struct:__anon24084
34 unsigned char Token; member in struct:__anon24085
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/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.h163 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/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/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

Completed in 1772 milliseconds

123456