HomeSort by relevance Sort by last modified time
    Searched refs:isDeleted (Results 1 - 25 of 62) sorted by null

1 2 3

  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/pt_common/
dynamic_pt_reading_utils.h 53 static AK_FORCE_INLINE bool isDeleted(const NodeFlags flags) {
62 const bool isMoved, const bool isDeleted, const bool willBecomeNonTerminal) {
67 flags = isDeleted ? ((flags & (~MASK_MOVED)) | FLAG_IS_DELETED) : flags;
68 flags = (!isMoved && !isDeleted && !willBecomeNonTerminal) ?
dynamic_pt_gc_event_listeners.cpp 68 if (!ptNodeParams->isDeleted()) {
113 if (ptNodeParams->isDeleted()) {
pt_node_params.h 130 AK_FORCE_INLINE bool isDeleted() const {
131 return mHasMovedFlag && DynamicPtReadingUtils::isDeleted(mFlags);
dynamic_pt_reading_helper.cpp 31 if (ptNodeParams->isTerminal() && !ptNodeParams->isDeleted()) {
dynamic_pt_reading_helper.h 132 return !isEnd() && !ptNodeParams.isDeleted() && ptNodeParams.isTerminal();
dynamic_pt_updating_helper.cpp 144 if (originalPtNodeParams->isTerminal() && !originalPtNodeParams->isDeleted()) {
  /external/chromium_org/third_party/WebKit/Source/wtf/
HashSetTest.cpp 168 DummyRefCounted(bool& isDeleted) : m_isDeleted(isDeleted) { m_isDeleted = false; }
187 bool isDeleted;
188 RefPtr<DummyRefCounted> ptr = adoptRef(new DummyRefCounted(isDeleted));
203 EXPECT_FALSE(isDeleted);
206 EXPECT_TRUE(isDeleted);
HashMapTest.cpp 142 DummyRefCounted(bool& isDeleted) : m_isDeleted(isDeleted) { m_isDeleted = false; }
161 bool isDeleted;
162 RefPtr<DummyRefCounted> ptr = adoptRef(new DummyRefCounted(isDeleted));
179 EXPECT_FALSE(isDeleted);
183 EXPECT_TRUE(isDeleted);
ListHashSetTest.cpp 249 DummyRefCounted(bool& isDeleted) : m_isDeleted(isDeleted) { m_isDeleted = false; }
268 bool isDeleted;
270 RefPtr<DummyRefCounted> ptr = adoptRef(new DummyRefCounted(isDeleted));
287 EXPECT_FALSE(isDeleted);
291 EXPECT_TRUE(isDeleted);
460 bool isDeleted = false;
463 RefPtr<DummyRefCounted> ptr = adoptRef(new DummyRefCounted(isDeleted));
482 EXPECT_FALSE(isDeleted);
484 EXPECT_TRUE(isDeleted);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLObject.h 58 bool isDeleted() { return m_deleted; }
OESVertexArrayObject.cpp 94 if (arrayObject && (arrayObject->isDeleted() || !arrayObject->validate(0, context()))) {
  /development/samples/SampleSyncAdapter/tests/src/com/example/android/samplesync/client/
UserTest.java 36 assertEquals(false, user.isDeleted());
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBIndex.cpp 77 if (isDeleted()) {
116 if (isDeleted()) {
146 if (isDeleted()) {
190 if (isDeleted()) {
225 bool IDBIndex::isDeleted() const
227 return m_deleted || m_objectStore->isDeleted();
IDBIndex.h 69 bool isDeleted() const;
IDBCursor.cpp 124 if (isDeleted()) {
166 if (isDeleted()) {
226 if (isDeleted()) {
282 if (isDeleted()) {
376 bool IDBCursor::isDeleted() const
379 return m_source->idbObjectStore()->isDeleted();
380 return m_source->idbIndex()->isDeleted();
IDBObjectStore.cpp 91 if (isDeleted()) {
163 if (isDeleted()) {
247 if (isDeleted()) {
284 if (isDeleted()) {
356 if (cursor && !cursor->isDeleted()) {
404 if (isDeleted()) {
465 if (isDeleted()) {
506 if (isDeleted()) {
542 if (isDeleted()) {
583 if (isDeleted()) {
    [all...]
IDBCursor.h 87 bool isDeleted() const;
IDBObjectStore.h 97 bool isDeleted() const { return m_deleted; }
  /external/proguard/src/proguard/classfile/editor/
VariableEditor.java 86 public boolean isDeleted(int instructionOffset)
  /external/chromium_org/tools/clang/blink_gc_plugin/
RecordInfo.cpp 168 it->isDeleted() &&
186 deleted = it->isDeleted();
204 new_deleted = it->isDeleted();
206 placement = !it->isDeleted();
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/backward/v402/
ver4_patricia_trie_policy.cpp 67 bool isTerminal = ptNodeParams.isTerminal() && !ptNodeParams.isDeleted();
141 if (ptNodeParams.isDeleted() || ptNodeParams.isBlacklisted() || ptNodeParams.isNotAWord()) {
177 if (ptNodeParams.isDeleted()) {
189 if (ptNodeParams.isDeleted()) {
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/v4/
ver4_patricia_trie_policy.cpp 57 bool isTerminal = ptNodeParams.isTerminal() && !ptNodeParams.isDeleted();
131 if (ptNodeParams.isDeleted() || ptNodeParams.isBlacklisted() || ptNodeParams.isNotAWord()) {
167 if (ptNodeParams.isDeleted()) {
179 if (ptNodeParams.isDeleted()) {
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
ContactManager.java 141 if (!rawContact.isDeleted()) {
149 if (!rawContact.isDeleted()) {
189 final boolean isDeleted = "1".equals(c.getString(DirtyQuery.COLUMN_DELETED));
200 if (isDeleted) {
254 if (rawContact.isDeleted()) {
    [all...]
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/
RawContact.java 113 public boolean isDeleted() {
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
FatDirectoryEntry.java 61 * @see #isDeleted()
288 public boolean isDeleted() {

Completed in 1017 milliseconds

1 2 3