OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UnresolvedUsingValueDecl
(Results
1 - 25
of
29
) sorted by relevancy
1
2
/src/external/apache2/llvm/dist/clang/tools/libclang/
CursorVisitor.h
240
bool VisitUnresolvedUsingValueDecl(
UnresolvedUsingValueDecl
*D);
/src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclCXX.h
3538
/// The
UnresolvedUsingValueDecl
or UnresolvedUsingTypenameDecl from
3565
/// always be an
UnresolvedUsingValueDecl
or an UnresolvedUsingTypenameDecl
3604
class
UnresolvedUsingValueDecl
: public ValueDecl,
3605
public Mergeable<
UnresolvedUsingValueDecl
> {
3619
UnresolvedUsingValueDecl
(DeclContext *DC, QualType Ty,
3667
static
UnresolvedUsingValueDecl
*
3672
static
UnresolvedUsingValueDecl
*
3678
UnresolvedUsingValueDecl
*getCanonicalDecl() override {
3681
const
UnresolvedUsingValueDecl
*getCanonicalDecl() const {
TextNodeDumper.h
352
void VisitUnresolvedUsingValueDecl(const
UnresolvedUsingValueDecl
*D);
RecursiveASTVisitor.h
1958
DEF_TRAVERSE_DECL(
UnresolvedUsingValueDecl
, {
/src/external/apache2/llvm/dist/clang/lib/AST/
DeclCXX.cpp
3103
void
UnresolvedUsingValueDecl
::anchor() {}
3105
UnresolvedUsingValueDecl
*
3106
UnresolvedUsingValueDecl
::Create(ASTContext &C, DeclContext *DC,
3111
return new (C, DC)
UnresolvedUsingValueDecl
(DC, C.DependentTy, UsingLoc,
3116
UnresolvedUsingValueDecl
*
3117
UnresolvedUsingValueDecl
::CreateDeserialized(ASTContext &C, unsigned ID) {
3118
return new (C, ID)
UnresolvedUsingValueDecl
(nullptr, QualType(),
3125
SourceRange
UnresolvedUsingValueDecl
::getSourceRange() const {
DeclPrinter.cpp
99
void VisitUnresolvedUsingValueDecl(
UnresolvedUsingValueDecl
*D);
1619
void DeclPrinter::VisitUnresolvedUsingValueDecl(
UnresolvedUsingValueDecl
*D) {
ComputeDependence.cpp
715
isa<
UnresolvedUsingValueDecl
>(D))
TextNodeDumper.cpp
2065
const
UnresolvedUsingValueDecl
*D) {
Decl.cpp
1770
if (auto *UUVD = dyn_cast<
UnresolvedUsingValueDecl
>(this)) {
1774
cast<
UnresolvedUsingValueDecl
>(OldD)->getQualifier());
ExprCXX.cpp
1442
if (isa<
UnresolvedUsingValueDecl
>(decl))
ASTContext.cpp
1563
isa<
UnresolvedUsingValueDecl
>(Pattern) ||
1567
isa<
UnresolvedUsingValueDecl
>(Inst) ||
8398
isa<
UnresolvedUsingValueDecl
>(D) ||
ASTImporter.cpp
515
ExpectedDecl VisitUnresolvedUsingValueDecl(
UnresolvedUsingValueDecl
*D);
4697
UnresolvedUsingValueDecl
*D) {
4719
UnresolvedUsingValueDecl
*ToUsingValue;
/src/external/apache2/llvm/dist/clang/lib/Index/
USRGeneration.cpp
104
void VisitUnresolvedUsingValueDecl(const
UnresolvedUsingValueDecl
*D);
991
void USRGenerator::VisitUnresolvedUsingValueDecl(const
UnresolvedUsingValueDecl
*D) {
IndexDecl.cpp
620
bool VisitUnresolvedUsingValueDecl(const
UnresolvedUsingValueDecl
*D) {
/src/external/apache2/llvm/dist/clang/include/clang/Sema/
Lookup.h
714
if (isa<
UnresolvedUsingValueDecl
>((*I)->getUnderlyingDecl()))
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaTemplateVariadic.cpp
190
bool TraverseUnresolvedUsingValueDecl(
UnresolvedUsingValueDecl
*D) {
SemaLookup.cpp
471
// An
UnresolvedUsingValueDecl
always instantiates to one of these.
475
isa<
UnresolvedUsingValueDecl
>(D);
495
else if (isa<
UnresolvedUsingValueDecl
>(D))
564
if (isa<
UnresolvedUsingValueDecl
>(D)) {
SemaDeclCXX.cpp
6683
if (((isa<FieldDecl>(D) || isa<
UnresolvedUsingValueDecl
>(D)) &&
11716
!isa<
UnresolvedUsingValueDecl
>(Target) &&
12085
D =
UnresolvedUsingValueDecl
::Create(Context, CurContext, UsingLoc,
12259
assert(isa<
UnresolvedUsingValueDecl
>(InstantiatedFrom) ||
12325
isa<
UnresolvedUsingValueDecl
>(D) || isa<EnumConstantDecl>(D);
12346
} else if (
UnresolvedUsingValueDecl
*UD
12347
= dyn_cast<
UnresolvedUsingValueDecl
>(D)) {
SemaTemplate.cpp
95
/// Note that this may return an
UnresolvedUsingValueDecl
if AllowDependent
137
if (AllowDependent && isa<
UnresolvedUsingValueDecl
>(D))
276
if (isa<
UnresolvedUsingValueDecl
>(D)) {
10639
if (
UnresolvedUsingValueDecl
*Using
10640
= dyn_cast<
UnresolvedUsingValueDecl
>(Result.getRepresentativeDecl())){
SemaTemplateInstantiateDecl.cpp
3204
UnresolvedUsingValueDecl
*D) {
5680
if (auto *UUD = dyn_cast<
UnresolvedUsingValueDecl
>(D))
/src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderDecl.cpp
361
void VisitUnresolvedUsingValueDecl(
UnresolvedUsingValueDecl
*D);
1692
void ASTDeclReader::VisitUnresolvedUsingValueDecl(
UnresolvedUsingValueDecl
*D) {
3241
if (const auto *UX = dyn_cast<
UnresolvedUsingValueDecl
>(X)) {
3242
const auto *UY = cast<
UnresolvedUsingValueDecl
>(Y);
3848
D =
UnresolvedUsingValueDecl
::CreateDeserialized(Context, ID);
ASTWriterDecl.cpp
87
void VisitUnresolvedUsingValueDecl(
UnresolvedUsingValueDecl
*D);
1318
void ASTDeclWriter::VisitUnresolvedUsingValueDecl(
UnresolvedUsingValueDecl
*D) {
/src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
ASTMatchersInternal.cpp
848
const internal::VariadicDynCastAllOfMatcher<Decl,
UnresolvedUsingValueDecl
>
849
unresolvedUsingValueDecl
;
/src/external/apache2/llvm/dist/clang/lib/Tooling/Syntax/
BuildTree.cpp
1560
bool WalkUpFromUnresolvedUsingValueDecl(
UnresolvedUsingValueDecl
*S) {
/src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
ASTMatchers.h
1793
///
unresolvedUsingValueDecl
()
1796
UnresolvedUsingValueDecl
>
1797
unresolvedUsingValueDecl
;
Completed in 111 milliseconds
1
2
Indexes created Tue Feb 24 08:35:24 UTC 2026