HomeSort by: relevance | last modified time | path
    Searched refs:Syntactic (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
DependenceFlags.h 132 Syntactic = UnexpandedPack | Instantiation | Error,
171 /// Extract only the syntactic portions of this type's dependence.
172 Dependence syntactic() {
174 Result.V &= Syntactic;
270 return Dependence(D).syntactic().type();
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
CallEvent.cpp 1022 const Expr *Syntactic = POE->getSyntacticForm();
1026 if (const auto *BO = dyn_cast<BinaryOperator>(Syntactic))
1027 Syntactic = BO->getLHS();
1029 return Syntactic;
1040 const Expr *Syntactic = getSyntacticFromForPseudoObjectExpr(POE);
1043 switch (Syntactic->getStmtClass()) {
1082 const Expr *Syntactic = getSyntacticFromForPseudoObjectExpr(POE);
1083 auto *RefExpr = cast<ObjCPropertyRefExpr>(Syntactic);
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Initialization.h 955 /// When Kind = SK_RewrapInitList, the syntactic form of the
1356 void RewrapReferenceInitList(QualType T, InitListExpr *Syntactic);
  /src/external/apache2/llvm/dist/clang/lib/AST/
Type.cpp 536 /// getUnqualifiedDesugaredType - Pull any qualifiers and syntactic
1784 bool Syntactic;
1787 GetContainedDeducedTypeVisitor(bool Syntactic = false)
1788 : Syntactic(Syntactic) {}
1847 if (Syntactic && T->hasTrailingReturn())
ItaniumMangle.cpp 4063 if (auto *Syntactic = InitList->getSyntacticForm())
4064 InitList = Syntactic;
4792 // (the enclosing MemberExpr covers the syntactic portion).
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaInit.cpp 263 /// (syntactic) initializer list and the index into that initializer
1618 // FIXME: Why are we updating the syntactic init list?
1673 // FIXME: Why are we updating the syntactic init list?
1724 // FIXME: Why are we updating the syntactic init list?
2448 // Restore the designated initializer expression in the syntactic
3787 InitListExpr *Syntactic) {
3788 assert(Syntactic->getNumInits() == 1 &&
3792 S.Type = Syntactic->getInit(0)->getType();
3797 S.WrappingSyntacticList = Syntactic;
7921 // "*null", which is a very syntactic check
    [all...]
TreeTransform.h 3878 // If this was list initialization, revert to syntactic list form.
10470 // Rebuild the syntactic form. The original syntactic form has
11049 if (InitListExpr *Syntactic = E->getSyntacticForm())
11050 E = Syntactic;
11063 // FIXME: Attempt to reuse the existing syntactic form of the InitListExpr
11064 // in some cases. We can't reuse it in general, because the syntactic and
11066 // match even if the syntactic form does.
11152 // Seems that if TransformInitListExpr() only works on the syntactic form of an
11158 llvm_unreachable("Unexpected DesignatedInitUpdateExpr in syntactic form of
    [all...]
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CIndex.cpp 828 // Visit the function declaration's syntactic components in the order
2751 // We care about the syntactic form of the initializer list, only.
2752 if (InitListExpr *Syntactic = IE->getSyntacticForm())
2753 IE = Syntactic;
2865 // Treat the expression like its syntactic form.

Completed in 75 milliseconds