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

1 2 3 45 6 7 8 91011>>

  /frameworks/native/opengl/tools/glgen/src/
CFunc.java 141 String tok = tokens[i++]; local
143 if (tok.equals("(")) {
146 if (tok.equals(")")) {
152 String argTypeName = tok;
  /external/openssh/
gss-serv.c 191 u_char *tok; local
195 tok = ename->value;
202 if (ename->length < 6 || memcmp(tok, "\x04\x01", 2) != 0)
212 oidl = get_u16(tok+2); /* length including next two bytes */
219 if (tok[4] != 0x06 || tok[5] != oidl ||
221 !ssh_gssapi_check_oid(ctx, tok+6, oidl))
229 name->length = get_u32(tok+offset);
238 memcpy(name->value, tok+offset, name->length);
  /external/clang/include/clang/Basic/
IdentifierTable.h 48 /// set, and all tok::identifier tokens have a pointer to one of these.
50 unsigned TokenID : 9; // Front-end token ID or tok::identifier.
156 tok::TokenKind getTokenID() const { return (tok::TokenKind)TokenID; }
161 /// \brief Revert TokenID to tok::identifier; used for GNU libstdc++ 4.2
165 /// to tok::identifier for libstdc++ 4.2. Keep track of when this happens
168 assert(TokenID != tok::identifier && "Already at tok::identifier");
169 TokenID = tok::identifier;
175 /// For example, "define" will return tok::pp_define
    [all...]
  /external/clang/include/clang/Parse/
Parser.h 63 /// Tok - The current token we are peeking ahead. All parsing methods assume
65 Token Tok;
137 llvm::SmallDenseMap<IdentifierInfo *, tok::TokenKind> RevertableTypeTraits;
204 const Token &getCurToken() const { return Tok; }
253 if (Tok.is(tok::code_completion))
256 PrevTokLocation = Tok.getLocation();
257 PP.Lex(Tok);
268 return Tok.getKind() == tok::l_paren || Tok.getKind() == tok::r_paren
    [all...]
  /external/tcpdump/
print-syslog.c 44 static const struct tok syslog_severity_values[] = {
56 static const struct tok syslog_facility_values[] = {
print-vrrp.c 70 static const struct tok type2str[] = {
80 static const struct tok auth2str[] = {
print-pflog.c 53 static struct tok pf_reasons[] = {
72 static struct tok pf_actions[] = {
86 static struct tok pf_directions[] = {
ipproto.h 40 extern struct tok ipproto_values[];
print-tftp.c 48 static struct tok op2str[] = {
59 static struct tok err2str[] = {
print-ospf.c 46 static struct tok ospf_option_values[] = {
58 static struct tok ospf_authtype_values[] = {
65 static struct tok ospf_rla_flag_values[] = {
73 static struct tok type2str[] = {
83 static struct tok lsa_values[] = {
97 static struct tok ospf_dd_flag_values[] = {
104 static struct tok lsa_opaque_values[] = {
111 static struct tok lsa_opaque_te_tlv_values[] = {
117 static struct tok lsa_opaque_te_link_tlv_subtlv_values[] = {
135 static struct tok lsa_opaque_grace_tlv_values[] =
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/
FileSystemUtils.java 333 StringTokenizer tok = new StringTokenizer(line2, " "); local
334 if (tok.countTokens() < 4) {
336 if (tok.countTokens() == 1 && lines.size() >= 3) {
338 tok = new StringTokenizer(line3, " ");
345 tok.nextToken(); // Ignore Filesystem
347 tok.nextToken(); // Ignore 1K-blocks
348 tok.nextToken(); // Ignore Used
349 String freeSpace = tok.nextToken();
  /external/llvm/utils/lit/lit/
ShUtil.py 64 tok = self.lex_one_token()
65 assert isinstance(tok, tuple) and len(tok) == 1
66 return (tok[0], num)
186 tok = self.lex()
187 if not tok:
189 if isinstance(tok, tuple):
190 raise ValueError,"syntax error near unexpected token %r" % tok[0]
192 args = [tok]
195 tok = self.look(
    [all...]
  /external/clang/lib/Frontend/
CacheTokens.cpp 282 Token Tok;
285 L.LexFromRawLexer(Tok);
288 if ((Tok.isAtStartOfLine() || Tok.is(tok::eof)) &&
293 // 'Tok' when we exit this branch.
294 Token Tmp = Tok;
295 Tmp.setKind(tok::eod);
302 if (Tok.is(tok::raw_identifier))
    [all...]
  /external/clang/unittests/Lex/
PPConditionalDirectiveRecordTest.cpp 106 Token tok; local
107 PP.Lex(tok);
108 if (tok.is(tok::eof))
110 toks.push_back(tok);
  /frameworks/base/services/java/com/android/server/
StatusBarManagerService.java 545 DisableRecord tok = null; local
550 tok = t;
555 if (tok != null) {
557 tok.token.unlinkToDeath(tok, 0);
560 if (tok == null) {
561 tok = new DisableRecord();
562 tok.userId = userId;
564 token.linkToDeath(tok, 0);
569 mDisableRecords.add(tok);
622 DisableRecord tok = mDisableRecords.get(i); local
    [all...]
  /external/iproute2/misc/
lnstat.c 254 char *tmp, *tok; local
277 for (tok = strtok(tmp, ",");
278 tok;
279 tok = strtok(NULL, ",")) {
287 fp.params[fp.num++].name = tok;
298 for (tok = strtok(tmp, ",");
299 tok;
300 tok = strtok(NULL, ",")) {
301 len = strtoul(tok, NULL, 0);
  /external/linux-tools-perf/util/
sort.c 269 int sort_dimension__add(const char *tok)
279 if (strncasecmp(tok, sd->name, strlen(tok)))
323 char *tmp, *tok, *str = strdup(sort_order); local
325 for (tok = strtok_r(str, ", ", &tmp);
326 tok; tok = strtok_r(NULL, ", ", &tmp)) {
327 if (sort_dimension__add(tok) < 0) {
328 error("Unknown --sort key: `%s'", tok);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/
ParamsParser.java 47 StringTokenizer tok = new StringTokenizer(rawQuery, "&", false); local
48 while (tok.hasMoreTokens()) {
50 String nextParam = tok.nextToken();
  /external/chromium/net/http/
http_auth.cc 113 StringTokenizer tok(begin, end, HTTP_LWS);
114 if (!tok.GetNext()) {
120 scheme_begin_ = tok.token_begin();
121 scheme_end_ = tok.token_end();
http_auth_handler_ntlm.h 121 virtual bool Init(HttpAuth::ChallengeTokenizer* tok);
141 HttpAuth::ChallengeTokenizer* tok, bool initial_challenge);
  /external/nist-sip/java/gov/nist/javax/sip/parser/
HeaderParser.java 52 String tok = lexer.ttoken(); local
53 String id = tok.toLowerCase();
184 protected void headerName(int tok) throws ParseException {
185 this.lexer.match(tok);
ViaParser.java 122 Token tok = lexer.getNextToken(); local
123 comment.append(tok.getTokenValue());
125 tok = lexer.getNextToken();
126 comment.append(tok.getTokenValue());
  /external/linux-tools-perf/
builtin-report.c 352 char *tok, *tok2; local
368 tok = strtok((char *)arg, ",");
369 if (!tok)
373 if (!strncmp(tok, "graph", strlen(arg)))
376 else if (!strncmp(tok, "flat", strlen(arg)))
379 else if (!strncmp(tok, "fractal", strlen(arg)))
382 else if (!strncmp(tok, "none", strlen(arg))) {
393 tok = strtok(NULL, ",");
394 if (!tok)
398 callchain_param.min_percent = strtod(tok, &endptr)
    [all...]
  /external/clang/include/clang/AST/
CommentParser.h 56 Token Tok;
63 L.lex(Tok);
65 Tok = MoreLATokens.back();
71 MoreLATokens.push_back(Tok);
72 Tok = OldTok;
79 MoreLATokens.push_back(Tok);
86 Tok = Toks[0];
90 return (Tok.is(tok::backslash_command) || Tok.is(tok::at_command)) &
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
PVisitedNetworkID.java 74 public PVisitedNetworkID(Token tok) {
77 setVisitedNetworkID(tok.getTokenValue());

Completed in 916 milliseconds

1 2 3 45 6 7 8 91011>>