Searched defs:MakeString (Results 1 – 6 of 6) sorted by relevance
/build/soong/androidmk/parser/ |
D | make_strings.go | 20 type MakeString struct { struct 21 Pos scanner.Position 22 Strings []string 23 Variables []Variable 33 func (ms *MakeString) appendString(s string) { 42 func (ms *MakeString) appendVariable(v Variable) { 52 func (ms *MakeString) appendMakeString(other *MakeString) { 59 func (ms *MakeString) Value(scope Scope) string { 72 func (ms *MakeString) Dump() string { 85 func (ms *MakeString) Const() bool { [all …]
|
D | make_strings_test.go | 89 func dumpArray(a []*MakeString) string {
|
D | scope.go | 90 func toVariable(ms *MakeString) (Variable, bool) {
|
/build/soong/androidmk/cmd/androidmk/ |
D | android.go | 196 func localIncludeDirs(file *bpFile, prefix string, value *mkparser.MakeString, appendVariable bool)… 224 func exportIncludeDirs(file *bpFile, prefix string, value *mkparser.MakeString, appendVariable bool… 255 func stem(file *bpFile, prefix string, value *mkparser.MakeString, appendVariable bool) error { 271 func hostOs(file *bpFile, prefix string, value *mkparser.MakeString, appendVariable bool) error {
|
D | values.go | 47 func makeToStringExpression(ms *mkparser.MakeString, scope mkparser.Scope) (*bpparser.Value, error)… 102 func makeToListExpression(ms *mkparser.MakeString, scope mkparser.Scope) (*bpparser.Value, error) { 186 func makeToBoolExpression(ms *mkparser.MakeString) (*bpparser.Value, error) {
|
D | androidmk.go | 305 func makeVariableToBlueprint(file *bpFile, val *mkparser.MakeString,
|