If @to is NULL, this creates first a new target state in the automata and then adds a an ALL transition from the @from state to the target state. That transition is an epsilon transition allowed only when all transitions from the @from node have been activated.
am:
an automata
from:
the starting point of the transition
to:
the target point of the transition or NULL
lax:
allow to transition if not all all transitions have been activated
If @to is NULL, this creates first a new target state in the automata and then adds a transition from the @from state to the target state activated by a succession of input of value @token and whose number is between @min and @max
If @to is NULL, this creates first a new target state in the automata and then adds a transition from the @from state to the target state activated by a succession of input of value @token and @token2 and whose number is between @min and @max
am:
an automata
from:
the starting point of the transition
to:
the target point of the transition or NULL
token:
the input string associated to that transition
token2:
the second input string associated to that transition
If @to is NULL, this creates first a new target state in the automata and then adds an epsilon transition from the @from state to the target state which will increment the counter provided
am:
an automata
from:
the starting point of the transition
to:
the target point of the transition or NULL
counter:
the counter associated to that transition
Returns:
the target state or NULL in case of error
xmlAutomataNewCounter ()
int xmlAutomataNewCounter (xmlAutomataPtr am, int min, int max)
If @to is NULL, this creates first a new target state in the automata and then adds an epsilon transition from the @from state to the target state which will be allowed only if the counter is within the right range.
If @to is NULL, this creates first a new target state in the automata and then adds a transition from the @from state to the target state activated by any value except (@token,@token2) Note that if @token2 is not NULL, then (X, NULL) won't match to follow # the semantic of XSD ##other
am:
an automata
from:
the starting point of the transition
to:
the target point of the transition or NULL
token:
the first input string associated to that transition
token2:
the second input string associated to that transition
data:
data passed to the callback function if the transition is activated
If @to is NULL, this creates first a new target state in the automata and then adds a transition from the @from state to the target state activated by a succession of input of value @token and whose number is between @min and @max, moreover that transition can only be crossed once.
If @to is NULL, this creates first a new target state in the automata and then adds a transition from the @from state to the target state activated by a succession of input of value @token and @token2 and whose number is between @min and @max, moreover that transition can only be crossed once.
am:
an automata
from:
the starting point of the transition
to:
the target point of the transition or NULL
token:
the input string associated to that transition
token2:
the second input string associated to that transition
If @to is NULL, this creates first a new target state in the automata and then adds a transition from the @from state to the target state activated by the value of @token
am:
an automata
from:
the starting point of the transition
to:
the target point of the transition or NULL
token:
the input string associated to that transition
data:
data passed to the callback function if the transition is activated
If @to is NULL, this creates first a new target state in the automata and then adds a transition from the @from state to the target state activated by the value of @token
am:
an automata
from:
the starting point of the transition
to:
the target point of the transition or NULL
token:
the first input string associated to that transition
token2:
the second input string associated to that transition
data:
data passed to the callback function if the transition is activated