Home
last modified time | relevance | path

Searched refs:tmpval (Results 1 – 5 of 5) sorted by relevance

/build/kati/
Dexpr.go68 type tmpval []byte type
70 func (t tmpval) String() string { return string(t) }
71 func (t tmpval) Eval(w evalWriter, ev *Evaluator) error {
75 func (t tmpval) Value() []byte { return []byte(t) }
76 func (t tmpval) serialize() serializableVar {
79 func (t tmpval) dump(d *dumpbuf) {
291 return tmpval(buf)
306 case tmpval:
316 case literal, tmpval:
485 case literal, tmpval:
[all …]
Dfunc.go576 te := traceEvent.begin("wildcard", tmpval(wb.Bytes()), traceEventMain)
940 te := traceEvent.begin("shell", tmpval(abuf.Bytes()), traceEventMain)
1043 args := make([]tmpval, arglen)
1045 args[0] = tmpval(varname)
1052 args[i+1] = tmpval(arg)
1133 case literal, tmpval:
1139 case literal, tmpval:
1264 rvalue = &recursiveVar{expr: tmpval(rhs), origin: "file"}
1273 rvalue = &recursiveVar{expr: tmpval(rhs), origin: "file"}
1280 rvalue = &recursiveVar{expr: tmpval(rhs), origin: "file"}
Deval.go153 paramVars []tmpval // $1 => paramVars[1]
226 case tmpval:
280 case literal, tmpval:
285 v = tmpval(trimRightSpaceBytes([]byte(s[:i])))
301 rhs = append(rhs, tmpval(trimLeftSpaceBytes(b[eq+1:])))
Dast.go54 case tmpval:
Dserialize.go386 return tmpval([]byte(sv.V)), nil