Lines Matching refs:bind_value
37 ValueType *bind_value; member
40 attr_value_binder(ValueType *bv) : bind_value(bv) {} in attr_value_binder()
44 *bind_value = intAttr.getValue(); in match()
59 AttrT *bind_value; member
63 constant_op_binder(AttrT *bind_value) : bind_value(bind_value) {} in constant_op_binder()
65 constant_op_binder() : bind_value(nullptr) {} in constant_op_binder()
78 if (bind_value) in match()
79 *bind_value = attr; in match()
89 IntegerAttr::ValueType *bind_value; member
92 constant_int_op_binder(IntegerAttr::ValueType *bv) : bind_value(bv) {} in constant_int_op_binder()
101 return attr_value_binder<IntegerAttr>(bind_value).match(attr); in match()
104 return attr_value_binder<IntegerAttr>(bind_value) in match()
217 inline detail::constant_op_binder<AttrT> m_Constant(AttrT *bind_value) { in m_Constant() argument
218 return detail::constant_op_binder<AttrT>(bind_value); in m_Constant()
260 m_ConstantInt(IntegerAttr::ValueType *bind_value) { in m_ConstantInt() argument
261 return detail::constant_int_op_binder(bind_value); in m_ConstantInt()