OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:NodeFlags
(Results
1 - 3
of
3
) sorted by null
/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/pt_common/
dynamic_pt_reading_utils.h
28
typedef uint8_t
NodeFlags
;
49
static AK_FORCE_INLINE bool isMoved(const
NodeFlags
flags) {
53
static AK_FORCE_INLINE bool isDeleted(const
NodeFlags
flags) {
57
static AK_FORCE_INLINE bool willBecomeNonTerminal(const
NodeFlags
flags) {
61
static AK_FORCE_INLINE
NodeFlags
updateAndGetFlags(const
NodeFlags
originalFlags,
63
NodeFlags
flags = originalFlags;
76
static const
NodeFlags
MASK_MOVED;
77
static const
NodeFlags
FLAG_IS_NOT_MOVED;
78
static const
NodeFlags
FLAG_IS_MOVED
[
all
...]
patricia_trie_reading_utils.h
31
typedef uint8_t
NodeFlags
;
35
static
NodeFlags
getFlagsAndAdvancePosition(const uint8_t *const buffer, int *const pos);
40
static int getCharsAndAdvancePosition(const uint8_t *const buffer, const
NodeFlags
flags,
44
static int skipCharacters(const uint8_t *const buffer, const
NodeFlags
flags,
50
const
NodeFlags
flags, int *const pos);
55
static AK_FORCE_INLINE bool isBlacklisted(const
NodeFlags
flags) {
59
static AK_FORCE_INLINE bool isNotAWord(const
NodeFlags
flags) {
63
static AK_FORCE_INLINE bool isTerminal(const
NodeFlags
flags) {
67
static AK_FORCE_INLINE bool hasShortcutTargets(const
NodeFlags
flags) {
71
static AK_FORCE_INLINE bool hasBigrams(const
NodeFlags
flags)
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
Node.h
478
bool isInTreeScope() const { return getFlag(static_cast<
NodeFlags
>(InDocumentFlag | IsInShadowTreeFlag)); }
682
enum
NodeFlags
{
736
bool getFlag(
NodeFlags
mask) const { return m_nodeFlags & mask; }
737
void setFlag(bool f,
NodeFlags
mask) { m_nodeFlags = (m_nodeFlags & ~mask) | (-(int32_t)f & mask); }
738
void setFlag(
NodeFlags
mask) { m_nodeFlags |= mask; }
739
void clearFlag(
NodeFlags
mask) { m_nodeFlags &= ~mask; }
[
all
...]
Completed in 456 milliseconds