Home
last modified time | relevance | path

Searched refs:sqlite3Isquote (Results 1 – 7 of 7) sorted by relevance

/sqlite-3.40.0/src/
H A Dutil.c249 if( !sqlite3Isquote(quote) ) return; in sqlite3Dequote()
268 assert( sqlite3Isquote(p->u.zToken[0]) ); in sqlite3DequoteExpr()
287 if( !sqlite3Isquote(p->z[0]) ) return; in sqlite3DequoteToken()
289 if( sqlite3Isquote(p->z[i]) ) return; in sqlite3DequoteToken()
H A Dtokenize.c805 if( sqlite3Isquote(zSql[i]) ){
H A DsqliteInt.h4372 # define sqlite3Isquote(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x80) macro
4381 # define sqlite3Isquote(x) ((x)=='"'||(x)=='\''||(x)=='['||(x)=='`') macro
H A Dalter.c650 bQuote = sqlite3Isquote(pNew->z[0]); in sqlite3AlterRenameColumn()
H A Dparse.y1070 if( sqlite3Isquote(p->u.zToken[0]) ){
H A Dexpr.c870 if( dequote && sqlite3Isquote(pNew->u.zToken[0]) ){ in sqlite3ExprAlloc()
/sqlite-3.40.0/ext/misc/
H A Dnormalize.c223 #define sqlite3Isquote(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x80) macro