OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UsingDecl
(Results
1 - 25
of
37
) sorted by relevancy
1
2
/src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Rename/
USRLocFinder.cpp
183
//
UsingDecl
has been handled in other place.
184
if (llvm::isa<
UsingDecl
>(Decl))
342
bool VisitUsingDecl(const
UsingDecl
*Using) {
462
const std::vector<const
UsingDecl
*> &getUsingDecls() const {
515
std::vector<const
UsingDecl
*> UsingDecls;
/src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclCXX.h
74
class
UsingDecl
;
3174
/// using A::foo; // <- a
UsingDecl
3179
friend class
UsingDecl
;
3206
UsingDecl
*Using, NamedDecl *Target);
3214
SourceLocation Loc,
UsingDecl
*Using,
3255
UsingDecl
*getUsingDecl() const;
3276
/// using Base::Base; // creates a
UsingDecl
and a ConstructorUsingShadowDecl
3297
UsingDecl
*Using, NamedDecl *Target,
3327
UsingDecl
*Using, NamedDecl *Target,
3385
class
UsingDecl
: public NamedDecl, public Mergeable<UsingDecl>
[
all
...]
JSONNodeDumper.h
236
void VisitUsingDecl(const
UsingDecl
*UD);
TextNodeDumper.h
350
void VisitUsingDecl(const
UsingDecl
*D);
/src/external/apache2/llvm/dist/clang/tools/libclang/
CursorVisitor.h
239
bool VisitUsingDecl(
UsingDecl
*D);
CIndex.cpp
1241
bool CursorVisitor::VisitUsingDecl(
UsingDecl
*D) {
6297
if (const
UsingDecl
*Using = dyn_cast<
UsingDecl
>(D))
6543
return MakeCursorOverloadedDeclRef(cast<
UsingDecl
>(D), D->getLocation(),
6668
if (const
UsingDecl
*Using = dyn_cast<
UsingDecl
>(D))
6691
if (const
UsingDecl
*Using = dyn_cast<
UsingDecl
>(D)) {
6693
UsingDecl
::shadow_iterator Pos = Using->shadow_begin();
CXIndexDataConsumer.cpp
116
bool VisitUsingDecl(const
UsingDecl
*D) {
/src/external/apache2/llvm/dist/clang/lib/AST/
DeclCXX.cpp
1372
if (const auto *Using = dyn_cast<
UsingDecl
>(D)) {
2986
SourceLocation Loc,
UsingDecl
*Using,
3004
UsingDecl
*UsingShadowDecl::getUsingDecl() const {
3009
return cast<
UsingDecl
>(Shadow->UsingOrNextShadow);
3016
SourceLocation Loc,
UsingDecl
*Using,
3031
void
UsingDecl
::anchor() {}
3033
void
UsingDecl
::addShadowDecl(UsingShadowDecl *S) {
3043
void
UsingDecl
::removeShadowDecl(UsingShadowDecl *S) {
3064
UsingDecl
*
UsingDecl
::Create(ASTContext &C, DeclContext *DC, SourceLocation UL
[
all
...]
DeclPrinter.cpp
100
void VisitUsingDecl(
UsingDecl
*D);
1592
void DeclPrinter::VisitUsingDecl(
UsingDecl
*D) {
JSONNodeDumper.cpp
749
void JSONNodeDumper::VisitUsingDecl(const
UsingDecl
*UD) {
TextNodeDumper.cpp
2049
void TextNodeDumper::VisitUsingDecl(const
UsingDecl
*D) {
Decl.cpp
1764
if (auto *UD = dyn_cast<
UsingDecl
>(this)) {
1768
cast<
UsingDecl
>(OldD)->getQualifier());
/src/external/apache2/llvm/dist/clang/lib/Tooling/Transformer/
SourceCode.cpp
252
if (llvm::isa<RecordDecl>(D) || llvm::isa<
UsingDecl
>(D))
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGDebugInfo.h
44
class
UsingDecl
;
506
void EmitUsingDecl(const
UsingDecl
&UD);
/src/external/apache2/llvm/dist/clang/include/clang/Sema/
Overload.h
1172
if (isa<
UsingDecl
>(ND))
Sema.h
204
class
UsingDecl
;
5604
UsingDirectiveDecl *&
UsingDecl
);
5678
bool CheckUsingShadowDecl(
UsingDecl
*UD, NamedDecl *Target,
5681
UsingShadowDecl *BuildUsingShadowDecl(Scope *S,
UsingDecl
*UD,
5704
bool CheckInheritingConstructorUsingDecl(
UsingDecl
*UD);
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaTemplateInstantiateDecl.cpp
2982
Decl *TemplateDeclInstantiator::VisitUsingDecl(
UsingDecl
*D) {
3015
UsingDecl
*NewUD =
UsingDecl
::Create(SemaRef.Context, Owner,
3091
// Ignore these; we handle them in bulk when processing the
UsingDecl
.
3097
// Ignore these; we handle them in bulk when processing the
UsingDecl
.
5627
static bool isInstantiationOf(
UsingDecl
*Pattern,
UsingDecl
*Instance,
5649
} else if (auto *OtherUD = dyn_cast<
UsingDecl
>(Other)) {
5718
if (auto *Using = dyn_cast<
UsingDecl
>(Other))
5719
return isInstantiationOf(cast<
UsingDecl
>(D), Using, Ctx)
[
all
...]
SemaDeclCXX.cpp
7003
UsingDecl
*ConstructedBaseUsing = nullptr;
11636
bool Sema::CheckUsingShadowDecl(
UsingDecl
*Using, NamedDecl *Orig,
11705
// LookupResult for checking whether the
UsingDecl
itself is a valid
11707
if (isa<
UsingDecl
>(D) || isa<UsingPackDecl>(D))
11805
UsingDecl
*UD,
12094
UsingDecl
*UD =
12095
UsingDecl
::Create(Context, CurContext, UsingLoc, QualifierLoc,
12236
UsingDecl
*UD = BuildValid();
12271
bool Sema::CheckInheritingConstructorUsingDecl(
UsingDecl
*UD) {
12323
if (!isa<TypeDecl>(D) && !isa<
UsingDecl
>(D) && !isa<UsingPackDecl>(D))
[
all
...]
/src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
ASTMatchers.h
1751
///
usingDecl
()
1753
extern const internal::VariadicDynCastAllOfMatcher<Decl,
UsingDecl
>
usingDecl
;
4132
if (const UsingShadowDecl *
UsingDecl
= dyn_cast<UsingShadowDecl>(FoundDecl))
4133
return InnerMatcher.matches(*
UsingDecl
, Finder, Builder);
6198
///
usingDecl
(hasAnyUsingShadowDecl(hasName("b"))))
6200
AST_MATCHER_P(
UsingDecl
, hasAnyUsingShadowDecl,
6216
///
usingDecl
(hasAnyUsingShadowDecl(hasTargetDecl(functionDecl())))
/src/external/apache2/llvm/dist/clang/lib/Index/
IndexDecl.cpp
591
bool VisitUsingDecl(const
UsingDecl
*D) {
USRGeneration.cpp
115
void VisitUsingDecl(const
UsingDecl
*D) {
/src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderDecl.cpp
391
void VisitUsingDecl(
UsingDecl
*D);
1642
void ASTDeclReader::VisitUsingDecl(
UsingDecl
*D) {
3235
if (const auto *UX = dyn_cast<
UsingDecl
>(X)) {
3236
const auto *UY = cast<
UsingDecl
>(Y);
3833
D =
UsingDecl
::CreateDeserialized(Context, ID);
ASTWriterDecl.cpp
115
void VisitUsingDecl(
UsingDecl
*D);
1269
void ASTDeclWriter::VisitUsingDecl(
UsingDecl
*D) {
/src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
ASTMatchersInternal.cpp
843
const internal::VariadicDynCastAllOfMatcher<Decl,
UsingDecl
>
usingDecl
;
/src/external/apache2/llvm/dist/clang/lib/Tooling/Syntax/
BuildTree.cpp
1554
bool WalkUpFromUsingDecl(
UsingDecl
*S) {
Completed in 57 milliseconds
1
2
Indexes created Sat Sep 19 00:25:42 UTC 2026