ESP-IDF
trex_newnode()
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading (3/5)...
Summary
Syntax
Arguments
Related
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
trex_newnode()
trex_newnode() function
Syntax
Show:
Summary
Declaration
from
arg_rex.c:377
static
int
trex_newnode
(
TRex
*
exp
,
TRexNodeType
type
)
;
Arguments
Argument
exp
type
Related Functions
Found 17 other functions taking a
TRex
argument:
Function
trex_error()
trex_matchnode()
trex_free()
trex_expect()
trex_list()
trex_charnode()
trex_match()
trex_searchrange()
trex_element()
trex_parsenumber()
trex_search()
trex_getsubexpcount()
trex_getsubexp()
trex_class()
trex_escapechar()
trex_charclass()
trex_matchclass()
Examples
References
from
examples
Code
Location
Referrer
static
int
trex_newnode
(
TRex
*
exp
,
TRexNodeType
type
)
{
arg_rex.c:377
int
n
=
trex_newnode
(
exp
,
OP_CCLASS
)
;
arg_rex.c:433
trex_charclass()
return
trex_newnode
(
exp
,
'\n'
)
;
arg_rex.c:445
trex_charnode()
return
trex_newnode
(
exp
,
'\t'
)
;
arg_rex.c:448
trex_charnode()
return
trex_newnode
(
exp
,
'\r'
)
;
arg_rex.c:451
trex_charnode()
return
trex_newnode
(
exp
,
'\f'
)
;
arg_rex.c:454
trex_charnode()
return
trex_newnode
(
exp
,
'\v'
)
;
arg_rex.c:457
trex_charnode()
int
node
=
trex_newnode
(
exp
,
OP_WB
)
;
arg_rex.c:481
trex_charnode()
return
trex_newnode
(
exp
,
t
)
;
arg_rex.c:490
trex_charnode()
return
trex_newnode
(
exp
,
t
)
;
arg_rex.c:497
trex_charnode()
ret
=
trex_newnode
(
exp
,
OP_NCLASS
)
;
arg_rex.c:503
trex_class()
ret
=
trex_newnode
(
exp
,
OP_CLASS
)
;
arg_rex.c:506
trex_class()
r
=
trex_newnode
(
exp
,
OP_RANGE
)
;
arg_rex.c:516
trex_class()
expr
=
trex_newnode
(
exp
,
OP_NOCAPEXPR
)
;
arg_rex.c:573
trex_element()
expr
=
trex_newnode
(
exp
,
OP_EXPR
)
;
arg_rex.c:575
trex_element()
ret
=
trex_newnode
(
exp
,
OP_EOL
)
;
arg_rex.c:588
trex_element()
ret
=
trex_newnode
(
exp
,
OP_DOT
)
;
arg_rex.c:592
trex_element()
int
nnode
=
trex_newnode
(
exp
,
OP_GREEDY
)
;
arg_rex.c:648
trex_element()
ret
=
trex_newnode
(
exp
,
OP_BOL
)
;
arg_rex.c:667
trex_list()
temp
=
trex_newnode
(
exp
,
OP_OR
)
;
arg_rex.c:678
trex_list()
exp
->
_first
=
trex_newnode
(
exp
,
OP_EXPR
)
;
arg_rex.c:917
trex_compile()
Call Tree
from
examples
trex_newnode()
is called by 6 functions and calls 1 function:
trex_charclass()
trex_charnode()
trex_class()
trex_element()
trex_list()
trex_compile()
All items filtered out
trex_newnode()
argtable3_xrealloc()
All items filtered out
Data Use
from
examples
trex_newnode()
reads 4 variables and writes 8 variables:
TRex::_nodes
TRex::_nallocated
TRex::_nsize
TRex::_nsubexpr
All items filtered out
trex_newnode()
tagTRexNode::type
tagTRexNode::left
tagTRexNode::right
tagTRexNode::next
TRex::_nodes
TRex::_nallocated
TRex::_nsize
TRex::_nsubexpr
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
Lifecycle
from
examples
All items filtered out
All items filtered out