OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ImportDecl
(Results
1 - 25
of
32
) sorted by relevancy
1
2
/src/external/apache2/llvm/dist/clang/lib/AST/
ASTConsumer.cpp
28
void ASTConsumer::HandleImplicitImportDecl(
ImportDecl
*D) {
Decl.cpp
5050
//
ImportDecl
Implementation
5064
ImportDecl
::
ImportDecl
(DeclContext *DC, SourceLocation StartLoc,
5075
ImportDecl
::
ImportDecl
(DeclContext *DC, SourceLocation StartLoc,
5082
ImportDecl
*
ImportDecl
::Create(ASTContext &C, DeclContext *DC,
5087
ImportDecl
(DC, StartLoc, Imported, IdentifierLocs);
5090
ImportDecl
*
ImportDecl
::CreateImplicit(ASTContext &C, DeclContext *DC
[
all
...]
DeclPrinter.cpp
75
void VisitImportDecl(
ImportDecl
*D);
932
void DeclPrinter::VisitImportDecl(
ImportDecl
*D) {
DeclBase.cpp
1536
if (auto *Import = dyn_cast<
ImportDecl
>(D))
TextNodeDumper.cpp
1732
void TextNodeDumper::VisitImportDecl(const
ImportDecl
*D) {
/src/external/apache2/llvm/dist/clang/include/clang/Index/
IndexDataConsumer.h
21
class
ImportDecl
;
60
virtual bool handleModuleOccurrence(const
ImportDecl
*ImportD,
/src/external/apache2/llvm/dist/clang/include/clang/AST/
ASTConsumer.h
28
class
ImportDecl
;
89
/// Handle an
ImportDecl
that was implicitly created due to an
92
virtual void HandleImplicitImportDecl(
ImportDecl
*D);
ASTContext.h
438
/// a non-constant initializer), or an
ImportDecl
(which recursively triggers
555
ImportDecl
*FirstLocalImport = nullptr;
556
ImportDecl
*LastLocalImport = nullptr;
835
ImportDecl
*Import = nullptr;
838
using value_type =
ImportDecl
*;
839
using reference =
ImportDecl
*;
840
using pointer =
ImportDecl
*;
845
explicit import_iterator(
ImportDecl
*Import) : Import(Import) {}
950
void addedLocalImportDecl(
ImportDecl
*Import);
952
static
ImportDecl
*getNextLocalImport(ImportDecl *Import)
[
all
...]
Decl.h
4408
class
ImportDecl
final : public Decl,
4409
llvm::TrailingObjects<
ImportDecl
, SourceLocation> {
4426
llvm::PointerIntPair<
ImportDecl
*, 1, bool> NextLocalImportAndComplete;
4428
ImportDecl
(DeclContext *DC, SourceLocation StartLoc, Module *Imported,
4431
ImportDecl
(DeclContext *DC, SourceLocation StartLoc, Module *Imported,
4434
ImportDecl
(EmptyShell Empty) : Decl(Import, Empty) {}
4442
ImportDecl
*getNextLocalImport() const {
4446
void setNextLocalImport(
ImportDecl
*Import) {
4452
static
ImportDecl
*Create(ASTContext &C, DeclContext *DC,
4458
static
ImportDecl
*CreateImplicit(ASTContext &C, DeclContext *DC
[
all
...]
TextNodeDumper.h
330
void VisitImportDecl(const
ImportDecl
*D);
/src/external/apache2/llvm/dist/clang/lib/Index/
IndexingContext.h
23
class
ImportDecl
;
95
bool importedModule(const
ImportDecl
*ImportD);
IndexingContext.cpp
96
const
ImportDecl
*ImportD,
106
bool IndexingContext::importedModule(const
ImportDecl
*ImportD) {
195
if (isa<
ImportDecl
>(D))
IndexDecl.cpp
722
bool VisitImportDecl(const
ImportDecl
*D) {
/src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTCommon.h
117
if (isa<
ImportDecl
>(D))
ASTReaderDecl.cpp
398
void VisitImportDecl(
ImportDecl
*D);
2013
void ASTDeclReader::VisitImportDecl(
ImportDecl
*D) {
2831
// An
ImportDecl
or VarDecl imported from a module map module will get
2843
isa<
ImportDecl
>(D) ||
4021
// Note: last entry of the
ImportDecl
record is the number of stored source
4023
D =
ImportDecl
::CreateDeserialized(Context, ID, Record.back());
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaModule.cpp
384
ImportDecl
*Import =
ImportDecl
::Create(Context, CurContext, StartLoc,
425
ImportDecl
*ImportD =
ImportDecl
::CreateImplicit(getASTContext(), TU,
475
//
ImportDecl
as we would for an imported module.
511
ImportDecl
*ImportD =
ImportDecl
::CreateImplicit(getASTContext(), TU,
/src/external/apache2/llvm/dist/clang/include/clang/Frontend/
MultiplexConsumer.h
66
void HandleImplicitImportDecl(
ImportDecl
*D) override;
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
ObjectFilePCHContainerOperations.cpp
71
bool VisitImportDecl(
ImportDecl
*D) {
231
void HandleImplicitImportDecl(
ImportDecl
*D) override {
CGDebugInfo.h
509
void EmitImportDecl(const
ImportDecl
&ID);
/src/external/apache2/llvm/dist/clang/tools/libclang/
CXIndexDataConsumer.h
370
void importedModule(const
ImportDecl
*ImportD);
438
bool handleModuleOccurrence(const
ImportDecl
*ImportD, const Module *Mod,
CXIndexDataConsumer.cpp
145
bool VisitImportDecl(const
ImportDecl
*D) {
223
bool CXIndexDataConsumer::handleModuleOccurrence(const
ImportDecl
*ImportD,
478
void CXIndexDataConsumer::importedModule(const
ImportDecl
*ImportD) {
1224
if (isa<
ImportDecl
>(D))
CIndex.cpp
4597
if (const
ImportDecl
*ImportD = dyn_cast<
ImportDecl
>(D))
4836
if (const
ImportDecl
*ImportD =
4837
dyn_cast_or_null<
ImportDecl
>(getCursorDecl(C))) {
8427
if (const
ImportDecl
*ImportD =
8428
dyn_cast_or_null<
ImportDecl
>(getCursorDecl(C)))
/src/external/apache2/llvm/dist/clang/lib/Frontend/
MultiplexConsumer.cpp
315
void MultiplexConsumer::HandleImplicitImportDecl(
ImportDecl
*D) {
/src/external/apache2/llvm/dist/clang/tools/c-index-test/
core_main.cpp
141
bool handleModuleOccurrence(const
ImportDecl
*ImportD,
/src/external/apache2/llvm/dist/clang/lib/Parse/
Parser.cpp
654
Decl *
ImportDecl
= ParseModuleImport(SourceLocation());
655
Result = Actions.ConvertDeclToDeclGroup(
ImportDecl
);
Completed in 63 milliseconds
1
2
Indexes created Tue Jun 09 00:24:00 UTC 2026