OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:strict_cast
(Results
1 - 3
of
3
) sorted by null
/external/libchrome/base/numerics/
safe_conversions.h
29
//
strict_cast
<> - Analogous to static_cast<> for numeric types, except that
43
// the
strict_cast
<> template, and can perform valid arithmetic comparisons
137
//
strict_cast
<> is analogous to static_cast<> for numeric types, except that
141
constexpr Dst
strict_cast
(Src value) {
function in namespace:base::internal
155
"Please see
strict_cast
<> comments for more information.");
177
// wrapping assignment operations in a
strict_cast
. This class is intended to be
196
: value_(
strict_cast
<T>(rhs.value_)) {}
202
: value_(
strict_cast
<T>(value)) {}
260
using internal::
strict_cast
;
safe_numerics_unittest.cc
45
using base::
strict_cast
;
[
all
...]
/external/pdfium/third_party/base/numerics/
safe_conversions.h
30
//
strict_cast
<> - Analogous to static_cast<> for numeric types, except that
44
// the
strict_cast
<> template, and can perform valid arithmetic comparisons
136
//
strict_cast
<> is analogous to static_cast<> for numeric types, except that
140
constexpr Dst
strict_cast
(Src value) {
function in namespace:pdfium::base::internal
154
"Please see
strict_cast
<> comments for more information.");
176
// wrapping assignment operations in a
strict_cast
. This class is intended to be
195
: value_(
strict_cast
<T>(rhs.value_)) {}
201
: value_(
strict_cast
<T>(value)) {}
259
using internal::
strict_cast
;
Completed in 251 milliseconds