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

References

tools/clang/unittests/Format/FormatTest.cpp
 7247   Left.PointerAlignment = FormatStyle::PAS_Left;
 7248   verifyFormat("x = *a(x) = *a(y);", Left);
 7249   verifyFormat("for (;; *a = b) {\n}", Left);
 7250   verifyFormat("return *this += 1;", Left);
 7251   verifyFormat("throw *x;", Left);
 7252   verifyFormat("delete *x;", Left);
 7253   verifyFormat("typedef typeof(int(int, int))* MyFuncPtr;", Left);
 7254   verifyFormat("[](const decltype(*a)* ptr) {}", Left);
 7255   verifyFormat("typedef typeof /*comment*/ (int(int, int))* MyFuncPtr;", Left);