Lines Matching refs:call
21 call matchadd('Style', '\%>80v.\+', -1) " line over 80 char
22 call matchadd('Style', '^\s* \s*', -1) " spaces instead of tabs
23 call matchadd('Style', '[\t ]\(for\|if\|select\|switch\|while\|catch\)(', -1)
25 call matchadd('Style', '^\(\(?!\/\/\|\/\*\).\)*//\S', -1)
28 call matchadd('Style', '^\(\(?!\/\/\|\/\*\).\)*\w[,=>+\-*;]\w', -1)
29 call matchadd('Style', '^\(\(?!\/\/\|\/\*\).\)*\w\(<<\|>>\)\w', -1)
32 call matchadd('Style', '^[^#]^\(\(?!\/\/\|\/\*\).\)*[^<]\zs\w*/\w', -1)
35 call matchadd('Style', '^[^/]\{2}.*\zs[^*][=/+\-< ]$', -1)
38 call matchadd('Style', '^[^#].*\zs[^<]>$', -1)
40 call matchadd('Style', '){', -1) " Missing space after method header
41 call matchadd('Style', '}\n\s*else', -1) " Malformed else
42 call matchadd('Style', '}\n\s*catch', -1) " Malformed catch
43 call matchadd('Style', '\s$', -1) "Spaces at end of line
44 call matchadd('Style', ',\S', -1) " Missing space after comma
45 call matchadd('Style', '^}\n\{1,2}\S', -1)
47 call matchadd('Style', '^}\n\{4,}\S', -1)
53 call FuncHaikuCheck()