Searched refs:trunc (Results 1 – 25 of 29) sorted by relevance
12
| /vim-8.2.3635/src/testdir/ |
| H A D | test_float_func.vim | 324 call assert_equal('2.0', string(trunc(2.1))) 325 call assert_equal('2.0', string(trunc(2.5))) 326 call assert_equal('2.0', string(trunc(2.9))) 327 eval 2.9->trunc()->string()->assert_equal('2.0') 328 call assert_equal('-2.0', string(trunc(-2.1))) 329 call assert_equal('-2.0', string(trunc(-2.5))) 330 call assert_equal('-2.0', string(trunc(-2.9))) 331 call assert_equal('nan', string(trunc(0.0/0.0))) 332 call assert_equal('inf', string(trunc(1.0/0.0))) 333 call assert_equal('-inf', string(trunc(-1.0/0.0))) [all …]
|
| H A D | test_options.vim | 160 exe "set ft=trunc\x00name" 161 call assert_equal("trunc", &filetype) 178 exe "set syn=trunc\x00name" 179 call assert_equal("trunc", &syntax) 195 call assert_fails(":set kmp=trunc\x00name", "E544:") 196 call assert_fails(":set kmp=trunc\x00name", "trunc")
|
| H A D | test_vim9_builtin.vim | 1201 # trunc() 1202 …CheckDefAndScriptFailure2(['trunc("a")'], 'E1013: Argument 1: type mismatch, expected number but g…
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | sqloracle.vim | 117 syn keyword sqlFunction to_timestamp_tz to_dsinterval to_yminterval trunc tz_offset 121 syn keyword sqlFunction sin sinh sqrt tan tanh trunc width_bucket
|
| H A D | ia64.vim | 121 syn match ia64opcode "fcvt\.\(\(fxu\=\(\.trunc\)\=\(\.s[0-3]\)\=\)\|\(xf\|xuf\(\.[sd]\)\=\(\.s[0-3]… 135 syn match ia64opcode "fpcvt\.fxu\=\(\(\.trunc\)\=\(\.s[0-3]\)\=\)\>"
|
| H A D | ampl.vim | 83 syn keyword amplBuiltInFunction sinh sqrt tan tanh trunc
|
| H A D | arduino.vim | 69 syn keyword arduinoStdFunc tanhf trunc truncf
|
| H A D | voscm.vim | 39 syn keyword voscmFunction contained terminal_name time translate trunc unique_string unquote us…
|
| H A D | sqlinformix.vim | 133 syn keyword sqlFunction to_char tan to_date trim trunc upper variance
|
| H A D | sqlforms.vim | 102 syntax keyword sqlOperator like escape trunc lpad rpad sum
|
| H A D | moo.vim | 95 …k_id task_stack ticks_left time tofloat toint toliteral tonum toobj tostr trunc typeof unlisten va…
|
| H A D | abap.vim | 153 syn keyword abapOperator abs sign ceil floor trunc frac acos asin atan cos sin tan
|
| H A D | erlang.vim | 135 syn keyword erlangBIF trunc tuple_size tuple_to_list unlink contained
|
| H A D | euphoria4.vim | 162 syn keyword euphoria4Library transmute trim trim_head trim_tail trsprintf trunc
|
| H A D | mush.vim | 77 syntax keyword mushFunction contained trigger trim trimpenn trimtiny trunc type u
|
| H A D | sqr.vim | 178 syn keyword sqrFunction substrt strtodate tan tanh trunc to_char
|
| H A D | mupad.vim | 84 syn keyword mupadFunction ceil floor round trunc
|
| H A D | sas.vim | 102 …imevalue tinv tnonct today translate transtrn tranwrd trigamma trim trimn trunc tso typeof tzoneid… 185 …to_time to_timestamp today translate transtrn tranwrd trigamma trim trimn trunc uniform upcase uss…
|
| H A D | maxima.vim | 191 syn keyword maximaFunc trunc truncate tr_warn_bad_function_calls tr_warn_fexpr
|
| H A D | stata.vim | 226 syn region stataFunc matchgroup=Function start=/\<trunc(/ end=/)/ contains=@stataFuncGroup
|
| H A D | 8th.vim | 228 Builtin sind n:sind sqr n:sqr sqrt n:sqrt tan n:tan tand n:tand trunc n:trunc ~= n:~= ! net:! !? n…
|
| H A D | maple.vim | 258 syn keyword mvLibrary Irreduc WeierstrassZeta entries iratrecon protect trunc
|
| H A D | progress.vim | 261 syn keyword ProgressOperator transpar[ent] trunc[ate] ttcodepage type type-of unbox unbuff[ered] un…
|
| H A D | vim.vim | 83 …est_null_channel test_null_partial test_scrollbar test_void timer_stopall trunc uniq winbufnr win_…
|
| /vim-8.2.3635/src/ |
| H A D | search.c | 1393 char_u *trunc; in do_search() local 1465 trunc = msg_strtrunc(msgbuf, TRUE); in do_search() 1466 if (trunc != NULL) in do_search() 1469 msgbuf = trunc; in do_search()
|
12