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

References

tools/clang/unittests/Tooling/LexicallyOrderedRecursiveASTVisitorTest.cpp
  132   Visitor.DisallowMatch("/nestedFunction/", 6, 1);
  133   Visitor.ExpectMatch("/I/nestedFunction/", 6, 1);
  134   Visitor.ExpectMatch("/I/method/", 8, 1);
  135   Visitor.DisallowMatch("/anotherNestedFunction/", 10, 1);
  136   Visitor.ExpectMatch("/I/anotherNestedFunction/", 10, 1);
  137   Visitor.DisallowMatch("/innerVariable", 14, 1);
  138   Visitor.ExpectMatch("/I/innerVariable", 14, 1);
  139   Visitor.ExpectMatch("/outerVariable", 18, 1);
  140   Visitor.DisallowMatch("/catF/", 22, 1);
  141   Visitor.ExpectMatch("/Cat/catF/", 22, 1);
  142   Visitor.ExpectMatch("/outerFunction/", 26, 1);
  143   EXPECT_TRUE(Visitor.runOver(Source, DummyMatchVisitor::Lang_OBJC));