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

References

tools/lldb/source/DataFormatters/StringPrinter.cpp
   37   if (codepoint <= 0x1F || codepoint == 0x7F) // C0
   37   if (codepoint <= 0x1F || codepoint == 0x7F) // C0
   41   if (codepoint >= 0x80 && codepoint <= 0x9F) // C1
   41   if (codepoint >= 0x80 && codepoint <= 0x9F) // C1
   45   if (codepoint == 0x2028 || codepoint == 0x2029) // line/paragraph separators
   45   if (codepoint == 0x2028 || codepoint == 0x2029) // line/paragraph separators
   49   if (codepoint == 0x200E || codepoint == 0x200F ||
   49   if (codepoint == 0x200E || codepoint == 0x200F ||
   50       (codepoint >= 0x202A &&
   51        codepoint <= 0x202E)) // bidirectional text control
   55   if (codepoint >= 0xFFF9 &&
   56       codepoint <= 0xFFFF) // interlinears and generally specials