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

References

tools/clang/include/clang/AST/Expr.h
 4529     return isSemanticForm() ? nullptr : AltForm.getPointer();
 4535     return isSemanticForm() ? AltForm.getPointer() : nullptr;
tools/clang/include/clang/AST/RecursiveASTVisitor.h
 2333   if (S->isSemanticForm() && S->isSyntacticForm()) {
 2339       S->isSemanticForm() ? S->getSyntacticForm() : S, Queue));
 2344         S->isSemanticForm() ? S : S->getSemanticForm(), Queue));
tools/clang/lib/AST/Expr.cpp
 2287   assert(isSemanticForm() && "syntactic form never semantically transparent");
 3196     assert(ILE->isSemanticForm() && "InitListExpr must be in semantic form");
tools/clang/lib/Index/IndexBody.cpp
  425     InitListExpr *SemaForm = S->isSemanticForm() ? S : S->getSemanticForm();
  426     InitListExpr *SyntaxForm = S->isSemanticForm() ? S->getSyntacticForm() : S;
tools/clang/tools/extra/clang-tidy/modernize/UseNullptrCheck.cpp
  146             S->isSemanticForm() ? S : S->getSemanticForm());
tools/clang/unittests/Tooling/RecursiveASTVisitorTests/InitListExprPostOrder.cpp
   21     Match(ILE->isSemanticForm() ? "semantic" : "syntactic", ILE->getBeginLoc());
tools/clang/unittests/Tooling/RecursiveASTVisitorTests/InitListExprPostOrderNoQueue.cpp
   25     Match(ILE->isSemanticForm() ? "semantic" : "syntactic", ILE->getBeginLoc());
tools/clang/unittests/Tooling/RecursiveASTVisitorTests/InitListExprPreOrder.cpp
   26     Match(ILE->isSemanticForm() ? "semantic" : "syntactic", ILE->getBeginLoc());
tools/clang/unittests/Tooling/RecursiveASTVisitorTests/InitListExprPreOrderNoQueue.cpp
   23     Match(ILE->isSemanticForm() ? "semantic" : "syntactic", ILE->getBeginLoc());