Home
last modified time | relevance | path

Searched refs:maybe_prop (Results 1 – 3 of 3) sorted by relevance

/dports/devel/cpp2py/cpp2py-2.0.0/cpp2py/
H A Dcpp2desc.py211 def maybe_prop(m): function
214 plist1 = [m for m in method_list if maybe_prop(m)]
215 mlist = [m for m in method_list if not maybe_prop(m)]
/dports/graphics/tesseract/tesseract-5.0.0/src/textord/
H A Dtopitch.cpp526 int32_t maybe_prop = 0; in try_rows_fixed() local
547 count_block_votes(block, def_fixed, def_prop, maybe_fixed, maybe_prop, corr_fixed, corr_prop, in try_rows_fixed()
560 } else if (maybe_fixed > maybe_prop * textord_words_veto_power) { in try_rows_fixed()
562 } else if (maybe_prop > maybe_fixed * textord_words_veto_power) { in try_rows_fixed()
583 int32_t maybe_prop = 0; in print_block_counts() local
588 count_block_votes(block, def_fixed, def_prop, maybe_fixed, maybe_prop, corr_fixed, corr_prop, in print_block_counts()
594 tprintf(" fixed, (%d,%d,%d)", def_prop, maybe_prop, corr_prop); in print_block_counts()
595 if (textord_blocksall_fixed && (def_prop || maybe_prop || corr_prop)) { in print_block_counts()
610 int32_t &def_prop, int32_t &maybe_fixed, int32_t &maybe_prop, int32_t &corr_fixed, in count_block_votes() argument
625 maybe_prop++; in count_block_votes()
H A Dtopitch.h79 int32_t &def_prop, int32_t &maybe_fixed, int32_t &maybe_prop, int32_t &corr_fixed,