OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:isNotAWord
(Results
1 - 3
of
3
) sorted by null
/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/
patricia_trie_reading_utils.h
56
static AK_FORCE_INLINE bool
isNotAWord
(const NodeFlags flags) {
81
const bool
isNotAWord
, const bool isTerminal, const bool hasShortcutTargets,
86
nodeFlags =
isNotAWord
? (nodeFlags | FLAG_IS_NOT_A_WORD) : nodeFlags;
dynamic_patricia_trie_node_reader.h
86
AK_FORCE_INLINE bool
isNotAWord
() const {
87
return PatriciaTrieReadingUtils::
isNotAWord
(mFlags);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
FusionDictionary.java
130
final boolean
isNotAWord
, final boolean isBlacklistEntry) {
137
mIsNotAWord =
isNotAWord
;
143
final boolean
isNotAWord
, final boolean isBlacklistEntry,
150
mIsNotAWord =
isNotAWord
;
261
final boolean
isNotAWord
, final boolean isBlacklistEntry) {
297
mIsNotAWord =
isNotAWord
;
397
* @param
isNotAWord
true if this should not be considered a word (e.g. shortcut only)
400
final ArrayList<WeightedString> shortcutTargets, final boolean
isNotAWord
) {
401
add(getCodePoints(word), frequency, shortcutTargets,
isNotAWord
,
410
* @param
isNotAWord
true if this is not a word for spellcheking purposes (shortcut only or so
[
all
...]
Completed in 290 milliseconds