Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/Index/
H A DIndexBody.cpp424 InitListExpr *SemaForm = S->isSemanticForm() ? S : S->getSemanticForm(); in TraverseInitListExpr()
425 InitListExpr *SyntaxForm = S->isSemanticForm() ? S->getSyntacticForm() : S; in TraverseInitListExpr()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DRecursiveASTVisitor.h561 if (auto Syn = ILE->isSemanticForm() ? ILE->getSyntacticForm() : ILE) \
563 if (auto Sem = ILE->isSemanticForm() ? ILE : ILE->getSemanticForm()) \
2419 if (S->isSemanticForm() && S->isSyntacticForm()) {
2425 S->isSemanticForm() ? S->getSyntacticForm() : S, Queue));
2430 S->isSemanticForm() ? S : S->getSemanticForm(), Queue));
H A DExpr.h4848 assert(isSemanticForm()); in markError()
4933 bool isSemanticForm() const { return AltForm.getInt(); } in isSemanticForm() function
4935 return isSemanticForm() ? nullptr : AltForm.getPointer(); in getSemanticForm()
4941 return isSemanticForm() ? AltForm.getPointer() : nullptr; in getSyntacticForm()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp2316 assert(isSemanticForm() && "syntactic form never semantically transparent"); in isTransparent()
3223 assert(ILE->isSemanticForm() && "InitListExpr must be in semantic form"); in isConstantInitializer()