/art/runtime/entrypoints/quick/ |
quick_instrumentation_entrypoints.cc | 56 << self->GetException()->Dump();
|
/art/runtime/gc/ |
reference_queue.h | 85 void Dump(std::ostream& os) const SHARED_REQUIRES(Locks::mutator_lock_);
|
/art/runtime/mirror/ |
throwable.h | 40 std::string Dump() SHARED_REQUIRES(Locks::mutator_lock_);
|
throwable.cc | 84 std::string Throwable::Dump() { 147 result += cause->Dump();
|
/external/clang/unittests/AST/ |
MatchVerifier.h | 240 /// \brief Verify whether a node's dump contains a given substring. 251 llvm::raw_string_ostream Dump(DumpStr); 252 Node.dump(Dump, *Result.SourceManager); 254 if (Dump.str().find(ExpectSubstring) == std::string::npos) { 257 Msg << "Expected dump substring <" << ExpectSubstring << ">, found <" 258 << Dump.str() << '>';
|
/external/dng_sdk/source/ |
dng_lens_correction.h | 214 virtual void Dump () const; 340 virtual void Dump () const; 446 virtual void Dump () const; 567 void Dump () const;
|
/external/regex-re2/re2/testing/ |
required_prefix_test.cc | 52 << " " << t.regexp << " " << (j==0 ? "latin1" : "utf") << " " << re->Dump();
|
simplify_test.cc | 160 << " " << tests[i].regexp << " " << sre->Dump();
|
compile_test.cc | 13 DEFINE_string(show, "", "regular expression to compile and dump"); 122 string s = prog->Dump();
|
parse_test.cc | 5 // Test parse.cc, dump.cc, and tostring.cc. 213 string s = re[i]->Dump(); 390 string s = re->Dump(); 405 string ss = nre->Dump();
|
/hardware/intel/img/hwcomposer/merrifield/include/ |
PhysicalDevice.h | 83 virtual void dump(Dump& d);
|
/hardware/intel/img/hwcomposer/moorefield_hdmi/include/ |
PhysicalDevice.h | 71 virtual void dump(Dump& d);
|
/system/update_engine/payload_generator/ |
extent_ranges.h | 70 void Dump() const;
|
/external/clang/lib/Frontend/ |
ASTConsumers.cpp | 38 ASTPrinter(raw_ostream *Out = nullptr, bool Dump = false, 40 : Out(Out ? *Out : llvm::outs()), Dump(Dump), 59 Out << ((Dump || DumpLookups) ? "Dumping " : "Printing ") << getName(D) 84 DC->dumpLookups(Out, Dump); 90 } else if (Dump) 91 D->dump(Out); 97 bool Dump; 127 return llvm::make_unique<ASTPrinter>(Out, /*Dump=*/false, FilterString); 133 assert((DumpDecls || DumpLookups) && "nothing to dump"); [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/i18n/ |
messages.properties | 28 DeviceView_Dump_HPROF_File=Dump HPROF file 29 DeviceView_Dump_HPROF_File_Not_Supported_By_VM=Dump HPROF file (not supported by this VM) 30 DeviceView_Dump_HPROF_File_Tooltip=Dump HPROF file
|
/external/skia/tests/ |
PathOpsDebug.cpp | 53 void SkDConic::dump() const { function in class:SkDConic 69 void SkDCubic::dump() const { function in class:SkDCubic 91 fPts[index].dump(); 97 fPts[index].dump(); 123 void SkDLine::dump() const { function in class:SkDLine 135 fPts[0].dump(); 137 fPts[1].dump(); 140 void SkDPoint::dump() const { function in class:SkDPoint 148 void SkDPoint::Dump(const SkPoint& pt) { 164 void SkDQuad::dump() const function in class:SkDQuad 184 void SkIntersections::dump() const { function in class:SkIntersections 811 void SkOpAngle::dump() const { function in class:SkOpAngle 940 void SkOpPtT::dump() const { function in class:SkOpPtT 991 void SkOpSpanBase::dump() const { function in class:SkOpSpanBase 1088 void SkOpSegment::dump() const { function in class:SkOpSegment 1160 void SkCoincidentSpans::dump() const { function in class:SkCoincidentSpans 1187 void SkOpCoincidence::dump() const { function in class:SkOpCoincidence 1208 void SkOpContour::dump() const { function in class:SkOpContour 1306 void SkOpCurve::dump() const { function in class:SkOpCurve [all...] |
/art/runtime/base/ |
timing_logger.h | 38 void Dump(std::ostream& os) const REQUIRES(!lock_); 104 // Extra data that is only calculated when you call dump to prevent excess allocation. 153 void Dump(std::ostream& os, const char* indent_string = " ") const;
|
arena_allocator.cc | 117 void ArenaAllocatorStatsImpl<kCount>::Dump(std::ostream& os, const Arena* first, 399 void MemStats::Dump(std::ostream& os) const { 401 stats_->Dump(os, first_arena_, lost_bytes_adjustment_); 404 // Dump memory usage stats.
|
arena_allocator.h | 113 void Dump(std::ostream& os ATTRIBUTE_UNUSED, 129 void Dump(std::ostream& os, const Arena* first, ssize_t lost_bytes_adjustment) const; 391 void Dump(std::ostream& os) const;
|
/art/runtime/gc/space/ |
space.cc | 32 void Space::Dump(std::ostream& os) const { 37 space.Dump(os);
|
zygote_space.h | 38 void Dump(std::ostream& os) const;
|
/external/drm_hwcomposer/ |
drmdisplaycompositor.h | 74 void Dump(std::ostringstream *out) const; 95 void Dump(std::ostringstream *out) const; 184 // State tracking progress since our last Dump(). These are mutable since 185 // we need to reset them on every Dump() call.
|
/system/update_engine/payload_consumer/ |
install_plan.h | 47 void Dump() const;
|
/art/runtime/ |
reference_table.cc | 113 void ReferenceTable::Dump(std::ostream& os) { 114 os << name_ << " reference table dump:\n"; 115 Dump(os, entries_); 118 void ReferenceTable::Dump(std::ostream& os, Table& entries) { 125 // These GC roots are already forwarded in ReferenceTable::Dump. We sort by class since there 156 // Dump the most recent N entries. 211 // Dump a summary of the whole table.
|
/external/regex-re2/re2/ |
prog.cc | 59 string Prog::Inst::Dump() { 140 StringAppendF(&s, "%d. %s\n", id, ip->Dump().c_str()); 148 string Prog::Dump() {
|