Home
last modified time | relevance | path

Searched defs:DecomposeType (Results 1 – 2 of 2) sorted by relevance

/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
Draw_hash_set_test.cc653 struct DecomposeType { struct
654 DecomposeType(int i = 0) : i(i) { // NOLINT in DecomposeType() function
658 explicit DecomposeType(const char* d) : DecomposeType(*d) {} in DecomposeType() argument
660 DecomposeType(const DecomposeType& other) : i(other.i) { in DecomposeType() argument
663 DecomposeType& operator=(const DecomposeType& other) { in operator =()
668 DecomposeType(DecomposeType&& other) : i(other.i) { in DecomposeType() argument
671 DecomposeType& operator=(DecomposeType&& other) { in operator =()
677 int i;
/third_party/abseil-cpp/absl/container/internal/
Draw_hash_set_test.cc548 struct DecomposeType { struct
549 DecomposeType(int i) : i(i) { // NOLINT in DecomposeType() function
553 explicit DecomposeType(const char* d) : DecomposeType(*d) {} in DecomposeType() function
555 int i;