Home | History | Annotate | Download | only in Support

Lines Matching refs:_base

1336 #define LLVM_YAML_STRONG_TYPEDEF(_base, _type)                                 \
1339 _type(const _base v) : value(v) {} \
1342 _type &operator=(const _base &rhs) { value = rhs; return *this; } \
1343 operator const _base & () const { return value; } \
1345 bool operator==(const _base &rhs) const { return value == rhs; } \
1347 _base value; \
1348 typedef _base BaseType; \