Searched refs:assignment (Results 1 - 25 of 43) sorted by relevance

12

/freebsd-13-stable/crypto/heimdal/lib/sl/
H A Dslc.h39 struct assignment { struct
44 struct assignment *assignment; member in union:assignment::__anon6836
47 struct assignment *next;
H A Dslc-gram.h58 struct assignment *assignment; member in union:YYSTYPE
H A Dslc-gram.y48 extern struct assignment *assignment;
60 struct assignment *assignment;
65 %type <assignment> assignment assignments
73 assignment = $1;
77 assignments : assignment assignments
82 | assignment
85 assignment label
[all...]
H A Dslc-gram.c129 extern struct assignment *assignment;
161 struct assignment *assignment; member in union:YYSTYPE
469 "$accept", "start", "assignments", "assignment", 0
1364 assignment = (yyvsp[(1) - (1)].assignment);
1371 (yyvsp[(1) - (2)].assignment)->next = (yyvsp[(2) - (2)].assignment);
1372 (yyval.assignment)
1618 struct assignment *assignment; variable in typeref:struct:assignment
[all...]
/freebsd-13-stable/contrib/bmake/unit-tests/
H A Dvar-op-sunsh.mk3 # 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 using the '='
28 # assignment operator.
36 # assignment operator.
50 # The variable modifier ':sh' and the assignment operator modifier ':sh'.
52 # 2020-10-04, the parser regarded it as an assignment operato
[all...]
H A Dcmdline-undefined.mk7 # '=' assignment operator do get their variable name expanded
11 @echo 'The = assignment operator'
16 # The interesting case is using the ':=' assignment operator, which
19 @echo 'The := assignment operator'
H A Ddirective.mk22 # assignment. It is a variable assignment.
25 .info?= value # This is a variable assignment as well.
H A Dvar-op-expand.mk3 # Tests for the := variable assignment operator, which expands its
8 # If the right-hand side does not contain a dollar sign, the ':=' assignment
9 # operator has the same effect as the '=' assignment operator.
15 # When a ':=' assignment is performed, its right-hand side is evaluated and
74 # XXX: Even though this is a ':=' assignment, the '${UNDEF}' in the part of
123 # assignment. The undefined variables are kept as-is and are later expanded
126 # Contrary to the assignment operator '=', the assignment operator ':='
137 # Just for comparison, the previous example using the assignment operator '='
138 # instead of ':='. The right-hand side of the assignment i
[all...]
H A Dcmdline-redirect-stdin.mk3 # Demonstrate that the '!=' assignment operator can read individual lines
21 # If this branch is ever reached, the shell from the assignment to line1
H A Dcmdline-undefined.exp1 The = assignment operator
9 The := assignment operator
H A Denvfirst.mk23 # The default assignment also cannot change the variable.
29 # Neither can the assignment modifiers.
H A Dhanoi-include.mk6 # * default assignment using the ?= assignment operator
11 # * on-the-fly variable assignment expressions using the ::= modifier
H A Dvarname-dot-curdir.mk25 # Until 2020-10-04, assigning the result of a shell assignment to .CURDIR
36 # A normal assignment works fine, as does a substitution assignment.
H A Dvarname.mk27 # This is not a variable assignment since the parentheses and braces are not
34 # variable assignment as well.
37 # come from an external source, not the text that is parsed in the assignment
H A Dvar-op-default.mk3 # 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
H A Dvar-op-assign.mk3 # 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.
H A Dvarmod-assign.mk13 # The ::?= modifier applies the ?= assignment operator 3 times.
18 # The ::= modifier applies the = assignment operator 3 times.
23 # The ::+= modifier applies the += assignment operator 3 times.
28 # The ::!= modifier applies the != assignment operator 3 times.
76 # The modifier for assignment operators starts with a ':'.
78 @echo ${ASSIGN::x} # 'x' is an unknown assignment operator
80 # When parsing an assignment operator fails because the operator is
H A Dcomment.mk41 # not count as a line continuation, therefore the variable assignment that
49 VAR= \# # Both in the assignment.
H A Dvarmisc.mk121 # the parser. The assignment operator is still a simple assignment.
123 # and the assignment operator.
H A Ddeptgt-makeflags.mk60 # assignment. At that point, the line is simply "nl=\n", and the \n is
70 # parsing. The ':=' assignment operator expands the empty variable
/freebsd-13-stable/bin/sh/tests/errors/
H A DMakefile10 ${PACKAGE}FILES+= assignment-error1.0
11 ${PACKAGE}FILES+= assignment-error2.0
/freebsd-13-stable/crypto/heimdal/lib/roken/
H A Denvironment.c42 /* find assignment in env list; len is length of variable including
47 find_var(char **env, char *assignment, size_t len) argument
51 if(strncmp(env[i], assignment, len) == 0)
/freebsd-13-stable/bin/sh/
H A Darith_yacc.c166 static arith_t assignment(int var, int noeval);
175 result = assignment(op, noeval);
289 b = assignment(yylex(), noeval | !a);
302 static arith_t assignment(int var, int noeval) function
315 result = assignment(yylex(), noeval);
335 result = assignment(yylex(), 0);
/freebsd-13-stable/contrib/netbsd-tests/bin/sh/
H A Dt_varval.sh112 atf_test_case assignment
247 atf_add_test_case assignment
/freebsd-13-stable/usr.bin/rpcgen/
H A Drpc_parse.h99 const char *assignment; member in struct:enumval_list

Completed in 278 milliseconds

12