Lines Matching refs:value
15 value := reflect.ValueOf(list.Value)
17 return value, nil, nil
30 return value, archSelects, osSelects
34 var value reflect.Value
43 value = reflect.ValueOf(label.Value)
46 return value, archSelects, nil
50 value := reflect.ValueOf(list.Value.Includes)
52 return value, nil, nil
65 return value, archSelects, osSelects
71 var value reflect.Value
76 value, archSelects, osSelects = getStringListValues(list)
79 value, archSelects, osSelects = getLabelListValues(list)
82 value, archSelects, osSelects = getLabelValue(list)
89 if value.Kind() != reflect.Invalid {
90 s, err := prettyPrint(value, indent)
136 value := selectMap[selectKey]
137 if isZero(value) {
141 s, err := prettyPrintSelectEntry(value, selectKey, indent)
184 func prettyPrintSelectEntry(value reflect.Value, key string, indent int) (string, error) {
186 v, err := prettyPrint(value, indent+1)