Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c21711 # define sqlite3JsonId1(x) (sqlite3IsIdChar(x)&&(x)<'0')
21712 # define sqlite3JsonId2(x) sqlite3IsIdChar(x)
21714 SQLITE_PRIVATE int sqlite3IsIdChar(u8);
121821 if( bQuote==0 && sqlite3IsIdChar(*(u8*)pBest->t.z) ){
186263 SQLITE_PRIVATE int sqlite3IsIdChar(u8 c){ return IdChar(c); } function
186845 if( pStr->nChar && sqlite3IsIdChar(pStr->zText[pStr->nChar-1]) ){
186958 if( sqlite3IsIdChar(zSql[i]) ) addSpaceSeparator(pStr);
192583 && sqlite3IsIdChar((unsigned char)azCompileOpt[i][n])==0