Home
last modified time | relevance | path

Searched refs:cSep (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/public-domain/sqlite/dist/
H A Dshell.c22656 int cSep = (u8)p->cColSep; in csv_read_one_field() local
22678 if( (c==cSep && pc==cQuote) in csv_read_one_field()
22716 while( c!=EOF && c!=cSep && c!=rSep ){ in csv_read_one_field()
22745 int cSep = (u8)p->cColSep; in ascii_read_one_field() local
22753 while( c!=EOF && c!=cSep && c!=rSep ){ in ascii_read_one_field()
H A Dsqlite3.c32436 char cSep = '('; in sqlite3TreeViewWith() local
32439 sqlite3_str_appendf(&x, "%c%s", cSep, pCte->pCols->a[j].zEName); in sqlite3TreeViewWith()
32440 cSep = ','; in sqlite3TreeViewWith()
140422 char cSep = '(';
140431 sqlite3_str_appendf(&acc, "%c\"%s\"", cSep, pragCName[j]);
140432 cSep = ',';
213211 char cSep = '\'';
213214 sqlite3_str_appendf(x, "%c%g,%g", cSep, GeoX(p,i), GeoY(p,i));
213215 cSep = ' ';