HomeSort by relevance Sort by last modified time
    Searched defs:strict_cast (Results 1 - 2 of 2) sorted by null

  /external/libchrome/base/numerics/
safe_conversions.h 101 // strict_cast<> is analogous to static_cast<> for numeric types, except that
105 inline Dst strict_cast(Src value) { function in namespace:base
123 // wrapping assignment operations in a strict_cast. This class is intended to be
142 : value_(strict_cast<T>(rhs.value_)) {}
148 : value_(strict_cast<T>(value)) {}
153 return strict_cast<Dst>(value_);
  /external/libweave/third_party/chromium/base/numerics/
safe_conversions.h 101 // strict_cast<> is analogous to static_cast<> for numeric types, except that
105 inline Dst strict_cast(Src value) { function in namespace:base
123 // wrapping assignment operations in a strict_cast. This class is intended to be
142 : value_(strict_cast<T>(rhs.value_)) {}
148 : value_(strict_cast<T>(value)) {}
153 return strict_cast<Dst>(value_);

Completed in 502 milliseconds