Lines Matching defs:Output
396 // Output
399 Output::Output(raw_ostream &yout, void *context, int WrapColumn)
412 Output::~Output() {
415 bool Output::outputting() {
419 void Output::beginMapping() {
424 bool Output::mapTag(StringRef Tag, bool Use) {
435 this->output(" ");
437 this->output(Tag);
453 void Output::endMapping() {
457 bool Output::preflightKey(const char *Key, bool Required, bool SameAsDefault,
473 void Output::postflightKey(void *) {
483 void Output::beginFlowMapping() {
487 output("{ ");
490 void Output::endFlowMapping() {
495 void Output::beginDocuments() {
499 bool Output::preflightDocument(unsigned index) {
505 void Output::postflightDocument() {
508 void Output::endDocuments() {
509 output("\n...\n");
512 unsigned Output::beginSequence() {
518 void Output::endSequence() {
522 bool Output::preflightElement(unsigned, void *&) {
526 void Output::postflightElement(void *) {
529 unsigned Output::beginFlowSequence() {
533 output("[ ");
538 void Output::endFlowSequence() {
543 bool Output::preflightFlowElement(unsigned, void *&) {
545 output(", ");
547 output("\n");
549 output(" ");
551 output(" ");
556 void Output::postflightFlowElement(void *) {
560 void Output::beginEnumScalar() {
564 bool Output::matchEnumScalar(const char *Str, bool Match) {
573 bool Output::matchEnumFallback() {
580 void Output::endEnumScalar() {
585 bool Output::beginBitSetScalar(bool &DoClear) {
587 output("[ ");
593 bool Output::bitSetMatch(const char *Str, bool Matches) {
596 output(", ");
597 this->output(Str);
603 void Output::endBitSetScalar() {
607 void Output::scalarString(StringRef &S, bool MustQuote) {
623 output("'"); // Starting single quote.
628 output(StringRef(&Base[i], j - i + 1));
629 output("'");
634 output(StringRef(&Base[i], j - i));
638 void Output::blockScalarString(StringRef &S) {
641 output(" |");
649 output(" ");
651 output(*Lines);
656 void Output::setError(const Twine &message) {
659 bool Output::canElideEmptySequence() {
672 void Output::output(StringRef s) {
677 void Output::outputUpToEndOfLine(StringRef s) {
678 this->output(s);
685 void Output::outputNewLine() {
694 void Output::newLineCheck() {
716 output(" ");
719 output("- ");
724 void Output::paddedKey(StringRef key) {
725 output(key);
726 output(":");
729 output(&spaces[key.size()]);
731 output(" ");
734 void Output::flowKey(StringRef Key) {
736 output(", ");
738 output("\n");
740 output(" ");
742 output(" ");
744 output(Key);
745 output(": ");
752 void ScalarTraits<bool>::output(const bool &Val, void *, raw_ostream &Out) {
767 void ScalarTraits<StringRef>::output(const StringRef &Val, void *,
778 void ScalarTraits<std::string>::output(const std::string &Val, void *,
789 void ScalarTraits<uint8_t>::output(const uint8_t &Val, void *,
806 void ScalarTraits<uint16_t>::output(const uint16_t &Val, void *,
822 void ScalarTraits<uint32_t>::output(const uint32_t &Val, void *,
838 void ScalarTraits<uint64_t>::output(const uint64_t &Val, void *,
852 void ScalarTraits<int8_t>::output(const int8_t &Val, void *, raw_ostream &Out) {
868 void ScalarTraits<int16_t>::output(const int16_t &Val, void *,
883 void ScalarTraits<int32_t>::output(const int32_t &Val, void *,
898 void ScalarTraits<int64_t>::output(const int64_t &Val, void *,
911 void ScalarTraits<double>::output(const double &Val, void *, raw_ostream &Out) {
924 void ScalarTraits<float>::output(const float &Val, void *, raw_ostream &Out) {
937 void ScalarTraits<Hex8>::output(const Hex8 &Val, void *, raw_ostream &Out) {
952 void ScalarTraits<Hex16>::output(const Hex16 &Val, void *, raw_ostream &Out) {
967 void ScalarTraits<Hex32>::output(const Hex32 &Val, void *, raw_ostream &Out) {
982 void ScalarTraits<Hex64>::output(const Hex64 &Val, void *, raw_ostream &Out) {