Searched refs:isDeleted (Results 1 - 25 of 40) sorted by path

12

/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DOESVertexArrayObject.cpp93 if (arrayObject && (arrayObject->isDeleted() || !arrayObject->validate(0, context()))) {
H A DWebGLObject.h59 bool isDeleted() { return m_deleted; } function in class:blink::WebGLObject
H A DWebGLRenderingContextBase.cpp2508 return WebGLGetInfo(program->isDeleted());
2582 return WebGLGetInfo(shader->isDeleted());
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBCursor.cpp105 if (isDeleted()) {
137 if (isDeleted()) {
197 if (isDeleted()) {
253 if (isDeleted()) {
349 bool IDBCursor::isDeleted() const function in class:blink::IDBCursor
352 return m_source->idbObjectStore()->isDeleted();
353 return m_source->idbIndex()->isDeleted();
H A DIDBCursor.h78 bool isDeleted() const;
H A DIDBIndex.cpp76 if (isDeleted()) {
115 if (isDeleted()) {
145 if (isDeleted()) {
189 if (isDeleted()) {
224 bool IDBIndex::isDeleted() const function in class:blink::IDBIndex
226 return m_deleted || m_objectStore->isDeleted();
H A DIDBIndex.h70 bool isDeleted() const;
H A DIDBObjectStore.cpp90 if (isDeleted()) {
162 if (isDeleted()) {
268 if (isDeleted()) {
305 if (isDeleted()) {
377 if (cursor && !cursor->isDeleted()) {
414 if (isDeleted()) {
475 if (isDeleted()) {
516 if (isDeleted()) {
552 if (isDeleted()) {
593 if (isDeleted()) {
[all...]
H A DIDBObjectStore.h98 bool isDeleted() const { return m_deleted; } function in class:blink::IDBObjectStore
/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DHeapTest.cpp5201 inline bool isDeleted() const { return m_value == reinterpret_cast<IntWrapper*>(-1); } function in class:blink::AllocatesOnAssignment
5231 static bool equal(const AllocatesOnAssignment& a, const AllocatesOnAssignment& b) { return !a.isDeleted() && a == b; }
5242 static bool isDeletedValue(const T& value) { return value.isDeleted(); }
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DHashMapTest.cpp142 DummyRefCounted(bool& isDeleted) : m_isDeleted(isDeleted) { m_isDeleted = false; } argument
172 bool isDeleted = false; local
174 RefPtr<DummyRefCounted> ptr = adoptRef(new DummyRefCounted(isDeleted));
191 EXPECT_FALSE(isDeleted);
195 EXPECT_TRUE(isDeleted);
202 bool isDeleted = false; local
207 RefPtr<DummyRefCounted> ptr = adoptRef(new DummyRefCounted(isDeleted));
216 EXPECT_FALSE(isDeleted);
220 EXPECT_TRUE(isDeleted);
[all...]
H A DHashSetTest.cpp168 DummyRefCounted(bool& isDeleted) : m_isDeleted(isDeleted) { m_isDeleted = false; } argument
187 bool isDeleted = false; local
188 RefPtr<DummyRefCounted> ptr = adoptRef(new DummyRefCounted(isDeleted));
203 EXPECT_FALSE(isDeleted);
206 EXPECT_TRUE(isDeleted);
H A DListHashSetTest.cpp249 DummyRefCounted(bool& isDeleted) : m_isDeleted(isDeleted) { m_isDeleted = false; } argument
268 bool isDeleted = false; local
270 RefPtr<DummyRefCounted> ptr = adoptRef(new DummyRefCounted(isDeleted));
287 EXPECT_FALSE(isDeleted);
291 EXPECT_TRUE(isDeleted);
460 bool isDeleted = false; local
463 RefPtr<DummyRefCounted> ptr = adoptRef(new DummyRefCounted(isDeleted));
482 EXPECT_FALSE(isDeleted);
484 EXPECT_TRUE(isDeleted);
[all...]
/external/chromium_org/tools/clang/blink_gc_plugin/
H A DRecordInfo.cpp169 it->isDeleted() &&
187 deleted = it->isDeleted();
205 new_deleted = it->isDeleted();
207 placement = !it->isDeleted();
/external/clang/include/clang/AST/
H A DDecl.h1755 bool isDeleted() const { return getCanonicalDecl()->IsDeleted; }
H A DDeclCXX.h1781 return !(isDeleted() || getCanonicalDecl()->isDefaulted());
/external/clang/lib/AST/
H A DDeclCXX.cpp953 if (!D->isTrivial() || D->getAccess() != AS_public || D->isDeleted())
H A DVTableBuilder.cpp1972 if (MD->isDeleted())
3042 if (MD->isDeleted()) {
/external/clang/lib/CodeGen/
H A DCGCXXABI.cpp52 if (!CD->isDeleted())
H A DCGVTables.cpp504 } else if (cast<CXXMethodDecl>(GD.getDecl())->isDeleted()) {
H A DMicrosoftCXXABI.cpp593 if (!CD->isDeleted())
/external/clang/lib/Sema/
H A DCodeCompleteConsumer.cpp535 if (Function->isDeleted())
H A DSema.cpp780 if (DiagD->isDeleted())
H A DSemaDecl.cpp6175 (OEK == OEK_NonDeleted && !(*I)->isDeleted()) ||
6176 (OEK == OEK_Deleted && (*I)->isDeleted()))
6200 hasDeletedOverridenMethods |= OldMD->isDeleted();
6201 hasNonDeletedOverridenMethods |= !OldMD->isDeleted();
6208 if (hasDeletedOverridenMethods && !MD->isDeleted()) {
6211 if (hasNonDeletedOverridenMethods && MD->isDeleted()) {
H A DSemaDeclCXX.cpp4435 if (MD && MD->isDeleted())
8472 !Constructor->isDeleted()) &&
8760 if (BaseCtor->isDeleted())
8813 !Constructor->isDeleted());
8930 !Destructor->isDeleted()) &&
9610 !CopyAssignOperator->isDeleted()) &&
10023 !MoveAssignOperator->isDeleted()) &&
10356 !CopyConstructor->isDeleted()) &&
10521 !MoveConstructor->isDeleted()) &&
10552 return FD->isDeleted()
[all...]

Completed in 1410 milliseconds

12