Home | History | Annotate | Download | only in core

Lines Matching refs:Left

205 # Left-justify input string with spaces to fill a width of 15.
206 # Function: left-justify-quoted-15
209 # the left-justified input with host-echo.
211 # Usage: ---->@$(call host-echo, $(call left-justify-quoted-15,$(_TEXT)): Do stuff)
214 left-justify-quoted-15 = $(call -left-justify,$1,xxxxxxxxxxxxxxx)
216 -test-left-justify-quoted-15 = \
217 $(call test-expect," ",$(call left-justify-quoted-15,))\
218 $(call test-expect,"Foo Bar ",$(call left-justify-quoted-15,Foo Bar))\
220 $(call left-justify-quoted-15,Very long string over 15 characters wide)))
222 # Used internally to compute a quoted left-justified text string.
225 # Return: A quoted string with the input text left-justified appropriately.
226 -left-justify = $(strip \
231 -test-left-justify = \
232 $(call test-expect,"",$(call -left-justify,,))\
233 $(call test-expect,"foo",$(call -left-justify,foo,xxx))\
234 $(call test-expect,"foo ",$(call -left-justify,foo,xxxx))\
235 $(call test-expect,"foo ",$(call -left-justify,foo,xxxxxx))\
236 $(call test-expect,"foo ",$(call -left-justify,foo,xxxxxxxxxxxx))\
237 $(call test-expect,"very long string",$(call -left-justify,very long string,xxx))\