/external/chromium_org/third_party/sqlite/src/ext/fts3/ |
fts3_expr.c | 87 const char **azCol; /* Array of column names for fts3 table */ 88 int nCol; /* Number of entries in azCol[] */ 454 const char *zStr = pParse->azCol[ii]; 692 ** use to normalize query tokens while parsing the expression. The azCol[] 705 char **azCol, /* Array of column names for fts3 table */ 706 int nCol, /* Number of entries in azCol[] */ 715 sParse.azCol = (const char **)azCol; 859 char **azCol = 0; 896 azCol = (char **)sqlite3_malloc(nCol*sizeof(char *)) [all...] |
/external/chromium_org/third_party/sqlite/src/src/ |
shell.c | 652 static int shell_callback(void *pArg, int nArg, char **azArg, char **azCol, int *aiType){ 661 int len = strlen30(azCol[i] ? azCol[i] : ""); 666 fprintf(p->out,"%*s = %s\n", w, azCol[i], 682 w = strlen30(azCol[i] ? azCol[i] : ""); 691 fprintf(p->out,"%-*.*s%s",w,w,azCol[i], i==nArg-1 ? "\n": " "); 729 fprintf(p->out,"%s%s",azCol[i], i==nArg-1 ? "\n" : p->separator); 752 output_html_string(p->out, azCol[i]); 770 output_c_string(p->out,azCol[i] ? azCol[i] : "") [all...] |
tclsqlite.c | [all...] |
/external/sqlite/dist/orig/ |
shell.c | 669 static int shell_callback(void *pArg, int nArg, char **azArg, char **azCol, int *aiType){ 678 int len = strlen30(azCol[i] ? azCol[i] : ""); 683 fprintf(p->out,"%*s = %s\n", w, azCol[i], 699 w = strlen30(azCol[i] ? azCol[i] : ""); 708 fprintf(p->out,"%-*.*s%s",w,w,azCol[i], i==nArg-1 ? "\n": " "); 746 fprintf(p->out,"%s%s",azCol[i], i==nArg-1 ? "\n" : p->separator); 769 output_html_string(p->out, azCol[i]); 787 output_c_string(p->out,azCol[i] ? azCol[i] : "") [all...] |
sqlite3.c | [all...] |
/external/sqlite/dist/ |
shell.c | 674 static int shell_callback(void *pArg, int nArg, char **azArg, char **azCol, int *aiType){ 683 int len = strlen30(azCol[i] ? azCol[i] : ""); 688 fprintf(p->out,"%*s = %s\n", w, azCol[i], 704 w = strlen30(azCol[i] ? azCol[i] : ""); 713 fprintf(p->out,"%-*.*s%s",w,w,azCol[i], i==nArg-1 ? "\n": " "); 751 fprintf(p->out,"%s%s",azCol[i], i==nArg-1 ? "\n" : p->separator); 774 output_html_string(p->out, azCol[i]); 792 output_c_string(p->out,azCol[i] ? azCol[i] : "") [all...] |
sqlite3.c | [all...] |
/external/chromium_org/third_party/sqlite/amalgamation/ |
sqlite3.c | [all...] |