Home
last modified time | relevance | path

Searched refs:errors_ (Results 1 – 3 of 3) sorted by relevance

/aosp12/art/compiler/optimizing/
H A Dgraph_checker.h38 errors_(graph->GetAllocator()->Adapter(kArenaAllocGraphChecker)),
90 return errors_.empty(); in IsValid()
95 return errors_; in GetErrors()
100 for (size_t i = 0, e = errors_.size(); i < e; ++i) { in Dump()
101 os << dump_prefix_ << errors_[i] << std::endl; in Dump()
117 errors_.push_back(error); in AddError()
123 ArenaVector<std::string> errors_; variable
/aosp12/frameworks/native/vulkan/vkjson/
H A Dvkjson.cc1156 : object_(object), errors_(errors) {} in JsonReaderVisitor()
1159 return ReadValue(object_, key, value, errors_); in Visit()
1168 if (errors_) in VisitArray()
1169 *errors_ = std::string(key) + " missing."; in VisitArray()
1173 if (errors_) in VisitArray()
1174 *errors_ = std::string("Wrong type for ") + std::string(key) + "."; in VisitArray()
1181 std::string* errors_; member in __anonb8ef81ea0110::JsonReaderVisitor
/aosp12/art/runtime/hprof/
H A Dhprof.cc394 : EndianOutputBuffered(reserved_size), fp_(fp), errors_(false) { in FileEndianOutput()
401 return errors_; in Errors()
406 if (!errors_) { in HandleFlush()
407 errors_ = !fp_->WriteFully(buffer, length); in HandleFlush()
413 bool errors_; member in art::hprof::FileEndianOutput