Home
last modified time | relevance | path

Searched refs:counter_step (Results 1 – 6 of 6) sorted by relevance

/dports/net-p2p/bazarr/bazarr-1.0.2/libs/pygments/formatters/
H A Dsvg.py137 counter_step = self.linenostep
142 if counter % counter_step == 0:
161 if self.linenos and counter % counter_step == 0:
/dports/textproc/py-pygments/stage/usr/local/lib/python3.8/site-packages/pygments/formatters/
H A Dsvg.py138 counter_step = self.linenostep
143 if counter % counter_step == 0:
161 if self.linenos and counter % counter_step == 0:
/dports/textproc/py-pygments/Pygments-2.7.2/build/lib/pygments/formatters/
H A Dsvg.py138 counter_step = self.linenostep
143 if counter % counter_step == 0:
161 if self.linenos and counter % counter_step == 0:
/dports/textproc/py-pygments/Pygments-2.7.2/pygments/formatters/
H A Dsvg.py138 counter_step = self.linenostep
143 if counter % counter_step == 0:
161 if self.linenos and counter % counter_step == 0:
/dports/games/diaspora/Diaspora_R1_Linux/Diaspora/fs2_open/code/parse/
H A Dsexp.cpp8827 int i, counter_start, counter_stop, counter_step; in eval_for_counter() local
8837 counter_step = (n >= 0) ? eval_num(n) : 1; in eval_for_counter()
8840 if (counter_step == 0) in eval_for_counter()
8842 …t of 0 is illegal! (start=%d, stop=%d, increment=%d)", counter_start, counter_stop, counter_step); in eval_for_counter()
8847 …ues are identical! (start=%d, stop=%d, increment=%d)", counter_start, counter_stop, counter_step); in eval_for_counter()
8850 else if (sign(counter_stop - counter_start) != sign(counter_step)) in eval_for_counter()
8852 … the given values! (start=%d, stop=%d, increment=%d)", counter_start, counter_stop, counter_step); in eval_for_counter()
8858 …for (i = counter_start; ((counter_step > 0) ? i <= counter_stop : i >= counter_stop); i += counter… in eval_for_counter()
/dports/games/fs2open/fs2open.github.com-release_21_4_1/code/parse/
H A Dsexp.cpp10005 int i, count, counter_start, counter_stop, counter_step; in eval_for_counter() local
10013 count = eval_nums(n, is_nan, is_nan_forever, counter_start, counter_stop, counter_step); in eval_for_counter()
10019 counter_step = 1; in eval_for_counter()
10022 if (counter_step == 0) in eval_for_counter()
10024 …t of 0 is illegal! (start=%d, stop=%d, increment=%d)", counter_start, counter_stop, counter_step); in eval_for_counter()
10029 …ues are identical! (start=%d, stop=%d, increment=%d)", counter_start, counter_stop, counter_step); in eval_for_counter()
10032 else if (sign(counter_stop - counter_start) != sign(counter_step)) in eval_for_counter()
10034 … the given values! (start=%d, stop=%d, increment=%d)", counter_start, counter_stop, counter_step); in eval_for_counter()
10039 …for (i = counter_start; ((counter_step > 0) ? i <= counter_stop : i >= counter_stop); i += counter… in eval_for_counter()