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

Declarations

tools/lldb/include/lldb/Utility/StringLexer.h
   32   std::pair<bool, Character> NextIf(std::initializer_list<Character> cs);

References

tools/lldb/include/lldb/DataFormatters/FormattersContainer.h
   57   while (type_lexer.NextIf({' ', '\t', '\v', '\f'}).first)
tools/lldb/unittests/Utility/StringLexerTest.cpp
  123   EXPECT_FALSE(l.NextIf({'\0', ' ', 'o'}).first);
  125   auto r = l.NextIf({'f'});
  129   EXPECT_FALSE(l.NextIf({'\0', ' ', 'f'}).first);
  131   r = l.NextIf({'f', 'o'});
  135   EXPECT_FALSE(l.NextIf({'\0', ' ', 'f'}).first);
  137   r = l.NextIf({'*', 'f', 'o', 'o'});