Lines Matching refs:cNext

34 	char cNext;  in jumpOver()  local
35 for ( cNext = io_rText.CurChar(); in jumpOver()
36 cNext == in_c; in jumpOver()
37 cNext = io_rText.MoveOn() ) in jumpOver()
40 return cNext; in jumpOver()
47 char cNext; in jumpTo() local
48 for ( cNext = io_rText.CurChar(); in jumpTo()
49 cNext != in_c AND cNext != 0; in jumpTo()
50 cNext = io_rText.MoveOn() ) in jumpTo()
53 return cNext; in jumpTo()
61 char cNext; in jumpTo() local
62 for ( cNext = io_rText.CurChar(); in jumpTo()
63 cNext != in_c1 AND cNext != in_c2 AND cNext != 0; in jumpTo()
64 cNext = io_rText.MoveOn() ) in jumpTo()
67 return cNext; in jumpTo()
76 char cNext; in jumpTo() local
77 for ( cNext = io_rText.CurChar(); in jumpTo()
78 cNext != in_c1 AND cNext != in_c2 AND cNext != in_c3 AND cNext != 0; in jumpTo()
79 cNext = io_rText.MoveOn() ) in jumpTo()
82 return cNext; in jumpTo()
92 char cNext; in jumpTo() local
93 for ( cNext = io_rText.CurChar(); in jumpTo()
94 cNext != in_c1 AND cNext != in_c2 AND cNext != in_c3 in jumpTo()
95 AND cNext != in_c4 AND cNext != 0; in jumpTo()
96 cNext = io_rText.MoveOn() ) in jumpTo()
99 return cNext; in jumpTo()
105 char cNext; in jumpOverWhite() local
106 for ( cNext = io_rText.CurChar(); in jumpOverWhite()
107 static_cast<UINT8>(cNext) < 33 in jumpOverWhite()
108 AND cNext != 0 AND cNext != 13 AND cNext != 10; in jumpOverWhite()
109 cNext = io_rText.MoveOn() ) in jumpOverWhite()
112 return cNext; in jumpOverWhite()
118 char cNext; in jumpToWhite() local
119 for ( cNext = io_rText.CurChar(); in jumpToWhite()
120 static_cast<UINT8>(cNext) > 32; in jumpToWhite()
121 cNext = io_rText.MoveOn() ) in jumpToWhite()
124 return cNext; in jumpToWhite()
131 char cNext; in jumpToEol() local
132 for ( cNext = io_rText.CurChar(); in jumpToEol()
133 cNext != 13 AND cNext != 10 AND cNext != NULCH; in jumpToEol()
134 cNext = io_rText.MoveOn() ) in jumpToEol()
136 if ( cNext == '\\') in jumpToEol()
138 cNext = io_rText.MoveOn(); in jumpToEol()
139 if ( cNext == 13 ) in jumpToEol()
141 if ( cNext == 10 ) in jumpToEol()
145 return cNext; in jumpToEol()
151 char cNext; in jumpToEol() local
152 for ( cNext = io_rText.CurChar(); in jumpToEol()
153 cNext != 13 AND cNext != 10 AND cNext != NULCH; in jumpToEol()
154 cNext = io_rText.MoveOn() ) in jumpToEol()
156 if ( cNext == '\\') in jumpToEol()
159 return cNext; in jumpToEol()
165 char cNext = io_rText.CurChar(); in jumpOverEol() local
167 if (cNext == 13) in jumpOverEol()
169 if (cNext == 10) in jumpOverEol()
171 return cNext; in jumpOverEol()
181 char cNext; in jumpToMatchingBracket() local
182 for ( cNext = io_rText.CurChar(); in jumpToMatchingBracket()
183 nCounter - (cNext == in_cEnd ? 1 : 0) > 0 AND cNext != NULCH; in jumpToMatchingBracket()
184 cNext = io_rText.MoveOn() ) in jumpToMatchingBracket()
186 if (cNext == in_cEnd) in jumpToMatchingBracket()
188 else if (cNext == in_cBegin) in jumpToMatchingBracket()
192 return cNext; in jumpToMatchingBracket()