Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1 | " Vim completion script |
| 2 | " Language: PHP |
| 3 | " Maintainer: Mikolaj Machowski ( mikmach AT wp DOT pl ) |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 4 | " Last Change: 2006 Mar --- |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 5 | " |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 6 | " TODO: |
| 7 | " - Class aware completion: |
| 8 | " a) additional analize of tags file(s) |
| 9 | " b) "live" parsing of data, maybe with caching |
| 10 | " - Switching to HTML (XML?) completion (SQL) inside of phpStrings |
| 11 | " - allow also for XML completion |
| 12 | " - better 'info', 'menu' |
| 13 | " - outside of <?php?> getting parent tag may cause problems. Heh, even in |
| 14 | " perfect conditions GetLastOpenTag doesn't cooperate... Inside of |
| 15 | " phpStrings this can be even a bonus but outside of <?php?> it is not the |
| 16 | " best situation |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 17 | |
| 18 | function! phpcomplete#CompletePHP(findstart, base) |
| 19 | if a:findstart |
| 20 | unlet! b:php_menu |
| 21 | " Check if we are inside of PHP markup |
| 22 | let pos = getpos('.') |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 23 | let phpbegin = searchpairpos('<?', '', '?>', 'bWn', |
| 24 | \ 'synIDattr(synID(line("."), col("."), 0), "name") =~? "string\|comment"') |
| 25 | let phpend = searchpairpos('<?', '', '?>', 'Wn', |
| 26 | \ 'synIDattr(synID(line("."), col("."), 0), "name") =~? "string\|comment"') |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 27 | |
| 28 | if phpbegin == [0,0] && phpend == [0,0] |
| 29 | " We are outside of any PHP markup. Complete HTML |
| 30 | let htmlbegin = htmlcomplete#CompleteTags(1, '') |
| 31 | let cursor_col = pos[2] |
| 32 | let base = getline('.')[htmlbegin : cursor_col] |
| 33 | let b:php_menu = htmlcomplete#CompleteTags(0, base) |
| 34 | return htmlbegin |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 35 | else |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 36 | " locate the start of the word |
| 37 | let line = getline('.') |
| 38 | let start = col('.') - 1 |
| 39 | let curline = line('.') |
| 40 | let compl_begin = col('.') - 2 |
| 41 | while start >= 0 && line[start - 1] =~ '[a-zA-Z_0-9\x7f-\xff$]' |
| 42 | let start -= 1 |
| 43 | endwhile |
| 44 | let b:compl_context = getline('.')[0:compl_begin] |
| 45 | return start |
| 46 | |
| 47 | " We can be also inside of phpString with HTML tags. Deal with |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 48 | " it later (time, not lines). |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 49 | endif |
| 50 | else |
| 51 | " If exists b:php_menu it means completion was already constructed we |
| 52 | " don't need to do anything more |
| 53 | if exists("b:php_menu") |
| 54 | return b:php_menu |
| 55 | endif |
| 56 | " Initialize base return lists |
| 57 | let res = [] |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 58 | " a:base is very short - we need context |
| 59 | if exists("b:compl_context") |
| 60 | let context = b:compl_context |
| 61 | unlet! b:compl_context |
| 62 | endif |
| 63 | |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 64 | if !exists('g:php_builtin_functions') |
| 65 | call phpcomplete#LoadData() |
| 66 | endif |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 67 | |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 68 | let scontext = substitute(context, |
| 69 | \ '\$\?[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*$', '', '') |
| 70 | |
| 71 | if scontext =~ '\(=\s*new\|extends\)\s\+$' |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 72 | " Complete class name |
| 73 | " Internal solution for finding classes in current file. |
| 74 | let file = getline(1, '$') |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 75 | call filter(file, |
| 76 | \ 'v:val =~ "class\\s\\+[a-zA-Z_\\x7f-\\xff][a-zA-Z_0-9\\x7f-\\xff]*\\s*("') |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 77 | let fnames = join(map(tagfiles(), 'escape(v:val, " \\")')) |
| 78 | let jfile = join(file, ' ') |
| 79 | let int_values = split(jfile, 'class\s\+') |
| 80 | let int_classes = {} |
| 81 | for i in int_values |
| 82 | let c_name = matchstr(i, '^[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*') |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 83 | if c_name != '' |
| 84 | let int_classes[c_name] = '' |
| 85 | endif |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 86 | endfor |
| 87 | |
| 88 | " Prepare list of functions from tags file |
| 89 | let ext_classes = {} |
| 90 | let fnames = join(map(tagfiles(), 'escape(v:val, " \\")')) |
| 91 | if fnames != '' |
| 92 | exe 'silent! vimgrep /^'.a:base.'.*\tc\(\t\|$\)/j '.fnames |
| 93 | let qflist = getqflist() |
| 94 | for field in qflist |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 95 | " [:space:] thing: we don't have to be so strict when |
| 96 | " dealing with tags files - entries there were already |
| 97 | " checked by ctags. |
| 98 | let item = matchstr(field['text'], '^[^[:space:]]\+') |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 99 | let ext_classes[item] = '' |
| 100 | endfor |
| 101 | endif |
| 102 | |
| 103 | call extend(int_classes, ext_classes) |
| 104 | |
| 105 | for m in sort(keys(int_classes)) |
| 106 | if m =~ '^'.a:base |
| 107 | call add(res, m) |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 108 | endif |
| 109 | endfor |
| 110 | |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 111 | let int_list = res |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 112 | |
| 113 | let final_menu = [] |
| 114 | for i in int_list |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 115 | let final_menu += [{'word':i, 'kind':'c'}] |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 116 | endfor |
| 117 | |
| 118 | return final_menu |
| 119 | |
| 120 | elseif scontext =~ '\(->\|::\)$' |
| 121 | " Complete user functions and variables |
| 122 | " Internal solution for current file. |
| 123 | " That seems as unnecessary repeating of functions but there are |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 124 | " few not so subtle differences as not appending of $ and addition |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 125 | " of 'kind' tag (not necessary in regular completion) |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 126 | if a:base =~ '^\$' |
| 127 | let adddollar = '$' |
| 128 | else |
| 129 | let adddollar = '' |
| 130 | endif |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 131 | let file = getline(1, '$') |
| 132 | let jfile = join(file, ' ') |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 133 | let sfile = split(jfile, '\$') |
| 134 | let int_vars = {} |
| 135 | for i in sfile |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 136 | if i =~ '^\$[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\s*=\s*new' |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 137 | let val = matchstr(i, '^[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*').'->' |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 138 | else |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 139 | let val = matchstr(i, '^[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*') |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 140 | endif |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 141 | if val !~ '' |
| 142 | let int_vars[adddollar.val] = '' |
| 143 | endif |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 144 | endfor |
| 145 | |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 146 | " ctags has good support for PHP, use tags file for external |
| 147 | " variables |
| 148 | let fnames = join(map(tagfiles(), 'escape(v:val, " \\")')) |
| 149 | let ext_vars = {} |
| 150 | if fnames != '' |
| 151 | let sbase = substitute(a:base, '^\$', '', '') |
| 152 | exe 'silent! vimgrep /^'.sbase.'.*\tv\(\t\|$\)/j '.fnames |
| 153 | let qflist = getqflist() |
| 154 | for field in qflist |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 155 | let item = matchstr(field['text'], '^[^[:space:]]\+') |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 156 | " Add -> if it is possible object declaration |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 157 | let classname = '' |
| 158 | if field['text'] =~ item.'\s*=\s*new\s\+' |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 159 | let item = item.'->' |
| 160 | let classname = matchstr(field['text'], |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 161 | \ '=\s*new\s\+\zs[a-zA-Z_0-9\x7f-\xff]\+\ze') |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 162 | endif |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 163 | let ext_vars[adddollar.item] = classname |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 164 | endfor |
| 165 | endif |
| 166 | |
| 167 | " Now we have all variables in int_vars dictionary |
| 168 | call extend(int_vars, ext_vars) |
| 169 | |
| 170 | " Internal solution for finding functions in current file. |
| 171 | let file = getline(1, '$') |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 172 | call filter(file, |
| 173 | \ 'v:val =~ "function\\s\\+&\\?[a-zA-Z_\\x7f-\\xff][a-zA-Z_0-9\\x7f-\\xff]*\\s*("') |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 174 | let fnames = join(map(tagfiles(), 'escape(v:val, " \\")')) |
| 175 | let jfile = join(file, ' ') |
| 176 | let int_values = split(jfile, 'function\s\+') |
| 177 | let int_functions = {} |
| 178 | for i in int_values |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 179 | let f_name = matchstr(i, |
| 180 | \ '^&\?\zs[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\ze') |
| 181 | let f_args = matchstr(i, |
| 182 | \ '^&\?[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\s*(\zs.\{-}\ze)\_s*{') |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 183 | let int_functions[f_name.'('] = f_args |
| 184 | endfor |
| 185 | |
| 186 | " Prepare list of functions from tags file |
| 187 | let ext_functions = {} |
| 188 | if fnames != '' |
| 189 | exe 'silent! vimgrep /^'.a:base.'.*\tf\(\t\|$\)/j '.fnames |
| 190 | let qflist = getqflist() |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 191 | for field in qflist |
| 192 | " File name |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 193 | let item = matchstr(field['text'], '^[^[:space:]]\+') |
| 194 | let fname = matchstr(field['text'], '\t\zs\f\+\ze') |
| 195 | let prototype = matchstr(field['text'], |
| 196 | \ 'function\s\+&\?[^[:space:]]\+\s*(\s*\zs.\{-}\ze\s*)\s*{\?') |
| 197 | let ext_functions[item.'('] = prototype.') - '.fname |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 198 | endfor |
| 199 | endif |
| 200 | |
| 201 | let all_values = {} |
| 202 | call extend(all_values, int_functions) |
| 203 | call extend(all_values, ext_functions) |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 204 | call extend(all_values, int_vars) " external variables are already in |
| 205 | call extend(all_values, g:php_builtin_object_functions) |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 206 | |
| 207 | for m in sort(keys(all_values)) |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 208 | if m =~ '\(^\|::\)'.a:base |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 209 | call add(res, m) |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 210 | endif |
| 211 | endfor |
| 212 | |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 213 | let start_list = res |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 214 | |
| 215 | let final_list = [] |
| 216 | for i in start_list |
| 217 | if has_key(int_vars, i) |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 218 | let class = ' ' |
| 219 | if all_values[i] != '' |
| 220 | let class = i.' class ' |
| 221 | endif |
| 222 | let final_list += [{'word':i, 'info':class.all_values[i], 'kind':'v'}] |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 223 | else |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 224 | let final_list += |
| 225 | \ [{'word':substitute(i, '.*::', '', ''), |
| 226 | \ 'info':i.all_values[i], |
| 227 | \ 'kind':'f'}] |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 228 | endif |
| 229 | endfor |
| 230 | |
| 231 | return final_list |
| 232 | endif |
| 233 | |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 234 | if a:base =~ '^\$' |
| 235 | " Complete variables |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 236 | " Built-in variables {{{ |
| 237 | let g:php_builtin_vars = {'$GLOBALS':'', |
| 238 | \ '$_SERVER':'', |
| 239 | \ '$_GET':'', |
| 240 | \ '$_POST':'', |
| 241 | \ '$_COOKIE':'', |
| 242 | \ '$_FILES':'', |
| 243 | \ '$_ENV':'', |
| 244 | \ '$_REQUEST':'', |
| 245 | \ '$_SESSION':'', |
| 246 | \ '$HTTP_SERVER_VARS':'', |
| 247 | \ '$HTTP_ENV_VARS':'', |
| 248 | \ '$HTTP_COOKIE_VARS':'', |
| 249 | \ '$HTTP_GET_VARS':'', |
| 250 | \ '$HTTP_POST_VARS':'', |
| 251 | \ '$HTTP_POST_FILES':'', |
| 252 | \ '$HTTP_SESSION_VARS':'', |
| 253 | \ '$php_errormsg':'', |
| 254 | \ '$this':'' |
| 255 | \ } |
| 256 | " }}} |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 257 | |
| 258 | " Internal solution for current file. |
| 259 | let file = getline(1, '$') |
| 260 | let jfile = join(file, ' ') |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 261 | let int_vals = split(jfile, '\ze\$') |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 262 | let int_vars = {} |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 263 | for i in int_vals |
| 264 | if i =~ '^\$[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\s*=\s*new' |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 265 | let val = matchstr(i, |
| 266 | \ '^\$[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*').'->' |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 267 | else |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 268 | let val = matchstr(i, |
| 269 | \ '^\$[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*') |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 270 | endif |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 271 | if val != '' |
| 272 | let int_vars[val] = '' |
| 273 | endif |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 274 | endfor |
| 275 | |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 276 | call extend(int_vars,g:php_builtin_vars) |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 277 | |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 278 | " ctags has good support for PHP, use tags file for external |
| 279 | " variables |
| 280 | let fnames = join(map(tagfiles(), 'escape(v:val, " \\")')) |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 281 | let ext_vars = {} |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 282 | if fnames != '' |
| 283 | let sbase = substitute(a:base, '^\$', '', '') |
| 284 | exe 'silent! vimgrep /^'.sbase.'.*\tv\(\t\|$\)/j '.fnames |
| 285 | let qflist = getqflist() |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 286 | for field in qflist |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 287 | let item = '$'.matchstr(field['text'], '^[^[:space:]]\+') |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 288 | let m_menu = '' |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 289 | " Add -> if it is possible object declaration |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 290 | " How to detect if previous line is help line? |
| 291 | if field['text'] =~ item.'\s*=\s*new\s\+' |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 292 | let item = item.'->' |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 293 | let m_menu = matchstr(field['text'], |
| 294 | \ '=\s*new\s\+\zs[a-zA-Z_0-9\x7f-\xff]\+\ze') |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 295 | endif |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 296 | let ext_vars[item] = m_menu |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 297 | endfor |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 298 | endif |
| 299 | |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 300 | call extend(int_vars, ext_vars) |
| 301 | let g:a0 = keys(int_vars) |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 302 | |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 303 | for m in sort(keys(int_vars)) |
| 304 | if m =~ '^\'.a:base |
| 305 | call add(res, m) |
| 306 | endif |
| 307 | endfor |
| 308 | |
| 309 | let int_list = res |
| 310 | |
| 311 | let int_dict = [] |
| 312 | for i in int_list |
| 313 | if int_vars[i] != '' |
| 314 | let class = ' ' |
| 315 | if int_vars[i] != '' |
| 316 | let class = i.' class ' |
| 317 | endif |
| 318 | let int_dict += [{'word':i, 'info':class.int_vars[i], 'kind':'v'}] |
| 319 | else |
| 320 | let int_dict += [{'word':i, 'kind':'v'}] |
| 321 | endif |
| 322 | endfor |
| 323 | |
| 324 | return int_dict |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 325 | |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 326 | else |
| 327 | " Complete everything else - |
| 328 | " + functions, DONE |
| 329 | " + keywords of language DONE |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 330 | " + defines (constant definitions), DONE |
| 331 | " + extend keywords for predefined constants, DONE |
| 332 | " + classes (after new), DONE |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 333 | " + limit choice after -> and :: to funcs and vars DONE |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 334 | |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 335 | " Internal solution for finding functions in current file. |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 336 | let file = getline(1, '$') |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 337 | call filter(file, 'v:val =~ "function\\s\\+&\\?[a-zA-Z_\\x7f-\\xff][a-zA-Z_0-9\\x7f-\\xff]*\\s*("') |
| 338 | let fnames = join(map(tagfiles(), 'escape(v:val, " \\")')) |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 339 | let jfile = join(file, ' ') |
| 340 | let int_values = split(jfile, 'function\s\+') |
| 341 | let int_functions = {} |
| 342 | for i in int_values |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 343 | let f_name = matchstr(i, |
| 344 | \ '^&\?\zs[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\ze') |
| 345 | let f_args = matchstr(i, |
| 346 | \ '^&\?[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\s*(\s*\zs.\{-}\ze\s*)\_s*{') |
| 347 | let int_functions[f_name.'('] = f_args.')' |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 348 | endfor |
| 349 | |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 350 | " Prepare list of functions from tags file |
| 351 | let ext_functions = {} |
| 352 | if fnames != '' |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 353 | exe 'silent! vimgrep /^'.a:base.'.*\tf\(\t\|$\)/j '.fnames |
| 354 | let qflist = getqflist() |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 355 | for field in qflist |
| 356 | " File name |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 357 | let item = matchstr(field['text'], '^[^[:space:]]\+') |
| 358 | let fname = matchstr(field['text'], '\t\zs\f\+\ze') |
| 359 | let prototype = matchstr(field['text'], |
| 360 | \ 'function\s\+&\?[^[:space:]]\+\s*(\s*\zs.\{-}\ze\s*)\s*{\?') |
| 361 | let ext_functions[item.'('] = prototype.') - '.fname |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 362 | endfor |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 363 | endif |
| 364 | |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 365 | " All functions |
| 366 | call extend(int_functions, ext_functions) |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 367 | call extend(int_functions, g:php_builtin_functions) |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 368 | |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 369 | " Internal solution for finding constants in current file |
| 370 | let file = getline(1, '$') |
| 371 | call filter(file, 'v:val =~ "define\\s*("') |
| 372 | let jfile = join(file, ' ') |
| 373 | let int_values = split(jfile, 'define\s*(\s*') |
| 374 | let int_constants = {} |
| 375 | for i in int_values |
| 376 | let c_name = matchstr(i, '\(["'']\)\zs[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\ze\1') |
| 377 | " let c_value = matchstr(i, |
| 378 | " \ '\(["'']\)[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*\1\s*,\s*\zs.\{-}\ze\s*)') |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 379 | if c_name != '' |
| 380 | let int_constants[c_name] = '' " c_value |
| 381 | endif |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 382 | endfor |
| 383 | |
| 384 | " Prepare list of constants from tags file |
| 385 | let fnames = join(map(tagfiles(), 'escape(v:val, " \\")')) |
| 386 | let ext_constants = {} |
| 387 | if fnames != '' |
| 388 | exe 'silent! vimgrep /^'.a:base.'.*\td\(\t\|$\)/j '.fnames |
| 389 | let qflist = getqflist() |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 390 | for field in qflist |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 391 | let item = matchstr(field['text'], '^[^[:space:]]\+') |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 392 | let ext_constants[item] = '' |
| 393 | endfor |
| 394 | endif |
| 395 | |
| 396 | " All constants |
| 397 | call extend(int_constants, ext_constants) |
| 398 | " Treat keywords as constants |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 399 | |
| 400 | let all_values = {} |
| 401 | |
| 402 | " One big dictionary of functions |
| 403 | call extend(all_values, int_functions) |
| 404 | |
| 405 | " Add constants |
| 406 | call extend(all_values, int_constants) |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 407 | " Add keywords |
| 408 | call extend(all_values, b:php_keywords) |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 409 | |
| 410 | for m in sort(keys(all_values)) |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 411 | if m =~ '^'.a:base |
| 412 | call add(res, m) |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 413 | endif |
| 414 | endfor |
| 415 | |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 416 | let int_list = res |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 417 | |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 418 | let final_list = [] |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 419 | for i in int_list |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 420 | if has_key(int_functions, i) |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 421 | let final_list += |
| 422 | \ [{'word':i, |
| 423 | \ 'info':i.int_functions[i], |
| 424 | \ 'kind':'f'}] |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 425 | elseif has_key(int_constants, i) |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 426 | let final_list += [{'word':i, 'kind':'d'}] |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 427 | else |
| 428 | let final_list += [{'word':i}] |
| 429 | endif |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 430 | endfor |
| 431 | |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 432 | return final_list |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 433 | |
| 434 | endif |
| 435 | |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 436 | endif |
| 437 | endfunction |
| 438 | |
| 439 | function! phpcomplete#LoadData() " {{{ |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 440 | " Keywords/reserved words, all other special things {{{ |
| 441 | " Later it is possible to add some help to values, or type of |
| 442 | " defined variable |
| 443 | let b:php_keywords = { |
| 444 | \ 'PHP_SELF':'', |
| 445 | \ 'argv':'', |
| 446 | \ 'argc':'', |
| 447 | \ 'GATEWAY_INTERFACE':'', |
| 448 | \ 'SERVER_ADDR':'', |
| 449 | \ 'SERVER_NAME':'', |
| 450 | \ 'SERVER_SOFTWARE':'', |
| 451 | \ 'SERVER_PROTOCOL':'', |
| 452 | \ 'REQUEST_METHOD':'', |
| 453 | \ 'REQUEST_TIME':'', |
| 454 | \ 'QUERY_STRING':'', |
| 455 | \ 'DOCUMENT_ROOT':'', |
| 456 | \ 'HTTP_ACCEPT':'', |
| 457 | \ 'HTTP_ACCEPT_CHARSET':'', |
| 458 | \ 'HTTP_ACCEPT_ENCODING':'', |
| 459 | \ 'HTTP_ACCEPT_LANGUAGE':'', |
| 460 | \ 'HTTP_CONNECTION':'', |
| 461 | \ 'HTTP_POST':'', |
| 462 | \ 'HTTP_REFERER':'', |
| 463 | \ 'HTTP_USER_AGENT':'', |
| 464 | \ 'HTTPS':'', |
| 465 | \ 'REMOTE_ADDR':'', |
| 466 | \ 'REMOTE_HOST':'', |
| 467 | \ 'REMOTE_PORT':'', |
| 468 | \ 'SCRIPT_FILENAME':'', |
| 469 | \ 'SERVER_ADMIN':'', |
| 470 | \ 'SERVER_PORT':'', |
| 471 | \ 'SERVER_SIGNATURE':'', |
| 472 | \ 'PATH_TRANSLATED':'', |
| 473 | \ 'SCRIPT_NAME':'', |
| 474 | \ 'REQUEST_URI':'', |
| 475 | \ 'PHP_AUTH_DIGEST':'', |
| 476 | \ 'PHP_AUTH_USER':'', |
| 477 | \ 'PHP_AUTH_PW':'', |
| 478 | \ 'AUTH_TYPE':'', |
| 479 | \ 'and':'', |
| 480 | \ 'or':'', |
| 481 | \ 'xor':'', |
| 482 | \ '__FILE__':'', |
| 483 | \ 'exception':'', |
| 484 | \ '__LINE__':'', |
| 485 | \ 'as':'', |
| 486 | \ 'break':'', |
| 487 | \ 'case':'', |
| 488 | \ 'class':'', |
| 489 | \ 'const':'', |
| 490 | \ 'continue':'', |
| 491 | \ 'declare':'', |
| 492 | \ 'default':'', |
| 493 | \ 'do':'', |
| 494 | \ 'echo':'', |
| 495 | \ 'else':'', |
| 496 | \ 'elseif':'', |
| 497 | \ 'enddeclare':'', |
| 498 | \ 'endfor':'', |
| 499 | \ 'endforeach':'', |
| 500 | \ 'endif':'', |
| 501 | \ 'endswitch':'', |
| 502 | \ 'endwhile':'', |
| 503 | \ 'extends':'', |
| 504 | \ 'for':'', |
| 505 | \ 'foreach':'', |
| 506 | \ 'function':'', |
| 507 | \ 'global':'', |
| 508 | \ 'if':'', |
| 509 | \ 'new':'', |
| 510 | \ 'static':'', |
| 511 | \ 'switch':'', |
| 512 | \ 'use':'', |
| 513 | \ 'var':'', |
| 514 | \ 'while':'', |
| 515 | \ '__FUNCTION__':'', |
| 516 | \ '__CLASS__':'', |
| 517 | \ '__METHOD__':'', |
| 518 | \ 'final':'', |
| 519 | \ 'php_user_filter':'', |
| 520 | \ 'interface':'', |
| 521 | \ 'implements':'', |
| 522 | \ 'public':'', |
| 523 | \ 'private':'', |
| 524 | \ 'protected':'', |
| 525 | \ 'abstract':'', |
| 526 | \ 'clone':'', |
| 527 | \ 'try':'', |
| 528 | \ 'catch':'', |
| 529 | \ 'throw':'', |
| 530 | \ 'cfunction':'', |
| 531 | \ 'old_function':'', |
| 532 | \ 'this':'', |
| 533 | \ 'PHP_VERSION': '', |
| 534 | \ 'PHP_OS': '', |
| 535 | \ 'PHP_SAPI': '', |
| 536 | \ 'PHP_EOL': '', |
| 537 | \ 'PHP_INT_MAX': '', |
| 538 | \ 'PHP_INT_SIZE': '', |
| 539 | \ 'DEFAULT_INCLUDE_PATH': '', |
| 540 | \ 'PEAR_INSTALL_DIR': '', |
| 541 | \ 'PEAR_EXTENSION_DIR': '', |
| 542 | \ 'PHP_EXTENSION_DIR': '', |
| 543 | \ 'PHP_PREFIX': '', |
| 544 | \ 'PHP_BINDIR': '', |
| 545 | \ 'PHP_LIBDIR': '', |
| 546 | \ 'PHP_DATADIR': '', |
| 547 | \ 'PHP_SYSCONFDIR': '', |
| 548 | \ 'PHP_LOCALSTATEDIR': '', |
| 549 | \ 'PHP_CONFIG_FILE_PATH': '', |
| 550 | \ 'PHP_CONFIG_FILE_SCAN_DIR': '', |
| 551 | \ 'PHP_SHLIB_SUFFIX': '', |
| 552 | \ 'PHP_OUTPUT_HANDLER_START': '', |
| 553 | \ 'PHP_OUTPUT_HANDLER_CONT': '', |
| 554 | \ 'PHP_OUTPUT_HANDLER_END': '', |
| 555 | \ 'E_ERROR': '', |
| 556 | \ 'E_WARNING': '', |
| 557 | \ 'E_PARSE': '', |
| 558 | \ 'E_NOTICE': '', |
| 559 | \ 'E_CORE_ERROR': '', |
| 560 | \ 'E_CORE_WARNING': '', |
| 561 | \ 'E_COMPILE_ERROR': '', |
| 562 | \ 'E_COMPILE_WARNING': '', |
| 563 | \ 'E_USER_ERROR': '', |
| 564 | \ 'E_USER_WARNING': '', |
| 565 | \ 'E_USER_NOTICE': '', |
| 566 | \ 'E_ALL': '', |
| 567 | \ 'E_STRICT': '', |
| 568 | \ '__COMPILER_HALT_OFFSET__': '', |
| 569 | \ 'EXTR_OVERWRITE': '', |
| 570 | \ 'EXTR_SKIP': '', |
| 571 | \ 'EXTR_PREFIX_SAME': '', |
| 572 | \ 'EXTR_PREFIX_ALL': '', |
| 573 | \ 'EXTR_PREFIX_INVALID': '', |
| 574 | \ 'EXTR_PREFIX_IF_EXISTS': '', |
| 575 | \ 'EXTR_IF_EXISTS': '', |
| 576 | \ 'SORT_ASC': '', |
| 577 | \ 'SORT_DESC': '', |
| 578 | \ 'SORT_REGULAR': '', |
| 579 | \ 'SORT_NUMERIC': '', |
| 580 | \ 'SORT_STRING': '', |
| 581 | \ 'CASE_LOWER': '', |
| 582 | \ 'CASE_UPPER': '', |
| 583 | \ 'COUNT_NORMAL': '', |
| 584 | \ 'COUNT_RECURSIVE': '', |
| 585 | \ 'ASSERT_ACTIVE': '', |
| 586 | \ 'ASSERT_CALLBACK': '', |
| 587 | \ 'ASSERT_BAIL': '', |
| 588 | \ 'ASSERT_WARNING': '', |
| 589 | \ 'ASSERT_QUIET_EVAL': '', |
| 590 | \ 'CONNECTION_ABORTED': '', |
| 591 | \ 'CONNECTION_NORMAL': '', |
| 592 | \ 'CONNECTION_TIMEOUT': '', |
| 593 | \ 'INI_USER': '', |
| 594 | \ 'INI_PERDIR': '', |
| 595 | \ 'INI_SYSTEM': '', |
| 596 | \ 'INI_ALL': '', |
| 597 | \ 'M_E': '', |
| 598 | \ 'M_LOG2E': '', |
| 599 | \ 'M_LOG10E': '', |
| 600 | \ 'M_LN2': '', |
| 601 | \ 'M_LN10': '', |
| 602 | \ 'M_PI': '', |
| 603 | \ 'M_PI_2': '', |
| 604 | \ 'M_PI_4': '', |
| 605 | \ 'M_1_PI': '', |
| 606 | \ 'M_2_PI': '', |
| 607 | \ 'M_2_SQRTPI': '', |
| 608 | \ 'M_SQRT2': '', |
| 609 | \ 'M_SQRT1_2': '', |
| 610 | \ 'CRYPT_SALT_LENGTH': '', |
| 611 | \ 'CRYPT_STD_DES': '', |
| 612 | \ 'CRYPT_EXT_DES': '', |
| 613 | \ 'CRYPT_MD5': '', |
| 614 | \ 'CRYPT_BLOWFISH': '', |
| 615 | \ 'DIRECTORY_SEPARATOR': '', |
| 616 | \ 'SEEK_SET': '', |
| 617 | \ 'SEEK_CUR': '', |
| 618 | \ 'SEEK_END': '', |
| 619 | \ 'LOCK_SH': '', |
| 620 | \ 'LOCK_EX': '', |
| 621 | \ 'LOCK_UN': '', |
| 622 | \ 'LOCK_NB': '', |
| 623 | \ 'HTML_SPECIALCHARS': '', |
| 624 | \ 'HTML_ENTITIES': '', |
| 625 | \ 'ENT_COMPAT': '', |
| 626 | \ 'ENT_QUOTES': '', |
| 627 | \ 'ENT_NOQUOTES': '', |
| 628 | \ 'INFO_GENERAL': '', |
| 629 | \ 'INFO_CREDITS': '', |
| 630 | \ 'INFO_CONFIGURATION': '', |
| 631 | \ 'INFO_MODULES': '', |
| 632 | \ 'INFO_ENVIRONMENT': '', |
| 633 | \ 'INFO_VARIABLES': '', |
| 634 | \ 'INFO_LICENSE': '', |
| 635 | \ 'INFO_ALL': '', |
| 636 | \ 'CREDITS_GROUP': '', |
| 637 | \ 'CREDITS_GENERAL': '', |
| 638 | \ 'CREDITS_SAPI': '', |
| 639 | \ 'CREDITS_MODULES': '', |
| 640 | \ 'CREDITS_DOCS': '', |
| 641 | \ 'CREDITS_FULLPAGE': '', |
| 642 | \ 'CREDITS_QA': '', |
| 643 | \ 'CREDITS_ALL': '', |
| 644 | \ 'STR_PAD_LEFT': '', |
| 645 | \ 'STR_PAD_RIGHT': '', |
| 646 | \ 'STR_PAD_BOTH': '', |
| 647 | \ 'PATHINFO_DIRNAME': '', |
| 648 | \ 'PATHINFO_BASENAME': '', |
| 649 | \ 'PATHINFO_EXTENSION': '', |
| 650 | \ 'PATH_SEPARATOR': '', |
| 651 | \ 'CHAR_MAX': '', |
| 652 | \ 'LC_CTYPE': '', |
| 653 | \ 'LC_NUMERIC': '', |
| 654 | \ 'LC_TIME': '', |
| 655 | \ 'LC_COLLATE': '', |
| 656 | \ 'LC_MONETARY': '', |
| 657 | \ 'LC_ALL': '', |
| 658 | \ 'LC_MESSAGES': '', |
| 659 | \ 'ABDAY_1': '', |
| 660 | \ 'ABDAY_2': '', |
| 661 | \ 'ABDAY_3': '', |
| 662 | \ 'ABDAY_4': '', |
| 663 | \ 'ABDAY_5': '', |
| 664 | \ 'ABDAY_6': '', |
| 665 | \ 'ABDAY_7': '', |
| 666 | \ 'DAY_1': '', |
| 667 | \ 'DAY_2': '', |
| 668 | \ 'DAY_3': '', |
| 669 | \ 'DAY_4': '', |
| 670 | \ 'DAY_5': '', |
| 671 | \ 'DAY_6': '', |
| 672 | \ 'DAY_7': '', |
| 673 | \ 'ABMON_1': '', |
| 674 | \ 'ABMON_2': '', |
| 675 | \ 'ABMON_3': '', |
| 676 | \ 'ABMON_4': '', |
| 677 | \ 'ABMON_5': '', |
| 678 | \ 'ABMON_6': '', |
| 679 | \ 'ABMON_7': '', |
| 680 | \ 'ABMON_8': '', |
| 681 | \ 'ABMON_9': '', |
| 682 | \ 'ABMON_10': '', |
| 683 | \ 'ABMON_11': '', |
| 684 | \ 'ABMON_12': '', |
| 685 | \ 'MON_1': '', |
| 686 | \ 'MON_2': '', |
| 687 | \ 'MON_3': '', |
| 688 | \ 'MON_4': '', |
| 689 | \ 'MON_5': '', |
| 690 | \ 'MON_6': '', |
| 691 | \ 'MON_7': '', |
| 692 | \ 'MON_8': '', |
| 693 | \ 'MON_9': '', |
| 694 | \ 'MON_10': '', |
| 695 | \ 'MON_11': '', |
| 696 | \ 'MON_12': '', |
| 697 | \ 'AM_STR': '', |
| 698 | \ 'PM_STR': '', |
| 699 | \ 'D_T_FMT': '', |
| 700 | \ 'D_FMT': '', |
| 701 | \ 'T_FMT': '', |
| 702 | \ 'T_FMT_AMPM': '', |
| 703 | \ 'ERA': '', |
| 704 | \ 'ERA_YEAR': '', |
| 705 | \ 'ERA_D_T_FMT': '', |
| 706 | \ 'ERA_D_FMT': '', |
| 707 | \ 'ERA_T_FMT': '', |
| 708 | \ 'ALT_DIGITS': '', |
| 709 | \ 'INT_CURR_SYMBOL': '', |
| 710 | \ 'CURRENCY_SYMBOL': '', |
| 711 | \ 'CRNCYSTR': '', |
| 712 | \ 'MON_DECIMAL_POINT': '', |
| 713 | \ 'MON_THOUSANDS_SEP': '', |
| 714 | \ 'MON_GROUPING': '', |
| 715 | \ 'POSITIVE_SIGN': '', |
| 716 | \ 'NEGATIVE_SIGN': '', |
| 717 | \ 'INT_FRAC_DIGITS': '', |
| 718 | \ 'FRAC_DIGITS': '', |
| 719 | \ 'P_CS_PRECEDES': '', |
| 720 | \ 'P_SEP_BY_SPACE': '', |
| 721 | \ 'N_CS_PRECEDES': '', |
| 722 | \ 'N_SEP_BY_SPACE': '', |
| 723 | \ 'P_SIGN_POSN': '', |
| 724 | \ 'N_SIGN_POSN': '', |
| 725 | \ 'DECIMAL_POINT': '', |
| 726 | \ 'RADIXCHAR': '', |
| 727 | \ 'THOUSANDS_SEP': '', |
| 728 | \ 'THOUSEP': '', |
| 729 | \ 'GROUPING': '', |
| 730 | \ 'YESEXPR': '', |
| 731 | \ 'NOEXPR': '', |
| 732 | \ 'YESSTR': '', |
| 733 | \ 'NOSTR': '', |
| 734 | \ 'CODESET': '', |
| 735 | \ 'LOG_EMERG': '', |
| 736 | \ 'LOG_ALERT': '', |
| 737 | \ 'LOG_CRIT': '', |
| 738 | \ 'LOG_ERR': '', |
| 739 | \ 'LOG_WARNING': '', |
| 740 | \ 'LOG_NOTICE': '', |
| 741 | \ 'LOG_INFO': '', |
| 742 | \ 'LOG_DEBUG': '', |
| 743 | \ 'LOG_KERN': '', |
| 744 | \ 'LOG_USER': '', |
| 745 | \ 'LOG_MAIL': '', |
| 746 | \ 'LOG_DAEMON': '', |
| 747 | \ 'LOG_AUTH': '', |
| 748 | \ 'LOG_SYSLOG': '', |
| 749 | \ 'LOG_LPR': '', |
| 750 | \ 'LOG_NEWS': '', |
| 751 | \ 'LOG_UUCP': '', |
| 752 | \ 'LOG_CRON': '', |
| 753 | \ 'LOG_AUTHPRIV': '', |
| 754 | \ 'LOG_LOCAL0': '', |
| 755 | \ 'LOG_LOCAL1': '', |
| 756 | \ 'LOG_LOCAL2': '', |
| 757 | \ 'LOG_LOCAL3': '', |
| 758 | \ 'LOG_LOCAL4': '', |
| 759 | \ 'LOG_LOCAL5': '', |
| 760 | \ 'LOG_LOCAL6': '', |
| 761 | \ 'LOG_LOCAL7': '', |
| 762 | \ 'LOG_PID': '', |
| 763 | \ 'LOG_CONS': '', |
| 764 | \ 'LOG_ODELAY': '', |
| 765 | \ 'LOG_NDELAY': '', |
| 766 | \ 'LOG_NOWAIT': '', |
| 767 | \ 'LOG_PERROR': '', |
| 768 | \ } |
| 769 | " }}} |
| 770 | " PHP builtin functions {{{ |
| 771 | " To create from scratch list of functions: |
| 772 | " 1. Download multi html file PHP documentation |
| 773 | " 2. run for i in `ls | grep "^function\."`; do grep -A4 Description $i >> funcs; done |
| 774 | " 3. Open funcs in Vim and |
| 775 | " a) g/Description/normal! 5J |
| 776 | " b) remove all html tags (it will require few s/// and g//) |
| 777 | " c) :%s/^\([^[:space:]]\+\) \([^[:space:]]\+\) ( \(.*\))/\\ '\2(': '\3| \1', |
| 778 | " This will create Dictionary |
| 779 | " d) remove all /^[^\\] lines |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 780 | let g:php_builtin_functions = { |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 781 | \ 'abs(': 'mixed number | number', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 782 | \ 'acosh(': 'float arg | float', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 783 | \ 'acos(': 'float arg | float', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 784 | \ 'addcslashes(': 'string str, string charlist | string', |
| 785 | \ 'addslashes(': 'string str | string', |
| 786 | \ 'aggregate(': 'object object, string class_name | void', |
| 787 | \ 'aggregate_info(': 'object object | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 788 | \ 'aggregate_methods_by_list(': 'object object, string class_name, array methods_list [, bool exclude] | void', |
| 789 | \ 'aggregate_methods_by_regexp(': 'object object, string class_name, string regexp [, bool exclude] | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 790 | \ 'aggregate_methods(': 'object object, string class_name | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 791 | \ 'aggregate_properties_by_list(': 'object object, string class_name, array properties_list [, bool exclude] | void', |
| 792 | \ 'aggregate_properties_by_regexp(': 'object object, string class_name, string regexp [, bool exclude] | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 793 | \ 'aggregate_properties(': 'object object, string class_name | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 794 | \ 'apache_child_terminate(': 'void | bool', |
| 795 | \ 'apache_getenv(': 'string variable [, bool walk_to_top] | string', |
| 796 | \ 'apache_get_modules(': 'void | array', |
| 797 | \ 'apache_get_version(': 'void | string', |
| 798 | \ 'apache_lookup_uri(': 'string filename | object', |
| 799 | \ 'apache_note(': 'string note_name [, string note_value] | string', |
| 800 | \ 'apache_request_headers(': 'void | array', |
| 801 | \ 'apache_reset_timeout(': 'void | bool', |
| 802 | \ 'apache_response_headers(': 'void | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 803 | \ 'apache_setenv(': 'string variable, string value [, bool walk_to_top] | bool', |
| 804 | \ 'apc_cache_info(': '[string cache_type] | array', |
| 805 | \ 'apc_clear_cache(': '[string cache_type] | bool', |
| 806 | \ 'apc_define_constants(': 'string key, array constants [, bool case_sensitive] | bool', |
| 807 | \ 'apc_delete(': 'string key | bool', |
| 808 | \ 'apc_fetch(': 'string key | mixed', |
| 809 | \ 'apc_load_constants(': 'string key [, bool case_sensitive] | bool', |
| 810 | \ 'apc_sma_info(': 'void | array', |
| 811 | \ 'apc_store(': 'string key, mixed var [, int ttl] | bool', |
| 812 | \ 'apd_breakpoint(': 'int debug_level | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 813 | \ 'apd_callstack(': 'void | array', |
| 814 | \ 'apd_clunk(': 'string warning [, string delimiter] | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 815 | \ 'apd_continue(': 'int debug_level | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 816 | \ 'apd_croak(': 'string warning [, string delimiter] | void', |
| 817 | \ 'apd_dump_function_table(': 'void | void', |
| 818 | \ 'apd_dump_persistent_resources(': 'void | array', |
| 819 | \ 'apd_dump_regular_resources(': 'void | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 820 | \ 'apd_echo(': 'string output | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 821 | \ 'apd_get_active_symbols(': ' | array', |
| 822 | \ 'apd_set_pprof_trace(': '[string dump_directory] | void', |
| 823 | \ 'apd_set_session(': 'int debug_level | void', |
| 824 | \ 'apd_set_session_trace(': 'int debug_level [, string dump_directory] | void', |
| 825 | \ 'apd_set_socket_session_trace(': 'string ip_address_or_unix_socket_file, int socket_type, int port, int debug_level | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 826 | \ 'array_change_key_case(': 'array input [, int case] | array', |
| 827 | \ 'array_chunk(': 'array input, int size [, bool preserve_keys] | array', |
| 828 | \ 'array_combine(': 'array keys, array values | array', |
| 829 | \ 'array_count_values(': 'array input | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 830 | \ 'array_diff_assoc(': 'array array1, array array2 [, array ...] | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 831 | \ 'array_diff(': 'array array1, array array2 [, array ...] | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 832 | \ 'array_diff_key(': 'array array1, array array2 [, array ...] | array', |
| 833 | \ 'array_diff_uassoc(': 'array array1, array array2 [, array ..., callback key_compare_func] | array', |
| 834 | \ 'array_diff_ukey(': 'array array1, array array2 [, array ..., callback key_compare_func] | array', |
| 835 | \ 'array_fill(': 'int start_index, int num, mixed value | array', |
| 836 | \ 'array_filter(': 'array input [, callback callback] | array', |
| 837 | \ 'array_flip(': 'array trans | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 838 | \ 'array(': '[mixed ...] | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 839 | \ 'array_intersect_assoc(': 'array array1, array array2 [, array ...] | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 840 | \ 'array_intersect(': 'array array1, array array2 [, array ...] | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 841 | \ 'array_intersect_key(': 'array array1, array array2 [, array ...] | array', |
| 842 | \ 'array_intersect_uassoc(': 'array array1, array array2 [, array ..., callback key_compare_func] | array', |
| 843 | \ 'array_intersect_ukey(': 'array array1, array array2 [, array ..., callback key_compare_func] | array', |
| 844 | \ 'array_key_exists(': 'mixed key, array search | bool', |
| 845 | \ 'array_keys(': 'array input [, mixed search_value [, bool strict]] | array', |
| 846 | \ 'array_map(': 'callback callback, array arr1 [, array ...] | array', |
| 847 | \ 'array_merge(': 'array array1 [, array array2 [, array ...]] | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 848 | \ 'array_merge_recursive(': 'array array1 [, array ...] | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 849 | \ 'array_multisort(': 'array ar1 [, mixed arg [, mixed ... [, array ...]]] | bool', |
| 850 | \ 'array_pad(': 'array input, int pad_size, mixed pad_value | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 851 | \ 'array_pop(': 'array &array | mixed', |
| 852 | \ 'array_product(': 'array array | number', |
| 853 | \ 'array_push(': 'array &array, mixed var [, mixed ...] | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 854 | \ 'array_rand(': 'array input [, int num_req] | mixed', |
| 855 | \ 'array_reduce(': 'array input, callback function [, int initial] | mixed', |
| 856 | \ 'array_reverse(': 'array array [, bool preserve_keys] | array', |
| 857 | \ 'array_search(': 'mixed needle, array haystack [, bool strict] | mixed', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 858 | \ 'array_shift(': 'array &array | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 859 | \ 'array_slice(': 'array array, int offset [, int length [, bool preserve_keys]] | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 860 | \ 'array_splice(': 'array &input, int offset [, int length [, array replacement]] | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 861 | \ 'array_sum(': 'array array | number', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 862 | \ 'array_udiff_assoc(': 'array array1, array array2 [, array ..., callback data_compare_func] | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 863 | \ 'array_udiff(': 'array array1, array array2 [, array ..., callback data_compare_func] | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 864 | \ 'array_udiff_uassoc(': 'array array1, array array2 [, array ..., callback data_compare_func, callback key_compare_func] | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 865 | \ 'array_uintersect_assoc(': 'array array1, array array2 [, array ..., callback data_compare_func] | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 866 | \ 'array_uintersect(': 'array array1, array array2 [, array ..., callback data_compare_func] | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 867 | \ 'array_uintersect_uassoc(': 'array array1, array array2 [, array ..., callback data_compare_func, callback key_compare_func] | array', |
| 868 | \ 'array_unique(': 'array array | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 869 | \ 'array_unshift(': 'array &array, mixed var [, mixed ...] | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 870 | \ 'array_values(': 'array input | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 871 | \ 'array_walk(': 'array &array, callback funcname [, mixed userdata] | bool', |
| 872 | \ 'array_walk_recursive(': 'array &input, callback funcname [, mixed userdata] | bool', |
| 873 | \ 'arsort(': 'array &array [, int sort_flags] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 874 | \ 'ascii2ebcdic(': 'string ascii_str | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 875 | \ 'asinh(': 'float arg | float', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 876 | \ 'asin(': 'float arg | float', |
| 877 | \ 'asort(': 'array &array [, int sort_flags] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 878 | \ 'aspell_check(': 'int dictionary_link, string word | bool', |
| 879 | \ 'aspell_check_raw(': 'int dictionary_link, string word | bool', |
| 880 | \ 'aspell_new(': 'string master [, string personal] | int', |
| 881 | \ 'aspell_suggest(': 'int dictionary_link, string word | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 882 | \ 'assert(': 'mixed assertion | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 883 | \ 'assert_options(': 'int what [, mixed value] | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 884 | \ 'atan2(': 'float y, float x | float', |
| 885 | \ 'atanh(': 'float arg | float', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 886 | \ 'atan(': 'float arg | float', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 887 | \ 'base64_decode(': 'string encoded_data | string', |
| 888 | \ 'base64_encode(': 'string data | string', |
| 889 | \ 'base_convert(': 'string number, int frombase, int tobase | string', |
| 890 | \ 'basename(': 'string path [, string suffix] | string', |
| 891 | \ 'bcadd(': 'string left_operand, string right_operand [, int scale] | string', |
| 892 | \ 'bccomp(': 'string left_operand, string right_operand [, int scale] | int', |
| 893 | \ 'bcdiv(': 'string left_operand, string right_operand [, int scale] | string', |
| 894 | \ 'bcmod(': 'string left_operand, string modulus | string', |
| 895 | \ 'bcmul(': 'string left_operand, string right_operand [, int scale] | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 896 | \ 'bcompiler_load_exe(': 'string filename | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 897 | \ 'bcompiler_load(': 'string filename | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 898 | \ 'bcompiler_parse_class(': 'string class, string callback | bool', |
| 899 | \ 'bcompiler_read(': 'resource filehandle | bool', |
| 900 | \ 'bcompiler_write_class(': 'resource filehandle, string className [, string extends] | bool', |
| 901 | \ 'bcompiler_write_constant(': 'resource filehandle, string constantName | bool', |
| 902 | \ 'bcompiler_write_exe_footer(': 'resource filehandle, int startpos | bool', |
| 903 | \ 'bcompiler_write_file(': 'resource filehandle, string filename | bool', |
| 904 | \ 'bcompiler_write_footer(': 'resource filehandle | bool', |
| 905 | \ 'bcompiler_write_function(': 'resource filehandle, string functionName | bool', |
| 906 | \ 'bcompiler_write_functions_from_file(': 'resource filehandle, string fileName | bool', |
| 907 | \ 'bcompiler_write_header(': 'resource filehandle [, string write_ver] | bool', |
| 908 | \ 'bcpow(': 'string x, string y [, int scale] | string', |
| 909 | \ 'bcpowmod(': 'string x, string y, string modulus [, int scale] | string', |
| 910 | \ 'bcscale(': 'int scale | bool', |
| 911 | \ 'bcsqrt(': 'string operand [, int scale] | string', |
| 912 | \ 'bcsub(': 'string left_operand, string right_operand [, int scale] | string', |
| 913 | \ 'bin2hex(': 'string str | string', |
| 914 | \ 'bindec(': 'string binary_string | number', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 915 | \ 'bind_textdomain_codeset(': 'string domain, string codeset | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 916 | \ 'bindtextdomain(': 'string domain, string directory | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 917 | \ 'bzclose(': 'resource bz | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 918 | \ 'bzcompress(': 'string source [, int blocksize [, int workfactor]] | mixed', |
| 919 | \ 'bzdecompress(': 'string source [, int small] | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 920 | \ 'bzerrno(': 'resource bz | int', |
| 921 | \ 'bzerror(': 'resource bz | array', |
| 922 | \ 'bzerrstr(': 'resource bz | string', |
| 923 | \ 'bzflush(': 'resource bz | int', |
| 924 | \ 'bzopen(': 'string filename, string mode | resource', |
| 925 | \ 'bzread(': 'resource bz [, int length] | string', |
| 926 | \ 'bzwrite(': 'resource bz, string data [, int length] | int', |
| 927 | \ 'cal_days_in_month(': 'int calendar, int month, int year | int', |
| 928 | \ 'cal_from_jd(': 'int jd, int calendar | array', |
| 929 | \ 'cal_info(': '[int calendar] | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 930 | \ 'call_user_func_array(': 'callback function, array param_arr | mixed', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 931 | \ 'call_user_func(': 'callback function [, mixed parameter [, mixed ...]] | mixed', |
| 932 | \ 'call_user_method_array(': 'string method_name, object &obj, array paramarr | mixed', |
| 933 | \ 'call_user_method(': 'string method_name, object &obj [, mixed parameter [, mixed ...]] | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 934 | \ 'cal_to_jd(': 'int calendar, int month, int day, int year | int', |
| 935 | \ 'ccvs_add(': 'string session, string invoice, string argtype, string argval | string', |
| 936 | \ 'ccvs_auth(': 'string session, string invoice | string', |
| 937 | \ 'ccvs_command(': 'string session, string type, string argval | string', |
| 938 | \ 'ccvs_count(': 'string session, string type | int', |
| 939 | \ 'ccvs_delete(': 'string session, string invoice | string', |
| 940 | \ 'ccvs_done(': 'string sess | string', |
| 941 | \ 'ccvs_init(': 'string name | string', |
| 942 | \ 'ccvs_lookup(': 'string session, string invoice, int inum | string', |
| 943 | \ 'ccvs_new(': 'string session, string invoice | string', |
| 944 | \ 'ccvs_report(': 'string session, string type | string', |
| 945 | \ 'ccvs_return(': 'string session, string invoice | string', |
| 946 | \ 'ccvs_reverse(': 'string session, string invoice | string', |
| 947 | \ 'ccvs_sale(': 'string session, string invoice | string', |
| 948 | \ 'ccvs_status(': 'string session, string invoice | string', |
| 949 | \ 'ccvs_textvalue(': 'string session | string', |
| 950 | \ 'ccvs_void(': 'string session, string invoice | string', |
| 951 | \ 'ceil(': 'float value | float', |
| 952 | \ 'chdir(': 'string directory | bool', |
| 953 | \ 'checkdate(': 'int month, int day, int year | bool', |
| 954 | \ 'checkdnsrr(': 'string host [, string type] | int', |
| 955 | \ 'chgrp(': 'string filename, mixed group | bool', |
| 956 | \ 'chmod(': 'string filename, int mode | bool', |
| 957 | \ 'chown(': 'string filename, mixed user | bool', |
| 958 | \ 'chr(': 'int ascii | string', |
| 959 | \ 'chroot(': 'string directory | bool', |
| 960 | \ 'chunk_split(': 'string body [, int chunklen [, string end]] | string', |
| 961 | \ 'class_exists(': 'string class_name [, bool autoload] | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 962 | \ 'class_implements(': 'mixed class [, bool autoload] | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 963 | \ 'classkit_import(': 'string filename | array', |
| 964 | \ 'classkit_method_add(': 'string classname, string methodname, string args, string code [, int flags] | bool', |
| 965 | \ 'classkit_method_copy(': 'string dClass, string dMethod, string sClass [, string sMethod] | bool', |
| 966 | \ 'classkit_method_redefine(': 'string classname, string methodname, string args, string code [, int flags] | bool', |
| 967 | \ 'classkit_method_remove(': 'string classname, string methodname | bool', |
| 968 | \ 'classkit_method_rename(': 'string classname, string methodname, string newname | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 969 | \ 'class_parents(': 'mixed class [, bool autoload] | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 970 | \ 'clearstatcache(': 'void | void', |
| 971 | \ 'closedir(': 'resource dir_handle | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 972 | \ 'closelog(': 'void | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 973 | \ 'com_addref(': 'void | void', |
| 974 | \ 'com_create_guid(': 'void | string', |
| 975 | \ 'com_event_sink(': 'variant comobject, object sinkobject [, mixed sinkinterface] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 976 | \ 'com_get_active_object(': 'string progid [, int code_page] | variant', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 977 | \ 'com_get(': 'resource com_object, string property | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 978 | \ 'com_invoke(': 'resource com_object, string function_name [, mixed function_parameters] | mixed', |
| 979 | \ 'com_isenum(': 'variant com_module | bool', |
| 980 | \ 'com_load(': 'string module_name [, string server_name [, int codepage]] | resource', |
| 981 | \ 'com_load_typelib(': 'string typelib_name [, bool case_insensitive] | bool', |
| 982 | \ 'com_message_pump(': '[int timeoutms] | bool', |
| 983 | \ 'compact(': 'mixed varname [, mixed ...] | array', |
| 984 | \ 'com_print_typeinfo(': 'object comobject [, string dispinterface [, bool wantsink]] | bool', |
| 985 | \ 'com_release(': 'void | void', |
| 986 | \ 'com_set(': 'resource com_object, string property, mixed value | void', |
| 987 | \ 'connection_aborted(': 'void | int', |
| 988 | \ 'connection_status(': 'void | int', |
| 989 | \ 'connection_timeout(': 'void | bool', |
| 990 | \ 'constant(': 'string name | mixed', |
| 991 | \ 'convert_cyr_string(': 'string str, string from, string to | string', |
| 992 | \ 'convert_uudecode(': 'string data | string', |
| 993 | \ 'convert_uuencode(': 'string data | string', |
| 994 | \ 'copy(': 'string source, string dest | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 995 | \ 'cosh(': 'float arg | float', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 996 | \ 'cos(': 'float arg | float', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 997 | \ 'count_chars(': 'string string [, int mode] | mixed', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 998 | \ 'count(': 'mixed var [, int mode] | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 999 | \ 'cpdf_add_annotation(': 'int pdf_document, float llx, float lly, float urx, float ury, string title, string content [, int mode] | bool', |
| 1000 | \ 'cpdf_add_outline(': 'int pdf_document, int lastoutline, int sublevel, int open, int pagenr, string text | int', |
| 1001 | \ 'cpdf_arc(': 'int pdf_document, float x_coor, float y_coor, float radius, float start, float end [, int mode] | bool', |
| 1002 | \ 'cpdf_begin_text(': 'int pdf_document | bool', |
| 1003 | \ 'cpdf_circle(': 'int pdf_document, float x_coor, float y_coor, float radius [, int mode] | bool', |
| 1004 | \ 'cpdf_clip(': 'int pdf_document | bool', |
| 1005 | \ 'cpdf_close(': 'int pdf_document | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1006 | \ 'cpdf_closepath_fill_stroke(': 'int pdf_document | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1007 | \ 'cpdf_closepath(': 'int pdf_document | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1008 | \ 'cpdf_closepath_stroke(': 'int pdf_document | bool', |
| 1009 | \ 'cpdf_continue_text(': 'int pdf_document, string text | bool', |
| 1010 | \ 'cpdf_curveto(': 'int pdf_document, float x1, float y1, float x2, float y2, float x3, float y3 [, int mode] | bool', |
| 1011 | \ 'cpdf_end_text(': 'int pdf_document | bool', |
| 1012 | \ 'cpdf_fill(': 'int pdf_document | bool', |
| 1013 | \ 'cpdf_fill_stroke(': 'int pdf_document | bool', |
| 1014 | \ 'cpdf_finalize(': 'int pdf_document | bool', |
| 1015 | \ 'cpdf_finalize_page(': 'int pdf_document, int page_number | bool', |
| 1016 | \ 'cpdf_global_set_document_limits(': 'int maxpages, int maxfonts, int maximages, int maxannotations, int maxobjects | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1017 | \ 'cpdf_import_jpeg(': 'int pdf_document, string file_name, float x_coor, float y_coor, float angle, float width, float height, float x_scale, float y_scale, int gsave [, int mode] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1018 | \ 'cpdf_lineto(': 'int pdf_document, float x_coor, float y_coor [, int mode] | bool', |
| 1019 | \ 'cpdf_moveto(': 'int pdf_document, float x_coor, float y_coor [, int mode] | bool', |
| 1020 | \ 'cpdf_newpath(': 'int pdf_document | bool', |
| 1021 | \ 'cpdf_open(': 'int compression [, string filename [, array doc_limits]] | int', |
| 1022 | \ 'cpdf_output_buffer(': 'int pdf_document | bool', |
| 1023 | \ 'cpdf_page_init(': 'int pdf_document, int page_number, int orientation, float height, float width [, float unit] | bool', |
| 1024 | \ 'cpdf_place_inline_image(': 'int pdf_document, int image, float x_coor, float y_coor, float angle, float width, float height, int gsave [, int mode] | bool', |
| 1025 | \ 'cpdf_rect(': 'int pdf_document, float x_coor, float y_coor, float width, float height [, int mode] | bool', |
| 1026 | \ 'cpdf_restore(': 'int pdf_document | bool', |
| 1027 | \ 'cpdf_rlineto(': 'int pdf_document, float x_coor, float y_coor [, int mode] | bool', |
| 1028 | \ 'cpdf_rmoveto(': 'int pdf_document, float x_coor, float y_coor [, int mode] | bool', |
| 1029 | \ 'cpdf_rotate(': 'int pdf_document, float angle | bool', |
| 1030 | \ 'cpdf_rotate_text(': 'int pdfdoc, float angle | bool', |
| 1031 | \ 'cpdf_save(': 'int pdf_document | bool', |
| 1032 | \ 'cpdf_save_to_file(': 'int pdf_document, string filename | bool', |
| 1033 | \ 'cpdf_scale(': 'int pdf_document, float x_scale, float y_scale | bool', |
| 1034 | \ 'cpdf_set_action_url(': 'int pdfdoc, float xll, float yll, float xur, float xur, string url [, int mode] | bool', |
| 1035 | \ 'cpdf_set_char_spacing(': 'int pdf_document, float space | bool', |
| 1036 | \ 'cpdf_set_creator(': 'int pdf_document, string creator | bool', |
| 1037 | \ 'cpdf_set_current_page(': 'int pdf_document, int page_number | bool', |
| 1038 | \ 'cpdf_setdash(': 'int pdf_document, float white, float black | bool', |
| 1039 | \ 'cpdf_setflat(': 'int pdf_document, float value | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1040 | \ 'cpdf_set_font_directories(': 'int pdfdoc, string pfmdir, string pfbdir | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1041 | \ 'cpdf_set_font(': 'int pdf_document, string font_name, float size, string encoding | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1042 | \ 'cpdf_set_font_map_file(': 'int pdfdoc, string filename | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1043 | \ 'cpdf_setgray_fill(': 'int pdf_document, float value | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1044 | \ 'cpdf_setgray(': 'int pdf_document, float gray_value | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1045 | \ 'cpdf_setgray_stroke(': 'int pdf_document, float gray_value | bool', |
| 1046 | \ 'cpdf_set_horiz_scaling(': 'int pdf_document, float scale | bool', |
| 1047 | \ 'cpdf_set_keywords(': 'int pdf_document, string keywords | bool', |
| 1048 | \ 'cpdf_set_leading(': 'int pdf_document, float distance | bool', |
| 1049 | \ 'cpdf_setlinecap(': 'int pdf_document, int value | bool', |
| 1050 | \ 'cpdf_setlinejoin(': 'int pdf_document, int value | bool', |
| 1051 | \ 'cpdf_setlinewidth(': 'int pdf_document, float width | bool', |
| 1052 | \ 'cpdf_setmiterlimit(': 'int pdf_document, float value | bool', |
| 1053 | \ 'cpdf_set_page_animation(': 'int pdf_document, int transition, float duration, float direction, int orientation, int inout | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1054 | \ 'cpdf_setrgbcolor_fill(': 'int pdf_document, float red_value, float green_value, float blue_value | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1055 | \ 'cpdf_setrgbcolor(': 'int pdf_document, float red_value, float green_value, float blue_value | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1056 | \ 'cpdf_setrgbcolor_stroke(': 'int pdf_document, float red_value, float green_value, float blue_value | bool', |
| 1057 | \ 'cpdf_set_subject(': 'int pdf_document, string subject | bool', |
| 1058 | \ 'cpdf_set_text_matrix(': 'int pdf_document, array matrix | bool', |
| 1059 | \ 'cpdf_set_text_pos(': 'int pdf_document, float x_coor, float y_coor [, int mode] | bool', |
| 1060 | \ 'cpdf_set_text_rendering(': 'int pdf_document, int rendermode | bool', |
| 1061 | \ 'cpdf_set_text_rise(': 'int pdf_document, float value | bool', |
| 1062 | \ 'cpdf_set_title(': 'int pdf_document, string title | bool', |
| 1063 | \ 'cpdf_set_viewer_preferences(': 'int pdfdoc, array preferences | bool', |
| 1064 | \ 'cpdf_set_word_spacing(': 'int pdf_document, float space | bool', |
| 1065 | \ 'cpdf_show(': 'int pdf_document, string text | bool', |
| 1066 | \ 'cpdf_show_xy(': 'int pdf_document, string text, float x_coor, float y_coor [, int mode] | bool', |
| 1067 | \ 'cpdf_stringwidth(': 'int pdf_document, string text | float', |
| 1068 | \ 'cpdf_stroke(': 'int pdf_document | bool', |
| 1069 | \ 'cpdf_text(': 'int pdf_document, string text [, float x_coor, float y_coor [, int mode [, float orientation [, int alignmode]]]] | bool', |
| 1070 | \ 'cpdf_translate(': 'int pdf_document, float x_coor, float y_coor | bool', |
| 1071 | \ 'crack_check(': 'resource dictionary, string password | bool', |
| 1072 | \ 'crack_closedict(': '[resource dictionary] | bool', |
| 1073 | \ 'crack_getlastmessage(': 'void | string', |
| 1074 | \ 'crack_opendict(': 'string dictionary | resource', |
| 1075 | \ 'crc32(': 'string str | int', |
| 1076 | \ 'create_function(': 'string args, string code | string', |
| 1077 | \ 'crypt(': 'string str [, string salt] | string', |
| 1078 | \ 'ctype_alnum(': 'string text | bool', |
| 1079 | \ 'ctype_alpha(': 'string text | bool', |
| 1080 | \ 'ctype_cntrl(': 'string text | bool', |
| 1081 | \ 'ctype_digit(': 'string text | bool', |
| 1082 | \ 'ctype_graph(': 'string text | bool', |
| 1083 | \ 'ctype_lower(': 'string text | bool', |
| 1084 | \ 'ctype_print(': 'string text | bool', |
| 1085 | \ 'ctype_punct(': 'string text | bool', |
| 1086 | \ 'ctype_space(': 'string text | bool', |
| 1087 | \ 'ctype_upper(': 'string text | bool', |
| 1088 | \ 'ctype_xdigit(': 'string text | bool', |
| 1089 | \ 'curl_close(': 'resource ch | void', |
| 1090 | \ 'curl_copy_handle(': 'resource ch | resource', |
| 1091 | \ 'curl_errno(': 'resource ch | int', |
| 1092 | \ 'curl_error(': 'resource ch | string', |
| 1093 | \ 'curl_exec(': 'resource ch | mixed', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1094 | \ 'curl_getinfo(': 'resource ch [, int opt] | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1095 | \ 'curl_init(': '[string url] | resource', |
| 1096 | \ 'curl_multi_add_handle(': 'resource mh, resource ch | int', |
| 1097 | \ 'curl_multi_close(': 'resource mh | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1098 | \ 'curl_multi_exec(': 'resource mh, int &still_running | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1099 | \ 'curl_multi_getcontent(': 'resource ch | string', |
| 1100 | \ 'curl_multi_info_read(': 'resource mh | array', |
| 1101 | \ 'curl_multi_init(': 'void | resource', |
| 1102 | \ 'curl_multi_remove_handle(': 'resource mh, resource ch | int', |
| 1103 | \ 'curl_multi_select(': 'resource mh [, float timeout] | int', |
| 1104 | \ 'curl_setopt(': 'resource ch, int option, mixed value | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1105 | \ 'curl_version(': '[int version] | array', |
| 1106 | \ 'current(': 'array &array | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1107 | \ 'cybercash_base64_decode(': 'string inbuff | string', |
| 1108 | \ 'cybercash_base64_encode(': 'string inbuff | string', |
| 1109 | \ 'cybercash_decr(': 'string wmk, string sk, string inbuff | array', |
| 1110 | \ 'cybercash_encr(': 'string wmk, string sk, string inbuff | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1111 | \ 'cybermut_creerformulairecm(': 'string url_cm, string version, string tpe, string price, string ref_command, string text_free, string url_return, string url_return_ok, string url_return_err, string language, string code_company, string text_button | string', |
| 1112 | \ 'cybermut_creerreponsecm(': 'string sentence | string', |
| 1113 | \ 'cybermut_testmac(': 'string code_mac, string version, string tpe, string cdate, string price, string ref_command, string text_free, string code_return | bool', |
| 1114 | \ 'cyrus_authenticate(': 'resource connection [, string mechlist [, string service [, string user [, int minssf [, int maxssf [, string authname [, string password]]]]]]] | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1115 | \ 'cyrus_bind(': 'resource connection, array callbacks | bool', |
| 1116 | \ 'cyrus_close(': 'resource connection | bool', |
| 1117 | \ 'cyrus_connect(': '[string host [, string port [, int flags]]] | resource', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1118 | \ 'cyrus_query(': 'resource connection, string query | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1119 | \ 'cyrus_unbind(': 'resource connection, string trigger_name | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1120 | \ 'date_default_timezone_get(': 'void | string', |
| 1121 | \ 'date_default_timezone_set(': 'string timezone_identifier | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1122 | \ 'date(': 'string format [, int timestamp] | string', |
| 1123 | \ 'date_sunrise(': 'int timestamp [, int format [, float latitude [, float longitude [, float zenith [, float gmt_offset]]]]] | mixed', |
| 1124 | \ 'date_sunset(': 'int timestamp [, int format [, float latitude [, float longitude [, float zenith [, float gmt_offset]]]]] | mixed', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1125 | \ 'db2_autocommit(': 'resource connection [, bool value] | mixed', |
| 1126 | \ 'db2_bind_param(': 'resource stmt, int parameter-number, string variable-name [, int parameter-type [, int data-type [, int precision [, int scale]]]] | bool', |
| 1127 | \ 'db2_client_info(': 'resource connection | object', |
| 1128 | \ 'db2_close(': 'resource connection | bool', |
| 1129 | \ 'db2_column_privileges(': 'resource connection [, string qualifier [, string schema [, string table-name [, string column-name]]]] | resource', |
| 1130 | \ 'db2_columns(': 'resource connection [, string qualifier [, string schema [, string table-name [, string column-name]]]] | resource', |
| 1131 | \ 'db2_commit(': 'resource connection | bool', |
| 1132 | \ 'db2_connect(': 'string database, string username, string password [, array options] | resource', |
| 1133 | \ 'db2_conn_error(': '[resource connection] | string', |
| 1134 | \ 'db2_conn_errormsg(': '[resource connection] | string', |
| 1135 | \ 'db2_cursor_type(': 'resource stmt | int', |
| 1136 | \ 'db2_exec(': 'resource connection, string statement [, array options] | resource', |
| 1137 | \ 'db2_execute(': 'resource stmt [, array parameters] | bool', |
| 1138 | \ 'db2_fetch_array(': 'resource stmt [, int row_number] | array', |
| 1139 | \ 'db2_fetch_assoc(': 'resource stmt [, int row_number] | array', |
| 1140 | \ 'db2_fetch_both(': 'resource stmt [, int row_number] | array', |
| 1141 | \ 'db2_fetch_object(': 'resource stmt [, int row_number] | object', |
| 1142 | \ 'db2_fetch_row(': 'resource stmt [, int row_number] | bool', |
| 1143 | \ 'db2_field_display_size(': 'resource stmt, mixed column | int', |
| 1144 | \ 'db2_field_name(': 'resource stmt, mixed column | string', |
| 1145 | \ 'db2_field_num(': 'resource stmt, mixed column | int', |
| 1146 | \ 'db2_field_precision(': 'resource stmt, mixed column | int', |
| 1147 | \ 'db2_field_scale(': 'resource stmt, mixed column | int', |
| 1148 | \ 'db2_field_type(': 'resource stmt, mixed column | string', |
| 1149 | \ 'db2_field_width(': 'resource stmt, mixed column | int', |
| 1150 | \ 'db2_foreign_keys(': 'resource connection, string qualifier, string schema, string table-name | resource', |
| 1151 | \ 'db2_free_result(': 'resource stmt | bool', |
| 1152 | \ 'db2_free_stmt(': 'resource stmt | bool', |
| 1153 | \ 'db2_next_result(': 'resource stmt | resource', |
| 1154 | \ 'db2_num_fields(': 'resource stmt | int', |
| 1155 | \ 'db2_num_rows(': 'resource stmt | int', |
| 1156 | \ 'db2_pconnect(': 'string database, string username, string password [, array options] | resource', |
| 1157 | \ 'db2_prepare(': 'resource connection, string statement [, array options] | resource', |
| 1158 | \ 'db2_primary_keys(': 'resource connection, string qualifier, string schema, string table-name | resource', |
| 1159 | \ 'db2_procedure_columns(': 'resource connection, string qualifier, string schema, string procedure, string parameter | resource', |
| 1160 | \ 'db2_procedures(': 'resource connection, string qualifier, string schema, string procedure | resource', |
| 1161 | \ 'db2_result(': 'resource stmt, mixed column | mixed', |
| 1162 | \ 'db2_rollback(': 'resource connection | bool', |
| 1163 | \ 'db2_server_info(': 'resource connection | object', |
| 1164 | \ 'db2_special_columns(': 'resource connection, string qualifier, string schema, string table_name, int scope | resource', |
| 1165 | \ 'db2_statistics(': 'resource connection, string qualifier, string schema, string table-name, bool unique | resource', |
| 1166 | \ 'db2_stmt_error(': '[resource stmt] | string', |
| 1167 | \ 'db2_stmt_errormsg(': '[resource stmt] | string', |
| 1168 | \ 'db2_table_privileges(': 'resource connection [, string qualifier [, string schema [, string table_name]]] | resource', |
| 1169 | \ 'db2_tables(': 'resource connection [, string qualifier [, string schema [, string table-name [, string table-type]]]] | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1170 | \ 'dba_close(': 'resource handle | void', |
| 1171 | \ 'dba_delete(': 'string key, resource handle | bool', |
| 1172 | \ 'dba_exists(': 'string key, resource handle | bool', |
| 1173 | \ 'dba_fetch(': 'string key, resource handle | string', |
| 1174 | \ 'dba_firstkey(': 'resource handle | string', |
| 1175 | \ 'dba_handlers(': '[bool full_info] | array', |
| 1176 | \ 'dba_insert(': 'string key, string value, resource handle | bool', |
| 1177 | \ 'dba_key_split(': 'mixed key | mixed', |
| 1178 | \ 'dba_list(': 'void | array', |
| 1179 | \ 'dba_nextkey(': 'resource handle | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1180 | \ 'dba_open(': 'string path, string mode [, string handler [, mixed ...]] | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1181 | \ 'dba_optimize(': 'resource handle | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1182 | \ 'dba_popen(': 'string path, string mode [, string handler [, mixed ...]] | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1183 | \ 'dba_replace(': 'string key, string value, resource handle | bool', |
| 1184 | \ 'dbase_add_record(': 'int dbase_identifier, array record | bool', |
| 1185 | \ 'dbase_close(': 'int dbase_identifier | bool', |
| 1186 | \ 'dbase_create(': 'string filename, array fields | int', |
| 1187 | \ 'dbase_delete_record(': 'int dbase_identifier, int record_number | bool', |
| 1188 | \ 'dbase_get_header_info(': 'int dbase_identifier | array', |
| 1189 | \ 'dbase_get_record(': 'int dbase_identifier, int record_number | array', |
| 1190 | \ 'dbase_get_record_with_names(': 'int dbase_identifier, int record_number | array', |
| 1191 | \ 'dbase_numfields(': 'int dbase_identifier | int', |
| 1192 | \ 'dbase_numrecords(': 'int dbase_identifier | int', |
| 1193 | \ 'dbase_open(': 'string filename, int mode | int', |
| 1194 | \ 'dbase_pack(': 'int dbase_identifier | bool', |
| 1195 | \ 'dbase_replace_record(': 'int dbase_identifier, array record, int record_number | bool', |
| 1196 | \ 'dba_sync(': 'resource handle | bool', |
| 1197 | \ 'dblist(': 'void | string', |
| 1198 | \ 'dbmclose(': 'resource dbm_identifier | bool', |
| 1199 | \ 'dbmdelete(': 'resource dbm_identifier, string key | bool', |
| 1200 | \ 'dbmexists(': 'resource dbm_identifier, string key | bool', |
| 1201 | \ 'dbmfetch(': 'resource dbm_identifier, string key | string', |
| 1202 | \ 'dbmfirstkey(': 'resource dbm_identifier | string', |
| 1203 | \ 'dbminsert(': 'resource dbm_identifier, string key, string value | int', |
| 1204 | \ 'dbmnextkey(': 'resource dbm_identifier, string key | string', |
| 1205 | \ 'dbmopen(': 'string filename, string flags | resource', |
| 1206 | \ 'dbmreplace(': 'resource dbm_identifier, string key, string value | int', |
| 1207 | \ 'dbplus_add(': 'resource relation, array tuple | int', |
| 1208 | \ 'dbplus_aql(': 'string query [, string server [, string dbpath]] | resource', |
| 1209 | \ 'dbplus_chdir(': '[string newdir] | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1210 | \ 'dbplus_close(': 'resource relation | mixed', |
| 1211 | \ 'dbplus_curr(': 'resource relation, array &tuple | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1212 | \ 'dbplus_errcode(': '[int errno] | string', |
| 1213 | \ 'dbplus_errno(': 'void | int', |
| 1214 | \ 'dbplus_find(': 'resource relation, array constraints, mixed tuple | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1215 | \ 'dbplus_first(': 'resource relation, array &tuple | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1216 | \ 'dbplus_flush(': 'resource relation | int', |
| 1217 | \ 'dbplus_freealllocks(': 'void | int', |
| 1218 | \ 'dbplus_freelock(': 'resource relation, string tname | int', |
| 1219 | \ 'dbplus_freerlocks(': 'resource relation | int', |
| 1220 | \ 'dbplus_getlock(': 'resource relation, string tname | int', |
| 1221 | \ 'dbplus_getunique(': 'resource relation, int uniqueid | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1222 | \ 'dbplus_info(': 'resource relation, string key, array &result | int', |
| 1223 | \ 'dbplus_last(': 'resource relation, array &tuple | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1224 | \ 'dbplus_lockrel(': 'resource relation | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1225 | \ 'dbplus_next(': 'resource relation, array &tuple | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1226 | \ 'dbplus_open(': 'string name | resource', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1227 | \ 'dbplus_prev(': 'resource relation, array &tuple | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1228 | \ 'dbplus_rchperm(': 'resource relation, int mask, string user, string group | int', |
| 1229 | \ 'dbplus_rcreate(': 'string name, mixed domlist [, bool overwrite] | resource', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1230 | \ 'dbplus_rcrtexact(': 'string name, resource relation [, bool overwrite] | mixed', |
| 1231 | \ 'dbplus_rcrtlike(': 'string name, resource relation [, int overwrite] | mixed', |
| 1232 | \ 'dbplus_resolve(': 'string relation_name | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1233 | \ 'dbplus_restorepos(': 'resource relation, array tuple | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1234 | \ 'dbplus_rkeys(': 'resource relation, mixed domlist | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1235 | \ 'dbplus_ropen(': 'string name | resource', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1236 | \ 'dbplus_rquery(': 'string query [, string dbpath] | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1237 | \ 'dbplus_rrename(': 'resource relation, string name | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1238 | \ 'dbplus_rsecindex(': 'resource relation, mixed domlist, int type | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1239 | \ 'dbplus_runlink(': 'resource relation | int', |
| 1240 | \ 'dbplus_rzap(': 'resource relation | int', |
| 1241 | \ 'dbplus_savepos(': 'resource relation | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1242 | \ 'dbplus_setindexbynumber(': 'resource relation, int idx_number | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1243 | \ 'dbplus_setindex(': 'resource relation, string idx_name | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1244 | \ 'dbplus_sql(': 'string query [, string server [, string dbpath]] | resource', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1245 | \ 'dbplus_tcl(': 'int sid, string script | string', |
| 1246 | \ 'dbplus_tremove(': 'resource relation, array tuple [, array &current] | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1247 | \ 'dbplus_undo(': 'resource relation | int', |
| 1248 | \ 'dbplus_undoprepare(': 'resource relation | int', |
| 1249 | \ 'dbplus_unlockrel(': 'resource relation | int', |
| 1250 | \ 'dbplus_unselect(': 'resource relation | int', |
| 1251 | \ 'dbplus_update(': 'resource relation, array old, array new | int', |
| 1252 | \ 'dbplus_xlockrel(': 'resource relation | int', |
| 1253 | \ 'dbplus_xunlockrel(': 'resource relation | int', |
| 1254 | \ 'dbx_close(': 'object link_identifier | bool', |
| 1255 | \ 'dbx_compare(': 'array row_a, array row_b, string column_key [, int flags] | int', |
| 1256 | \ 'dbx_connect(': 'mixed module, string host, string database, string username, string password [, int persistent] | object', |
| 1257 | \ 'dbx_error(': 'object link_identifier | string', |
| 1258 | \ 'dbx_escape_string(': 'object link_identifier, string text | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1259 | \ 'dbx_fetch_row(': 'object result_identifier | mixed', |
| 1260 | \ 'dbx_query(': 'object link_identifier, string sql_statement [, int flags] | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1261 | \ 'dbx_sort(': 'object result, string user_compare_function | bool', |
| 1262 | \ 'dcgettext(': 'string domain, string message, int category | string', |
| 1263 | \ 'dcngettext(': 'string domain, string msgid1, string msgid2, int n, int category | string', |
| 1264 | \ 'deaggregate(': 'object object [, string class_name] | void', |
| 1265 | \ 'debug_backtrace(': 'void | array', |
| 1266 | \ 'debugger_off(': 'void | int', |
| 1267 | \ 'debugger_on(': 'string address | int', |
| 1268 | \ 'debug_print_backtrace(': 'void | void', |
| 1269 | \ 'debug_zval_dump(': 'mixed variable | void', |
| 1270 | \ 'decbin(': 'int number | string', |
| 1271 | \ 'dechex(': 'int number | string', |
| 1272 | \ 'decoct(': 'int number | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1273 | \ 'defined(': 'string name | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1274 | \ 'define(': 'string name, mixed value [, bool case_insensitive] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1275 | \ 'define_syslog_variables(': 'void | void', |
| 1276 | \ 'deg2rad(': 'float number | float', |
| 1277 | \ 'delete(': 'string file | void', |
| 1278 | \ 'dgettext(': 'string domain, string message | string', |
| 1279 | \ 'dio_close(': 'resource fd | void', |
| 1280 | \ 'dio_fcntl(': 'resource fd, int cmd [, mixed args] | mixed', |
| 1281 | \ 'dio_open(': 'string filename, int flags [, int mode] | resource', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1282 | \ 'dio_read(': 'resource fd [, int len] | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1283 | \ 'dio_seek(': 'resource fd, int pos [, int whence] | int', |
| 1284 | \ 'dio_stat(': 'resource fd | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1285 | \ 'dio_tcsetattr(': 'resource fd, array options | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1286 | \ 'dio_truncate(': 'resource fd, int offset | bool', |
| 1287 | \ 'dio_write(': 'resource fd, string data [, int len] | int', |
| 1288 | \ 'dirname(': 'string path | string', |
| 1289 | \ 'disk_free_space(': 'string directory | float', |
| 1290 | \ 'disk_total_space(': 'string directory | float', |
| 1291 | \ 'dl(': 'string library | int', |
| 1292 | \ 'dngettext(': 'string domain, string msgid1, string msgid2, int n | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1293 | \ 'dns_check_record(': 'string host [, string type] | bool', |
| 1294 | \ 'dns_get_mx(': 'string hostname, array &mxhosts [, array &weight] | bool', |
| 1295 | \ 'dns_get_record(': 'string hostname [, int type [, array &authns, array &addtl]] | array', |
| 1296 | \ 'DomDocument->add_root(': 'string name | domelement', |
| 1297 | \ 'DomDocument->create_attribute(': 'string name, string value | domattribute', |
| 1298 | \ 'DomDocument->create_cdata_section(': 'string content | domcdata', |
| 1299 | \ 'DomDocument->create_comment(': 'string content | domcomment', |
| 1300 | \ 'DomDocument->create_element(': 'string name | domelement', |
| 1301 | \ 'DomDocument->create_element_ns(': 'string uri, string name [, string prefix] | domelement', |
| 1302 | \ 'DomDocument->create_entity_reference(': 'string content | domentityreference', |
| 1303 | \ 'DomDocument->create_processing_instruction(': 'string content | domprocessinginstruction', |
| 1304 | \ 'DomDocument->create_text_node(': 'string content | domtext', |
| 1305 | \ 'DomDocument->doctype(': 'void | domdocumenttype', |
| 1306 | \ 'DomDocument->document_element(': 'void | domelement', |
| 1307 | \ 'DomDocument->dump_file(': 'string filename [, bool compressionmode [, bool format]] | string', |
| 1308 | \ 'DomDocument->dump_mem(': '[bool format [, string encoding]] | string', |
| 1309 | \ 'DomDocument->get_element_by_id(': 'string id | domelement', |
| 1310 | \ 'DomDocument->get_elements_by_tagname(': 'string name | array', |
| 1311 | \ 'DomDocument->html_dump_mem(': 'void | string', |
| 1312 | \ 'DomDocument->xinclude(': 'void | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1313 | \ 'dom_import_simplexml(': 'SimpleXMLElement node | DOMElement', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1314 | \ 'DomNode->append_sibling(': 'domelement newnode | domelement', |
| 1315 | \ 'DomNode->attributes(': 'void | array', |
| 1316 | \ 'DomNode->child_nodes(': 'void | array', |
| 1317 | \ 'DomNode->clone_node(': 'void | domelement', |
| 1318 | \ 'DomNode->dump_node(': 'void | string', |
| 1319 | \ 'DomNode->first_child(': 'void | domelement', |
| 1320 | \ 'DomNode->get_content(': 'void | string', |
| 1321 | \ 'DomNode->has_attributes(': 'void | bool', |
| 1322 | \ 'DomNode->has_child_nodes(': 'void | bool', |
| 1323 | \ 'DomNode->insert_before(': 'domelement newnode, domelement refnode | domelement', |
| 1324 | \ 'DomNode->is_blank_node(': 'void | bool', |
| 1325 | \ 'DomNode->last_child(': 'void | domelement', |
| 1326 | \ 'DomNode->next_sibling(': 'void | domelement', |
| 1327 | \ 'DomNode->node_name(': 'void | string', |
| 1328 | \ 'DomNode->node_type(': 'void | int', |
| 1329 | \ 'DomNode->node_value(': 'void | string', |
| 1330 | \ 'DomNode->owner_document(': 'void | domdocument', |
| 1331 | \ 'DomNode->parent_node(': 'void | domnode', |
| 1332 | \ 'DomNode->prefix(': 'void | string', |
| 1333 | \ 'DomNode->previous_sibling(': 'void | domelement', |
| 1334 | \ 'DomNode->remove_child(': 'domtext oldchild | domtext', |
| 1335 | \ 'DomNode->replace_child(': 'domelement oldnode, domelement newnode | domelement', |
| 1336 | \ 'DomNode->replace_node(': 'domelement newnode | domelement', |
| 1337 | \ 'DomNode->set_content(': 'string content | bool', |
| 1338 | \ 'DomNode->set_name(': 'void | bool', |
| 1339 | \ 'DomNode->set_namespace(': 'string uri [, string prefix] | void', |
| 1340 | \ 'DomNode->unlink_node(': 'void | void', |
| 1341 | \ 'domxml_new_doc(': 'string version | DomDocument', |
| 1342 | \ 'domxml_open_file(': 'string filename [, int mode [, array &error]] | DomDocument', |
| 1343 | \ 'domxml_open_mem(': 'string str [, int mode [, array &error]] | DomDocument', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1344 | \ 'domxml_version(': 'void | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1345 | \ 'domxml_xmltree(': 'string str | DomDocument', |
| 1346 | \ 'domxml_xslt_stylesheet_doc(': 'DomDocument xsl_doc | DomXsltStylesheet', |
| 1347 | \ 'domxml_xslt_stylesheet_file(': 'string xsl_file | DomXsltStylesheet', |
| 1348 | \ 'domxml_xslt_stylesheet(': 'string xsl_buf | DomXsltStylesheet', |
| 1349 | \ 'domxml_xslt_version(': 'void | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1350 | \ 'dotnet_load(': 'string assembly_name [, string datatype_name [, int codepage]] | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1351 | \ 'each(': 'array &array | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1352 | \ 'easter_date(': '[int year] | int', |
| 1353 | \ 'easter_days(': '[int year [, int method]] | int', |
| 1354 | \ 'ebcdic2ascii(': 'string ebcdic_str | int', |
| 1355 | \ 'echo(': 'string arg1 [, string ...] | void', |
| 1356 | \ 'empty(': 'mixed var | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1357 | \ 'end(': 'array &array | mixed', |
| 1358 | \ 'ereg(': 'string pattern, string string [, array &regs] | int', |
| 1359 | \ 'eregi(': 'string pattern, string string [, array &regs] | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1360 | \ 'eregi_replace(': 'string pattern, string replacement, string string | string', |
| 1361 | \ 'ereg_replace(': 'string pattern, string replacement, string string | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1362 | \ 'error_log(': 'string message [, int message_type [, string destination [, string extra_headers]]] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1363 | \ 'error_reporting(': '[int level] | int', |
| 1364 | \ 'escapeshellarg(': 'string arg | string', |
| 1365 | \ 'escapeshellcmd(': 'string command | string', |
| 1366 | \ 'eval(': 'string code_str | mixed', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1367 | \ 'exec(': 'string command [, array &output [, int &return_var]] | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1368 | \ 'exif_imagetype(': 'string filename | int', |
| 1369 | \ 'exif_read_data(': 'string filename [, string sections [, bool arrays [, bool thumbnail]]] | array', |
| 1370 | \ 'exif_tagname(': 'string index | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1371 | \ 'exif_thumbnail(': 'string filename [, int &width [, int &height [, int &imagetype]]] | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1372 | \ 'exit(': '[string status] | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1373 | \ 'expect_expectl(': 'resource expect, array cases, string &match | mixed', |
| 1374 | \ 'expect_popen(': 'string command | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1375 | \ 'exp(': 'float arg | float', |
| 1376 | \ 'explode(': 'string separator, string string [, int limit] | array', |
| 1377 | \ 'expm1(': 'float number | float', |
| 1378 | \ 'extension_loaded(': 'string name | bool', |
| 1379 | \ 'extract(': 'array var_array [, int extract_type [, string prefix]] | int', |
| 1380 | \ 'ezmlm_hash(': 'string addr | int', |
| 1381 | \ 'fam_cancel_monitor(': 'resource fam, resource fam_monitor | bool', |
| 1382 | \ 'fam_close(': 'resource fam | void', |
| 1383 | \ 'fam_monitor_collection(': 'resource fam, string dirname, int depth, string mask | resource', |
| 1384 | \ 'fam_monitor_directory(': 'resource fam, string dirname | resource', |
| 1385 | \ 'fam_monitor_file(': 'resource fam, string filename | resource', |
| 1386 | \ 'fam_next_event(': 'resource fam | array', |
| 1387 | \ 'fam_open(': '[string appname] | resource', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1388 | \ 'fam_pending(': 'resource fam | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1389 | \ 'fam_resume_monitor(': 'resource fam, resource fam_monitor | bool', |
| 1390 | \ 'fam_suspend_monitor(': 'resource fam, resource fam_monitor | bool', |
| 1391 | \ 'fbsql_affected_rows(': '[resource link_identifier] | int', |
| 1392 | \ 'fbsql_autocommit(': 'resource link_identifier [, bool OnOff] | bool', |
| 1393 | \ 'fbsql_blob_size(': 'string blob_handle [, resource link_identifier] | int', |
| 1394 | \ 'fbsql_change_user(': 'string user, string password [, string database [, resource link_identifier]] | resource', |
| 1395 | \ 'fbsql_clob_size(': 'string clob_handle [, resource link_identifier] | int', |
| 1396 | \ 'fbsql_close(': '[resource link_identifier] | bool', |
| 1397 | \ 'fbsql_commit(': '[resource link_identifier] | bool', |
| 1398 | \ 'fbsql_connect(': '[string hostname [, string username [, string password]]] | resource', |
| 1399 | \ 'fbsql_create_blob(': 'string blob_data [, resource link_identifier] | string', |
| 1400 | \ 'fbsql_create_clob(': 'string clob_data [, resource link_identifier] | string', |
| 1401 | \ 'fbsql_create_db(': 'string database_name [, resource link_identifier [, string database_options]] | bool', |
| 1402 | \ 'fbsql_database(': 'resource link_identifier [, string database] | string', |
| 1403 | \ 'fbsql_database_password(': 'resource link_identifier [, string database_password] | string', |
| 1404 | \ 'fbsql_data_seek(': 'resource result_identifier, int row_number | bool', |
| 1405 | \ 'fbsql_db_query(': 'string database, string query [, resource link_identifier] | resource', |
| 1406 | \ 'fbsql_db_status(': 'string database_name [, resource link_identifier] | int', |
| 1407 | \ 'fbsql_drop_db(': 'string database_name [, resource link_identifier] | bool', |
| 1408 | \ 'fbsql_errno(': '[resource link_identifier] | int', |
| 1409 | \ 'fbsql_error(': '[resource link_identifier] | string', |
| 1410 | \ 'fbsql_fetch_array(': 'resource result [, int result_type] | array', |
| 1411 | \ 'fbsql_fetch_assoc(': 'resource result | array', |
| 1412 | \ 'fbsql_fetch_field(': 'resource result [, int field_offset] | object', |
| 1413 | \ 'fbsql_fetch_lengths(': 'resource result | array', |
| 1414 | \ 'fbsql_fetch_object(': 'resource result [, int result_type] | object', |
| 1415 | \ 'fbsql_fetch_row(': 'resource result | array', |
| 1416 | \ 'fbsql_field_flags(': 'resource result [, int field_offset] | string', |
| 1417 | \ 'fbsql_field_len(': 'resource result [, int field_offset] | int', |
| 1418 | \ 'fbsql_field_name(': 'resource result [, int field_index] | string', |
| 1419 | \ 'fbsql_field_seek(': 'resource result [, int field_offset] | bool', |
| 1420 | \ 'fbsql_field_table(': 'resource result [, int field_offset] | string', |
| 1421 | \ 'fbsql_field_type(': 'resource result [, int field_offset] | string', |
| 1422 | \ 'fbsql_free_result(': 'resource result | bool', |
| 1423 | \ 'fbsql_get_autostart_info(': '[resource link_identifier] | array', |
| 1424 | \ 'fbsql_hostname(': 'resource link_identifier [, string host_name] | string', |
| 1425 | \ 'fbsql_insert_id(': '[resource link_identifier] | int', |
| 1426 | \ 'fbsql_list_dbs(': '[resource link_identifier] | resource', |
| 1427 | \ 'fbsql_list_fields(': 'string database_name, string table_name [, resource link_identifier] | resource', |
| 1428 | \ 'fbsql_list_tables(': 'string database [, resource link_identifier] | resource', |
| 1429 | \ 'fbsql_next_result(': 'resource result_id | bool', |
| 1430 | \ 'fbsql_num_fields(': 'resource result | int', |
| 1431 | \ 'fbsql_num_rows(': 'resource result | int', |
| 1432 | \ 'fbsql_password(': 'resource link_identifier [, string password] | string', |
| 1433 | \ 'fbsql_pconnect(': '[string hostname [, string username [, string password]]] | resource', |
| 1434 | \ 'fbsql_query(': 'string query [, resource link_identifier [, int batch_size]] | resource', |
| 1435 | \ 'fbsql_read_blob(': 'string blob_handle [, resource link_identifier] | string', |
| 1436 | \ 'fbsql_read_clob(': 'string clob_handle [, resource link_identifier] | string', |
| 1437 | \ 'fbsql_result(': 'resource result [, int row [, mixed field]] | mixed', |
| 1438 | \ 'fbsql_rollback(': '[resource link_identifier] | bool', |
| 1439 | \ 'fbsql_select_db(': '[string database_name [, resource link_identifier]] | bool', |
| 1440 | \ 'fbsql_set_lob_mode(': 'resource result, string database_name | bool', |
| 1441 | \ 'fbsql_set_password(': 'resource link_identifier, string user, string password, string old_password | bool', |
| 1442 | \ 'fbsql_set_transaction(': 'resource link_identifier, int Locking, int Isolation | void', |
| 1443 | \ 'fbsql_start_db(': 'string database_name [, resource link_identifier [, string database_options]] | bool', |
| 1444 | \ 'fbsql_stop_db(': 'string database_name [, resource link_identifier] | bool', |
| 1445 | \ 'fbsql_tablename(': 'resource result, int i | string', |
| 1446 | \ 'fbsql_username(': 'resource link_identifier [, string username] | string', |
| 1447 | \ 'fbsql_warnings(': '[bool OnOff] | bool', |
| 1448 | \ 'fclose(': 'resource handle | bool', |
| 1449 | \ 'fdf_add_doc_javascript(': 'resource fdfdoc, string script_name, string script_code | bool', |
| 1450 | \ 'fdf_add_template(': 'resource fdfdoc, int newpage, string filename, string template, int rename | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1451 | \ 'fdf_close(': 'resource fdf_document | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1452 | \ 'fdf_create(': 'void | resource', |
| 1453 | \ 'fdf_enum_values(': 'resource fdfdoc, callback function [, mixed userdata] | bool', |
| 1454 | \ 'fdf_errno(': 'void | int', |
| 1455 | \ 'fdf_error(': '[int error_code] | string', |
| 1456 | \ 'fdf_get_ap(': 'resource fdf_document, string field, int face, string filename | bool', |
| 1457 | \ 'fdf_get_attachment(': 'resource fdf_document, string fieldname, string savepath | array', |
| 1458 | \ 'fdf_get_encoding(': 'resource fdf_document | string', |
| 1459 | \ 'fdf_get_file(': 'resource fdf_document | string', |
| 1460 | \ 'fdf_get_flags(': 'resource fdfdoc, string fieldname, int whichflags | int', |
| 1461 | \ 'fdf_get_opt(': 'resource fdfdof, string fieldname [, int element] | mixed', |
| 1462 | \ 'fdf_get_status(': 'resource fdf_document | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1463 | \ 'fdf_get_value(': 'resource fdf_document, string fieldname [, int which] | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1464 | \ 'fdf_get_version(': '[resource fdf_document] | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1465 | \ 'fdf_header(': 'void | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1466 | \ 'fdf_next_field_name(': 'resource fdf_document [, string fieldname] | string', |
| 1467 | \ 'fdf_open(': 'string filename | resource', |
| 1468 | \ 'fdf_open_string(': 'string fdf_data | resource', |
| 1469 | \ 'fdf_remove_item(': 'resource fdfdoc, string fieldname, int item | bool', |
| 1470 | \ 'fdf_save(': 'resource fdf_document [, string filename] | bool', |
| 1471 | \ 'fdf_save_string(': 'resource fdf_document | string', |
| 1472 | \ 'fdf_set_ap(': 'resource fdf_document, string field_name, int face, string filename, int page_number | bool', |
| 1473 | \ 'fdf_set_encoding(': 'resource fdf_document, string encoding | bool', |
| 1474 | \ 'fdf_set_file(': 'resource fdf_document, string url [, string target_frame] | bool', |
| 1475 | \ 'fdf_set_flags(': 'resource fdf_document, string fieldname, int whichFlags, int newFlags | bool', |
| 1476 | \ 'fdf_set_javascript_action(': 'resource fdf_document, string fieldname, int trigger, string script | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1477 | \ 'fdf_set_on_import_javascript(': 'resource fdfdoc, string script, bool before_data_import | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1478 | \ 'fdf_set_opt(': 'resource fdf_document, string fieldname, int element, string str1, string str2 | bool', |
| 1479 | \ 'fdf_set_status(': 'resource fdf_document, string status | bool', |
| 1480 | \ 'fdf_set_submit_form_action(': 'resource fdf_document, string fieldname, int trigger, string script, int flags | bool', |
| 1481 | \ 'fdf_set_target_frame(': 'resource fdf_document, string frame_name | bool', |
| 1482 | \ 'fdf_set_value(': 'resource fdf_document, string fieldname, mixed value [, int isName] | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1483 | \ 'fdf_set_version(': 'resource fdf_document, string version | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1484 | \ 'feof(': 'resource handle | bool', |
| 1485 | \ 'fflush(': 'resource handle | bool', |
| 1486 | \ 'fgetc(': 'resource handle | string', |
| 1487 | \ 'fgetcsv(': 'resource handle [, int length [, string delimiter [, string enclosure]]] | array', |
| 1488 | \ 'fgets(': 'resource handle [, int length] | string', |
| 1489 | \ 'fgetss(': 'resource handle [, int length [, string allowable_tags]] | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1490 | \ 'fileatime(': 'string filename | int', |
| 1491 | \ 'filectime(': 'string filename | int', |
| 1492 | \ 'file_exists(': 'string filename | bool', |
| 1493 | \ 'file_get_contents(': 'string filename [, bool use_include_path [, resource context [, int offset [, int maxlen]]]] | string', |
| 1494 | \ 'filegroup(': 'string filename | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1495 | \ 'file(': 'string filename [, int use_include_path [, resource context]] | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1496 | \ 'fileinode(': 'string filename | int', |
| 1497 | \ 'filemtime(': 'string filename | int', |
| 1498 | \ 'fileowner(': 'string filename | int', |
| 1499 | \ 'fileperms(': 'string filename | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1500 | \ 'filepro_fieldcount(': 'void | int', |
| 1501 | \ 'filepro_fieldname(': 'int field_number | string', |
| 1502 | \ 'filepro_fieldtype(': 'int field_number | string', |
| 1503 | \ 'filepro_fieldwidth(': 'int field_number | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1504 | \ 'filepro(': 'string directory | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1505 | \ 'filepro_retrieve(': 'int row_number, int field_number | string', |
| 1506 | \ 'filepro_rowcount(': 'void | int', |
| 1507 | \ 'file_put_contents(': 'string filename, mixed data [, int flags [, resource context]] | int', |
| 1508 | \ 'filesize(': 'string filename | int', |
| 1509 | \ 'filetype(': 'string filename | string', |
| 1510 | \ 'floatval(': 'mixed var | float', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1511 | \ 'flock(': 'resource handle, int operation [, int &wouldblock] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1512 | \ 'floor(': 'float value | float', |
| 1513 | \ 'flush(': 'void | void', |
| 1514 | \ 'fmod(': 'float x, float y | float', |
| 1515 | \ 'fnmatch(': 'string pattern, string string [, int flags] | bool', |
| 1516 | \ 'fopen(': 'string filename, string mode [, bool use_include_path [, resource zcontext]] | resource', |
| 1517 | \ 'fpassthru(': 'resource handle | int', |
| 1518 | \ 'fprintf(': 'resource handle, string format [, mixed args [, mixed ...]] | int', |
| 1519 | \ 'fputcsv(': 'resource handle [, array fields [, string delimiter [, string enclosure]]] | int', |
| 1520 | \ 'fread(': 'resource handle, int length | string', |
| 1521 | \ 'frenchtojd(': 'int month, int day, int year | int', |
| 1522 | \ 'fribidi_log2vis(': 'string str, string direction, int charset | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1523 | \ 'fscanf(': 'resource handle, string format [, mixed &...] | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1524 | \ 'fseek(': 'resource handle, int offset [, int whence] | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1525 | \ 'fsockopen(': 'string target [, int port [, int &errno [, string &errstr [, float timeout]]]] | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1526 | \ 'fstat(': 'resource handle | array', |
| 1527 | \ 'ftell(': 'resource handle | int', |
| 1528 | \ 'ftok(': 'string pathname, string proj | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1529 | \ 'ftp_alloc(': 'resource ftp_stream, int filesize [, string &result] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1530 | \ 'ftp_cdup(': 'resource ftp_stream | bool', |
| 1531 | \ 'ftp_chdir(': 'resource ftp_stream, string directory | bool', |
| 1532 | \ 'ftp_chmod(': 'resource ftp_stream, int mode, string filename | int', |
| 1533 | \ 'ftp_close(': 'resource ftp_stream | bool', |
| 1534 | \ 'ftp_connect(': 'string host [, int port [, int timeout]] | resource', |
| 1535 | \ 'ftp_delete(': 'resource ftp_stream, string path | bool', |
| 1536 | \ 'ftp_exec(': 'resource ftp_stream, string command | bool', |
| 1537 | \ 'ftp_fget(': 'resource ftp_stream, resource handle, string remote_file, int mode [, int resumepos] | bool', |
| 1538 | \ 'ftp_fput(': 'resource ftp_stream, string remote_file, resource handle, int mode [, int startpos] | bool', |
| 1539 | \ 'ftp_get(': 'resource ftp_stream, string local_file, string remote_file, int mode [, int resumepos] | bool', |
| 1540 | \ 'ftp_get_option(': 'resource ftp_stream, int option | mixed', |
| 1541 | \ 'ftp_login(': 'resource ftp_stream, string username, string password | bool', |
| 1542 | \ 'ftp_mdtm(': 'resource ftp_stream, string remote_file | int', |
| 1543 | \ 'ftp_mkdir(': 'resource ftp_stream, string directory | string', |
| 1544 | \ 'ftp_nb_continue(': 'resource ftp_stream | int', |
| 1545 | \ 'ftp_nb_fget(': 'resource ftp_stream, resource handle, string remote_file, int mode [, int resumepos] | int', |
| 1546 | \ 'ftp_nb_fput(': 'resource ftp_stream, string remote_file, resource handle, int mode [, int startpos] | int', |
| 1547 | \ 'ftp_nb_get(': 'resource ftp_stream, string local_file, string remote_file, int mode [, int resumepos] | int', |
| 1548 | \ 'ftp_nb_put(': 'resource ftp_stream, string remote_file, string local_file, int mode [, int startpos] | int', |
| 1549 | \ 'ftp_nlist(': 'resource ftp_stream, string directory | array', |
| 1550 | \ 'ftp_pasv(': 'resource ftp_stream, bool pasv | bool', |
| 1551 | \ 'ftp_put(': 'resource ftp_stream, string remote_file, string local_file, int mode [, int startpos] | bool', |
| 1552 | \ 'ftp_pwd(': 'resource ftp_stream | string', |
| 1553 | \ 'ftp_raw(': 'resource ftp_stream, string command | array', |
| 1554 | \ 'ftp_rawlist(': 'resource ftp_stream, string directory [, bool recursive] | array', |
| 1555 | \ 'ftp_rename(': 'resource ftp_stream, string oldname, string newname | bool', |
| 1556 | \ 'ftp_rmdir(': 'resource ftp_stream, string directory | bool', |
| 1557 | \ 'ftp_set_option(': 'resource ftp_stream, int option, mixed value | bool', |
| 1558 | \ 'ftp_site(': 'resource ftp_stream, string command | bool', |
| 1559 | \ 'ftp_size(': 'resource ftp_stream, string remote_file | int', |
| 1560 | \ 'ftp_ssl_connect(': 'string host [, int port [, int timeout]] | resource', |
| 1561 | \ 'ftp_systype(': 'resource ftp_stream | string', |
| 1562 | \ 'ftruncate(': 'resource handle, int size | bool', |
| 1563 | \ 'func_get_arg(': 'int arg_num | mixed', |
| 1564 | \ 'func_get_args(': 'void | array', |
| 1565 | \ 'func_num_args(': 'void | int', |
| 1566 | \ 'function_exists(': 'string function_name | bool', |
| 1567 | \ 'fwrite(': 'resource handle, string string [, int length] | int', |
| 1568 | \ 'gd_info(': 'void | array', |
| 1569 | \ 'getallheaders(': 'void | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1570 | \ 'get_browser(': '[string user_agent [, bool return_array]] | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1571 | \ 'get_cfg_var(': 'string varname | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1572 | \ 'get_class(': '[object obj] | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1573 | \ 'get_class_methods(': 'mixed class_name | array', |
| 1574 | \ 'get_class_vars(': 'string class_name | array', |
| 1575 | \ 'get_current_user(': 'void | string', |
| 1576 | \ 'getcwd(': 'void | string', |
| 1577 | \ 'getdate(': '[int timestamp] | array', |
| 1578 | \ 'get_declared_classes(': 'void | array', |
| 1579 | \ 'get_declared_interfaces(': 'void | array', |
| 1580 | \ 'get_defined_constants(': '[mixed categorize] | array', |
| 1581 | \ 'get_defined_functions(': 'void | array', |
| 1582 | \ 'get_defined_vars(': 'void | array', |
| 1583 | \ 'getenv(': 'string varname | string', |
| 1584 | \ 'get_extension_funcs(': 'string module_name | array', |
| 1585 | \ 'get_headers(': 'string url [, int format] | array', |
| 1586 | \ 'gethostbyaddr(': 'string ip_address | string', |
| 1587 | \ 'gethostbyname(': 'string hostname | string', |
| 1588 | \ 'gethostbynamel(': 'string hostname | array', |
| 1589 | \ 'get_html_translation_table(': '[int table [, int quote_style]] | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1590 | \ 'getimagesize(': 'string filename [, array &imageinfo] | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1591 | \ 'get_included_files(': 'void | array', |
| 1592 | \ 'get_include_path(': 'void | string', |
| 1593 | \ 'getlastmod(': 'void | int', |
| 1594 | \ 'get_loaded_extensions(': 'void | array', |
| 1595 | \ 'get_magic_quotes_gpc(': 'void | int', |
| 1596 | \ 'get_magic_quotes_runtime(': 'void | int', |
| 1597 | \ 'get_meta_tags(': 'string filename [, bool use_include_path] | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1598 | \ 'getmxrr(': 'string hostname, array &mxhosts [, array &weight] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1599 | \ 'getmygid(': 'void | int', |
| 1600 | \ 'getmyinode(': 'void | int', |
| 1601 | \ 'getmypid(': 'void | int', |
| 1602 | \ 'getmyuid(': 'void | int', |
| 1603 | \ 'get_object_vars(': 'object obj | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1604 | \ 'getopt(': 'string options | array', |
| 1605 | \ 'get_parent_class(': '[mixed obj] | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1606 | \ 'getprotobyname(': 'string name | int', |
| 1607 | \ 'getprotobynumber(': 'int number | string', |
| 1608 | \ 'getrandmax(': 'void | int', |
| 1609 | \ 'get_resource_type(': 'resource handle | string', |
| 1610 | \ 'getrusage(': '[int who] | array', |
| 1611 | \ 'getservbyname(': 'string service, string protocol | int', |
| 1612 | \ 'getservbyport(': 'int port, string protocol | string', |
| 1613 | \ 'gettext(': 'string message | string', |
| 1614 | \ 'gettimeofday(': '[bool return_float] | mixed', |
| 1615 | \ 'gettype(': 'mixed var | string', |
| 1616 | \ 'glob(': 'string pattern [, int flags] | array', |
| 1617 | \ 'gmdate(': 'string format [, int timestamp] | string', |
| 1618 | \ 'gmmktime(': '[int hour [, int minute [, int second [, int month [, int day [, int year [, int is_dst]]]]]]] | int', |
| 1619 | \ 'gmp_abs(': 'resource a | resource', |
| 1620 | \ 'gmp_add(': 'resource a, resource b | resource', |
| 1621 | \ 'gmp_and(': 'resource a, resource b | resource', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1622 | \ 'gmp_clrbit(': 'resource &a, int index | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1623 | \ 'gmp_cmp(': 'resource a, resource b | int', |
| 1624 | \ 'gmp_com(': 'resource a | resource', |
| 1625 | \ 'gmp_divexact(': 'resource n, resource d | resource', |
| 1626 | \ 'gmp_div_q(': 'resource a, resource b [, int round] | resource', |
| 1627 | \ 'gmp_div_qr(': 'resource n, resource d [, int round] | array', |
| 1628 | \ 'gmp_div_r(': 'resource n, resource d [, int round] | resource', |
| 1629 | \ 'gmp_fact(': 'int a | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1630 | \ 'gmp_gcdext(': 'resource a, resource b | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1631 | \ 'gmp_gcd(': 'resource a, resource b | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1632 | \ 'gmp_hamdist(': 'resource a, resource b | int', |
| 1633 | \ 'gmp_init(': 'mixed number [, int base] | resource', |
| 1634 | \ 'gmp_intval(': 'resource gmpnumber | int', |
| 1635 | \ 'gmp_invert(': 'resource a, resource b | resource', |
| 1636 | \ 'gmp_jacobi(': 'resource a, resource p | int', |
| 1637 | \ 'gmp_legendre(': 'resource a, resource p | int', |
| 1638 | \ 'gmp_mod(': 'resource n, resource d | resource', |
| 1639 | \ 'gmp_mul(': 'resource a, resource b | resource', |
| 1640 | \ 'gmp_neg(': 'resource a | resource', |
| 1641 | \ 'gmp_or(': 'resource a, resource b | resource', |
| 1642 | \ 'gmp_perfect_square(': 'resource a | bool', |
| 1643 | \ 'gmp_popcount(': 'resource a | int', |
| 1644 | \ 'gmp_pow(': 'resource base, int exp | resource', |
| 1645 | \ 'gmp_powm(': 'resource base, resource exp, resource mod | resource', |
| 1646 | \ 'gmp_prob_prime(': 'resource a [, int reps] | int', |
| 1647 | \ 'gmp_random(': 'int limiter | resource', |
| 1648 | \ 'gmp_scan0(': 'resource a, int start | int', |
| 1649 | \ 'gmp_scan1(': 'resource a, int start | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1650 | \ 'gmp_setbit(': 'resource &a, int index [, bool set_clear] | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1651 | \ 'gmp_sign(': 'resource a | int', |
| 1652 | \ 'gmp_sqrt(': 'resource a | resource', |
| 1653 | \ 'gmp_sqrtrem(': 'resource a | array', |
| 1654 | \ 'gmp_strval(': 'resource gmpnumber [, int base] | string', |
| 1655 | \ 'gmp_sub(': 'resource a, resource b | resource', |
| 1656 | \ 'gmp_xor(': 'resource a, resource b | resource', |
| 1657 | \ 'gmstrftime(': 'string format [, int timestamp] | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1658 | \ 'gnupg_adddecryptkey(': 'resource identifier, string fingerprint, string passphrase | bool', |
| 1659 | \ 'gnupg_addencryptkey(': 'resource identifier, string fingerprint | bool', |
| 1660 | \ 'gnupg_addsignkey(': 'resource identifier, string fingerprint [, string passphrase] | bool', |
| 1661 | \ 'gnupg_cleardecryptkeys(': 'resource identifier | bool', |
| 1662 | \ 'gnupg_clearencryptkeys(': 'resource identifier | bool', |
| 1663 | \ 'gnupg_clearsignkeys(': 'resource identifier | bool', |
| 1664 | \ 'gnupg_decrypt(': 'resource identifier, string text | string', |
| 1665 | \ 'gnupg_decryptverify(': 'resource identifier, string text, string plaintext | array', |
| 1666 | \ 'gnupg_encrypt(': 'resource identifier, string plaintext | string', |
| 1667 | \ 'gnupg_encryptsign(': 'resource identifier, string plaintext | string', |
| 1668 | \ 'gnupg_export(': 'resource identifier, string fingerprint | string', |
| 1669 | \ 'gnupg_geterror(': 'resource identifier | string', |
| 1670 | \ 'gnupg_getprotocol(': 'resource identifier | int', |
| 1671 | \ 'gnupg_import(': 'resource identifier, string keydata | array', |
| 1672 | \ 'gnupg_keyinfo(': 'resource identifier, string pattern | array', |
| 1673 | \ 'gnupg_setarmor(': 'resource identifier, int armor | bool', |
| 1674 | \ 'gnupg_seterrormode(': 'resource identifier, int errormode | void', |
| 1675 | \ 'gnupg_setsignmode(': 'resource identifier, int signmode | bool', |
| 1676 | \ 'gnupg_sign(': 'resource identifier, string plaintext | string', |
| 1677 | \ 'gnupg_verify(': 'resource identifier, string signed_text, string signature [, string plaintext] | array', |
| 1678 | \ 'gopher_parsedir(': 'string dirent | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1679 | \ 'gregoriantojd(': 'int month, int day, int year | int', |
| 1680 | \ 'gzclose(': 'resource zp | bool', |
| 1681 | \ 'gzcompress(': 'string data [, int level] | string', |
| 1682 | \ 'gzdeflate(': 'string data [, int level] | string', |
| 1683 | \ 'gzencode(': 'string data [, int level [, int encoding_mode]] | string', |
| 1684 | \ 'gzeof(': 'resource zp | int', |
| 1685 | \ 'gzfile(': 'string filename [, int use_include_path] | array', |
| 1686 | \ 'gzgetc(': 'resource zp | string', |
| 1687 | \ 'gzgets(': 'resource zp, int length | string', |
| 1688 | \ 'gzgetss(': 'resource zp, int length [, string allowable_tags] | string', |
| 1689 | \ 'gzinflate(': 'string data [, int length] | string', |
| 1690 | \ 'gzopen(': 'string filename, string mode [, int use_include_path] | resource', |
| 1691 | \ 'gzpassthru(': 'resource zp | int', |
| 1692 | \ 'gzread(': 'resource zp, int length | string', |
| 1693 | \ 'gzrewind(': 'resource zp | bool', |
| 1694 | \ 'gzseek(': 'resource zp, int offset | int', |
| 1695 | \ 'gztell(': 'resource zp | int', |
| 1696 | \ 'gzuncompress(': 'string data [, int length] | string', |
| 1697 | \ 'gzwrite(': 'resource zp, string string [, int length] | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1698 | \ '__halt_compiler(': 'void | void', |
| 1699 | \ 'hash_algos(': 'void | array', |
| 1700 | \ 'hash_file(': 'string algo, string filename [, bool raw_output] | string', |
| 1701 | \ 'hash_final(': 'resource context [, bool raw_output] | string', |
| 1702 | \ 'hash_hmac_file(': 'string algo, string filename, string key [, bool raw_output] | string', |
| 1703 | \ 'hash_hmac(': 'string algo, string data, string key [, bool raw_output] | string', |
| 1704 | \ 'hash(': 'string algo, string data [, bool raw_output] | string', |
| 1705 | \ 'hash_init(': 'string algo [, int options, string key] | resource', |
| 1706 | \ 'hash_update_file(': 'resource context, string filename [, resource context] | bool', |
| 1707 | \ 'hash_update(': 'resource context, string data | bool', |
| 1708 | \ 'hash_update_stream(': 'resource context, resource handle [, int length] | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1709 | \ 'header(': 'string string [, bool replace [, int http_response_code]] | void', |
| 1710 | \ 'headers_list(': 'void | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1711 | \ 'headers_sent(': '[string &file [, int &line]] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1712 | \ 'hebrevc(': 'string hebrew_text [, int max_chars_per_line] | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1713 | \ 'hebrev(': 'string hebrew_text [, int max_chars_per_line] | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1714 | \ 'hexdec(': 'string hex_string | number', |
| 1715 | \ 'highlight_file(': 'string filename [, bool return] | mixed', |
| 1716 | \ 'highlight_string(': 'string str [, bool return] | mixed', |
| 1717 | \ 'htmlentities(': 'string string [, int quote_style [, string charset]] | string', |
| 1718 | \ 'html_entity_decode(': 'string string [, int quote_style [, string charset]] | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1719 | \ 'htmlspecialchars_decode(': 'string string [, int quote_style] | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1720 | \ 'htmlspecialchars(': 'string string [, int quote_style [, string charset]] | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1721 | \ 'http_build_query(': 'array formdata [, string numeric_prefix] | string', |
| 1722 | \ 'hw_api_attribute(': '[string name [, string value]] | HW_API_Attribute', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1723 | \ 'hw_api_attribute->key(': 'void | string', |
| 1724 | \ 'hw_api_attribute->langdepvalue(': 'string language | string', |
| 1725 | \ 'hw_api_attribute->value(': 'void | string', |
| 1726 | \ 'hw_api_attribute->values(': 'void | array', |
| 1727 | \ 'hw_api->checkin(': 'array parameter | bool', |
| 1728 | \ 'hw_api->checkout(': 'array parameter | bool', |
| 1729 | \ 'hw_api->children(': 'array parameter | array', |
| 1730 | \ 'hw_api->content(': 'array parameter | HW_API_Content', |
| 1731 | \ 'hw_api_content->mimetype(': 'void | string', |
| 1732 | \ 'hw_api_content->read(': 'string buffer, int len | string', |
| 1733 | \ 'hw_api->copy(': 'array parameter | hw_api_object', |
| 1734 | \ 'hw_api->dbstat(': 'array parameter | hw_api_object', |
| 1735 | \ 'hw_api->dcstat(': 'array parameter | hw_api_object', |
| 1736 | \ 'hw_api->dstanchors(': 'array parameter | array', |
| 1737 | \ 'hw_api->dstofsrcanchor(': 'array parameter | hw_api_object', |
| 1738 | \ 'hw_api_error->count(': 'void | int', |
| 1739 | \ 'hw_api_error->reason(': 'void | HW_API_Reason', |
| 1740 | \ 'hw_api->find(': 'array parameter | array', |
| 1741 | \ 'hw_api->ftstat(': 'array parameter | hw_api_object', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1742 | \ 'hwapi_hgcsp(': 'string hostname [, int port] | HW_API', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1743 | \ 'hw_api->hwstat(': 'array parameter | hw_api_object', |
| 1744 | \ 'hw_api->identify(': 'array parameter | bool', |
| 1745 | \ 'hw_api->info(': 'array parameter | array', |
| 1746 | \ 'hw_api->insertanchor(': 'array parameter | hw_api_object', |
| 1747 | \ 'hw_api->insertcollection(': 'array parameter | hw_api_object', |
| 1748 | \ 'hw_api->insertdocument(': 'array parameter | hw_api_object', |
| 1749 | \ 'hw_api->insert(': 'array parameter | hw_api_object', |
| 1750 | \ 'hw_api->link(': 'array parameter | bool', |
| 1751 | \ 'hw_api->lock(': 'array parameter | bool', |
| 1752 | \ 'hw_api->move(': 'array parameter | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1753 | \ 'hw_api_content(': 'string content, string mimetype | HW_API_Content', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1754 | \ 'hw_api_object->assign(': 'array parameter | bool', |
| 1755 | \ 'hw_api_object->attreditable(': 'array parameter | bool', |
| 1756 | \ 'hw_api->objectbyanchor(': 'array parameter | hw_api_object', |
| 1757 | \ 'hw_api_object->count(': 'array parameter | int', |
| 1758 | \ 'hw_api->object(': 'array parameter | hw_api_object', |
| 1759 | \ 'hw_api_object->insert(': 'HW_API_Attribute attribute | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1760 | \ 'hw_api_object(': 'array parameter | hw_api_object', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1761 | \ 'hw_api_object->remove(': 'string name | bool', |
| 1762 | \ 'hw_api_object->title(': 'array parameter | string', |
| 1763 | \ 'hw_api_object->value(': 'string name | string', |
| 1764 | \ 'hw_api->parents(': 'array parameter | array', |
| 1765 | \ 'hw_api_reason->description(': 'void | string', |
| 1766 | \ 'hw_api_reason->type(': 'void | HW_API_Reason', |
| 1767 | \ 'hw_api->remove(': 'array parameter | bool', |
| 1768 | \ 'hw_api->replace(': 'array parameter | hw_api_object', |
| 1769 | \ 'hw_api->setcommittedversion(': 'array parameter | hw_api_object', |
| 1770 | \ 'hw_api->srcanchors(': 'array parameter | array', |
| 1771 | \ 'hw_api->srcsofdst(': 'array parameter | array', |
| 1772 | \ 'hw_api->unlock(': 'array parameter | bool', |
| 1773 | \ 'hw_api->user(': 'array parameter | hw_api_object', |
| 1774 | \ 'hw_api->userlist(': 'array parameter | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1775 | \ 'hw_array2objrec(': 'array object_array | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1776 | \ 'hw_changeobject(': 'int link, int objid, array attributes | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1777 | \ 'hw_children(': 'int connection, int objectID | array', |
| 1778 | \ 'hw_childrenobj(': 'int connection, int objectID | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1779 | \ 'hw_close(': 'int connection | bool', |
| 1780 | \ 'hw_connect(': 'string host, int port [, string username, string password] | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1781 | \ 'hw_connection_info(': 'int link | void', |
| 1782 | \ 'hw_cp(': 'int connection, array object_id_array, int destination_id | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1783 | \ 'hw_deleteobject(': 'int connection, int object_to_delete | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1784 | \ 'hw_docbyanchor(': 'int connection, int anchorID | int', |
| 1785 | \ 'hw_docbyanchorobj(': 'int connection, int anchorID | string', |
| 1786 | \ 'hw_document_attributes(': 'int hw_document | string', |
| 1787 | \ 'hw_document_bodytag(': 'int hw_document [, string prefix] | string', |
| 1788 | \ 'hw_document_content(': 'int hw_document | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1789 | \ 'hw_document_setcontent(': 'int hw_document, string content | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1790 | \ 'hw_document_size(': 'int hw_document | int', |
| 1791 | \ 'hw_dummy(': 'int link, int id, int msgid | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1792 | \ 'hw_edittext(': 'int connection, int hw_document | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1793 | \ 'hw_error(': 'int connection | int', |
| 1794 | \ 'hw_errormsg(': 'int connection | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1795 | \ 'hw_free_document(': 'int hw_document | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1796 | \ 'hw_getanchors(': 'int connection, int objectID | array', |
| 1797 | \ 'hw_getanchorsobj(': 'int connection, int objectID | array', |
| 1798 | \ 'hw_getandlock(': 'int connection, int objectID | string', |
| 1799 | \ 'hw_getchildcoll(': 'int connection, int objectID | array', |
| 1800 | \ 'hw_getchildcollobj(': 'int connection, int objectID | array', |
| 1801 | \ 'hw_getchilddoccoll(': 'int connection, int objectID | array', |
| 1802 | \ 'hw_getchilddoccollobj(': 'int connection, int objectID | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1803 | \ 'hw_getobjectbyquerycoll(': 'int connection, int objectID, string query, int max_hits | array', |
| 1804 | \ 'hw_getobjectbyquerycollobj(': 'int connection, int objectID, string query, int max_hits | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1805 | \ 'hw_getobjectbyquery(': 'int connection, string query, int max_hits | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1806 | \ 'hw_getobjectbyqueryobj(': 'int connection, string query, int max_hits | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1807 | \ 'hw_getobject(': 'int connection, mixed objectID [, string query] | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1808 | \ 'hw_getparents(': 'int connection, int objectID | array', |
| 1809 | \ 'hw_getparentsobj(': 'int connection, int objectID | array', |
| 1810 | \ 'hw_getrellink(': 'int link, int rootid, int sourceid, int destid | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1811 | \ 'hw_getremotechildren(': 'int connection, string object_record | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1812 | \ 'hw_getremote(': 'int connection, int objectID | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1813 | \ 'hw_getsrcbydestobj(': 'int connection, int objectID | array', |
| 1814 | \ 'hw_gettext(': 'int connection, int objectID [, mixed rootID/prefix] | int', |
| 1815 | \ 'hw_getusername(': 'int connection | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1816 | \ 'hw_identify(': 'int link, string username, string password | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1817 | \ 'hw_incollections(': 'int connection, array object_id_array, array collection_id_array, int return_collections | array', |
| 1818 | \ 'hw_info(': 'int connection | string', |
| 1819 | \ 'hw_inscoll(': 'int connection, int objectID, array object_array | int', |
| 1820 | \ 'hw_insdoc(': 'resource connection, int parentID, string object_record [, string text] | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1821 | \ 'hw_insertanchors(': 'int hwdoc, array anchorecs, array dest [, array urlprefixes] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1822 | \ 'hw_insertdocument(': 'int connection, int parent_id, int hw_document | int', |
| 1823 | \ 'hw_insertobject(': 'int connection, string object_rec, string parameter | int', |
| 1824 | \ 'hw_mapid(': 'int connection, int server_id, int object_id | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1825 | \ 'hw_modifyobject(': 'int connection, int object_to_change, array remove, array add [, int mode] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1826 | \ 'hw_mv(': 'int connection, array object_id_array, int source_id, int destination_id | int', |
| 1827 | \ 'hw_new_document(': 'string object_record, string document_data, int document_size | int', |
| 1828 | \ 'hw_objrec2array(': 'string object_record [, array format] | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1829 | \ 'hw_output_document(': 'int hw_document | bool', |
| 1830 | \ 'hw_pconnect(': 'string host, int port [, string username, string password] | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1831 | \ 'hw_pipedocument(': 'int connection, int objectID [, array url_prefixes] | int', |
| 1832 | \ 'hw_root(': ' | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1833 | \ 'hw_setlinkroot(': 'int link, int rootid | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1834 | \ 'hw_stat(': 'int link | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1835 | \ 'hw_unlock(': 'int connection, int objectID | bool', |
| 1836 | \ 'hw_who(': 'int connection | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1837 | \ 'hypot(': 'float x, float y | float', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1838 | \ 'i18n_loc_get_default(': 'void | string', |
| 1839 | \ 'i18n_loc_set_default(': 'string name | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1840 | \ 'ibase_add_user(': 'resource service_handle, string user_name, string password [, string first_name [, string middle_name [, string last_name]]] | bool', |
| 1841 | \ 'ibase_affected_rows(': '[resource link_identifier] | int', |
| 1842 | \ 'ibase_backup(': 'resource service_handle, string source_db, string dest_file [, int options [, bool verbose]] | mixed', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1843 | \ 'ibase_blob_add(': 'resource blob_handle, string data | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1844 | \ 'ibase_blob_cancel(': 'resource blob_handle | bool', |
| 1845 | \ 'ibase_blob_close(': 'resource blob_handle | mixed', |
| 1846 | \ 'ibase_blob_create(': '[resource link_identifier] | resource', |
| 1847 | \ 'ibase_blob_echo(': 'resource link_identifier, string blob_id | bool', |
| 1848 | \ 'ibase_blob_get(': 'resource blob_handle, int len | string', |
| 1849 | \ 'ibase_blob_import(': 'resource link_identifier, resource file_handle | string', |
| 1850 | \ 'ibase_blob_info(': 'resource link_identifier, string blob_id | array', |
| 1851 | \ 'ibase_blob_open(': 'resource link_identifier, string blob_id | resource', |
| 1852 | \ 'ibase_close(': '[resource connection_id] | bool', |
| 1853 | \ 'ibase_commit(': '[resource link_or_trans_identifier] | bool', |
| 1854 | \ 'ibase_commit_ret(': '[resource link_or_trans_identifier] | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1855 | \ 'ibase_connect(': '[string database [, string username [, string password [, string charset [, int buffers [, int dialect [, string role [, int sync]]]]]]]] | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1856 | \ 'ibase_db_info(': 'resource service_handle, string db, int action [, int argument] | string', |
| 1857 | \ 'ibase_delete_user(': 'resource service_handle, string user_name | bool', |
| 1858 | \ 'ibase_drop_db(': '[resource connection] | bool', |
| 1859 | \ 'ibase_errcode(': 'void | int', |
| 1860 | \ 'ibase_errmsg(': 'void | string', |
| 1861 | \ 'ibase_execute(': 'resource query [, mixed bind_arg [, mixed ...]] | resource', |
| 1862 | \ 'ibase_fetch_assoc(': 'resource result [, int fetch_flag] | array', |
| 1863 | \ 'ibase_fetch_object(': 'resource result_id [, int fetch_flag] | object', |
| 1864 | \ 'ibase_fetch_row(': 'resource result_identifier [, int fetch_flag] | array', |
| 1865 | \ 'ibase_field_info(': 'resource result, int field_number | array', |
| 1866 | \ 'ibase_free_event_handler(': 'resource event | bool', |
| 1867 | \ 'ibase_free_query(': 'resource query | bool', |
| 1868 | \ 'ibase_free_result(': 'resource result_identifier | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1869 | \ 'ibase_gen_id(': 'string generator [, int increment [, resource link_identifier]] | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1870 | \ 'ibase_maintain_db(': 'resource service_handle, string db, int action [, int argument] | bool', |
| 1871 | \ 'ibase_modify_user(': 'resource service_handle, string user_name, string password [, string first_name [, string middle_name [, string last_name]]] | bool', |
| 1872 | \ 'ibase_name_result(': 'resource result, string name | bool', |
| 1873 | \ 'ibase_num_fields(': 'resource result_id | int', |
| 1874 | \ 'ibase_num_params(': 'resource query | int', |
| 1875 | \ 'ibase_param_info(': 'resource query, int param_number | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1876 | \ 'ibase_pconnect(': '[string database [, string username [, string password [, string charset [, int buffers [, int dialect [, string role [, int sync]]]]]]]] | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1877 | \ 'ibase_prepare(': 'string query | resource', |
| 1878 | \ 'ibase_query(': '[resource link_identifier, string query [, int bind_args]] | resource', |
| 1879 | \ 'ibase_restore(': 'resource service_handle, string source_file, string dest_db [, int options [, bool verbose]] | mixed', |
| 1880 | \ 'ibase_rollback(': '[resource link_or_trans_identifier] | bool', |
| 1881 | \ 'ibase_rollback_ret(': '[resource link_or_trans_identifier] | bool', |
| 1882 | \ 'ibase_server_info(': 'resource service_handle, int action | string', |
| 1883 | \ 'ibase_service_attach(': 'string host, string dba_username, string dba_password | resource', |
| 1884 | \ 'ibase_service_detach(': 'resource service_handle | bool', |
| 1885 | \ 'ibase_set_event_handler(': 'callback event_handler, string event_name1 [, string event_name2 [, string ...]] | resource', |
| 1886 | \ 'ibase_timefmt(': 'string format [, int columntype] | int', |
| 1887 | \ 'ibase_trans(': '[int trans_args [, resource link_identifier]] | resource', |
| 1888 | \ 'ibase_wait_event(': 'string event_name1 [, string event_name2 [, string ...]] | string', |
| 1889 | \ 'icap_close(': 'int icap_stream [, int flags] | int', |
| 1890 | \ 'icap_create_calendar(': 'int stream_id, string calendar | string', |
| 1891 | \ 'icap_delete_calendar(': 'int stream_id, string calendar | string', |
| 1892 | \ 'icap_delete_event(': 'int stream_id, int uid | string', |
| 1893 | \ 'icap_fetch_event(': 'int stream_id, int event_id [, int options] | int', |
| 1894 | \ 'icap_list_alarms(': 'int stream_id, array date, array time | int', |
| 1895 | \ 'icap_list_events(': 'int stream_id, int begin_date [, int end_date] | array', |
| 1896 | \ 'icap_open(': 'string calendar, string username, string password, string options | resource', |
| 1897 | \ 'icap_rename_calendar(': 'int stream_id, string old_name, string new_name | string', |
| 1898 | \ 'icap_reopen(': 'int stream_id, string calendar [, int options] | int', |
| 1899 | \ 'icap_snooze(': 'int stream_id, int uid | string', |
| 1900 | \ 'icap_store_event(': 'int stream_id, object event | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1901 | \ 'iconv_get_encoding(': '[string type] | mixed', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1902 | \ 'iconv(': 'string in_charset, string out_charset, string str | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1903 | \ 'iconv_mime_decode_headers(': 'string encoded_headers [, int mode [, string charset]] | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1904 | \ 'iconv_mime_decode(': 'string encoded_header [, int mode [, string charset]] | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1905 | \ 'iconv_mime_encode(': 'string field_name, string field_value [, array preferences] | string', |
| 1906 | \ 'iconv_set_encoding(': 'string type, string charset | bool', |
| 1907 | \ 'iconv_strlen(': 'string str [, string charset] | int', |
| 1908 | \ 'iconv_strpos(': 'string haystack, string needle [, int offset [, string charset]] | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1909 | \ 'iconv_strrpos(': 'string haystack, string needle [, string charset] | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1910 | \ 'iconv_substr(': 'string str, int offset [, int length [, string charset]] | string', |
| 1911 | \ 'id3_get_frame_long_name(': 'string frameId | string', |
| 1912 | \ 'id3_get_frame_short_name(': 'string frameId | string', |
| 1913 | \ 'id3_get_genre_id(': 'string genre | int', |
| 1914 | \ 'id3_get_genre_list(': 'void | array', |
| 1915 | \ 'id3_get_genre_name(': 'int genre_id | string', |
| 1916 | \ 'id3_get_tag(': 'string filename [, int version] | array', |
| 1917 | \ 'id3_get_version(': 'string filename | int', |
| 1918 | \ 'id3_remove_tag(': 'string filename [, int version] | bool', |
| 1919 | \ 'id3_set_tag(': 'string filename, array tag [, int version] | bool', |
| 1920 | \ 'idate(': 'string format [, int timestamp] | int', |
| 1921 | \ 'ifx_affected_rows(': 'int result_id | int', |
| 1922 | \ 'ifx_blobinfile_mode(': 'int mode | void', |
| 1923 | \ 'ifx_byteasvarchar(': 'int mode | void', |
| 1924 | \ 'ifx_close(': '[int link_identifier] | int', |
| 1925 | \ 'ifx_connect(': '[string database [, string userid [, string password]]] | int', |
| 1926 | \ 'ifx_copy_blob(': 'int bid | int', |
| 1927 | \ 'ifx_create_blob(': 'int type, int mode, string param | int', |
| 1928 | \ 'ifx_create_char(': 'string param | int', |
| 1929 | \ 'ifx_do(': 'int result_id | int', |
| 1930 | \ 'ifx_error(': 'void | string', |
| 1931 | \ 'ifx_errormsg(': '[int errorcode] | string', |
| 1932 | \ 'ifx_fetch_row(': 'int result_id [, mixed position] | array', |
| 1933 | \ 'ifx_fieldproperties(': 'int result_id | array', |
| 1934 | \ 'ifx_fieldtypes(': 'int result_id | array', |
| 1935 | \ 'ifx_free_blob(': 'int bid | int', |
| 1936 | \ 'ifx_free_char(': 'int bid | int', |
| 1937 | \ 'ifx_free_result(': 'int result_id | int', |
| 1938 | \ 'ifx_get_blob(': 'int bid | int', |
| 1939 | \ 'ifx_get_char(': 'int bid | int', |
| 1940 | \ 'ifx_getsqlca(': 'int result_id | array', |
| 1941 | \ 'ifx_htmltbl_result(': 'int result_id [, string html_table_options] | int', |
| 1942 | \ 'ifx_nullformat(': 'int mode | void', |
| 1943 | \ 'ifx_num_fields(': 'int result_id | int', |
| 1944 | \ 'ifx_num_rows(': 'int result_id | int', |
| 1945 | \ 'ifx_pconnect(': '[string database [, string userid [, string password]]] | int', |
| 1946 | \ 'ifx_prepare(': 'string query, int conn_id [, int cursor_def, mixed blobidarray] | int', |
| 1947 | \ 'ifx_query(': 'string query, int link_identifier [, int cursor_type [, mixed blobidarray]] | int', |
| 1948 | \ 'ifx_textasvarchar(': 'int mode | void', |
| 1949 | \ 'ifx_update_blob(': 'int bid, string content | bool', |
| 1950 | \ 'ifx_update_char(': 'int bid, string content | int', |
| 1951 | \ 'ifxus_close_slob(': 'int bid | int', |
| 1952 | \ 'ifxus_create_slob(': 'int mode | int', |
| 1953 | \ 'ifxus_free_slob(': 'int bid | int', |
| 1954 | \ 'ifxus_open_slob(': 'int bid, int mode | int', |
| 1955 | \ 'ifxus_read_slob(': 'int bid, int nbytes | int', |
| 1956 | \ 'ifxus_seek_slob(': 'int bid, int mode, int offset | int', |
| 1957 | \ 'ifxus_tell_slob(': 'int bid | int', |
| 1958 | \ 'ifxus_write_slob(': 'int bid, string content | int', |
| 1959 | \ 'ignore_user_abort(': '[bool setting] | int', |
| 1960 | \ 'iis_add_server(': 'string path, string comment, string server_ip, int port, string host_name, int rights, int start_server | int', |
| 1961 | \ 'iis_get_dir_security(': 'int server_instance, string virtual_path | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1962 | \ 'iis_get_script_map(': 'int server_instance, string virtual_path, string script_extension | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1963 | \ 'iis_get_server_by_comment(': 'string comment | int', |
| 1964 | \ 'iis_get_server_by_path(': 'string path | int', |
| 1965 | \ 'iis_get_server_rights(': 'int server_instance, string virtual_path | int', |
| 1966 | \ 'iis_get_service_state(': 'string service_id | int', |
| 1967 | \ 'iis_remove_server(': 'int server_instance | int', |
| 1968 | \ 'iis_set_app_settings(': 'int server_instance, string virtual_path, string application_scope | int', |
| 1969 | \ 'iis_set_dir_security(': 'int server_instance, string virtual_path, int directory_flags | int', |
| 1970 | \ 'iis_set_script_map(': 'int server_instance, string virtual_path, string script_extension, string engine_path, int allow_scripting | int', |
| 1971 | \ 'iis_set_server_rights(': 'int server_instance, string virtual_path, int directory_flags | int', |
| 1972 | \ 'iis_start_server(': 'int server_instance | int', |
| 1973 | \ 'iis_start_service(': 'string service_id | int', |
| 1974 | \ 'iis_stop_server(': 'int server_instance | int', |
| 1975 | \ 'iis_stop_service(': 'string service_id | int', |
| 1976 | \ 'image2wbmp(': 'resource image [, string filename [, int threshold]] | int', |
| 1977 | \ 'imagealphablending(': 'resource image, bool blendmode | bool', |
| 1978 | \ 'imageantialias(': 'resource im, bool on | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1979 | \ 'imagearc(': 'resource image, int cx, int cy, int w, int h, int s, int e, int color | bool', |
| 1980 | \ 'imagechar(': 'resource image, int font, int x, int y, string c, int color | bool', |
| 1981 | \ 'imagecharup(': 'resource image, int font, int x, int y, string c, int color | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1982 | \ 'imagecolorallocatealpha(': 'resource image, int red, int green, int blue, int alpha | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1983 | \ 'imagecolorallocate(': 'resource image, int red, int green, int blue | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1984 | \ 'imagecolorat(': 'resource image, int x, int y | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1985 | \ 'imagecolorclosestalpha(': 'resource image, int red, int green, int blue, int alpha | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1986 | \ 'imagecolorclosest(': 'resource image, int red, int green, int blue | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1987 | \ 'imagecolorclosesthwb(': 'resource image, int red, int green, int blue | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1988 | \ 'imagecolordeallocate(': 'resource image, int color | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1989 | \ 'imagecolorexactalpha(': 'resource image, int red, int green, int blue, int alpha | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1990 | \ 'imagecolorexact(': 'resource image, int red, int green, int blue | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1991 | \ 'imagecolormatch(': 'resource image1, resource image2 | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1992 | \ 'imagecolorresolvealpha(': 'resource image, int red, int green, int blue, int alpha | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1993 | \ 'imagecolorresolve(': 'resource image, int red, int green, int blue | int', |
| 1994 | \ 'imagecolorset(': 'resource image, int index, int red, int green, int blue | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1995 | \ 'imagecolorsforindex(': 'resource image, int index | array', |
| 1996 | \ 'imagecolorstotal(': 'resource image | int', |
| 1997 | \ 'imagecolortransparent(': 'resource image [, int color] | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 1998 | \ 'imageconvolution(': 'resource image, array matrix3x3, float div, float offset | bool', |
| 1999 | \ 'imagecopy(': 'resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h | bool', |
| 2000 | \ 'imagecopymergegray(': 'resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct | bool', |
| 2001 | \ 'imagecopymerge(': 'resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2002 | \ 'imagecopyresampled(': 'resource dst_image, resource src_image, int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2003 | \ 'imagecopyresized(': 'resource dst_image, resource src_image, int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2004 | \ 'imagecreatefromgd2(': 'string filename | resource', |
| 2005 | \ 'imagecreatefromgd2part(': 'string filename, int srcX, int srcY, int width, int height | resource', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2006 | \ 'imagecreatefromgd(': 'string filename | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2007 | \ 'imagecreatefromgif(': 'string filename | resource', |
| 2008 | \ 'imagecreatefromjpeg(': 'string filename | resource', |
| 2009 | \ 'imagecreatefrompng(': 'string filename | resource', |
| 2010 | \ 'imagecreatefromstring(': 'string image | resource', |
| 2011 | \ 'imagecreatefromwbmp(': 'string filename | resource', |
| 2012 | \ 'imagecreatefromxbm(': 'string filename | resource', |
| 2013 | \ 'imagecreatefromxpm(': 'string filename | resource', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2014 | \ 'imagecreate(': 'int x_size, int y_size | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2015 | \ 'imagecreatetruecolor(': 'int x_size, int y_size | resource', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2016 | \ 'imagedashedline(': 'resource image, int x1, int y1, int x2, int y2, int color | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2017 | \ 'imagedestroy(': 'resource image | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2018 | \ 'imageellipse(': 'resource image, int cx, int cy, int w, int h, int color | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2019 | \ 'imagefilledarc(': 'resource image, int cx, int cy, int w, int h, int s, int e, int color, int style | bool', |
| 2020 | \ 'imagefilledellipse(': 'resource image, int cx, int cy, int w, int h, int color | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2021 | \ 'imagefilledpolygon(': 'resource image, array points, int num_points, int color | bool', |
| 2022 | \ 'imagefilledrectangle(': 'resource image, int x1, int y1, int x2, int y2, int color | bool', |
| 2023 | \ 'imagefill(': 'resource image, int x, int y, int color | bool', |
| 2024 | \ 'imagefilltoborder(': 'resource image, int x, int y, int border, int color | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2025 | \ 'imagefilter(': 'resource src_im, int filtertype [, int arg1 [, int arg2 [, int arg3]]] | bool', |
| 2026 | \ 'imagefontheight(': 'int font | int', |
| 2027 | \ 'imagefontwidth(': 'int font | int', |
| 2028 | \ 'imageftbbox(': 'float size, float angle, string font_file, string text [, array extrainfo] | array', |
| 2029 | \ 'imagefttext(': 'resource image, float size, float angle, int x, int y, int col, string font_file, string text [, array extrainfo] | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2030 | \ 'imagegammacorrect(': 'resource image, float inputgamma, float outputgamma | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2031 | \ 'imagegd2(': 'resource image [, string filename [, int chunk_size [, int type]]] | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2032 | \ 'imagegd(': 'resource image [, string filename] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2033 | \ 'imagegif(': 'resource image [, string filename] | bool', |
| 2034 | \ 'imageinterlace(': 'resource image [, int interlace] | int', |
| 2035 | \ 'imageistruecolor(': 'resource image | bool', |
| 2036 | \ 'imagejpeg(': 'resource image [, string filename [, int quality]] | bool', |
| 2037 | \ 'imagelayereffect(': 'resource image, int effect | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2038 | \ 'imageline(': 'resource image, int x1, int y1, int x2, int y2, int color | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2039 | \ 'imageloadfont(': 'string file | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2040 | \ 'imagepalettecopy(': 'resource destination, resource source | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2041 | \ 'imagepng(': 'resource image [, string filename] | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2042 | \ 'imagepolygon(': 'resource image, array points, int num_points, int color | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2043 | \ 'imagepsbbox(': 'string text, int font, int size [, int space, int tightness, float angle] | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2044 | \ 'imagepscopyfont(': 'resource fontindex | int', |
| 2045 | \ 'imagepsencodefont(': 'resource font_index, string encodingfile | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2046 | \ 'imagepsextendfont(': 'int font_index, float extend | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2047 | \ 'imagepsfreefont(': 'resource fontindex | bool', |
| 2048 | \ 'imagepsloadfont(': 'string filename | resource', |
| 2049 | \ 'imagepsslantfont(': 'resource font_index, float slant | bool', |
| 2050 | \ 'imagepstext(': 'resource image, string text, resource font, int size, int foreground, int background, int x, int y [, int space, int tightness, float angle, int antialias_steps] | array', |
| 2051 | \ 'imagerectangle(': 'resource image, int x1, int y1, int x2, int y2, int col | bool', |
| 2052 | \ 'imagerotate(': 'resource src_im, float angle, int bgd_color [, int ignore_transparent] | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2053 | \ 'imagesavealpha(': 'resource image, bool saveflag | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2054 | \ 'imagesetbrush(': 'resource image, resource brush | bool', |
| 2055 | \ 'imagesetpixel(': 'resource image, int x, int y, int color | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2056 | \ 'imagesetstyle(': 'resource image, array style | bool', |
| 2057 | \ 'imagesetthickness(': 'resource image, int thickness | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2058 | \ 'imagesettile(': 'resource image, resource tile | bool', |
| 2059 | \ 'imagestring(': 'resource image, int font, int x, int y, string s, int col | bool', |
| 2060 | \ 'imagestringup(': 'resource image, int font, int x, int y, string s, int col | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2061 | \ 'imagesx(': 'resource image | int', |
| 2062 | \ 'imagesy(': 'resource image | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2063 | \ 'imagetruecolortopalette(': 'resource image, bool dither, int ncolors | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2064 | \ 'imagettfbbox(': 'float size, float angle, string fontfile, string text | array', |
| 2065 | \ 'imagettftext(': 'resource image, float size, float angle, int x, int y, int color, string fontfile, string text | array', |
| 2066 | \ 'imagetypes(': 'void | int', |
| 2067 | \ 'image_type_to_extension(': 'int imagetype [, bool include_dot] | string', |
| 2068 | \ 'image_type_to_mime_type(': 'int imagetype | string', |
| 2069 | \ 'imagewbmp(': 'resource image [, string filename [, int foreground]] | bool', |
| 2070 | \ 'imagexbm(': 'resource image, string filename [, int foreground] | bool', |
| 2071 | \ 'imap_8bit(': 'string string | string', |
| 2072 | \ 'imap_alerts(': 'void | array', |
| 2073 | \ 'imap_append(': 'resource imap_stream, string mbox, string message [, string options] | bool', |
| 2074 | \ 'imap_base64(': 'string text | string', |
| 2075 | \ 'imap_binary(': 'string string | string', |
| 2076 | \ 'imap_body(': 'resource imap_stream, int msg_number [, int options] | string', |
| 2077 | \ 'imap_bodystruct(': 'resource stream_id, int msg_no, string section | object', |
| 2078 | \ 'imap_check(': 'resource imap_stream | object', |
| 2079 | \ 'imap_clearflag_full(': 'resource stream, string sequence, string flag [, string options] | bool', |
| 2080 | \ 'imap_close(': 'resource imap_stream [, int flag] | bool', |
| 2081 | \ 'imap_createmailbox(': 'resource imap_stream, string mbox | bool', |
| 2082 | \ 'imap_delete(': 'int imap_stream, int msg_number [, int options] | bool', |
| 2083 | \ 'imap_deletemailbox(': 'resource imap_stream, string mbox | bool', |
| 2084 | \ 'imap_errors(': 'void | array', |
| 2085 | \ 'imap_expunge(': 'resource imap_stream | bool', |
| 2086 | \ 'imap_fetchbody(': 'resource imap_stream, int msg_number, string part_number [, int options] | string', |
| 2087 | \ 'imap_fetchheader(': 'resource imap_stream, int msgno [, int options] | string', |
| 2088 | \ 'imap_fetch_overview(': 'resource imap_stream, string sequence [, int options] | array', |
| 2089 | \ 'imap_fetchstructure(': 'resource imap_stream, int msg_number [, int options] | object', |
| 2090 | \ 'imap_getacl(': 'resource stream_id, string mailbox | array', |
| 2091 | \ 'imap_getmailboxes(': 'resource imap_stream, string ref, string pattern | array', |
| 2092 | \ 'imap_get_quota(': 'resource imap_stream, string quota_root | array', |
| 2093 | \ 'imap_get_quotaroot(': 'resource imap_stream, string quota_root | array', |
| 2094 | \ 'imap_getsubscribed(': 'resource imap_stream, string ref, string pattern | array', |
| 2095 | \ 'imap_headerinfo(': 'resource imap_stream, int msg_number [, int fromlength [, int subjectlength [, string defaulthost]]] | object', |
| 2096 | \ 'imap_headers(': 'resource imap_stream | array', |
| 2097 | \ 'imap_last_error(': 'void | string', |
| 2098 | \ 'imap_list(': 'resource imap_stream, string ref, string pattern | array', |
| 2099 | \ 'imap_listscan(': 'resource imap_stream, string ref, string pattern, string content | array', |
| 2100 | \ 'imap_lsub(': 'resource imap_stream, string ref, string pattern | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2101 | \ 'imap_mailboxmsginfo(': 'resource imap_stream | object', |
| 2102 | \ 'imap_mail_compose(': 'array envelope, array body | string', |
| 2103 | \ 'imap_mail_copy(': 'resource imap_stream, string msglist, string mbox [, int options] | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2104 | \ 'imap_mail(': 'string to, string subject, string message [, string additional_headers [, string cc [, string bcc [, string rpath]]]] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2105 | \ 'imap_mail_move(': 'resource imap_stream, string msglist, string mbox [, int options] | bool', |
| 2106 | \ 'imap_mime_header_decode(': 'string text | array', |
| 2107 | \ 'imap_msgno(': 'resource imap_stream, int uid | int', |
| 2108 | \ 'imap_num_msg(': 'resource imap_stream | int', |
| 2109 | \ 'imap_num_recent(': 'resource imap_stream | int', |
| 2110 | \ 'imap_open(': 'string mailbox, string username, string password [, int options] | resource', |
| 2111 | \ 'imap_ping(': 'resource imap_stream | bool', |
| 2112 | \ 'imap_qprint(': 'string string | string', |
| 2113 | \ 'imap_renamemailbox(': 'resource imap_stream, string old_mbox, string new_mbox | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2114 | \ 'imap_reopen(': 'resource imap_stream, string mailbox [, int options] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2115 | \ 'imap_rfc822_parse_adrlist(': 'string address, string default_host | array', |
| 2116 | \ 'imap_rfc822_parse_headers(': 'string headers [, string defaulthost] | object', |
| 2117 | \ 'imap_rfc822_write_address(': 'string mailbox, string host, string personal | string', |
| 2118 | \ 'imap_search(': 'resource imap_stream, string criteria [, int options [, string charset]] | array', |
| 2119 | \ 'imap_setacl(': 'resource stream_id, string mailbox, string id, string rights | bool', |
| 2120 | \ 'imap_setflag_full(': 'resource stream, string sequence, string flag [, string options] | bool', |
| 2121 | \ 'imap_set_quota(': 'resource imap_stream, string quota_root, int quota_limit | bool', |
| 2122 | \ 'imap_sort(': 'resource stream, int criteria, int reverse [, int options [, string search_criteria [, string charset]]] | array', |
| 2123 | \ 'imap_status(': 'resource imap_stream, string mailbox, int options | object', |
| 2124 | \ 'imap_subscribe(': 'resource imap_stream, string mbox | bool', |
| 2125 | \ 'imap_thread(': 'resource stream_id [, int options] | array', |
| 2126 | \ 'imap_timeout(': 'int timeout_type [, int timeout] | mixed', |
| 2127 | \ 'imap_uid(': 'resource imap_stream, int msgno | int', |
| 2128 | \ 'imap_undelete(': 'resource imap_stream, int msg_number [, int flags] | bool', |
| 2129 | \ 'imap_unsubscribe(': 'string imap_stream, string mbox | bool', |
| 2130 | \ 'imap_utf7_decode(': 'string text | string', |
| 2131 | \ 'imap_utf7_encode(': 'string data | string', |
| 2132 | \ 'imap_utf8(': 'string mime_encoded_text | string', |
| 2133 | \ 'implode(': 'string glue, array pieces | string', |
| 2134 | \ 'import_request_variables(': 'string types [, string prefix] | bool', |
| 2135 | \ 'in_array(': 'mixed needle, array haystack [, bool strict] | bool', |
| 2136 | \ 'inet_ntop(': 'string in_addr | string', |
| 2137 | \ 'inet_pton(': 'string address | string', |
| 2138 | \ 'ingres_autocommit(': '[resource link] | bool', |
| 2139 | \ 'ingres_close(': '[resource link] | bool', |
| 2140 | \ 'ingres_commit(': '[resource link] | bool', |
| 2141 | \ 'ingres_connect(': '[string database [, string username [, string password]]] | resource', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2142 | \ 'ingres_cursor(': '[resource link] | string', |
| 2143 | \ 'ingres_errno(': '[resource link] | int', |
| 2144 | \ 'ingres_error(': '[resource link] | string', |
| 2145 | \ 'ingres_errsqlstate(': '[resource link] | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2146 | \ 'ingres_fetch_array(': '[int result_type [, resource link]] | array', |
| 2147 | \ 'ingres_fetch_object(': '[int result_type [, resource link]] | object', |
| 2148 | \ 'ingres_fetch_row(': '[resource link] | array', |
| 2149 | \ 'ingres_field_length(': 'int index [, resource link] | int', |
| 2150 | \ 'ingres_field_name(': 'int index [, resource link] | string', |
| 2151 | \ 'ingres_field_nullable(': 'int index [, resource link] | bool', |
| 2152 | \ 'ingres_field_precision(': 'int index [, resource link] | int', |
| 2153 | \ 'ingres_field_scale(': 'int index [, resource link] | int', |
| 2154 | \ 'ingres_field_type(': 'int index [, resource link] | string', |
| 2155 | \ 'ingres_num_fields(': '[resource link] | int', |
| 2156 | \ 'ingres_num_rows(': '[resource link] | int', |
| 2157 | \ 'ingres_pconnect(': '[string database [, string username [, string password]]] | resource', |
| 2158 | \ 'ingres_query(': 'string query [, resource link] | bool', |
| 2159 | \ 'ingres_rollback(': '[resource link] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2160 | \ 'ini_get_all(': '[string extension] | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2161 | \ 'ini_get(': 'string varname | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2162 | \ 'ini_restore(': 'string varname | void', |
| 2163 | \ 'ini_set(': 'string varname, string newvalue | string', |
| 2164 | \ 'interface_exists(': 'string interface_name [, bool autoload] | bool', |
| 2165 | \ 'intval(': 'mixed var [, int base] | int', |
| 2166 | \ 'ip2long(': 'string ip_address | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2167 | \ 'iptcembed(': 'string iptcdata, string jpeg_file_name [, int spool] | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2168 | \ 'iptcparse(': 'string iptcblock | array', |
| 2169 | \ 'ircg_channel_mode(': 'resource connection, string channel, string mode_spec, string nick | bool', |
| 2170 | \ 'ircg_disconnect(': 'resource connection, string reason | bool', |
| 2171 | \ 'ircg_eval_ecmascript_params(': 'string params | array', |
| 2172 | \ 'ircg_fetch_error_msg(': 'resource connection | array', |
| 2173 | \ 'ircg_get_username(': 'resource connection | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2174 | \ 'ircg_html_encode(': 'string html_string [, bool auto_links [, bool conv_br]] | string', |
| 2175 | \ 'ircg_ignore_add(': 'resource connection, string nick | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2176 | \ 'ircg_ignore_del(': 'resource connection, string nick | bool', |
| 2177 | \ 'ircg_invite(': 'resource connection, string channel, string nickname | bool', |
| 2178 | \ 'ircg_is_conn_alive(': 'resource connection | bool', |
| 2179 | \ 'ircg_join(': 'resource connection, string channel [, string key] | bool', |
| 2180 | \ 'ircg_kick(': 'resource connection, string channel, string nick, string reason | bool', |
| 2181 | \ 'ircg_list(': 'resource connection, string channel | bool', |
| 2182 | \ 'ircg_lookup_format_messages(': 'string name | bool', |
| 2183 | \ 'ircg_lusers(': 'resource connection | bool', |
| 2184 | \ 'ircg_msg(': 'resource connection, string recipient, string message [, bool suppress] | bool', |
| 2185 | \ 'ircg_names(': 'int connection, string channel [, string target] | bool', |
| 2186 | \ 'ircg_nick(': 'resource connection, string nick | bool', |
| 2187 | \ 'ircg_nickname_escape(': 'string nick | string', |
| 2188 | \ 'ircg_nickname_unescape(': 'string nick | string', |
| 2189 | \ 'ircg_notice(': 'resource connection, string recipient, string message | bool', |
| 2190 | \ 'ircg_oper(': 'resource connection, string name, string password | bool', |
| 2191 | \ 'ircg_part(': 'resource connection, string channel | bool', |
| 2192 | \ 'ircg_pconnect(': 'string username [, string server_ip [, int server_port [, string msg_format [, array ctcp_messages [, array user_settings [, bool bailout_on_trivial]]]]]] | resource', |
| 2193 | \ 'ircg_register_format_messages(': 'string name, array messages | bool', |
| 2194 | \ 'ircg_set_current(': 'resource connection | bool', |
| 2195 | \ 'ircg_set_file(': 'resource connection, string path | bool', |
| 2196 | \ 'ircg_set_on_die(': 'resource connection, string host, int port, string data | bool', |
| 2197 | \ 'ircg_topic(': 'resource connection, string channel, string new_topic | bool', |
| 2198 | \ 'ircg_who(': 'resource connection, string mask [, bool ops_only] | bool', |
| 2199 | \ 'ircg_whois(': 'resource connection, string nick | bool', |
| 2200 | \ 'is_a(': 'object object, string class_name | bool', |
| 2201 | \ 'is_array(': 'mixed var | bool', |
| 2202 | \ 'is_bool(': 'mixed var | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2203 | \ 'is_callable(': 'mixed var [, bool syntax_only [, string &callable_name]] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2204 | \ 'is_dir(': 'string filename | bool', |
| 2205 | \ 'is_executable(': 'string filename | bool', |
| 2206 | \ 'is_file(': 'string filename | bool', |
| 2207 | \ 'is_finite(': 'float val | bool', |
| 2208 | \ 'is_float(': 'mixed var | bool', |
| 2209 | \ 'is_infinite(': 'float val | bool', |
| 2210 | \ 'is_int(': 'mixed var | bool', |
| 2211 | \ 'is_link(': 'string filename | bool', |
| 2212 | \ 'is_nan(': 'float val | bool', |
| 2213 | \ 'is_null(': 'mixed var | bool', |
| 2214 | \ 'is_numeric(': 'mixed var | bool', |
| 2215 | \ 'is_object(': 'mixed var | bool', |
| 2216 | \ 'is_readable(': 'string filename | bool', |
| 2217 | \ 'is_resource(': 'mixed var | bool', |
| 2218 | \ 'is_scalar(': 'mixed var | bool', |
| 2219 | \ 'isset(': 'mixed var [, mixed var [, ...]] | bool', |
| 2220 | \ 'is_soap_fault(': 'mixed obj | bool', |
| 2221 | \ 'is_string(': 'mixed var | bool', |
| 2222 | \ 'is_subclass_of(': 'mixed object, string class_name | bool', |
| 2223 | \ 'is_uploaded_file(': 'string filename | bool', |
| 2224 | \ 'is_writable(': 'string filename | bool', |
| 2225 | \ 'iterator_count(': 'IteratorAggregate iterator | int', |
| 2226 | \ 'iterator_to_array(': 'IteratorAggregate iterator | array', |
| 2227 | \ 'java_last_exception_clear(': 'void | void', |
| 2228 | \ 'java_last_exception_get(': 'void | object', |
| 2229 | \ 'jddayofweek(': 'int julianday [, int mode] | mixed', |
| 2230 | \ 'jdmonthname(': 'int julianday, int mode | string', |
| 2231 | \ 'jdtofrench(': 'int juliandaycount | string', |
| 2232 | \ 'jdtogregorian(': 'int julianday | string', |
| 2233 | \ 'jdtojewish(': 'int juliandaycount [, bool hebrew [, int fl]] | string', |
| 2234 | \ 'jdtojulian(': 'int julianday | string', |
| 2235 | \ 'jdtounix(': 'int jday | int', |
| 2236 | \ 'jewishtojd(': 'int month, int day, int year | int', |
| 2237 | \ 'jpeg2wbmp(': 'string jpegname, string wbmpname, int d_height, int d_width, int threshold | int', |
| 2238 | \ 'juliantojd(': 'int month, int day, int year | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2239 | \ 'kadm5_chpass_principal(': 'resource handle, string principal, string password | bool', |
| 2240 | \ 'kadm5_create_principal(': 'resource handle, string principal [, string password [, array options]] | bool', |
| 2241 | \ 'kadm5_delete_principal(': 'resource handle, string principal | bool', |
| 2242 | \ 'kadm5_destroy(': 'resource handle | bool', |
| 2243 | \ 'kadm5_flush(': 'resource handle | bool', |
| 2244 | \ 'kadm5_get_policies(': 'resource handle | array', |
| 2245 | \ 'kadm5_get_principal(': 'resource handle, string principal | array', |
| 2246 | \ 'kadm5_get_principals(': 'resource handle | array', |
| 2247 | \ 'kadm5_init_with_password(': 'string admin_server, string realm, string principal, string password | resource', |
| 2248 | \ 'kadm5_modify_principal(': 'resource handle, string principal, array options | bool', |
| 2249 | \ 'key(': 'array &array | mixed', |
| 2250 | \ 'krsort(': 'array &array [, int sort_flags] | bool', |
| 2251 | \ 'ksort(': 'array &array [, int sort_flags] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2252 | \ 'lcg_value(': 'void | float', |
| 2253 | \ 'ldap_8859_to_t61(': 'string value | string', |
| 2254 | \ 'ldap_add(': 'resource link_identifier, string dn, array entry | bool', |
| 2255 | \ 'ldap_bind(': 'resource link_identifier [, string bind_rdn [, string bind_password]] | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2256 | \ 'ldap_compare(': 'resource link_identifier, string dn, string attribute, string value | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2257 | \ 'ldap_connect(': '[string hostname [, int port]] | resource', |
| 2258 | \ 'ldap_count_entries(': 'resource link_identifier, resource result_identifier | int', |
| 2259 | \ 'ldap_delete(': 'resource link_identifier, string dn | bool', |
| 2260 | \ 'ldap_dn2ufn(': 'string dn | string', |
| 2261 | \ 'ldap_err2str(': 'int errno | string', |
| 2262 | \ 'ldap_errno(': 'resource link_identifier | int', |
| 2263 | \ 'ldap_error(': 'resource link_identifier | string', |
| 2264 | \ 'ldap_explode_dn(': 'string dn, int with_attrib | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2265 | \ 'ldap_first_attribute(': 'resource link_identifier, resource result_entry_identifier, int &ber_identifier | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2266 | \ 'ldap_first_entry(': 'resource link_identifier, resource result_identifier | resource', |
| 2267 | \ 'ldap_first_reference(': 'resource link, resource result | resource', |
| 2268 | \ 'ldap_free_result(': 'resource result_identifier | bool', |
| 2269 | \ 'ldap_get_attributes(': 'resource link_identifier, resource result_entry_identifier | array', |
| 2270 | \ 'ldap_get_dn(': 'resource link_identifier, resource result_entry_identifier | string', |
| 2271 | \ 'ldap_get_entries(': 'resource link_identifier, resource result_identifier | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2272 | \ 'ldap_get_option(': 'resource link_identifier, int option, mixed &retval | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2273 | \ 'ldap_get_values(': 'resource link_identifier, resource result_entry_identifier, string attribute | array', |
| 2274 | \ 'ldap_get_values_len(': 'resource link_identifier, resource result_entry_identifier, string attribute | array', |
| 2275 | \ 'ldap_list(': 'resource link_identifier, string base_dn, string filter [, array attributes [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]] | resource', |
| 2276 | \ 'ldap_mod_add(': 'resource link_identifier, string dn, array entry | bool', |
| 2277 | \ 'ldap_mod_del(': 'resource link_identifier, string dn, array entry | bool', |
| 2278 | \ 'ldap_modify(': 'resource link_identifier, string dn, array entry | bool', |
| 2279 | \ 'ldap_mod_replace(': 'resource link_identifier, string dn, array entry | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2280 | \ 'ldap_next_attribute(': 'resource link_identifier, resource result_entry_identifier, resource &ber_identifier | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2281 | \ 'ldap_next_entry(': 'resource link_identifier, resource result_entry_identifier | resource', |
| 2282 | \ 'ldap_next_reference(': 'resource link, resource entry | resource', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2283 | \ 'ldap_parse_reference(': 'resource link, resource entry, array &referrals | bool', |
| 2284 | \ 'ldap_parse_result(': 'resource link, resource result, int &errcode [, string &matcheddn [, string &errmsg [, array &referrals]]] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2285 | \ 'ldap_read(': 'resource link_identifier, string base_dn, string filter [, array attributes [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]] | resource', |
| 2286 | \ 'ldap_rename(': 'resource link_identifier, string dn, string newrdn, string newparent, bool deleteoldrdn | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2287 | \ 'ldap_sasl_bind(': 'resource link [, string binddn [, string password [, string sasl_mech [, string sasl_realm [, string sasl_authz_id [, string props]]]]]] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2288 | \ 'ldap_search(': 'resource link_identifier, string base_dn, string filter [, array attributes [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]] | resource', |
| 2289 | \ 'ldap_set_option(': 'resource link_identifier, int option, mixed newval | bool', |
| 2290 | \ 'ldap_set_rebind_proc(': 'resource link, callback callback | bool', |
| 2291 | \ 'ldap_sort(': 'resource link, resource result, string sortfilter | bool', |
| 2292 | \ 'ldap_start_tls(': 'resource link | bool', |
| 2293 | \ 'ldap_t61_to_8859(': 'string value | string', |
| 2294 | \ 'ldap_unbind(': 'resource link_identifier | bool', |
| 2295 | \ 'levenshtein(': 'string str1, string str2 [, int cost_ins [, int cost_rep, int cost_del]] | int', |
| 2296 | \ 'libxml_clear_errors(': 'void | void', |
| 2297 | \ 'libxml_get_errors(': 'void | array', |
| 2298 | \ 'libxml_get_last_error(': 'void | LibXMLError', |
| 2299 | \ 'libxml_set_streams_context(': 'resource streams_context | void', |
| 2300 | \ 'libxml_use_internal_errors(': '[bool use_errors] | bool', |
| 2301 | \ 'link(': 'string target, string link | bool', |
| 2302 | \ 'linkinfo(': 'string path | int', |
| 2303 | \ 'list(': 'mixed varname, mixed ... | void', |
| 2304 | \ 'localeconv(': 'void | array', |
| 2305 | \ 'localtime(': '[int timestamp [, bool is_associative]] | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2306 | \ 'log10(': 'float arg | float', |
| 2307 | \ 'log1p(': 'float number | float', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2308 | \ 'log(': 'float arg [, float base] | float', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2309 | \ 'long2ip(': 'int proper_address | string', |
| 2310 | \ 'lstat(': 'string filename | array', |
| 2311 | \ 'ltrim(': 'string str [, string charlist] | string', |
| 2312 | \ 'lzf_compress(': 'string data | string', |
| 2313 | \ 'lzf_decompress(': 'string data | string', |
| 2314 | \ 'lzf_optimized_for(': 'void | int', |
| 2315 | \ 'mail(': 'string to, string subject, string message [, string additional_headers [, string additional_parameters]] | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2316 | \ 'mailparse_determine_best_xfer_encoding(': 'resource fp | string', |
| 2317 | \ 'mailparse_msg_create(': 'void | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2318 | \ 'mailparse_msg_extract_part_file(': 'resource rfc2045, string filename [, callback callbackfunc] | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2319 | \ 'mailparse_msg_extract_part(': 'resource rfc2045, string msgbody [, callback callbackfunc] | void', |
| 2320 | \ 'mailparse_msg_free(': 'resource rfc2045buf | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2321 | \ 'mailparse_msg_get_part_data(': 'resource rfc2045 | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2322 | \ 'mailparse_msg_get_part(': 'resource rfc2045, string mimesection | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2323 | \ 'mailparse_msg_get_structure(': 'resource rfc2045 | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2324 | \ 'mailparse_msg_parse_file(': 'string filename | resource', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2325 | \ 'mailparse_msg_parse(': 'resource rfc2045buf, string data | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2326 | \ 'mailparse_rfc822_parse_addresses(': 'string addresses | array', |
| 2327 | \ 'mailparse_stream_encode(': 'resource sourcefp, resource destfp, string encoding | bool', |
| 2328 | \ 'mailparse_uudecode_all(': 'resource fp | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2329 | \ 'maxdb_connect_errno(': 'void | int', |
| 2330 | \ 'maxdb_connect_error(': 'void | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2331 | \ 'maxdb_debug(': 'string debug | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2332 | \ 'maxdb_disable_rpl_parse(': 'resource link | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2333 | \ 'maxdb_dump_debug_info(': 'resource link | bool', |
| 2334 | \ 'maxdb_embedded_connect(': '[string dbname] | resource', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2335 | \ 'maxdb_enable_reads_from_master(': 'resource link | bool', |
| 2336 | \ 'maxdb_enable_rpl_parse(': 'resource link | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2337 | \ 'maxdb_get_client_info(': 'void | string', |
| 2338 | \ 'maxdb_get_client_version(': 'void | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2339 | \ 'maxdb_init(': 'void | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2340 | \ 'maxdb_master_query(': 'resource link, string query | bool', |
| 2341 | \ 'maxdb_more_results(': 'resource link | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2342 | \ 'maxdb_next_result(': 'resource link | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2343 | \ 'maxdb_report(': 'int flags | bool', |
| 2344 | \ 'maxdb_rollback(': 'resource link | bool', |
| 2345 | \ 'maxdb_rpl_parse_enabled(': 'resource link | int', |
| 2346 | \ 'maxdb_rpl_probe(': 'resource link | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2347 | \ 'maxdb_rpl_query_type(': 'resource link | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2348 | \ 'maxdb_select_db(': 'resource link, string dbname | bool', |
| 2349 | \ 'maxdb_send_query(': 'resource link, string query | bool', |
| 2350 | \ 'maxdb_server_end(': 'void | void', |
| 2351 | \ 'maxdb_server_init(': '[array server [, array groups]] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2352 | \ 'maxdb_stmt_sqlstate(': 'resource stmt | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2353 | \ 'max(': 'number arg1, number arg2 [, number ...] | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2354 | \ 'mb_convert_case(': 'string str, int mode [, string encoding] | string', |
| 2355 | \ 'mb_convert_encoding(': 'string str, string to_encoding [, mixed from_encoding] | string', |
| 2356 | \ 'mb_convert_kana(': 'string str [, string option [, string encoding]] | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2357 | \ 'mb_convert_variables(': 'string to_encoding, mixed from_encoding, mixed &vars [, mixed &...] | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2358 | \ 'mb_decode_mimeheader(': 'string str | string', |
| 2359 | \ 'mb_decode_numericentity(': 'string str, array convmap [, string encoding] | string', |
| 2360 | \ 'mb_detect_encoding(': 'string str [, mixed encoding_list [, bool strict]] | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2361 | \ 'mb_detect_order(': '[mixed encoding_list] | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2362 | \ 'mb_encode_mimeheader(': 'string str [, string charset [, string transfer_encoding [, string linefeed]]] | string', |
| 2363 | \ 'mb_encode_numericentity(': 'string str, array convmap [, string encoding] | string', |
| 2364 | \ 'mb_ereg(': 'string pattern, string string [, array regs] | int', |
| 2365 | \ 'mb_eregi(': 'string pattern, string string [, array regs] | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2366 | \ 'mb_eregi_replace(': 'string pattern, string replace, string string [, string option] | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2367 | \ 'mb_ereg_match(': 'string pattern, string string [, string option] | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2368 | \ 'mb_ereg_replace(': 'string pattern, string replacement, string string [, string option] | string', |
| 2369 | \ 'mb_ereg_search_getpos(': 'void | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2370 | \ 'mb_ereg_search_getregs(': 'void | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2371 | \ 'mb_ereg_search(': '[string pattern [, string option]] | bool', |
| 2372 | \ 'mb_ereg_search_init(': 'string string [, string pattern [, string option]] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2373 | \ 'mb_ereg_search_pos(': '[string pattern [, string option]] | array', |
| 2374 | \ 'mb_ereg_search_regs(': '[string pattern [, string option]] | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2375 | \ 'mb_ereg_search_setpos(': 'int position | bool', |
| 2376 | \ 'mb_get_info(': '[string type] | mixed', |
| 2377 | \ 'mb_http_input(': '[string type] | mixed', |
| 2378 | \ 'mb_http_output(': '[string encoding] | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2379 | \ 'mb_internal_encoding(': '[string encoding] | mixed', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2380 | \ 'mb_language(': '[string language] | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2381 | \ 'mb_list_encodings(': 'void | array', |
| 2382 | \ 'mb_output_handler(': 'string contents, int status | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2383 | \ 'mb_parse_str(': 'string encoded_string [, array &result] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2384 | \ 'mb_preferred_mime_name(': 'string encoding | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2385 | \ 'mb_regex_encoding(': '[string encoding] | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2386 | \ 'mb_regex_set_options(': '[string options] | string', |
| 2387 | \ 'mb_send_mail(': 'string to, string subject, string message [, string additional_headers [, string additional_parameter]] | bool', |
| 2388 | \ 'mb_split(': 'string pattern, string string [, int limit] | array', |
| 2389 | \ 'mb_strcut(': 'string str, int start [, int length [, string encoding]] | string', |
| 2390 | \ 'mb_strimwidth(': 'string str, int start, int width [, string trimmarker [, string encoding]] | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2391 | \ 'mb_strlen(': 'string str [, string encoding] | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2392 | \ 'mb_strpos(': 'string haystack, string needle [, int offset [, string encoding]] | int', |
| 2393 | \ 'mb_strrpos(': 'string haystack, string needle [, string encoding] | int', |
| 2394 | \ 'mb_strtolower(': 'string str [, string encoding] | string', |
| 2395 | \ 'mb_strtoupper(': 'string str [, string encoding] | string', |
| 2396 | \ 'mb_strwidth(': 'string str [, string encoding] | int', |
| 2397 | \ 'mb_substitute_character(': '[mixed substrchar] | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2398 | \ 'mb_substr_count(': 'string haystack, string needle [, string encoding] | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2399 | \ 'mb_substr(': 'string str, int start [, int length [, string encoding]] | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2400 | \ 'mcal_append_event(': 'int mcal_stream | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2401 | \ 'mcal_close(': 'int mcal_stream [, int flags] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2402 | \ 'mcal_create_calendar(': 'int stream, string calendar | bool', |
| 2403 | \ 'mcal_date_compare(': 'int a_year, int a_month, int a_day, int b_year, int b_month, int b_day | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2404 | \ 'mcal_date_valid(': 'int year, int month, int day | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2405 | \ 'mcal_day_of_week(': 'int year, int month, int day | int', |
| 2406 | \ 'mcal_day_of_year(': 'int year, int month, int day | int', |
| 2407 | \ 'mcal_days_in_month(': 'int month, int leap_year | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2408 | \ 'mcal_delete_calendar(': 'int stream, string calendar | bool', |
| 2409 | \ 'mcal_delete_event(': 'int mcal_stream, int event_id | bool', |
| 2410 | \ 'mcal_event_add_attribute(': 'int stream, string attribute, string value | bool', |
| 2411 | \ 'mcal_event_init(': 'int stream | void', |
| 2412 | \ 'mcal_event_set_alarm(': 'int stream, int alarm | void', |
| 2413 | \ 'mcal_event_set_category(': 'int stream, string category | void', |
| 2414 | \ 'mcal_event_set_class(': 'int stream, int class | void', |
| 2415 | \ 'mcal_event_set_description(': 'int stream, string description | void', |
| 2416 | \ 'mcal_event_set_end(': 'int stream, int year, int month, int day [, int hour [, int min [, int sec]]] | void', |
| 2417 | \ 'mcal_event_set_recur_daily(': 'int stream, int year, int month, int day, int interval | void', |
| 2418 | \ 'mcal_event_set_recur_monthly_mday(': 'int stream, int year, int month, int day, int interval | void', |
| 2419 | \ 'mcal_event_set_recur_monthly_wday(': 'int stream, int year, int month, int day, int interval | void', |
| 2420 | \ 'mcal_event_set_recur_none(': 'int stream | void', |
| 2421 | \ 'mcal_event_set_recur_weekly(': 'int stream, int year, int month, int day, int interval, int weekdays | void', |
| 2422 | \ 'mcal_event_set_recur_yearly(': 'int stream, int year, int month, int day, int interval | void', |
| 2423 | \ 'mcal_event_set_start(': 'int stream, int year, int month, int day [, int hour [, int min [, int sec]]] | void', |
| 2424 | \ 'mcal_event_set_title(': 'int stream, string title | void', |
| 2425 | \ 'mcal_expunge(': 'int stream | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2426 | \ 'mcal_fetch_current_stream_event(': 'int stream | object', |
| 2427 | \ 'mcal_fetch_event(': 'int mcal_stream, int event_id [, int options] | object', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2428 | \ 'mcal_is_leap_year(': 'int year | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2429 | \ 'mcal_list_alarms(': 'int mcal_stream [, int begin_year, int begin_month, int begin_day, int end_year, int end_month, int end_day] | array', |
| 2430 | \ 'mcal_list_events(': 'int mcal_stream [, int begin_year, int begin_month, int begin_day, int end_year, int end_month, int end_day] | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2431 | \ 'mcal_next_recurrence(': 'int stream, int weekstart, array next | object', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2432 | \ 'mcal_open(': 'string calendar, string username, string password [, int options] | int', |
| 2433 | \ 'mcal_popen(': 'string calendar, string username, string password [, int options] | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2434 | \ 'mcal_rename_calendar(': 'int stream, string old_name, string new_name | bool', |
| 2435 | \ 'mcal_reopen(': 'int mcal_stream, string calendar [, int options] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2436 | \ 'mcal_snooze(': 'int stream_id, int event_id | bool', |
| 2437 | \ 'mcal_store_event(': 'int mcal_stream | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2438 | \ 'mcal_time_valid(': 'int hour, int minutes, int seconds | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2439 | \ 'mcal_week_of_year(': 'int day, int month, int year | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2440 | \ 'm_checkstatus(': 'resource conn, int identifier | int', |
| 2441 | \ 'm_completeauthorizations(': 'resource conn, int &array | int', |
| 2442 | \ 'm_connect(': 'resource conn | int', |
| 2443 | \ 'm_connectionerror(': 'resource conn | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2444 | \ 'mcrypt_cbc(': 'int cipher, string key, string data, int mode [, string iv] | string', |
| 2445 | \ 'mcrypt_cfb(': 'int cipher, string key, string data, int mode, string iv | string', |
| 2446 | \ 'mcrypt_create_iv(': 'int size [, int source] | string', |
| 2447 | \ 'mcrypt_decrypt(': 'string cipher, string key, string data, string mode [, string iv] | string', |
| 2448 | \ 'mcrypt_ecb(': 'int cipher, string key, string data, int mode | string', |
| 2449 | \ 'mcrypt_enc_get_algorithms_name(': 'resource td | string', |
| 2450 | \ 'mcrypt_enc_get_block_size(': 'resource td | int', |
| 2451 | \ 'mcrypt_enc_get_iv_size(': 'resource td | int', |
| 2452 | \ 'mcrypt_enc_get_key_size(': 'resource td | int', |
| 2453 | \ 'mcrypt_enc_get_modes_name(': 'resource td | string', |
| 2454 | \ 'mcrypt_enc_get_supported_key_sizes(': 'resource td | array', |
| 2455 | \ 'mcrypt_enc_is_block_algorithm(': 'resource td | bool', |
| 2456 | \ 'mcrypt_enc_is_block_algorithm_mode(': 'resource td | bool', |
| 2457 | \ 'mcrypt_enc_is_block_mode(': 'resource td | bool', |
| 2458 | \ 'mcrypt_encrypt(': 'string cipher, string key, string data, string mode [, string iv] | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2459 | \ 'mcrypt_enc_self_test(': 'resource td | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2460 | \ 'mcrypt_generic_deinit(': 'resource td | bool', |
| 2461 | \ 'mcrypt_generic_end(': 'resource td | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2462 | \ 'mcrypt_generic(': 'resource td, string data | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2463 | \ 'mcrypt_generic_init(': 'resource td, string key, string iv | int', |
| 2464 | \ 'mcrypt_get_block_size(': 'int cipher | int', |
| 2465 | \ 'mcrypt_get_cipher_name(': 'int cipher | string', |
| 2466 | \ 'mcrypt_get_iv_size(': 'string cipher, string mode | int', |
| 2467 | \ 'mcrypt_get_key_size(': 'int cipher | int', |
| 2468 | \ 'mcrypt_list_algorithms(': '[string lib_dir] | array', |
| 2469 | \ 'mcrypt_list_modes(': '[string lib_dir] | array', |
| 2470 | \ 'mcrypt_module_close(': 'resource td | bool', |
| 2471 | \ 'mcrypt_module_get_algo_block_size(': 'string algorithm [, string lib_dir] | int', |
| 2472 | \ 'mcrypt_module_get_algo_key_size(': 'string algorithm [, string lib_dir] | int', |
| 2473 | \ 'mcrypt_module_get_supported_key_sizes(': 'string algorithm [, string lib_dir] | array', |
| 2474 | \ 'mcrypt_module_is_block_algorithm(': 'string algorithm [, string lib_dir] | bool', |
| 2475 | \ 'mcrypt_module_is_block_algorithm_mode(': 'string mode [, string lib_dir] | bool', |
| 2476 | \ 'mcrypt_module_is_block_mode(': 'string mode [, string lib_dir] | bool', |
| 2477 | \ 'mcrypt_module_open(': 'string algorithm, string algorithm_directory, string mode, string mode_directory | resource', |
| 2478 | \ 'mcrypt_module_self_test(': 'string algorithm [, string lib_dir] | bool', |
| 2479 | \ 'mcrypt_ofb(': 'int cipher, string key, string data, int mode, string iv | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2480 | \ 'md5_file(': 'string filename [, bool raw_output] | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2481 | \ 'md5(': 'string str [, bool raw_output] | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2482 | \ 'mdecrypt_generic(': 'resource td, string data | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2483 | \ 'm_deletetrans(': 'resource conn, int identifier | bool', |
| 2484 | \ 'm_destroyconn(': 'resource conn | bool', |
| 2485 | \ 'm_destroyengine(': 'void | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2486 | \ 'memcache_debug(': 'bool on_off | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2487 | \ 'memory_get_usage(': 'void | int', |
| 2488 | \ 'metaphone(': 'string str [, int phones] | string', |
| 2489 | \ 'method_exists(': 'object object, string method_name | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2490 | \ 'm_getcellbynum(': 'resource conn, int identifier, int column, int row | string', |
| 2491 | \ 'm_getcell(': 'resource conn, int identifier, string column, int row | string', |
| 2492 | \ 'm_getcommadelimited(': 'resource conn, int identifier | string', |
| 2493 | \ 'm_getheader(': 'resource conn, int identifier, int column_num | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2494 | \ 'mhash_count(': 'void | int', |
| 2495 | \ 'mhash_get_block_size(': 'int hash | int', |
| 2496 | \ 'mhash_get_hash_name(': 'int hash | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2497 | \ 'mhash(': 'int hash, string data [, string key] | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2498 | \ 'mhash_keygen_s2k(': 'int hash, string password, string salt, int bytes | string', |
| 2499 | \ 'microtime(': '[bool get_as_float] | mixed', |
| 2500 | \ 'mime_content_type(': 'string filename | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2501 | \ 'ming_keypress(': 'string str | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2502 | \ 'ming_setcubicthreshold(': 'int threshold | void', |
| 2503 | \ 'ming_setscale(': 'int scale | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2504 | \ 'ming_useConstants(': 'int use | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2505 | \ 'ming_useswfversion(': 'int version | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2506 | \ 'min(': 'number arg1, number arg2 [, number ...] | mixed', |
| 2507 | \ 'm_initconn(': 'void | resource', |
| 2508 | \ 'm_initengine(': 'string location | int', |
| 2509 | \ 'm_iscommadelimited(': 'resource conn, int identifier | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2510 | \ 'mkdir(': 'string pathname [, int mode [, bool recursive [, resource context]]] | bool', |
| 2511 | \ 'mktime(': '[int hour [, int minute [, int second [, int month [, int day [, int year [, int is_dst]]]]]]] | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2512 | \ 'm_maxconntimeout(': 'resource conn, int secs | bool', |
| 2513 | \ 'm_monitor(': 'resource conn | int', |
| 2514 | \ 'm_numcolumns(': 'resource conn, int identifier | int', |
| 2515 | \ 'm_numrows(': 'resource conn, int identifier | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2516 | \ 'money_format(': 'string format, float number | string', |
| 2517 | \ 'move_uploaded_file(': 'string filename, string destination | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2518 | \ 'm_parsecommadelimited(': 'resource conn, int identifier | int', |
| 2519 | \ 'm_responsekeys(': 'resource conn, int identifier | array', |
| 2520 | \ 'm_responseparam(': 'resource conn, int identifier, string key | string', |
| 2521 | \ 'm_returnstatus(': 'resource conn, int identifier | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2522 | \ 'msession_connect(': 'string host, string port | bool', |
| 2523 | \ 'msession_count(': 'void | int', |
| 2524 | \ 'msession_create(': 'string session | bool', |
| 2525 | \ 'msession_destroy(': 'string name | bool', |
| 2526 | \ 'msession_disconnect(': 'void | void', |
| 2527 | \ 'msession_find(': 'string name, string value | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2528 | \ 'msession_get_array(': 'string session | array', |
| 2529 | \ 'msession_get_data(': 'string session | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2530 | \ 'msession_get(': 'string session, string name, string value | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2531 | \ 'msession_inc(': 'string session, string name | string', |
| 2532 | \ 'msession_list(': 'void | array', |
| 2533 | \ 'msession_listvar(': 'string name | array', |
| 2534 | \ 'msession_lock(': 'string name | int', |
| 2535 | \ 'msession_plugin(': 'string session, string val [, string param] | string', |
| 2536 | \ 'msession_randstr(': 'int param | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2537 | \ 'msession_set_array(': 'string session, array tuples | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2538 | \ 'msession_set_data(': 'string session, string value | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2539 | \ 'msession_set(': 'string session, string name, string value | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2540 | \ 'msession_timeout(': 'string session [, int param] | int', |
| 2541 | \ 'msession_uniq(': 'int param | string', |
| 2542 | \ 'msession_unlock(': 'string session, int key | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2543 | \ 'm_setblocking(': 'resource conn, int tf | int', |
| 2544 | \ 'm_setdropfile(': 'resource conn, string directory | int', |
| 2545 | \ 'm_setip(': 'resource conn, string host, int port | int', |
| 2546 | \ 'm_setssl_cafile(': 'resource conn, string cafile | int', |
| 2547 | \ 'm_setssl_files(': 'resource conn, string sslkeyfile, string sslcertfile | int', |
| 2548 | \ 'm_setssl(': 'resource conn, string host, int port | int', |
| 2549 | \ 'm_settimeout(': 'resource conn, int seconds | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2550 | \ 'msg_get_queue(': 'int key [, int perms] | resource', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2551 | \ 'msg_receive(': 'resource queue, int desiredmsgtype, int &msgtype, int maxsize, mixed &message [, bool unserialize [, int flags [, int &errorcode]]] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2552 | \ 'msg_remove_queue(': 'resource queue | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2553 | \ 'msg_send(': 'resource queue, int msgtype, mixed message [, bool serialize [, bool blocking [, int &errorcode]]] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2554 | \ 'msg_set_queue(': 'resource queue, array data | bool', |
| 2555 | \ 'msg_stat_queue(': 'resource queue | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2556 | \ 'msql_affected_rows(': 'resource result | int', |
| 2557 | \ 'msql_close(': '[resource link_identifier] | bool', |
| 2558 | \ 'msql_connect(': '[string hostname] | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2559 | \ 'msql_create_db(': 'string database_name [, resource link_identifier] | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2560 | \ 'msql_data_seek(': 'resource result, int row_number | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2561 | \ 'msql_db_query(': 'string database, string query [, resource link_identifier] | resource', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2562 | \ 'msql_drop_db(': 'string database_name [, resource link_identifier] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2563 | \ 'msql_error(': 'void | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2564 | \ 'msql_fetch_array(': 'resource result [, int result_type] | array', |
| 2565 | \ 'msql_fetch_field(': 'resource result [, int field_offset] | object', |
| 2566 | \ 'msql_fetch_object(': 'resource result | object', |
| 2567 | \ 'msql_fetch_row(': 'resource result | array', |
| 2568 | \ 'msql_field_flags(': 'resource result, int field_offset | string', |
| 2569 | \ 'msql_field_len(': 'resource result, int field_offset | int', |
| 2570 | \ 'msql_field_name(': 'resource result, int field_offset | string', |
| 2571 | \ 'msql_field_seek(': 'resource result, int field_offset | bool', |
| 2572 | \ 'msql_field_table(': 'resource result, int field_offset | int', |
| 2573 | \ 'msql_field_type(': 'resource result, int field_offset | string', |
| 2574 | \ 'msql_free_result(': 'resource result | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2575 | \ 'msql_list_dbs(': '[resource link_identifier] | resource', |
| 2576 | \ 'msql_list_fields(': 'string database, string tablename [, resource link_identifier] | resource', |
| 2577 | \ 'msql_list_tables(': 'string database [, resource link_identifier] | resource', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2578 | \ 'msql_num_fields(': 'resource result | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2579 | \ 'msql_num_rows(': 'resource query_identifier | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2580 | \ 'msql_pconnect(': '[string hostname] | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2581 | \ 'msql_query(': 'string query [, resource link_identifier] | resource', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2582 | \ 'msql_result(': 'resource result, int row [, mixed field] | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2583 | \ 'msql_select_db(': 'string database_name [, resource link_identifier] | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2584 | \ 'm_sslcert_gen_hash(': 'string filename | string', |
| 2585 | \ 'mssql_bind(': 'resource stmt, string param_name, mixed &var, int type [, int is_output [, int is_null [, int maxlen]]] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2586 | \ 'mssql_close(': '[resource link_identifier] | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2587 | \ 'mssql_connect(': '[string servername [, string username [, string password]]] | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2588 | \ 'mssql_data_seek(': 'resource result_identifier, int row_number | bool', |
| 2589 | \ 'mssql_execute(': 'resource stmt [, bool skip_results] | mixed', |
| 2590 | \ 'mssql_fetch_array(': 'resource result [, int result_type] | array', |
| 2591 | \ 'mssql_fetch_assoc(': 'resource result_id | array', |
| 2592 | \ 'mssql_fetch_batch(': 'resource result_index | int', |
| 2593 | \ 'mssql_fetch_field(': 'resource result [, int field_offset] | object', |
| 2594 | \ 'mssql_fetch_object(': 'resource result | object', |
| 2595 | \ 'mssql_fetch_row(': 'resource result | array', |
| 2596 | \ 'mssql_field_length(': 'resource result [, int offset] | int', |
| 2597 | \ 'mssql_field_name(': 'resource result [, int offset] | string', |
| 2598 | \ 'mssql_field_seek(': 'resource result, int field_offset | bool', |
| 2599 | \ 'mssql_field_type(': 'resource result [, int offset] | string', |
| 2600 | \ 'mssql_free_result(': 'resource result | bool', |
| 2601 | \ 'mssql_free_statement(': 'resource statement | bool', |
| 2602 | \ 'mssql_get_last_message(': 'void | string', |
| 2603 | \ 'mssql_guid_string(': 'string binary [, int short_format] | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2604 | \ 'mssql_init(': 'string sp_name [, resource conn_id] | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2605 | \ 'mssql_min_error_severity(': 'int severity | void', |
| 2606 | \ 'mssql_min_message_severity(': 'int severity | void', |
| 2607 | \ 'mssql_next_result(': 'resource result_id | bool', |
| 2608 | \ 'mssql_num_fields(': 'resource result | int', |
| 2609 | \ 'mssql_num_rows(': 'resource result | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2610 | \ 'mssql_pconnect(': '[string servername [, string username [, string password]]] | resource', |
| 2611 | \ 'mssql_query(': 'string query [, resource link_identifier [, int batch_size]] | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2612 | \ 'mssql_result(': 'resource result, int row, mixed field | string', |
| 2613 | \ 'mssql_rows_affected(': 'resource conn_id | int', |
| 2614 | \ 'mssql_select_db(': 'string database_name [, resource link_identifier] | bool', |
| 2615 | \ 'mt_getrandmax(': 'void | int', |
| 2616 | \ 'mt_rand(': '[int min, int max] | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2617 | \ 'm_transactionssent(': 'resource conn | int', |
| 2618 | \ 'm_transinqueue(': 'resource conn | int', |
| 2619 | \ 'm_transkeyval(': 'resource conn, int identifier, string key, string value | int', |
| 2620 | \ 'm_transnew(': 'resource conn | int', |
| 2621 | \ 'm_transsend(': 'resource conn, int identifier | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2622 | \ 'mt_srand(': '[int seed] | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2623 | \ 'muscat_close(': 'resource muscat_handle | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2624 | \ 'muscat_get(': 'resource muscat_handle | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2625 | \ 'muscat_give(': 'resource muscat_handle, string string | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2626 | \ 'muscat_setup(': 'int size [, string muscat_dir] | resource', |
| 2627 | \ 'muscat_setup_net(': 'string muscat_host | resource', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2628 | \ 'm_uwait(': 'int microsecs | int', |
| 2629 | \ 'm_validateidentifier(': 'resource conn, int tf | int', |
| 2630 | \ 'm_verifyconnection(': 'resource conn, int tf | bool', |
| 2631 | \ 'm_verifysslcert(': 'resource conn, int tf | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2632 | \ 'mysql_affected_rows(': '[resource link_identifier] | int', |
| 2633 | \ 'mysql_change_user(': 'string user, string password [, string database [, resource link_identifier]] | int', |
| 2634 | \ 'mysql_client_encoding(': '[resource link_identifier] | string', |
| 2635 | \ 'mysql_close(': '[resource link_identifier] | bool', |
| 2636 | \ 'mysql_connect(': '[string server [, string username [, string password [, bool new_link [, int client_flags]]]]] | resource', |
| 2637 | \ 'mysql_create_db(': 'string database_name [, resource link_identifier] | bool', |
| 2638 | \ 'mysql_data_seek(': 'resource result, int row_number | bool', |
| 2639 | \ 'mysql_db_name(': 'resource result, int row [, mixed field] | string', |
| 2640 | \ 'mysql_db_query(': 'string database, string query [, resource link_identifier] | resource', |
| 2641 | \ 'mysql_drop_db(': 'string database_name [, resource link_identifier] | bool', |
| 2642 | \ 'mysql_errno(': '[resource link_identifier] | int', |
| 2643 | \ 'mysql_error(': '[resource link_identifier] | string', |
| 2644 | \ 'mysql_escape_string(': 'string unescaped_string | string', |
| 2645 | \ 'mysql_fetch_array(': 'resource result [, int result_type] | array', |
| 2646 | \ 'mysql_fetch_assoc(': 'resource result | array', |
| 2647 | \ 'mysql_fetch_field(': 'resource result [, int field_offset] | object', |
| 2648 | \ 'mysql_fetch_lengths(': 'resource result | array', |
| 2649 | \ 'mysql_fetch_object(': 'resource result | object', |
| 2650 | \ 'mysql_fetch_row(': 'resource result | array', |
| 2651 | \ 'mysql_field_flags(': 'resource result, int field_offset | string', |
| 2652 | \ 'mysql_field_len(': 'resource result, int field_offset | int', |
| 2653 | \ 'mysql_field_name(': 'resource result, int field_offset | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2654 | \ 'mysql_field_seek(': 'resource result, int field_offset | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2655 | \ 'mysql_field_table(': 'resource result, int field_offset | string', |
| 2656 | \ 'mysql_field_type(': 'resource result, int field_offset | string', |
| 2657 | \ 'mysql_free_result(': 'resource result | bool', |
| 2658 | \ 'mysql_get_client_info(': 'void | string', |
| 2659 | \ 'mysql_get_host_info(': '[resource link_identifier] | string', |
| 2660 | \ 'mysql_get_proto_info(': '[resource link_identifier] | int', |
| 2661 | \ 'mysql_get_server_info(': '[resource link_identifier] | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2662 | \ 'mysqli_connect_errno(': 'void | int', |
| 2663 | \ 'mysqli_connect_error(': 'void | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2664 | \ 'mysqli_debug(': 'string debug | bool', |
| 2665 | \ 'mysqli_disable_rpl_parse(': 'mysqli link | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2666 | \ 'mysqli_dump_debug_info(': 'mysqli link | bool', |
| 2667 | \ 'mysqli_embedded_connect(': '[string dbname] | mysqli', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2668 | \ 'mysqli_enable_reads_from_master(': 'mysqli link | bool', |
| 2669 | \ 'mysqli_enable_rpl_parse(': 'mysqli link | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2670 | \ 'mysqli_get_client_info(': 'void | string', |
| 2671 | \ 'mysqli_get_client_version(': 'void | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2672 | \ 'mysqli_init(': 'void | mysqli', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2673 | \ 'mysqli_master_query(': 'mysqli link, string query | bool', |
| 2674 | \ 'mysqli_more_results(': 'mysqli link | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2675 | \ 'mysqli_next_result(': 'mysqli link | bool', |
| 2676 | \ 'mysql_info(': '[resource link_identifier] | string', |
| 2677 | \ 'mysql_insert_id(': '[resource link_identifier] | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2678 | \ 'mysqli_report(': 'int flags | bool', |
| 2679 | \ 'mysqli_rollback(': 'mysqli link | bool', |
| 2680 | \ 'mysqli_rpl_parse_enabled(': 'mysqli link | int', |
| 2681 | \ 'mysqli_rpl_probe(': 'mysqli link | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2682 | \ 'mysqli_select_db(': 'mysqli link, string dbname | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2683 | \ 'mysqli_server_end(': 'void | void', |
| 2684 | \ 'mysqli_server_init(': '[array server [, array groups]] | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2685 | \ 'mysqli_set_charset(': 'mysqli link, string charset | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2686 | \ 'mysqli_stmt_sqlstate(': 'mysqli_stmt stmt | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2687 | \ 'mysql_list_dbs(': '[resource link_identifier] | resource', |
| 2688 | \ 'mysql_list_fields(': 'string database_name, string table_name [, resource link_identifier] | resource', |
| 2689 | \ 'mysql_list_processes(': '[resource link_identifier] | resource', |
| 2690 | \ 'mysql_list_tables(': 'string database [, resource link_identifier] | resource', |
| 2691 | \ 'mysql_num_fields(': 'resource result | int', |
| 2692 | \ 'mysql_num_rows(': 'resource result | int', |
| 2693 | \ 'mysql_pconnect(': '[string server [, string username [, string password [, int client_flags]]]] | resource', |
| 2694 | \ 'mysql_ping(': '[resource link_identifier] | bool', |
| 2695 | \ 'mysql_query(': 'string query [, resource link_identifier] | resource', |
| 2696 | \ 'mysql_real_escape_string(': 'string unescaped_string [, resource link_identifier] | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2697 | \ 'mysql_result(': 'resource result, int row [, mixed field] | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2698 | \ 'mysql_select_db(': 'string database_name [, resource link_identifier] | bool', |
| 2699 | \ 'mysql_stat(': '[resource link_identifier] | string', |
| 2700 | \ 'mysql_tablename(': 'resource result, int i | string', |
| 2701 | \ 'mysql_thread_id(': '[resource link_identifier] | int', |
| 2702 | \ 'mysql_unbuffered_query(': 'string query [, resource link_identifier] | resource', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2703 | \ 'natcasesort(': 'array &array | bool', |
| 2704 | \ 'natsort(': 'array &array | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2705 | \ 'ncurses_addch(': 'int ch | int', |
| 2706 | \ 'ncurses_addchnstr(': 'string s, int n | int', |
| 2707 | \ 'ncurses_addchstr(': 'string s | int', |
| 2708 | \ 'ncurses_addnstr(': 'string s, int n | int', |
| 2709 | \ 'ncurses_addstr(': 'string text | int', |
| 2710 | \ 'ncurses_assume_default_colors(': 'int fg, int bg | int', |
| 2711 | \ 'ncurses_attroff(': 'int attributes | int', |
| 2712 | \ 'ncurses_attron(': 'int attributes | int', |
| 2713 | \ 'ncurses_attrset(': 'int attributes | int', |
| 2714 | \ 'ncurses_baudrate(': 'void | int', |
| 2715 | \ 'ncurses_beep(': 'void | int', |
| 2716 | \ 'ncurses_bkgd(': 'int attrchar | int', |
| 2717 | \ 'ncurses_bkgdset(': 'int attrchar | void', |
| 2718 | \ 'ncurses_border(': 'int left, int right, int top, int bottom, int tl_corner, int tr_corner, int bl_corner, int br_corner | int', |
| 2719 | \ 'ncurses_bottom_panel(': 'resource panel | int', |
| 2720 | \ 'ncurses_can_change_color(': 'void | bool', |
| 2721 | \ 'ncurses_cbreak(': 'void | bool', |
| 2722 | \ 'ncurses_clear(': 'void | bool', |
| 2723 | \ 'ncurses_clrtobot(': 'void | bool', |
| 2724 | \ 'ncurses_clrtoeol(': 'void | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2725 | \ 'ncurses_color_content(': 'int color, int &r, int &g, int &b | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2726 | \ 'ncurses_color_set(': 'int pair | int', |
| 2727 | \ 'ncurses_curs_set(': 'int visibility | int', |
| 2728 | \ 'ncurses_define_key(': 'string definition, int keycode | int', |
| 2729 | \ 'ncurses_def_prog_mode(': 'void | bool', |
| 2730 | \ 'ncurses_def_shell_mode(': 'void | bool', |
| 2731 | \ 'ncurses_delay_output(': 'int milliseconds | int', |
| 2732 | \ 'ncurses_delch(': 'void | bool', |
| 2733 | \ 'ncurses_deleteln(': 'void | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2734 | \ 'ncurses_del_panel(': 'resource panel | bool', |
| 2735 | \ 'ncurses_delwin(': 'resource window | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2736 | \ 'ncurses_doupdate(': 'void | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2737 | \ 'ncurses_echochar(': 'int character | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2738 | \ 'ncurses_echo(': 'void | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2739 | \ 'ncurses_end(': 'void | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2740 | \ 'ncurses_erasechar(': 'void | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2741 | \ 'ncurses_erase(': 'void | bool', |
| 2742 | \ 'ncurses_filter(': 'void | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2743 | \ 'ncurses_flash(': 'void | bool', |
| 2744 | \ 'ncurses_flushinp(': 'void | bool', |
| 2745 | \ 'ncurses_getch(': 'void | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2746 | \ 'ncurses_getmaxyx(': 'resource window, int &y, int &x | void', |
| 2747 | \ 'ncurses_getmouse(': 'array &mevent | bool', |
| 2748 | \ 'ncurses_getyx(': 'resource window, int &y, int &x | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2749 | \ 'ncurses_halfdelay(': 'int tenth | int', |
| 2750 | \ 'ncurses_has_colors(': 'void | bool', |
| 2751 | \ 'ncurses_has_ic(': 'void | bool', |
| 2752 | \ 'ncurses_has_il(': 'void | bool', |
| 2753 | \ 'ncurses_has_key(': 'int keycode | int', |
| 2754 | \ 'ncurses_hide_panel(': 'resource panel | int', |
| 2755 | \ 'ncurses_hline(': 'int charattr, int n | int', |
| 2756 | \ 'ncurses_inch(': 'void | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2757 | \ 'ncurses_init_color(': 'int color, int r, int g, int b | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2758 | \ 'ncurses_init(': 'void | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2759 | \ 'ncurses_init_pair(': 'int pair, int fg, int bg | int', |
| 2760 | \ 'ncurses_insch(': 'int character | int', |
| 2761 | \ 'ncurses_insdelln(': 'int count | int', |
| 2762 | \ 'ncurses_insertln(': 'void | bool', |
| 2763 | \ 'ncurses_insstr(': 'string text | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2764 | \ 'ncurses_instr(': 'string &buffer | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2765 | \ 'ncurses_isendwin(': 'void | bool', |
| 2766 | \ 'ncurses_keyok(': 'int keycode, bool enable | int', |
| 2767 | \ 'ncurses_keypad(': 'resource window, bool bf | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2768 | \ 'ncurses_killchar(': 'void | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2769 | \ 'ncurses_longname(': 'void | string', |
| 2770 | \ 'ncurses_meta(': 'resource window, bool 8bit | int', |
| 2771 | \ 'ncurses_mouseinterval(': 'int milliseconds | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2772 | \ 'ncurses_mousemask(': 'int newmask, int &oldmask | int', |
| 2773 | \ 'ncurses_mouse_trafo(': 'int &y, int &x, bool toscreen | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2774 | \ 'ncurses_move(': 'int y, int x | int', |
| 2775 | \ 'ncurses_move_panel(': 'resource panel, int startx, int starty | int', |
| 2776 | \ 'ncurses_mvaddch(': 'int y, int x, int c | int', |
| 2777 | \ 'ncurses_mvaddchnstr(': 'int y, int x, string s, int n | int', |
| 2778 | \ 'ncurses_mvaddchstr(': 'int y, int x, string s | int', |
| 2779 | \ 'ncurses_mvaddnstr(': 'int y, int x, string s, int n | int', |
| 2780 | \ 'ncurses_mvaddstr(': 'int y, int x, string s | int', |
| 2781 | \ 'ncurses_mvcur(': 'int old_y, int old_x, int new_y, int new_x | int', |
| 2782 | \ 'ncurses_mvdelch(': 'int y, int x | int', |
| 2783 | \ 'ncurses_mvgetch(': 'int y, int x | int', |
| 2784 | \ 'ncurses_mvhline(': 'int y, int x, int attrchar, int n | int', |
| 2785 | \ 'ncurses_mvinch(': 'int y, int x | int', |
| 2786 | \ 'ncurses_mvvline(': 'int y, int x, int attrchar, int n | int', |
| 2787 | \ 'ncurses_mvwaddstr(': 'resource window, int y, int x, string text | int', |
| 2788 | \ 'ncurses_napms(': 'int milliseconds | int', |
| 2789 | \ 'ncurses_newpad(': 'int rows, int cols | resource', |
| 2790 | \ 'ncurses_new_panel(': 'resource window | resource', |
| 2791 | \ 'ncurses_newwin(': 'int rows, int cols, int y, int x | resource', |
| 2792 | \ 'ncurses_nl(': 'void | bool', |
| 2793 | \ 'ncurses_nocbreak(': 'void | bool', |
| 2794 | \ 'ncurses_noecho(': 'void | bool', |
| 2795 | \ 'ncurses_nonl(': 'void | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2796 | \ 'ncurses_noqiflush(': 'void | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2797 | \ 'ncurses_noraw(': 'void | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2798 | \ 'ncurses_pair_content(': 'int pair, int &f, int &b | int', |
| 2799 | \ 'ncurses_panel_above(': 'resource panel | resource', |
| 2800 | \ 'ncurses_panel_below(': 'resource panel | resource', |
| 2801 | \ 'ncurses_panel_window(': 'resource panel | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2802 | \ 'ncurses_pnoutrefresh(': 'resource pad, int pminrow, int pmincol, int sminrow, int smincol, int smaxrow, int smaxcol | int', |
| 2803 | \ 'ncurses_prefresh(': 'resource pad, int pminrow, int pmincol, int sminrow, int smincol, int smaxrow, int smaxcol | int', |
| 2804 | \ 'ncurses_putp(': 'string text | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2805 | \ 'ncurses_qiflush(': 'void | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2806 | \ 'ncurses_raw(': 'void | bool', |
| 2807 | \ 'ncurses_refresh(': 'int ch | int', |
| 2808 | \ 'ncurses_replace_panel(': 'resource panel, resource window | int', |
| 2809 | \ 'ncurses_reset_prog_mode(': 'void | int', |
| 2810 | \ 'ncurses_reset_shell_mode(': 'void | int', |
| 2811 | \ 'ncurses_resetty(': 'void | bool', |
| 2812 | \ 'ncurses_savetty(': 'void | bool', |
| 2813 | \ 'ncurses_scr_dump(': 'string filename | int', |
| 2814 | \ 'ncurses_scr_init(': 'string filename | int', |
| 2815 | \ 'ncurses_scrl(': 'int count | int', |
| 2816 | \ 'ncurses_scr_restore(': 'string filename | int', |
| 2817 | \ 'ncurses_scr_set(': 'string filename | int', |
| 2818 | \ 'ncurses_show_panel(': 'resource panel | int', |
| 2819 | \ 'ncurses_slk_attr(': 'void | bool', |
| 2820 | \ 'ncurses_slk_attroff(': 'int intarg | int', |
| 2821 | \ 'ncurses_slk_attron(': 'int intarg | int', |
| 2822 | \ 'ncurses_slk_attrset(': 'int intarg | int', |
| 2823 | \ 'ncurses_slk_clear(': 'void | bool', |
| 2824 | \ 'ncurses_slk_color(': 'int intarg | int', |
| 2825 | \ 'ncurses_slk_init(': 'int format | bool', |
| 2826 | \ 'ncurses_slk_noutrefresh(': 'void | bool', |
| 2827 | \ 'ncurses_slk_refresh(': 'void | bool', |
| 2828 | \ 'ncurses_slk_restore(': 'void | bool', |
| 2829 | \ 'ncurses_slk_set(': 'int labelnr, string label, int format | bool', |
| 2830 | \ 'ncurses_slk_touch(': 'void | bool', |
| 2831 | \ 'ncurses_standend(': 'void | int', |
| 2832 | \ 'ncurses_standout(': 'void | int', |
| 2833 | \ 'ncurses_start_color(': 'void | int', |
| 2834 | \ 'ncurses_termattrs(': 'void | bool', |
| 2835 | \ 'ncurses_termname(': 'void | string', |
| 2836 | \ 'ncurses_timeout(': 'int millisec | void', |
| 2837 | \ 'ncurses_top_panel(': 'resource panel | int', |
| 2838 | \ 'ncurses_typeahead(': 'int fd | int', |
| 2839 | \ 'ncurses_ungetch(': 'int keycode | int', |
| 2840 | \ 'ncurses_ungetmouse(': 'array mevent | bool', |
| 2841 | \ 'ncurses_update_panels(': 'void | void', |
| 2842 | \ 'ncurses_use_default_colors(': 'void | bool', |
| 2843 | \ 'ncurses_use_env(': 'bool flag | void', |
| 2844 | \ 'ncurses_use_extended_names(': 'bool flag | int', |
| 2845 | \ 'ncurses_vidattr(': 'int intarg | int', |
| 2846 | \ 'ncurses_vline(': 'int charattr, int n | int', |
| 2847 | \ 'ncurses_waddch(': 'resource window, int ch | int', |
| 2848 | \ 'ncurses_waddstr(': 'resource window, string str [, int n] | int', |
| 2849 | \ 'ncurses_wattroff(': 'resource window, int attrs | int', |
| 2850 | \ 'ncurses_wattron(': 'resource window, int attrs | int', |
| 2851 | \ 'ncurses_wattrset(': 'resource window, int attrs | int', |
| 2852 | \ 'ncurses_wborder(': 'resource window, int left, int right, int top, int bottom, int tl_corner, int tr_corner, int bl_corner, int br_corner | int', |
| 2853 | \ 'ncurses_wclear(': 'resource window | int', |
| 2854 | \ 'ncurses_wcolor_set(': 'resource window, int color_pair | int', |
| 2855 | \ 'ncurses_werase(': 'resource window | int', |
| 2856 | \ 'ncurses_wgetch(': 'resource window | int', |
| 2857 | \ 'ncurses_whline(': 'resource window, int charattr, int n | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2858 | \ 'ncurses_wmouse_trafo(': 'resource window, int &y, int &x, bool toscreen | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2859 | \ 'ncurses_wmove(': 'resource window, int y, int x | int', |
| 2860 | \ 'ncurses_wnoutrefresh(': 'resource window | int', |
| 2861 | \ 'ncurses_wrefresh(': 'resource window | int', |
| 2862 | \ 'ncurses_wstandend(': 'resource window | int', |
| 2863 | \ 'ncurses_wstandout(': 'resource window | int', |
| 2864 | \ 'ncurses_wvline(': 'resource window, int charattr, int n | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2865 | \ 'newt_bell(': 'void | void', |
| 2866 | \ 'newt_button_bar(': 'array &buttons | resource', |
| 2867 | \ 'newt_button(': 'int left, int top, string text | resource', |
| 2868 | \ 'newt_centered_window(': 'int width, int height [, string title] | int', |
| 2869 | \ 'newt_checkbox_get_value(': 'resource checkbox | string', |
| 2870 | \ 'newt_checkbox(': 'int left, int top, string text, string def_value [, string seq] | resource', |
| 2871 | \ 'newt_checkbox_set_flags(': 'resource checkbox, int flags, int sense | void', |
| 2872 | \ 'newt_checkbox_set_value(': 'resource checkbox, string value | void', |
| 2873 | \ 'newt_checkbox_tree_add_item(': 'resource checkboxtree, string text, mixed data, int flags, int index [, int ...] | void', |
| 2874 | \ 'newt_checkbox_tree_find_item(': 'resource checkboxtree, mixed data | array', |
| 2875 | \ 'newt_checkbox_tree_get_current(': 'resource checkboxtree | mixed', |
| 2876 | \ 'newt_checkbox_tree_get_entry_value(': 'resource checkboxtree, mixed data | string', |
| 2877 | \ 'newt_checkbox_tree_get_multi_selection(': 'resource checkboxtree, string seqnum | array', |
| 2878 | \ 'newt_checkbox_tree_get_selection(': 'resource checkboxtree | array', |
| 2879 | \ 'newt_checkbox_tree(': 'int left, int top, int height [, int flags] | resource', |
| 2880 | \ 'newt_checkbox_tree_multi(': 'int left, int top, int height, string seq [, int flags] | resource', |
| 2881 | \ 'newt_checkbox_tree_set_current(': 'resource checkboxtree, mixed data | void', |
| 2882 | \ 'newt_checkbox_tree_set_entry(': 'resource checkboxtree, mixed data, string text | void', |
| 2883 | \ 'newt_checkbox_tree_set_entry_value(': 'resource checkboxtree, mixed data, string value | void', |
| 2884 | \ 'newt_checkbox_tree_set_width(': 'resource checkbox_tree, int width | void', |
| 2885 | \ 'newt_clear_key_buffer(': 'void | void', |
| 2886 | \ 'newt_cls(': 'void | void', |
| 2887 | \ 'newt_compact_button(': 'int left, int top, string text | resource', |
| 2888 | \ 'newt_component_add_callback(': 'resource component, mixed func_name, mixed data | void', |
| 2889 | \ 'newt_component_takes_focus(': 'resource component, bool takes_focus | void', |
| 2890 | \ 'newt_create_grid(': 'int cols, int rows | resource', |
| 2891 | \ 'newt_cursor_off(': 'void | void', |
| 2892 | \ 'newt_cursor_on(': 'void | void', |
| 2893 | \ 'newt_delay(': 'int microseconds | void', |
| 2894 | \ 'newt_draw_form(': 'resource form | void', |
| 2895 | \ 'newt_draw_root_text(': 'int left, int top, string text | void', |
| 2896 | \ 'newt_entry_get_value(': 'resource entry | string', |
| 2897 | \ 'newt_entry(': 'int left, int top, int width [, string init_value [, int flags]] | resource', |
| 2898 | \ 'newt_entry_set_filter(': 'resource entry, callback filter, mixed data | void', |
| 2899 | \ 'newt_entry_set_flags(': 'resource entry, int flags, int sense | void', |
| 2900 | \ 'newt_entry_set(': 'resource entry, string value [, bool cursor_at_end] | void', |
| 2901 | \ 'newt_finished(': 'void | int', |
| 2902 | \ 'newt_form_add_component(': 'resource form, resource component | void', |
| 2903 | \ 'newt_form_add_components(': 'resource form, array components | void', |
| 2904 | \ 'newt_form_add_host_key(': 'resource form, int key | void', |
| 2905 | \ 'newt_form_destroy(': 'resource form | void', |
| 2906 | \ 'newt_form_get_current(': 'resource form | resource', |
| 2907 | \ 'newt_form(': '[resource vert_bar [, string help [, int flags]]] | resource', |
| 2908 | \ 'newt_form_run(': 'resource form, array &exit_struct | void', |
| 2909 | \ 'newt_form_set_background(': 'resource from, int background | void', |
| 2910 | \ 'newt_form_set_height(': 'resource form, int height | void', |
| 2911 | \ 'newt_form_set_size(': 'resource form | void', |
| 2912 | \ 'newt_form_set_timer(': 'resource form, int milliseconds | void', |
| 2913 | \ 'newt_form_set_width(': 'resource form, int width | void', |
| 2914 | \ 'newt_form_watch_fd(': 'resource form, resource stream [, int flags] | void', |
| 2915 | \ 'newt_get_screen_size(': 'int &cols, int &rows | void', |
| 2916 | \ 'newt_grid_add_components_to_form(': 'resource grid, resource form, bool recurse | void', |
| 2917 | \ 'newt_grid_basic_window(': 'resource text, resource middle, resource buttons | resource', |
| 2918 | \ 'newt_grid_free(': 'resource grid, bool recurse | void', |
| 2919 | \ 'newt_grid_get_size(': 'resouce grid, int &width, int &height | void', |
| 2920 | \ 'newt_grid_h_close_stacked(': 'int element1_type, resource element1 [, int ... [, resource ...]] | resource', |
| 2921 | \ 'newt_grid_h_stacked(': 'int element1_type, resource element1 [, int ... [, resource ...]] | resource', |
| 2922 | \ 'newt_grid_place(': 'resource grid, int left, int top | void', |
| 2923 | \ 'newt_grid_set_field(': 'resource grid, int col, int row, int type, resource val, int pad_left, int pad_top, int pad_right, int pad_bottom, int anchor [, int flags] | void', |
| 2924 | \ 'newt_grid_simple_window(': 'resource text, resource middle, resource buttons | resource', |
| 2925 | \ 'newt_grid_v_close_stacked(': 'int element1_type, resource element1 [, int ... [, resource ...]] | resource', |
| 2926 | \ 'newt_grid_v_stacked(': 'int element1_type, resource element1 [, int ... [, resource ...]] | resource', |
| 2927 | \ 'newt_grid_wrapped_window_at(': 'resource grid, string title, int left, int top | void', |
| 2928 | \ 'newt_grid_wrapped_window(': 'resource grid, string title | void', |
| 2929 | \ 'newt_init(': 'void | int', |
| 2930 | \ 'newt_label(': 'int left, int top, string text | resource', |
| 2931 | \ 'newt_label_set_text(': 'resource label, string text | void', |
| 2932 | \ 'newt_listbox_append_entry(': 'resource listbox, string text, mixed data | void', |
| 2933 | \ 'newt_listbox_clear(': 'resource listobx | void', |
| 2934 | \ 'newt_listbox_clear_selection(': 'resource listbox | void', |
| 2935 | \ 'newt_listbox_delete_entry(': 'resource listbox, mixed key | void', |
| 2936 | \ 'newt_listbox_get_current(': 'resource listbox | string', |
| 2937 | \ 'newt_listbox_get_selection(': 'resource listbox | array', |
| 2938 | \ 'newt_listbox(': 'int left, int top, int height [, int flags] | resource', |
| 2939 | \ 'newt_listbox_insert_entry(': 'resource listbox, string text, mixed data, mixed key | void', |
| 2940 | \ 'newt_listbox_item_count(': 'resource listbox | int', |
| 2941 | \ 'newt_listbox_select_item(': 'resource listbox, mixed key, int sense | void', |
| 2942 | \ 'newt_listbox_set_current_by_key(': 'resource listbox, mixed key | void', |
| 2943 | \ 'newt_listbox_set_current(': 'resource listbox, int num | void', |
| 2944 | \ 'newt_listbox_set_data(': 'resource listbox, int num, mixed data | void', |
| 2945 | \ 'newt_listbox_set_entry(': 'resource listbox, int num, string text | void', |
| 2946 | \ 'newt_listbox_set_width(': 'resource listbox, int width | void', |
| 2947 | \ 'newt_listitem_get_data(': 'resource item | mixed', |
| 2948 | \ 'newt_listitem(': 'int left, int top, string text, bool is_default, resouce prev_item, mixed data [, int flags] | resource', |
| 2949 | \ 'newt_listitem_set(': 'resource item, string text | void', |
| 2950 | \ 'newt_open_window(': 'int left, int top, int width, int height [, string title] | int', |
| 2951 | \ 'newt_pop_help_line(': 'void | void', |
| 2952 | \ 'newt_pop_window(': 'void | void', |
| 2953 | \ 'newt_push_help_line(': '[string text] | void', |
| 2954 | \ 'newt_radiobutton(': 'int left, int top, string text, bool is_default [, resource prev_button] | resource', |
| 2955 | \ 'newt_radio_get_current(': 'resource set_member | resource', |
| 2956 | \ 'newt_redraw_help_line(': 'void | void', |
| 2957 | \ 'newt_reflow_text(': 'string text, int width, int flex_down, int flex_up, int &actual_width, int &actual_height | string', |
| 2958 | \ 'newt_refresh(': 'void | void', |
| 2959 | \ 'newt_resize_screen(': '[bool redraw] | void', |
| 2960 | \ 'newt_resume(': 'void | void', |
| 2961 | \ 'newt_run_form(': 'resource form | resource', |
| 2962 | \ 'newt_scale(': 'int left, int top, int width, int full_value | resource', |
| 2963 | \ 'newt_scale_set(': 'resource scale, int amount | void', |
| 2964 | \ 'newt_scrollbar_set(': 'resource scrollbar, int where, int total | void', |
| 2965 | \ 'newt_set_help_callback(': 'mixed function | void', |
| 2966 | \ 'newt_set_suspend_callback(': 'callback function, mixed data | void', |
| 2967 | \ 'newt_suspend(': 'void | void', |
| 2968 | \ 'newt_texbox_set_text(': 'resource textbox, string text | void', |
| 2969 | \ 'newt_textbox_get_num_lines(': 'resource textbox | int', |
| 2970 | \ 'newt_textbox(': 'int left, int top, int width, int height [, int flags] | resource', |
| 2971 | \ 'newt_textbox_reflowed(': 'int left, int top, char *text, int width, int flex_down, int flex_up [, int flags] | resource', |
| 2972 | \ 'newt_textbox_set_height(': 'resource textbox, int height | void', |
| 2973 | \ 'newt_vertical_scrollbar(': 'int left, int top, int height [, int normal_colorset [, int thumb_colorset]] | resource', |
| 2974 | \ 'newt_wait_for_key(': 'void | void', |
| 2975 | \ 'newt_win_choice(': 'string title, string button1_text, string button2_text, string format [, mixed args [, mixed ...]] | int', |
| 2976 | \ 'newt_win_entries(': 'string title, string text, int suggested_width, int flex_down, int flex_up, int data_width, array &items, string button1 [, string ...] | int', |
| 2977 | \ 'newt_win_menu(': 'string title, string text, int suggestedWidth, int flexDown, int flexUp, int maxListHeight, array items, int &listItem [, string button1 [, string ...]] | int', |
| 2978 | \ 'newt_win_message(': 'string title, string button_text, string format [, mixed args [, mixed ...]] | void', |
| 2979 | \ 'newt_win_messagev(': 'string title, string button_text, string format, array args | void', |
| 2980 | \ 'newt_win_ternary(': 'string title, string button1_text, string button2_text, string button3_text, string format [, mixed args [, mixed ...]] | int', |
| 2981 | \ 'next(': 'array &array | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2982 | \ 'ngettext(': 'string msgid1, string msgid2, int n | string', |
| 2983 | \ 'nl2br(': 'string string | string', |
| 2984 | \ 'nl_langinfo(': 'int item | string', |
| 2985 | \ 'notes_body(': 'string server, string mailbox, int msg_number | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2986 | \ 'notes_copy_db(': 'string from_database_name, string to_database_name | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2987 | \ 'notes_create_db(': 'string database_name | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2988 | \ 'notes_create_note(': 'string database_name, string form_name | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2989 | \ 'notes_drop_db(': 'string database_name | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2990 | \ 'notes_find_note(': 'string database_name, string name [, string type] | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2991 | \ 'notes_header_info(': 'string server, string mailbox, int msg_number | object', |
| 2992 | \ 'notes_list_msgs(': 'string db | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2993 | \ 'notes_mark_read(': 'string database_name, string user_name, string note_id | bool', |
| 2994 | \ 'notes_mark_unread(': 'string database_name, string user_name, string note_id | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2995 | \ 'notes_nav_create(': 'string database_name, string name | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 2996 | \ 'notes_search(': 'string database_name, string keywords | array', |
| 2997 | \ 'notes_unread(': 'string database_name, string user_name | array', |
| 2998 | \ 'notes_version(': 'string database_name | float', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2999 | \ 'nsapi_request_headers(': 'void | array', |
| 3000 | \ 'nsapi_response_headers(': 'void | array', |
| 3001 | \ 'nsapi_virtual(': 'string uri | bool', |
| 3002 | \ 'number_format(': 'float number [, int decimals [, string dec_point, string thousands_sep]] | string', |
| 3003 | \ 'ob_clean(': 'void | void', |
| 3004 | \ 'ob_end_clean(': 'void | bool', |
| 3005 | \ 'ob_end_flush(': 'void | bool', |
| 3006 | \ 'ob_flush(': 'void | void', |
| 3007 | \ 'ob_get_clean(': 'void | string', |
| 3008 | \ 'ob_get_contents(': 'void | string', |
| 3009 | \ 'ob_get_flush(': 'void | string', |
| 3010 | \ 'ob_get_length(': 'void | int', |
| 3011 | \ 'ob_get_level(': 'void | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3012 | \ 'ob_gzhandler(': 'string buffer, int mode | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3013 | \ 'ob_iconv_handler(': 'string contents, int status | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3014 | \ 'ob_implicit_flush(': '[int flag] | void', |
| 3015 | \ 'ob_list_handlers(': 'void | array', |
| 3016 | \ 'ob_start(': '[callback output_callback [, int chunk_size [, bool erase]]] | bool', |
| 3017 | \ 'ob_tidyhandler(': 'string input [, int mode] | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3018 | \ 'oci_bind_by_name(': 'resource stmt, string ph_name, mixed &variable [, int maxlength [, int type]] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3019 | \ 'oci_cancel(': 'resource stmt | bool', |
| 3020 | \ 'oci_close(': 'resource connection | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3021 | \ 'oci_commit(': 'resource connection | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3022 | \ 'oci_connect(': 'string username, string password [, string db [, string charset [, int session_mode]]] | resource', |
| 3023 | \ 'oci_define_by_name(': 'resource statement, string column_name, mixed &variable [, int type] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3024 | \ 'oci_error(': '[resource source] | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3025 | \ 'oci_execute(': 'resource stmt [, int mode] | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3026 | \ 'oci_fetch_all(': 'resource statement, array &output [, int skip [, int maxrows [, int flags]]] | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3027 | \ 'oci_fetch_array(': 'resource statement [, int mode] | array', |
| 3028 | \ 'oci_fetch_assoc(': 'resource statement | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3029 | \ 'oci_fetch(': 'resource statement | bool', |
| 3030 | \ 'ocifetchinto(': 'resource statement, array &result [, int mode] | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3031 | \ 'oci_fetch_object(': 'resource statement | object', |
| 3032 | \ 'oci_fetch_row(': 'resource statement | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3033 | \ 'oci_field_is_null(': 'resource stmt, mixed field | bool', |
| 3034 | \ 'oci_field_name(': 'resource statement, int field | string', |
| 3035 | \ 'oci_field_precision(': 'resource statement, int field | int', |
| 3036 | \ 'oci_field_scale(': 'resource statement, int field | int', |
| 3037 | \ 'oci_field_size(': 'resource stmt, mixed field | int', |
| 3038 | \ 'oci_field_type(': 'resource stmt, int field | mixed', |
| 3039 | \ 'oci_field_type_raw(': 'resource statement, int field | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3040 | \ 'oci_free_statement(': 'resource statement | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3041 | \ 'oci_internal_debug(': 'int onoff | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3042 | \ 'oci_lob_copy(': 'OCI-Lob lob_to, OCI-Lob lob_from [, int length] | bool', |
| 3043 | \ 'oci_lob_is_equal(': 'OCI-Lob lob1, OCI-Lob lob2 | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3044 | \ 'oci_new_collection(': 'resource connection, string tdo [, string schema] | OCI-Collection', |
| 3045 | \ 'oci_new_connect(': 'string username, string password [, string db [, string charset [, int session_mode]]] | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3046 | \ 'oci_new_cursor(': 'resource connection | resource', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3047 | \ 'oci_new_descriptor(': 'resource connection [, int type] | OCI-Lob', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3048 | \ 'oci_num_fields(': 'resource statement | int', |
| 3049 | \ 'oci_num_rows(': 'resource stmt | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3050 | \ 'oci_parse(': 'resource connection, string query | resource', |
| 3051 | \ 'oci_password_change(': 'resource connection, string username, string old_password, string new_password | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3052 | \ 'oci_pconnect(': 'string username, string password [, string db [, string charset [, int session_mode]]] | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3053 | \ 'oci_result(': 'resource statement, mixed field | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3054 | \ 'oci_rollback(': 'resource connection | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3055 | \ 'oci_server_version(': 'resource connection | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3056 | \ 'oci_set_prefetch(': 'resource statement [, int rows] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3057 | \ 'oci_statement_type(': 'resource statement | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3058 | \ 'octdec(': 'string octal_string | number', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3059 | \ 'odbc_autocommit(': 'resource connection_id [, bool OnOff] | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3060 | \ 'odbc_binmode(': 'resource result_id, int mode | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3061 | \ 'odbc_close_all(': 'void | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3062 | \ 'odbc_close(': 'resource connection_id | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3063 | \ 'odbc_columnprivileges(': 'resource connection_id, string qualifier, string owner, string table_name, string column_name | resource', |
| 3064 | \ 'odbc_columns(': 'resource connection_id [, string qualifier [, string schema [, string table_name [, string column_name]]]] | resource', |
| 3065 | \ 'odbc_commit(': 'resource connection_id | bool', |
| 3066 | \ 'odbc_connect(': 'string dsn, string user, string password [, int cursor_type] | resource', |
| 3067 | \ 'odbc_cursor(': 'resource result_id | string', |
| 3068 | \ 'odbc_data_source(': 'resource connection_id, int fetch_type | array', |
| 3069 | \ 'odbc_do(': 'resource conn_id, string query | resource', |
| 3070 | \ 'odbc_error(': '[resource connection_id] | string', |
| 3071 | \ 'odbc_errormsg(': '[resource connection_id] | string', |
| 3072 | \ 'odbc_exec(': 'resource connection_id, string query_string [, int flags] | resource', |
| 3073 | \ 'odbc_execute(': 'resource result_id [, array parameters_array] | bool', |
| 3074 | \ 'odbc_fetch_array(': 'resource result [, int rownumber] | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3075 | \ 'odbc_fetch_into(': 'resource result_id, array &result_array [, int rownumber] | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3076 | \ 'odbc_fetch_object(': 'resource result [, int rownumber] | object', |
| 3077 | \ 'odbc_fetch_row(': 'resource result_id [, int row_number] | bool', |
| 3078 | \ 'odbc_field_len(': 'resource result_id, int field_number | int', |
| 3079 | \ 'odbc_field_name(': 'resource result_id, int field_number | string', |
| 3080 | \ 'odbc_field_num(': 'resource result_id, string field_name | int', |
| 3081 | \ 'odbc_field_precision(': 'resource result_id, int field_number | int', |
| 3082 | \ 'odbc_field_scale(': 'resource result_id, int field_number | int', |
| 3083 | \ 'odbc_field_type(': 'resource result_id, int field_number | string', |
| 3084 | \ 'odbc_foreignkeys(': 'resource connection_id, string pk_qualifier, string pk_owner, string pk_table, string fk_qualifier, string fk_owner, string fk_table | resource', |
| 3085 | \ 'odbc_free_result(': 'resource result_id | bool', |
| 3086 | \ 'odbc_gettypeinfo(': 'resource connection_id [, int data_type] | resource', |
| 3087 | \ 'odbc_longreadlen(': 'resource result_id, int length | bool', |
| 3088 | \ 'odbc_next_result(': 'resource result_id | bool', |
| 3089 | \ 'odbc_num_fields(': 'resource result_id | int', |
| 3090 | \ 'odbc_num_rows(': 'resource result_id | int', |
| 3091 | \ 'odbc_pconnect(': 'string dsn, string user, string password [, int cursor_type] | resource', |
| 3092 | \ 'odbc_prepare(': 'resource connection_id, string query_string | resource', |
| 3093 | \ 'odbc_primarykeys(': 'resource connection_id, string qualifier, string owner, string table | resource', |
| 3094 | \ 'odbc_procedurecolumns(': 'resource connection_id [, string qualifier, string owner, string proc, string column] | resource', |
| 3095 | \ 'odbc_procedures(': 'resource connection_id [, string qualifier, string owner, string name] | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3096 | \ 'odbc_result_all(': 'resource result_id [, string format] | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3097 | \ 'odbc_result(': 'resource result_id, mixed field | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3098 | \ 'odbc_rollback(': 'resource connection_id | bool', |
| 3099 | \ 'odbc_setoption(': 'resource id, int function, int option, int param | bool', |
| 3100 | \ 'odbc_specialcolumns(': 'resource connection_id, int type, string qualifier, string owner, string table, int scope, int nullable | resource', |
| 3101 | \ 'odbc_statistics(': 'resource connection_id, string qualifier, string owner, string table_name, int unique, int accuracy | resource', |
| 3102 | \ 'odbc_tableprivileges(': 'resource connection_id, string qualifier, string owner, string name | resource', |
| 3103 | \ 'odbc_tables(': 'resource connection_id [, string qualifier [, string owner [, string name [, string types]]]] | resource', |
| 3104 | \ 'openal_buffer_create(': 'void | resource', |
| 3105 | \ 'openal_buffer_data(': 'resource buffer, int format, string data, int freq | bool', |
| 3106 | \ 'openal_buffer_destroy(': 'resource buffer | bool', |
| 3107 | \ 'openal_buffer_get(': 'resource buffer, int property | int', |
| 3108 | \ 'openal_buffer_loadwav(': 'resource buffer, string wavfile | bool', |
| 3109 | \ 'openal_context_create(': 'resource device | resource', |
| 3110 | \ 'openal_context_current(': 'resource context | bool', |
| 3111 | \ 'openal_context_destroy(': 'resource context | bool', |
| 3112 | \ 'openal_context_process(': 'resource context | bool', |
| 3113 | \ 'openal_context_suspend(': 'resource context | bool', |
| 3114 | \ 'openal_device_close(': 'resource device | bool', |
| 3115 | \ 'openal_device_open(': '[string device_desc] | resource', |
| 3116 | \ 'openal_listener_get(': 'int property | mixed', |
| 3117 | \ 'openal_listener_set(': 'int property, mixed setting | bool', |
| 3118 | \ 'openal_source_create(': 'void | resource', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3119 | \ 'openal_source_destroy(': 'resource source | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3120 | \ 'openal_source_get(': 'resource source, int property | mixed', |
| 3121 | \ 'openal_source_pause(': 'resource source | bool', |
| 3122 | \ 'openal_source_play(': 'resource source | bool', |
| 3123 | \ 'openal_source_rewind(': 'resource source | bool', |
| 3124 | \ 'openal_source_set(': 'resource source, int property, mixed setting | bool', |
| 3125 | \ 'openal_source_stop(': 'resource source | bool', |
| 3126 | \ 'openal_stream(': 'resource source, int format, int rate | resource', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3127 | \ 'opendir(': 'string path [, resource context] | resource', |
| 3128 | \ 'openlog(': 'string ident, int option, int facility | bool', |
| 3129 | \ 'openssl_csr_export(': 'resource csr, string &out [, bool notext] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3130 | \ 'openssl_csr_export_to_file(': 'resource csr, string outfilename [, bool notext] | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3131 | \ 'openssl_csr_new(': 'array dn, resource &privkey [, array configargs [, array extraattribs]] | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3132 | \ 'openssl_csr_sign(': 'mixed csr, mixed cacert, mixed priv_key, int days [, array configargs [, int serial]] | resource', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3133 | \ 'openssl_error_string(': 'void | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3134 | \ 'openssl_free_key(': 'resource key_identifier | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3135 | \ 'openssl_open(': 'string sealed_data, string &open_data, string env_key, mixed priv_key_id | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3136 | \ 'openssl_pkcs7_decrypt(': 'string infilename, string outfilename, mixed recipcert [, mixed recipkey] | bool', |
| 3137 | \ 'openssl_pkcs7_encrypt(': 'string infile, string outfile, mixed recipcerts, array headers [, int flags [, int cipherid]] | bool', |
| 3138 | \ 'openssl_pkcs7_sign(': 'string infilename, string outfilename, mixed signcert, mixed privkey, array headers [, int flags [, string extracerts]] | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3139 | \ 'openssl_pkcs7_verify(': 'string filename, int flags [, string outfilename [, array cainfo [, string extracerts]]] | mixed', |
| 3140 | \ 'openssl_pkey_export(': 'mixed key, string &out [, string passphrase [, array configargs]] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3141 | \ 'openssl_pkey_export_to_file(': 'mixed key, string outfilename [, string passphrase [, array configargs]] | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3142 | \ 'openssl_pkey_free(': 'resource key | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3143 | \ 'openssl_pkey_get_private(': 'mixed key [, string passphrase] | resource', |
| 3144 | \ 'openssl_pkey_get_public(': 'mixed certificate | resource', |
| 3145 | \ 'openssl_pkey_new(': '[array configargs] | resource', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3146 | \ 'openssl_private_decrypt(': 'string data, string &decrypted, mixed key [, int padding] | bool', |
| 3147 | \ 'openssl_private_encrypt(': 'string data, string &crypted, mixed key [, int padding] | bool', |
| 3148 | \ 'openssl_public_decrypt(': 'string data, string &decrypted, mixed key [, int padding] | bool', |
| 3149 | \ 'openssl_public_encrypt(': 'string data, string &crypted, mixed key [, int padding] | bool', |
| 3150 | \ 'openssl_seal(': 'string data, string &sealed_data, array &env_keys, array pub_key_ids | int', |
| 3151 | \ 'openssl_sign(': 'string data, string &signature, mixed priv_key_id [, int signature_alg] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3152 | \ 'openssl_verify(': 'string data, string signature, mixed pub_key_id | int', |
| 3153 | \ 'openssl_x509_check_private_key(': 'mixed cert, mixed key | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3154 | \ 'openssl_x509_checkpurpose(': 'mixed x509cert, int purpose [, array cainfo [, string untrustedfile]] | int', |
| 3155 | \ 'openssl_x509_export(': 'mixed x509, string &output [, bool notext] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3156 | \ 'openssl_x509_export_to_file(': 'mixed x509, string outfilename [, bool notext] | bool', |
| 3157 | \ 'openssl_x509_free(': 'resource x509cert | void', |
| 3158 | \ 'openssl_x509_parse(': 'mixed x509cert [, bool shortnames] | array', |
| 3159 | \ 'openssl_x509_read(': 'mixed x509certdata | resource', |
| 3160 | \ 'ora_bind(': 'resource cursor, string PHP_variable_name, string SQL_parameter_name, int length [, int type] | bool', |
| 3161 | \ 'ora_close(': 'resource cursor | bool', |
| 3162 | \ 'ora_columnname(': 'resource cursor, int column | string', |
| 3163 | \ 'ora_columnsize(': 'resource cursor, int column | int', |
| 3164 | \ 'ora_columntype(': 'resource cursor, int column | string', |
| 3165 | \ 'ora_commit(': 'resource conn | bool', |
| 3166 | \ 'ora_commitoff(': 'resource conn | bool', |
| 3167 | \ 'ora_commiton(': 'resource conn | bool', |
| 3168 | \ 'ora_do(': 'resource conn, string query | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3169 | \ 'ora_errorcode(': '[resource cursor_or_connection] | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3170 | \ 'ora_error(': '[resource cursor_or_connection] | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3171 | \ 'ora_exec(': 'resource cursor | bool', |
| 3172 | \ 'ora_fetch(': 'resource cursor | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3173 | \ 'ora_fetch_into(': 'resource cursor, array &result [, int flags] | int', |
| 3174 | \ 'ora_getcolumn(': 'resource cursor, int column | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3175 | \ 'ora_logoff(': 'resource connection | bool', |
| 3176 | \ 'ora_logon(': 'string user, string password | resource', |
| 3177 | \ 'ora_numcols(': 'resource cursor | int', |
| 3178 | \ 'ora_numrows(': 'resource cursor | int', |
| 3179 | \ 'ora_open(': 'resource connection | resource', |
| 3180 | \ 'ora_parse(': 'resource cursor, string sql_statement [, int defer] | bool', |
| 3181 | \ 'ora_plogon(': 'string user, string password | resource', |
| 3182 | \ 'ora_rollback(': 'resource connection | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3183 | \ 'OrbitEnum(': 'string id | new', |
| 3184 | \ 'OrbitObject(': 'string ior | new', |
| 3185 | \ 'OrbitStruct(': 'string id | new', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3186 | \ 'ord(': 'string string | int', |
| 3187 | \ 'output_add_rewrite_var(': 'string name, string value | bool', |
| 3188 | \ 'output_reset_rewrite_vars(': 'void | bool', |
| 3189 | \ 'overload(': '[string class_name] | void', |
| 3190 | \ 'override_function(': 'string function_name, string function_args, string function_code | bool', |
| 3191 | \ 'ovrimos_close(': 'int connection | void', |
| 3192 | \ 'ovrimos_commit(': 'int connection_id | bool', |
| 3193 | \ 'ovrimos_connect(': 'string host, string db, string user, string password | int', |
| 3194 | \ 'ovrimos_cursor(': 'int result_id | string', |
| 3195 | \ 'ovrimos_exec(': 'int connection_id, string query | int', |
| 3196 | \ 'ovrimos_execute(': 'int result_id [, array parameters_array] | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3197 | \ 'ovrimos_fetch_into(': 'int result_id, array &result_array [, string how [, int rownumber]] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3198 | \ 'ovrimos_fetch_row(': 'int result_id [, int how [, int row_number]] | bool', |
| 3199 | \ 'ovrimos_field_len(': 'int result_id, int field_number | int', |
| 3200 | \ 'ovrimos_field_name(': 'int result_id, int field_number | string', |
| 3201 | \ 'ovrimos_field_num(': 'int result_id, string field_name | int', |
| 3202 | \ 'ovrimos_field_type(': 'int result_id, int field_number | int', |
| 3203 | \ 'ovrimos_free_result(': 'int result_id | bool', |
| 3204 | \ 'ovrimos_longreadlen(': 'int result_id, int length | bool', |
| 3205 | \ 'ovrimos_num_fields(': 'int result_id | int', |
| 3206 | \ 'ovrimos_num_rows(': 'int result_id | int', |
| 3207 | \ 'ovrimos_prepare(': 'int connection_id, string query | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3208 | \ 'ovrimos_result_all(': 'int result_id [, string format] | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3209 | \ 'ovrimos_result(': 'int result_id, mixed field | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3210 | \ 'ovrimos_rollback(': 'int connection_id | bool', |
| 3211 | \ 'pack(': 'string format [, mixed args [, mixed ...]] | string', |
| 3212 | \ 'parse_ini_file(': 'string filename [, bool process_sections] | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3213 | \ 'parsekit_compile_file(': 'string filename [, array &errors [, int options]] | array', |
| 3214 | \ 'parsekit_compile_string(': 'string phpcode [, array &errors [, int options]] | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3215 | \ 'parsekit_func_arginfo(': 'mixed function | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3216 | \ 'parse_str(': 'string str [, array &arr] | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3217 | \ 'parse_url(': 'string url | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3218 | \ 'passthru(': 'string command [, int &return_var] | void', |
| 3219 | \ 'pathinfo(': 'string path [, int options] | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3220 | \ 'pclose(': 'resource handle | int', |
| 3221 | \ 'pcntl_alarm(': 'int seconds | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3222 | \ 'pcntl_exec(': 'string path [, array args [, array envs]] | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3223 | \ 'pcntl_fork(': 'void | int', |
| 3224 | \ 'pcntl_getpriority(': '[int pid [, int process_identifier]] | int', |
| 3225 | \ 'pcntl_setpriority(': 'int priority [, int pid [, int process_identifier]] | bool', |
| 3226 | \ 'pcntl_signal(': 'int signo, callback handle [, bool restart_syscalls] | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3227 | \ 'pcntl_wait(': 'int &status [, int options] | int', |
| 3228 | \ 'pcntl_waitpid(': 'int pid, int &status [, int options] | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3229 | \ 'pcntl_wexitstatus(': 'int status | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3230 | \ 'pcntl_wifexited(': 'int status | bool', |
| 3231 | \ 'pcntl_wifsignaled(': 'int status | bool', |
| 3232 | \ 'pcntl_wifstopped(': 'int status | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3233 | \ 'pcntl_wstopsig(': 'int status | int', |
| 3234 | \ 'pcntl_wtermsig(': 'int status | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3235 | \ 'pdf_activate_item(': 'resource pdfdoc, int id | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3236 | \ 'pdf_add_launchlink(': 'resource pdfdoc, float llx, float lly, float urx, float ury, string filename | bool', |
| 3237 | \ 'pdf_add_locallink(': 'resource pdfdoc, float lowerleftx, float lowerlefty, float upperrightx, float upperrighty, int page, string dest | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3238 | \ 'pdf_add_nameddest(': 'resource pdfdoc, string name, string optlist | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3239 | \ 'pdf_add_note(': 'resource pdfdoc, float llx, float lly, float urx, float ury, string contents, string title, string icon, int open | bool', |
| 3240 | \ 'pdf_add_pdflink(': 'resource pdfdoc, float bottom_left_x, float bottom_left_y, float up_right_x, float up_right_y, string filename, int page, string dest | bool', |
| 3241 | \ 'pdf_add_thumbnail(': 'resource pdfdoc, int image | bool', |
| 3242 | \ 'pdf_add_weblink(': 'resource pdfdoc, float lowerleftx, float lowerlefty, float upperrightx, float upperrighty, string url | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3243 | \ 'pdf_arc(': 'resource p, float x, float y, float r, float alpha, float beta | bool', |
| 3244 | \ 'pdf_arcn(': 'resource p, float x, float y, float r, float alpha, float beta | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3245 | \ 'pdf_attach_file(': 'resource pdfdoc, float llx, float lly, float urx, float ury, string filename, string description, string author, string mimetype, string icon | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3246 | \ 'pdf_begin_document(': 'resource pdfdoc, string filename, string optlist | int', |
| 3247 | \ 'pdf_begin_font(': 'resource pdfdoc, string filename, float a, float b, float c, float d, float e, float f, string optlist | bool', |
| 3248 | \ 'pdf_begin_glyph(': 'resource pdfdoc, string glyphname, float wx, float llx, float lly, float urx, float ury | bool', |
| 3249 | \ 'pdf_begin_item(': 'resource pdfdoc, string tag, string optlist | int', |
| 3250 | \ 'pdf_begin_layer(': 'resource pdfdoc, int layer | bool', |
| 3251 | \ 'pdf_begin_page_ext(': 'resource pdfdoc, float width, float height, string optlist | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3252 | \ 'pdf_begin_page(': 'resource pdfdoc, float width, float height | bool', |
| 3253 | \ 'pdf_begin_pattern(': 'resource pdfdoc, float width, float height, float xstep, float ystep, int painttype | int', |
| 3254 | \ 'pdf_begin_template(': 'resource pdfdoc, float width, float height | int', |
| 3255 | \ 'pdf_circle(': 'resource pdfdoc, float x, float y, float r | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3256 | \ 'pdf_clip(': 'resource p | bool', |
| 3257 | \ 'pdf_close(': 'resource p | bool', |
| 3258 | \ 'pdf_close_image(': 'resource p, int image | void', |
| 3259 | \ 'pdf_closepath_fill_stroke(': 'resource p | bool', |
| 3260 | \ 'pdf_closepath(': 'resource p | bool', |
| 3261 | \ 'pdf_closepath_stroke(': 'resource p | bool', |
| 3262 | \ 'pdf_close_pdi(': 'resource p, int doc | bool', |
| 3263 | \ 'pdf_close_pdi_page(': 'resource p, int page | bool', |
| 3264 | \ 'pdf_concat(': 'resource p, float a, float b, float c, float d, float e, float f | bool', |
| 3265 | \ 'pdf_continue_text(': 'resource p, string text | bool', |
| 3266 | \ 'pdf_create_action(': 'resource pdfdoc, string type, string optlist | int', |
| 3267 | \ 'pdf_create_annotation(': 'resource pdfdoc, float llx, float lly, float urx, float ury, string type, string optlist | bool', |
| 3268 | \ 'pdf_create_bookmark(': 'resource pdfdoc, string text, string optlist | int', |
| 3269 | \ 'pdf_create_fieldgroup(': 'resource pdfdoc, string name, string optlist | bool', |
| 3270 | \ 'pdf_create_field(': 'resource pdfdoc, float llx, float lly, float urx, float ury, string name, string type, string optlist | bool', |
| 3271 | \ 'pdf_create_gstate(': 'resource pdfdoc, string optlist | int', |
| 3272 | \ 'pdf_create_pvf(': 'resource pdfdoc, string filename, string data, string optlist | bool', |
| 3273 | \ 'pdf_create_textflow(': 'resource pdfdoc, string text, string optlist | int', |
| 3274 | \ 'pdf_curveto(': 'resource p, float x1, float y1, float x2, float y2, float x3, float y3 | bool', |
| 3275 | \ 'pdf_define_layer(': 'resource pdfdoc, string name, string optlist | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3276 | \ 'pdf_delete(': 'resource pdfdoc | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3277 | \ 'pdf_delete_pvf(': 'resource pdfdoc, string filename | int', |
| 3278 | \ 'pdf_delete_textflow(': 'resource pdfdoc, int textflow | bool', |
| 3279 | \ 'pdf_encoding_set_char(': 'resource pdfdoc, string encoding, int slot, string glyphname, int uv | bool', |
| 3280 | \ 'pdf_end_document(': 'resource pdfdoc, string optlist | bool', |
| 3281 | \ 'pdf_end_font(': 'resource pdfdoc | bool', |
| 3282 | \ 'pdf_end_glyph(': 'resource pdfdoc | bool', |
| 3283 | \ 'pdf_end_item(': 'resource pdfdoc, int id | bool', |
| 3284 | \ 'pdf_end_layer(': 'resource pdfdoc | bool', |
| 3285 | \ 'pdf_end_page_ext(': 'resource pdfdoc, string optlist | bool', |
| 3286 | \ 'pdf_end_page(': 'resource p | bool', |
| 3287 | \ 'pdf_end_pattern(': 'resource p | bool', |
| 3288 | \ 'pdf_end_template(': 'resource p | bool', |
| 3289 | \ 'pdf_fill(': 'resource p | bool', |
| 3290 | \ 'pdf_fill_imageblock(': 'resource pdfdoc, int page, string blockname, int image, string optlist | int', |
| 3291 | \ 'pdf_fill_pdfblock(': 'resource pdfdoc, int page, string blockname, int contents, string optlist | int', |
| 3292 | \ 'pdf_fill_stroke(': 'resource p | bool', |
| 3293 | \ 'pdf_fill_textblock(': 'resource pdfdoc, int page, string blockname, string text, string optlist | int', |
| 3294 | \ 'pdf_findfont(': 'resource p, string fontname, string encoding, int embed | int', |
| 3295 | \ 'pdf_fit_image(': 'resource pdfdoc, int image, float x, float y, string optlist | bool', |
| 3296 | \ 'pdf_fit_pdi_page(': 'resource pdfdoc, int page, float x, float y, string optlist | bool', |
| 3297 | \ 'pdf_fit_textflow(': 'resource pdfdoc, int textflow, float llx, float lly, float urx, float ury, string optlist | string', |
| 3298 | \ 'pdf_fit_textline(': 'resource pdfdoc, string text, float x, float y, string optlist | bool', |
| 3299 | \ 'pdf_get_apiname(': 'resource pdfdoc | string', |
| 3300 | \ 'pdf_get_buffer(': 'resource p | string', |
| 3301 | \ 'pdf_get_errmsg(': 'resource pdfdoc | string', |
| 3302 | \ 'pdf_get_errnum(': 'resource pdfdoc | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3303 | \ 'pdf_get_majorversion(': 'void | int', |
| 3304 | \ 'pdf_get_minorversion(': 'void | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3305 | \ 'pdf_get_parameter(': 'resource p, string key, float modifier | string', |
| 3306 | \ 'pdf_get_pdi_parameter(': 'resource p, string key, int doc, int page, int reserved | string', |
| 3307 | \ 'pdf_get_pdi_value(': 'resource p, string key, int doc, int page, int reserved | float', |
| 3308 | \ 'pdf_get_value(': 'resource p, string key, float modifier | float', |
| 3309 | \ 'pdf_info_textflow(': 'resource pdfdoc, int textflow, string keyword | float', |
| 3310 | \ 'pdf_initgraphics(': 'resource p | bool', |
| 3311 | \ 'pdf_lineto(': 'resource p, float x, float y | bool', |
| 3312 | \ 'pdf_load_font(': 'resource pdfdoc, string fontname, string encoding, string optlist | int', |
| 3313 | \ 'pdf_load_iccprofile(': 'resource pdfdoc, string profilename, string optlist | int', |
| 3314 | \ 'pdf_load_image(': 'resource pdfdoc, string imagetype, string filename, string optlist | int', |
| 3315 | \ 'pdf_makespotcolor(': 'resource p, string spotname | int', |
| 3316 | \ 'pdf_moveto(': 'resource p, float x, float y | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3317 | \ 'pdf_new(': ' | resource', |
| 3318 | \ 'pdf_open_ccitt(': 'resource pdfdoc, string filename, int width, int height, int BitReverse, int k, int Blackls1 | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3319 | \ 'pdf_open_file(': 'resource p, string filename | bool', |
| 3320 | \ 'pdf_open_image_file(': 'resource p, string imagetype, string filename, string stringparam, int intparam | int', |
| 3321 | \ 'pdf_open_image(': 'resource p, string imagetype, string source, string data, int length, int width, int height, int components, int bpc, string params | int', |
| 3322 | \ 'pdf_open_memory_image(': 'resource p, resource image | int', |
| 3323 | \ 'pdf_open_pdi(': 'resource pdfdoc, string filename, string optlist, int len | int', |
| 3324 | \ 'pdf_open_pdi_page(': 'resource p, int doc, int pagenumber, string optlist | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3325 | \ 'pdf_place_image(': 'resource pdfdoc, int image, float x, float y, float scale | bool', |
| 3326 | \ 'pdf_place_pdi_page(': 'resource pdfdoc, int page, float x, float y, float sx, float sy | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3327 | \ 'pdf_process_pdi(': 'resource pdfdoc, int doc, int page, string optlist | int', |
| 3328 | \ 'pdf_rect(': 'resource p, float x, float y, float width, float height | bool', |
| 3329 | \ 'pdf_restore(': 'resource p | bool', |
| 3330 | \ 'pdf_resume_page(': 'resource pdfdoc, string optlist | bool', |
| 3331 | \ 'pdf_rotate(': 'resource p, float phi | bool', |
| 3332 | \ 'pdf_save(': 'resource p | bool', |
| 3333 | \ 'pdf_scale(': 'resource p, float sx, float sy | bool', |
| 3334 | \ 'pdf_set_border_color(': 'resource p, float red, float green, float blue | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3335 | \ 'pdf_set_border_dash(': 'resource pdfdoc, float black, float white | bool', |
| 3336 | \ 'pdf_set_border_style(': 'resource pdfdoc, string style, float width | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3337 | \ 'pdf_setcolor(': 'resource p, string fstype, string colorspace, float c1, float c2, float c3, float c4 | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3338 | \ 'pdf_setdash(': 'resource pdfdoc, float b, float w | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3339 | \ 'pdf_setdashpattern(': 'resource pdfdoc, string optlist | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3340 | \ 'pdf_setflat(': 'resource pdfdoc, float flatness | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3341 | \ 'pdf_setfont(': 'resource pdfdoc, int font, float fontsize | bool', |
| 3342 | \ 'pdf_setgray_fill(': 'resource p, float g | bool', |
| 3343 | \ 'pdf_setgray(': 'resource p, float g | bool', |
| 3344 | \ 'pdf_setgray_stroke(': 'resource p, float g | bool', |
| 3345 | \ 'pdf_set_gstate(': 'resource pdfdoc, int gstate | bool', |
| 3346 | \ 'pdf_set_info(': 'resource p, string key, string value | bool', |
| 3347 | \ 'pdf_set_layer_dependency(': 'resource pdfdoc, string type, string optlist | bool', |
| 3348 | \ 'pdf_setlinecap(': 'resource p, int linecap | bool', |
| 3349 | \ 'pdf_setlinejoin(': 'resource p, int value | bool', |
| 3350 | \ 'pdf_setlinewidth(': 'resource p, float width | bool', |
| 3351 | \ 'pdf_setmatrix(': 'resource p, float a, float b, float c, float d, float e, float f | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3352 | \ 'pdf_setmiterlimit(': 'resource pdfdoc, float miter | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3353 | \ 'pdf_set_parameter(': 'resource p, string key, string value | bool', |
| 3354 | \ 'pdf_setrgbcolor_fill(': 'resource p, float red, float green, float blue | bool', |
| 3355 | \ 'pdf_setrgbcolor(': 'resource p, float red, float green, float blue | bool', |
| 3356 | \ 'pdf_setrgbcolor_stroke(': 'resource p, float red, float green, float blue | bool', |
| 3357 | \ 'pdf_set_text_pos(': 'resource p, float x, float y | bool', |
| 3358 | \ 'pdf_set_value(': 'resource p, string key, float value | bool', |
| 3359 | \ 'pdf_shading(': 'resource pdfdoc, string shtype, float x0, float y0, float x1, float y1, float c1, float c2, float c3, float c4, string optlist | int', |
| 3360 | \ 'pdf_shading_pattern(': 'resource pdfdoc, int shading, string optlist | int', |
| 3361 | \ 'pdf_shfill(': 'resource pdfdoc, int shading | bool', |
| 3362 | \ 'pdf_show_boxed(': 'resource p, string text, float left, float top, float width, float height, string mode, string feature | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3363 | \ 'pdf_show(': 'resource pdfdoc, string text | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3364 | \ 'pdf_show_xy(': 'resource p, string text, float x, float y | bool', |
| 3365 | \ 'pdf_skew(': 'resource p, float alpha, float beta | bool', |
| 3366 | \ 'pdf_stringwidth(': 'resource p, string text, int font, float fontsize | float', |
| 3367 | \ 'pdf_stroke(': 'resource p | bool', |
| 3368 | \ 'pdf_suspend_page(': 'resource pdfdoc, string optlist | bool', |
| 3369 | \ 'pdf_translate(': 'resource p, float tx, float ty | bool', |
| 3370 | \ 'pdf_utf16_to_utf8(': 'resource pdfdoc, string utf16string | string', |
| 3371 | \ 'pdf_utf8_to_utf16(': 'resource pdfdoc, string utf8string, string ordering | string', |
| 3372 | \ 'pdf_xshow(': 'resource pdfdoc, string text | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3373 | \ 'pfpro_cleanup(': 'void | bool', |
| 3374 | \ 'pfpro_init(': 'void | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3375 | \ 'pfpro_process(': 'array parameters [, string address [, int port [, int timeout [, string proxy_address [, int proxy_port [, string proxy_logon [, string proxy_password]]]]]]] | array', |
| 3376 | \ 'pfpro_process_raw(': 'string parameters [, string address [, int port [, int timeout [, string proxy_address [, int proxy_port [, string proxy_logon [, string proxy_password]]]]]]] | string', |
| 3377 | \ 'pfpro_version(': 'void | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3378 | \ 'pfsockopen(': 'string hostname [, int port [, int &errno [, string &errstr [, float timeout]]]] | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3379 | \ 'pg_affected_rows(': 'resource result | int', |
| 3380 | \ 'pg_cancel_query(': 'resource connection | bool', |
| 3381 | \ 'pg_client_encoding(': '[resource connection] | string', |
| 3382 | \ 'pg_close(': '[resource connection] | bool', |
| 3383 | \ 'pg_connect(': 'string connection_string [, int connect_type] | resource', |
| 3384 | \ 'pg_connection_busy(': 'resource connection | bool', |
| 3385 | \ 'pg_connection_reset(': 'resource connection | bool', |
| 3386 | \ 'pg_connection_status(': 'resource connection | int', |
| 3387 | \ 'pg_convert(': 'resource connection, string table_name, array assoc_array [, int options] | array', |
| 3388 | \ 'pg_copy_from(': 'resource connection, string table_name, array rows [, string delimiter [, string null_as]] | bool', |
| 3389 | \ 'pg_copy_to(': 'resource connection, string table_name [, string delimiter [, string null_as]] | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3390 | \ 'pg_dbname(': '[resource connection] | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3391 | \ 'pg_delete(': 'resource connection, string table_name, array assoc_array [, int options] | mixed', |
| 3392 | \ 'pg_end_copy(': '[resource connection] | bool', |
| 3393 | \ 'pg_escape_bytea(': 'string data | string', |
| 3394 | \ 'pg_escape_string(': 'string data | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3395 | \ 'pg_execute(': 'resource connection, string stmtname, array params | resource', |
| 3396 | \ 'pg_fetch_all_columns(': 'resource result [, int column] | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3397 | \ 'pg_fetch_all(': 'resource result | array', |
| 3398 | \ 'pg_fetch_array(': 'resource result [, int row [, int result_type]] | array', |
| 3399 | \ 'pg_fetch_assoc(': 'resource result [, int row] | array', |
| 3400 | \ 'pg_fetch_object(': 'resource result [, int row [, int result_type]] | object', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3401 | \ 'pg_fetch_result(': 'resource result, int row, mixed field | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3402 | \ 'pg_fetch_row(': 'resource result [, int row] | array', |
| 3403 | \ 'pg_field_is_null(': 'resource result, int row, mixed field | int', |
| 3404 | \ 'pg_field_name(': 'resource result, int field_number | string', |
| 3405 | \ 'pg_field_num(': 'resource result, string field_name | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3406 | \ 'pg_field_prtlen(': 'resource result, int row_number, mixed field_name_or_number | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3407 | \ 'pg_field_size(': 'resource result, int field_number | int', |
| 3408 | \ 'pg_field_type(': 'resource result, int field_number | string', |
| 3409 | \ 'pg_field_type_oid(': 'resource result, int field_number | int', |
| 3410 | \ 'pg_free_result(': 'resource result | bool', |
| 3411 | \ 'pg_get_notify(': 'resource connection [, int result_type] | array', |
| 3412 | \ 'pg_get_pid(': 'resource connection | int', |
| 3413 | \ 'pg_get_result(': '[resource connection] | resource', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3414 | \ 'pg_host(': '[resource connection] | string', |
| 3415 | \ 'pg_insert(': 'resource connection, string table_name, array assoc_array [, int options] | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3416 | \ 'pg_last_error(': '[resource connection] | string', |
| 3417 | \ 'pg_last_notice(': 'resource connection | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3418 | \ 'pg_last_oid(': 'resource result | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3419 | \ 'pg_lo_close(': 'resource large_object | bool', |
| 3420 | \ 'pg_lo_create(': '[resource connection] | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3421 | \ 'pg_lo_export(': 'resource connection, int oid, string pathname | bool', |
| 3422 | \ 'pg_lo_import(': 'resource connection, string pathname | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3423 | \ 'pg_lo_open(': 'resource connection, int oid, string mode | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3424 | \ 'pg_lo_read_all(': 'resource large_object | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3425 | \ 'pg_lo_read(': 'resource large_object [, int len] | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3426 | \ 'pg_lo_seek(': 'resource large_object, int offset [, int whence] | bool', |
| 3427 | \ 'pg_lo_tell(': 'resource large_object | int', |
| 3428 | \ 'pg_lo_unlink(': 'resource connection, int oid | bool', |
| 3429 | \ 'pg_lo_write(': 'resource large_object, string data [, int len] | int', |
| 3430 | \ 'pg_meta_data(': 'resource connection, string table_name | array', |
| 3431 | \ 'pg_num_fields(': 'resource result | int', |
| 3432 | \ 'pg_num_rows(': 'resource result | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3433 | \ 'pg_options(': '[resource connection] | string', |
| 3434 | \ 'pg_parameter_status(': 'resource connection, string param_name | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3435 | \ 'pg_pconnect(': 'string connection_string [, int connect_type] | resource', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3436 | \ 'pg_ping(': '[resource connection] | bool', |
| 3437 | \ 'pg_port(': '[resource connection] | int', |
| 3438 | \ 'pg_prepare(': 'resource connection, string stmtname, string query | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3439 | \ 'pg_put_line(': 'string data | bool', |
| 3440 | \ 'pg_query(': 'string query | resource', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3441 | \ 'pg_query_params(': 'resource connection, string query, array params | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3442 | \ 'pg_result_error_field(': 'resource result, int fieldcode | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3443 | \ 'pg_result_error(': 'resource result | string', |
| 3444 | \ 'pg_result_seek(': 'resource result, int offset | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3445 | \ 'pg_result_status(': 'resource result [, int type] | mixed', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3446 | \ 'pg_select(': 'resource connection, string table_name, array assoc_array [, int options] | mixed', |
| 3447 | \ 'pg_send_execute(': 'resource connection, string stmtname, array params | bool', |
| 3448 | \ 'pg_send_prepare(': 'resource connection, string stmtname, string query | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3449 | \ 'pg_send_query(': 'resource connection, string query | bool', |
| 3450 | \ 'pg_send_query_params(': 'resource connection, string query, array params | bool', |
| 3451 | \ 'pg_set_client_encoding(': 'string encoding | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3452 | \ 'pg_set_error_verbosity(': 'resource connection, int verbosity | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3453 | \ 'pg_trace(': 'string pathname [, string mode [, resource connection]] | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3454 | \ 'pg_transaction_status(': 'resource connection | int', |
| 3455 | \ 'pg_tty(': '[resource connection] | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3456 | \ 'pg_unescape_bytea(': 'string data | string', |
| 3457 | \ 'pg_untrace(': '[resource connection] | bool', |
| 3458 | \ 'pg_update(': 'resource connection, string table_name, array data, array condition [, int options] | mixed', |
| 3459 | \ 'pg_version(': '[resource connection] | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3460 | \ 'php_check_syntax(': 'string file_name [, string &error_message] | bool', |
| 3461 | \ 'phpcredits(': '[int flag] | bool', |
| 3462 | \ 'phpinfo(': '[int what] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3463 | \ 'php_ini_scanned_files(': 'void | string', |
| 3464 | \ 'php_logo_guid(': 'void | string', |
| 3465 | \ 'php_sapi_name(': 'void | string', |
| 3466 | \ 'php_strip_whitespace(': 'string filename | string', |
| 3467 | \ 'php_uname(': '[string mode] | string', |
| 3468 | \ 'phpversion(': '[string extension] | string', |
| 3469 | \ 'pi(': 'void | float', |
| 3470 | \ 'png2wbmp(': 'string pngname, string wbmpname, int d_height, int d_width, int threshold | int', |
| 3471 | \ 'popen(': 'string command, string mode | resource', |
| 3472 | \ 'posix_access(': 'string file [, int mode] | bool', |
| 3473 | \ 'posix_ctermid(': 'void | string', |
| 3474 | \ 'posix_getcwd(': 'void | string', |
| 3475 | \ 'posix_getegid(': 'void | int', |
| 3476 | \ 'posix_geteuid(': 'void | int', |
| 3477 | \ 'posix_getgid(': 'void | int', |
| 3478 | \ 'posix_getgrgid(': 'int gid | array', |
| 3479 | \ 'posix_getgrnam(': 'string name | array', |
| 3480 | \ 'posix_getgroups(': 'void | array', |
| 3481 | \ 'posix_get_last_error(': 'void | int', |
| 3482 | \ 'posix_getlogin(': 'void | string', |
| 3483 | \ 'posix_getpgid(': 'int pid | int', |
| 3484 | \ 'posix_getpgrp(': 'void | int', |
| 3485 | \ 'posix_getpid(': 'void | int', |
| 3486 | \ 'posix_getppid(': 'void | int', |
| 3487 | \ 'posix_getpwnam(': 'string username | array', |
| 3488 | \ 'posix_getpwuid(': 'int uid | array', |
| 3489 | \ 'posix_getrlimit(': 'void | array', |
| 3490 | \ 'posix_getsid(': 'int pid | int', |
| 3491 | \ 'posix_getuid(': 'void | int', |
| 3492 | \ 'posix_isatty(': 'int fd | bool', |
| 3493 | \ 'posix_kill(': 'int pid, int sig | bool', |
| 3494 | \ 'posix_mkfifo(': 'string pathname, int mode | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3495 | \ 'posix_mknod(': 'string pathname, int mode [, int major [, int minor]] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3496 | \ 'posix_setegid(': 'int gid | bool', |
| 3497 | \ 'posix_seteuid(': 'int uid | bool', |
| 3498 | \ 'posix_setgid(': 'int gid | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3499 | \ 'posix_setpgid(': 'int pid, int pgid | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3500 | \ 'posix_setsid(': 'void | int', |
| 3501 | \ 'posix_setuid(': 'int uid | bool', |
| 3502 | \ 'posix_strerror(': 'int errno | string', |
| 3503 | \ 'posix_times(': 'void | array', |
| 3504 | \ 'posix_ttyname(': 'int fd | string', |
| 3505 | \ 'posix_uname(': 'void | array', |
| 3506 | \ 'pow(': 'number base, number exp | number', |
| 3507 | \ 'preg_grep(': 'string pattern, array input [, int flags] | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3508 | \ 'preg_match_all(': 'string pattern, string subject, array &matches [, int flags [, int offset]] | int', |
| 3509 | \ 'preg_match(': 'string pattern, string subject [, array &matches [, int flags [, int offset]]] | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3510 | \ 'preg_quote(': 'string str [, string delimiter] | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3511 | \ 'preg_replace_callback(': 'mixed pattern, callback callback, mixed subject [, int limit [, int &count]] | mixed', |
| 3512 | \ 'preg_replace(': 'mixed pattern, mixed replacement, mixed subject [, int limit [, int &count]] | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3513 | \ 'preg_split(': 'string pattern, string subject [, int limit [, int flags]] | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3514 | \ 'prev(': 'array &array | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3515 | \ 'printer_abort(': 'resource handle | void', |
| 3516 | \ 'printer_close(': 'resource handle | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3517 | \ 'printer_create_brush(': 'int style, string color | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3518 | \ 'printer_create_dc(': 'resource handle | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3519 | \ 'printer_create_font(': 'string face, int height, int width, int font_weight, bool italic, bool underline, bool strikeout, int orientation | resource', |
| 3520 | \ 'printer_create_pen(': 'int style, int width, string color | resource', |
| 3521 | \ 'printer_delete_brush(': 'resource handle | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3522 | \ 'printer_delete_dc(': 'resource handle | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3523 | \ 'printer_delete_font(': 'resource handle | void', |
| 3524 | \ 'printer_delete_pen(': 'resource handle | void', |
| 3525 | \ 'printer_draw_bmp(': 'resource handle, string filename, int x, int y [, int width, int height] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3526 | \ 'printer_draw_chord(': 'resource handle, int rec_x, int rec_y, int rec_x1, int rec_y1, int rad_x, int rad_y, int rad_x1, int rad_y1 | void', |
| 3527 | \ 'printer_draw_elipse(': 'resource handle, int ul_x, int ul_y, int lr_x, int lr_y | void', |
| 3528 | \ 'printer_draw_line(': 'resource printer_handle, int from_x, int from_y, int to_x, int to_y | void', |
| 3529 | \ 'printer_draw_pie(': 'resource handle, int rec_x, int rec_y, int rec_x1, int rec_y1, int rad1_x, int rad1_y, int rad2_x, int rad2_y | void', |
| 3530 | \ 'printer_draw_rectangle(': 'resource handle, int ul_x, int ul_y, int lr_x, int lr_y | void', |
| 3531 | \ 'printer_draw_roundrect(': 'resource handle, int ul_x, int ul_y, int lr_x, int lr_y, int width, int height | void', |
| 3532 | \ 'printer_draw_text(': 'resource printer_handle, string text, int x, int y | void', |
| 3533 | \ 'printer_end_doc(': 'resource handle | bool', |
| 3534 | \ 'printer_end_page(': 'resource handle | bool', |
| 3535 | \ 'printer_get_option(': 'resource handle, string option | mixed', |
| 3536 | \ 'printer_list(': 'int enumtype [, string name [, int level]] | array', |
| 3537 | \ 'printer_logical_fontheight(': 'resource handle, int height | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3538 | \ 'printer_open(': '[string devicename] | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3539 | \ 'printer_select_brush(': 'resource printer_handle, resource brush_handle | void', |
| 3540 | \ 'printer_select_font(': 'resource printer_handle, resource font_handle | void', |
| 3541 | \ 'printer_select_pen(': 'resource printer_handle, resource pen_handle | void', |
| 3542 | \ 'printer_set_option(': 'resource handle, int option, mixed value | bool', |
| 3543 | \ 'printer_start_doc(': 'resource handle [, string document] | bool', |
| 3544 | \ 'printer_start_page(': 'resource handle | bool', |
| 3545 | \ 'printer_write(': 'resource handle, string content | bool', |
| 3546 | \ 'printf(': 'string format [, mixed args [, mixed ...]] | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3547 | \ 'print(': 'string arg | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3548 | \ 'print_r(': 'mixed expression [, bool return] | bool', |
| 3549 | \ 'proc_close(': 'resource process | int', |
| 3550 | \ 'proc_get_status(': 'resource process | array', |
| 3551 | \ 'proc_nice(': 'int increment | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3552 | \ 'proc_open(': 'string cmd, array descriptorspec, array &pipes [, string cwd [, array env [, array other_options]]] | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3553 | \ 'proc_terminate(': 'resource process [, int signal] | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3554 | \ 'property_exists(': 'mixed class, string property | bool', |
| 3555 | \ 'ps_add_bookmark(': 'resource psdoc, string text [, int parent [, int open]] | int', |
| 3556 | \ 'ps_add_launchlink(': 'resource psdoc, float llx, float lly, float urx, float ury, string filename | bool', |
| 3557 | \ 'ps_add_locallink(': 'resource psdoc, float llx, float lly, float urx, float ury, int page, string dest | bool', |
| 3558 | \ 'ps_add_note(': 'resource psdoc, float llx, float lly, float urx, float ury, string contents, string title, string icon, int open | bool', |
| 3559 | \ 'ps_add_pdflink(': 'resource psdoc, float llx, float lly, float urx, float ury, string filename, int page, string dest | bool', |
| 3560 | \ 'ps_add_weblink(': 'resource psdoc, float llx, float lly, float urx, float ury, string url | bool', |
| 3561 | \ 'ps_arc(': 'resource psdoc, float x, float y, float radius, float alpha, float beta | bool', |
| 3562 | \ 'ps_arcn(': 'resource psdoc, float x, float y, float radius, float alpha, float beta | bool', |
| 3563 | \ 'ps_begin_page(': 'resource psdoc, float width, float height | bool', |
| 3564 | \ 'ps_begin_pattern(': 'resource psdoc, float width, float height, float xstep, float ystep, int painttype | bool', |
| 3565 | \ 'ps_begin_template(': 'resource psdoc, float width, float height | bool', |
| 3566 | \ 'ps_circle(': 'resource psdoc, float x, float y, float radius | bool', |
| 3567 | \ 'ps_clip(': 'resource psdoc | bool', |
| 3568 | \ 'ps_close(': 'resource psdoc | bool', |
| 3569 | \ 'ps_close_image(': 'resource psdoc, int imageid | void', |
| 3570 | \ 'ps_closepath(': 'resource psdoc | bool', |
| 3571 | \ 'ps_closepath_stroke(': 'resource psdoc | bool', |
| 3572 | \ 'ps_continue_text(': 'resource psdoc, string text | bool', |
| 3573 | \ 'ps_curveto(': 'resource psdoc, float x1, float y1, float x2, float y2, float x3, float y3 | bool', |
| 3574 | \ 'ps_delete(': 'resource psdoc | bool', |
| 3575 | \ 'ps_end_page(': 'resource psdoc | bool', |
| 3576 | \ 'ps_end_pattern(': 'resource psdoc | bool', |
| 3577 | \ 'ps_end_template(': 'resource psdoc | bool', |
| 3578 | \ 'ps_fill(': 'resource psdoc | bool', |
| 3579 | \ 'ps_fill_stroke(': 'resource psdoc | bool', |
| 3580 | \ 'ps_findfont(': 'resource psdoc, string fontname, string encoding [, bool embed] | int', |
| 3581 | \ 'ps_get_buffer(': 'resource psdoc | string', |
| 3582 | \ 'ps_get_parameter(': 'resource psdoc, string name [, float modifier] | string', |
| 3583 | \ 'ps_get_value(': 'resource psdoc, string name [, float modifier] | float', |
| 3584 | \ 'ps_hyphenate(': 'resource psdoc, string text | array', |
| 3585 | \ 'ps_lineto(': 'resource psdoc, float x, float y | bool', |
| 3586 | \ 'ps_makespotcolor(': 'resource psdoc, string name [, float reserved] | int', |
| 3587 | \ 'ps_moveto(': 'resource psdoc, float x, float y | bool', |
| 3588 | \ 'ps_new(': 'void | resource', |
| 3589 | \ 'ps_open_file(': 'resource psdoc [, string filename] | bool', |
| 3590 | \ 'ps_open_image_file(': 'resource psdoc, string type, string filename [, string stringparam [, int intparam]] | int', |
| 3591 | \ 'ps_open_image(': 'resource psdoc, string type, string source, string data, int lenght, int width, int height, int components, int bpc, string params | int', |
| 3592 | \ 'pspell_add_to_personal(': 'int dictionary_link, string word | bool', |
| 3593 | \ 'pspell_add_to_session(': 'int dictionary_link, string word | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3594 | \ 'pspell_check(': 'int dictionary_link, string word | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3595 | \ 'pspell_clear_session(': 'int dictionary_link | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3596 | \ 'pspell_config_create(': 'string language [, string spelling [, string jargon [, string encoding]]] | int', |
| 3597 | \ 'pspell_config_data_dir(': 'int conf, string directory | bool', |
| 3598 | \ 'pspell_config_dict_dir(': 'int conf, string directory | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3599 | \ 'pspell_config_ignore(': 'int dictionary_link, int n | bool', |
| 3600 | \ 'pspell_config_mode(': 'int dictionary_link, int mode | bool', |
| 3601 | \ 'pspell_config_personal(': 'int dictionary_link, string file | bool', |
| 3602 | \ 'pspell_config_repl(': 'int dictionary_link, string file | bool', |
| 3603 | \ 'pspell_config_runtogether(': 'int dictionary_link, bool flag | bool', |
| 3604 | \ 'pspell_config_save_repl(': 'int dictionary_link, bool flag | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3605 | \ 'pspell_new_config(': 'int config | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3606 | \ 'pspell_new(': 'string language [, string spelling [, string jargon [, string encoding [, int mode]]]] | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3607 | \ 'pspell_new_personal(': 'string personal, string language [, string spelling [, string jargon [, string encoding [, int mode]]]] | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3608 | \ 'pspell_save_wordlist(': 'int dictionary_link | bool', |
| 3609 | \ 'pspell_store_replacement(': 'int dictionary_link, string misspelled, string correct | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3610 | \ 'pspell_suggest(': 'int dictionary_link, string word | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3611 | \ 'ps_place_image(': 'resource psdoc, int imageid, float x, float y, float scale | bool', |
| 3612 | \ 'ps_rect(': 'resource psdoc, float x, float y, float width, float height | bool', |
| 3613 | \ 'ps_restore(': 'resource psdoc | bool', |
| 3614 | \ 'ps_rotate(': 'resource psdoc, float rot | bool', |
| 3615 | \ 'ps_save(': 'resource psdoc | bool', |
| 3616 | \ 'ps_scale(': 'resource psdoc, float x, float y | bool', |
| 3617 | \ 'ps_set_border_color(': 'resource psdoc, float red, float green, float blue | bool', |
| 3618 | \ 'ps_set_border_dash(': 'resource psdoc, float black, float white | bool', |
| 3619 | \ 'ps_set_border_style(': 'resource psdoc, string style, float width | bool', |
| 3620 | \ 'ps_setcolor(': 'resource psdoc, string type, string colorspace, float c1, float c2, float c3, float c4 | bool', |
| 3621 | \ 'ps_setdash(': 'resource psdoc, float on, float off | bool', |
| 3622 | \ 'ps_setflat(': 'resource psdoc, float value | bool', |
| 3623 | \ 'ps_setfont(': 'resource psdoc, int fontid, float size | bool', |
| 3624 | \ 'ps_setgray(': 'resource psdoc, float gray | bool', |
| 3625 | \ 'ps_set_info(': 'resource p, string key, string val | bool', |
| 3626 | \ 'ps_setlinecap(': 'resource psdoc, int type | bool', |
| 3627 | \ 'ps_setlinejoin(': 'resource psdoc, int type | bool', |
| 3628 | \ 'ps_setlinewidth(': 'resource psdoc, float width | bool', |
| 3629 | \ 'ps_setmiterlimit(': 'resource psdoc, float value | bool', |
| 3630 | \ 'ps_set_parameter(': 'resource psdoc, string name, string value | bool', |
| 3631 | \ 'ps_setpolydash(': 'resource psdoc, float arr | bool', |
| 3632 | \ 'ps_set_text_pos(': 'resource psdoc, float x, float y | bool', |
| 3633 | \ 'ps_set_value(': 'resource psdoc, string name, float value | bool', |
| 3634 | \ 'ps_shading(': 'resource psdoc, string type, float x0, float y0, float x1, float y1, float c1, float c2, float c3, float c4, string optlist | int', |
| 3635 | \ 'ps_shading_pattern(': 'resource psdoc, int shadingid, string optlist | int', |
| 3636 | \ 'ps_shfill(': 'resource psdoc, int shadingid | bool', |
| 3637 | \ 'ps_show_boxed(': 'resource psdoc, string text, float left, float bottom, float width, float height, string hmode [, string feature] | int', |
| 3638 | \ 'ps_show(': 'resource psdoc, string text | bool', |
| 3639 | \ 'ps_show_xy(': 'resource psdoc, string text, float x, float y | bool', |
| 3640 | \ 'ps_string_geometry(': 'resource psdoc, string text [, int fontid [, float size]] | array', |
| 3641 | \ 'ps_stringwidth(': 'resource psdoc, string text [, int fontid [, float size]] | float', |
| 3642 | \ 'ps_stroke(': 'resource psdoc | bool', |
| 3643 | \ 'ps_symbol(': 'resource psdoc, int ord | bool', |
| 3644 | \ 'ps_symbol_name(': 'resource psdoc, int ord [, int fontid] | string', |
| 3645 | \ 'ps_symbol_width(': 'resource psdoc, int ord [, int fontid [, float size]] | float', |
| 3646 | \ 'ps_translate(': 'resource psdoc, float x, float y | bool', |
| 3647 | \ 'putenv(': 'string setting | bool', |
| 3648 | \ 'px_close(': 'resource pxdoc | bool', |
| 3649 | \ 'px_create_fp(': 'resource pxdoc, resource file, array fielddesc | bool', |
| 3650 | \ 'px_date2string(': 'resource pxdoc, int value, string format | string', |
| 3651 | \ 'px_delete(': 'resource pxdoc | bool', |
| 3652 | \ 'px_delete_record(': 'resource pxdoc, int num | bool', |
| 3653 | \ 'px_get_field(': 'resource pxdoc, int fieldno | array', |
| 3654 | \ 'px_get_info(': 'resource pxdoc | array', |
| 3655 | \ 'px_get_parameter(': 'resource pxdoc, string name | string', |
| 3656 | \ 'px_get_record(': 'resource pxdoc, int num [, int mode] | array', |
| 3657 | \ 'px_get_schema(': 'resource pxdoc [, int mode] | array', |
| 3658 | \ 'px_get_value(': 'resource pxdoc, string name | float', |
| 3659 | \ 'px_insert_record(': 'resource pxdoc, array data | int', |
| 3660 | \ 'px_new(': 'void | resource', |
| 3661 | \ 'px_numfields(': 'resource pxdoc | int', |
| 3662 | \ 'px_numrecords(': 'resource pxdoc | int', |
| 3663 | \ 'px_open_fp(': 'resource pxdoc, resource file | bool', |
| 3664 | \ 'px_put_record(': 'resource pxdoc, array record [, int recpos] | bool', |
| 3665 | \ 'px_retrieve_record(': 'resource pxdoc, int num [, int mode] | array', |
| 3666 | \ 'px_set_blob_file(': 'resource pxdoc, string filename | bool', |
| 3667 | \ 'px_set_parameter(': 'resource pxdoc, string name, string value | bool', |
| 3668 | \ 'px_set_tablename(': 'resource pxdoc, string name | void', |
| 3669 | \ 'px_set_targetencoding(': 'resource pxdoc, string encoding | bool', |
| 3670 | \ 'px_set_value(': 'resource pxdoc, string name, float value | bool', |
| 3671 | \ 'px_timestamp2string(': 'resource pxdoc, float value, string format | string', |
| 3672 | \ 'px_update_record(': 'resource pxdoc, array data, int num | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3673 | \ 'qdom_error(': 'void | string', |
| 3674 | \ 'qdom_tree(': 'string doc | QDomDocument', |
| 3675 | \ 'quoted_printable_decode(': 'string str | string', |
| 3676 | \ 'quotemeta(': 'string str | string', |
| 3677 | \ 'rad2deg(': 'float number | float', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3678 | \ 'radius_acct_open(': 'void | resource', |
| 3679 | \ 'radius_add_server(': 'resource radius_handle, string hostname, int port, string secret, int timeout, int max_tries | bool', |
| 3680 | \ 'radius_auth_open(': 'void | resource', |
| 3681 | \ 'radius_close(': 'resource radius_handle | bool', |
| 3682 | \ 'radius_config(': 'resource radius_handle, string file | bool', |
| 3683 | \ 'radius_create_request(': 'resource radius_handle, int type | bool', |
| 3684 | \ 'radius_cvt_addr(': 'string data | string', |
| 3685 | \ 'radius_cvt_int(': 'string data | int', |
| 3686 | \ 'radius_cvt_string(': 'string data | string', |
| 3687 | \ 'radius_demangle(': 'resource radius_handle, string mangled | string', |
| 3688 | \ 'radius_demangle_mppe_key(': 'resource radius_handle, string mangled | string', |
| 3689 | \ 'radius_get_attr(': 'resource radius_handle | mixed', |
| 3690 | \ 'radius_get_vendor_attr(': 'string data | array', |
| 3691 | \ 'radius_put_addr(': 'resource radius_handle, int type, string addr | bool', |
| 3692 | \ 'radius_put_attr(': 'resource radius_handle, int type, string value | bool', |
| 3693 | \ 'radius_put_int(': 'resource radius_handle, int type, int value | bool', |
| 3694 | \ 'radius_put_string(': 'resource radius_handle, int type, string value | bool', |
| 3695 | \ 'radius_put_vendor_addr(': 'resource radius_handle, int vendor, int type, string addr | bool', |
| 3696 | \ 'radius_put_vendor_attr(': 'resource radius_handle, int vendor, int type, string value | bool', |
| 3697 | \ 'radius_put_vendor_int(': 'resource radius_handle, int vendor, int type, int value | bool', |
| 3698 | \ 'radius_put_vendor_string(': 'resource radius_handle, int vendor, int type, string value | bool', |
| 3699 | \ 'radius_request_authenticator(': 'resource radius_handle | string', |
| 3700 | \ 'radius_send_request(': 'resource radius_handle | int', |
| 3701 | \ 'radius_server_secret(': 'resource radius_handle | string', |
| 3702 | \ 'radius_strerror(': 'resource radius_handle | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3703 | \ 'rand(': '[int min, int max] | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3704 | \ 'range(': 'mixed low, mixed high [, number step] | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3705 | \ 'rar_close(': 'resource rar_file | bool', |
| 3706 | \ 'rar_entry_get(': 'resource rar_file, string entry_name | RarEntry', |
| 3707 | \ 'rar_list(': 'resource rar_file | array', |
| 3708 | \ 'rar_open(': 'string filename [, string password] | resource', |
| 3709 | \ 'rawurldecode(': 'string str | string', |
| 3710 | \ 'rawurlencode(': 'string str | string', |
| 3711 | \ 'readdir(': 'resource dir_handle | string', |
| 3712 | \ 'readfile(': 'string filename [, bool use_include_path [, resource context]] | int', |
| 3713 | \ 'readgzfile(': 'string filename [, int use_include_path] | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3714 | \ 'readline_add_history(': 'string line | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3715 | \ 'readline_callback_handler_install(': 'string prompt, callback callback | bool', |
| 3716 | \ 'readline_callback_handler_remove(': 'void | bool', |
| 3717 | \ 'readline_callback_read_char(': 'void | void', |
| 3718 | \ 'readline_clear_history(': 'void | bool', |
| 3719 | \ 'readline_completion_function(': 'callback function | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3720 | \ 'readline(': 'string prompt | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3721 | \ 'readline_info(': '[string varname [, string newvalue]] | mixed', |
| 3722 | \ 'readline_list_history(': 'void | array', |
| 3723 | \ 'readline_on_new_line(': 'void | void', |
| 3724 | \ 'readline_read_history(': '[string filename] | bool', |
| 3725 | \ 'readline_redisplay(': 'void | void', |
| 3726 | \ 'readline_write_history(': '[string filename] | bool', |
| 3727 | \ 'readlink(': 'string path | string', |
| 3728 | \ 'realpath(': 'string path | string', |
| 3729 | \ 'recode_file(': 'string request, resource input, resource output | bool', |
| 3730 | \ 'recode_string(': 'string request, string string | string', |
| 3731 | \ 'register_shutdown_function(': 'callback function [, mixed parameter [, mixed ...]] | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3732 | \ 'register_tick_function(': 'callback function [, mixed arg [, mixed ...]] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3733 | \ 'rename_function(': 'string original_name, string new_name | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3734 | \ 'rename(': 'string oldname, string newname [, resource context] | bool', |
| 3735 | \ 'reset(': 'array &array | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3736 | \ 'restore_error_handler(': 'void | bool', |
| 3737 | \ 'restore_exception_handler(': 'void | bool', |
| 3738 | \ 'restore_include_path(': 'void | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3739 | \ 'rewinddir(': 'resource dir_handle | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3740 | \ 'rewind(': 'resource handle | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3741 | \ 'rmdir(': 'string dirname [, resource context] | bool', |
| 3742 | \ 'round(': 'float val [, int precision] | float', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3743 | \ 'rpm_close(': 'resource rpmr | boolean', |
| 3744 | \ 'rpm_get_tag(': 'resource rpmr, int tagnum | mixed', |
| 3745 | \ 'rpm_is_valid(': 'string filename | boolean', |
| 3746 | \ 'rpm_open(': 'string filename | resource', |
| 3747 | \ 'rpm_version(': 'void | string', |
| 3748 | \ 'rsort(': 'array &array [, int sort_flags] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3749 | \ 'rtrim(': 'string str [, string charlist] | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3750 | \ 'runkit_class_adopt(': 'string classname, string parentname | bool', |
| 3751 | \ 'runkit_class_emancipate(': 'string classname | bool', |
| 3752 | \ 'runkit_constant_add(': 'string constname, mixed value | bool', |
| 3753 | \ 'runkit_constant_redefine(': 'string constname, mixed newvalue | bool', |
| 3754 | \ 'runkit_constant_remove(': 'string constname | bool', |
| 3755 | \ 'runkit_function_add(': 'string funcname, string arglist, string code | bool', |
| 3756 | \ 'runkit_function_copy(': 'string funcname, string targetname | bool', |
| 3757 | \ 'runkit_function_redefine(': 'string funcname, string arglist, string code | bool', |
| 3758 | \ 'runkit_function_remove(': 'string funcname | bool', |
| 3759 | \ 'runkit_function_rename(': 'string funcname, string newname | bool', |
| 3760 | \ 'runkit_import(': 'string filename [, int flags] | bool', |
| 3761 | \ 'runkit_lint_file(': 'string filename | bool', |
| 3762 | \ 'runkit_lint(': 'string code | bool', |
| 3763 | \ 'runkit_method_add(': 'string classname, string methodname, string args, string code [, int flags] | bool', |
| 3764 | \ 'runkit_method_copy(': 'string dClass, string dMethod, string sClass [, string sMethod] | bool', |
| 3765 | \ 'runkit_method_redefine(': 'string classname, string methodname, string args, string code [, int flags] | bool', |
| 3766 | \ 'runkit_method_remove(': 'string classname, string methodname | bool', |
| 3767 | \ 'runkit_method_rename(': 'string classname, string methodname, string newname | bool', |
| 3768 | \ 'runkit_return_value_used(': 'void | bool', |
| 3769 | \ 'runkit_sandbox_output_handler(': 'object sandbox [, mixed callback] | mixed', |
| 3770 | \ 'runkit_superglobals(': 'void | array', |
| 3771 | \ 'satellite_caught_exception(': 'void | bool', |
| 3772 | \ 'satellite_exception_id(': 'void | string', |
| 3773 | \ 'satellite_exception_value(': 'void | OrbitStruct', |
| 3774 | \ 'satellite_get_repository_id(': 'object obj | int', |
| 3775 | \ 'satellite_load_idl(': 'string file | bool', |
| 3776 | \ 'satellite_object_to_string(': 'object obj | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3777 | \ 'scandir(': 'string directory [, int sorting_order [, resource context]] | array', |
| 3778 | \ 'sem_acquire(': 'resource sem_identifier | bool', |
| 3779 | \ 'sem_get(': 'int key [, int max_acquire [, int perm [, int auto_release]]] | resource', |
| 3780 | \ 'sem_release(': 'resource sem_identifier | bool', |
| 3781 | \ 'sem_remove(': 'resource sem_identifier | bool', |
| 3782 | \ 'serialize(': 'mixed value | string', |
| 3783 | \ 'sesam_affected_rows(': 'string result_id | int', |
| 3784 | \ 'sesam_commit(': 'void | bool', |
| 3785 | \ 'sesam_connect(': 'string catalog, string schema, string user | bool', |
| 3786 | \ 'sesam_diagnostic(': 'void | array', |
| 3787 | \ 'sesam_disconnect(': 'void | bool', |
| 3788 | \ 'sesam_errormsg(': 'void | string', |
| 3789 | \ 'sesam_execimm(': 'string query | string', |
| 3790 | \ 'sesam_fetch_array(': 'string result_id [, int whence [, int offset]] | array', |
| 3791 | \ 'sesam_fetch_result(': 'string result_id [, int max_rows] | mixed', |
| 3792 | \ 'sesam_fetch_row(': 'string result_id [, int whence [, int offset]] | array', |
| 3793 | \ 'sesam_field_array(': 'string result_id | array', |
| 3794 | \ 'sesam_field_name(': 'string result_id, int index | int', |
| 3795 | \ 'sesam_free_result(': 'string result_id | int', |
| 3796 | \ 'sesam_num_fields(': 'string result_id | int', |
| 3797 | \ 'sesam_query(': 'string query [, bool scrollable] | string', |
| 3798 | \ 'sesam_rollback(': 'void | bool', |
| 3799 | \ 'sesam_seek_row(': 'string result_id, int whence [, int offset] | bool', |
| 3800 | \ 'sesam_settransaction(': 'int isolation_level, int read_only | bool', |
| 3801 | \ 'session_cache_expire(': '[int new_cache_expire] | int', |
| 3802 | \ 'session_cache_limiter(': '[string cache_limiter] | string', |
| 3803 | \ 'session_decode(': 'string data | bool', |
| 3804 | \ 'session_destroy(': 'void | bool', |
| 3805 | \ 'session_encode(': 'void | string', |
| 3806 | \ 'session_get_cookie_params(': 'void | array', |
| 3807 | \ 'session_id(': '[string id] | string', |
| 3808 | \ 'session_is_registered(': 'string name | bool', |
| 3809 | \ 'session_module_name(': '[string module] | string', |
| 3810 | \ 'session_name(': '[string name] | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3811 | \ 'session_pgsql_add_error(': 'int error_level [, string error_message] | bool', |
| 3812 | \ 'session_pgsql_get_error(': '[bool with_error_message] | array', |
| 3813 | \ 'session_pgsql_get_field(': 'void | string', |
| 3814 | \ 'session_pgsql_reset(': 'void | bool', |
| 3815 | \ 'session_pgsql_set_field(': 'string value | bool', |
| 3816 | \ 'session_pgsql_status(': 'void | array', |
| 3817 | \ 'session_regenerate_id(': '[bool delete_old_session] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3818 | \ 'session_register(': 'mixed name [, mixed ...] | bool', |
| 3819 | \ 'session_save_path(': '[string path] | string', |
| 3820 | \ 'session_set_cookie_params(': 'int lifetime [, string path [, string domain [, bool secure]]] | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3821 | \ 'session_set_save_handler(': 'callback open, callback close, callback read, callback write, callback destroy, callback gc | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3822 | \ 'session_start(': 'void | bool', |
| 3823 | \ 'session_unregister(': 'string name | bool', |
| 3824 | \ 'session_unset(': 'void | void', |
| 3825 | \ 'session_write_close(': 'void | void', |
| 3826 | \ 'setcookie(': 'string name [, string value [, int expire [, string path [, string domain [, bool secure]]]]] | bool', |
| 3827 | \ 'set_error_handler(': 'callback error_handler [, int error_types] | mixed', |
| 3828 | \ 'set_exception_handler(': 'callback exception_handler | string', |
| 3829 | \ 'set_include_path(': 'string new_include_path | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3830 | \ 'setlocale(': 'int category, string locale [, string ...] | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3831 | \ 'set_magic_quotes_runtime(': 'int new_setting | bool', |
| 3832 | \ 'setrawcookie(': 'string name [, string value [, int expire [, string path [, string domain [, bool secure]]]]] | bool', |
| 3833 | \ 'set_time_limit(': 'int seconds | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3834 | \ 'settype(': 'mixed &var, string type | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3835 | \ 'sha1_file(': 'string filename [, bool raw_output] | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3836 | \ 'sha1(': 'string str [, bool raw_output] | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3837 | \ 'shell_exec(': 'string cmd | string', |
| 3838 | \ 'shm_attach(': 'int key [, int memsize [, int perm]] | int', |
| 3839 | \ 'shm_detach(': 'int shm_identifier | bool', |
| 3840 | \ 'shm_get_var(': 'int shm_identifier, int variable_key | mixed', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3841 | \ 'shmop_close(': 'int shmid | void', |
| 3842 | \ 'shmop_delete(': 'int shmid | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3843 | \ 'shmop_open(': 'int key, string flags, int mode, int size | int', |
| 3844 | \ 'shmop_read(': 'int shmid, int start, int count | string', |
| 3845 | \ 'shmop_size(': 'int shmid | int', |
| 3846 | \ 'shmop_write(': 'int shmid, string data, int offset | int', |
| 3847 | \ 'shm_put_var(': 'int shm_identifier, int variable_key, mixed variable | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3848 | \ 'shm_remove(': 'int shm_identifier | bool', |
| 3849 | \ 'shm_remove_var(': 'int shm_identifier, int variable_key | bool', |
| 3850 | \ 'shuffle(': 'array &array | bool', |
| 3851 | \ 'similar_text(': 'string first, string second [, float &percent] | int', |
| 3852 | \ 'SimpleXMLElement->asXML(': '[string filename] | mixed', |
| 3853 | \ 'simplexml_element->attributes(': '[string data] | SimpleXMLElement', |
| 3854 | \ 'simplexml_element->children(': '[string nsprefix] | SimpleXMLElement', |
| 3855 | \ 'SimpleXMLElement->xpath(': 'string path | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3856 | \ 'simplexml_import_dom(': 'DOMNode node [, string class_name] | SimpleXMLElement', |
| 3857 | \ 'simplexml_load_file(': 'string filename [, string class_name [, int options]] | object', |
| 3858 | \ 'simplexml_load_string(': 'string data [, string class_name [, int options]] | object', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3859 | \ 'sinh(': 'float arg | float', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3860 | \ 'sin(': 'float arg | float', |
| 3861 | \ 'sleep(': 'int seconds | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3862 | \ 'snmpget(': 'string hostname, string community, string object_id [, int timeout [, int retries]] | string', |
| 3863 | \ 'snmpgetnext(': 'string host, string community, string object_id [, int timeout [, int retries]] | string', |
| 3864 | \ 'snmp_get_quick_print(': 'void | bool', |
| 3865 | \ 'snmp_get_valueretrieval(': 'void | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3866 | \ 'snmp_read_mib(': 'string filename | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3867 | \ 'snmprealwalk(': 'string host, string community, string object_id [, int timeout [, int retries]] | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3868 | \ 'snmp_set_enum_print(': 'int enum_print | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3869 | \ 'snmpset(': 'string hostname, string community, string object_id, string type, mixed value [, int timeout [, int retries]] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3870 | \ 'snmp_set_oid_numeric_print(': 'int oid_numeric_print | void', |
| 3871 | \ 'snmp_set_quick_print(': 'bool quick_print | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3872 | \ 'snmp_set_valueretrieval(': 'int method | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3873 | \ 'snmpwalk(': 'string hostname, string community, string object_id [, int timeout [, int retries]] | array', |
| 3874 | \ 'snmpwalkoid(': 'string hostname, string community, string object_id [, int timeout [, int retries]] | array', |
| 3875 | \ 'socket_accept(': 'resource socket | resource', |
| 3876 | \ 'socket_bind(': 'resource socket, string address [, int port] | bool', |
| 3877 | \ 'socket_clear_error(': '[resource socket] | void', |
| 3878 | \ 'socket_close(': 'resource socket | void', |
| 3879 | \ 'socket_connect(': 'resource socket, string address [, int port] | bool', |
| 3880 | \ 'socket_create(': 'int domain, int type, int protocol | resource', |
| 3881 | \ 'socket_create_listen(': 'int port [, int backlog] | resource', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3882 | \ 'socket_create_pair(': 'int domain, int type, int protocol, array &fd | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3883 | \ 'socket_get_option(': 'resource socket, int level, int optname | mixed', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3884 | \ 'socket_getpeername(': 'resource socket, string &addr [, int &port] | bool', |
| 3885 | \ 'socket_getsockname(': 'resource socket, string &addr [, int &port] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3886 | \ 'socket_last_error(': '[resource socket] | int', |
| 3887 | \ 'socket_listen(': 'resource socket [, int backlog] | bool', |
| 3888 | \ 'socket_read(': 'resource socket, int length [, int type] | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3889 | \ 'socket_recvfrom(': 'resource socket, string &buf, int len, int flags, string &name [, int &port] | int', |
| 3890 | \ 'socket_recv(': 'resource socket, string &buf, int len, int flags | int', |
| 3891 | \ 'socket_select(': 'array &read, array &write, array &except, int tv_sec [, int tv_usec] | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3892 | \ 'socket_send(': 'resource socket, string buf, int len, int flags | int', |
| 3893 | \ 'socket_sendto(': 'resource socket, string buf, int len, int flags, string addr [, int port] | int', |
| 3894 | \ 'socket_set_block(': 'resource socket | bool', |
| 3895 | \ 'socket_set_nonblock(': 'resource socket | bool', |
| 3896 | \ 'socket_set_option(': 'resource socket, int level, int optname, mixed optval | bool', |
| 3897 | \ 'socket_shutdown(': 'resource socket [, int how] | bool', |
| 3898 | \ 'socket_strerror(': 'int errno | string', |
| 3899 | \ 'socket_write(': 'resource socket, string buffer [, int length] | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3900 | \ 'sort(': 'array &array [, int sort_flags] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3901 | \ 'soundex(': 'string str | string', |
| 3902 | \ 'spl_classes(': 'void | array', |
| 3903 | \ 'split(': 'string pattern, string string [, int limit] | array', |
| 3904 | \ 'spliti(': 'string pattern, string string [, int limit] | array', |
| 3905 | \ 'sprintf(': 'string format [, mixed args [, mixed ...]] | string', |
| 3906 | \ 'sqlite_array_query(': 'resource dbhandle, string query [, int result_type [, bool decode_binary]] | array', |
| 3907 | \ 'sqlite_busy_timeout(': 'resource dbhandle, int milliseconds | void', |
| 3908 | \ 'sqlite_changes(': 'resource dbhandle | int', |
| 3909 | \ 'sqlite_close(': 'resource dbhandle | void', |
| 3910 | \ 'sqlite_column(': 'resource result, mixed index_or_name [, bool decode_binary] | mixed', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3911 | \ 'sqlite_create_aggregate(': 'resource dbhandle, string function_name, callback step_func, callback finalize_func [, int num_args] | void', |
| 3912 | \ 'sqlite_create_function(': 'resource dbhandle, string function_name, callback callback [, int num_args] | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3913 | \ 'sqlite_current(': 'resource result [, int result_type [, bool decode_binary]] | array', |
| 3914 | \ 'sqlite_error_string(': 'int error_code | string', |
| 3915 | \ 'sqlite_escape_string(': 'string item | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3916 | \ 'sqlite_exec(': 'resource dbhandle, string query [, string &error_msg] | bool', |
| 3917 | \ 'sqlite_factory(': 'string filename [, int mode [, string &error_message]] | SQLiteDatabase', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3918 | \ 'sqlite_fetch_all(': 'resource result [, int result_type [, bool decode_binary]] | array', |
| 3919 | \ 'sqlite_fetch_array(': 'resource result [, int result_type [, bool decode_binary]] | array', |
| 3920 | \ 'sqlite_fetch_column_types(': 'string table_name, resource dbhandle [, int result_type] | array', |
| 3921 | \ 'sqlite_fetch_object(': 'resource result [, string class_name [, array ctor_params [, bool decode_binary]]] | object', |
| 3922 | \ 'sqlite_fetch_single(': 'resource result [, bool decode_binary] | string', |
| 3923 | \ 'sqlite_field_name(': 'resource result, int field_index | string', |
| 3924 | \ 'sqlite_has_more(': 'resource result | bool', |
| 3925 | \ 'sqlite_has_prev(': 'resource result | bool', |
| 3926 | \ 'sqlite_key(': 'resource result | int', |
| 3927 | \ 'sqlite_last_error(': 'resource dbhandle | int', |
| 3928 | \ 'sqlite_last_insert_rowid(': 'resource dbhandle | int', |
| 3929 | \ 'sqlite_libencoding(': 'void | string', |
| 3930 | \ 'sqlite_libversion(': 'void | string', |
| 3931 | \ 'sqlite_next(': 'resource result | bool', |
| 3932 | \ 'sqlite_num_fields(': 'resource result | int', |
| 3933 | \ 'sqlite_num_rows(': 'resource result | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3934 | \ 'sqlite_open(': 'string filename [, int mode [, string &error_message]] | resource', |
| 3935 | \ 'sqlite_popen(': 'string filename [, int mode [, string &error_message]] | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3936 | \ 'sqlite_prev(': 'resource result | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3937 | \ 'sqlite_query(': 'resource dbhandle, string query [, int result_type [, string &error_msg]] | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3938 | \ 'sqlite_rewind(': 'resource result | bool', |
| 3939 | \ 'sqlite_seek(': 'resource result, int rownum | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3940 | \ 'sqlite_single_query(': 'resource db, string query [, bool first_row_only [, bool decode_binary]] | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3941 | \ 'sqlite_udf_decode_binary(': 'string data | string', |
| 3942 | \ 'sqlite_udf_encode_binary(': 'string data | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3943 | \ 'sqlite_unbuffered_query(': 'resource dbhandle, string query [, int result_type [, string &error_msg]] | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3944 | \ 'sqlite_valid(': 'resource result | bool', |
| 3945 | \ 'sql_regcase(': 'string string | string', |
| 3946 | \ 'sqrt(': 'float arg | float', |
| 3947 | \ 'srand(': '[int seed] | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3948 | \ 'sscanf(': 'string str, string format [, mixed &...] | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3949 | \ 'ssh2_auth_hostbased_file(': 'resource session, string username, string hostname, string pubkeyfile, string privkeyfile [, string passphrase [, string local_username]] | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3950 | \ 'ssh2_auth_none(': 'resource session, string username | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3951 | \ 'ssh2_auth_password(': 'resource session, string username, string password | bool', |
| 3952 | \ 'ssh2_auth_pubkey_file(': 'resource session, string username, string pubkeyfile, string privkeyfile [, string passphrase] | bool', |
| 3953 | \ 'ssh2_connect(': 'string host [, int port [, array methods [, array callbacks]]] | resource', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3954 | \ 'ssh2_exec(': 'resource session, string command [, string pty [, array env [, int width [, int height [, int width_height_type]]]]] | resource', |
| 3955 | \ 'ssh2_fetch_stream(': 'resource channel, int streamid | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3956 | \ 'ssh2_fingerprint(': 'resource session [, int flags] | string', |
| 3957 | \ 'ssh2_methods_negotiated(': 'resource session | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3958 | \ 'ssh2_publickey_add(': 'resource pkey, string algoname, string blob [, bool overwrite [, array attributes]] | bool', |
| 3959 | \ 'ssh2_publickey_init(': 'resource session | resource', |
| 3960 | \ 'ssh2_publickey_list(': 'resource pkey | array', |
| 3961 | \ 'ssh2_publickey_remove(': 'resource pkey, string algoname, string blob | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3962 | \ 'ssh2_scp_recv(': 'resource session, string remote_file, string local_file | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3963 | \ 'ssh2_scp_send(': 'resource session, string local_file, string remote_file [, int create_mode] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3964 | \ 'ssh2_sftp(': 'resource session | resource', |
| 3965 | \ 'ssh2_sftp_lstat(': 'resource sftp, string path | array', |
| 3966 | \ 'ssh2_sftp_mkdir(': 'resource sftp, string dirname [, int mode [, bool recursive]] | bool', |
| 3967 | \ 'ssh2_sftp_readlink(': 'resource sftp, string link | string', |
| 3968 | \ 'ssh2_sftp_realpath(': 'resource sftp, string filename | string', |
| 3969 | \ 'ssh2_sftp_rename(': 'resource sftp, string from, string to | bool', |
| 3970 | \ 'ssh2_sftp_rmdir(': 'resource sftp, string dirname | bool', |
| 3971 | \ 'ssh2_sftp_stat(': 'resource sftp, string path | array', |
| 3972 | \ 'ssh2_sftp_symlink(': 'resource sftp, string target, string link | bool', |
| 3973 | \ 'ssh2_sftp_unlink(': 'resource sftp, string filename | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3974 | \ 'ssh2_shell(': 'resource session [, string term_type [, array env [, int width [, int height [, int width_height_type]]]]] | resource', |
| 3975 | \ 'ssh2_tunnel(': 'resource session, string host, int port | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3976 | \ 'stat(': 'string filename | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 3977 | \ 'stats_absolute_deviation(': 'array a | float', |
| 3978 | \ 'stats_cdf_beta(': 'float par1, float par2, float par3, int which | float', |
| 3979 | \ 'stats_cdf_binomial(': 'float par1, float par2, float par3, int which | float', |
| 3980 | \ 'stats_cdf_cauchy(': 'float par1, float par2, float par3, int which | float', |
| 3981 | \ 'stats_cdf_chisquare(': 'float par1, float par2, int which | float', |
| 3982 | \ 'stats_cdf_exponential(': 'float par1, float par2, int which | float', |
| 3983 | \ 'stats_cdf_f(': 'float par1, float par2, float par3, int which | float', |
| 3984 | \ 'stats_cdf_gamma(': 'float par1, float par2, float par3, int which | float', |
| 3985 | \ 'stats_cdf_laplace(': 'float par1, float par2, float par3, int which | float', |
| 3986 | \ 'stats_cdf_logistic(': 'float par1, float par2, float par3, int which | float', |
| 3987 | \ 'stats_cdf_negative_binomial(': 'float par1, float par2, float par3, int which | float', |
| 3988 | \ 'stats_cdf_noncentral_chisquare(': 'float par1, float par2, float par3, int which | float', |
| 3989 | \ 'stats_cdf_noncentral_f(': 'float par1, float par2, float par3, float par4, int which | float', |
| 3990 | \ 'stats_cdf_poisson(': 'float par1, float par2, int which | float', |
| 3991 | \ 'stats_cdf_t(': 'float par1, float par2, int which | float', |
| 3992 | \ 'stats_cdf_uniform(': 'float par1, float par2, float par3, int which | float', |
| 3993 | \ 'stats_cdf_weibull(': 'float par1, float par2, float par3, int which | float', |
| 3994 | \ 'stats_covariance(': 'array a, array b | float', |
| 3995 | \ 'stats_dens_beta(': 'float x, float a, float b | float', |
| 3996 | \ 'stats_dens_cauchy(': 'float x, float ave, float stdev | float', |
| 3997 | \ 'stats_dens_chisquare(': 'float x, float dfr | float', |
| 3998 | \ 'stats_dens_exponential(': 'float x, float scale | float', |
| 3999 | \ 'stats_dens_f(': 'float x, float dfr1, float dfr2 | float', |
| 4000 | \ 'stats_dens_gamma(': 'float x, float shape, float scale | float', |
| 4001 | \ 'stats_dens_laplace(': 'float x, float ave, float stdev | float', |
| 4002 | \ 'stats_dens_logistic(': 'float x, float ave, float stdev | float', |
| 4003 | \ 'stats_dens_negative_binomial(': 'float x, float n, float pi | float', |
| 4004 | \ 'stats_dens_normal(': 'float x, float ave, float stdev | float', |
| 4005 | \ 'stats_dens_pmf_binomial(': 'float x, float n, float pi | float', |
| 4006 | \ 'stats_dens_pmf_hypergeometric(': 'float n1, float n2, float N1, float N2 | float', |
| 4007 | \ 'stats_dens_pmf_poisson(': 'float x, float lb | float', |
| 4008 | \ 'stats_dens_t(': 'float x, float dfr | float', |
| 4009 | \ 'stats_dens_weibull(': 'float x, float a, float b | float', |
| 4010 | \ 'stats_den_uniform(': 'float x, float a, float b | float', |
| 4011 | \ 'stats_harmonic_mean(': 'array a | number', |
| 4012 | \ 'stats_kurtosis(': 'array a | float', |
| 4013 | \ 'stats_rand_gen_beta(': 'float a, float b | float', |
| 4014 | \ 'stats_rand_gen_chisquare(': 'float df | float', |
| 4015 | \ 'stats_rand_gen_exponential(': 'float av | float', |
| 4016 | \ 'stats_rand_gen_f(': 'float dfn, float dfd | float', |
| 4017 | \ 'stats_rand_gen_funiform(': 'float low, float high | float', |
| 4018 | \ 'stats_rand_gen_gamma(': 'float a, float r | float', |
| 4019 | \ 'stats_rand_gen_ibinomial(': 'int n, float pp | int', |
| 4020 | \ 'stats_rand_gen_ibinomial_negative(': 'int n, float p | int', |
| 4021 | \ 'stats_rand_gen_int(': 'void | int', |
| 4022 | \ 'stats_rand_gen_ipoisson(': 'float mu | int', |
| 4023 | \ 'stats_rand_gen_iuniform(': 'int low, int high | int', |
| 4024 | \ 'stats_rand_gen_noncenral_chisquare(': 'float df, float xnonc | float', |
| 4025 | \ 'stats_rand_gen_noncentral_f(': 'float dfn, float dfd, float xnonc | float', |
| 4026 | \ 'stats_rand_gen_noncentral_t(': 'float df, float xnonc | float', |
| 4027 | \ 'stats_rand_gen_normal(': 'float av, float sd | float', |
| 4028 | \ 'stats_rand_gen_t(': 'float df | float', |
| 4029 | \ 'stats_rand_get_seeds(': 'void | array', |
| 4030 | \ 'stats_rand_phrase_to_seeds(': 'string phrase | array', |
| 4031 | \ 'stats_rand_ranf(': 'void | float', |
| 4032 | \ 'stats_rand_setall(': 'int iseed1, int iseed2 | void', |
| 4033 | \ 'stats_skew(': 'array a | float', |
| 4034 | \ 'stats_standard_deviation(': 'array a [, bool sample] | float', |
| 4035 | \ 'stats_stat_binomial_coef(': 'int x, int n | float', |
| 4036 | \ 'stats_stat_correlation(': 'array arr1, array arr2 | float', |
| 4037 | \ 'stats_stat_gennch(': 'int n | float', |
| 4038 | \ 'stats_stat_independent_t(': 'array arr1, array arr2 | float', |
| 4039 | \ 'stats_stat_innerproduct(': 'array arr1, array arr2 | float', |
| 4040 | \ 'stats_stat_noncentral_t(': 'float par1, float par2, float par3, int which | float', |
| 4041 | \ 'stats_stat_paired_t(': 'array arr1, array arr2 | float', |
| 4042 | \ 'stats_stat_percentile(': 'float df, float xnonc | float', |
| 4043 | \ 'stats_stat_powersum(': 'array arr, float power | float', |
| 4044 | \ 'stats_variance(': 'array a [, bool sample] | float', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4045 | \ 'strcasecmp(': 'string str1, string str2 | int', |
| 4046 | \ 'strcmp(': 'string str1, string str2 | int', |
| 4047 | \ 'strcoll(': 'string str1, string str2 | int', |
| 4048 | \ 'strcspn(': 'string str1, string str2 [, int start [, int length]] | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4049 | \ 'stream_bucket_append(': 'resource brigade, resource bucket | void', |
| 4050 | \ 'stream_bucket_make_writeable(': 'resource brigade | object', |
| 4051 | \ 'stream_bucket_new(': 'resource stream, string buffer | object', |
| 4052 | \ 'stream_bucket_prepend(': 'resource brigade, resource bucket | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4053 | \ 'stream_context_create(': '[array options] | resource', |
| 4054 | \ 'stream_context_get_default(': '[array options] | resource', |
| 4055 | \ 'stream_context_get_options(': 'resource stream_or_context | array', |
| 4056 | \ 'stream_context_set_option(': 'resource stream_or_context, string wrapper, string option, mixed value | bool', |
| 4057 | \ 'stream_context_set_params(': 'resource stream_or_context, array params | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4058 | \ 'stream_copy_to_stream(': 'resource source, resource dest [, int maxlength [, int offset]] | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4059 | \ 'stream_filter_append(': 'resource stream, string filtername [, int read_write [, mixed params]] | resource', |
| 4060 | \ 'stream_filter_prepend(': 'resource stream, string filtername [, int read_write [, mixed params]] | resource', |
| 4061 | \ 'stream_filter_register(': 'string filtername, string classname | bool', |
| 4062 | \ 'stream_filter_remove(': 'resource stream_filter | bool', |
| 4063 | \ 'stream_get_contents(': 'resource handle [, int maxlength [, int offset]] | string', |
| 4064 | \ 'stream_get_filters(': 'void | array', |
| 4065 | \ 'stream_get_line(': 'resource handle, int length [, string ending] | string', |
| 4066 | \ 'stream_get_meta_data(': 'resource stream | array', |
| 4067 | \ 'stream_get_transports(': 'void | array', |
| 4068 | \ 'stream_get_wrappers(': 'void | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4069 | \ 'stream_select(': 'array &read, array &write, array &except, int tv_sec [, int tv_usec] | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4070 | \ 'stream_set_blocking(': 'resource stream, int mode | bool', |
| 4071 | \ 'stream_set_timeout(': 'resource stream, int seconds [, int microseconds] | bool', |
| 4072 | \ 'stream_set_write_buffer(': 'resource stream, int buffer | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4073 | \ 'stream_socket_accept(': 'resource server_socket [, float timeout [, string &peername]] | resource', |
| 4074 | \ 'stream_socket_client(': 'string remote_socket [, int &errno [, string &errstr [, float timeout [, int flags [, resource context]]]]] | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4075 | \ 'stream_socket_enable_crypto(': 'resource stream, bool enable [, int crypto_type [, resource session_stream]] | mixed', |
| 4076 | \ 'stream_socket_get_name(': 'resource handle, bool want_peer | string', |
| 4077 | \ 'stream_socket_pair(': 'int domain, int type, int protocol | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4078 | \ 'stream_socket_recvfrom(': 'resource socket, int length [, int flags [, string &address]] | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4079 | \ 'stream_socket_sendto(': 'resource socket, string data [, int flags [, string address]] | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4080 | \ 'stream_socket_server(': 'string local_socket [, int &errno [, string &errstr [, int flags [, resource context]]]] | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4081 | \ 'stream_wrapper_register(': 'string protocol, string classname | bool', |
| 4082 | \ 'stream_wrapper_restore(': 'string protocol | bool', |
| 4083 | \ 'stream_wrapper_unregister(': 'string protocol | bool', |
| 4084 | \ 'strftime(': 'string format [, int timestamp] | string', |
| 4085 | \ 'stripcslashes(': 'string str | string', |
| 4086 | \ 'stripos(': 'string haystack, string needle [, int offset] | int', |
| 4087 | \ 'stripslashes(': 'string str | string', |
| 4088 | \ 'strip_tags(': 'string str [, string allowable_tags] | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4089 | \ 'str_ireplace(': 'mixed search, mixed replace, mixed subject [, int &count] | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4090 | \ 'stristr(': 'string haystack, string needle | string', |
| 4091 | \ 'strlen(': 'string string | int', |
| 4092 | \ 'strnatcasecmp(': 'string str1, string str2 | int', |
| 4093 | \ 'strnatcmp(': 'string str1, string str2 | int', |
| 4094 | \ 'strncasecmp(': 'string str1, string str2, int len | int', |
| 4095 | \ 'strncmp(': 'string str1, string str2, int len | int', |
| 4096 | \ 'str_pad(': 'string input, int pad_length [, string pad_string [, int pad_type]] | string', |
| 4097 | \ 'strpbrk(': 'string haystack, string char_list | string', |
| 4098 | \ 'strpos(': 'string haystack, mixed needle [, int offset] | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4099 | \ 'strptime(': 'string date, string format | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4100 | \ 'strrchr(': 'string haystack, string needle | string', |
| 4101 | \ 'str_repeat(': 'string input, int multiplier | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4102 | \ 'str_replace(': 'mixed search, mixed replace, mixed subject [, int &count] | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4103 | \ 'strrev(': 'string string | string', |
| 4104 | \ 'strripos(': 'string haystack, string needle [, int offset] | int', |
| 4105 | \ 'str_rot13(': 'string str | string', |
| 4106 | \ 'strrpos(': 'string haystack, string needle [, int offset] | int', |
| 4107 | \ 'str_shuffle(': 'string str | string', |
| 4108 | \ 'str_split(': 'string string [, int split_length] | array', |
| 4109 | \ 'strspn(': 'string str1, string str2 [, int start [, int length]] | int', |
| 4110 | \ 'strstr(': 'string haystack, string needle | string', |
| 4111 | \ 'strtok(': 'string str, string token | string', |
| 4112 | \ 'strtolower(': 'string str | string', |
| 4113 | \ 'strtotime(': 'string time [, int now] | int', |
| 4114 | \ 'strtoupper(': 'string string | string', |
| 4115 | \ 'strtr(': 'string str, string from, string to | string', |
| 4116 | \ 'strval(': 'mixed var | string', |
| 4117 | \ 'str_word_count(': 'string string [, int format [, string charlist]] | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4118 | \ 'substr_compare(': 'string main_str, string str, int offset [, int length [, bool case_insensitivity]] | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4119 | \ 'substr_count(': 'string haystack, string needle [, int offset [, int length]] | int', |
| 4120 | \ 'substr(': 'string string, int start [, int length] | string', |
| 4121 | \ 'substr_replace(': 'mixed string, string replacement, int start [, int length] | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4122 | \ 'swf_actiongeturl(': 'string url, string target | void', |
| 4123 | \ 'swf_actiongotoframe(': 'int framenumber | void', |
| 4124 | \ 'swf_actiongotolabel(': 'string label | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4125 | \ 'swfaction(': 'string script | SWFAction', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4126 | \ 'swf_actionnextframe(': 'void | void', |
| 4127 | \ 'swf_actionplay(': 'void | void', |
| 4128 | \ 'swf_actionprevframe(': 'void | void', |
| 4129 | \ 'swf_actionsettarget(': 'string target | void', |
| 4130 | \ 'swf_actionstop(': 'void | void', |
| 4131 | \ 'swf_actiontogglequality(': 'void | void', |
| 4132 | \ 'swf_actionwaitforframe(': 'int framenumber, int skipcount | void', |
| 4133 | \ 'swf_addbuttonrecord(': 'int states, int shapeid, int depth | void', |
| 4134 | \ 'swf_addcolor(': 'float r, float g, float b, float a | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4135 | \ 'swfbitmap->getheight(': 'void | float', |
| 4136 | \ 'swfbitmap->getwidth(': 'void | float', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4137 | \ 'swfbitmap(': 'mixed file [, mixed alphafile] | SWFBitmap', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4138 | \ 'swfbutton->addaction(': 'resource action, int flags | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4139 | \ 'swfbutton->addshape(': 'resource shape, int flags | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4140 | \ 'swfbutton(': 'void | SWFButton', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4141 | \ 'swfbutton->setaction(': 'resource action | void', |
| 4142 | \ 'swfbutton->setdown(': 'resource shape | void', |
| 4143 | \ 'swfbutton->sethit(': 'resource shape | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4144 | \ 'swfbutton->setover(': 'resource shape | void', |
| 4145 | \ 'swfbutton->setup(': 'resource shape | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4146 | \ 'swf_closefile(': '[int return_file] | void', |
| 4147 | \ 'swf_definebitmap(': 'int objid, string image_name | void', |
| 4148 | \ 'swf_definefont(': 'int fontid, string fontname | void', |
| 4149 | \ 'swf_defineline(': 'int objid, float x1, float y1, float x2, float y2, float width | void', |
| 4150 | \ 'swf_definepoly(': 'int objid, array coords, int npoints, float width | void', |
| 4151 | \ 'swf_definerect(': 'int objid, float x1, float y1, float x2, float y2, float width | void', |
| 4152 | \ 'swf_definetext(': 'int objid, string str, int docenter | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4153 | \ 'swfdisplayitem->addcolor(': 'int red, int green, int blue [, int a] | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4154 | \ 'swfdisplayitem->move(': 'int dx, int dy | void', |
| 4155 | \ 'swfdisplayitem->moveto(': 'int x, int y | void', |
| 4156 | \ 'swfdisplayitem->multcolor(': 'int red, int green, int blue [, int a] | void', |
| 4157 | \ 'swfdisplayitem->remove(': 'void | void', |
| 4158 | \ 'swfdisplayitem->rotate(': 'float ddegrees | void', |
| 4159 | \ 'swfdisplayitem->rotateto(': 'float degrees | void', |
| 4160 | \ 'swfdisplayitem->scale(': 'int dx, int dy | void', |
| 4161 | \ 'swfdisplayitem->scaleto(': 'int x [, int y] | void', |
| 4162 | \ 'swfdisplayitem->setdepth(': 'float depth | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4163 | \ 'swfdisplayitem->setname(': 'string name | void', |
| 4164 | \ 'swfdisplayitem->setratio(': 'float ratio | void', |
| 4165 | \ 'swfdisplayitem->skewx(': 'float ddegrees | void', |
| 4166 | \ 'swfdisplayitem->skewxto(': 'float degrees | void', |
| 4167 | \ 'swfdisplayitem->skewy(': 'float ddegrees | void', |
| 4168 | \ 'swfdisplayitem->skewyto(': 'float degrees | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4169 | \ 'swf_endbutton(': 'void | void', |
| 4170 | \ 'swf_enddoaction(': 'void | void', |
| 4171 | \ 'swf_endshape(': 'void | void', |
| 4172 | \ 'swf_endsymbol(': 'void | void', |
| 4173 | \ 'swffill(': 'void | SWFFill', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4174 | \ 'swffill->moveto(': 'int x, int y | void', |
| 4175 | \ 'swffill->rotateto(': 'float degrees | void', |
| 4176 | \ 'swffill->scaleto(': 'int x [, int y] | void', |
| 4177 | \ 'swffill->skewxto(': 'float x | void', |
| 4178 | \ 'swffill->skewyto(': 'float y | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4179 | \ 'swffont->getwidth(': 'string string | float', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4180 | \ 'swffont(': 'string filename | SWFFont', |
| 4181 | \ 'swf_fontsize(': 'float size | void', |
| 4182 | \ 'swf_fontslant(': 'float slant | void', |
| 4183 | \ 'swf_fonttracking(': 'float tracking | void', |
| 4184 | \ 'swf_getbitmapinfo(': 'int bitmapid | array', |
| 4185 | \ 'swf_getfontinfo(': 'void | array', |
| 4186 | \ 'swf_getframe(': 'void | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4187 | \ 'swfgradient->addentry(': 'float ratio, int red, int green, int blue [, int a] | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4188 | \ 'swfgradient(': 'void | SWFGradient', |
| 4189 | \ 'swf_labelframe(': 'string name | void', |
| 4190 | \ 'swf_lookat(': 'float view_x, float view_y, float view_z, float reference_x, float reference_y, float reference_z, float twist | void', |
| 4191 | \ 'swf_modifyobject(': 'int depth, int how | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4192 | \ 'swfmorph->getshape1(': 'void | mixed', |
| 4193 | \ 'swfmorph->getshape2(': 'void | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4194 | \ 'swfmorph(': 'void | SWFMorph', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4195 | \ 'swfmovie->add(': 'resource instance | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4196 | \ 'swfmovie(': 'void | SWFMovie', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4197 | \ 'swfmovie->nextframe(': 'void | void', |
| 4198 | \ 'swfmovie->output(': '[int compression] | int', |
| 4199 | \ 'swfmovie->remove(': 'resource instance | void', |
| 4200 | \ 'swfmovie->save(': 'string filename [, int compression] | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4201 | \ 'swfmovie->setbackground(': 'int red, int green, int blue | void', |
| 4202 | \ 'swfmovie->setdimension(': 'int width, int height | void', |
| 4203 | \ 'swfmovie->setframes(': 'string numberofframes | void', |
| 4204 | \ 'swfmovie->setrate(': 'int rate | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4205 | \ 'swfmovie->streammp3(': 'mixed mp3File | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4206 | \ 'swf_mulcolor(': 'float r, float g, float b, float a | void', |
| 4207 | \ 'swf_nextid(': 'void | int', |
| 4208 | \ 'swf_oncondition(': 'int transition | void', |
| 4209 | \ 'swf_openfile(': 'string filename, float width, float height, float framerate, float r, float g, float b | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4210 | \ 'swf_ortho2(': 'float xmin, float xmax, float ymin, float ymax | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4211 | \ 'swf_ortho(': 'float xmin, float xmax, float ymin, float ymax, float zmin, float zmax | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4212 | \ 'swf_perspective(': 'float fovy, float aspect, float near, float far | void', |
| 4213 | \ 'swf_placeobject(': 'int objid, int depth | void', |
| 4214 | \ 'swf_polarview(': 'float dist, float azimuth, float incidence, float twist | void', |
| 4215 | \ 'swf_popmatrix(': 'void | void', |
| 4216 | \ 'swf_posround(': 'int round | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4217 | \ 'SWFPrebuiltClip(': '[string file] | SWFPrebuiltClip', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4218 | \ 'swf_pushmatrix(': 'void | void', |
| 4219 | \ 'swf_removeobject(': 'int depth | void', |
| 4220 | \ 'swf_rotate(': 'float angle, string axis | void', |
| 4221 | \ 'swf_scale(': 'float x, float y, float z | void', |
| 4222 | \ 'swf_setfont(': 'int fontid | void', |
| 4223 | \ 'swf_setframe(': 'int framenumber | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4224 | \ 'SWFShape->addFill(': 'int red, int green, int blue [, int a] | SWFFill', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4225 | \ 'swf_shapearc(': 'float x, float y, float r, float ang1, float ang2 | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4226 | \ 'swf_shapecurveto3(': 'float x1, float y1, float x2, float y2, float x3, float y3 | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4227 | \ 'swf_shapecurveto(': 'float x1, float y1, float x2, float y2 | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4228 | \ 'swfshape->drawcurve(': 'int controldx, int controldy, int anchordx, int anchordy [, int targetdx, int targetdy] | int', |
| 4229 | \ 'swfshape->drawcurveto(': 'int controlx, int controly, int anchorx, int anchory [, int targetx, int targety] | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4230 | \ 'swfshape->drawline(': 'int dx, int dy | void', |
| 4231 | \ 'swfshape->drawlineto(': 'int x, int y | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4232 | \ 'swf_shapefillbitmapclip(': 'int bitmapid | void', |
| 4233 | \ 'swf_shapefillbitmaptile(': 'int bitmapid | void', |
| 4234 | \ 'swf_shapefilloff(': 'void | void', |
| 4235 | \ 'swf_shapefillsolid(': 'float r, float g, float b, float a | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4236 | \ 'swfshape(': 'void | SWFShape', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4237 | \ 'swf_shapelinesolid(': 'float r, float g, float b, float a, float width | void', |
| 4238 | \ 'swf_shapelineto(': 'float x, float y | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4239 | \ 'swfshape->movepen(': 'int dx, int dy | void', |
| 4240 | \ 'swfshape->movepento(': 'int x, int y | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4241 | \ 'swf_shapemoveto(': 'float x, float y | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4242 | \ 'swfshape->setleftfill(': 'swfgradient fill | void', |
| 4243 | \ 'swfshape->setline(': 'swfshape shape | void', |
| 4244 | \ 'swfshape->setrightfill(': 'swfgradient fill | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4245 | \ 'swf_showframe(': 'void | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4246 | \ 'SWFSound(': 'string filename, int flags | SWFSound', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4247 | \ 'swfsprite->add(': 'resource object | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4248 | \ 'swfsprite(': 'void | SWFSprite', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4249 | \ 'swfsprite->nextframe(': 'void | void', |
| 4250 | \ 'swfsprite->remove(': 'resource object | void', |
| 4251 | \ 'swfsprite->setframes(': 'int numberofframes | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4252 | \ 'swf_startbutton(': 'int objid, int type | void', |
| 4253 | \ 'swf_startdoaction(': 'void | void', |
| 4254 | \ 'swf_startshape(': 'int objid | void', |
| 4255 | \ 'swf_startsymbol(': 'int objid | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4256 | \ 'swftext->addstring(': 'string string | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4257 | \ 'swftextfield->addstring(': 'string string | void', |
| 4258 | \ 'swftextfield->align(': 'int alignement | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4259 | \ 'swftextfield(': '[int flags] | SWFTextField', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4260 | \ 'swftextfield->setbounds(': 'int width, int height | void', |
| 4261 | \ 'swftextfield->setcolor(': 'int red, int green, int blue [, int a] | void', |
| 4262 | \ 'swftextfield->setfont(': 'string font | void', |
| 4263 | \ 'swftextfield->setheight(': 'int height | void', |
| 4264 | \ 'swftextfield->setindentation(': 'int width | void', |
| 4265 | \ 'swftextfield->setleftmargin(': 'int width | void', |
| 4266 | \ 'swftextfield->setlinespacing(': 'int height | void', |
| 4267 | \ 'swftextfield->setmargins(': 'int left, int right | void', |
| 4268 | \ 'swftextfield->setname(': 'string name | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4269 | \ 'swftextfield->setrightmargin(': 'int width | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4270 | \ 'swftext->getwidth(': 'string string | float', |
| 4271 | \ 'swftext(': 'void | SWFText', |
| 4272 | \ 'swftext->moveto(': 'int x, int y | void', |
| 4273 | \ 'swftext->setcolor(': 'int red, int green, int blue [, int a] | void', |
| 4274 | \ 'swftext->setfont(': 'string font | void', |
| 4275 | \ 'swftext->setheight(': 'int height | void', |
| 4276 | \ 'swftext->setspacing(': 'float spacing | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4277 | \ 'swf_textwidth(': 'string str | float', |
| 4278 | \ 'swf_translate(': 'float x, float y, float z | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4279 | \ 'SWFVideoStream(': '[string file] | SWFVideoStream', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4280 | \ 'swf_viewport(': 'float xmin, float xmax, float ymin, float ymax | void', |
| 4281 | \ 'sybase_affected_rows(': '[resource link_identifier] | int', |
| 4282 | \ 'sybase_close(': '[resource link_identifier] | bool', |
| 4283 | \ 'sybase_connect(': '[string servername [, string username [, string password [, string charset [, string appname]]]]] | resource', |
| 4284 | \ 'sybase_data_seek(': 'resource result_identifier, int row_number | bool', |
| 4285 | \ 'sybase_deadlock_retry_count(': 'int retry_count | void', |
| 4286 | \ 'sybase_fetch_array(': 'resource result | array', |
| 4287 | \ 'sybase_fetch_assoc(': 'resource result | array', |
| 4288 | \ 'sybase_fetch_field(': 'resource result [, int field_offset] | object', |
| 4289 | \ 'sybase_fetch_object(': 'resource result [, mixed object] | object', |
| 4290 | \ 'sybase_fetch_row(': 'resource result | array', |
| 4291 | \ 'sybase_field_seek(': 'resource result, int field_offset | bool', |
| 4292 | \ 'sybase_free_result(': 'resource result | bool', |
| 4293 | \ 'sybase_get_last_message(': 'void | string', |
| 4294 | \ 'sybase_min_client_severity(': 'int severity | void', |
| 4295 | \ 'sybase_min_error_severity(': 'int severity | void', |
| 4296 | \ 'sybase_min_message_severity(': 'int severity | void', |
| 4297 | \ 'sybase_min_server_severity(': 'int severity | void', |
| 4298 | \ 'sybase_num_fields(': 'resource result | int', |
| 4299 | \ 'sybase_num_rows(': 'resource result | int', |
| 4300 | \ 'sybase_pconnect(': '[string servername [, string username [, string password [, string charset [, string appname]]]]] | resource', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4301 | \ 'sybase_query(': 'string query [, resource link_identifier] | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4302 | \ 'sybase_result(': 'resource result, int row, mixed field | string', |
| 4303 | \ 'sybase_select_db(': 'string database_name [, resource link_identifier] | bool', |
| 4304 | \ 'sybase_set_message_handler(': 'callback handler [, resource connection] | bool', |
| 4305 | \ 'sybase_unbuffered_query(': 'string query, resource link_identifier [, bool store_result] | resource', |
| 4306 | \ 'symlink(': 'string target, string link | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4307 | \ 'sys_getloadavg(': 'void | array', |
| 4308 | \ 'syslog(': 'int priority, string message | bool', |
| 4309 | \ 'system(': 'string command [, int &return_var] | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4310 | \ 'tanh(': 'float arg | float', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4311 | \ 'tan(': 'float arg | float', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4312 | \ 'tcpwrap_check(': 'string daemon, string address [, string user [, bool nodns]] | bool', |
| 4313 | \ 'tempnam(': 'string dir, string prefix | string', |
| 4314 | \ 'textdomain(': 'string text_domain | string', |
| 4315 | \ 'tidy_access_count(': 'tidy object | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4316 | \ 'tidy_config_count(': 'tidy object | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4317 | \ 'tidy_error_count(': 'tidy object | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4318 | \ 'tidy_get_output(': 'tidy object | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4319 | \ 'tidy_load_config(': 'string filename, string encoding | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4320 | \ 'tidy_node->get_attr(': 'int attrib_id | tidy_attr', |
| 4321 | \ 'tidy_node->get_nodes(': 'int node_id | array', |
| 4322 | \ 'tidyNode->hasChildren(': 'void | bool', |
| 4323 | \ 'tidyNode->hasSiblings(': 'void | bool', |
| 4324 | \ 'tidyNode->isAsp(': 'void | bool', |
| 4325 | \ 'tidyNode->isComment(': 'void | bool', |
| 4326 | \ 'tidyNode->isHtml(': 'void | bool', |
| 4327 | \ 'tidyNode->isJste(': 'void | bool', |
| 4328 | \ 'tidyNode->isPhp(': 'void | bool', |
| 4329 | \ 'tidyNode->isText(': 'void | bool', |
| 4330 | \ 'tidy_node->next(': 'void | tidy_node', |
| 4331 | \ 'tidy_node->prev(': 'void | tidy_node', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4332 | \ 'tidy_repair_file(': 'string filename [, mixed config [, string encoding [, bool use_include_path]]] | string', |
| 4333 | \ 'tidy_repair_string(': 'string data [, mixed config [, string encoding]] | string', |
| 4334 | \ 'tidy_reset_config(': 'void | bool', |
| 4335 | \ 'tidy_save_config(': 'string filename | bool', |
| 4336 | \ 'tidy_set_encoding(': 'string encoding | bool', |
| 4337 | \ 'tidy_setopt(': 'string option, mixed value | bool', |
| 4338 | \ 'tidy_warning_count(': 'tidy object | int', |
| 4339 | \ 'time(': 'void | int', |
| 4340 | \ 'time_nanosleep(': 'int seconds, int nanoseconds | mixed', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4341 | \ 'time_sleep_until(': 'float timestamp | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4342 | \ 'tmpfile(': 'void | resource', |
| 4343 | \ 'token_get_all(': 'string source | array', |
| 4344 | \ 'token_name(': 'int token | string', |
| 4345 | \ 'touch(': 'string filename [, int time [, int atime]] | bool', |
| 4346 | \ 'trigger_error(': 'string error_msg [, int error_type] | bool', |
| 4347 | \ 'trim(': 'string str [, string charlist] | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4348 | \ 'uasort(': 'array &array, callback cmp_function | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4349 | \ 'ucfirst(': 'string str | string', |
| 4350 | \ 'ucwords(': 'string str | string', |
| 4351 | \ 'udm_add_search_limit(': 'resource agent, int var, string val | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4352 | \ 'udm_alloc_agent_array(': 'array databases | resource', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4353 | \ 'udm_alloc_agent(': 'string dbaddr [, string dbmode] | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4354 | \ 'udm_api_version(': 'void | int', |
| 4355 | \ 'udm_cat_list(': 'resource agent, string category | array', |
| 4356 | \ 'udm_cat_path(': 'resource agent, string category | array', |
| 4357 | \ 'udm_check_charset(': 'resource agent, string charset | bool', |
| 4358 | \ 'udm_check_stored(': 'resource agent, int link, string doc_id | int', |
| 4359 | \ 'udm_clear_search_limits(': 'resource agent | bool', |
| 4360 | \ 'udm_close_stored(': 'resource agent, int link | int', |
| 4361 | \ 'udm_crc32(': 'resource agent, string str | int', |
| 4362 | \ 'udm_errno(': 'resource agent | int', |
| 4363 | \ 'udm_error(': 'resource agent | string', |
| 4364 | \ 'udm_find(': 'resource agent, string query | resource', |
| 4365 | \ 'udm_free_agent(': 'resource agent | int', |
| 4366 | \ 'udm_free_ispell_data(': 'int agent | bool', |
| 4367 | \ 'udm_free_res(': 'resource res | bool', |
| 4368 | \ 'udm_get_doc_count(': 'resource agent | int', |
| 4369 | \ 'udm_get_res_field(': 'resource res, int row, int field | string', |
| 4370 | \ 'udm_get_res_param(': 'resource res, int param | string', |
| 4371 | \ 'udm_hash32(': 'resource agent, string str | int', |
| 4372 | \ 'udm_load_ispell_data(': 'resource agent, int var, string val1, string val2, int flag | bool', |
| 4373 | \ 'udm_open_stored(': 'resource agent, string storedaddr | int', |
| 4374 | \ 'udm_set_agent_param(': 'resource agent, int var, string val | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4375 | \ 'uksort(': 'array &array, callback cmp_function | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4376 | \ 'umask(': '[int mask] | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4377 | \ 'unicode_encode(': 'unicode input, string encoding | string', |
| 4378 | \ 'unicode_semantics(': 'void | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4379 | \ 'uniqid(': '[string prefix [, bool more_entropy]] | string', |
| 4380 | \ 'unixtojd(': '[int timestamp] | int', |
| 4381 | \ 'unlink(': 'string filename [, resource context] | bool', |
| 4382 | \ 'unpack(': 'string format, string data | array', |
| 4383 | \ 'unregister_tick_function(': 'string function_name | void', |
| 4384 | \ 'unserialize(': 'string str | mixed', |
| 4385 | \ 'unset(': 'mixed var [, mixed var [, mixed ...]] | void', |
| 4386 | \ 'urldecode(': 'string str | string', |
| 4387 | \ 'urlencode(': 'string str | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4388 | \ 'use_soap_error_handler(': '[bool handler] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4389 | \ 'usleep(': 'int micro_seconds | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4390 | \ 'usort(': 'array &array, callback cmp_function | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4391 | \ 'utf8_decode(': 'string data | string', |
| 4392 | \ 'utf8_encode(': 'string data | string', |
| 4393 | \ 'var_dump(': 'mixed expression [, mixed expression [, ...]] | void', |
| 4394 | \ 'var_export(': 'mixed expression [, bool return] | mixed', |
| 4395 | \ 'variant_abs(': 'mixed val | mixed', |
| 4396 | \ 'variant_add(': 'mixed left, mixed right | mixed', |
| 4397 | \ 'variant_and(': 'mixed left, mixed right | mixed', |
| 4398 | \ 'variant_cast(': 'variant variant, int type | variant', |
| 4399 | \ 'variant_cat(': 'mixed left, mixed right | mixed', |
| 4400 | \ 'variant_cmp(': 'mixed left, mixed right [, int lcid [, int flags]] | int', |
| 4401 | \ 'variant_date_from_timestamp(': 'int timestamp | variant', |
| 4402 | \ 'variant_date_to_timestamp(': 'variant variant | int', |
| 4403 | \ 'variant_div(': 'mixed left, mixed right | mixed', |
| 4404 | \ 'variant_eqv(': 'mixed left, mixed right | mixed', |
| 4405 | \ 'variant_fix(': 'mixed variant | mixed', |
| 4406 | \ 'variant_get_type(': 'variant variant | int', |
| 4407 | \ 'variant_idiv(': 'mixed left, mixed right | mixed', |
| 4408 | \ 'variant_imp(': 'mixed left, mixed right | mixed', |
| 4409 | \ 'variant_int(': 'mixed variant | mixed', |
| 4410 | \ 'variant_mod(': 'mixed left, mixed right | mixed', |
| 4411 | \ 'variant_mul(': 'mixed left, mixed right | mixed', |
| 4412 | \ 'variant_neg(': 'mixed variant | mixed', |
| 4413 | \ 'variant_not(': 'mixed variant | mixed', |
| 4414 | \ 'variant_or(': 'mixed left, mixed right | mixed', |
| 4415 | \ 'variant_pow(': 'mixed left, mixed right | mixed', |
| 4416 | \ 'variant_round(': 'mixed variant, int decimals | mixed', |
| 4417 | \ 'variant_set(': 'variant variant, mixed value | void', |
| 4418 | \ 'variant_set_type(': 'variant variant, int type | void', |
| 4419 | \ 'variant_sub(': 'mixed left, mixed right | mixed', |
| 4420 | \ 'variant_xor(': 'mixed left, mixed right | mixed', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4421 | \ 'version_compare(': 'string version1, string version2 [, string operator] | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4422 | \ 'vfprintf(': 'resource handle, string format, array args | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4423 | \ 'virtual(': 'string filename | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4424 | \ 'vpopmail_add_alias_domain_ex(': 'string olddomain, string newdomain | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4425 | \ 'vpopmail_add_alias_domain(': 'string domain, string aliasdomain | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4426 | \ 'vpopmail_add_domain_ex(': 'string domain, string passwd [, string quota [, string bounce [, bool apop]]] | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4427 | \ 'vpopmail_add_domain(': 'string domain, string dir, int uid, int gid | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4428 | \ 'vpopmail_add_user(': 'string user, string domain, string password [, string gecos [, bool apop]] | bool', |
| 4429 | \ 'vpopmail_alias_add(': 'string user, string domain, string alias | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4430 | \ 'vpopmail_alias_del_domain(': 'string domain | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4431 | \ 'vpopmail_alias_del(': 'string user, string domain | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4432 | \ 'vpopmail_alias_get_all(': 'string domain | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4433 | \ 'vpopmail_alias_get(': 'string alias, string domain | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4434 | \ 'vpopmail_auth_user(': 'string user, string domain, string password [, string apop] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4435 | \ 'vpopmail_del_domain_ex(': 'string domain | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4436 | \ 'vpopmail_del_domain(': 'string domain | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4437 | \ 'vpopmail_del_user(': 'string user, string domain | bool', |
| 4438 | \ 'vpopmail_error(': 'void | string', |
| 4439 | \ 'vpopmail_passwd(': 'string user, string domain, string password [, bool apop] | bool', |
| 4440 | \ 'vpopmail_set_user_quota(': 'string user, string domain, string quota | bool', |
| 4441 | \ 'vprintf(': 'string format, array args | int', |
| 4442 | \ 'vsprintf(': 'string format, array args | string', |
| 4443 | \ 'w32api_deftype(': 'string typename, string member1_type, string member1_name [, string ... [, string ...]] | bool', |
| 4444 | \ 'w32api_init_dtype(': 'string typename, mixed value [, mixed ...] | resource', |
| 4445 | \ 'w32api_invoke_function(': 'string funcname, mixed argument [, mixed ...] | mixed', |
| 4446 | \ 'w32api_register_function(': 'string library, string function_name, string return_type | bool', |
| 4447 | \ 'w32api_set_call_method(': 'int method | void', |
| 4448 | \ 'wddx_add_vars(': 'int packet_id, mixed name_var [, mixed ...] | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4449 | \ 'wddx_packet_end(': 'resource packet_id | string', |
| 4450 | \ 'wddx_packet_start(': '[string comment] | resource', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4451 | \ 'wddx_serialize_value(': 'mixed var [, string comment] | string', |
| 4452 | \ 'wddx_serialize_vars(': 'mixed var_name [, mixed ...] | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4453 | \ 'wddx_unserialize(': 'string packet | mixed', |
| 4454 | \ 'win32_create_service(': 'array details [, string machine] | int', |
| 4455 | \ 'win32_delete_service(': 'string servicename [, string machine] | int', |
| 4456 | \ 'win32_get_last_control_message(': 'void | int', |
| 4457 | \ 'win32_ps_list_procs(': 'void | array', |
| 4458 | \ 'win32_ps_stat_mem(': 'void | array', |
| 4459 | \ 'win32_ps_stat_proc(': '[int pid] | array', |
| 4460 | \ 'win32_query_service_status(': 'string servicename [, string machine] | mixed', |
| 4461 | \ 'win32_set_service_status(': 'int status | bool', |
| 4462 | \ 'win32_start_service_ctrl_dispatcher(': 'string name | bool', |
| 4463 | \ 'win32_start_service(': 'string servicename [, string machine] | int', |
| 4464 | \ 'win32_stop_service(': 'string servicename [, string machine] | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4465 | \ 'wordwrap(': 'string str [, int width [, string break [, bool cut]]] | string', |
| 4466 | \ 'xattr_get(': 'string filename, string name [, int flags] | string', |
| 4467 | \ 'xattr_list(': 'string filename [, int flags] | array', |
| 4468 | \ 'xattr_remove(': 'string filename, string name [, int flags] | bool', |
| 4469 | \ 'xattr_set(': 'string filename, string name, string value [, int flags] | bool', |
| 4470 | \ 'xattr_supported(': 'string filename [, int flags] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4471 | \ 'xdiff_file_diff_binary(': 'string file1, string file2, string dest | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4472 | \ 'xdiff_file_diff(': 'string file1, string file2, string dest [, int context [, bool minimal]] | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4473 | \ 'xdiff_file_merge3(': 'string file1, string file2, string file3, string dest | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4474 | \ 'xdiff_file_patch_binary(': 'string file, string patch, string dest | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4475 | \ 'xdiff_file_patch(': 'string file, string patch, string dest [, int flags] | mixed', |
| 4476 | \ 'xdiff_string_diff_binary(': 'string str1, string str2 | string', |
| 4477 | \ 'xdiff_string_diff(': 'string str1, string str2 [, int context [, bool minimal]] | string', |
| 4478 | \ 'xdiff_string_merge3(': 'string str1, string str2, string str3 [, string &error] | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4479 | \ 'xdiff_string_patch_binary(': 'string str, string patch | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4480 | \ 'xdiff_string_patch(': 'string str, string patch [, int flags [, string &error]] | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4481 | \ 'xml_error_string(': 'int code | string', |
| 4482 | \ 'xml_get_current_byte_index(': 'resource parser | int', |
| 4483 | \ 'xml_get_current_column_number(': 'resource parser | int', |
| 4484 | \ 'xml_get_current_line_number(': 'resource parser | int', |
| 4485 | \ 'xml_get_error_code(': 'resource parser | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4486 | \ 'xml_parse(': 'resource parser, string data [, bool is_final] | int', |
| 4487 | \ 'xml_parse_into_struct(': 'resource parser, string data, array &values [, array &index] | int', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4488 | \ 'xml_parser_create(': '[string encoding] | resource', |
| 4489 | \ 'xml_parser_create_ns(': '[string encoding [, string separator]] | resource', |
| 4490 | \ 'xml_parser_free(': 'resource parser | bool', |
| 4491 | \ 'xml_parser_get_option(': 'resource parser, int option | mixed', |
| 4492 | \ 'xml_parser_set_option(': 'resource parser, int option, mixed value | bool', |
| 4493 | \ 'xmlrpc_decode(': 'string xml [, string encoding] | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4494 | \ 'xmlrpc_decode_request(': 'string xml, string &method [, string encoding] | array', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4495 | \ 'xmlrpc_encode(': 'mixed value | string', |
| 4496 | \ 'xmlrpc_encode_request(': 'string method, mixed params [, array output_options] | string', |
| 4497 | \ 'xmlrpc_get_type(': 'mixed value | string', |
| 4498 | \ 'xmlrpc_is_fault(': 'array arg | bool', |
| 4499 | \ 'xmlrpc_parse_method_descriptions(': 'string xml | array', |
| 4500 | \ 'xmlrpc_server_add_introspection_data(': 'resource server, array desc | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4501 | \ 'xmlrpc_server_call_method(': 'resource server, string xml, mixed user_data [, array output_options] | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4502 | \ 'xmlrpc_server_create(': 'void | resource', |
| 4503 | \ 'xmlrpc_server_destroy(': 'resource server | int', |
| 4504 | \ 'xmlrpc_server_register_introspection_callback(': 'resource server, string function | bool', |
| 4505 | \ 'xmlrpc_server_register_method(': 'resource server, string method_name, string function | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4506 | \ 'xmlrpc_set_type(': 'string &value, string type | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4507 | \ 'xml_set_character_data_handler(': 'resource parser, callback handler | bool', |
| 4508 | \ 'xml_set_default_handler(': 'resource parser, callback handler | bool', |
| 4509 | \ 'xml_set_element_handler(': 'resource parser, callback start_element_handler, callback end_element_handler | bool', |
| 4510 | \ 'xml_set_end_namespace_decl_handler(': 'resource parser, callback handler | bool', |
| 4511 | \ 'xml_set_external_entity_ref_handler(': 'resource parser, callback handler | bool', |
| 4512 | \ 'xml_set_notation_decl_handler(': 'resource parser, callback handler | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4513 | \ 'xml_set_object(': 'resource parser, object &object | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4514 | \ 'xml_set_processing_instruction_handler(': 'resource parser, callback handler | bool', |
| 4515 | \ 'xml_set_start_namespace_decl_handler(': 'resource parser, callback handler | bool', |
| 4516 | \ 'xml_set_unparsed_entity_decl_handler(': 'resource parser, callback handler | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4517 | \ 'xmlwriter_end_attribute(': 'resource xmlwriter | bool', |
| 4518 | \ 'xmlwriter_end_cdata(': 'resource xmlwriter | bool', |
| 4519 | \ 'xmlwriter_end_comment(': 'resource xmlwriter | bool', |
| 4520 | \ 'xmlwriter_end_document(': 'resource xmlwriter | bool', |
| 4521 | \ 'xmlwriter_end_dtd_attlist(': 'resource xmlwriter | bool', |
| 4522 | \ 'xmlwriter_end_dtd_element(': 'resource xmlwriter | bool', |
| 4523 | \ 'xmlwriter_end_dtd_entity(': 'resource xmlwriter | bool', |
| 4524 | \ 'xmlwriter_end_dtd(': 'resource xmlwriter | bool', |
| 4525 | \ 'xmlwriter_end_element(': 'resource xmlwriter | bool', |
| 4526 | \ 'xmlwriter_end_pi(': 'resource xmlwriter | bool', |
| 4527 | \ 'xmlwriter_flush(': 'resource xmlwriter [, bool empty] | mixed', |
| 4528 | \ 'xmlwriter_full_end_element(': 'resource xmlwriter | bool', |
| 4529 | \ 'xmlwriter_open_memory(': 'void | resource', |
| 4530 | \ 'xmlwriter_open_uri(': 'string source | resource', |
| 4531 | \ 'xmlwriter_output_memory(': 'resource xmlwriter [, bool flush] | string', |
| 4532 | \ 'xmlwriter_set_indent(': 'resource xmlwriter, bool indent | bool', |
| 4533 | \ 'xmlwriter_set_indent_string(': 'resource xmlwriter, string indentString | bool', |
| 4534 | \ 'xmlwriter_start_attribute(': 'resource xmlwriter, string name | bool', |
| 4535 | \ 'xmlwriter_start_attribute_ns(': 'resource xmlwriter, string prefix, string name, string uri | bool', |
| 4536 | \ 'xmlwriter_start_cdata(': 'resource xmlwriter | bool', |
| 4537 | \ 'xmlwriter_start_comment(': 'resource xmlwriter | bool', |
| 4538 | \ 'xmlwriter_start_document(': 'resource xmlwriter [, string version [, string encoding [, string standalone]]] | bool', |
| 4539 | \ 'xmlwriter_start_dtd_attlist(': 'resource xmlwriter, string name | bool', |
| 4540 | \ 'xmlwriter_start_dtd_element(': 'resource xmlwriter, string name | bool', |
| 4541 | \ 'xmlwriter_start_dtd_entity(': 'resource xmlwriter, string name, bool isparam | bool', |
| 4542 | \ 'xmlwriter_start_dtd(': 'resource xmlwriter, string name [, string pubid [, string sysid]] | bool', |
| 4543 | \ 'xmlwriter_start_element(': 'resource xmlwriter, string name | bool', |
| 4544 | \ 'xmlwriter_start_element_ns(': 'resource xmlwriter, string prefix, string name, string uri | bool', |
| 4545 | \ 'xmlwriter_start_pi(': 'resource xmlwriter, string target | bool', |
| 4546 | \ 'xmlwriter_text(': 'resource xmlwriter, string content | bool', |
| 4547 | \ 'xmlwriter_write_attribute(': 'resource xmlwriter, string name, string content | bool', |
| 4548 | \ 'xmlwriter_write_attribute_ns(': 'resource xmlwriter, string prefix, string name, string uri, string content | bool', |
| 4549 | \ 'xmlwriter_write_cdata(': 'resource xmlwriter, string content | bool', |
| 4550 | \ 'xmlwriter_write_comment(': 'resource xmlwriter, string content | bool', |
| 4551 | \ 'xmlwriter_write_dtd_attlist(': 'resource xmlwriter, string name, string content | bool', |
| 4552 | \ 'xmlwriter_write_dtd_element(': 'resource xmlwriter, string name, string content | bool', |
| 4553 | \ 'xmlwriter_write_dtd_entity(': 'resource xmlwriter, string name, string content | bool', |
| 4554 | \ 'xmlwriter_write_dtd(': 'resource xmlwriter, string name [, string pubid [, string sysid [, string subset]]] | bool', |
| 4555 | \ 'xmlwriter_write_element(': 'resource xmlwriter, string name, string content | bool', |
| 4556 | \ 'xmlwriter_write_element_ns(': 'resource xmlwriter, string prefix, string name, string uri, string content | bool', |
| 4557 | \ 'xmlwriter_write_pi(': 'resource xmlwriter, string target, string content | bool', |
| 4558 | \ 'xmlwriter_write_raw(': 'resource xmlwriter, string content | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4559 | \ 'xpath_new_context(': 'domdocument dom_document | XPathContext', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4560 | \ 'xpath_register_ns_auto(': 'XPathContext xpath_context [, object context_node] | bool', |
| 4561 | \ 'xpath_register_ns(': 'XPathContext xpath_context, string prefix, string uri | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4562 | \ 'xptr_new_context(': 'void | XPathContext', |
| 4563 | \ 'xslt_backend_info(': 'void | string', |
| 4564 | \ 'xslt_backend_name(': 'void | string', |
| 4565 | \ 'xslt_backend_version(': 'void | string', |
| 4566 | \ 'xslt_create(': 'void | resource', |
| 4567 | \ 'xslt_errno(': 'resource xh | int', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4568 | \ 'xslt_error(': 'resource xh | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4569 | \ 'xslt_free(': 'resource xh | void', |
| 4570 | \ 'xslt_getopt(': 'resource processor | int', |
| 4571 | \ 'xslt_process(': 'resource xh, string xmlcontainer, string xslcontainer [, string resultcontainer [, array arguments [, array parameters]]] | mixed', |
| 4572 | \ 'xslt_set_base(': 'resource xh, string uri | void', |
| 4573 | \ 'xslt_set_encoding(': 'resource xh, string encoding | void', |
| 4574 | \ 'xslt_set_error_handler(': 'resource xh, mixed handler | void', |
| 4575 | \ 'xslt_set_log(': 'resource xh [, mixed log] | void', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4576 | \ 'xslt_set_object(': 'resource processor, object &obj | bool', |
| 4577 | \ 'xslt_setopt(': 'resource processor, int newmask | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4578 | \ 'xslt_set_sax_handler(': 'resource xh, array handlers | void', |
| 4579 | \ 'xslt_set_sax_handlers(': 'resource processor, array handlers | void', |
| 4580 | \ 'xslt_set_scheme_handler(': 'resource xh, array handlers | void', |
| 4581 | \ 'xslt_set_scheme_handlers(': 'resource processor, array handlers | void', |
| 4582 | \ 'yaz_addinfo(': 'resource id | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4583 | \ 'yaz_ccl_conf(': 'resource id, array config | void', |
| 4584 | \ 'yaz_ccl_parse(': 'resource id, string query, array &result | bool', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4585 | \ 'yaz_close(': 'resource id | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4586 | \ 'yaz_connect(': 'string zurl [, mixed options] | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4587 | \ 'yaz_database(': 'resource id, string databases | bool', |
| 4588 | \ 'yaz_element(': 'resource id, string elementset | bool', |
| 4589 | \ 'yaz_errno(': 'resource id | int', |
| 4590 | \ 'yaz_error(': 'resource id | string', |
| 4591 | \ 'yaz_es_result(': 'resource id | array', |
| 4592 | \ 'yaz_get_option(': 'resource id, string name | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4593 | \ 'yaz_hits(': 'resource id [, array searchresult] | int', |
| 4594 | \ 'yaz_itemorder(': 'resource id, array args | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4595 | \ 'yaz_present(': 'resource id | bool', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4596 | \ 'yaz_range(': 'resource id, int start, int number | void', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4597 | \ 'yaz_record(': 'resource id, int pos, string type | string', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4598 | \ 'yaz_scan(': 'resource id, string type, string startterm [, array flags] | void', |
| 4599 | \ 'yaz_scan_result(': 'resource id [, array &result] | array', |
| 4600 | \ 'yaz_schema(': 'resource id, string schema | void', |
| 4601 | \ 'yaz_search(': 'resource id, string type, string query | bool', |
| 4602 | \ 'yaz_set_option(': 'resource id, string name, string value | void', |
| 4603 | \ 'yaz_sort(': 'resource id, string criteria | void', |
| 4604 | \ 'yaz_syntax(': 'resource id, string syntax | void', |
| 4605 | \ 'yaz_wait(': '[array &options] | mixed', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4606 | \ 'yp_all(': 'string domain, string map, string callback | void', |
| 4607 | \ 'yp_cat(': 'string domain, string map | array', |
| 4608 | \ 'yp_errno(': 'void | int', |
| 4609 | \ 'yp_err_string(': 'int errorcode | string', |
| 4610 | \ 'yp_first(': 'string domain, string map | array', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4611 | \ 'yp_get_default_domain(': 'void | string', |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4612 | \ 'yp_master(': 'string domain, string map | string', |
| 4613 | \ 'yp_match(': 'string domain, string map, string key | string', |
| 4614 | \ 'yp_next(': 'string domain, string map, string key | array', |
| 4615 | \ 'yp_order(': 'string domain, string map | int', |
| 4616 | \ 'zend_logo_guid(': 'void | string', |
| 4617 | \ 'zend_version(': 'void | string', |
| 4618 | \ 'zip_close(': 'resource zip | void', |
| 4619 | \ 'zip_entry_close(': 'resource zip_entry | void', |
| 4620 | \ 'zip_entry_compressedsize(': 'resource zip_entry | int', |
| 4621 | \ 'zip_entry_compressionmethod(': 'resource zip_entry | string', |
| 4622 | \ 'zip_entry_filesize(': 'resource zip_entry | int', |
| 4623 | \ 'zip_entry_name(': 'resource zip_entry | string', |
| 4624 | \ 'zip_entry_open(': 'resource zip, resource zip_entry [, string mode] | bool', |
| 4625 | \ 'zip_entry_read(': 'resource zip_entry [, int length] | string', |
| 4626 | \ 'zip_open(': 'string filename | resource', |
| 4627 | \ 'zip_read(': 'resource zip | resource', |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4628 | \ 'zlib_get_coding_type(': 'void | string' |
| 4629 | \ } |
| 4630 | " }}} |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 4631 | " built-in object functions {{{ |
| 4632 | let g:php_builtin_object_functions = { |
| 4633 | \ 'ArrayIterator::current(': 'void | mixed', |
| 4634 | \ 'ArrayIterator::key(': 'void | mixed', |
| 4635 | \ 'ArrayIterator::next(': 'void | void', |
| 4636 | \ 'ArrayIterator::rewind(': 'void | void', |
| 4637 | \ 'ArrayIterator::seek(': 'int position | void', |
| 4638 | \ 'ArrayIterator::valid(': 'void | bool', |
| 4639 | \ 'ArrayObject::append(': 'mixed newval | void', |
| 4640 | \ 'ArrayObject::__construct(': 'mixed input | ArrayObject', |
| 4641 | \ 'ArrayObject::count(': 'void | int', |
| 4642 | \ 'ArrayObject::getIterator(': 'void | ArrayIterator', |
| 4643 | \ 'ArrayObject::offsetExists(': 'mixed index | bool', |
| 4644 | \ 'ArrayObject::offsetGet(': 'mixed index | bool', |
| 4645 | \ 'ArrayObject::offsetSet(': 'mixed index, mixed newval | void', |
| 4646 | \ 'ArrayObject::offsetUnset(': 'mixed index | void', |
| 4647 | \ 'CachingIterator::hasNext(': 'void | bool', |
| 4648 | \ 'CachingIterator::next(': 'void | void', |
| 4649 | \ 'CachingIterator::rewind(': 'void | void', |
| 4650 | \ 'CachingIterator::__toString(': 'void | string', |
| 4651 | \ 'CachingIterator::valid(': 'void | bool', |
| 4652 | \ 'CachingRecursiveIterator::getChildren(': 'void | CachingRecursiveIterator', |
| 4653 | \ 'CachingRecursiveIterator::hasChildren(': 'void | bolean', |
| 4654 | \ 'DirectoryIterator::__construct(': 'string path | DirectoryIterator', |
| 4655 | \ 'DirectoryIterator::current(': 'void | DirectoryIterator', |
| 4656 | \ 'DirectoryIterator::getATime(': 'void | int', |
| 4657 | \ 'DirectoryIterator::getChildren(': 'void | RecursiveDirectoryIterator', |
| 4658 | \ 'DirectoryIterator::getCTime(': 'void | int', |
| 4659 | \ 'DirectoryIterator::getFilename(': 'void | string', |
| 4660 | \ 'DirectoryIterator::getGroup(': 'void | int', |
| 4661 | \ 'DirectoryIterator::getInode(': 'void | int', |
| 4662 | \ 'DirectoryIterator::getMTime(': 'void | int', |
| 4663 | \ 'DirectoryIterator::getOwner(': 'void | int', |
| 4664 | \ 'DirectoryIterator::getPath(': 'void | string', |
| 4665 | \ 'DirectoryIterator::getPathname(': 'void | string', |
| 4666 | \ 'DirectoryIterator::getPerms(': 'void | int', |
| 4667 | \ 'DirectoryIterator::getSize(': 'void | int', |
| 4668 | \ 'DirectoryIterator::getType(': 'void | string', |
| 4669 | \ 'DirectoryIterator::isDir(': 'void | bool', |
| 4670 | \ 'DirectoryIterator::isDot(': 'void | bool', |
| 4671 | \ 'DirectoryIterator::isExecutable(': 'void | bool', |
| 4672 | \ 'DirectoryIterator::isFile(': 'void | bool', |
| 4673 | \ 'DirectoryIterator::isLink(': 'void | bool', |
| 4674 | \ 'DirectoryIterator::isReadable(': 'void | bool', |
| 4675 | \ 'DirectoryIterator::isWritable(': 'void | bool', |
| 4676 | \ 'DirectoryIterator::key(': 'void | string', |
| 4677 | \ 'DirectoryIterator::next(': 'void | void', |
| 4678 | \ 'DirectoryIterator::rewind(': 'void | void', |
| 4679 | \ 'DirectoryIterator::valid(': 'void | string', |
| 4680 | \ 'FilterIterator::current(': 'void | mixed', |
| 4681 | \ 'FilterIterator::getInnerIterator(': 'void | Iterator', |
| 4682 | \ 'FilterIterator::key(': 'void | mixed', |
| 4683 | \ 'FilterIterator::next(': 'void | void', |
| 4684 | \ 'FilterIterator::rewind(': 'void | void', |
| 4685 | \ 'FilterIterator::valid(': 'void | bool', |
| 4686 | \ 'LimitIterator::getPosition(': 'void | int', |
| 4687 | \ 'LimitIterator::next(': 'void | void', |
| 4688 | \ 'LimitIterator::rewind(': 'void | void', |
| 4689 | \ 'LimitIterator::seek(': 'int position | void', |
| 4690 | \ 'LimitIterator::valid(': 'void | bool', |
| 4691 | \ 'Memcache::add(': 'string key, mixed var [, int flag [, int expire]] | bool', |
| 4692 | \ 'Memcache::addServer(': 'string host [, int port [, bool persistent [, int weight [, int timeout [, int retry_interval]]]]] | bool', |
| 4693 | \ 'Memcache::close(': 'void | bool', |
| 4694 | \ 'Memcache::connect(': 'string host [, int port [, int timeout]] | bool', |
| 4695 | \ 'Memcache::decrement(': 'string key [, int value] | int', |
| 4696 | \ 'Memcache::delete(': 'string key [, int timeout] | bool', |
| 4697 | \ 'Memcache::flush(': 'void | bool', |
| 4698 | \ 'Memcache::getExtendedStats(': 'void | array', |
| 4699 | \ 'Memcache::get(': 'string key | string', |
| 4700 | \ 'Memcache::getStats(': 'void | array', |
| 4701 | \ 'Memcache::getVersion(': 'void | string', |
| 4702 | \ 'Memcache::increment(': 'string key [, int value] | int', |
| 4703 | \ 'Memcache::pconnect(': 'string host [, int port [, int timeout]] | bool', |
| 4704 | \ 'Memcache::replace(': 'string key, mixed var [, int flag [, int expire]] | bool', |
| 4705 | \ 'Memcache::setCompressThreshold(': 'int threshold [, float min_savings] | bool', |
| 4706 | \ 'Memcache::set(': 'string key, mixed var [, int flag [, int expire]] | bool', |
| 4707 | \ 'ParentIterator::getChildren(': 'void | ParentIterator', |
| 4708 | \ 'ParentIterator::hasChildren(': 'void | bool', |
| 4709 | \ 'ParentIterator::next(': 'void | void', |
| 4710 | \ 'ParentIterator::rewind(': 'void | void', |
| 4711 | \ 'PDO::beginTransaction(': 'void | bool', |
| 4712 | \ 'PDO::commit(': 'void | bool', |
| 4713 | \ 'PDO::__construct(': 'string dsn [, string username [, string password [, array driver_options]]] | PDO', |
| 4714 | \ 'PDO::errorCode(': 'void | string', |
| 4715 | \ 'PDO::errorInfo(': 'void | array', |
| 4716 | \ 'PDO::exec(': 'string statement | int', |
| 4717 | \ 'PDO::getAttribute(': 'int attribute | mixed', |
| 4718 | \ 'PDO::getAvailableDrivers(': 'void | array', |
| 4719 | \ 'PDO::lastInsertId(': '[string name] | string', |
| 4720 | \ 'PDO::prepare(': 'string statement [, array driver_options] | PDOStatement', |
| 4721 | \ 'PDO::query(': 'string statement | PDOStatement', |
| 4722 | \ 'PDO::quote(': 'string string [, int parameter_type] | string', |
| 4723 | \ 'PDO::rollBack(': 'void | bool', |
| 4724 | \ 'PDO::setAttribute(': 'int attribute, mixed value | bool', |
| 4725 | \ 'PDO::sqliteCreateAggregate(': 'string function_name, callback step_func, callback finalize_func [, int num_args] | bool', |
| 4726 | \ 'PDO::sqliteCreateFunction(': 'string function_name, callback callback [, int num_args] | bool', |
| 4727 | \ 'PDOStatement::bindColumn(': 'mixed column, mixed &param [, int type] | bool', |
| 4728 | \ 'PDOStatement::bindParam(': 'mixed parameter, mixed &variable [, int data_type [, int length [, mixed driver_options]]] | bool', |
| 4729 | \ 'PDOStatement::bindValue(': 'mixed parameter, mixed value [, int data_type] | bool', |
| 4730 | \ 'PDOStatement::closeCursor(': 'void | bool', |
| 4731 | \ 'PDOStatement::columnCount(': 'void | int', |
| 4732 | \ 'PDOStatement::errorCode(': 'void | string', |
| 4733 | \ 'PDOStatement::errorInfo(': 'void | array', |
| 4734 | \ 'PDOStatement::execute(': '[array input_parameters] | bool', |
| 4735 | \ 'PDOStatement::fetchAll(': '[int fetch_style [, int column_index]] | array', |
| 4736 | \ 'PDOStatement::fetchColumn(': '[int column_number] | string', |
| 4737 | \ 'PDOStatement::fetch(': '[int fetch_style [, int cursor_orientation [, int cursor_offset]]] | mixed', |
| 4738 | \ 'PDOStatement::fetchObject(': '[string class_name [, array ctor_args]] | mixed', |
| 4739 | \ 'PDOStatement::getAttribute(': 'int attribute | mixed', |
| 4740 | \ 'PDOStatement::getColumnMeta(': 'int column | mixed', |
| 4741 | \ 'PDOStatement::nextRowset(': 'void | bool', |
| 4742 | \ 'PDOStatement::rowCount(': 'void | int', |
| 4743 | \ 'PDOStatement::setAttribute(': 'int attribute, mixed value | bool', |
| 4744 | \ 'PDOStatement::setFetchMode(': 'int mode | bool', |
| 4745 | \ 'Rar::extract(': 'string dir [, string filepath] | bool', |
| 4746 | \ 'Rar::getAttr(': 'void | int', |
| 4747 | \ 'Rar::getCrc(': 'void | int', |
| 4748 | \ 'Rar::getFileTime(': 'void | string', |
| 4749 | \ 'Rar::getHostOs(': 'void | int', |
| 4750 | \ 'Rar::getMethod(': 'void | int', |
| 4751 | \ 'Rar::getName(': 'void | string', |
| 4752 | \ 'Rar::getPackedSize(': 'void | int', |
| 4753 | \ 'Rar::getUnpackedSize(': 'void | int', |
| 4754 | \ 'Rar::getVersion(': 'void | int', |
| 4755 | \ 'RecursiveDirectoryIterator::getChildren(': 'void | object', |
| 4756 | \ 'RecursiveDirectoryIterator::hasChildren(': '[bool allow_links] | bool', |
| 4757 | \ 'RecursiveDirectoryIterator::key(': 'void | string', |
| 4758 | \ 'RecursiveDirectoryIterator::next(': 'void | void', |
| 4759 | \ 'RecursiveDirectoryIterator::rewind(': 'void | void', |
| 4760 | \ 'RecursiveIteratorIterator::current(': 'void | mixed', |
| 4761 | \ 'RecursiveIteratorIterator::getDepth(': 'void | int', |
| 4762 | \ 'RecursiveIteratorIterator::getSubIterator(': 'void | RecursiveIterator', |
| 4763 | \ 'RecursiveIteratorIterator::key(': 'void | mixed', |
| 4764 | \ 'RecursiveIteratorIterator::next(': 'void | void', |
| 4765 | \ 'RecursiveIteratorIterator::rewind(': 'void | void', |
| 4766 | \ 'RecursiveIteratorIterator::valid(': 'void | bolean', |
| 4767 | \ 'SDO_DAS_ChangeSummary::beginLogging(': 'void | void', |
| 4768 | \ 'SDO_DAS_ChangeSummary::endLogging(': 'void | void', |
| 4769 | \ 'SDO_DAS_ChangeSummary::getChangedDataObjects(': 'void | SDO_List', |
| 4770 | \ 'SDO_DAS_ChangeSummary::getChangeType(': 'SDO_DataObject dataObject | int', |
| 4771 | \ 'SDO_DAS_ChangeSummary::getOldContainer(': 'SDO_DataObject data_object | SDO_DataObject', |
| 4772 | \ 'SDO_DAS_ChangeSummary::getOldValues(': 'SDO_DataObject data_object | SDO_List', |
| 4773 | \ 'SDO_DAS_ChangeSummary::isLogging(': 'void | bool', |
| 4774 | \ 'SDO_DAS_DataFactory::addPropertyToType(': 'string parent_type_namespace_uri, string parent_type_name, string property_name, string type_namespace_uri, string type_name [, array options] | void', |
| 4775 | \ 'SDO_DAS_DataFactory::addType(': 'string type_namespace_uri, string type_name [, array options] | void', |
| 4776 | \ 'SDO_DAS_DataFactory::getDataFactory(': 'void | SDO_DAS_DataFactory', |
| 4777 | \ 'SDO_DAS_DataObject::getChangeSummary(': 'void | SDO_DAS_ChangeSummary', |
| 4778 | \ 'SDO_DAS_Relational::applyChanges(': 'PDO database_handle, SDODataObject root_data_object | void', |
| 4779 | \ 'SDO_DAS_Relational::__construct(': 'array database_metadata [, string application_root_type [, array SDO_containment_references_metadata]] | SDO_DAS_Relational', |
| 4780 | \ 'SDO_DAS_Relational::createRootDataObject(': 'void | SDODataObject', |
| 4781 | \ 'SDO_DAS_Relational::executePreparedQuery(': 'PDO database_handle, PDOStatement prepared_statement, array value_list [, array column_specifier] | SDODataObject', |
| 4782 | \ 'SDO_DAS_Relational::executeQuery(': 'PDO database_handle, string SQL_statement [, array column_specifier] | SDODataObject', |
| 4783 | \ 'SDO_DAS_Setting::getListIndex(': 'void | int', |
| 4784 | \ 'SDO_DAS_Setting::getPropertyIndex(': 'void | int', |
| 4785 | \ 'SDO_DAS_Setting::getPropertyName(': 'void | string', |
| 4786 | \ 'SDO_DAS_Setting::getValue(': 'void | mixed', |
| 4787 | \ 'SDO_DAS_Setting::isSet(': 'void | bool', |
| 4788 | \ 'SDO_DAS_XML::addTypes(': 'string xsd_file | void', |
| 4789 | \ 'SDO_DAS_XML::createDataObject(': 'string namespace_uri, string type_name | SDO_DataObject', |
| 4790 | \ 'SDO_DAS_XML::createDocument(': '[string document_element_name] | SDO_DAS_XML_Document', |
| 4791 | \ 'SDO_DAS_XML::create(': '[string xsd_file] | SDO_DAS_XML', |
| 4792 | \ 'SDO_DAS_XML_Document::getRootDataObject(': 'void | SDO_DataObject', |
| 4793 | \ 'SDO_DAS_XML_Document::getRootElementName(': 'void | string', |
| 4794 | \ 'SDO_DAS_XML_Document::getRootElementURI(': 'void | string', |
| 4795 | \ 'SDO_DAS_XML_Document::setEncoding(': 'string encoding | void', |
| 4796 | \ 'SDO_DAS_XML_Document::setXMLDeclaration(': 'bool xmlDeclatation | void', |
| 4797 | \ 'SDO_DAS_XML_Document::setXMLVersion(': 'string xmlVersion | void', |
| 4798 | \ 'SDO_DAS_XML::loadFile(': 'string xml_file | SDO_XMLDocument', |
| 4799 | \ 'SDO_DAS_XML::loadString(': 'string xml_string | SDO_DAS_XML_Document', |
| 4800 | \ 'SDO_DAS_XML::saveFile(': 'SDO_XMLDocument xdoc, string xml_file [, int indent] | void', |
| 4801 | \ 'SDO_DAS_XML::saveString(': 'SDO_XMLDocument xdoc [, int indent] | string', |
| 4802 | \ 'SDO_DataFactory::create(': 'string type_namespace_uri, string type_name | void', |
| 4803 | \ 'SDO_DataObject::clear(': 'void | void', |
| 4804 | \ 'SDO_DataObject::createDataObject(': 'mixed identifier | SDO_DataObject', |
| 4805 | \ 'SDO_DataObject::getContainer(': 'void | SDO_DataObject', |
| 4806 | \ 'SDO_DataObject::getSequence(': 'void | SDO_Sequence', |
| 4807 | \ 'SDO_DataObject::getTypeName(': 'void | string', |
| 4808 | \ 'SDO_DataObject::getTypeNamespaceURI(': 'void | string', |
| 4809 | \ 'SDO_Exception::getCause(': 'void | mixed', |
| 4810 | \ 'SDO_List::insert(': 'mixed value [, int index] | void', |
| 4811 | \ 'SDO_Model_Property::getContainingType(': 'void | SDO_Model_Type', |
| 4812 | \ 'SDO_Model_Property::getDefault(': 'void | mixed', |
| 4813 | \ 'SDO_Model_Property::getName(': 'void | string', |
| 4814 | \ 'SDO_Model_Property::getType(': 'void | SDO_Model_Type', |
| 4815 | \ 'SDO_Model_Property::isContainment(': 'void | bool', |
| 4816 | \ 'SDO_Model_Property::isMany(': 'void | bool', |
| 4817 | \ 'SDO_Model_ReflectionDataObject::__construct(': 'SDO_DataObject data_object | SDO_Model_ReflectionDataObject', |
| 4818 | \ 'SDO_Model_ReflectionDataObject::export(': 'SDO_Model_ReflectionDataObject rdo [, bool return] | mixed', |
| 4819 | \ 'SDO_Model_ReflectionDataObject::getContainmentProperty(': 'void | SDO_Model_Property', |
| 4820 | \ 'SDO_Model_ReflectionDataObject::getInstanceProperties(': 'void | array', |
| 4821 | \ 'SDO_Model_ReflectionDataObject::getType(': 'void | SDO_Model_Type', |
| 4822 | \ 'SDO_Model_Type::getBaseType(': 'void | SDO_Model_Type', |
| 4823 | \ 'SDO_Model_Type::getName(': 'void | string', |
| 4824 | \ 'SDO_Model_Type::getNamespaceURI(': 'void | string', |
| 4825 | \ 'SDO_Model_Type::getProperties(': 'void | array', |
| 4826 | \ 'SDO_Model_Type::getProperty(': 'mixed identifier | SDO_Model_Property', |
| 4827 | \ 'SDO_Model_Type::isAbstractType(': 'void | bool', |
| 4828 | \ 'SDO_Model_Type::isDataType(': 'void | bool', |
| 4829 | \ 'SDO_Model_Type::isInstance(': 'SDO_DataObject data_object | bool', |
| 4830 | \ 'SDO_Model_Type::isOpenType(': 'void | bool', |
| 4831 | \ 'SDO_Model_Type::isSequencedType(': 'void | bool', |
| 4832 | \ 'SDO_Sequence::getProperty(': 'int sequence_index | SDO_Model_Property', |
| 4833 | \ 'SDO_Sequence::insert(': 'mixed value [, int sequenceIndex [, mixed propertyIdentifier]] | void', |
| 4834 | \ 'SDO_Sequence::move(': 'int toIndex, int fromIndex | void', |
| 4835 | \ 'SimpleXMLIterator::current(': 'void | mixed', |
| 4836 | \ 'SimpleXMLIterator::getChildren(': 'void | object', |
| 4837 | \ 'SimpleXMLIterator::hasChildren(': 'void | bool', |
| 4838 | \ 'SimpleXMLIterator::key(': 'void | mixed', |
| 4839 | \ 'SimpleXMLIterator::next(': 'void | void', |
| 4840 | \ 'SimpleXMLIterator::rewind(': 'void | void', |
| 4841 | \ 'SimpleXMLIterator::valid(': 'void | bool', |
| 4842 | \ 'SWFButton::addASound(': 'SWFSound sound, int flags | SWFSoundInstance', |
| 4843 | \ 'SWFButton::setMenu(': 'int flag | void', |
| 4844 | \ 'SWFDisplayItem::addAction(': 'SWFAction action, int flags | void', |
| 4845 | \ 'SWFDisplayItem::endMask(': 'void | void', |
| 4846 | \ 'SWFDisplayItem::getRot(': 'void | float', |
| 4847 | \ 'SWFDisplayItem::getX(': 'void | float', |
| 4848 | \ 'SWFDisplayItem::getXScale(': 'void | float', |
| 4849 | \ 'SWFDisplayItem::getXSkew(': 'void | float', |
| 4850 | \ 'SWFDisplayItem::getY(': 'void | float', |
| 4851 | \ 'SWFDisplayItem::getYScale(': 'void | float', |
| 4852 | \ 'SWFDisplayItem::getYSkew(': 'void | float', |
| 4853 | \ 'SWFDisplayItem::setMaskLevel(': 'int level | void', |
| 4854 | \ 'SWFDisplayItem::setMatrix(': 'float a, float b, float c, float d, float x, float y | void', |
| 4855 | \ 'SWFFontChar::addChars(': 'string char | void', |
| 4856 | \ 'SWFFontChar::addUTF8Chars(': 'string char | void', |
| 4857 | \ 'SWFFont::getAscent(': 'void | float', |
| 4858 | \ 'SWFFont::getDescent(': 'void | float', |
| 4859 | \ 'SWFFont::getLeading(': 'void | float', |
| 4860 | \ 'SWFFont::getShape(': 'int code | string', |
| 4861 | \ 'SWFFont::getUTF8Width(': 'string string | float', |
| 4862 | \ 'SWFMovie::addExport(': 'SWFCharacter char, string name | void', |
| 4863 | \ 'SWFMovie::addFont(': 'SWFFont font | SWFFontChar', |
| 4864 | \ 'SWFMovie::importChar(': 'string libswf, string name | SWFSprite', |
| 4865 | \ 'SWFMovie::importFont(': 'string libswf, string name | SWFFontChar', |
| 4866 | \ 'SWFMovie::labelFrame(': 'string label | void', |
| 4867 | \ 'SWFMovie::saveToFile(': 'stream x [, int compression] | int', |
| 4868 | \ 'SWFMovie::startSound(': 'SWFSound sound | SWFSoundInstance', |
| 4869 | \ 'SWFMovie::stopSound(': 'SWFSound sound | void', |
| 4870 | \ 'SWFMovie::writeExports(': 'void | void', |
| 4871 | \ 'SWFShape::drawArc(': 'float r, float startAngle, float endAngle | void', |
| 4872 | \ 'SWFShape::drawCircle(': 'float r | void', |
| 4873 | \ 'SWFShape::drawCubic(': 'float bx, float by, float cx, float cy, float dx, float dy | int', |
| 4874 | \ 'SWFShape::drawCubicTo(': 'float bx, float by, float cx, float cy, float dx, float dy | int', |
| 4875 | \ 'SWFShape::drawGlyph(': 'SWFFont font, string character [, int size] | void', |
| 4876 | \ 'SWFSoundInstance::loopCount(': 'int point | void', |
| 4877 | \ 'SWFSoundInstance::loopInPoint(': 'int point | void', |
| 4878 | \ 'SWFSoundInstance::loopOutPoint(': 'int point | void', |
| 4879 | \ 'SWFSoundInstance::noMultiple(': 'void | void', |
| 4880 | \ 'SWFSprite::labelFrame(': 'string label | void', |
| 4881 | \ 'SWFSprite::startSound(': 'SWFSound sound | SWFSoundInstance', |
| 4882 | \ 'SWFSprite::stopSound(': 'SWFSound sound | void', |
| 4883 | \ 'SWFText::addUTF8String(': 'string text | void', |
| 4884 | \ 'SWFTextField::addChars(': 'string chars | void', |
| 4885 | \ 'SWFTextField::setPadding(': 'float padding | void', |
| 4886 | \ 'SWFText::getAscent(': 'void | float', |
| 4887 | \ 'SWFText::getDescent(': 'void | float', |
| 4888 | \ 'SWFText::getLeading(': 'void | float', |
| 4889 | \ 'SWFText::getUTF8Width(': 'string string | float', |
| 4890 | \ 'SWFVideoStream::getNumFrames(': 'void | int', |
| 4891 | \ 'SWFVideoStream::setDimension(': 'int x, int y | void', |
| 4892 | \ 'tidy::__construct(': '[string filename [, mixed config [, string encoding [, bool use_include_path]]]] | tidy' |
| 4893 | \ } |
| 4894 | " }}} |
Bram Moolenaar | e48ec1f | 2006-03-11 21:38:31 +0000 | [diff] [blame] | 4895 | " Add control structures (they are outside regular pattern of PHP functions) |
| 4896 | let php_control = { |
| 4897 | \ 'include(': 'string filename | resource', |
| 4898 | \ 'include_once(': 'string filename | resource', |
| 4899 | \ 'require(': 'string filename | resource', |
| 4900 | \ 'require_once(': 'string filename | resource', |
| 4901 | \ } |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 4902 | call extend(g:php_builtin_functions, php_control) |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4903 | endfunction |
| 4904 | " }}} |
| 4905 | " vim:set foldmethod=marker: |