Searched defs:token_table (Results 1 - 1 of 1) sorted by relevance

/external/squashfs-tools/squashfs-tools/
H A Daction.c72 static struct token_entry token_table[] = { variable in typeref:struct:token_entry
115 for (i = 0; token_table[i].token != -1; i++)
116 if (strncmp(cur_ptr, token_table[i].string,
117 token_table[i].size) == 0)
119 if (token_table[i].token != TOK_WHITE_SPACE)
124 if (token_table[i].token != -1) {
125 cur_ptr += token_table[i].size;
126 return token_table[i].token;
157 for(i = 0; token_table[i].token != -1; i++)
158 if (strncmp(cur_ptr, token_table[
[all...]

Completed in 118 milliseconds