Lines Matching refs:value
256 func (attr *LabelAttribute) SetValueForArch(arch string, value Label) {
259 attr.Arm = value
261 attr.Arm64 = value
263 attr.X86 = value
265 attr.X86_64 = value
316 func MakeLabelListAttribute(value LabelList) LabelListAttribute {
317 return LabelListAttribute{Value: UniqueBazelLabelList(value)}
377 func (attrs *LabelListAttribute) SetValueForArch(arch string, value LabelList) {
382 *v = value
407 func (attrs *LabelListAttribute) SetValueForOS(os string, value LabelList) {
412 *v = value
433 func MakeStringListAttribute(value []string) StringListAttribute {
435 return StringListAttribute{Value: value}
498 func (attrs *StringListAttribute) SetValueForArch(arch string, value []string) {
503 *v = value
528 func (attrs *StringListAttribute) SetValueForOS(os string, value []string) {
533 *v = value