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

Declarations

tools/lldb/include/lldb/Utility/StringLexer.h
   30   bool NextIf(Character c);

References

tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTypeEncodingParser.cpp
   70   if (type.NextIf('"'))
   72   if (!type.NextIf('"'))
   95   if (!type.NextIf(opener))
  105   if (!type.NextIf('='))
  110     if (type.NextIf(closer)) {
  156   if (!type.NextIf('['))
  160   if (!type.NextIf(']'))
  179   if (!type.NextIf('@'))
  184   if (type.NextIf('"')) {
  343     if (!for_expression && type.NextIf('?')) {
tools/lldb/source/Utility/StringLexer.cpp
   45     if (!NextIf(c)) {
tools/lldb/unittests/Utility/StringLexerTest.cpp
  101   EXPECT_FALSE(l.NextIf('\0'));
  102   EXPECT_FALSE(l.NextIf(' '));
  103   EXPECT_FALSE(l.NextIf('o'));
  105   EXPECT_TRUE(l.NextIf('f'));
  107   EXPECT_FALSE(l.NextIf('\0'));
  108   EXPECT_FALSE(l.NextIf(' '));
  109   EXPECT_FALSE(l.NextIf('f'));
  111   EXPECT_TRUE(l.NextIf('o'));
  113   EXPECT_FALSE(l.NextIf('\0'));
  114   EXPECT_FALSE(l.NextIf(' '));
  115   EXPECT_FALSE(l.NextIf('f'));
  117   EXPECT_TRUE(l.NextIf('o'));