Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/clang/lib/Basic/
H A DDiagnostic.cpp192 unsigned Offset = Decomp.second; in append()
193 for (File *F = getFile(SrcMgr, Decomp.first); F; in append()
218 const File *F = getFile(SrcMgr, Decomp.first); in lookup()
219 return F->lookup(Decomp.second); in lookup()
245 F.Parent = getFile(SrcMgr, Decomp.first); in getFile()
246 F.ParentOffset = Decomp.second; in getFile()
280 std::pair<FileID, unsigned> Decomp = in dump() local
282 assert(File.ParentOffset == Decomp.second); in dump()
284 << Decomp.first.getHashValue() << "> "; in dump()
285 SrcMgr.getLocForStartOfFile(Decomp.first) in dump()
[all …]
/openbsd/gnu/usr.bin/perl/dist/Unicode-Normalize/
H A Dmkheader58 our $Decomp = do "unicore/Decomposition.pl"
120 while ($Decomp =~ /(.+)/g) {
/openbsd/gnu/llvm/clang/lib/Analysis/FlowSensitive/
H A DTransfer.cpp267 if (const auto *Decomp = dyn_cast<DecompositionDecl>(&D)) { in VisitDeclStmt() local
273 for (const auto *B : Decomp->bindings()) { in VisitDeclStmt()
H A DDataflowEnvironment.cpp170 if (const auto *Decomp = dyn_cast<DecompositionDecl>(&D)) in getFieldsAndGlobalVars() local
171 for (const auto *B : Decomp->bindings()) in getFieldsAndGlobalVars()
/openbsd/gnu/llvm/clang/include/clang/AST/
H A DDeclCXX.h4022 ValueDecl *Decomp; variable
4048 ValueDecl *getDecomposedDecl() const { return Decomp; } in getDecomposedDecl()
4063 void setDecomposedDecl(ValueDecl *Decomposed) { Decomp = Decomposed; } in setDecomposedDecl()
/openbsd/gnu/llvm/clang/lib/Sema/
H A DTreeTransform.h11370 CXXRewrittenBinaryOperator::DecomposedForm Decomp = E->getDecomposedForm(); in TransformCXXRewrittenBinaryOperator() local
11372 ExprResult LHS = getDerived().TransformExpr(const_cast<Expr*>(Decomp.LHS)); in TransformCXXRewrittenBinaryOperator()
11376 ExprResult RHS = getDerived().TransformExpr(const_cast<Expr*>(Decomp.RHS)); in TransformCXXRewrittenBinaryOperator()
11385 const_cast<Expr *>(Decomp.InnerBinOp)}; in TransformCXXRewrittenBinaryOperator()
11406 LHS.get() == Decomp.LHS && RHS.get() == Decomp.RHS) { in TransformCXXRewrittenBinaryOperator()
11412 const Expr *StopAt[] = {Decomp.LHS, Decomp.RHS}; in TransformCXXRewrittenBinaryOperator()
11418 E->getOperatorLoc(), Decomp.Opcode, UnqualLookups, LHS.get(), RHS.get()); in TransformCXXRewrittenBinaryOperator()
H A DSemaDeclCXX.cpp728 const DecompositionDeclarator &Decomp = D.getDecompositionDeclarator(); in ActOnDecompositionDeclarator() local
734 Diag(Decomp.getLSquareLoc(), diag::err_decomp_decl_context) in ActOnDecompositionDeclarator()
735 << Decomp.getSourceRange(); in ActOnDecompositionDeclarator()
747 Diag(Decomp.getLSquareLoc(), in ActOnDecompositionDeclarator()
753 << Decomp.getSourceRange(); in ActOnDecompositionDeclarator()
843 Diag(Decomp.getLSquareLoc(), in ActOnDecompositionDeclarator()
919 Decomp.getLSquareLoc()); in ActOnDecompositionDeclarator()
H A DSemaDecl.cpp7424 auto &Decomp = D.getDecompositionDeclarator(); in ActOnVariableDeclarator() local
7425 if (!Decomp.bindings().empty()) { in ActOnVariableDeclarator()
7426 II = Decomp.bindings()[0].Name; in ActOnVariableDeclarator()
17833 const DecompositionDeclarator &Decomp = D.getDecompositionDeclarator(); in HandleField() local
17834 Diag(Decomp.getLSquareLoc(), diag::err_decomp_decl_context) in HandleField()
17835 << Decomp.getSourceRange(); in HandleField()