Home | History | Annotate | Download | only in core

Lines Matching full:quoted

180 # Function: left-justify-quoted-15
182 # Returns: A quoted string that can be used in command scripts to print
185 # Usage: ---->@$(call host-echo, $(call left-justify-quoted-15,$(_TEXT)): Do stuff)
188 left-justify-quoted-15 = $(call -left-justify,$1,xxxxxxxxxxxxxxx)
190 -test-left-justify-quoted-15 = \
191 $(call test-expect," ",$(call left-justify-quoted-15,))\
192 $(call test-expect,"Foo Bar ",$(call left-justify-quoted-15,Foo Bar))\
194 $(call left-justify-quoted-15,Very long string over 15 characters wide)))
196 # Used internally to compute a quoted left-justified text string.
199 # Return: A quoted string with the input text left-justified appropriately.