Searched refs:token (Results 526 - 550 of 1600) sorted by relevance

<<21222324252627282930>>

/external/chromium_org/third_party/angle/src/compiler/translator/
H A DValidateOutputs.cpp72 void ValidateOutputs::error(TSourceLoc loc, const char *reason, const char* token) argument
76 mSink << "'" << token << "' : " << reason << "\n";
/external/chromium_org/third_party/closure_linter/closure_linter/
H A Dchecker.py68 """Checks a token stream for lint warnings/errors.
74 start_token: The first token in the token stream.
76 is_html: Whether this token stream is HTML.
77 stop_token: If given, checks should stop at this token.
97 def _DependencyPass(self, token):
98 """Processes an individual token for dependency information.
100 Used to encapsulate the logic needed to process an individual token so that
104 token: The token t
[all...]
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dprexmppauth.h47 CaptchaChallenge(const std::string& token, const std::string& url) argument
48 : captcha_needed_(true), captcha_token_(token), captcha_image_url_(url) {
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/
H A Dvp9_detokenize.c32 #define INCREMENT_COUNT(token) \
35 ++coef_counts[band][ctx][token]; \
75 int v, token; local
135 return c; // zero tokens at the end (no eob token)
143 token = ONE_TOKEN;
147 token = vp9_read_tree(r, coeff_subtree_high,
149 switch (token) {
153 val = token;
194 token_cache[scan[c]] = vp9_pt_energy_class[token];
/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dllex.h44 int token; member in struct:Token
54 int lastline; /* line of last token `consumed' */
55 Token t; /* current token */
56 Token lookahead; /* look ahead token */
75 LUAI_FUNC const char *luaX_token2str (LexState *ls, int token);
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dpmu.y23 %token PP_CONFIG PP_CONFIG1 PP_CONFIG2
24 %token PP_VALUE PP_ERROR
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dtoy.ml13 (* Prime the first token. *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dtoken.ml7 type token = type
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dtoken.ml7 type token = type
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dtoken.ml7 type token = type
/external/llvm/test/MC/SystemZ/
H A Dtokens.s6 #CHECK: error: unknown token in expression
24 #CHECK: error: unexpected token in address
28 #CHECK: error: unexpected token in argument list
52 #CHECK: error: unknown token in expression
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DRAckParser.java86 Token token = lexer.getNextToken();
87 rack.setMethod(token.getTokenValue());
/external/nist-sip/java/gov/nist/javax/sip/parser/ims/
H A DPAccessNetworkInfoParser.java58 * "3GPP-UTRAN-TDD" / "3GPP-CDMA2000" / token
61 * cgi-3gpp = "cgi-3gpp" EQUAL (token / quoted-string)
62 * utran-cell-id-3gpp = "utran-cell-id-3gpp" EQUAL (token / quoted-string)
99 Token token = lexer.getNextToken();
100 accessNetworkInfo.setAccessType(token.getTokenValue());
H A DPMediaAuthorizationParser.java91 Token token = lexer.getNextToken();
93 mediaAuthorization.setMediaAuthorizationToken(token.getTokenValue());
/external/wpa_supplicant_8/hostapd/src/common/
H A Dsae.h58 const struct wpabuf *token);
60 const u8 **token, size_t *token_len, int *allowed_groups);
/external/wpa_supplicant_8/src/common/
H A Dsae.h58 const struct wpabuf *token);
60 const u8 **token, size_t *token_len, int *allowed_groups);
/external/wpa_supplicant_8/wpa_supplicant/src/common/
H A Dsae.h58 const struct wpabuf *token);
60 const u8 **token, size_t *token_len, int *allowed_groups);
/external/libpng/contrib/pngminus/
H A Dpnm2png.c54 void get_token(FILE *pnm_file, char *token);
497 void get_token(FILE *pnm_file, char *token) argument
515 token[i] = (unsigned char) ret;
517 while ((token[i] == '\n') || (token[i] == '\r') || (token[i] == ' '));
525 token[i] = (unsigned char) ret;
527 while ((token[i] != '\n') && (token[i] != '\r') && (token[
576 png_byte token[16]; local
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DMachineProbe.java132 Token oldtoken = p.associatedASTNode.token;
133 CommonToken token = new CommonToken(oldtoken
135 token.setLine(oldtoken.getLine());
136 token.setCharPositionInLine(oldtoken.getCharPositionInLine());
137 tokens.add(token);
/external/chromium_org/base/json/
H A Djson_parser.cc460 Value* JSONParser::ParseToken(Token token) { argument
461 switch (token) {
495 Token token = GetNextToken(); local
496 while (token != T_OBJECT_END) {
497 if (token != T_STRING) {
510 token = GetNextToken();
511 if (token != T_OBJECT_PAIR_SEPARATOR) {
516 // The next token is the value. Ownership transfers to |dict|.
527 token = GetNextToken();
528 if (token
559 Token token = GetNextToken(); local
[all...]
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Dsync_task_manager.h46 typedef base::Callback<void(scoped_ptr<SyncTaskToken> token)> Continuation;
100 // Notifies SyncTaskManager that the task associated to |token| has finished
102 static void NotifyTaskDone(scoped_ptr<SyncTaskToken> token,
141 void NotifyTaskDoneBody(scoped_ptr<SyncTaskToken> token,
151 // This should be called when an async task needs to get a task token.
162 void RunTask(scoped_ptr<SyncTaskToken> token,
166 // If |token| is non-NULL, put |token| back to |token_| beforehand.
167 void MaybeStartNextForegroundTask(scoped_ptr<SyncTaskToken> token);
/external/chromium_org/extensions/renderer/
H A Drequest_sender.cc25 blink::WebUserGestureToken token)
26 : name(name), source(source), token(token) {}
30 blink::WebUserGestureToken token; member in struct:extensions::PendingRequest
136 blink::WebScopedUserGesture gesture(request->token);
23 PendingRequest(const std::string& name, RequestSender::Source* source, blink::WebUserGestureToken token) argument
/external/chromium_org/rlz/win/lib/
H A Dprocess_info.cc35 HANDLE token; local
37 CHECK(::OpenProcessToken(::GetCurrentProcess(), TOKEN_QUERY, &token));
39 base::win::ScopedHandle scoped_process_token(token);
46 BOOL result = ::GetTokenInformation(token, TokenUser, NULL, 0,
54 CHECK(::GetTokenInformation(token, TokenUser, token_user_bytes.get(),
/external/chromium_org/third_party/libxslt/libexslt/
H A Dstrings.c30 * node set of token elements, each containing one token from the string.
37 const xmlChar *token, *delimiter; local
77 for (cur = str, token = str; *cur != 0; cur += clen) {
84 (const xmlChar *) "token", cur);
88 token = cur + clen;
92 if (cur == token) {
94 token = cur + clen;
97 *cur = 0; /* terminate the token */
99 (const xmlChar *) "token", toke
145 const xmlChar *token; local
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
H A DSyntaxTreeDumper.java75 Token token = (Token) node;
76 String tokenType = token.getClass().getSimpleName().substring(1);
77 return tokenType + " [line:" + token.getLine() + ",pos:" + token.getPos() + "] \""
78 + escape(token.getText()) + "\"";

Completed in 554 milliseconds

<<21222324252627282930>>