Searched refs:token (Results 426 - 450 of 1600) sorted by relevance

<<11121314151617181920>>

/external/freetype/src/psaux/
H A Dpsobjs.c508 /* the first character which isn't part of the just handled token. */
595 " current token is `%c' which is self-delimiting\n"
615 /* `token' here means either something between balanced delimiters */
616 /* or the next token; the delimiters are not removed. */
620 T1_Token token )
627 token->type = T1_TOKEN_TYPE_NONE;
628 token->start = 0;
629 token->limit = 0;
644 token->type = T1_TOKEN_TYPE_STRING;
645 token
749 T1_TokenRec token; local
1032 T1_TokenRec token; local
1303 T1_Token token; local
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/psaux/
H A Dpsobjs.c508 /* the first character which isn't part of the just handled token. */
595 " current token is `%c' which is self-delimiting\n"
615 /* `token' here means either something between balanced delimiters */
616 /* or the next token; the delimiters are not removed. */
620 T1_Token token )
627 token->type = T1_TOKEN_TYPE_NONE;
628 token->start = 0;
629 token->limit = 0;
644 token->type = T1_TOKEN_TYPE_STRING;
645 token
749 T1_TokenRec token; local
1030 T1_TokenRec token; local
1303 T1_Token token; local
[all...]
/external/chromium_org/gpu/config/
H A Dgpu_test_expectations_parser.cc226 Token token = ParseToken(tokens[i]); local
227 switch (token) {
249 if (token == kConfigGPUDeviceID) {
253 if (!UpdateTestConfig(config, token, 0))
274 Token token = ParseToken(tokens[i]); local
275 switch (token) {
306 if (token == kConfigGPUDeviceID) {
310 if (!UpdateTestConfig(&config, token, line_number))
358 if ((kTokenData[token].flag & entry.test_expectation) != 0) {
364 (kTokenData[token]
389 UpdateTestConfig( GPUTestConfig* config, int32 token, size_t line_number) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
H A DVTTParser.cpp459 static VTTNodeType tokenToNodeType(VTTToken& token) argument
461 switch (token.name().length()) {
463 if (token.name()[0] == 'c')
465 if (token.name()[0] == 'v')
467 if (token.name()[0] == 'b')
469 if (token.name()[0] == 'i')
471 if (token.name()[0] == 'u')
475 if (token.name()[0] == 'r' && token.name()[1] == 't')
479 if (token
[all...]
/external/chromium_org/third_party/angle/src/compiler/translator/
H A Dglslang.l61 static int ES2_reserved_ES3_keyword(TParseContext *context, int token);
62 static int ES2_keyword_ES3_reserved(TParseContext *context, int token);
63 static int ES2_ident_ES3_keyword(TParseContext *context, int token);
383 pp::Token token;
384 yyget_extra(yyscanner)->preprocessor.lex(&token);
385 yy_size_t len = token.type == pp::Token::LAST ? 0 : token.text.size();
387 memcpy(buf, token.text.c_str(), len);
388 yyset_column(token.location.file, yyscanner);
389 yyset_lineno(token
[all...]
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3treeparser.c117 /* Now update it to indicate this is a Mismatched token exception
185 // Default implementation is for parser and assumes a token stream as supplied by the runtime.
200 // Default implementation is for parser and assumes a token stream as supplied by the runtime.
211 pANTLR3_COMMON_TOKEN token; local
237 // Find the newly dupicated token
239 token = node->getToken(node);
241 // Create the token text that shows it has been inserted
243 token->setText8 (token, (pANTLR3_UINT8)"<missing ");
244 text = token
[all...]
/external/chromium_org/chrome/browser/ui/
H A Dauto_login_infobar_delegate.cc61 virtual void OnUbertokenSuccess(const std::string& token) OVERRIDE;
69 void RedirectToMergeSession(const std::string& token);
105 void AutoLoginRedirector::OnUbertokenSuccess(const std::string& token) { argument
106 RedirectToMergeSession(token);
112 LOG(WARNING) << "AutoLoginRedirector: token request failed";
116 void AutoLoginRedirector::RedirectToMergeSession(const std::string& token) { argument
120 "?source=chrome&uberauth=" + token + "&" + args_),
/external/chromium_org/third_party/angle/src/compiler/preprocessor/
H A DTokenizer.l241 // Set the location for EOF token manually.
306 void Tokenizer::lex(Token *token)
308 token->type = yylex(&token->text, &token->location, mHandle);
309 if (token->text.size() > mMaxTokenSize)
312 token->location, token->text);
313 token->text.erase(mMaxTokenSize);
316 token
[all...]
/external/chromium_org/third_party/closure_linter/closure_linter/
H A Drunner.py52 """Get the last non-whitespace token in a token stream."""
75 The first token in the token stream and the ending mode of the tokenizer.
123 token, tokenizer_mode = _Tokenize(source_file)
125 error_handler.HandleFile(filename, token)
132 _GetLastNonWhiteSpaceToken(token)))
138 error_token = RunMetaDataPass(token, ecma_pass, error_handler, filename)
143 _RunChecker(token, error_handler,
152 """Run a metadata pass over a token strea
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
H A Dparser.c31 Scanner_fatal(in, "more than one token of lookahead?");
78 re = RegExp_new_RuleOp(re, look, yylval.token, accept++);
207 char * token; local
217 token = strtok( fnamebuf, "\\" );
219 fprintf(o, "%s", token);
220 token = strtok( NULL, "\\" );
221 if( token == NULL ) break;
/external/chromium_org/tools/gn/
H A Doperators.cc11 #include "tools/gn/token.h"
495 bool IsUnaryOperator(const Token& token) { argument
496 return token.type() == Token::BANG;
499 bool IsBinaryOperator(const Token& token) { argument
500 return token.type() == Token::EQUAL ||
501 token.type() == Token::PLUS ||
502 token.type() == Token::MINUS ||
503 token.type() == Token::PLUS_EQUALS ||
504 token.type() == Token::MINUS_EQUALS ||
505 token
515 IsFunctionCallArgBeginScoper(const Token& token) argument
519 IsFunctionCallArgEndScoper(const Token& token) argument
523 IsScopeBeginScoper(const Token& token) argument
527 IsScopeEndScoper(const Token& token) argument
[all...]
/external/iptables/extensions/
H A Dlibxt_bpf.c43 const char *token; local
61 token = bpf_program;
62 while ((token = strchr(token, separator)) && (++token)[0]) {
67 if (sscanf(token, "%hu %hhu %hhu %u,",
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dtoplevel.ml18 | Some token ->
20 try match token with
44 (* Skip token for error recovery. *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dtoplevel.ml18 | Some token ->
20 try match token with
44 (* Skip token for error recovery. *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dtoplevel.ml18 | Some token ->
20 try match token with
44 (* Skip token for error recovery. *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dtoplevel.ml18 | Some token ->
20 try match token with
44 (* Skip token for error recovery. *)
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DBaseRecognizer.as54 * single token insertion or deletion error recovery. If
57 * To turn off single token insertion or deletion error
95 // a single token and hope for the best
106 // if current token is consistent with what could come after set
107 // then we know we're missing a token; error recovery is free to
108 // "insert" the missing token
122 /** Factor out what to do upon token mismatch so tree parsers can behave
124 * to get single token insertion and deletion. Use this to turn of
125 * single token insertion and deletion. Override mismatchRecover
144 * a token (afte
[all...]
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DTokenSource.pm29 to keep going or you do not upon token recognition error. If you do not
34 requested a token. Keep lexing until you get a valid one. Just report
35 errors and keep going, looking for a valid token.
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/
H A DASTParser.stg35 * token, set, rule, wildcard
50 tokenRef(token,label,elementIndex,terminalOptions) ::= <<
59 tokenRefBang(token,label,elementIndex) ::= "<super.tokenRef(...)>"
62 tokenRefRuleRoot(token,label,elementIndex,terminalOptions) ::= <<
71 tokenRefBangAndListLabel(token,label,elementIndex,terminalOptions) ::= <<
77 tokenRefAndListLabel(token,label,elementIndex,terminalOptions) ::= <<
83 tokenRefRuleRootAndListLabel(token,label,terminalOptions,elementIndex) ::= <<
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/JavaScript/
H A DASTParser.stg7 * token, set, rule, wildcard
21 tokenRef(token,label,elementIndex,terminalOptions) ::= <<
30 tokenRefBang(token,label,elementIndex) ::= "<super.tokenRef(...)>"
33 tokenRefRuleRoot(token,label,elementIndex,terminalOptions) ::= <<
42 tokenRefBangAndListLabel(token,label,elementIndex,terminalOptions) ::= <<
48 tokenRefAndListLabel(token,label,elementIndex,terminalOptions) ::= <<
54 tokenRefRuleRootAndListLabel(token,label,terminalOptions,elementIndex) ::= <<
/external/apache-http/src/org/apache/http/impl/
H A DDefaultConnectionReuseStrategy.java56 * it's role. A token "close" indicates that the connection cannot
57 * be reused. If there is no such token, a token "keep-alive" indicates
58 * that the connection should be re-used. If neither token is found,
124 // documented in RFC 2068, section 19.7.1. A token "keep-alive" is
130 // RFC 2616 specifies "close" as the only connection token with a
134 // but is commonly used to carry one token, "close" or "keep-alive".
136 // sequence of tokens, where each token is a header name, and the
137 // token "close" has the above-mentioned additional meaning.
151 final String token
[all...]
/external/chromium_org/chrome/browser/ui/app_list/search/common/
H A Ddictionary_data_store.cc23 std::string token("app-launcher-data-store");
24 token.append(data_file.AsUTF8Unsafe());
30 pool->GetNamedSequenceToken(token),
/external/chromium_org/gpu/command_buffer/client/
H A Dbuffer_tracker.h70 void set_last_usage_token(int token) { argument
71 last_usage_token_ = token;
108 // of a token.
109 void FreePendingToken(Buffer* buffer, int32 token);
/external/chromium_org/remoting/protocol/
H A Dthird_party_host_authenticator.cc36 // Host has already sent the URL and expects a token from the client.
37 std::string token = message->TextNamed(kTokenTag); local
38 if (token.empty()) {
39 LOG(ERROR) << "Third-party authentication protocol error: missing token.";
52 token_validator_->ValidateThirdPartyToken(token, base::Bind(
/external/chromium_org/sandbox/win/src/
H A Dintegrity_level_test.cc19 ATL::CAccessToken token; local
20 if (!token.GetEffectiveToken(TOKEN_READ))
25 if (!::GetTokenInformation(token.GetHandle(), TokenIntegrityLevel,

Completed in 5175 milliseconds

<<11121314151617181920>>