OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:tree_stmt_iterator
(Results
1 - 2
of
2
) sorted by relevancy
/src/external/gpl3/gcc/dist/gcc/
tree-iterator.h
32
struct
tree_stmt_iterator
{
struct
39
bool operator== (
tree_stmt_iterator
b) const
41
bool operator!= (
tree_stmt_iterator
b) const { return !(*this == b); }
42
tree_stmt_iterator
&operator++ () { ptr = ptr->next; return *this; }
43
tree_stmt_iterator
&operator-- () { ptr = ptr->prev; return *this; }
44
tree_stmt_iterator
operator++ (int)
45
{
tree_stmt_iterator
x = *this; ++*this; return x; }
46
tree_stmt_iterator
operator-- (int)
47
{
tree_stmt_iterator
x = *this; --*this; return x; }
52
inline
tree_stmt_iterator
[
all
...]
/src/external/gpl3/gcc.old/dist/gcc/
tree-iterator.h
32
struct
tree_stmt_iterator
{
struct
39
bool operator== (
tree_stmt_iterator
b) const
41
bool operator!= (
tree_stmt_iterator
b) const { return !(*this == b); }
42
tree_stmt_iterator
&operator++ () { ptr = ptr->next; return *this; }
43
tree_stmt_iterator
&operator-- () { ptr = ptr->prev; return *this; }
44
tree_stmt_iterator
operator++ (int)
45
{
tree_stmt_iterator
x = *this; ++*this; return x; }
46
tree_stmt_iterator
operator-- (int)
47
{
tree_stmt_iterator
x = *this; --*this; return x; }
52
static inline
tree_stmt_iterator
[
all
...]
Completed in 17 milliseconds
Indexes created Wed Mar 04 15:26:31 UTC 2026