reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
67 explicit operator bool() { return !Err; } 75 Error takeError() { return std::move(Err); } 181 return getUnsigned(&C.Offset, Size, &C.Err); 260 uint8_t getU8(Cursor &C) const { return getU8(&C.Offset, &C.Err); } 334 uint16_t getU16(Cursor &C) const { return getU16(&C.Offset, &C.Err); } 403 uint32_t getU32(Cursor &C) const { return getU32(&C.Offset, &C.Err); } 455 uint64_t getU64(Cursor &C) const { return getU64(&C.Offset, &C.Err); } 527 uint64_t getULEB128(Cursor &C) const { return getULEB128(&C.Offset, &C.Err); } 570 static Error &getError(Cursor &C) { return C.Err; }lib/Support/DataExtractor.cpp
84 Data.data(), &C.Err); 210 ErrorAsOutParameter ErrAsOut(&C.Err); 211 if (isError(&C.Err)) 217 unexpectedEndReached(&C.Err);