Searched defs:DecomposeType (Results 1 – 1 of 1) sorted by relevance
653 struct DecomposeType { struct654 DecomposeType(int i = 0) : i(i) { // NOLINT in DecomposeType() function658 explicit DecomposeType(const char* d) : DecomposeType(*d) {} in DecomposeType() function660 DecomposeType(const DecomposeType& other) : i(other.i) { in DecomposeType() function663 DecomposeType& operator=(const DecomposeType& other) { in operator =()668 DecomposeType(DecomposeType&& other) : i(other.i) { in DecomposeType() argument671 DecomposeType& operator=(DecomposeType&& other) { in operator =()677 int i;