Home
last modified time | relevance | path

Searched refs:newl (Results 1 – 3 of 3) sorted by relevance

/vim-8.2.3635/src/
H A Dstrings.c375 int newl; in strup_save() local
390 newl = utf_char2len(uc); in strup_save()
391 if (newl != l) in strup_save()
393 s = alloc(STRLEN(res) + 1 + newl - l); in strup_save()
400 STRCPY(s + (p - res) + newl, p + l); in strup_save()
407 p += newl; in strup_save()
442 int newl; in strlow_save() local
457 newl = utf_char2len(lc); in strlow_save()
458 if (newl != l) in strlow_save()
467 STRCPY(s + (p - res) + newl, p + l); in strlow_save()
[all …]
H A Dregexp_nfa.c561 int newl = FALSE; in nfa_recognize_char_class() local
566 newl = TRUE; in nfa_recognize_char_class()
629 newl = TRUE; in nfa_recognize_char_class()
639 newl = TRUE; in nfa_recognize_char_class()
649 if (newl == TRUE) in nfa_recognize_char_class()
5001 nfa_thread_T *newl; in addstate_here() local
5008 newl = alloc(newsize); in addstate_here()
5009 if (newl == NULL) in addstate_here()
5012 mch_memmove(&(newl[0]), in addstate_here()
5015 mch_memmove(&(newl[listidx]), in addstate_here()
[all …]
/vim-8.2.3635/runtime/indent/
H A Dr.vim393 let newl = SanitizeRLine(line)
394 if newl =~ '\<\(if\|while\|for\|function\)\s*()$' || newl =~ '\<else$' || newl =~ '<-$'