Lines Matching refs:s
35 if s, ok := value.(*parser.Bool); ok {
36 return s.Value, true
37 } else if s, ok := value.(*parser.String); ok {
38 return s.Value, true
39 } else if s, ok := value.(*parser.Int64); ok {
40 return s.Value, true
52 if s, isScalar := expandScalarTypeExpression(value); isScalar {
53 propMap[name] = s
57 if s, isScalar := expandScalarTypeExpression(v.Eval()); isScalar {
58 l = append(l, s)
112 func quoteBashString(s string) string {
113 return strings.ReplaceAll(s, "$", "\\$")
141 for _, s := range vl {
142 list = append(list, fmt.Sprintf("%v", s))