Searched refs:token (Results 676 - 700 of 1600) sorted by relevance

<<21222324252627282930>>

/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
H A Dglcpp-parse.c166 _token_list_append (token_list_t *list, token_t *token);
186 * prefixing a token of type 'head_token_type').
240 /* Enabling the token table. */
721 /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
722 token YYLEX-NUM. */
831 positive, shift that token. If negative, reduce the rule which
1188 YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
1399 about the unexpected token YYTOKEN for the state stack whose top is
1434 that there is no unexpected or expected token to report. In that
1440 - Of course, the expected token lis
3222 token_t *token; local
3236 token_t *token; local
3259 _token_list_append(token_list_t *list, token_t *token) argument
3408 _token_print(char **out, size_t *len, token_t *token) argument
3473 _token_paste(glcpp_parser_t *parser, token_t *token, token_t *other) argument
3787 token_t *token; local
3975 token_t *token = node->token; local
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DErrorManager.java198 public static final int MSG_UNREACHABLE_TOKENS = 208; // nothing predicts token
708 Token token,
713 Message msg = new GrammarSemanticsMessage(msgID,g,token,arg,arg2);
720 Token token,
723 grammarError(msgID,g,token,arg,null);
728 Token token)
730 grammarError(msgID,g,token,null,null);
735 Token token,
740 Message msg = new GrammarSemanticsMessage(msgID,g,token,arg,arg2);
747 Token token,
706 grammarError(int msgID, Grammar g, Token token, Object arg, Object arg2) argument
718 grammarError(int msgID, Grammar g, Token token, Object arg) argument
726 grammarError(int msgID, Grammar g, Token token) argument
733 grammarWarning(int msgID, Grammar g, Token token, Object arg, Object arg2) argument
745 grammarWarning(int msgID, Grammar g, Token token, Object arg) argument
753 grammarWarning(int msgID, Grammar g, Token token) argument
760 syntaxError(int msgID, Grammar grammar, Token token, Object arg, RecognitionException re) argument
[all...]
/external/e2fsprogs/misc/
H A Ddumpe2fs.c447 char *buf, *token, *next, *p, *arg, *badopt = 0; local
459 for (token = buf; token && *token; token = next) {
460 p = strchr(token, ',');
466 arg = strchr(token, '=');
471 if (strcmp(token, "superblock") == 0 ||
472 strcmp(token, "sb") == 0) {
475 badopt = token;
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
H A Dgrammar.rb238 def shell_escape( token )
239 token = token.to_s.dup
240 token.empty? and return "''"
241 token.gsub!( /([^A-Za-z0-9_\-.,:\/@\n])/n, '\\\1' )
242 token.gsub!( /\n/, "'\n'" )
243 return token
/external/chromium_org/chrome/browser/chromeos/login/supervised/
H A Dsupervised_user_creation_controller_new.cc43 bool StoreSupervisedUserFiles(const std::string& token, argument
50 int bytes = base::WriteFile(token_file, token.c_str(), token.length());
340 const std::string& token) {
347 creation_context_->token = token;
353 creation_context_->token,
379 // Assume that new token is valid. It will be automatically invalidated if
338 RegistrationCallback( const GoogleServiceAuthError& error, const std::string& token) argument
/external/chromium_org/remoting/webapp/
H A Dhost_list.js172 /** @param {string} token The OAuth2 token. */
173 var getHosts = function(token) {
174 var headers = { 'Authorization': 'OAuth ' + token };
353 /** @param {string?} token */
354 var renameHost = function(token) {
355 if (token) {
357 'Authorization': 'OAuth ' + token,
384 /** @param {string} token The OAuth2 token
[all...]
/external/chromium_org/sync/tools/testserver/
H A Dchromiumsync_test.py339 marker.token = pickle.dumps((15412, 1))
342 marker.token = pickle.dumps((15413, 1))
355 self.assertEqual(pickle.loads(marker.token), (15413, 1))
362 marker.token = pickle.dumps((412, 1))
365 marker.token = ''
377 self.assertEqual(pickle.loads(marker.token), (1, 1))
386 self.assertEqual(pickle.loads(marker.token), (412, 1))
394 self.assertEqual(pickle.loads(marker.token), (413, 1))
397 self.assertEqual(pickle.loads(marker.token), (413, 1))
400 # Migration token timestamp
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Drecognizers.rb45 :token,
76 token::
79 the input stream index at which the token starts
81 the input stream line number at which the token starts
83 the input stream column at which the token starts
85 the channel value of the target token
87 the type value of the target token
89 the text of the target token
115 self.token = nil
188 * token an
[all...]
H A Dprofile.rb209 # the last token consumed
287 def consume_token( token )
288 @last_token = token
295 def consume_hidden_token( token )
296 @last_token = token
299 def look( i, token )
325 hidden_tokens = input.select { |token| token.hidden? }
328 @profile.hidden_characters_matched = hidden_tokens.inject( 0 ) do |count, token|
329 count + token
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_encodemb.c72 signed char token; member in struct:vp9_token_state
99 int idx, int token,
102 token_cache[scan[idx]] = vp9_pt_energy_class[token];
149 tokens[eob][0].token = EOB_TOKEN;
155 qcoeff[scan[i]]].token];
170 t0 = (vp9_dct_value_tokens_ptr + x)->token;
177 [tokens[next][0].token];
180 [tokens[next][1].token];
191 tokens[i][0].token = t0;
216 t0 = tokens[next][0].token
97 trellis_get_coeff_context(const int16_t *scan, const int16_t *nb, int idx, int token, uint8_t *token_cache) argument
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
H A Dpep8.py485 # ignore token lined up with matching one from a previous line
1162 def _is_eol_token(token):
1163 return (token[0] in NEWLINE or
1164 (token[0] == tokenize.COMMENT and token[1] == token[4]))
1166 def _is_eol_token(token):
1167 return token[0] in NEWLINE
1369 for token in tokengen:
1370 if token[
[all...]
/external/bison/src/
H A DAnnotationList.c492 contribute the conflicted token to this reduction's
503 /* The lookahead token has to come from somewhere. */
550 conflict with no token precedence. */
596 symbol_number token = local
606 fprintf (stderr, "Contributes shift of token %d.\n", token);
609 fprintf (stderr, "Contributes token %d", token);
645 symbol_number token = local
649 bitset_set (lookahead_filter[item], token);
681 symbol_number token = local
697 symbol *token; local
[all...]
H A Dlocation.c54 /* Set *LOC and adjust scanner cursor to account for token TOKEN of
58 location_compute (location *loc, boundary *cur, char const *token, size_t size) argument
62 char const *p0 = token;
63 char const *p = token;
64 char const *lim = token + size;
68 for (p = token; p < lim; p++)
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Dsync_task_manager_unittest.cc194 virtual void RunPreflight(scoped_ptr<SyncTaskToken> token) OVERRIDE {
200 token.Pass(), task_blocker.Pass(),
206 void RunAsBackgroundTask(scoped_ptr<SyncTaskToken> token) { argument
215 base::Passed(&token)));
218 void CompleteTask(scoped_ptr<SyncTaskToken> token) { argument
221 SyncTaskManager::NotifyTaskDone(token.Pass(), SYNC_STATUS_OK);
251 virtual void RunPreflight(scoped_ptr<SyncTaskToken> token) OVERRIDE {
252 UpdateBlocker(token.Pass());
256 void UpdateBlocker(scoped_ptr<SyncTaskToken> token) { argument
259 SyncTaskManager::NotifyTaskDone(token
281 UpdateBlockerSoon(const std::string& updated_to, scoped_ptr<SyncTaskToken> token) argument
[all...]
/external/chromium_org/cloud_print/virtual_driver/win/port_monitor/
H A Dport_monitor.cc172 // Gets the primary token for the user that submitted the print job.
174 HANDLE token = NULL; local
178 &token)) {
179 LOG(ERROR) << "Unable to get thread token.";
182 base::win::ScopedHandle token_scoped(token);
183 if (!DuplicateTokenEx(token,
189 LOG(ERROR) << "Unable to get primary thread token.";
200 HANDLE token = NULL; local
201 if (!GetUserToken(&token)) {
202 LOG(ERROR) << "Unable to get user token
256 HANDLE token = NULL; local
[all...]
/external/chromium_org/components/signin/core/browser/
H A Dabout_signin_internals.cc238 TokenInfo* token = signin_status_.FindToken(account_id, consumer_id, scopes); local
239 if (token) {
240 *token = TokenInfo(consumer_id, scopes);
242 token = new TokenInfo(consumer_id, scopes);
243 signin_status_.token_info_map[account_id].push_back(token);
255 TokenInfo* token = signin_status_.FindToken(account_id, consumer_id, scopes); local
256 if (!token) {
257 DVLOG(1) << "Can't find token: " << account_id << ", " << consumer_id;
261 token->receive_time = base::Time::Now();
262 token
273 TokenInfo* token = signin_status_.token_info_map[account_id][i]; local
[all...]
/external/chromium_org/mojo/public/tools/bindings/generators/
H A Dmojom_java_generator.py279 def ExpressionToText(context, token, kind_spec=''):
292 if isinstance(token, mojom.NamedValue):
293 return _TranslateNamedValue(token)
296 number = ast.literal_eval(token.lstrip('+ '))
299 type(number), token))
305 if isinstance(token, mojom.BuiltinValue):
306 if token.value == 'double.INFINITY':
308 if token.value == 'double.NEGATIVE_INFINITY':
310 if token.value == 'double.NAN':
312 if token
[all...]
/external/chromium_org/chrome/browser/net/
H A Dnetwork_stats_unittest.cc41 ProbePacket_Token* token) {
42 token->set_timestamp_micros(timestamp_micros);
43 token->mutable_hash()->assign(hash);
67 ProbePacket_Token token; local
68 CreateToken(1L, "1010", &token);
70 token, 1, probe_bytes, 0, max_probe_packets, &probe_packet);
147 ProbePacket_Token token; local
148 CreateToken(2L, "2a2b", &token);
162 probe_message.GenerateProbeRequest(token,
39 CreateToken(uint64 timestamp_micros, const string& hash, ProbePacket_Token* token) argument
/external/chromium_org/chrome/browser/resources/google_now/
H A Dutility.js179 chrome.identity.getAuthToken({interactive: false}, function(token) {
180 if (token) {
181 request.setRequestHeader('Authorization', 'Bearer ' + token);
961 * the sign in state by polling periodically for the auth token.
968 * Gets an OAuth2 access token.
969 * @return {Promise} A promise to get the authentication token. If there is
970 * no token, the request is rejected.
974 instrumented.identity.getAuthToken({interactive: false}, function(token) {
975 if (chrome.runtime.lastError || !token) {
978 resolve(token);
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dprogram_parse.y152 %token ARBvp_10 ARBfp_10
155 %token <integer> ADDRESS
156 %token ALIAS ATTRIB
157 %token OPTION OUTPUT
158 %token PARAM
159 %token <integer> TEMP
160 %token END
163 %token <temp_inst> BIN_OP BINSC_OP SAMPLE_OP SCALAR_OP TRI_OP VECTOR_OP
164 %token <temp_inst> ARL KIL SWZ TXD_OP
166 %token <intege
[all...]
/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dlparser.c61 /* last token from outer function must be EOS */
62 lua_assert(ls->fs != NULL || ls->t.token == TK_EOS);
63 if (ls->t.token == TK_NAME || ls->t.token == TK_STRING) {
72 ls->t.token = 0; /* remove 'near to' from final message */
77 static l_noret error_expected (LexState *ls, int token) { argument
79 luaO_pushfstring(ls->L, "%s expected", luaX_token2str(ls, token)));
102 if (ls->t.token == c) {
111 if (ls->t.token != c)
575 /* last token rea
[all...]
/external/chromium_org/v8/src/
H A Dscanner.h16 #include "src/token.h"
350 // Returns the next token and advances input.
352 // Returns the current token again.
353 Token::Value current_token() { return current_.token; }
354 // Returns the location information for the current token
355 // (the token last returned by Next()).
358 // Similar functions for the upcoming token.
360 // One token look-ahead (past the token returned by Next()).
361 Token::Value peek() const { return next_.token; }
391 const char* token = local
401 const char* token = local
472 Token::Value token; member in struct:v8::internal::Scanner::TokenDesc
[all...]
/external/mesa3d/src/mesa/program/
H A Dprogram_parse.y152 %token ARBvp_10 ARBfp_10
155 %token <integer> ADDRESS
156 %token ALIAS ATTRIB
157 %token OPTION OUTPUT
158 %token PARAM
159 %token <integer> TEMP
160 %token END
163 %token <temp_inst> BIN_OP BINSC_OP SAMPLE_OP SCALAR_OP TRI_OP VECTOR_OP
164 %token <temp_inst> ARL KIL SWZ TXD_OP
166 %token <intege
[all...]
/external/chromium-trace/trace-viewer/third_party/web_dev_style/web_dev_style/
H A Djs_checker.py153 self.re.search("</?(include|if)", error.token.line))
199 error.token.start_index, error.token.length)
201 error.token.line_number,
204 error.token.line.rstrip(),
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/signin/
H A DOAuth2TokenService.java45 * Classes that want to listen for refresh token availability should
126 * @param scope The scope to get an auth token for (without Android-style 'oauth2:' prefix).
143 public void tokenAvailable(String token) {
145 token, token != null, nativeCallback);
151 * Call this method to retrieve an OAuth2 access token for the given account and scope.
154 * @param account the account to get the access token for.
155 * @param scope The scope to get an auth token for (without Android-style 'oauth2:' prefix).
156 * @param callback called on successful and unsuccessful fetching of auth token.
167 * Call this method to retrieve an OAuth2 access token fo
[all...]

Completed in 2602 milliseconds

<<21222324252627282930>>