Searched refs:FirstUsingShadow (Results 1 – 8 of 8) sorted by relevance
/aosp_15_r20/external/clang/lib/AST/ |
H A D | DeclCXX.cpp | 2200 if (FirstUsingShadow.getPointer()) in addShadowDecl() 2201 S->UsingOrNextShadow = FirstUsingShadow.getPointer(); in addShadowDecl() 2202 FirstUsingShadow.setPointer(S); in addShadowDecl() 2212 if (FirstUsingShadow.getPointer() == S) { in removeShadowDecl() 2213 FirstUsingShadow.setPointer( in removeShadowDecl() 2219 UsingShadowDecl *Prev = FirstUsingShadow.getPointer(); in removeShadowDecl()
|
/aosp_15_r20/external/clang/include/clang/AST/ |
H A D | DeclCXX.h | 3057 llvm::PointerIntPair<UsingShadowDecl *, 1, bool> FirstUsingShadow; variable 3064 DNLoc(NameInfo.getInfo()), FirstUsingShadow(nullptr, HasTypenameKeyword) { in UsingDecl() 3091 bool hasTypename() const { return FirstUsingShadow.getInt(); } in hasTypename() 3094 void setTypename(bool TN) { FirstUsingShadow.setInt(TN); } in setTypename() 3140 return shadow_iterator(FirstUsingShadow.getPointer()); in shadow_begin()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/clang/AST/ |
D | DeclCXX.h | 3423 llvm::PointerIntPair<UsingShadowDecl *, 1, bool> FirstUsingShadow; variable 3427 : NamedDecl(DK, DC, L, N), FirstUsingShadow(nullptr, false) {} in BaseUsingDecl() 3434 bool getShadowFlag() const { return FirstUsingShadow.getInt(); } in getShadowFlag() 3437 void setShadowFlag(bool V) { FirstUsingShadow.setInt(V); } in setShadowFlag() 3488 return shadow_iterator(FirstUsingShadow.getPointer()); in shadow_begin()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/clang/AST/ |
D | DeclCXX.h | 3416 llvm::PointerIntPair<UsingShadowDecl *, 1, bool> FirstUsingShadow; variable 3420 : NamedDecl(DK, DC, L, N), FirstUsingShadow(nullptr, false) {} in BaseUsingDecl() 3427 bool getShadowFlag() const { return FirstUsingShadow.getInt(); } in getShadowFlag() 3430 void setShadowFlag(bool V) { FirstUsingShadow.setInt(V); } in setShadowFlag() 3481 return shadow_iterator(FirstUsingShadow.getPointer()); in shadow_begin()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/clang/AST/ |
D | DeclCXX.h | 3416 llvm::PointerIntPair<UsingShadowDecl *, 1, bool> FirstUsingShadow; variable 3420 : NamedDecl(DK, DC, L, N), FirstUsingShadow(nullptr, false) {} in BaseUsingDecl() 3427 bool getShadowFlag() const { return FirstUsingShadow.getInt(); } in getShadowFlag() 3430 void setShadowFlag(bool V) { FirstUsingShadow.setInt(V); } in setShadowFlag() 3481 return shadow_iterator(FirstUsingShadow.getPointer()); in shadow_begin()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/clang/AST/ |
D | DeclCXX.h | 3416 llvm::PointerIntPair<UsingShadowDecl *, 1, bool> FirstUsingShadow; variable 3420 : NamedDecl(DK, DC, L, N), FirstUsingShadow(nullptr, false) {} in BaseUsingDecl() 3427 bool getShadowFlag() const { return FirstUsingShadow.getInt(); } in getShadowFlag() 3430 void setShadowFlag(bool V) { FirstUsingShadow.setInt(V); } in setShadowFlag() 3481 return shadow_iterator(FirstUsingShadow.getPointer()); in shadow_begin()
|
/aosp_15_r20/external/clang/lib/Serialization/ |
H A D | ASTWriterDecl.cpp | 1115 Record.AddDeclRef(D->FirstUsingShadow.getPointer()); in VisitUsingDecl()
|
H A D | ASTReaderDecl.cpp | 1407 D->FirstUsingShadow.setPointer(ReadDeclAs<UsingShadowDecl>(Record, Idx)); in VisitUsingDecl()
|