HomeSort by relevance Sort by last modified time
    Searched full:token (Results 276 - 300 of 5845) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/sqlite/src/src/
complete.c 37 ** Token types used by the sqlite3_complete() routine. See the header
90 ** (2) tkOTHER Any other SQL token.
106 u8 token; /* Value of the next token */ local
113 /* Token: */
129 /* Token: */
140 token = tkSEMI;
148 token = tkWS;
153 token = tkOTHER;
160 token = tkWS
    [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...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
TokenStream.as 32 /** Get Token at current input pointer + i ahead where i=1 is next Token.
33 * i<0 indicates tokens in the past. So -1 is previous token and -2 is
34 * two tokens ago. LT(0) is undefined. For i>=n, return Token.EOFToken.
38 function LT(k:int):Token;
40 /** Get a token at an absolute index i; 0..n-1. This is really only
41 * needed for profiling and debugging and token stream rewriting.
47 function getToken(i:int):Token;
50 * the object that provides Token objects.
61 /** Because the user is not required to use a token with an index store
    [all...]
TokenConstants.as 13 public static const EOF_TOKEN:Token = new CommonToken(EOF);
16 public static const INVALID_TOKEN:Token = new CommonToken(INVALID_TOKEN_TYPE);
18 /** In an action, a lexer rule can set token to this SKIP_TOKEN and ANTLR
19 * will avoid creating a token for this symbol and try to fetch another.
21 public static const SKIP_TOKEN:Token = new CommonToken(INVALID_TOKEN_TYPE);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
CommonTreeAdaptor.cs 46 * create(Token), errorNode(), and to be safe, YourTreeClass.dupNode().
58 * Tell me how to create a token for use with imaginary token nodes.
60 * token DECL, but you need to create it as a payload or whatever for
65 * If you care what the token payload objects' type is, you should
75 * Tell me how to create a token for use with imaginary token nodes.
77 * token DECL, but you need to create it as a payload or whatever for
82 * This is a variant of createToken where the new token is derived from
83 * an actual real input token. Typically this is for converting '{
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
TokenStream.java 34 /** Get Token at current input pointer + i ahead where i=1 is next Token.
35 * i<0 indicates tokens in the past. So -1 is previous token and -2 is
36 * two tokens ago. LT(0) is undefined. For i>=n, return Token.EOFToken.
40 public Token LT(int k);
47 /** Get a token at an absolute index i; 0..n-1. This is really only
48 * needed for profiling and debugging and token stream rewriting.
54 public Token get(int i);
57 * the object that provides Token objects.
68 /** Because the user is not required to use a token with an index store
    [all...]
UnbufferedTokenStream.java 35 /** A token stream that pulls tokens from the code source on-demand and
43 * You can only look backwards 1 token: LT(-1).
50 public class UnbufferedTokenStream extends LookaheadStream<Token> implements TokenStream {
52 protected int tokenIndex = 0; // simple counter to set token index in tokens
55 protected int channel = Token.DEFAULT_CHANNEL;
61 public Token nextElement() {
62 Token t = tokenSource.nextToken();
67 public boolean isEOF(Token o) { return o.getType() == Token.EOF; }
73 public String toString(Token start, Token stop) { return "n/a";
    [all...]
  /external/chromium_org/chrome/browser/chromeos/settings/
token_encryptor.cc 38 const std::string& token) {
39 // Don't care about token encryption while debugging.
41 return token;
49 token);
54 // Don't care about token encryption while debugging.
77 const std::string& token) {
86 if (!encryptor.Encrypt(token, &encoded_token)) {
87 LOG(WARNING) << "Failed to encrypt token.";
102 LOG(WARNING) << "Corrupt encrypted token found.";
116 std::string token; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathParser.h 46 struct Token {
53 Token(int t) : type(t) { }
54 Token(int t, const String& v): type(t), str(v) { }
55 Token(int t, Step::Axis v): type(t), axis(v) { }
56 Token(int t, NumericOp::Opcode v): type(t), numop(v) { }
57 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/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/llvm/lib/Support/
YAMLParser.cpp 108 /// Token - A single YAML token.
109 struct Token : ilist_node<Token> {
111 TK_Error, // Uninitialized token.
136 /// of the token in the input.
139 Token() : Kind(TK_Error) {}
146 struct ilist_sentinel_traits<Token> {
147 Token *createSentinel() const {
150 static void destroySentinel(Token*) {}
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
RecognitionException.pm 23 has 'token' => (
25 does => 'ANTLR::Runtime::Token',
69 my $token = $input->LT(1);
70 $new_args->{token} = $token;
71 $new_args->{line} = $token->get_line();
72 $new_args->{char_position_in_line} = $token->get_char_position_in_line();
94 return $self->token->get_type();
117 return $self->token;
  /external/chromium_org/google_apis/
google_api_keys.py 18 # The token returned when an API key is unset.
23 """Parses the token from the official file if it exists, else returns None."""
47 token = ParseLine(current_line)
48 if token:
52 return token
58 """Returns the API token with the given name, or DUMMY_TOKEN by default."""
61 token = _GetTokenFromOfficialFile(token_name)
62 if token:
63 return token
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMSettableTokenList.cpp 50 bool DOMSettableTokenList::containsInternal(const AtomicString& token) const
52 return m_tokens.contains(token);
67 void DOMSettableTokenList::addInternal(const AtomicString& token)
69 DOMTokenList::addInternal(token);
71 m_tokens.set(token, false);
73 m_tokens.add(token);
83 void DOMSettableTokenList::removeInternal(const AtomicString& token)
85 DOMTokenList::removeInternal(token);
86 m_tokens.remove(token);
  /external/chromium_org/third_party/angle/tests/preprocessor_tests/
char_test.cpp 11 #include "Token.h"
52 int expectedType = pp::Token::LAST;
63 expectedType = pp::Token::IDENTIFIER;
68 expectedType = pp::Token::CONST_INT;
88 pp::Token token; local
89 mPreprocessor.lex(&token);
90 EXPECT_EQ(expectedType, token.type);
91 EXPECT_EQ(expectedValue, token.text);
  /external/chromium_org/third_party/icu/source/tools/genrb/
read.c 41 struct UString *token,
44 static UChar32 getNextChar (UCHARBUF *buf, UBool skipwhite, struct UString *token, UErrorCode *status);
45 static void seekUntilNewline (UCHARBUF *buf, struct UString *token, UErrorCode *status);
46 static void seekUntilEndOfComment (UCHARBUF *buf, struct UString *token, UErrorCode *status);
54 /* Read and return the next token from the stream. If the token is of
55 type eString, fill in the token parameter with the token. If the
56 token is eError, then the status parameter will contain the
63 struct UString *token,
    [all...]
  /external/icu/icu4c/source/tools/genrb/
read.c 42 struct UString *token,
45 static UChar32 getNextChar (UCHARBUF *buf, UBool skipwhite, struct UString *token, UErrorCode *status);
46 static void seekUntilNewline (UCHARBUF *buf, struct UString *token, UErrorCode *status);
47 static void seekUntilEndOfComment (UCHARBUF *buf, struct UString *token, UErrorCode *status);
55 /* Read and return the next token from the stream. If the token is of
56 type eString, fill in the token parameter with the token. If the
57 token is eError, then the status parameter will contain the
65 struct UString *token,
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t027eof.html 19 token;
21 token = lexer.nextToken();
22 assertEquals(token.getType(), lexer.SPACE);
24 token = lexer.nextToken();
25 assertEquals(token.getType(), lexer.END);
t053heteroT9.g 8 var x, y, z, token, ttype;
14 token = new org.antlr.runtime.CommonToken(ttype, "");
17 token = arguments[1];
25 V2.superclass.constructor.call(this, token);
34 if (this.token) {
  /external/chromium_org/chrome/browser/local_discovery/
privet_confirm_api_flow.cc 20 GURL GetConfirmFlowUrl(const std::string& token) {
22 cloud_devices::GetCloudPrintRelativeURL("confirm"), "token", token);
28 const std::string& token,
30 : callback_(callback), token_(token) {
  /external/chromium_org/chrome/browser/resources/
identity_internals.js 9 * Creates an identity token item.
10 * @param {!Object} tokenInfo Object containing token information.
32 'accessToken', this.data_.accessToken, 'access-token'));
38 'tokenStatus', this.data_.status, 'token-status'));
50 * Creates an entry for a single property of the token.
51 * @param {string} label An i18n label of the token's property name.
52 * @param {string} value A value of the token property.
71 * Creates an entry for a list of token scopes.
92 * Creates buttons for the token.
94 * token
    [all...]
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
local_to_remote_syncer.cc 74 void LocalToRemoteSyncer::RunPreflight(scoped_ptr<SyncTaskToken> token) {
75 token->InitializeTaskLog("Local -> Remote");
80 token.Pass(), blocking_factor.Pass(),
85 void LocalToRemoteSyncer::RunExclusive(scoped_ptr<SyncTaskToken> token) {
87 token->RecordLog("Context not ready.");
89 SyncTaskManager::NotifyTaskDone(token.Pass(), SYNC_STATUS_FAILED);
93 token->RecordLog(base::StringPrintf(
102 token->RecordLog("Missing file for non-delete change.");
103 SyncTaskManager::NotifyTaskDone(token.Pass(), SYNC_STATUS_OK);
116 token->RecordLog("App is disabled or not registered")
    [all...]
  /external/chromium_org/cloud_print/gcp20/prototype/
x_privet_token.h 14 // Class for generating and checking X-Privet-Token.
23 // Generates X-Privet-Token for /privet/info request. Updates secret
28 bool CheckValidXToken(const std::string& token) const;
38 // Generates X-Privet-Token for with certain time of issue.
44 // X-Privet-Token secret.
  /external/chromium_org/net/dns/
notify_watcher_mac.cc 52 int token; local
53 int status = HANDLE_EINTR(read(notify_fd_, &token, sizeof(token)));
54 if (status != sizeof(token)) {
59 // Ignoring |token| value to avoid possible endianness mismatch:
  /frameworks/base/core/java/android/service/fingerprint/
IFingerprintService.aidl 27 void enroll(IBinder token, long timeout, int userId);
30 void enrollCancel(IBinder token, int userId);
33 void remove(IBinder token, int fingerprintId, int userId);
37 void startListening(IBinder token, IFingerprintServiceReceiver receiver, int userId);
40 void stopListening(IBinder token, int userId);

Completed in 1645 milliseconds

<<11121314151617181920>>