Home
last modified time | relevance | path

Searched refs:isSemanticForm (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Index/
H A DIndexBody.cpp450 InitListExpr *SemaForm = S->isSemanticForm() ? S : S->getSemanticForm(); in TraverseInitListExpr()
451 InitListExpr *SyntaxForm = S->isSemanticForm() ? S->getSyntacticForm() : S; in TraverseInitListExpr()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DRecursiveASTVisitor.h643 if (auto Syn = ILE->isSemanticForm() ? ILE->getSyntacticForm() : ILE) \
645 if (auto Sem = ILE->isSemanticForm() ? ILE : ILE->getSemanticForm()) \
2636 if (S->isSemanticForm() && S->isSyntacticForm()) {
2642 S->isSemanticForm() ? S->getSyntacticForm() : S, Queue));
2647 S->isSemanticForm() ? S : S->getSemanticForm(), Queue));
H A DExpr.h5302 assert(isSemanticForm()); in markError()
5393 bool isSemanticForm() const { return AltForm.getInt(); } in isSemanticForm() function
5395 return isSemanticForm() ? nullptr : AltForm.getPointer(); in getSemanticForm()
5401 return isSemanticForm() ? AltForm.getPointer() : nullptr; in getSyntacticForm()
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DTransfer.cpp749 if (S->isSemanticForm() && S->isTransparent()) in VisitInitListExpr()
H A DDataflowEnvironment.cpp432 if (!InitList->isSemanticForm()) in PropagateResultObject()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp2461 assert(isSemanticForm() && "syntactic form never semantically transparent"); in isTransparent()
3395 assert(ILE->isSemanticForm() && "InitListExpr must be in semantic form"); in isConstantInitializer()