Lines Matching refs:cQuote
1552 char cQuote; in shellFakeSchema() local
1563 cQuote = quoteChar(zSchema); in shellFakeSchema()
1564 if( cQuote && sqlite3_stricmp(zSchema,"temp")==0 ) cQuote = 0; in shellFakeSchema()
1565 appendText(&s, zSchema, cQuote); in shellFakeSchema()
1568 cQuote = quoteChar(zName); in shellFakeSchema()
1569 appendText(&s, zName, cQuote); in shellFakeSchema()
1576 cQuote = quoteChar(zCol); in shellFakeSchema()
1577 appendText(&s, zCol, cQuote); in shellFakeSchema()
1672 char cQuote = quoteChar(zSchema); in shellAddSchemaName() local
1673 if( cQuote && sqlite3_stricmp(zSchema,"temp")!=0 ){ in shellAddSchemaName()
23386 char cQuote; in set_table_name() local
23394 cQuote = quoteChar(zName); in set_table_name()
23396 if( cQuote ) n += n+2; in set_table_name()
23400 if( cQuote ) z[n++] = cQuote; in set_table_name()
23403 if( zName[i]==cQuote ) z[n++] = cQuote; in set_table_name()
23405 if( cQuote ) z[n++] = cQuote; in set_table_name()
26522 int cQuote = c; in csv_read_one_field() local
26527 if( c==cQuote ){ in csv_read_one_field()
26528 if( pc==cQuote ){ in csv_read_one_field()
26533 if( (c==cSep && pc==cQuote) in csv_read_one_field()
26534 || (c==rSep && pc==cQuote) in csv_read_one_field()
26535 || (c==rSep && pc=='\r' && ppc==cQuote) in csv_read_one_field()
26536 || (c==EOF && pc==cQuote) in csv_read_one_field()
26538 do{ p->n--; }while( p->z[p->n]!=cQuote ); in csv_read_one_field()
26542 if( pc==cQuote && c!='\r' ){ in csv_read_one_field()
26544 p->zFile, p->nLine, cQuote); in csv_read_one_field()
26548 p->zFile, startLine, cQuote); in csv_read_one_field()