Home
last modified time | relevance | path

Searched refs:callExpr (Results 1 – 2 of 2) sorted by relevance

/build/soong/mk2rbc/
Dmk2rbc.go628 result = append(result, &exprNode{&callExpr{
680 return []starlarkNode{&exprNode{&callExpr{
720 xConcat.items = append(xConcat.items, &callExpr{
768 if ce, ok := pathExpr.(*callExpr); ok && ce.name == "rblf.mksort" && len(ce.args) == 1 {
769 …if ce2, ok2 := ce.args[0].(*callExpr); ok2 && ce2.name == "rblf.expand_wildcard" && len(ce2.args) …
772 …} else if ce2, ok2 := pathExpr.(*callExpr); ok2 && ce2.name == "rblf.expand_wildcard" && len(ce2.a…
1095 call, ok := left.(*callExpr)
1102 call, _ = right.(*callExpr)
1127 filterFuncCall *callExpr, xValue starlarkExpr, negate bool) (starlarkExpr, bool) {
1163 xCall *callExpr, xValue starlarkExpr, negate bool) starlarkExpr {
[all …]
Dexpr.go554 type callExpr struct { struct
561 func (cx *callExpr) emit(gctx *generationContext) { argument
579 func (cx *callExpr) typ() starlarkType { argument
583 func (cx *callExpr) emitListVarCopy(gctx *generationContext) { argument
587 func (cx *callExpr) transform(transformer func(expr starlarkExpr) starlarkExpr) starlarkExpr { argument