Lines Matching refs:parseMakeString

603 		asgn.value = ctx.parseMakeString(a, a.Value)
624 asgn.value = ctx.parseMakeString(a, a.Value)
655 val := ctx.parseMakeString(asgn, asgn.Value)
755 switch x := ctx.parseMakeString(a, item).(type) {
941 pathExpr := ctx.parseMakeString(v, args)
954 …return ctx.handleSubConfig(v, ctx.parseMakeString(v, v.Args), loadAlways, func(im inheritedModule)…
1092 xLeft := ctx.parseMakeString(cond, args[0])
1093 xRight := ctx.parseMakeString(cond, args[1])
1318 expr := ctx.parseMakeString(node, ref)
1416 x := ctx.parseMakeString(node, arg)
1432 x := ctx.parseMakeString(node, args)
1451 x := ctx.parseMakeString(node, args)
1489 x := ctx.parseMakeString(node, arg)
1524 list: maybeConvertToStringList(ctx.parseMakeString(node, args)),
1564 from := ctx.parseMakeString(node, words[0])
1568 to := ctx.parseMakeString(node, words[1])
1574 obj := ctx.parseMakeString(node, words[2])
1599 condition := ctx.parseMakeString(node, words[0])
1600 ifTrue := ctx.parseMakeString(node, words[1])
1603 ifFalse = ctx.parseMakeString(node, words[2])
1631 ifn := &ifNode{expr: ctx.parseMakeString(node, words[0])}
1671 list := ctx.parseMakeString(node, words[1])
1672 action := ctx.parseMakeString(node, words[2]).transform(func(expr starlarkExpr) starlarkExpr {
1752 list := ctx.parseMakeString(node, words[1])
1797 array := ctx.parseMakeString(node, words[1])
1816 array := ctx.parseMakeString(node, args)
1837 expr := ctx.parseMakeString(node, arg)
1955 arg := ctx.parseMakeString(node, args)
1964 func (ctx *parseContext) parseMakeString(node mkparser.Node, mk *mkparser.MakeString) starlarkExpr { func