HomeSort by relevance Sort by last modified time
    Searched defs:Token (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/libvpx/vp8/encoder/
tokenize.h 22 short Token;
30 unsigned char Token;
44 /* TODO: The Token field should be broken out into a separate char array to
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
token.ml 7 type token = type
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
token.ml 7 type token = type
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
token.ml 7 type token = type
  /external/clang/test/CodeGen/
bitfield-init.c 6 struct Token {
10 struct Token one = { 1 };
  /external/nist-sip/java/gov/nist/core/
Token.java 29 * Base token class.
37 public class Token {
  /external/v8/src/
token.h 38 // symbolic token name, string is the corresponding syntactic symbol
40 // The parameters are invoked for token categories as follows:
173 /* Illegal token - not able to scan. */ \
180 class Token {
182 // All token values.
190 // Returns a string corresponding to the C++ token name
191 // (e.g. "LT" for the token LT).
264 // Returns a string corresponding to the JS token string
265 // (.e., "<" for the token LT) or NULL if the token doesn'
    [all...]
  /external/icu4c/i18n/unicode/
translit.h 267 union Token {
269 * This token, interpreted as a 32-bit integer.
274 * This token, interpreted as a native pointer.
281 * Return a token containing an integer.
282 * @return a token containing an integer.
285 inline static Token integerToken(int32_t);
288 * Return a token containing a pointer.
289 * @return a token containing a pointer.
292 inline static Token pointerToken(void*);
309 typedef Transliterator* (U_EXPORT2 *Factory)(const UnicodeString& ID, Token context)
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
token.ml 7 type token = type
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
token.ml 7 type token = type
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
token.ml 7 type token = type
  /external/emma/core/java12/com/vladium/util/args/
OptsParser.java 439 // if the current optdef calls for more values, consume the next token
1334 final Token token = (Token) KEYWORDS.get (value.toString ()); local
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
Token.java 6 public abstract class Token extends Node
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/address/parser/
Token.java 1 /* Generated By:JavaCC: Do not edit this line. Token.java Version 3.0 */
20 * Describes the input token stream.
23 public class Token {
26 * An integer that describes the kind of this token. This numbering
34 * of this token; endLine and endColumn describe the position of the
35 * last character of this token.
40 * The string image of the token.
45 * A reference to the next regular (non-special) token from the input
46 * stream. If this is the last token from the input stream, or if the
47 * token manager has not read tokens beyond this one, this field i
    [all...]
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/contenttype/parser/
Token.java 1 /* Generated By:JavaCC: Do not edit this line. Token.java Version 3.0 */
20 * Describes the input token stream.
23 public class Token {
26 * An integer that describes the kind of this token. This numbering
34 * of this token; endLine and endColumn describe the position of the
35 * last character of this token.
40 * The string image of the token.
45 * A reference to the next regular (non-special) token from the input
46 * stream. If this is the last token from the input stream, or if the
47 * token manager has not read tokens beyond this one, this field i
    [all...]
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/datetime/parser/
Token.java 1 /* Generated By:JavaCC: Do not edit this line. Token.java Version 3.0 */
20 * Describes the input token stream.
23 public class Token {
26 * An integer that describes the kind of this token. This numbering
34 * of this token; endLine and endColumn describe the position of the
35 * last character of this token.
40 * The string image of the token.
45 * A reference to the next regular (non-special) token from the input
46 * stream. If this is the last token from the input stream, or if the
47 * token manager has not read tokens beyond this one, this field i
    [all...]
  /external/chromium/testing/gmock/scripts/generator/cpp/
tokenize.py 52 # Token types.
59 # Where the token originated from. This can be used for backtracking.
64 class Token(object):
65 """Data container to represent a C++ token.
70 start contains the index of the first char of the token in the source
71 end contains the index of the last char of the token in the source
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
    [all...]
  /external/clang/utils/
token-delta.py 97 class Token:
127 tokens.append(Token(*kTokenRE.match(ln).groups()))
  /external/webkit/Source/WebCore/xml/
XPathParser.h 47 struct Token {
54 Token(int t) : type(t) {}
55 Token(int t, const String& v): type(t), str(v) {}
56 Token(int t, Step::Axis v): type(t), axis(v) {}
57 Token(int t, NumericOp::Opcode v): type(t), numop(v) {}
58 Token(int t, EqTestOp::Opcode v): type(t), eqop(v) {}
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 lexString()
    [all...]
  /external/antlr/src/org/antlr/runtime/
Token.java 30 public interface Token {
42 public static final Token EOF_TOKEN = new CommonToken(EOF);
45 public static final Token INVALID_TOKEN = new CommonToken(INVALID_TOKEN_TYPE);
47 /** In an action, a lexer rule can set token to this SKIP_TOKEN and ANTLR
48 * will avoid creating a token for this symbol and try to fetch another.
50 public static final Token SKIP_TOKEN = new CommonToken(INVALID_TOKEN_TYPE);
63 /** Get the text of the token */
69 /** The line number on which this token was matched; line=1..n */
80 /** An index from 0..n-1 of the token object in the input stream.
86 /** From what character stream was this token created? You don't have t
    [all...]
  /external/chromium/base/json/
json_reader.h 52 // A struct to hold a JS token.
53 class Token {
70 Token(Type t, const wchar_t* b, int len)
73 // Get the character that's one past the end of this token.
80 // A pointer into JSONReader::json_pos_ that's the beginning of this token.
83 // End should be one char past the end of the 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();
167 // Try and convert the substring that token holds into an int or a double. I
    [all...]
  /external/clang/include/clang/Lex/
Token.h 1 //===--- Token.h - Token interface ------------------------------*- C++ -*-===//
10 // This file defines the Token interface.
27 /// Token - This structure provides full information about a lexed token.
29 /// information as possible about each returned token. This is expected to be
32 /// The parser can create a special "annotation token" representing a stream of
34 /// can be represented by a single typename annotation token that carries
36 class Token {
37 /// The location of the token
    [all...]
  /external/javassist/src/main/javassist/compiler/
Lex.java 18 class Token {
19 public Token next = null;
30 private Token currentToken;
31 private Token lookAheadTokens;
42 currentToken = new Token();
55 Token t;
63 * Looks at the next token.
70 Token tk = lookAheadTokens;
79 Token tk2;
80 tk.next = tk2 = new Token();
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 13 enum Token {
26 /// gettok - Return the next token from standard input.
142 /// CurTok/getNextToken - Provide a simple token buffer. CurTok is the current
143 /// token the parser is looking at. getNextToken reads another token from the
154 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
231 default: return Error("unknown token when expecting an expression");
340 // Skip token for error recovery.
349 // Skip token for error recovery.
359 // Skip token for error recovery
    [all...]
  /external/llvm/lib/Target/
TargetData.cpp 158 StringRef Token = Split.first;
161 if (Token.empty())
164 Split = Token.split(':');
166 Token = Split.second;
178 Split = Token.split(':');
202 Split = Token.split(':');
217 Split = Token.split(':');
219 Token = Split.second;
220 } while (!Specifier.empty() || !Token.empty());

Completed in 2221 milliseconds

1 2 3