Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DDiagnostic.cpp187 std::pair<FileID, unsigned> Decomp = SrcMgr.getDecomposedLoc(Loc); in append() local
188 unsigned Offset = Decomp.second; in append()
189 for (File *F = getFile(SrcMgr, Decomp.first); F; in append()
213 std::pair<FileID, unsigned> Decomp = SrcMgr.getDecomposedLoc(Loc); in lookup() local
214 const File *F = getFile(SrcMgr, Decomp.first); in lookup()
215 return F->lookup(Decomp.second); in lookup()
240 std::pair<FileID, unsigned> Decomp = SrcMgr.getDecomposedIncludedLoc(ID); in getFile() local
241 F.Parent = getFile(SrcMgr, Decomp.first); in getFile()
242 F.ParentOffset = Decomp.second; in getFile()
243 F.StateTransitions.push_back({F.Parent->lookup(Decomp.second), 0}); in getFile()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DTransfer.cpp250 if (const auto *Decomp = dyn_cast<DecompositionDecl>(&D)) { in ProcessVarDecl() local
256 for (const auto *B : Decomp->bindings()) { in ProcessVarDecl()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h4116 ValueDecl *Decomp; variable
4142 ValueDecl *getDecomposedDecl() const { return Decomp; } in getDecomposedDecl()
4157 void setDecomposedDecl(ValueDecl *Decomposed) { Decomp = Decomposed; } in setDecomposedDecl()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h12441 CXXRewrittenBinaryOperator::DecomposedForm Decomp = E->getDecomposedForm(); in TransformCXXRewrittenBinaryOperator() local
12443 ExprResult LHS = getDerived().TransformExpr(const_cast<Expr*>(Decomp.LHS)); in TransformCXXRewrittenBinaryOperator()
12447 ExprResult RHS = getDerived().TransformExpr(const_cast<Expr*>(Decomp.RHS)); in TransformCXXRewrittenBinaryOperator()
12456 const_cast<Expr *>(Decomp.InnerBinOp)}; in TransformCXXRewrittenBinaryOperator()
12477 LHS.get() == Decomp.LHS && RHS.get() == Decomp.RHS) { in TransformCXXRewrittenBinaryOperator()
12483 const Expr *StopAt[] = {Decomp.LHS, Decomp.RHS}; in TransformCXXRewrittenBinaryOperator()
12489 E->getOperatorLoc(), Decomp.Opcode, UnqualLookups, LHS.get(), RHS.get()); in TransformCXXRewrittenBinaryOperator()
H A DSemaDeclCXX.cpp727 const DecompositionDeclarator &Decomp = D.getDecompositionDeclarator(); in ActOnDecompositionDeclarator() local
733 Diag(Decomp.getLSquareLoc(), diag::err_decomp_decl_context) in ActOnDecompositionDeclarator()
734 << Decomp.getSourceRange(); in ActOnDecompositionDeclarator()
746 Diag(Decomp.getLSquareLoc(), in ActOnDecompositionDeclarator()
752 << Decomp.getSourceRange(); in ActOnDecompositionDeclarator()
842 Diag(Decomp.getLSquareLoc(), in ActOnDecompositionDeclarator()
937 Decomp.getLSquareLoc()); in ActOnDecompositionDeclarator()
H A DSemaDecl.cpp7369 auto &Decomp = D.getDecompositionDeclarator(); in ActOnVariableDeclarator() local
7370 if (!Decomp.bindings().empty()) { in ActOnVariableDeclarator()
7371 II = Decomp.bindings()[0].Name; in ActOnVariableDeclarator()
18238 const DecompositionDeclarator &Decomp = D.getDecompositionDeclarator(); in HandleField() local
18239 Diag(Decomp.getLSquareLoc(), diag::err_decomp_decl_context) in HandleField()
18240 << Decomp.getSourceRange(); in HandleField()