HomeSort by: relevance | last modified time | path
    Searched refs:assignment (Results 1 - 25 of 64) sorted by relevancy

1 2 3

  /src/usr.bin/make/unit-tests/
var-op.mk 3 # Tests for the variable assignment operators.
sh.mk 4 # assignment operator or the :sh variable modifier.
7 # var-op-shell.mk for the assignment operator '!='
var-op-sunsh.mk 3 # Tests for the :sh= variable assignment operator, which runs its right-hand
5 # assignment operator, adopted from Sun make.
9 # This is the idiomatic form of the Sun shell assignment operator.
10 # The assignment operator is directly preceded by the ':sh'.
16 # It is also possible to have whitespace around the :sh assignment
27 # Since 2020-10-04, this is a normal variable assignment to the variable named
28 # 'VAR:shell', using the '=' assignment operator.
39 # assignment operator.
53 # The variable modifier ':sh' and the assignment operator modifier ':sh'.
55 # 2020-10-04, the parser regarded it as an assignment operator modifier, i
    [all...]
var-op-append.mk 3 # Tests for the '+=' variable assignment operator, which appends to a
10 # The '+=' variable assignment operator is planned to be added in
17 # The '+=' variable assignment operator was added before 1993-03-21.
39 # '+=' assignment operator. As far as possible, the '+' is interpreted as
40 # part of the assignment operator.
62 # variable. After the assignment, the environment variable is left as-is,
varname-dot-objdir.mk 10 # Having a ':=' assignment in the command line is construed but works
posix-varassign.mk 7 # The assignment operators "::=" and ":::=" are intentionally not supported,
22 # Deviation from POSIX: The "::=" assignment operator is not supported,
33 # Deviation from POSIX: The ":::=" assignment operator is not supported,
68 # In POSIX mode, the ":=" assignment operator is available as well, even
cmdline-undefined.mk 7 # '=' assignment operator do get their variable name expanded
17 @echo 'The = assignment operator'
22 # The interesting case is using the ':=' assignment operator, which
31 @echo 'The := assignment operator'
var-op-expand.mk 3 # Tests for the := variable assignment operator, which expands its
14 # If the right-hand side does not contain a dollar sign, the ':=' assignment
15 # operator has the same effect as the '=' assignment operator.
21 # When a ':=' assignment is performed, its right-hand side is evaluated and
86 # XXX: Even though this is a ':=' assignment, the '${UNDEF}' in the part of
138 # assignment. The undefined variables are kept as-is and are later expanded
141 # Contrary to the assignment operator '=', the assignment operator ':='
152 # Just for comparison, the previous example using the assignment operator '='
153 # instead of ':='. The right-hand side of the assignment is not evaluated a
    [all...]
cmdline-redirect-stdin.mk 3 # Demonstrate that the '!=' assignment operator can read individual lines
21 # If this branch is ever reached, the shell from the assignment to line1
opt-debug-var.mk 4 # variable assignment and evaluation.
11 # TODO: Explain why the empty assignment "Global: SUBST = " is needed.
cmdline-undefined.exp 1 The = assignment operator
9 The := assignment operator
varmod-quote-dollar.mk 8 # to the child make. When the child make parses the variable assignment, it
varname-dot-curdir.mk 25 # Until 2020-10-04, assigning the result of a shell assignment to .CURDIR
36 # A normal assignment works fine, as does a substitution assignment.
hanoi-include.mk 6 # * default assignment using the ?= assignment operator
10 # * on-the-fly variable assignment expressions using the ::= modifier
directive.mk 26 # from a variable assignment to ".info", which syntactically is very similar.
28 .info:= value # This is a variable assignment.
29 .info?= value # This is a variable assignment as well.
var-op-default.mk 3 # Tests for the ?= variable assignment operator, which only assigns
7 # from the variable assignment.
35 # performs the variable assignment, resulting in $i == "default".
45 # and 'VAR.${param}' expand to 'VAR.param', and the second '?=' assignment
54 # fragile), the variable assignment with "not used" was performed, and only
var-op-assign.mk 3 # Tests for the = variable assignment operator, which overwrites an existing
6 # This is a simple variable assignment.
7 # To the left of the assignment operator '=' there is the variable name,
13 # This condition demonstrates that whitespace around the assignment operator
20 # Whitespace to the left of the assignment operator is ignored as well.
47 # Since the right-hand side of a '=' assignment is not expanded at the time
57 # In a variable assignment, the variable name must consist of a single word.
varname-dot-make-save_dollars.mk 4 # the assignment operator ':=' converts '$$' to a single '$' or keeps it
12 # behavior of the assignment operator ':=' depends. NetBSD's usr.bin/make
27 # assignment is performed using ':='.
92 # right-hand side of the assignment operator ':=', it also affects dollars
varmod-assign.mk 13 # the '::?=' modifier applies the assignment operator '?=' 3 times. The
21 # the modifier '::=' applies the assignment operator '=' 3 times. The
29 # the modifier '::+=' applies the assignment operator '+=' 3 times. The
37 # the modifier '::!=' applies the assignment operator '!=' 3 times. Just as
100 # The modifier for assignment operators starts with a ':'.
106 # When parsing an assignment operator fails because the operator is
137 # The assignment modifier can be used in an expression that is
172 # Conditional directives are evaluated in command line scope. An assignment
201 # The commands of a target are evaluated in target scope. An assignment
var-scope-local.mk 142 # In the following line, the ':=' may either be interpreted as an assignment
144 # name and the assignment operator '='. It is the latter since in an
145 # assignment, the left-hand side must be a single word or empty.
153 # line is parsed as a variable assignment since its left-hand side is a single
187 # Begin tests for custom target-local variables, for all 5 variable assignment
211 # If the sources of a dependency line look like a variable assignment, make
212 # treats them as such. There is only a single variable assignment per
213 # dependency line, which makes whitespace around the assignment operator
233 # happens to the right of the assignment operator '=', the expanded text does
234 # not influence the parsing of the variable assignment. The effectiv
    [all...]
opt-env.mk 29 # The default assignment also cannot change the variable.
35 # Neither can the assignment modifiers.
varname-empty.mk 11 # .for loops. Another use case is in a variable assignment of the form
51 # Before 2020-08-22, the simple assignment operator '=' after an empty
54 # assignment operator, assuming that the variable name would be at least
parse-var.mk 57 # left-hand side of a variable assignment
58 # right-hand side of a ':=' variable assignment
59 # right-hand side of a '!=' variable assignment
80 # side of the assignment, but only if they occur inside expressions.
  /src/bin/sh/
arithmetic.c 203 static intmax_t assignment(int, int);
366 b = assignment(arith_token(), noeval | !a);
380 assignment(int var, int noeval) function in typeref:typename:intmax_t
397 result = assignment(arith_token(), noeval);
412 intmax_t result = assignment(token, noeval);
417 result = assignment(arith_token(), noeval);
  /src/tests/bin/sh/
t_varval.sh 117 atf_test_case assignment
256 atf_add_test_case assignment

Completed in 20 milliseconds

1 2 3