Lines Matching refs:sort
212 sort bool member
314 sort.Slice(vars, func(i, j int) bool {
317 sort.Slice(phonies, func(i, j int) bool {
331 sort.Slice(dists, func(i, j int) bool {
369 # $(2): If not-empty, sort the values before comparing
373 my_val_make := $$(strip $(if $(2),$$(sort $$($(1))),$$($(1))))
374 my_val_soong := $(if $(2),$$(sort $$(SOONG_$(1))),$$(SOONG_$(1)))
401 sort := ""
402 if v.sort {
403 sort = "true"
407 …t.Fprintf(buf, "$(eval $(call soong-compare-var,%s,%s,my_check_failed := true))\n\n", v.name, sort)
424 sort := ""
425 if v.sort {
426 sort = "true"
430 fmt.Fprintf(buf, "$(eval $(call soong-compare-var,%s,%s))\n\n", v.name, sort)
588 func (c *makeVarsContext) addVariableRaw(name, value string, strict, sort bool) {
593 sort: sort,
597 func (c *makeVarsContext) addVariable(name, ninjaStr string, strict, sort bool) {
602 c.addVariableRaw(name, value, strict, sort)