HomeSort by relevance Sort by last modified time
    Searched refs:Whence (Results 1 - 11 of 11) sorted by null

  /art/compiler/
output_stream.h 27 enum Whence {
32 std::ostream& operator<<(std::ostream& os, const Whence& rhs);
46 virtual off_t Seek(off_t offset, Whence whence) = 0;
output_stream.cc 21 std::ostream& operator<<(std::ostream& os, const Whence& rhs) {
file_output_stream.h 34 virtual off_t Seek(off_t offset, Whence whence);
buffered_output_stream.h 37 virtual off_t Seek(off_t offset, Whence whence);
file_output_stream.cc 32 off_t FileOutputStream::Seek(off_t offset, Whence whence) {
33 return lseek(file_->Fd(), offset, static_cast<int>(whence));
vector_output_stream.cc 26 off_t VectorOutputStream::Seek(off_t offset, Whence whence) {
27 CHECK(whence == kSeekSet || whence == kSeekCurrent || whence == kSeekEnd) << whence;
29 switch (whence) {
buffered_output_stream.cc 52 off_t BufferedOutputStream::Seek(off_t offset, Whence whence) {
56 return out_->Seek(offset, whence);
vector_output_stream.h 48 off_t Seek(off_t offset, Whence whence);
  /external/llvm/tools/llvm-profdata/
llvm-profdata.cpp 32 static void exitWithError(const Twine &Message, StringRef Whence = "") {
34 if (!Whence.empty())
35 errs() << Whence << ": ";
  /external/llvm/tools/llvm-cov/
CodeCoverage.cpp 52 void error(const Twine &Message, StringRef Whence = "");
96 void CodeCoverageTool::error(const Twine &Message, StringRef Whence) {
98 if (!Whence.empty())
99 errs() << Whence << ": ";
  /external/clang/lib/StaticAnalyzer/Checkers/
StreamChecker.cpp 263 // Check the legality of the 'whence' argument of 'fseek'.
264 SVal Whence = state->getSVal(CE->getArg(2), C.getLocationContext());
265 Optional<nonloc::ConcreteInt> CI = Whence.getAs<nonloc::ConcreteInt>();
277 new BuiltinBug(this, "Illegal whence argument",
278 "The whence argument to fseek() should be "

Completed in 216 milliseconds