Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DDeclCXX.h2920 class shadow_iterator {
2931 shadow_iterator() : Current(nullptr) { } in shadow_iterator() function
2932 explicit shadow_iterator(UsingShadowDecl *C) : Current(C) { } in shadow_iterator() function
2937 shadow_iterator& operator++() {
2942 shadow_iterator operator++(int) {
2943 shadow_iterator tmp(*this);
2948 friend bool operator==(shadow_iterator x, shadow_iterator y) {
2951 friend bool operator!=(shadow_iterator x, shadow_iterator y) {
2956 typedef llvm::iterator_range<shadow_iterator> shadow_range;
2961 shadow_iterator shadow_begin() const { in shadow_begin()
[all …]
/external/clang/tools/libclang/
DCIndex.cpp5486 UsingDecl::shadow_iterator Pos = Using->shadow_begin(); in clang_getOverloadedDecl()