Home | History | Annotate | Download | only in Support

Lines Matching refs:_base

1284 #define LLVM_YAML_STRONG_TYPEDEF(_base, _type)                                 \
1287 _type(const _base v) : value(v) {} \
1290 _type &operator=(const _base &rhs) { value = rhs; return *this; } \
1291 operator const _base & () const { return value; } \
1293 bool operator==(const _base &rhs) const { return value == rhs; } \
1295 _base value; \
1296 typedef _base BaseType; \