Lines Matching refs:SQLITE_ANY
3935 ** encoding is used, then the fourth argument should be [SQLITE_ANY].
4021 #define SQLITE_ANY 5 /* sqlite3_create_function only */
9117 ** or not the specified encoding is SQLITE_ANY). The FuncDef.pDestructor
81084 sqlite3CreateFunc(db, "like", 2, SQLITE_ANY, pInfo, likeFunc, 0, 0, 0);
81085 sqlite3CreateFunc(db, "like", 3, SQLITE_ANY, pInfo, likeFunc, 0, 0, 0);
81086 sqlite3CreateFunc(db, "glob", 2, SQLITE_ANY,
105434 ** with SQLITE_ANY as the encoding.
105815 ** If SQLITE_ANY is specified, add three versions of the function
105820 }else if( enc==SQLITE_ANY ){
114286 const int any = SQLITE_ANY;
122336 return sqlite3_create_function_v2(db, zGeom, -1, SQLITE_ANY,
122809 {"regexp", 2, SQLITE_ANY, 0, icuRegexpFunc},