Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Index/
H A DIndexBody.cpp426 InitListExpr *SemaForm = S->isSemanticForm() ? S : S->getSemanticForm(); in TraverseInitListExpr()
427 InitListExpr *SyntaxForm = S->isSemanticForm() ? S->getSyntacticForm() : S; in TraverseInitListExpr()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DRecursiveASTVisitor.h612 if (auto Syn = ILE->isSemanticForm() ? ILE->getSyntacticForm() : ILE) \
614 if (auto Sem = ILE->isSemanticForm() ? ILE : ILE->getSemanticForm()) \
2293 S->isSemanticForm() ? S->getSyntacticForm() : S, Queue));
2295 S->isSemanticForm() ? S : S->getSemanticForm(), Queue));
H A DExpr.h4340 bool isSemanticForm() const { return AltForm.getInt(); } in isSemanticForm() function
4342 return isSemanticForm() ? nullptr : AltForm.getPointer(); in getSemanticForm()
4348 return isSemanticForm() ? AltForm.getPointer() : nullptr; in getSyntacticForm()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DExpr.cpp2060 assert(isSemanticForm() && "syntactic form never semantically transparent"); in isTransparent()