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

1 2 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
Token.js 1 // 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.
6 * @class Abstract base class of all token types.
7 * @name Token
10 org.antlr.runtime.Token = function() {};
11 org.antlr.lang.augmentObject(org.antlr.runtime.Token, /** @lends Token */ {
27 /** In an action, a lexer rule can set token to this SKIP_TOKEN and ANTL
    [all...]
  /external/deqp/framework/randomshaders/
rsgToken.cpp 21 * \brief Token class.
31 Token::Token (const char* identifier)
39 Token::~Token (void)
45 Token& Token::operator= (const Token& other)
71 Token::Token (const Token& other
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
tokenize.h 24 short Token;
31 unsigned char Token;
46 /* TODO: The Token field should be broken out into a separate char array to
  /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/parsing/
token.h 16 // symbolic token name, string is the corresponding syntactic symbol
18 // The parameters are invoked for token categories as follows:
166 /* 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).
292 case Token::EQ:
293 case Token::EQ_STRICT: return (op1 == op2);
294 case Token::NE: return (op1 != op2)
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/HttpUtilitiesDxe/
HttpUtilitiesImpl.c 36 CONST CHAR8 *Token;
38 Token = String;
40 if (*Token == 0) {
43 if (*Token == Seperator) {
44 return (CHAR8 *)(Token + 1);
46 Token++;
HttpUtilitiesProtocol.c 302 CHAR8 *Token;
310 Token = NULL;
331 Token = TempHttpMessage;
335 NextToken = GetFieldNameAndValue (Token, &FieldName, &FieldValue);
336 Token = NextToken;
364 Token = TempHttpMessage;
368 NextToken = GetFieldNameAndValue (Token, &FieldName, &FieldValue);
369 Token = NextToken;
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
Token.pm 1 package ANTLR::Runtime::Token;
56 # In an action, a lexer rule can set token to this SKIP_TOKEN and ANTLR
57 # will avoid creating a token for this symbol and try to fetch another.
  /external/clang/utils/
token-delta.py 97 class Token:
127 tokens.append(Token(*kTokenRE.match(ln).groups()))
  /external/icu/icu4c/source/i18n/unicode/
translit.h 269 union Token {
271 * This token, interpreted as a 32-bit integer.
276 * This token, interpreted as a native pointer.
284 * Return a token containing an integer.
285 * @return a token containing an integer.
288 inline static Token integerToken(int32_t);
291 * Return a token containing a pointer.
292 * @return a token containing a pointer.
295 inline static Token pointerToken(void*);
313 typedef Transliterator* (U_EXPORT2 *Factory)(const UnicodeString& ID, Token context)
    [all...]
  /external/libtextclassifier/smartselect/
types.h 40 // first token in the span, and the second element is the index of the token one
44 // Token holds a token, its position in the original string and whether it was
46 struct Token {
51 // Whether the token is a padding token.
54 // Default constructor constructs the padding-token.
55 Token()
58 Token(const std::string& arg_value, CodepointIndex arg_start
    [all...]
  /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...]
  /device/linaro/bootloader/edk2/EmulatorPkg/EmuBlockIoDxe/
EmuBlockIo.c 64 @param[in, out] Token A pointer to the token associated with the transaction.
70 @retval EFI_SUCCESS The read request was queued if Token->Event is
72 device if the Token->Event is NULL.
90 IN OUT EFI_BLOCK_IO2_TOKEN *Token,
103 Status = Private->Io->ReadBlocks (Private->Io, MediaId, LBA, Token, BufferSize, Buffer);
123 @param[in, out] Token A pointer to the token associated with the transaction.
147 IN OUT EFI_BLOCK_IO2_TOKEN *Token,
160 Status = Private->Io->WriteBlocks (Private->Io, MediaId, LBA, Token, BufferSize, Buffer);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/UefiPxeBcDxe/
PxeBcMtftp.c 35 @param Token Pointer to Mtftp token
47 IN EFI_MTFTP4_TOKEN *Token,
56 Private = (PXEBC_PRIVATE_DATA *) Token->Context;
244 EFI_MTFTP4_TOKEN Token;
269 Token.Event = NULL;
270 Token.OverrideData = NULL;
271 Token.Filename = Filename;
272 Token.ModeStr = NULL;
273 Token.OptionCount = OptCnt;
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/HttpDxe/
HttpDns.c 40 EFI_DNS4_COMPLETION_TOKEN Token;
55 ZeroMem (&Token, sizeof (EFI_DNS4_COMPLETION_TOKEN));
135 ZeroMem (&Token, sizeof (Token));
141 &Token.Event
150 Token.Status = EFI_NOT_READY;
152 Status = Dns4->HostNameToIp (Dns4, HostName, &Token);
164 Status = Token.Status;
166 if (Token.RspData.H2AData == NULL) {
170 if (Token.RspData.H2AData->IpCount == 0 || Token.RspData.H2AData->IpList == NULL) {
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Mtftp6Dxe/
Mtftp6Impl.c 339 EFI_MTFTP6_TOKEN Token;
362 // Fill fields of the Token for GetInfo operation.
364 Token.Status = EFI_SUCCESS;
365 Token.Event = NULL;
366 Token.OverrideData = OverrideData;
367 Token.Filename = Filename;
368 Token.ModeStr = ModeStr;
369 Token.OptionCount = OptionCount;
370 Token.OptionList = OptionList;
371 Token.BufferSize = 0;
    [all...]
  /device/linaro/bootloader/edk2/Nt32Pkg/WinNtBusDriverDxe/
WinNtBusDriver.h 178 UINTN Token;
  /device/linaro/bootloader/edk2/SecurityPkg/UserIdentification/UsbCredentialProviderDxe/
UsbCredentialProvider.h 52 UINT8 Token[HASHED_CREDENTIAL_LEN];
  /device/linaro/bootloader/edk2/StdLib/LibC/Wchar/
Searching.c 202 the start of the first token.
206 is found, the current token extends to the end of the wide string pointed
207 to by s1, and subsequent searches in the same wide string for a token
209 by a null wide character, which terminates the current token.
217 of a token, or a null pointer if there is no token.
221 wchar_t *Token = NULL;
242 // Remember this point, it is the start of the token
243 Token = s1++;
252 return Token;
    [all...]
  /external/google-breakpad/src/testing/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/googletest/googlemock/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/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
Token.java 6 public abstract class Token extends Node
  /external/v8/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...]
  /packages/apps/UnifiedEmail/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...]

Completed in 778 milliseconds

1 2 3 4 5 6 7 8 91011>>