Lines Matching defs:FUNCTION

9934 ** The following three macros, FUNCTION(), LIKEFUNC() and AGGREGATE() are
9937 ** FUNCTION(zName, nArg, iArg, bNC, xFunc)
9948 ** FUNCTION().
9958 #define FUNCTION(zName, nArg, iArg, bNC, xFunc) \
14645 FUNCTION(julianday, -1, 0, 0, juliandayFunc ),
14646 FUNCTION(date, -1, 0, 0, dateFunc ),
14647 FUNCTION(time, -1, 0, 0, timeFunc ),
14648 FUNCTION(datetime, -1, 0, 0, datetimeFunc ),
14649 FUNCTION(strftime, -1, 0, 0, strftimeFunc ),
14650 FUNCTION(current_time, 0, 0, 0, ctimeFunc ),
14651 FUNCTION(current_timestamp, 0, 0, 0, ctimestampFunc),
14652 FUNCTION(current_date, 0, 0, 0, cdateFunc ),
78675 FUNCTION(sqlite_rename_table, 2, 0, 0, renameTableFunc),
78677 FUNCTION(sqlite_rename_trigger, 2, 0, 0, renameTriggerFunc),
78680 FUNCTION(sqlite_rename_parent, 3, 0, 0, renameParentFunc),
87669 FUNCTION(ltrim, 1, 1, 0, trimFunc ),
87670 FUNCTION(ltrim, 2, 1, 0, trimFunc ),
87671 FUNCTION(rtrim, 1, 2, 0, trimFunc ),
87672 FUNCTION(rtrim, 2, 2, 0, trimFunc ),
87673 FUNCTION(trim, 1, 3, 0, trimFunc ),
87674 FUNCTION(trim, 2, 3, 0, trimFunc ),
87675 FUNCTION(min, -1, 0, 1, minmaxFunc ),
87676 FUNCTION(min, 0, 0, 1, 0 ),
87678 FUNCTION(max, -1, 1, 1, minmaxFunc ),
87679 FUNCTION(max, 0, 1, 1, 0 ),
87681 FUNCTION(typeof, 1, 0, 0, typeofFunc ),
87682 FUNCTION(length, 1, 0, 0, lengthFunc ),
87683 FUNCTION(substr, 2, 0, 0, substrFunc ),
87684 FUNCTION(substr, 3, 0, 0, substrFunc ),
87685 FUNCTION(abs, 1, 0, 0, absFunc ),
87687 FUNCTION(round, 1, 0, 0, roundFunc ),
87688 FUNCTION(round, 2, 0, 0, roundFunc ),
87690 FUNCTION(upper, 1, 0, 0, upperFunc ),
87691 FUNCTION(lower, 1, 0, 0, lowerFunc ),
87692 FUNCTION(coalesce, 1, 0, 0, 0 ),
87693 FUNCTION(coalesce, 0, 0, 0, 0 ),
87694 /* FUNCTION(coalesce, -1, 0, 0, ifnullFunc ), */
87696 FUNCTION(hex, 1, 0, 0, hexFunc ),
87697 /* FUNCTION(ifnull, 2, 0, 0, ifnullFunc ), */
87699 FUNCTION(random, 0, 0, 0, randomFunc ),
87700 FUNCTION(randomblob, 1, 0, 0, randomBlob ),
87701 FUNCTION(nullif, 2, 0, 1, nullifFunc ),
87702 FUNCTION(sqlite_version, 0, 0, 0, versionFunc ),
87703 FUNCTION(sqlite_source_id, 0, 0, 0, sourceidFunc ),
87704 FUNCTION(sqlite_log, 2, 0, 0, errlogFunc ),
87706 FUNCTION(sqlite_compileoption_used,1, 0, 0, compileoptionusedFunc ),
87707 FUNCTION(sqlite_compileoption_get, 1, 0, 0, compileoptiongetFunc ),
87709 FUNCTION(quote, 1, 0, 0, quoteFunc ),
87710 FUNCTION(last_insert_rowid, 0, 0, 0, last_insert_rowid),
87711 FUNCTION(changes, 0, 0, 0, changes ),
87712 FUNCTION(total_changes, 0, 0, 0, total_changes ),
87713 FUNCTION(replace, 3, 0, 0, replaceFunc ),
87714 FUNCTION(zeroblob, 1, 0, 0, zeroblobFunc ),
87716 FUNCTION(soundex, 1, 0, 0, soundexFunc ),
87719 FUNCTION(load_extension, 1, 0, 0, loadExt ),
87720 FUNCTION(load_extension, 2, 0, 0, loadExt ),