Searched refs:nSep (Results 1 – 3 of 3) sorted by relevance
/external/sqlite/dist/ |
D | shell.c | 1471 int nSep = strlen30(p->separator); in output_csv() local 1475 (nSep==1 || memcmp(z, p->separator, nSep)==0)) ){ in output_csv() 2499 int nSep; /* Number of bytes in p->separator[] */ in do_meta_command() local 2508 nSep = strlen30(p->separator); in do_meta_command() 2509 if( nSep==0 ){ in do_meta_command() 2571 if( *z==p->separator[0] && strncmp(z, p->separator, nSep)==0 ){ in do_meta_command() 2575 azCol[i] = &z[nSep]; in do_meta_command() 2576 z += nSep-1; in do_meta_command()
|
D | sqlite3.c | 72583 int nVal, nSep; 72596 nSep = sqlite3_value_bytes(argv[1]); 72599 nSep = 1; 72601 sqlite3StrAccumAppend(pAccum, zSep, nSep);
|
D | sqlite3.c.orig | 72572 int nVal, nSep; 72585 nSep = sqlite3_value_bytes(argv[1]); 72588 nSep = 1; 72590 sqlite3StrAccumAppend(pAccum, zSep, nSep);
|