|
clang
3.8.0
|
An iterator that walks over all of the known identifiers in the lookup table. More...
#include <IdentifierTable.h>
Public Member Functions | |
| virtual | ~IdentifierIterator () |
| virtual StringRef | Next ()=0 |
| Retrieve the next string in the identifier table and advances the iterator for the following string. More... | |
Protected Member Functions | |
| IdentifierIterator () | |
An iterator that walks over all of the known identifiers in the lookup table.
Since this iterator uses an abstract interface via virtual functions, it uses an object-oriented interface rather than the more standard C++ STL iterator interface. In this OO-style iteration, the single function Next() provides dereference, advance, and end-of-sequence checking in a single operation. Subclasses of this iterator type will provide the actual functionality.
Definition at line 382 of file IdentifierTable.h.
|
inlineprotected |
Definition at line 388 of file IdentifierTable.h.
|
virtual |
Definition at line 56 of file IdentifierTable.cpp.
|
pure virtual |
Retrieve the next string in the identifier table and advances the iterator for the following string.
StringRef. Implemented in clang::ASTIdentifierIterator.
1.8.6