HomeSort by relevance Sort by last modified time
    Searched defs:Token (Results 1 - 25 of 528) 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...]
  /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/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-generated-sources/com/github/javaparser/
Token.java 1 /* Generated By:JavaCC: Do not edit this line. Token.java Version 6.1 */
18 * Describes the input token stream.
21 public class Token implements java.io.Serializable {
31 * An integer that describes the kind of this token. This numbering
37 /** The line number of the first character of this Token. */
39 /** The column number of the first character of this Token. */
41 /** The line number of the last character of this Token. */
43 /** The column number of the last character of this Token. */
47 * The string image of the token.
52 * A reference to the next regular (non-special) token from the inpu
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/generated/com/github/javaparser/
Token.java 1 /* Generated By:JavaCC: Do not edit this line. Token.java Version 5.0 */
18 * Describes the input token stream.
21 public class Token implements java.io.Serializable {
31 * An integer that describes the kind of this token. This numbering
37 /** The line number of the first character of this Token. */
39 /** The column number of the first character of this Token. */
41 /** The line number of the last character of this Token. */
43 /** The column number of the last character of this Token. */
47 * The string image of the token.
52 * A reference to the next regular (non-special) token from the inpu
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/asm/internal/lex/
lex.go 32 // IsRegisterShift reports whether the token is one of the ARM register shift operators.
73 // A TokenReader is like a reader, but returns lex tokens of type Token. It also can tell you what
74 // the text of the most recently returned token is, and where it was found.
78 // Next returns the next token.
80 // The following methods all refer to the most recent token returned by Next.
81 // Text returns the original string representation of the token.
83 // File reports the source file name of the token.
85 // Base reports the position base of the token.
89 // Line reports the source line number of the token.
91 // Col reports the source column number of the token
    [all...]
  /prebuilts/go/linux-x86/src/cmd/asm/internal/lex/
lex.go 32 // IsRegisterShift reports whether the token is one of the ARM register shift operators.
73 // A TokenReader is like a reader, but returns lex tokens of type Token. It also can tell you what
74 // the text of the most recently returned token is, and where it was found.
78 // Next returns the next token.
80 // The following methods all refer to the most recent token returned by Next.
81 // Text returns the original string representation of the token.
83 // File reports the source file name of the token.
85 // Base reports the position base of the token.
89 // Line reports the source line number of the token.
91 // Col reports the source column number of the token
    [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/HttpUtilitiesDxe/
HttpUtilitiesProtocol.c 296 CHAR8 *Token;
304 Token = NULL;
325 Token = TempHttpMessage;
329 NextToken = HttpGetFieldNameAndValue (Token, &FieldName, &FieldValue);
330 Token = NextToken;
358 Token = TempHttpMessage;
362 NextToken = HttpGetFieldNameAndValue (Token, &FieldName, &FieldValue);
363 Token = NextToken;
  /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

Completed in 458 milliseconds

1 2 3 4 5 6 7 8 91011>>