Searched refs:Indention (Results 1 – 2 of 2) sorted by relevance
/build/soong/starlark_fmt/ |
D | format.go | 30 func Indention(level int) string { func 65 innerIndent := Indention(indentLevel + 1) 69 list = append(list, Indention(indentLevel)+"]") 77 …items = append(items, fmt.Sprintf(`%s%s: %s,`, Indention(indentLevel+1), printAnyRecursive(key, in… 82 %s}`, strings.Join(items, "\n"), Indention(indentLevel)) 94 …items = append(items, fmt.Sprintf(`%s%s = %s,`, Indention(indentLevel+1), name, printAnyRecursive(… 96 items = append(items, Indention(indentLevel)+")") 131 innerIndent := Indention(indentLevel + 1) 135 list = append(list, Indention(indentLevel)+"]") 187 items = append(items, fmt.Sprintf(`%s"%s": %s,`, Indention(indentLevel+1), k, v)) [all …]
|
/build/soong/bp2build/ |
D | configurability.go | 306 …ret += fmt.Sprintf("%s\"%s\": %s,\n", starlark_fmt.Indention(indent+1), bazel.ConditionsDefaultSel… 309 ret += starlark_fmt.Indention(indent) 318 s := starlark_fmt.Indention(indent + 1)
|