OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ValueUnsafe
(Results
1 - 8
of
8
) sorted by null
/external/libchrome/base/numerics/
safe_math.h
55
: state_(rhs.
ValueUnsafe
(), rhs.validity()) {}
99
return CheckedNumeric<T>::cast(*this).
ValueUnsafe
();
111
//
ValueUnsafe
() - DO NOT USE THIS IN EXTERNAL CODE - It is public right now
118
T
ValueUnsafe
() const { return state_.value(); }
228
return CheckedNumeric<T>(lhs.
ValueUnsafe
() OP rhs.
ValueUnsafe
()); \
231
lhs.
ValueUnsafe
() OP rhs.
ValueUnsafe
(), \
235
static_cast<Promotion>(lhs.
ValueUnsafe
()), \
236
static_cast<Promotion>(rhs.
ValueUnsafe
()), \
[
all
...]
safe_numerics_unittest.cc
68
<< "Result test: Value " << +(actual).
ValueUnsafe
() << " as " << dst \
73
CheckedNumeric<Dst>(actual).
ValueUnsafe
()) \
74
<< "Result test: Value " << +((actual).
ValueUnsafe
()) << " as " << dst \
[
all
...]
/external/libweave/third_party/chromium/base/numerics/
safe_math.h
55
: state_(rhs.
ValueUnsafe
(), rhs.validity()) {}
99
return CheckedNumeric<T>::cast(*this).
ValueUnsafe
();
111
//
ValueUnsafe
() - DO NOT USE THIS IN EXTERNAL CODE - It is public right now
118
T
ValueUnsafe
() const { return state_.value(); }
228
return CheckedNumeric<T>(lhs.
ValueUnsafe
() OP rhs.
ValueUnsafe
()); \
231
lhs.
ValueUnsafe
() OP rhs.
ValueUnsafe
(), \
235
static_cast<Promotion>(lhs.
ValueUnsafe
()), \
236
static_cast<Promotion>(rhs.
ValueUnsafe
()), \
[
all
...]
safe_numerics_unittest.cc
64
<< "Result test: Value " << +(actual).
ValueUnsafe
() << " as " << dst \
69
CheckedNumeric<Dst>(actual).
ValueUnsafe
()) \
70
<< "Result test: Value " << +((actual).
ValueUnsafe
()) << " as " << dst \
[
all
...]
/external/pdfium/third_party/base/numerics/
safe_math.h
54
: state_(rhs.
ValueUnsafe
(), rhs.validity()) {}
91
return CheckedNumeric<T>::cast(*this).
ValueUnsafe
();
103
//
ValueUnsafe
() - DO NOT USE THIS IN EXTERNAL CODE - It is public right now
110
T
ValueUnsafe
() const { return state_.value(); }
202
return CheckedNumeric<T>(lhs.
ValueUnsafe
() OP rhs.
ValueUnsafe
()); \
205
lhs.
ValueUnsafe
() OP rhs.
ValueUnsafe
(), \
208
T result = Checked##NAME(static_cast<Promotion>(lhs.
ValueUnsafe
()), \
209
static_cast<Promotion>(rhs.
ValueUnsafe
()), \
[
all
...]
/external/v8/src/base/
safe_math.h
57
: state_(rhs.
ValueUnsafe
(), rhs.validity()) {}
95
return CheckedNumeric<T>::cast(*this).
ValueUnsafe
();
107
//
ValueUnsafe
() - DO NOT USE THIS IN EXTERNAL CODE - It is public right now
114
T
ValueUnsafe
() const { return state_.value(); }
206
return CheckedNumeric<T>(lhs.
ValueUnsafe
() OP rhs.
ValueUnsafe
()); \
209
lhs.
ValueUnsafe
() OP rhs.
ValueUnsafe
(), \
212
T result = Checked##NAME(static_cast<Promotion>(lhs.
ValueUnsafe
()), \
213
static_cast<Promotion>(rhs.
ValueUnsafe
()), \
[
all
...]
/external/libchrome/base/time/
time.cc
118
return value.
ValueUnsafe
();
/external/libweave/third_party/chromium/base/time/
time.cc
115
return value.
ValueUnsafe
();
Completed in 699 milliseconds