Lines Matching refs:sort
167 sort bool member
240 # $(2): If not-empty, sort the values before comparing
244 my_val_make := $$(strip $(if $(2),$$(sort $$($(1))),$$($(1))))
245 my_val_soong := $(if $(2),$$(sort $$(SOONG_$(1))),$$(SOONG_$(1)))
272 sort := ""
273 if v.sort {
274 sort = "true"
278 …t.Fprintf(buf, "$(eval $(call soong-compare-var,%s,%s,my_check_failed := true))\n\n", v.name, sort)
295 sort := ""
296 if v.sort {
297 sort = "true"
301 fmt.Fprintf(buf, "$(eval $(call soong-compare-var,%s,%s))\n\n", v.name, sort)
352 func (c *makeVarsContext) addVariableRaw(name, value string, strict, sort bool) {
357 sort: sort,
361 func (c *makeVarsContext) addVariable(name, ninjaStr string, strict, sort bool) {
366 c.addVariableRaw(name, value, strict, sort)