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

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

Completed in 337 milliseconds