ESP-IDF
TRexNode
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Related
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
TRexNode
TRexNode struct
Syntax
Show:
Summary
Declaration
from
arg_rex.c:351
typedef
struct
tagTRexNode
{
TRexNodeType
type
;
int
left
;
int
right
;
int
next
;
}
TRexNode
;
Fields
Field
Declared as
tagTRexNode::type
TRexNodeType
tagTRexNode::left
int
tagTRexNode::right
int
tagTRexNode::next
int
Related Functions
Found 2 other functions taking a
tagTRexNode
argument:
Function
trex_matchnode()
trex_matchclass()
Examples
References
from
examples
Code
Location
Scope
Referrer
typedef
struct
tagTRexNode
{
arg_rex.c:351
}
TRexNode
;
arg_rex.c:356
TRexNode
TRexNode
*
_nodes
;
arg_rex.c:364
TRex
TRex::_nodes
TRexNode
n
;
arg_rex.c:378
trex_newnode()
exp
->
_nodes
=
(
TRexNode
*
)
xrealloc
(
exp
->
_nodes
,
(
size_t
)
exp
->
_nallocated
*
sizeof
(
TRexNode
)
)
;
arg_rex.c:386
trex_newnode()
static
TRexBool
trex_matchclass
(
TRex
*
exp
,
TRexNode
*
node
,
TRexChar
c
)
{
arg_rex.c:725
trex_matchclass()
trex_matchclass()::node
static
const
TRexChar
*
trex_matchnode
(
TRex
*
exp
,
TRexNode
*
node
,
const
TRexChar
*
str
,
TRexNode
*
next
)
{
arg_rex.c:756
trex_matchnode()
trex_matchnode()::node
TRexNode
*
greedystop
=
NULL
;
arg_rex.c:761
trex_matchnode()
TRexNode
*
gnext
=
NULL
;
arg_rex.c:781
trex_matchnode()
TRexNode
*
temp
=
&
exp
->
_nodes
[
node
->
left
]
;
arg_rex.c:813
trex_matchnode()
TRexNode
*
n
=
&
exp
->
_nodes
[
node
->
left
]
;
arg_rex.c:833
trex_matchnode()
TRexNode
*
subnext
=
NULL
;
arg_rex.c:843
trex_matchnode()
exp
->
_nodes
=
(
TRexNode
*
)
xmalloc
(
(
size_t
)
exp
->
_nallocated
*
sizeof
(
TRexNode
)
)
;
arg_rex.c:913
trex_compile()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Instance
Scope
Location
Project
TRex::_nodes
TRex
arg_rex.c:364
trex_matchclass()::node
trex_matchclass()
arg_rex.c:725
trex_matchnode()::node
trex_matchnode()
arg_rex.c:756
trex_matchnode()::next
trex_matchnode()
arg_rex.c:756
Lifecycle
from
examples
All items filtered out
All items filtered out