Home
last modified time | relevance | path

Searched refs:depth (Results 1 – 25 of 88) sorted by relevance

1234

/vim-8.2.3635/src/
H A Dspellsuggest.c2061 ++depth; in suggest_trie_walk()
2158 ++depth; in suggest_trie_walk()
2260 ++depth; in suggest_trie_walk()
2348 ++depth; in suggest_trie_walk()
2416 ++depth; in suggest_trie_walk()
2477 ++depth; in suggest_trie_walk()
2664 stack[depth + 1] = stack[depth]; in go_deeper()
2799 kwordlen[depth + 1] = kwordlen[depth] + flen; in find_keepcap_word()
2807 fwordidx[depth + 1] = fwordidx[depth] + flen; in find_keepcap_word()
2808 uwordidx[depth + 1] = uwordidx[depth] + ulen; in find_keepcap_word()
[all …]
H A Dspellfile.c618 depth = 0; in tree_count_words()
621 if (curi[depth] > byts[arridx[depth]]) in tree_count_words()
624 idxs[arridx[depth]] = wordcount[depth]; in tree_count_words()
626 wordcount[depth - 1] += wordcount[depth]; in tree_count_words()
628 --depth; in tree_count_words()
634 n = arridx[depth] + curi[depth]; in tree_count_words()
654 ++depth; in tree_count_words()
5582 if (curi[depth] > byts[arridx[depth]]) in sug_filltree()
5585 idxs[arridx[depth]] = wordcount[depth]; in sug_filltree()
5587 wordcount[depth - 1] += wordcount[depth]; in sug_filltree()
[all …]
H A Dsearch.c3347 int depth; in find_pattern_in_path() local
3448 if (i == depth + 1) in find_pattern_in_path()
3747 if (depth < 0) in find_pattern_in_path()
3817 (depth == -1) ? NULL : files[depth].fp, in find_pattern_in_path()
3818 (depth == -1) ? &lnum : &files[depth].lnum, in find_pattern_in_path()
3838 (depth == -1) ? NULL : files[depth].fp, in find_pattern_in_path()
3839 (depth == -1) ? &lnum : &files[depth].lnum, 1L); in find_pattern_in_path()
3861 if (depth == -1) in find_pattern_in_path()
3943 --depth; in find_pattern_in_path()
3947 depth_displayed = depth; in find_pattern_in_path()
[all …]
H A Dspell.c3878 int depth; in spell_dump_compl() local
3975 depth = 0; in spell_dump_compl()
3981 if (curi[depth] > byts[arridx[depth]]) in spell_dump_compl()
3984 --depth; in spell_dump_compl()
3991 n = arridx[depth] + curi[depth]; in spell_dump_compl()
4044 --depth; in spell_dump_compl()
4165 int depth; in dump_prefixes() local
4187 depth = 0; in dump_prefixes()
4197 --depth; in dump_prefixes()
4204 ++curi[depth]; in dump_prefixes()
[all …]
H A Dgui_xmebw.c327 unsigned int height, width, border, depth; in set_pixmap() local
394 XGetGeometry(dpy, pix, &root, &x, &y, &width, &height, &border, &depth); in set_pixmap()
402 sen_pix = XCreatePixmap(dpy, root, width + shift, height + shift, depth); in set_pixmap()
425 high_pix = XCreatePixmap(dpy, root, width + shift, height + shift, depth); in set_pixmap()
438 arm_pix = XCreatePixmap(dpy, pix, width + shift, height + shift, depth); in set_pixmap()
464 ins_pix = XCreatePixmap(dpy, root, width + shift, height + shift, depth); in set_pixmap()
481 eb->enhancedbutton.pixmap_depth = depth; in set_pixmap()
619 int depth; in draw_pixmap() local
642 depth = eb->enhancedbutton.pixmap_depth; in draw_pixmap()
659 if (depth == (int)eb->core.depth) in draw_pixmap()
[all …]
H A Dregexp_nfa.c334 if (depth > 4) in nfa_get_reganch()
396 if (depth > 4) in nfa_get_regstart()
3181 if (depth > 4) in nfa_max_width()
4388 if (depth > 10) in match_follows()
4522 static int depth = 0; in addstate() local
4528 --depth; in addstate()
4642 --depth; in addstate()
4664 --depth; in addstate()
4683 --depth; in addstate()
4950 --depth; in addstate()
[all …]
H A Dif_mzsch.c166 static Scheme_Object *vim_to_mzscheme_impl(typval_T *vim_value, int depth,
2990 if (depth > 100) in vim_to_mzscheme_impl()
3035 obj = vim_to_mzscheme_impl(&curr->li_tv, depth + 1, visited); in vim_to_mzscheme_impl()
3042 obj = vim_to_mzscheme_impl(&curr->li_tv, depth + 1, visited); in vim_to_mzscheme_impl()
3075 obj = vim_to_mzscheme_impl(&di->di_tv, depth + 1, visited); in vim_to_mzscheme_impl()
3174 mzscheme_to_vim_impl(Scheme_Object *obj, typval_T *tv, int depth, in mzscheme_to_vim_impl() argument
3186 if (depth > 100) // limit the deepest recursion level in mzscheme_to_vim_impl()
3276 status = mzscheme_to_vim_impl(cval, v, depth + 1, visited); in mzscheme_to_vim_impl()
3292 status = mzscheme_to_vim_impl(cval, v, depth + 1, visited); in mzscheme_to_vim_impl()
3304 status = mzscheme_to_vim_impl(cval, v, depth + 1, visited); in mzscheme_to_vim_impl()
[all …]
H A Dgui_at_sb.c473 unsigned int depth = 1; in CreateGC() local
478 (Pixel) 1, (Pixel) 0, depth); in CreateGC()
487 &width, &height, &bw, &depth) == 0) in CreateGC()
H A Dmenu.c1168 show_menus_recursive(vimmenu_T *menu, int modes, int depth) in show_menus_recursive() argument
1181 for (i = 0; i < depth; i++) in show_menus_recursive()
1200 for (i = 0; i < depth + 2; i++) in show_menus_recursive()
1229 depth--; in show_menus_recursive()
1237 show_menus_recursive(menu, modes, depth + 1); in show_menus_recursive()
H A Dgui_motif.c658 unsigned int width, height, border_width, depth; in manage_centered() local
676 &width, &height, &border_width, &depth); in manage_centered()
2448 int depth; in create_pixmap_label() local
2472 XmNdepth, &depth, in create_pixmap_label()
2484 attr.depth = depth; in create_pixmap_label()
/vim-8.2.3635/src/testdir/
H A Dtest_listdict.vim552 for depth in range(5)
555 exe "lockvar " .. depth .. " l"
559 exe "unlockvar " .. depth .. " l"
562 call assert_equal(expected[depth][u][0], ps, 'depth: ' .. depth)
606 call assert_equal(expected[depth][u][1], ps, 'depth: ' .. depth)
642 for depth in range(5)
646 exe "lockvar " . depth . " l"
650 exe "unlockvar " . depth . " l"
653 call assert_equal(expected[depth][u][0], ps, 'depth: ' .. depth)
697 call assert_equal(expected[depth][u][1], ps)
H A Dtest_flatten.vim38 " Make it flatten if the given maxdepth is larger than actual depth.
/vim-8.2.3635/src/xpm/include/
H A Dsimx.h88 unsigned int depth; member
111 FUNC(XCreateImage, XImage *, (Display *, Visual *, int depth, int format,
H A Dxpm.h177 unsigned int depth; /* Specifies the depth */ member
/vim-8.2.3635/runtime/autoload/
H A Dccomplete.vim402 " When resolving typedefs "depth" is used to avoid infinite recursion.
404 func s:Nextitem(lead, items, depth, all) argument
475 elseif a:depth < 10
477 call extend(res, s:Nextitem(cmdtokens[0], a:items, a:depth + 1, a:all))
H A Dnetrw.vim6422 " call Decho("depth =".depth,'~'.expand("<slnum>"))
6425 if depth >= 2
6431 elseif depth == 1
9432 " call Dfunc("NetrwTreeDisplay(dir<".a:dir."> depth<".a:depth.">)")
9438 if a:depth == ""
9458 let depth= s:treedepthstring.a:depth
9485 if depth != ""
9650 " call Decho("depth<".depth."> 1st subst",'~'.expand("<slnum>"))
9651 let depth = substitute(depth,'^'.s:treedepthstring,'','')
9652 " call Decho("depth<".depth."> 2nd subst (first depth removed)",'~'.expand("<slnum>"))
[all …]
/vim-8.2.3635/runtime/syntax/
H A Dhog.vim103 "syn region HogRuleOption start="\<gid\|sid\|rev\|depth\|offset\|distance\|within\>" end="…
105 syn keyword HogRuleOption skipwhite contained nextgroup=HogRuleSROP depth startswith offset d…
H A Dninja.vim50 syn keyword ninjaPoolCommand contained containedin=ninjaPool depth
H A Dinitex.vim113 …or\)stop\|scroll\)mode\|\%(err\)\=message\|meaning\|show\%(box\%(breadth\|depth\)\=\|lists\|the\)\…
184 \ '\\page\%(depth\|fil\{1,3}stretch\|goal\|shrink\|stretch\|total\)\>'
H A Dgpg.vim50 \ local-user logger-fd marginals-needed max-cert-depth
H A Dant.vim57 syn keyword antElement display depends dependset depth description different dirname dirset disable…
H A Dsmil.vim66 syn match smilArg contained "system-screen-depth"
H A Dsqloracle.vim129 syn keyword sqlFunction appendchildxml deletexml depth extract existsnode extractvalue insertchildx…
/vim-8.2.3635/src/proto/
H A Duserfunc.pro19 void funcdepth_restore(int depth);
/vim-8.2.3635/runtime/doc/
H A Dusr_28.txt236 Note that the relation between the amount of indent and the fold depth depends
238 depth of the fold. This is called a fold level.

1234