view release on metacpan or search on metacpan
public/javascripts/ace/mode-drools.js view on Meta::CPAN
var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
var JavaHighlightRules = require("./java_highlight_rules").JavaHighlightRules;
var DocCommentHighlightRules = require("./doc_comment_highlight_rules").DocCommentHighlightRules;
var identifierRe = "[a-zA-Z\\$_\u00a1-\uffff][a-zA-Z\\d\\$_\u00a1-\uffff]*";
var packageIdentifierRe = "[a-zA-Z\\$_\u00a1-\uffff][\\.a-zA-Z\\d\\$_\u00a1-\uffff]*";
var DroolsHighlightRules = function() {
var keywords = ("date|effective|expires|lock|on|active|no|loop|auto|focus" +
"|activation|group|agenda|ruleflow|duration|timer|calendars|refract|direct" +
"|dialect|salience|enabled|attributes|extends|template" +
"|function|contains|matches|eval|excludes|soundslike" +
"|memberof|not|in|or|and|exists|forall|over|from|entry|point|accumulate|acc|collect" +
"|action|reverse|result|end|init|instanceof|extends|super|boolean|char|byte|short" +
"|int|long|float|double|this|void|class|new|case|final|if|else|for|while|do" +
"|default|try|catch|finally|switch|synchronized|return|throw|break|continue|assert" +
"|modify|static|public|protected|private|abstract|native|transient|volatile" +
"|strictfp|throws|interface|enum|implements|type|window|trait|no-loop|str"
);
public/javascripts/ace/mode-matlab.js view on Meta::CPAN
var builtinConstants = (
"true|false|inf|Inf|nan|NaN|eps|pi|ans|nargin|nargout|varargin|varargout"
);
var builtinFunctions = (
"abs|accumarray|acos(?:d|h)?|acot(?:d|h)?|acsc(?:d|h)?|actxcontrol(?:list|select)?|actxGetRunningServer|actxserver|addlistener|addpath|addpref|addtodate|"+
"airy|align|alim|all|allchild|alpha|alphamap|amd|ancestor|and|angle|annotation|any|area|arrayfun|asec(?:d|h)?|asin(?:d|h)?|assert|assignin|atan(?:2|d|h)?|" +
"audiodevinfo|audioplayer|audiorecorder|aufinfo|auread|autumn|auwrite|avifile|aviinfo|aviread|axes|axis|balance|bar(?:3|3h|h)?|base2dec|beep|BeginInvoke|bench|"+
"bessel(?:h|i|j|k|y)|beta|betainc|betaincinv|betaln|bicg|bicgstab|bicgstabl|bin2dec|bitand|bitcmp|bitget|bitmax|bitnot|bitor|bitset|bitshift|bitxor|blanks|blkdiag|"+
"bone|box|brighten|brush|bsxfun|builddocsearchdb|builtin|bvp4c|bvp5c|bvpget|bvpinit|bvpset|bvpxtend|calendar|calllib|callSoapService|camdolly|cameratoolbar|camlight|"+
"camlookat|camorbit|campan|campos|camproj|camroll|camtarget|camup|camva|camzoom|cart2pol|cart2sph|cast|cat|caxis|cd|cdf2rdf|cdfepoch|cdfinfo|cdflib(?:.(?:close|closeVar|"+
"computeEpoch|computeEpoch16|create|createAttr|createVar|delete|deleteAttr|deleteAttrEntry|deleteAttrgEntry|deleteVar|deleteVarRecords|epoch16Breakdown|epochBreakdown|getAttrEntry|"+
"getAttrgEntry|getAttrMaxEntry|getAttrMaxgEntry|getAttrName|getAttrNum|getAttrScope|getCacheSize|getChecksum|getCompression|getCompressionCacheSize|getConstantNames|"+
"getConstantValue|getCopyright|getFileBackward|getFormat|getLibraryCopyright|getLibraryVersion|getMajority|getName|getNumAttrEntries|getNumAttrgEntries|getNumAttributes|"+
"getNumgAttributes|getReadOnlyMode|getStageCacheSize|getValidate|getVarAllocRecords|getVarBlockingFactor|getVarCacheSize|getVarCompression|getVarData|getVarMaxAllocRecNum|"+
"getVarMaxWrittenRecNum|getVarName|getVarNum|getVarNumRecsWritten|getVarPadValue|getVarRecordData|getVarReservePercent|getVarsMaxWrittenRecNum|getVarSparseRecords|getVersion|"+
"hyperGetVarData|hyperPutVarData|inquire|inquireAttr|inquireAttrEntry|inquireAttrgEntry|inquireVar|open|putAttrEntry|putAttrgEntry|putVarData|putVarRecordData|renameAttr|"+
"renameVar|setCacheSize|setChecksum|setCompression|setCompressionCacheSize|setFileBackward|setFormat|setMajority|setReadOnlyMode|setStageCacheSize|setValidate|"+
"setVarAllocBlockRecords|setVarBlockingFactor|setVarCacheSize|setVarCompression|setVarInitialRecs|setVarPadValue|SetVarReservePercent|setVarsCacheSize|setVarSparseRecords))?|"+
"cdfread|cdfwrite|ceil|cell2mat|cell2struct|celldisp|cellfun|cellplot|cellstr|cgs|checkcode|checkin|checkout|chol|cholinc|cholupdate|circshift|cla|clabel|class|clc|clear|"+
public/javascripts/ace/mode-php.js view on Meta::CPAN
],
"bzopen": [
"resource bzopen(string|int file|fp, string mode)",
"Opens a new BZip2 stream"
],
"bzread": [
"string bzread(resource bz[, int length])",
"Reads up to length bytes from a BZip2 stream, or 1024 bytes if length is not specified"
],
"cal_days_in_month": [
"int cal_days_in_month(int calendar, int month, int year)",
"Returns the number of days in a month for a given year and calendar"
],
"cal_from_jd": [
"array cal_from_jd(int jd, int calendar)",
"Converts from Julian Day Count to a supported calendar and return extended information"
],
"cal_info": [
"array cal_info([int calendar])",
"Returns information about a particular calendar"
],
"cal_to_jd": [
"int cal_to_jd(int calendar, int month, int day, int year)",
"Converts from a supported calendar to Julian Day Count"
],
"call_user_func": [
"mixed call_user_func(mixed function_name [, mixed parmeter] [, mixed ...])",
"Call a user function which is the first parameter"
],
"call_user_func_array": [
"mixed call_user_func_array(string function_name, array parameters)",
"Call a user function which is the first parameter with the arguments contained in array"
],
"call_user_method": [
public/javascripts/ace/mode-php.js view on Meta::CPAN
"ceil": [
"float ceil(float number)",
"Returns the next highest integer value of the number"
],
"chdir": [
"bool chdir(string directory)",
"Change the current directory"
],
"checkdate": [
"bool checkdate(int month, int day, int year)",
"Returns true(1) if it is a valid date in gregorian calendar"
],
"chgrp": [
"bool chgrp(string filename, mixed group)",
"Change file group"
],
"chmod": [
"bool chmod(string filename, int mode)",
"Change file mode"
],
"chown": [
public/javascripts/ace/mode-php.js view on Meta::CPAN
],
"date_timezone_get": [
"DateTimeZone date_timezone_get(DateTime object)",
"Return new DateTimeZone object relative to give DateTime"
],
"date_timezone_set": [
"DateTime date_timezone_set(DateTime object, DateTimeZone object)",
"Sets the timezone for the DateTime object."
],
"datefmt_create": [
"IntlDateFormatter datefmt_create(string $locale, long date_type, long time_type[, string $timezone_str, long $calendar, string $pattern] )",
"* Create formatter."
],
"datefmt_format": [
"string datefmt_format( [mixed]int $args or array $args )",
"* Format the time value as a string. }}}"
],
"datefmt_get_calendar": [
"string datefmt_get_calendar( IntlDateFormatter $mf )",
"* Get formatter calendar."
],
"datefmt_get_datetype": [
"string datefmt_get_datetype( IntlDateFormatter $mf )",
"* Get formatter datetype."
],
"datefmt_get_error_code": [
"int datefmt_get_error_code( IntlDateFormatter $nf )",
"* Get formatter's last error code."
],
"datefmt_get_error_message": [
public/javascripts/ace/mode-php.js view on Meta::CPAN
"* Parse the string $value to a localtime array }}}"
],
"datefmt_parse": [
"integer datefmt_parse( IntlDateFormatter $fmt, string $text_to_parse [, int $parse_pos] )",
"* Parse the string $value starting at parse_pos to a Unix timestamp -int }}}"
],
"datefmt_setLenient": [
"string datefmt_setLenient(IntlDateFormatter $mf)",
"* Set formatter lenient."
],
"datefmt_set_calendar": [
"bool datefmt_set_calendar( IntlDateFormatter $mf, int $calendar )",
"* Set formatter calendar."
],
"datefmt_set_pattern": [
"bool datefmt_set_pattern( IntlDateFormatter $mf, string $pattern )",
"* Set formatter pattern."
],
"datefmt_set_timezone_id": [
"boolean datefmt_set_timezone_id( IntlDateFormatter $mf,$timezone_id)",
"* Set formatter timezone_id."
],
"dba_close": [
public/javascripts/ace/mode-php.js view on Meta::CPAN
"fputcsv": [
"int fputcsv(resource fp, array fields [, string delimiter [, string enclosure]])",
"Format line as CSV and write to file pointer"
],
"fread": [
"string fread(resource fp, int length)",
"Binary-safe file read"
],
"frenchtojd": [
"int frenchtojd(int month, int day, int year)",
"Converts a french republic calendar date to julian day count"
],
"fscanf": [
"mixed fscanf(resource stream, string format [, string ...])",
"Implements a mostly ANSI compatible fscanf()"
],
"fseek": [
"int fseek(resource fp, int offset [, int whence])",
"Seek on a file pointer"
],
"fsockopen": [
public/javascripts/ace/mode-php.js view on Meta::CPAN
"grapheme_strstr": [
"string grapheme_strstr(string haystack, string needle[, bool part])",
"Finds first occurrence of a string within another"
],
"grapheme_substr": [
"string grapheme_substr(string str, int start [, int length])",
"Returns part of a string"
],
"gregoriantojd": [
"int gregoriantojd(int month, int day, int year)",
"Converts a gregorian calendar date to julian day count"
],
"gzcompress": [
"string gzcompress(string data [, int level])",
"Gzip-compress a string"
],
"gzdeflate": [
"string gzdeflate(string data [, int level])",
"Gzip-compress a string"
],
"gzencode": [
public/javascripts/ace/mode-php.js view on Meta::CPAN
"jddayofweek": [
"mixed jddayofweek(int juliandaycount [, int mode])",
"Returns name or number of day of week from julian day count"
],
"jdmonthname": [
"string jdmonthname(int juliandaycount, int mode)",
"Returns name of month for julian day count"
],
"jdtofrench": [
"string jdtofrench(int juliandaycount)",
"Converts a julian day count to a french republic calendar date"
],
"jdtogregorian": [
"string jdtogregorian(int juliandaycount)",
"Converts a julian day count to a gregorian calendar date"
],
"jdtojewish": [
"string jdtojewish(int juliandaycount [, bool hebrew [, int fl]])",
"Converts a julian day count to a jewish calendar date"
],
"jdtojulian": [
"string jdtojulian(int juliandaycount)",
"Convert a julian day count to a julian calendar date"
],
"jdtounix": [
"int jdtounix(int jday)",
"Convert Julian Day to UNIX timestamp"
],
"jewishtojd": [
"int jewishtojd(int month, int day, int year)",
"Converts a jewish calendar date to a julian day count"
],
"join": [
"string join(array src, string glue)",
"An alias for implode"
],
"jpeg2wbmp": [
"bool jpeg2wbmp (string f_org, string f_dest, int d_height, int d_width, int threshold)",
"Convert JPEG image to WBMP image"
],
"json_decode": [
public/javascripts/ace/mode-php.js view on Meta::CPAN
"json_encode": [
"string json_encode(mixed data [, int options])",
"Returns the JSON representation of a value"
],
"json_last_error": [
"int json_last_error()",
"Returns the error code of the last json_decode()."
],
"juliantojd": [
"int juliantojd(int month, int day, int year)",
"Converts a julian calendar date to julian day count"
],
"key": [
"mixed key(array array_arg)",
"Return the key of the element currently pointed to by the internal array pointer"
],
"krsort": [
"bool krsort(array &array_arg [, int sort_flags])",
"Sort an array by key value in reverse order"
],
"ksort": [
public/javascripts/ace/mode-php_laravel_blade.js view on Meta::CPAN
],
"bzopen": [
"resource bzopen(string|int file|fp, string mode)",
"Opens a new BZip2 stream"
],
"bzread": [
"string bzread(resource bz[, int length])",
"Reads up to length bytes from a BZip2 stream, or 1024 bytes if length is not specified"
],
"cal_days_in_month": [
"int cal_days_in_month(int calendar, int month, int year)",
"Returns the number of days in a month for a given year and calendar"
],
"cal_from_jd": [
"array cal_from_jd(int jd, int calendar)",
"Converts from Julian Day Count to a supported calendar and return extended information"
],
"cal_info": [
"array cal_info([int calendar])",
"Returns information about a particular calendar"
],
"cal_to_jd": [
"int cal_to_jd(int calendar, int month, int day, int year)",
"Converts from a supported calendar to Julian Day Count"
],
"call_user_func": [
"mixed call_user_func(mixed function_name [, mixed parmeter] [, mixed ...])",
"Call a user function which is the first parameter"
],
"call_user_func_array": [
"mixed call_user_func_array(string function_name, array parameters)",
"Call a user function which is the first parameter with the arguments contained in array"
],
"call_user_method": [
public/javascripts/ace/mode-php_laravel_blade.js view on Meta::CPAN
"ceil": [
"float ceil(float number)",
"Returns the next highest integer value of the number"
],
"chdir": [
"bool chdir(string directory)",
"Change the current directory"
],
"checkdate": [
"bool checkdate(int month, int day, int year)",
"Returns true(1) if it is a valid date in gregorian calendar"
],
"chgrp": [
"bool chgrp(string filename, mixed group)",
"Change file group"
],
"chmod": [
"bool chmod(string filename, int mode)",
"Change file mode"
],
"chown": [
public/javascripts/ace/mode-php_laravel_blade.js view on Meta::CPAN
],
"date_timezone_get": [
"DateTimeZone date_timezone_get(DateTime object)",
"Return new DateTimeZone object relative to give DateTime"
],
"date_timezone_set": [
"DateTime date_timezone_set(DateTime object, DateTimeZone object)",
"Sets the timezone for the DateTime object."
],
"datefmt_create": [
"IntlDateFormatter datefmt_create(string $locale, long date_type, long time_type[, string $timezone_str, long $calendar, string $pattern] )",
"* Create formatter."
],
"datefmt_format": [
"string datefmt_format( [mixed]int $args or array $args )",
"* Format the time value as a string. }}}"
],
"datefmt_get_calendar": [
"string datefmt_get_calendar( IntlDateFormatter $mf )",
"* Get formatter calendar."
],
"datefmt_get_datetype": [
"string datefmt_get_datetype( IntlDateFormatter $mf )",
"* Get formatter datetype."
],
"datefmt_get_error_code": [
"int datefmt_get_error_code( IntlDateFormatter $nf )",
"* Get formatter's last error code."
],
"datefmt_get_error_message": [
public/javascripts/ace/mode-php_laravel_blade.js view on Meta::CPAN
"* Parse the string $value to a localtime array }}}"
],
"datefmt_parse": [
"integer datefmt_parse( IntlDateFormatter $fmt, string $text_to_parse [, int $parse_pos] )",
"* Parse the string $value starting at parse_pos to a Unix timestamp -int }}}"
],
"datefmt_setLenient": [
"string datefmt_setLenient(IntlDateFormatter $mf)",
"* Set formatter lenient."
],
"datefmt_set_calendar": [
"bool datefmt_set_calendar( IntlDateFormatter $mf, int $calendar )",
"* Set formatter calendar."
],
"datefmt_set_pattern": [
"bool datefmt_set_pattern( IntlDateFormatter $mf, string $pattern )",
"* Set formatter pattern."
],
"datefmt_set_timezone_id": [
"boolean datefmt_set_timezone_id( IntlDateFormatter $mf,$timezone_id)",
"* Set formatter timezone_id."
],
"dba_close": [
public/javascripts/ace/mode-php_laravel_blade.js view on Meta::CPAN
"fputcsv": [
"int fputcsv(resource fp, array fields [, string delimiter [, string enclosure]])",
"Format line as CSV and write to file pointer"
],
"fread": [
"string fread(resource fp, int length)",
"Binary-safe file read"
],
"frenchtojd": [
"int frenchtojd(int month, int day, int year)",
"Converts a french republic calendar date to julian day count"
],
"fscanf": [
"mixed fscanf(resource stream, string format [, string ...])",
"Implements a mostly ANSI compatible fscanf()"
],
"fseek": [
"int fseek(resource fp, int offset [, int whence])",
"Seek on a file pointer"
],
"fsockopen": [
public/javascripts/ace/mode-php_laravel_blade.js view on Meta::CPAN
"grapheme_strstr": [
"string grapheme_strstr(string haystack, string needle[, bool part])",
"Finds first occurrence of a string within another"
],
"grapheme_substr": [
"string grapheme_substr(string str, int start [, int length])",
"Returns part of a string"
],
"gregoriantojd": [
"int gregoriantojd(int month, int day, int year)",
"Converts a gregorian calendar date to julian day count"
],
"gzcompress": [
"string gzcompress(string data [, int level])",
"Gzip-compress a string"
],
"gzdeflate": [
"string gzdeflate(string data [, int level])",
"Gzip-compress a string"
],
"gzencode": [
public/javascripts/ace/mode-php_laravel_blade.js view on Meta::CPAN
"jddayofweek": [
"mixed jddayofweek(int juliandaycount [, int mode])",
"Returns name or number of day of week from julian day count"
],
"jdmonthname": [
"string jdmonthname(int juliandaycount, int mode)",
"Returns name of month for julian day count"
],
"jdtofrench": [
"string jdtofrench(int juliandaycount)",
"Converts a julian day count to a french republic calendar date"
],
"jdtogregorian": [
"string jdtogregorian(int juliandaycount)",
"Converts a julian day count to a gregorian calendar date"
],
"jdtojewish": [
"string jdtojewish(int juliandaycount [, bool hebrew [, int fl]])",
"Converts a julian day count to a jewish calendar date"
],
"jdtojulian": [
"string jdtojulian(int juliandaycount)",
"Convert a julian day count to a julian calendar date"
],
"jdtounix": [
"int jdtounix(int jday)",
"Convert Julian Day to UNIX timestamp"
],
"jewishtojd": [
"int jewishtojd(int month, int day, int year)",
"Converts a jewish calendar date to a julian day count"
],
"join": [
"string join(array src, string glue)",
"An alias for implode"
],
"jpeg2wbmp": [
"bool jpeg2wbmp (string f_org, string f_dest, int d_height, int d_width, int threshold)",
"Convert JPEG image to WBMP image"
],
"json_decode": [
public/javascripts/ace/mode-php_laravel_blade.js view on Meta::CPAN
"json_encode": [
"string json_encode(mixed data [, int options])",
"Returns the JSON representation of a value"
],
"json_last_error": [
"int json_last_error()",
"Returns the error code of the last json_decode()."
],
"juliantojd": [
"int juliantojd(int month, int day, int year)",
"Converts a julian calendar date to julian day count"
],
"key": [
"mixed key(array array_arg)",
"Return the key of the element currently pointed to by the internal array pointer"
],
"krsort": [
"bool krsort(array &array_arg [, int sort_flags])",
"Sort an array by key value in reverse order"
],
"ksort": [