Lines Matching refs:value_printed

87   bool value_printed = false;  in PrintValueObject()  local
91 PrintValueAndSummaryIfNeeded(value_printed, summary_printed); in PrintValueObject()
94 return PrintChildrenIfNeeded(value_printed, summary_printed); in PrintValueObject()
413 bool ValueObjectPrinter::PrintValueAndSummaryIfNeeded(bool &value_printed, in PrintValueAndSummaryIfNeeded() argument
456 value_printed = true; in PrintValueAndSummaryIfNeeded()
461 if (ShouldShowName() || value_printed) in PrintValueAndSummaryIfNeeded()
472 ValueObjectPrinter::PrintObjectDescriptionIfNeeded(bool value_printed, in PrintObjectDescriptionIfNeeded() argument
481 (value_printed || summary_printed) in PrintObjectDescriptionIfNeeded()
486 if (!value_printed && !summary_printed) in PrintObjectDescriptionIfNeeded()
585 void ValueObjectPrinter::PrintChildrenPreamble(bool value_printed, in PrintChildrenPreamble() argument
594 } else if (value_printed || summary_printed || ShouldShowName()) { in PrintChildrenPreamble()
680 bool ValueObjectPrinter::ShouldPrintEmptyBrackets(bool value_printed, in ShouldPrintEmptyBrackets() argument
688 if (value_printed || summary_printed) in ShouldPrintEmptyBrackets()
722 bool value_printed, bool summary_printed, in PrintChildren() argument
742 PrintChildrenPreamble(value_printed, summary_printed); in PrintChildren()
752 if (ShouldPrintEmptyBrackets(value_printed, summary_printed)) { in PrintChildren()
760 } else if (ShouldPrintEmptyBrackets(value_printed, summary_printed)) { in PrintChildren()
826 llvm::Error ValueObjectPrinter::PrintChildrenIfNeeded(bool value_printed, in PrintChildrenIfNeeded() argument
828 auto error = PrintObjectDescriptionIfNeeded(value_printed, summary_printed); in PrintChildrenIfNeeded()
860 PrintChildren(value_printed, summary_printed, curr_ptr_depth); in PrintChildrenIfNeeded()