OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Decomp
(Results
1 - 4
of
4
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/lib/Basic/
Diagnostic.cpp
188
std::pair<FileID, unsigned>
Decomp
= SrcMgr.getDecomposedLoc(Loc);
189
unsigned Offset =
Decomp
.second;
190
for (File *F = getFile(SrcMgr,
Decomp
.first); F;
214
std::pair<FileID, unsigned>
Decomp
= SrcMgr.getDecomposedLoc(Loc);
215
const File *F = getFile(SrcMgr,
Decomp
.first);
216
return F->lookup(
Decomp
.second);
241
std::pair<FileID, unsigned>
Decomp
= SrcMgr.getDecomposedIncludedLoc(ID);
242
F.Parent = getFile(SrcMgr,
Decomp
.first);
243
F.ParentOffset =
Decomp
.second;
244
F.StateTransitions.push_back({F.Parent->lookup(
Decomp
.second), 0})
[
all
...]
/src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclCXX.h
3830
ValueDecl *
Decomp
;
3856
ValueDecl *getDecomposedDecl() const { return
Decomp
; }
3871
void setDecomposedDecl(ValueDecl *Decomposed) {
Decomp
= Decomposed; }
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDecl.cpp
6859
auto &
Decomp
= D.getDecompositionDeclarator();
6860
if (!
Decomp
.bindings().empty()) {
6861
II =
Decomp
.bindings()[0].Name;
11735
// C++ [dcl.
decomp
]p1:
16666
const DecompositionDeclarator &
Decomp
= D.getDecompositionDeclarator();
16667
Diag(
Decomp
.getLSquareLoc(), diag::err_decomp_decl_context)
16668
<<
Decomp
.getSourceRange();
TreeTransform.h
10863
CXXRewrittenBinaryOperator::DecomposedForm
Decomp
= E->getDecomposedForm();
10865
ExprResult LHS = getDerived().TransformExpr(const_cast<Expr*>(
Decomp
.LHS));
10869
ExprResult RHS = getDerived().TransformExpr(const_cast<Expr*>(
Decomp
.RHS));
10874
LHS.get() ==
Decomp
.LHS &&
10875
RHS.get() ==
Decomp
.RHS)
10882
const_cast<Expr *>(
Decomp
.InnerBinOp)};
10901
E->getOperatorLoc(),
Decomp
.Opcode, UnqualLookups, LHS.get(), RHS.get());
Completed in 55 milliseconds
Indexes created Wed Mar 04 05:31:52 UTC 2026