Home | History | Annotate | Download | only in src

Lines Matching refs:Label

55   virtual void Bind(Label* label);
60 virtual void GoTo(Label* label);
61 virtual void PushBacktrack(Label* label);
76 Label* on_end_of_input,
79 virtual void CheckCharacter(unsigned c, Label* on_equal);
82 Label* on_equal);
83 virtual void CheckCharacterGT(uc16 limit, Label* on_greater);
84 virtual void CheckCharacterLT(uc16 limit, Label* on_less);
85 virtual void CheckGreedyLoop(Label* on_tos_equals_current_position);
86 virtual void CheckAtStart(Label* on_at_start);
87 virtual void CheckNotAtStart(Label* on_not_at_start);
88 virtual void CheckNotCharacter(unsigned c, Label* on_not_equal);
91 Label* on_not_equal);
95 Label* on_not_equal);
96 virtual void CheckNotBackReference(int start_reg, Label* on_no_match);
98 Label* on_no_match);
99 virtual void CheckNotRegistersEqual(int reg1, int reg2, Label* on_not_equal);
102 Label* on_failure,
104 virtual void IfRegisterLT(int register_index, int comparand, Label* if_lt);
105 virtual void IfRegisterGE(int register_index, int comparand, Label* if_ge);
106 virtual void IfRegisterEqPos(int register_index, Label* if_eq);
114 inline void EmitOrLink(Label* label);
128 Label backtrack_;