Lines Matching refs:expansion
1 /* Builtin function expansion for GNU Make.
1214 char *expansion = expand_argument (begp, endp+1);
1216 result = strlen (expansion);
1217 free (expansion);
1228 char *expansion;
1230 expansion = expand_argument (argv[0], NULL);
1232 o = variable_buffer_output (o, expansion, strlen (expansion));
1234 free (expansion);
1247 expansion. If it's false, CONDITION2 is evaluated, and so on. If none of
1248 the conditions are true, the expansion is the empty string.
1261 char *expansion;
1271 expansion = expand_argument (begp, endp+1);
1272 result = strlen (expansion);
1277 free (expansion);
1282 o = variable_buffer_output (o, expansion, result);
1283 free (expansion);
1297 expansion. If it's true, CONDITION2 is evaluated, and so on. If all of
1298 the conditions are true, the expansion is the result of the last condition.
1307 char *expansion;
1320 expansion = expand_argument (begp, endp+1);
1321 result = strlen (expansion);
1331 free (expansion);
1334 o = variable_buffer_output (o, expansion, result);
1339 free (expansion);
2184 If we're expanding, store pointers to the expansion of each one. If