Home | History | Annotate | Download | only in src

Lines Matching full:label

36   Label* on_match;
68 // stack by an earlier PushBacktrack(Label*).
70 virtual void Bind(Label* label) = 0;
71 virtual void CheckAtStart(Label* on_at_start) = 0;
74 virtual void CheckCharacter(uint32_t c, Label* on_equal) = 0;
79 Label* on_equal) = 0;
80 virtual void CheckCharacterGT(uc16 limit, Label* on_greater) = 0;
81 virtual void CheckCharacterLT(uc16 limit, Label* on_less) = 0;
83 // fail to match then goto the on_failure label. If check_eos is set then
86 // If the label is NULL then we should pop a backtrack address off
91 Label* on_failure,
93 virtual void CheckGreedyLoop(Label* on_tos_equals_current_position) = 0;
94 virtual void CheckNotAtStart(Label* on_not_at_start) = 0;
95 virtual void CheckNotBackReference(int start_reg, Label* on_no_match) = 0;
97 Label* on_no_match) = 0;
99 // fail to match then goto the on_failure label. End of input always
100 // matches. If the label is NULL then we should pop a backtrack address off
102 virtual void CheckNotCharacter(uint32_t c, Label* on_not_equal) = 0;
105 Label* on_not_equal) = 0;
111 Label* on_not_equal) = 0;
114 Label* on_not_equal) = 0;
118 virtual void CheckPosition(int cp_offset, Label* on_outside_input) {
126 Label* on_no_match) {
131 virtual void GoTo(Label* label) = 0;
132 // Check whether a register is >= a given constant and go to a label if it
133 // is. Backtracks instead if the label is NULL.
134 virtual void IfRegisterGE(int reg, int comparand, Label* if_ge) = 0;
135 // Check whether a register is < a given constant and go to a label if it is.
136 // Backtracks instead if the label is NULL.
137 virtual void IfRegisterLT(int reg, int comparand, Label* if_lt) = 0;
139 // label if it is.
140 virtual void IfRegisterEqPos(int reg, Label* if_eq) = 0;
143 Label* on_end_of_input,
148 // Pushes the label on the backtrack stack, so that a following Backtrack
149 // will go to this label. Always checks the backtrack stack limit.
150 virtual void PushBacktrack(Label* label) = 0;