Lines Matching refs:cQuote
916 char cQuote;
927 cQuote = quoteChar(zSchema);
928 if( cQuote && sqlite3_stricmp(zSchema,"temp")==0 ) cQuote = 0;
929 appendText(&s, zSchema, cQuote);
932 cQuote = quoteChar(zName);
933 appendText(&s, zName, cQuote);
940 cQuote = quoteChar(zCol);
941 appendText(&s, zCol, cQuote);
1020 char cQuote = quoteChar(zSchema);
1021 if( cQuote && sqlite3_stricmp(zSchema,"temp")!=0 ){
17018 char cQuote;
17026 cQuote = quoteChar(zName);
17028 if( cQuote ) n += n+2;
17032 if( cQuote ) z[n++] = cQuote;
17035 if( zName[i]==cQuote ) z[n++] = cQuote;
17037 if( cQuote ) z[n++] = cQuote;
19938 int cQuote = c;
19943 if( c==cQuote ){
19944 if( pc==cQuote ){
19949 if( (c==cSep && pc==cQuote)
19950 || (c==rSep && pc==cQuote)
19951 || (c==rSep && pc=='\r' && ppc==cQuote)
19952 || (c==EOF && pc==cQuote)
19954 do{ p->n--; }while( p->z[p->n]!=cQuote );
19958 if( pc==cQuote && c!='\r' ){
19960 p->zFile, p->nLine, cQuote);
19964 p->zFile, startLine, cQuote);