Lines Matching refs:sort
200 sort bool member
267 sort.Slice(vars, func(i, j int) bool {
270 sort.Slice(phonies, func(i, j int) bool {
284 sort.Slice(dists, func(i, j int) bool {
312 # $(2): If not-empty, sort the values before comparing
316 my_val_make := $$(strip $(if $(2),$$(sort $$($(1))),$$($(1))))
317 my_val_soong := $(if $(2),$$(sort $$(SOONG_$(1))),$$(SOONG_$(1)))
344 sort := ""
345 if v.sort {
346 sort = "true"
350 …t.Fprintf(buf, "$(eval $(call soong-compare-var,%s,%s,my_check_failed := true))\n\n", v.name, sort)
367 sort := ""
368 if v.sort {
369 sort = "true"
373 fmt.Fprintf(buf, "$(eval $(call soong-compare-var,%s,%s))\n\n", v.name, sort)
424 func (c *makeVarsContext) addVariableRaw(name, value string, strict, sort bool) {
429 sort: sort,
433 func (c *makeVarsContext) addVariable(name, ninjaStr string, strict, sort bool) {
438 c.addVariableRaw(name, value, strict, sort)