Searched defs:DecomposeType (Results 1 – 2 of 2) 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() argument660 DecomposeType(const DecomposeType& other) : i(other.i) { in DecomposeType() argument663 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;
548 struct DecomposeType { struct549 DecomposeType(int i) : i(i) { // NOLINT in DecomposeType() function553 explicit DecomposeType(const char* d) : DecomposeType(*d) {} in DecomposeType() function555 int i;