Lines Matching full:expanded
23 The macro language replaces the variable references with their expanded form,
54 variable is expanded "in place" to yield a text string that may then be
55 expanded further. To get the value of a variable, enclose the variable name in
59 There are two types of variables: simply expanded variables and recursively
60 expanded variables.
62 A simply expanded variable is defined using the := assignment operator. Its
63 righthand side is expanded immediately upon reading the line from the Kconfig
66 A recursively expanded variable is defined using the = assignment operator.
72 variable. The righthand side of += is expanded immediately if the lefthand
83 Useful functions must be expanded when they are used since the same function is
84 expanded differently if different parameters are passed. Hence, a user-defined
88 In fact, recursively expanded variables and user-defined functions are the same
109 The "shell" function accepts a single argument that is expanded and passed
133 The 'filename' takes no argument, and $(filename) is expanded to the file
138 The 'lineno' takes no argument, and $(lineno) is expanded to the line number
200 A variable (or function) cannot be expanded across tokens. So, you cannot use
219 A variable cannot be expanded to any keyword in Kconfig. The following does
228 Obviously from the design, $(shell command) is expanded in the textual
242 expanded::