/dports/mail/roundcube/roundcubemail-1.5.1/program/lib/Roundcube/spellchecker/ |
H A D | pspell.php | 114 if (count($suggestions) > self::MAX_SUGGESTIONS) { 115 $suggestions = array_slice($suggestions, 0, self::MAX_SUGGESTIONS); 142 if (count($suggestions) > self::MAX_SUGGESTIONS) { 143 $suggestions = array_slice($suggestions, 0, self::MAX_SUGGESTIONS);
|
H A D | enchant.php | 108 if (is_array($suggestions) && count($suggestions) > self::MAX_SUGGESTIONS) { 109 $suggestions = array_slice($suggestions, 0, self::MAX_SUGGESTIONS); 137 if (is_array($suggestions) && count($suggestions) > self::MAX_SUGGESTIONS) { 138 $suggestions = array_slice($suggestions, 0, self::MAX_SUGGESTIONS);
|
H A D | engine.php | 29 const MAX_SUGGESTIONS = 10; define in rcube_spellchecker_engine
|
H A D | atd.php | 160 if (++$num == self::MAX_SUGGESTIONS) {
|
/dports/www/grafana8/grafana-8.3.6/public/app/plugins/datasource/graphite/state/ |
H A D | providers.ts | 20 const MAX_SUGGESTIONS = 5000; constant 87 altSegments.splice(MAX_SUGGESTIONS); 126 limit: MAX_SUGGESTIONS, 157 limit: MAX_SUGGESTIONS, 193 limit: MAX_SUGGESTIONS,
|
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/googlecloudsdk/calliope/ |
H A D | suggest_commands.py | 56 MAX_SUGGESTIONS = 10 # Maximum number of suggestions. variable 298 if len(suggested_commands) >= MAX_SUGGESTIONS: 317 if len(suggested_groups) >= MAX_SUGGESTIONS:
|
/dports/deskutils/maliit-keyboard/keyboard-2.1.0/plugins/pinyin/src/ |
H A D | pinyinadapter.cpp | 33 #define MAX_SUGGESTIONS 100 macro 239 len = len > MAX_SUGGESTIONS ? MAX_SUGGESTIONS : len; in genCandidatesForCurrentSequence()
|
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/tools/git/ |
H A D | README | 27 [--max-suggestions MAX_SUGGESTIONS] 44 --max-suggestions MAX_SUGGESTIONS
|
/dports/www/chromium-legacy/chromium-88.0.4324.182/tools/git/ |
H A D | README | 27 [--max-suggestions MAX_SUGGESTIONS] 44 --max-suggestions MAX_SUGGESTIONS
|
/dports/mail/evolution/evolution-3.42.1/src/e-util/ |
H A D | e-spell-checker.c | 35 #define MAX_SUGGESTIONS 10 macro 697 guesses = g_new0 (gchar *, MAX_SUGGESTIONS + 1); in e_spell_checker_get_guesses_for_word() 710 while (suggestions != NULL && ii < MAX_SUGGESTIONS) { in e_spell_checker_get_guesses_for_word() 720 if (ii >= MAX_SUGGESTIONS) in e_spell_checker_get_guesses_for_word()
|
/dports/devel/RStudio/rstudio-2021.09.1-372/src/gwt/src/org/rstudio/studio/client/workbench/views/source/editors/text/ |
H A D | TextEditingTargetSpelling.java | 201 if (i >= MAX_SUGGESTIONS) in injectContextMenuHandler() 290 private final static int MAX_SUGGESTIONS = 5; field in TextEditingTargetSpelling
|
/dports/textproc/nuspell/nuspell-5.0.1/src/nuspell/ |
H A D | aff_data.hxx | 90 static constexpr auto MAX_SUGGESTIONS = size_t(16); member
|
H A D | suggester.cxx | 1020 min(MAX_SUGGESTIONS, old_num_sugs + max_ngram_suggestions); in ngram_suggest()
|
/dports/lang/spidermonkey78/firefox-78.9.0/browser/actors/ |
H A D | ContentSearchParent.jsm | 32 const MAX_SUGGESTIONS = 6; 268 controller.maxLocalResults = ok ? MAX_LOCAL_SUGGESTIONS : MAX_SUGGESTIONS; 269 controller.maxRemoteResults = ok ? MAX_SUGGESTIONS : 0;
|
/dports/lang/spidermonkey60/firefox-60.9.0/browser/modules/ |
H A D | ContentSearch.jsm | 25 const MAX_SUGGESTIONS = 6; 265 controller.maxLocalResults = ok ? MAX_LOCAL_SUGGESTIONS : MAX_SUGGESTIONS; 266 controller.maxRemoteResults = ok ? MAX_SUGGESTIONS : 0;
|
/dports/www/firefox-legacy/firefox-52.8.0esr/browser/modules/ |
H A D | ContentSearch.jsm | 28 const MAX_SUGGESTIONS = 6; 271 controller.maxLocalResults = ok ? MAX_LOCAL_SUGGESTIONS : MAX_SUGGESTIONS; 272 controller.maxRemoteResults = ok ? MAX_SUGGESTIONS : 0;
|
/dports/www/firefox/firefox-99.0/browser/actors/ |
H A D | ContentSearchParent.jsm | 25 const MAX_SUGGESTIONS = 6; 279 controller.maxLocalResults = ok ? MAX_LOCAL_SUGGESTIONS : MAX_SUGGESTIONS; 280 controller.maxRemoteResults = ok ? MAX_SUGGESTIONS : 0;
|
/dports/www/firefox-esr/firefox-91.8.0/browser/actors/ |
H A D | ContentSearchParent.jsm | 24 const MAX_SUGGESTIONS = 6; 261 controller.maxLocalResults = ok ? MAX_LOCAL_SUGGESTIONS : MAX_SUGGESTIONS; 262 controller.maxRemoteResults = ok ? MAX_SUGGESTIONS : 0;
|
/dports/mail/thunderbird/thunderbird-91.8.0/browser/actors/ |
H A D | ContentSearchParent.jsm | 24 const MAX_SUGGESTIONS = 6; 261 controller.maxLocalResults = ok ? MAX_LOCAL_SUGGESTIONS : MAX_SUGGESTIONS; 262 controller.maxRemoteResults = ok ? MAX_SUGGESTIONS : 0;
|
/dports/devel/racer/racer-2.1.48/cargo-crates/rustc-ap-rustc_errors-718.0.0/src/ |
H A D | emitter.rs | 536 pub const MAX_SUGGESTIONS: usize = 4; const 1582 for (complete, parts, only_capitalization) in suggestions.iter().take(MAX_SUGGESTIONS) { in emit_suggestion_default() 1690 if suggestions.len() > MAX_SUGGESTIONS { in emit_suggestion_default() 1691 let others = suggestions.len() - MAX_SUGGESTIONS; in emit_suggestion_default()
|
/dports/devel/racer/racer-2.1.48/cargo-crates/rustc-ap-rustc_errors-722.0.0/src/ |
H A D | emitter.rs | 550 pub const MAX_SUGGESTIONS: usize = 4; const 1596 for (complete, parts, only_capitalization) in suggestions.iter().take(MAX_SUGGESTIONS) { in emit_suggestion_default() 1704 if suggestions.len() > MAX_SUGGESTIONS { in emit_suggestion_default() 1705 let others = suggestions.len() - MAX_SUGGESTIONS; in emit_suggestion_default()
|
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_errors/src/ |
H A D | emitter.rs | 557 pub const MAX_SUGGESTIONS: usize = 4; const 1623 suggestions.iter().take(MAX_SUGGESTIONS) in emit_suggestion_default() 1805 if suggestions.len() > MAX_SUGGESTIONS { in emit_suggestion_default() 1806 let others = suggestions.len() - MAX_SUGGESTIONS; in emit_suggestion_default()
|
/dports/lang/rust/rustc-1.58.1-src/vendor/rustc-ap-rustc_errors/src/ |
H A D | emitter.rs | 550 pub const MAX_SUGGESTIONS: usize = 4; const 1596 for (complete, parts, only_capitalization) in suggestions.iter().take(MAX_SUGGESTIONS) { in emit_suggestion_default() 1704 if suggestions.len() > MAX_SUGGESTIONS { in emit_suggestion_default() 1705 let others = suggestions.len() - MAX_SUGGESTIONS; in emit_suggestion_default()
|
/dports/databases/opentsdb/opentsdb-2.3.0/src/uid/ |
H A D | UniqueId.java | 85 private static final short MAX_SUGGESTIONS = 25; field in UniqueId 860 return suggest(search, MAX_SUGGESTIONS); in suggest()
|
/dports/www/grafana8/grafana-8.3.6/public/build/ |
H A D | graphitePlugin.0e38943fa459e872fe93.js.map | 1 …MAX_SUGGESTIONS limits in a single dropdown.\n *\n * MAX_SUGGESTIONS is per metrics and tags separ…
|