Home
last modified time | relevance | path

Searched refs:NextLocalImportAndComplete (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/clang/include/clang/AST/
H A DDecl.h4541 llvm::PointerIntPair<ImportDecl *, 1, bool> NextLocalImportAndComplete; variable
4551 bool isImportComplete() const { return NextLocalImportAndComplete.getInt(); } in isImportComplete()
4553 void setImportComplete(bool C) { NextLocalImportAndComplete.setInt(C); } in setImportComplete()
4558 return NextLocalImportAndComplete.getPointer(); in getNextLocalImport()
4562 NextLocalImportAndComplete.setPointer(Import); in setNextLocalImport()
/llvm-project-15.0.7/clang/lib/AST/
H A DDecl.cpp5211 NextLocalImportAndComplete(nullptr, true) { in ImportDecl()
5221 NextLocalImportAndComplete(nullptr, false) { in ImportDecl()