reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

unittests/Support/YAMLIOTest.cpp
  429     map.str = "one two";
  430     map.stdstr = "three four";
  431     map.u64 = 6000000000ULL;
  432     map.u32 = 3000000000U;
  433     map.u16 = 50000;
  434     map.u8  = 254;
  435     map.b   = true;
  436     map.s64 = -6000000000LL;
  437     map.s32 = -2000000000;
  438     map.s16 = -32000;
  439     map.s8  = -128;
  440     map.f   = 3.25;
  441     map.d   = -2.8625;
  442     map.h8  = 254;
  443     map.h16 = 50000;
  444     map.h32 = 3000000000U;
  445     map.h64 = 6000000000LL;
  449     yout << map;