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

  /external/protobuf/src/google/protobuf/stubs/
statusor.h 45 // float answer = result.ValueOrDie();
55 // std::unique_ptr<Foo> foo(result.ValueOrDie());
105 // this constructor, calls to ValueOrDie() will CHECK-fail.
118 // ValueOrDie() will succeed, and calls to status() will return OK.
153 const T& ValueOrDie() const;
249 inline const T& StatusOr<T>::ValueOrDie() const {
  /external/v8/src/base/
safe_math.h 26 // ValueOrDie() - Returns the underlying value. If the state is not valid this
45 // if (checked_size.IsValid() && checked_size.ValueOrDie() < buffer_size)
75 // ValueOrDie() The primary accessor for the underlying value. If the current
77 T ValueOrDie() const {
  /external/libchrome/base/numerics/
safe_math.h 29 // ValueOrDie() - Returns the underlying value. If the state is not valid this
47 // if (checked_size.IsValid() && checked_size.ValueOrDie() < buffer_size)
87 // ValueOrDie() The primary accessor for the underlying value. If the current
89 T ValueOrDie() const {
  /external/pdfium/third_party/base/numerics/
safe_math.h 68 // ValueOrDie() - Returns the underlying value. If the state is not valid this
76 // ValueOrDieForType<>() in place of: a.template ValueOrDie()
92 // if (checked_size.IsValid() && checked_size.ValueOrDie() < buffer_size)
146 // ValueOrDie() - The primary accessor for the underlying value. If the
155 constexpr StrictNumeric<Dst> ValueOrDie() const {
359 return value.template ValueOrDie<Dst>();
475 .template ValueOrDie<uintptr_t>();
483 .template ValueOrDie<uintptr_t>();

Completed in 99 milliseconds