Home
last modified time | relevance | path

Searched refs:max_match (Results 1 – 25 of 362) sorted by relevance

12345678910>>...15

/dports/textproc/fldiff/fldiff-1.1/
H A DDiffChooser.cxx185 max_match = min_match + 1; in input_cb()
201 max_match = strlen(matchname); in input_cb()
204 if (matchname[max_match - 1] == '/') in input_cb()
206 max_match --; in input_cb()
207 matchname[max_match] = '\0'; in input_cb()
217 while (max_match > min_match) in input_cb()
218 if (!strncmp(file, matchname, max_match)) in input_cb()
221 max_match --; in input_cb()
224 matchname[max_match] = '\0'; in input_cb()
237 if (first_line && min_match < max_match && in input_cb()
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/js/src/irregexp/
H A DRegExpAST.h71 virtual int max_match() = 0;
100 virtual int max_match() { return max_match_; } in max_match() function
123 virtual int max_match() { return max_match_; } in max_match() function
154 virtual int max_match() { return 0; } in max_match() function
208 virtual int max_match() { return 1; } in max_match() function
278 virtual int max_match() { return length_; } in max_match() function
306 max_match_ = max * body->max_match(); in RegExpQuantifier()
361 virtual int max_match() { return body_->max_match(); } in max_match() function
393 virtual int max_match() { return 0; } in max_match() function
421 virtual int max_match() { return capture_->max_match(); } in max_match() function
[all …]
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/third_party/mozjs-45/extract/js/src/irregexp/
H A DRegExpAST.h71 virtual int max_match() = 0;
100 virtual int max_match() { return max_match_; } in max_match() function
123 virtual int max_match() { return max_match_; } in max_match() function
152 virtual int max_match() { return 0; } in max_match() function
206 virtual int max_match() { return 1; } in max_match() function
276 virtual int max_match() { return length_; } in max_match() function
304 max_match_ = max * body->max_match(); in RegExpQuantifier()
359 virtual int max_match() { return body_->max_match(); } in max_match() function
391 virtual int max_match() { return 0; } in max_match() function
419 virtual int max_match() { return capture_->max_match(); } in max_match() function
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/js/src/irregexp/
H A DRegExpAST.h71 virtual int max_match() = 0;
100 virtual int max_match() override { return max_match_; } in max_match() function
123 virtual int max_match() override { return max_match_; } in max_match() function
154 virtual int max_match() override { return 0; } in max_match() function
208 virtual int max_match() override { return 1; } in max_match() function
278 virtual int max_match() override { return length_; } in max_match() function
306 max_match_ = max * body->max_match(); in RegExpQuantifier()
361 virtual int max_match() override { return captured_body()->max_match(); } in max_match() function
403 virtual int max_match() override { return 0; } in max_match() function
431 virtual int max_match() override { return capture_->max_match(); } in max_match() function
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/js/src/irregexp/
H A DRegExpAST.h71 virtual int max_match() = 0;
100 virtual int max_match() override { return max_match_; } in max_match() function
123 virtual int max_match() override { return max_match_; } in max_match() function
154 virtual int max_match() override { return 0; } in max_match() function
208 virtual int max_match() override { return 1; } in max_match() function
278 virtual int max_match() override { return length_; } in max_match() function
306 max_match_ = max * body->max_match(); in RegExpQuantifier()
361 virtual int max_match() override { return body_->max_match(); } in max_match() function
393 virtual int max_match() override { return 0; } in max_match() function
421 virtual int max_match() override { return capture_->max_match(); } in max_match() function
[all …]
/dports/games/libretro-tyrquake/tyrquake-e76477d/common/
H A Dshell.c175 ST_node_match(struct rb_node *n, const char *str, int min_match, int max_match) in ST_node_match() argument
178 max_match = ST_node_match(n->rb_left, str, min_match, max_match); in ST_node_match()
181 while (max_match > min_match) { in ST_node_match()
182 if (!strncasecmp(str, stree_entry(n)->string, max_match)) in ST_node_match()
184 max_match--; in ST_node_match()
186 max_match = ST_node_match(n->rb_right, str, min_match, max_match); in ST_node_match()
189 return max_match; in ST_node_match()
199 int max_match, min_match, match; in STree_MaxMatch() local
205 max_match = root->minlen; in STree_MaxMatch()
220 match = ST_node_match(n, sn->string, min_match, max_match); in STree_MaxMatch()
/dports/japanese/skkserv/skk-9.6/contrib/kakasi-2.2.5/src/
H A DH2.c186 int max_match, match_more; local
227 max_match = 0;
235 if (max_match < ylen) {
237 max_match = ylen/2;
250 max_match = 1;
260 return (match_more == 0) ? max_match : -max_match;
H A DK2.c182 int max_match, match_more; local
232 max_match = 0;
240 if (max_match < ylen) {
242 max_match = ylen/2;
255 max_match = 1;
265 return (match_more == 0) ? max_match : -max_match;
H A Dk2.c139 int max_match, match_more; local
173 max_match = 0;
181 if (max_match < ylen) {
183 max_match = ylen;
200 return (match_more == 0) ? max_match : -max_match;
/dports/www/firefox-esr/firefox-91.8.0/js/src/irregexp/imported/
H A Dregexp-ast.h206 virtual int max_match() = 0;
231 int max_match() override { return max_match_; } in max_match() function
255 int max_match() override { return max_match_; } in max_match() function
285 int max_match() override { return 0; } in max_match() function
332 int max_match() override { return 2; } in max_match() function
396 int max_match() override { return length_; } in max_match() function
426 max_match_ = max * body->max_match(); in RegExpQuantifier()
480 max_match_ = body->max_match(); in set_body()
501 max_match_(body->max_match()) {} in RegExpGroup()
541 int max_match() override { return 0; } in max_match() function
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/regexp/
H A Dregexp-ast.h212 virtual int max_match() = 0;
238 int max_match() override { return max_match_; } in max_match() function
262 int max_match() override { return max_match_; } in max_match() function
292 int max_match() override { return 0; } in max_match() function
339 int max_match() override { return 2; } in max_match() function
403 int max_match() override { return length_; } in max_match() function
433 max_match_ = max * body->max_match(); in RegExpQuantifier()
486 max_match_ = body->max_match(); in set_body()
507 max_match_(body->max_match()) {} in RegExpGroup()
547 int max_match() override { return 0; } in max_match() function
[all …]
/dports/www/firefox/firefox-99.0/js/src/irregexp/imported/
H A Dregexp-ast.h206 virtual int max_match() = 0;
231 int max_match() override { return max_match_; } in max_match() function
255 int max_match() override { return max_match_; } in max_match() function
285 int max_match() override { return 0; } in max_match() function
332 int max_match() override { return 2; } in max_match() function
396 int max_match() override { return length_; } in max_match() function
426 max_match_ = max * body->max_match(); in RegExpQuantifier()
480 max_match_ = body->max_match(); in set_body()
501 max_match_(body->max_match()) {} in RegExpGroup()
541 int max_match() override { return 0; } in max_match() function
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/js/src/irregexp/imported/
H A Dregexp-ast.h206 virtual int max_match() = 0;
231 int max_match() override { return max_match_; } in max_match() function
255 int max_match() override { return max_match_; } in max_match() function
285 int max_match() override { return 0; } in max_match() function
332 int max_match() override { return 2; } in max_match() function
396 int max_match() override { return length_; } in max_match() function
426 max_match_ = max * body->max_match(); in RegExpQuantifier()
480 max_match_ = body->max_match(); in set_body()
501 max_match_(body->max_match()) {} in RegExpGroup()
541 int max_match() override { return 0; } in max_match() function
[all …]
/dports/www/node10/node-v10.24.1/deps/v8/src/regexp/
H A Dregexp-ast.h209 virtual int max_match() = 0;
234 int max_match() override { return max_match_; } in max_match() function
258 int max_match() override { return max_match_; } in max_match() function
287 int max_match() override { return 0; } in max_match() function
333 int max_match() override { return 2; } in max_match() function
397 int max_match() override { return length_; } in max_match() function
423 max_match_ = max * body->max_match(); in RegExpQuantifier()
467 int max_match() override { return body_->max_match(); } in max_match() function
495 int max_match() override { return body_->max_match(); } in max_match() function
522 int max_match() override { return 0; } in max_match() function
[all …]
/dports/lang/v8/v8-9.6.180.12/src/regexp/
H A Dregexp-ast.h211 virtual int max_match() = 0;
236 int max_match() override { return max_match_; } in max_match() function
260 int max_match() override { return max_match_; } in max_match() function
289 int max_match() override { return 0; } in max_match() function
330 int max_match() override { return 2; } in max_match() function
388 int max_match() override { return length_; } in max_match() function
418 max_match_ = max * body->max_match(); in RegExpQuantifier()
472 max_match_ = body->max_match(); in set_body()
493 max_match_(body->max_match()) {} in RegExpGroup()
533 int max_match() override { return 0; } in max_match() function
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/regexp/
H A Dregexp-ast.h212 virtual int max_match() = 0;
238 int max_match() override { return max_match_; } in max_match() function
262 int max_match() override { return max_match_; } in max_match() function
292 int max_match() override { return 0; } in max_match() function
339 int max_match() override { return 2; } in max_match() function
403 int max_match() override { return length_; } in max_match() function
433 max_match_ = max * body->max_match(); in RegExpQuantifier()
487 max_match_ = body->max_match(); in set_body()
508 max_match_(body->max_match()) {} in RegExpGroup()
548 int max_match() override { return 0; } in max_match() function
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/js/src/new-regexp/
H A Dregexp-ast.h207 virtual int max_match() = 0;
233 int max_match() override { return max_match_; } in max_match() function
257 int max_match() override { return max_match_; } in max_match() function
287 int max_match() override { return 0; } in max_match() function
334 int max_match() override { return 2; } in max_match() function
398 int max_match() override { return length_; } in max_match() function
428 max_match_ = max * body->max_match(); in RegExpQuantifier()
481 max_match_ = body->max_match(); in set_body()
502 max_match_(body->max_match()) {} in RegExpGroup()
542 int max_match() override { return 0; } in max_match() function
[all …]
/dports/graphics/colmap/colmap-3.6/lib/SiftGPU/
H A DSiftMatchCU.cpp148 int SiftMatchCU::GetGuidedSiftMatch(int max_match, uint32_t match_buffer[][2], in GetGuidedSiftMatch() argument
158 return GetBestMatch(max_match, match_buffer, distmax, ratiomax, mbm); in GetGuidedSiftMatch()
161 int SiftMatchCU::GetSiftMatch(int max_match, uint32_t match_buffer[][2], in GetSiftMatch() argument
167 return GetBestMatch(max_match, match_buffer, distmax, ratiomax, mbm); in GetSiftMatch()
170 int SiftMatchCU::GetBestMatch(int max_match, uint32_t match_buffer[][2], in GetBestMatch() argument
184 for (int i = 0; i < _num_sift[0] && nmatch < max_match; ++i) { in GetBestMatch()
/dports/lang/fpc-source/fpc-3.2.2/packages/chm/src/
H A Dpaslznonslide.pas53 max_match : longint;
74 …procedure lz_init(lzi:plz_info; wsize:longint; max_dist:longint; max_match:longint; min_match:long…
98 procedure lz_init(lzi:plz_info; wsize:longint; max_dist:longint; max_match:longint; min_match:longi…
107 if (max_match > wsize) then
108 lzi^.max_match := wsize
110 lzi^.max_match := max_match;
221 for maxlen := 1 to lzi^.max_match-1 do begin
292 holdback := lzi^.max_match;
/dports/misc/fpc-chm/fpc-3.2.2/packages/chm/src/
H A Dpaslznonslide.pas53 max_match : longint;
74 …procedure lz_init(lzi:plz_info; wsize:longint; max_dist:longint; max_match:longint; min_match:long…
98 procedure lz_init(lzi:plz_info; wsize:longint; max_dist:longint; max_match:longint; min_match:longi…
107 if (max_match > wsize) then
108 lzi^.max_match := wsize
110 lzi^.max_match := max_match;
221 for maxlen := 1 to lzi^.max_match-1 do begin
292 holdback := lzi^.max_match;
/dports/japanese/kakasi/kakasi-2.3.5/src/
H A Dhh2.c595 int max_match, match_more; local
640 max_match = 0;
648 if (max_match < ylen) {
650 max_match = ylen/2;
663 max_match = 1;
673 return (match_more == 0) ? max_match : -max_match;
H A Dkk2.c593 int max_match, match_more; local
647 max_match = 0;
655 if (max_match < ylen) {
657 max_match = ylen/2;
670 max_match = 1;
680 return (match_more == 0) ? max_match : -max_match;
/dports/japanese/kakasi/kakasi-2.3.5/lib/
H A Dlibhh2.c595 int max_match, match_more; local
640 max_match = 0;
648 if (max_match < ylen) {
650 max_match = ylen/2;
663 max_match = 1;
673 return (match_more == 0) ? max_match : -max_match;
H A Dlibkk2.c593 int max_match, match_more; local
647 max_match = 0;
655 if (max_match < ylen) {
657 max_match = ylen/2;
670 max_match = 1;
680 return (match_more == 0) ? max_match : -max_match;
H A Dlibk2.c413 int max_match, match_more; local
451 max_match = 0;
464 if (max_match < ylen) {
466 max_match = ylen;
483 return (match_more == 0) ? max_match : -max_match;

12345678910>>...15