Home | History | Annotate | Download | only in core

Lines Matching refs:margin

210     $(eval __lj_margin := $$(call -justification-margin,$(__lj_temp),$2)))"$1$(subst x,$(space),$(__lj_margin))"
220 # Used internally to compute a justification margin.
225 -justification-margin = $(strip \
228 $(call -justification-margin-inner,$1,$2),\
233 -justification-margin-inner = $(if $(findstring $2,$1),,x$(call -justification-margin-inner,x$1,$2))
235 -test-justification-margin = \
236 $(call test-expect,,$(call -justification-margin,,))\
237 $(call test-expect,,$(call -justification-margin,xxx,xxx))\
238 $(call test-expect,xxxxxx,$(call -justification-margin,,xxxxxx))\
239 $(call test-expect,xxxxx,$(call -justification-margin,x,xxxxxx))\
240 $(call test-expect,xxxx,$(call -justification-margin,xx,xxxxxx))\
241 $(call test-expect,xxx,$(call -justification-margin,xxx,xxxxxx))\
242 $(call test-expect,xx,$(call -justification-margin,xxxx,xxxxxx))\
243 $(call test-expect,x,$(call -justification-margin,xxxxx,xxxxxx))\
244 $(call test-expect,,$(call -justification-margin,xxxxxx,xxxxxx))\
245 $(call test-expect,,$(call -justification-margin,xxxxxxxxxxx,xxxxxx))\