Home | History | Annotate | Download | only in dist

Lines Matching refs:SQLITE_ANY

3942 ** encoding is used, then the fourth argument should be [SQLITE_ANY].
4028 #define SQLITE_ANY 5 /* sqlite3_create_function only */
9124 ** or not the specified encoding is SQLITE_ANY). The FuncDef.pDestructor
81091 sqlite3CreateFunc(db, "like", 2, SQLITE_ANY, pInfo, likeFunc, 0, 0, 0);
81092 sqlite3CreateFunc(db, "like", 3, SQLITE_ANY, pInfo, likeFunc, 0, 0, 0);
81093 sqlite3CreateFunc(db, "glob", 2, SQLITE_ANY,
105441 ** with SQLITE_ANY as the encoding.
105828 ** If SQLITE_ANY is specified, add three versions of the function
105833 }else if( enc==SQLITE_ANY ){
114317 const int any = SQLITE_ANY;
122367 return sqlite3_create_function_v2(db, zGeom, -1, SQLITE_ANY,
122840 {"regexp", 2, SQLITE_ANY, 0, icuRegexpFunc},