Lines Matching +full:a +full:- +full:za +full:- +full:z0 +full:- +full:9
3 " http://ninja-build.org/manual.html
12 " https://github.com/ninja-build/ninja/blob/master/src/lexer.in.cc
13 " https://github.com/ninja-build/ninja/blob/master/src/manifest_parser.cc
25 " optional whitespace), as long as the prior line didn't end with a $
39 " Both 'build' and 'rule' begin a variable scope that ends
40 " on the first line without indent. 'rule' allows only a
54 " simple_varname = [a-zA-Z0-9_-]+;
55 " varname = [a-zA-Z0-9_.-]+;
56 " $$ -> $
57 " $\n -> line continuation
58 " '$ ' -> escaped space
59 " $simple_varname -> variable
60 " ${varname} -> variable
64 syn match ninjaSimpleVar "\$[a-zA-Z0-9_-]\+"
65 syn match ninjaVar "\${[a-zA-Z0-9_.-]\+}"
71 " order-only dependency ||