Home
last modified time | relevance | path

Searched refs:MAYBE (Results 1 – 24 of 24) sorted by relevance

/vim-8.2.3635/src/
H A Djson_test.c42 assert(json_find_end(&reader, 0) == MAYBE); in test_decode_find_end()
48 assert(json_find_end(&reader, 0) == MAYBE); in test_decode_find_end()
54 assert(json_find_end(&reader, 0) == MAYBE); in test_decode_find_end()
56 assert(json_find_end(&reader, 0) == MAYBE); in test_decode_find_end()
58 assert(json_find_end(&reader, 0) == MAYBE); in test_decode_find_end()
60 assert(json_find_end(&reader, 0) == MAYBE); in test_decode_find_end()
65 assert(json_find_end(&reader, 0) == MAYBE); in test_decode_find_end()
67 assert(json_find_end(&reader, 0) == MAYBE); in test_decode_find_end()
69 assert(json_find_end(&reader, 0) == MAYBE); in test_decode_find_end()
74 assert(json_find_end(&reader, 0) == MAYBE); in test_decode_find_end()
[all …]
H A Djson.c570 return MAYBE; in json_decode_string()
624 retval = MAYBE; in json_decode_item()
776 retval = MAYBE; in json_decode_item()
908 retval = MAYBE; in json_decode_item()
918 if (retval == MAYBE || stack.ga_len == 0) in json_decode_item()
971 retval = MAYBE; in json_decode_item()
989 retval = MAYBE; in json_decode_item()
1044 retval = MAYBE; in json_decode_item()
1092 if (ret == MAYBE) in json_decode_all()
H A Dhelp.c865 int this_utf = MAYBE; in fix_help_buffer()
971 int utf8 = MAYBE; in helptags_one()
1043 this_utf8 = MAYBE; in helptags_one()
1059 if (this_utf8 == MAYBE) // only ASCII characters found in helptags_one()
1061 if (utf8 == MAYBE) // first file in helptags_one()
H A Dfold.c697 fp->fd_small = MAYBE; in foldCreate()
839 fp->fd_small = MAYBE; in foldUpdate()
1456 if (fp->fd_small == MAYBE) in deleteFoldEntry()
1457 nfp[i].fd_small = MAYBE; in deleteFoldEntry()
1690 if (fp->fd_small == MAYBE) in check_closed()
1695 fp->fd_small = MAYBE; in check_closed()
1752 fp[i].fd_small = MAYBE; in setSmallMaybe()
2675 fp->fd_small = MAYBE; in foldUpdateIEMSRecurse()
2774 fp->fd_small = MAYBE; in foldUpdateIEMSRecurse()
2906 fp[1].fd_small = MAYBE; in foldSplit()
[all …]
H A Ddiff.c47 static int diff_a_works = MAYBE; // TRUE when "diff -a" works, FALSE when it
50 static int diff_bin_works = MAYBE; // TRUE when "diff --binary" works, FALSE
1057 if (ok && diff_a_works == MAYBE && diff_bin_works == MAYBE) in check_external_diff()
1072 if (diff_a_works != MAYBE) in check_external_diff()
1085 diff_a_works = MAYBE; in check_external_diff()
1087 diff_bin_works = MAYBE; in check_external_diff()
H A Dmenu.c129 int enable = MAYBE; // TRUE for "menu enable", FALSE for "menu in ex_menu()
285 if (*map_to == NUL && !unmenu && enable == MAYBE) in ex_menu()
290 else if (*map_to != NUL && (unmenu || enable != MAYBE)) in ex_menu()
307 if (enable != MAYBE) in ex_menu()
H A Dhardcopy.c655 curr_italic = MAYBE; in ex_hardcopy()
656 curr_bold = MAYBE; in ex_hardcopy()
657 curr_underline = MAYBE; in ex_hardcopy()
3192 curr_bold = MAYBE; in mch_print_begin_page()
H A Dsearch.c2330 start_in_quotes = MAYBE; in findmatchlimit()
2546 if (start_in_quotes == MAYBE) in findmatchlimit()
2561 if (start_in_quotes == MAYBE) in findmatchlimit()
2576 if (start_in_quotes == MAYBE) in findmatchlimit()
H A Dclipboard.c1729 success = MAYBE; in clip_x11_request_selection()
1743 while (success == MAYBE) in clip_x11_request_selection()
H A Dscreen.c3406 if (retval != MAYBE) in win_ins_lines()
3480 if (retval != MAYBE) in win_del_lines()
3591 return MAYBE; in win_do_lines()
H A Dedit.c589 if (dont_sync_undo == MAYBE) in edit()
1062 dont_sync_undo = MAYBE; in edit()
3514 dont_sync_undo = MAYBE; in ins_ctrl_g()
H A Dops.c3096 virtual_op = MAYBE; in cursor_pos_info()
3367 virtual_op = MAYBE; in op_function()
4183 virtual_op = MAYBE; in do_pending_operator()
H A Dvim.h1468 #define MAYBE 2 // sometimes used for a variant on TRUE macro
H A Dgui.c388 static int result = MAYBE; in gui_init_check()
390 if (result != MAYBE) in gui_init_check()
H A Dglobals.h1548 EXTERN int virtual_op INIT(= MAYBE);
H A Dchannel.c2192 else if (status == MAYBE) in channel_parse_json()
2258 ret = status == MAYBE ? FALSE: TRUE; in channel_parse_json()
H A Dmisc2.c30 if (virtual_op != MAYBE) in virtual_active()
H A Ddrawscreen.c1710 screen_cleared = MAYBE; in win_update()
H A Dgui_w32.c8445 static int multiline_tip = MAYBE; in multiline_balloon_available()
8447 if (multiline_tip != MAYBE) in multiline_balloon_available()
H A Dhighlight.c1058 int bold = MAYBE; in highlight_set_cterm_color()
H A Dterminal.c2918 int bold = MAYBE; in cell2attr()
H A Dex_docmd.c7763 virtual_op = MAYBE; in ex_operators()
/vim-8.2.3635/runtime/doc/
H A Dversion7.txt9092 Solution: Initialize fd_small to MAYBE. (Lech Lorens)
H A Dversion8.txt47354 Problem: Vim9: using TRUE/FALSE/MAYBE for ctx_skip is confusing.