HomeSort by relevance Sort by last modified time
    Searched refs:tok (Results 176 - 200 of 347) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/v8/src/
preparser.cc 515 i::Token::Value tok = peek(); local
517 tok != i::Token::SEMICOLON &&
518 tok != i::Token::RBRACE &&
519 tok != i::Token::EOS) {
532 i::Token::Value tok = peek(); local
534 tok != i::Token::SEMICOLON &&
535 tok != i::Token::RBRACE &&
536 tok != i::Token::EOS) {
558 i::Token::Value tok = peek(); local
560 tok != i::Token::SEMICOLON &
1469 i::Token::Value tok = peek(); local
    [all...]
  /external/tcpdump/
print-rx.c 57 static struct tok rx_types[] = {
85 static struct tok fs_req[] = {
124 static struct tok cb_req[] = {
143 static struct tok pt_req[] = {
169 static struct tok vldb_req[] = {
207 static struct tok kauth_req[] = {
229 static struct tok vol_req[] = {
262 static struct tok bos_req[] = {
303 static struct tok ubik_req[] = {
332 static struct tok cb_types[] =
    [all...]
util.c 265 tok2strbuf(register const struct tok *lp, register const char *fmt,
286 tok2str(register const struct tok *lp, register const char *fmt,
303 bittok2str(register const struct tok *lp, register const char *fmt,
print-eigrp.c 60 static const struct tok eigrp_opcode_values[] = {
70 static const struct tok eigrp_common_header_flag_values[] = {
94 static const struct tok eigrp_tlv_values[] = {
198 static const struct tok eigrp_ext_proto_id_values[] = {
print-icmp.c 197 static struct tok icmp2str[] = {
211 static struct tok unreach2str[] = {
238 static struct tok type2str[] = {
309 static const struct tok icmp_mpls_ext_obj_values[] = {
print-igrp.c 73 static struct tok op2str[] = {
print-l2tp.c 58 static struct tok l2tp_msgtype2str[] = {
118 static struct tok l2tp_avp2str[] = {
163 static struct tok l2tp_authentype2str[] = {
177 static struct tok l2tp_cc_direction2str[] = {
print-lane.c 43 static const struct tok lecop2str[] = {
print-sunrpc.c 56 static struct tok proc2str[] = {
print-cdp.c 48 static struct tok cdp_tlv_values[] = {
73 static struct tok cdp_capability_values[] = {
print-ntp.c 55 static struct tok ntp_mode_values[] = {
67 static struct tok ntp_leapind_values[] = {
print-icmp6.c 65 static struct tok icmp6_type_values[] = {
97 static struct tok icmp6_dst_unreach_code_values[] = {
106 static struct tok icmp6_opt_pi_flag_values[] = {
113 static struct tok icmp6_opt_ra_flag_values[] = {
120 static struct tok icmp6_nd_na_flag_values[] = {
128 static struct tok icmp6_opt_values[] = {
141 static struct tok mldv2report2str[] = {
    [all...]
print-lwres.c 178 struct tok opcode[] = {
187 extern struct tok ns_type2str[];
188 extern struct tok ns_class2str[];
  /external/apache-http/src/org/apache/http/impl/auth/
DigestScheme.java 139 StringTokenizer tok = new StringTokenizer(qop,","); local
140 while (tok.hasMoreTokens()) {
141 String variant = tok.nextToken().trim();
  /external/chromium/net/http/
http_auth_sspi_win.cc 225 HttpAuth::ChallengeTokenizer* tok) {
227 if (!LowerCaseEqualsASCII(tok->scheme(), StringToLowerASCII(scheme_).c_str()))
230 std::string encoded_auth_token = tok->base64_param();
  /libcore/luni/src/test/java/tests/api/java/util/
ResourceBundleTest.java 104 StringTokenizer tok = new StringTokenizer(classPath, File.pathSeparator); local
108 while (tok.hasMoreTokens()) {
109 String path = tok.nextToken();
  /external/clang/lib/Lex/
PreprocessingRecord.cpp 440 case tok::pp_include:
444 case tok::pp_import:
448 case tok::pp_include_next:
452 case tok::pp___include_macros:
  /external/clang/lib/Parse/
ParseAST.cpp 45 const Token &Tok = P.getCurToken();
46 if (Tok.is(tok::eof)) {
51 if (Tok.getLocation().isInvalid()) {
57 Tok.getLocation().print(OS, PP.getSourceManager());
58 if (Tok.isAnnotation())
61 OS << ": current parser token '" << PP.getSpelling(Tok) << "'\n";
  /external/expat/lib/
xmlparse.c 333 const char *end, int tok, const char *next, const char **nextPtr,
2134 int tok = XmlContentTok(encoding, start, end, &next); local
2173 int tok; local
2256 int tok = XmlContentTok(enc, s, end, &next); local
3217 int tok = XmlCdataSectionTok(enc, s, end, &next); local
3337 int tok; local
3591 int tok; local
3659 int tok; local
3702 int tok; local
3738 int tok = XmlPrologTok(encoding, s, end, &next); local
4737 int tok = XmlPrologTok(encoding, s, end, &next); local
4826 int tok = XmlPrologTok(internalEncoding, textStart, textEnd, &next); local
4871 int tok = XmlPrologTok(internalEncoding, textStart, textEnd, &next); local
4896 int tok; local
4945 int tok = XmlAttributeValueTok(enc, ptr, end, &next); local
5110 int tok = XmlEntityValueTok(enc, entityTextPtr, entityTextEnd, &next); local
    [all...]
  /external/chromium/net/tools/flip_server/
output_ordering.cc 67 const EpollServer::AlarmRegToken& tok,
70 pmp_->alarm_token = tok;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-netrexx.jar 
  /external/srec/srec/Grammar/src/
SR_GrammarImpl.c 356 LCHAR* tok; local
383 for (tok = strtok(filename, ","); tok; tok = strtok(NULL, ","))
385 if (LSTRSTR(tok, "addWords"))
387 addWords = atoi(LSTRCHR(tok, L('=')) + sizeof(LCHAR));
389 else if (tok != filename)
391 PLogError(L("UNKNOWN grammar load property %s"), tok);
  /external/webkit/Source/JavaScriptCore/parser/
SyntaxChecker.h 232 void appendUnaryToken(int& stackDepth, int tok, int) { stackDepth = 1; m_topUnaryToken = tok; }
  /external/openssh/
ssh-keyscan.c 176 char *tok; local
179 tok = xstrsep(stringp, delim);
180 } while (tok && *tok == '\0');
181 return (tok);
  /external/clang/lib/Frontend/
FrontendActions.cpp 334 while (RawTok.isNot(tok::eof)) {
344 Token Tok;
347 PP.Lex(Tok);
348 PP.DumpToken(Tok, true);
350 } while (Tok.isNot(tok::eof));
374 Token Tok;
378 PP.Lex(Tok);
379 } while (Tok.isNot(tok::eof))
    [all...]

Completed in 937 milliseconds

1 2 3 4 5 6 78 91011>>