HomeSort by relevance Sort by last modified time
    Searched defs:tok (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /bionic/libc/wchar/
wcstok.c 45 wchar_t *tok; local
65 tok = s - 1;
81 return (tok);
  /bionic/libc/string/
strsep.c 52 char *tok; local
56 for (tok = s;;) {
66 return (tok);
strtok.c 45 char *tok; local
65 tok = s - 1;
81 return (tok);
  /external/tcpdump/missing/
strsep.c 64 char *tok; local
68 for (tok = s;;) {
78 return (tok);
  /external/nist-sip/java/gov/nist/javax/sip/parser/
WarningParser.java 130 Token tok = lexer.getNextToken(); local
132 int code = Integer.parseInt(tok.getTokenValue());
143 tok = lexer.getNextToken();
151 warning.setAgent(tok.getTokenValue() + ":"
154 warning.setAgent(tok.getTokenValue());
Parser.java 58 Token tok = lexer.match(SIP); local
59 if (!tok.getTokenValue().equalsIgnoreCase("SIP"))
62 tok = lexer.match(ID);
63 if (!tok.getTokenValue().equals("2.0"))
ServerParser.java 81 String tok; local
85 tok = this.lexer.getString('/');
87 if (tok.charAt(tok.length() - 1) == '\n')
88 tok = tok.trim();
89 server.addProductToken(tok);
92 tok = this.lexer.getRest().trim();
93 server.addProductToken(tok);
ViaParser.java 122 Token tok = lexer.getNextToken(); local
123 comment.append(tok.getTokenValue());
125 tok = lexer.getNextToken();
126 comment.append(tok.getTokenValue());
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);
  /external/clang/include/clang/Basic/
TokenKinds.h 19 namespace tok { namespace in namespace:clang
24 #define TOK(X) X,
67 } // end namespace tok
  /external/dropbear/
cli-auth.c 139 unsigned char * tok = NULL; local
195 tok = methods; /* tok stores the next method we'll compare */
198 TRACE(("auth method '%s'", tok))
200 if (strncmp(AUTH_METHOD_PUBKEY, tok,
206 if (strncmp(AUTH_METHOD_INTERACT, tok,
212 if (strncmp(AUTH_METHOD_PASSWORD, tok,
217 tok = &methods[i+1]; /* Must make sure we don't use it after the
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
PVisitedNetworkID.java 74 public PVisitedNetworkID(Token tok) {
77 setVisitedNetworkID(tok.getTokenValue());
  /ndk/sources/host-tools/nawk-20071023/
maketab.c 116 int i, n, tok; local
145 n = sscanf(buf, "%1c %s %s %d", &c, def, name, &tok);
148 if (tok < FIRSTTOKEN || tok > LASTTOKEN) {
149 /* fprintf(stderr, "maketab funny token %d %s ignored\n", tok, buf); */
152 names[tok-FIRSTTOKEN] = (char *) malloc(strlen(name)+1);
153 strcpy(names[tok-FIRSTTOKEN], name);
154 printf("\t(char *) \"%s\",\t/* %d */\n", name, tok);
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/
ProviderConfigurationPermission.java 59 StringTokenizer tok = new StringTokenizer(Strings.toLowerCase(actions), " ,"); local
62 while (tok.hasMoreTokens())
64 String s = tok.nextToken();
  /external/tcpdump/
print-llc.c 47 static struct tok llc_values[] = {
66 static struct tok llc_cmd_values[] = {
78 static const struct tok llc_flag_values[] = {
89 static const struct tok llc_ig_flag_values[] = {
96 static const struct tok llc_supervisory_values[] = {
104 static const struct tok cisco_values[] = {
111 static const struct tok bridged_values[] = {
126 static const struct tok null_values[] = {
132 const struct tok *tok; member in struct:oui_tok
391 const struct tok *tok = null_values; local
    [all...]
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/address/parser/
ParseException.java 131 Token tok = currentToken.next; local
134 if (tok.kind == 0) {
138 retval += add_escapes(tok.image);
139 tok = tok.next;
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/contenttype/parser/
ParseException.java 131 Token tok = currentToken.next; local
134 if (tok.kind == 0) {
138 retval += add_escapes(tok.image);
139 tok = tok.next;
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/datetime/parser/
ParseException.java 131 Token tok = currentToken.next; local
134 if (tok.kind == 0) {
138 retval += add_escapes(tok.image);
139 tok = tok.next;
  /packages/apps/Email/emailcommon/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/apache-http/src/org/apache/http/conn/ssl/
AbstractVerifier.java 231 String tok = st.nextToken(); local
232 int x = tok.indexOf("CN=");
234 cnList.add(tok.substring(x + 3));
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
DERObjectIdentifier.java 189 OIDTokenizer tok = new OIDTokenizer(identifier); local
194 Integer.parseInt(tok.nextToken()) * 40
195 + Integer.parseInt(tok.nextToken()));
197 while (tok.hasMoreTokens())
199 String token = tok.nextToken();
  /external/clang/lib/ARCMigrate/
Transforms.cpp 129 Token tok; local
130 lexer.LexFromRawLexer(tok);
131 if (tok.isNot(tok::semi))
134 return tok.getLocation();
  /external/iproute2/misc/
lnstat_util.c 122 char *tok; local
125 tok = strtok(buf, " \t\n");
128 strncpy(lf->fields[i].name, tok, LNSTAT_MAX_FIELD_NAME_LEN);
131 tok = strtok(NULL, " \t\n");
132 if (!tok) {
  /frameworks/base/opengl/tools/glgen/src/
CFunc.java 133 String tok = tokens[i++]; local
135 if (tok.equals("(")) {
138 if (tok.equals(")")) {
144 String argTypeName = tok;
  /hardware/ril/rild/
rild.c 72 char * tok; local
75 while ((tok = strtok(s, " \0"))) {
76 argv[count] = tok;

Completed in 459 milliseconds

1 2 3 4