Home | History | Annotate | Download | only in core

Lines Matching refs:margin

203     $(eval __lj_margin := $$(call -justification-margin,$(__lj_temp),$2)))"$1$(subst x,$(space),$(__lj_margin))"
213 # Used internally to compute a justification margin.
218 -justification-margin = $(strip \
221 $(call -justification-margin-inner,$1,$2),\
226 -justification-margin-inner = $(if $(findstring $2,$1),,x$(call -justification-margin-inner,x$1,$2))
228 -test-justification-margin = \
229 $(call test-expect,,$(call -justification-margin,,))\
230 $(call test-expect,,$(call -justification-margin,xxx,xxx))\
231 $(call test-expect,xxxxxx,$(call -justification-margin,,xxxxxx))\
232 $(call test-expect,xxxxx,$(call -justification-margin,x,xxxxxx))\
233 $(call test-expect,xxxx,$(call -justification-margin,xx,xxxxxx))\
234 $(call test-expect,xxx,$(call -justification-margin,xxx,xxxxxx))\
235 $(call test-expect,xx,$(call -justification-margin,xxxx,xxxxxx))\
236 $(call test-expect,x,$(call -justification-margin,xxxxx,xxxxxx))\
237 $(call test-expect,,$(call -justification-margin,xxxxxx,xxxxxx))\
238 $(call test-expect,,$(call -justification-margin,xxxxxxxxxxx,xxxxxx))\