Lines Matching full:var
3 # Demonstrates the debugging output for var.c.
7 # expect: Global: VAR = added
8 VAR= added # VarAdd
9 # expect: Global: VAR = overwritten
10 VAR= overwritten # Var_Set
11 # expect: Global: delete VAR
12 .undef VAR
13 # expect: Global: ignoring delete 'VAR' as it is not found
14 .undef VAR
24 # expect: Global: VAR = 1
25 VAR= 1
26 # expect: Global: VAR = 1 2
27 VAR+= 2
28 # expect: Global: VAR = 1 2 3
29 VAR+= 3
32 # expect: Result of ${VAR:M[2]} is "2"
33 .if ${VAR:M[2]} # ModifyWord_Match
36 # expect: Result of ${VAR:N[2]} is "1 3"
37 .if ${VAR:N[2]} # ModifyWord_NoMatch
40 .if ${VAR:S,2,two,} # ParseModifierPart
43 # expect: Result of ${VAR:Q} is "1\ 2\ 3"
44 .if ${VAR:Q} # VarQuote
47 .if ${VAR:tu:tl:Q} # ApplyModifiers
55 # expect: Global: delete VAR