Lines Matching refs:hello
727 call assert_equal('hEllO', tr('hello', 'eo', 'EO'))
728 call assert_equal('hello', tr('hello', 'xy', 'ab'))
1043 call assert_equal(0, 'hello'->stridx(''))
1044 call assert_equal(-1, stridx('hello', 'L'))
1045 call assert_equal(2, stridx('hello', 'l', -1))
1046 call assert_equal(2, stridx('hello', 'l', 0))
1047 call assert_equal(2, 'hello'->stridx('l', 1))
1048 call assert_equal(3, stridx('hello', 'l', 3))
1049 call assert_equal(-1, stridx('hello', 'l', 4))
1050 call assert_equal(-1, stridx('hello', 'l', 10))
1051 call assert_equal(2, stridx('hello', 'll'))
1052 call assert_equal(-1, stridx('hello', 'hello world'))
1053 call assert_fails("let n=stridx('hello', [])", 'E730:')
1060 call assert_equal(5, strridx('hello', ''))
1061 call assert_equal(-1, strridx('hello', 'L'))
1062 call assert_equal(3, 'hello'->strridx('l'))
1063 call assert_equal(3, strridx('hello', 'l', 10))
1064 call assert_equal(3, strridx('hello', 'l', 3))
1065 call assert_equal(2, strridx('hello', 'l', 2))
1066 call assert_equal(-1, strridx('hello', 'l', 1))
1067 call assert_equal(-1, strridx('hello', 'l', 0))
1068 call assert_equal(-1, strridx('hello', 'l', -1))
1069 call assert_equal(2, strridx('hello', 'll'))
1070 call assert_equal(-1, strridx('hello', 'hello world'))
1071 call assert_fails("let n=strridx('hello', [])", 'E730:')
1869 sandbox let F = {-> 'hello'}
1870 call assert_equal('hello', F())
2640 call echoraw("hello\<CR>x")