Lines Matching refs:theline
217 char_u *theline; in get_function_args() local
220 theline = eap->getline(':', eap->cookie, 0, TRUE); in get_function_args()
221 if (theline == NULL) in get_function_args()
224 *line_to_free = theline; in get_function_args()
226 p = skipwhite(theline); in get_function_args()
697 char_u *theline; in get_function_body() local
711 theline = line_arg; in get_function_body()
712 p = vim_strchr(theline, '\n'); in get_function_body()
725 theline = getcmdline(':', 0L, indent, getline_options); in get_function_body()
727 theline = eap->getline(':', eap->cookie, indent, in get_function_body()
729 *line_to_free = theline; in get_function_body()
733 if (theline == NULL) in get_function_body()
762 || (is_heredoc && skipwhite(theline) == theline) in get_function_body()
763 || STRNCMP(theline, heredoc_trimmed, in get_function_body()
767 p = theline; in get_function_body()
769 p = skipwhite(theline) == theline in get_function_body()
770 ? theline : theline + STRLEN(heredoc_trimmed); in get_function_body()
772 p = theline + STRLEN(heredoc_trimmed); in get_function_body()
785 ga_concat(&heredoc_ga, theline); in get_function_body()
792 theline += STRLEN(theline); // skip the "EOF" in get_function_body()
803 for (p = theline; VIM_ISWHITE(*p) || *p == ':'; ++p) in get_function_body()
982 heredoc_trimmed = vim_strnsave(theline, in get_function_body()
983 skipwhite(theline) - theline); in get_function_body()
1021 heredoc_trimmed = vim_strnsave(theline, in get_function_body()
1022 skipwhite(theline) - theline); in get_function_body()
1039 ga_concat(&heredoc_ga, theline); in get_function_body()
1048 p = vim_strsave(theline); in get_function_body()