Home | History | Annotate | Download | only in src

Lines Matching refs:variable

106 /* Indicates whether a variable's value was specified with -D/--define, with
113 /* Define the muscles for %define variable VARIABLE with VALUE specified
115 grammar file while the previous definition for VARIABLE was specified
120 this as a user occurrence of VARIABLE by invoking
122 void muscle_percent_define_insert (char const *variable, location variable_loc,
127 %define variable VARIABLE is defined, return its value. Otherwise, return
128 the empty string. Also, record Bison's usage of VARIABLE by defining
129 b4_percent_define_bison_variables(VARIABLE). The caller is responsible for
131 char *muscle_percent_define_get (char const *variable);
134 if the %define variable VARIABLE is undefined, complain fatally since that's
137 Don't record this as a Bison usage of VARIABLE as there's no reason to
139 location muscle_percent_define_get_loc (char const *variable);
142 is, if the %define variable VARIABLE is undefined, complain fatally since
144 b4_syncline invocation. Don't record this as a Bison usage of VARIABLE as
147 char const *muscle_percent_define_get_syncline (char const *variable);
150 %define variable VARIABLE is defined, return true. Otherwise, return false.
151 Also, record Bison's usage of VARIABLE by defining
152 b4_percent_define_bison_variables(VARIABLE). */
153 bool muscle_percent_define_ifdef (char const *variable);
156 the %define variable VARIABLE is defined to "" or "true", return true. If
160 VARIABLE by defining b4_percent_define_bison_variables(VARIABLE). */
161 bool muscle_percent_define_flag_if (char const *variable);
164 the %define variable VARIABLE is undefined, set its value to VALUE.
165 Don't record this as a Bison usage of VARIABLE as there's no reason to
167 void muscle_percent_define_default (char const *variable, char const *value);
173 sublist, the first string is the name of a %define variable, and all
174 remaining strings in that sublist are the valid values for that variable.
175 Complain if such a variable is undefined (a Bison error since the default
177 a user error). Don't record this as a Bison usage of the variable as