Home
last modified time | relevance | path

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

/minix3/external/bsd/llvm/dist/clang/include/clang/AST/
H A DDeclCXX.h2926 class shadow_iterator {
2937 shadow_iterator() : Current(nullptr) { } in shadow_iterator() function
2938 explicit shadow_iterator(UsingShadowDecl *C) : Current(C) { } in shadow_iterator() function
2943 shadow_iterator& operator++() {
2948 shadow_iterator operator++(int) {
2949 shadow_iterator tmp(*this);
2954 friend bool operator==(shadow_iterator x, shadow_iterator y) {
2957 friend bool operator!=(shadow_iterator x, shadow_iterator y) {
2962 typedef llvm::iterator_range<shadow_iterator> shadow_range;
2967 shadow_iterator shadow_begin() const { in shadow_begin()
[all …]
/minix3/external/bsd/llvm/dist/clang/tools/libclang/
H A DCIndex.cpp5167 UsingDecl::shadow_iterator Pos = Using->shadow_begin(); in clang_getOverloadedDecl()