Home | History | Annotate | Download | only in android-base

Lines Matching refs:max

30 // that value. Optionally allows the caller to define a 'max' beyond which
35 T max = std::numeric_limits<T>::max()) {
43 if (max < result) {
53 T max = std::numeric_limits<T>::max()) {
54 return ParseUint(s.c_str(), out, max);
58 // that value. Optionally allows the caller to define a 'min' and 'max
64 T max = std::numeric_limits<T>::max()) {
72 if (result < min || max < result) {
83 T max = std::numeric_limits<T>::max()) {
84 return ParseInt(s.c_str(), out, min, max);