/external/llvm/lib/Transforms/IPO/ |
D | ExtractGV.cpp | 28 static void makeVisible(GlobalValue &GV, bool Delete) { in makeVisible() argument 30 if (Local || Delete) { in makeVisible() 85 bool Delete = in runOnModule() local 87 if (!Delete) { in runOnModule() 94 makeVisible(*I, Delete); in runOnModule() 96 if (Delete) in runOnModule() 102 bool Delete = in runOnModule() local 104 if (!Delete) { in runOnModule() 109 makeVisible(*I, Delete); in runOnModule() 111 if (Delete) in runOnModule() [all …]
|
/external/regex-re2/re2/testing/ |
D | charclass_test.cc | 122 void Delete(CharClass* cc) { in Delete() function 123 cc->Delete(); in Delete() 132 void Delete(CharClassBuilder* cc) { in Delete() function 179 Delete(ncc); in CorrectCC() 187 Delete(ncc); in CorrectCC() 191 Delete(ncc); in CorrectCC() 209 cc->Delete(); in TEST() 217 cc->Delete(); in TEST()
|
/external/chromium_org/third_party/re2/re2/testing/ |
D | charclass_test.cc | 122 void Delete(CharClass* cc) { in Delete() function 123 cc->Delete(); in Delete() 132 void Delete(CharClassBuilder* cc) { in Delete() function 179 Delete(ncc); in CorrectCC() 187 Delete(ncc); in CorrectCC() 191 Delete(ncc); in CorrectCC() 209 cc->Delete(); in TEST() 217 cc->Delete(); in TEST()
|
/external/chromium_org/v8/src/ |
D | allocation.h | 22 void operator delete(void* p) { Delete(p); } in delete() 26 static void Delete(void* p); 85 INLINE(static void Delete(void* p)) { Malloced::Delete(p); } in INLINE()
|
D | smart-pointers.h | 60 if (p_) Deallocator::Delete(p_); in Reset() 82 ~SmartPointerBase() { if (p_) Deallocator::Delete(p_); } in ~SmartPointerBase() 93 static void Delete(T* array) { in Delete() function 112 static void Delete(T* object) { in Delete() function
|
/external/chromium_org/chrome/installer/util/ |
D | self_cleaning_temp_dir_unittest.cc | 78 EXPECT_TRUE(temp_dir.Delete()); in TEST_F() 83 EXPECT_TRUE(work_dir.Delete()); in TEST_F() 107 EXPECT_TRUE(temp_dir2.Delete()); in TEST_F() 113 EXPECT_TRUE(temp_dir1.Delete()); in TEST_F() 119 EXPECT_TRUE(work_dir.Delete()); in TEST_F() 142 EXPECT_TRUE(work_dir.Delete()); in TEST_F() 169 EXPECT_TRUE(work_dir.Delete()); in TEST_F()
|
/external/llvm/include/llvm/Support/ |
D | FormattedStream.h | 87 formatted_raw_ostream(raw_ostream &Stream, bool Delete = false) 89 setStream(Stream, Delete); in raw_ostream() 101 void setStream(raw_ostream &Stream, bool Delete = false) { 105 DeleteStream = Delete;
|
/external/chromium_org/content/browser/service_worker/ |
D | service_worker_cache_unittest.cc | 165 bool Delete(const ServiceWorkerFetchRequest& request) { in Delete() function in content::ServiceWorkerCacheTest 168 cache_->Delete(CopyFetchRequest(request), in Delete() 401 EXPECT_TRUE(Delete(body_request_)); in TEST_P() 416 EXPECT_TRUE(Delete(no_body_request_)); in TEST_P() 418 EXPECT_FALSE(Delete(no_body_request_)); in TEST_P() 421 EXPECT_TRUE(Delete(no_body_request_)); in TEST_P() 427 EXPECT_TRUE(Delete(body_request_)); in TEST_P() 429 EXPECT_FALSE(Delete(body_request_)); in TEST_P() 432 EXPECT_TRUE(Delete(body_request_)); in TEST_P() 440 EXPECT_TRUE(Delete(no_body_request_)); in TEST_P() [all …]
|
D | service_worker_cache_storage_manager_unittest.cc | 154 bool Delete(const GURL& origin, const std::string& cache_name) { in Delete() function in content::ServiceWorkerCacheStorageManagerTest 308 EXPECT_TRUE(Delete(origin1_, "foo")); in TEST_P() 316 EXPECT_TRUE(Delete(origin1_, "foo")); in TEST_P() 317 EXPECT_FALSE(Delete(origin1_, "foo")); in TEST_P() 346 EXPECT_TRUE(Delete(origin1_, "bar")); in TEST_P() 371 EXPECT_TRUE(Delete(origin1_, "")); in TEST_F() 381 EXPECT_TRUE(Delete(origin1_, "bar")); in TEST_F() 439 EXPECT_TRUE(Delete(origin1_, "foo")); in TEST_F() 453 EXPECT_TRUE(Delete(origin1_, "foo")); in TEST_P()
|
/external/chromium_org/base/memory/ |
D | singleton_unittest.cc | 54 static void Delete(Type* instance) { in Delete() function 57 DefaultSingletonTraits<Type>::Delete(instance); in Delete() 104 static void Delete(CallbackSingletonWithStaticTrait* instance) { in Delete() function 107 StaticMemorySingletonTraits<CallbackSingletonWithStaticTrait>::Delete( in Delete() 139 DefaultSingletonTraits<CallbackSingletonWithLeakTrait>::Delete( in DeleteLeakySingleton()
|
/external/chromium_org/ppapi/thunk/ |
D | ppb_var_dictionary_thunk.cc | 44 void Delete(PP_Var dict, PP_Var key) { in Delete() function 49 dict_var->Delete(key); in Delete() 74 &Delete,
|
D | ppb_file_ref_thunk.cc | 119 int32_t Delete(PP_Resource file_ref, in Delete() function 125 return enter.SetResult(enter.object()->Delete(enter.callback())); in Delete() 177 &Delete, 190 &Delete, 205 &Delete,
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
D | TokenRewriteStream.cs | 308 public virtual void Delete(int index) { in Delete() method in Antlr.Runtime.TokenRewriteStream 309 Delete(DEFAULT_PROGRAM_NAME, index, index); in Delete() 312 public virtual void Delete(int from, int to) { in Delete() method in Antlr.Runtime.TokenRewriteStream 313 Delete(DEFAULT_PROGRAM_NAME, from, to); in Delete() 316 public virtual void Delete(IToken indexT) { in Delete() method in Antlr.Runtime.TokenRewriteStream 317 Delete(DEFAULT_PROGRAM_NAME, indexT, indexT); in Delete() 320 public virtual void Delete(IToken from, IToken to) { in Delete() method in Antlr.Runtime.TokenRewriteStream 321 Delete(DEFAULT_PROGRAM_NAME, from, to); in Delete() 324 public virtual void Delete(string programName, int from, int to) { in Delete() method in Antlr.Runtime.TokenRewriteStream 328 public virtual void Delete(string programName, IToken from, IToken to) { in Delete() method in Antlr.Runtime.TokenRewriteStream
|
/external/lzma/CPP/Common/ |
D | MyVector.cpp | 21 void CBaseRecordVector::DeleteBack() { Delete(_size - 1); } in DeleteBack() 22 void CBaseRecordVector::DeleteFrom(int index) { Delete(index, _size - index); } in DeleteFrom() 79 void CBaseRecordVector::Delete(int index, int num) in Delete() function in CBaseRecordVector
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
D | TokenRewriteStream.cs | 352 public virtual void Delete( int index ) in Delete() method in Antlr.Runtime.TokenRewriteStream 354 Delete( DEFAULT_PROGRAM_NAME, index, index ); in Delete() 357 public virtual void Delete( int from, int to ) in Delete() method in Antlr.Runtime.TokenRewriteStream 359 Delete( DEFAULT_PROGRAM_NAME, from, to ); in Delete() 362 public virtual void Delete( IToken indexT ) in Delete() method in Antlr.Runtime.TokenRewriteStream 364 Delete( DEFAULT_PROGRAM_NAME, indexT, indexT ); in Delete() 367 public virtual void Delete( IToken from, IToken to ) in Delete() method in Antlr.Runtime.TokenRewriteStream 369 Delete( DEFAULT_PROGRAM_NAME, from, to ); in Delete() 372 public virtual void Delete( string programName, int from, int to ) in Delete() method in Antlr.Runtime.TokenRewriteStream 377 public virtual void Delete( string programName, IToken from, IToken to ) in Delete() method in Antlr.Runtime.TokenRewriteStream
|
/external/chromium_org/content/test/data/indexeddb/missing_sst/file__0.indexeddb.leveldb/ |
D | LOG | 4 2013/01/22-15:08:45.940 22865 Delete type=0 #6 5 2013/01/22-15:08:45.940 22865 Delete type=3 #4
|
D | LOG.old | 4 2013/01/22-15:08:45.545 22865 Delete type=0 #3 5 2013/01/22-15:08:45.546 22865 Delete type=3 #2
|
/external/lldb/source/DataFormatters/ |
D | TypeCategory.cpp | 139 TypeCategoryImpl::Delete (ConstString name, in Delete() function in TypeCategoryImpl 144 success = m_summary_nav->Delete(name) || success; in Delete() 146 success = m_regex_summary_nav->Delete(name) || success; in Delete() 148 success = m_filter_nav->Delete(name) || success; in Delete() 150 success = m_regex_filter_nav->Delete(name) || success; in Delete() 153 success = m_synth_nav->Delete(name) || success; in Delete() 155 success = m_regex_synth_nav->Delete(name) || success; in Delete()
|
D | DataVisualization.cpp | 66 DataVisualization::ValueFormats::Delete (const ConstString &type) in Delete() function in DataVisualization::ValueFormats 68 return GetFormatManager().GetValueNavigator().Delete(type); in Delete() 174 DataVisualization::Categories::Delete (const ConstString &category) in Delete() function in DataVisualization::Categories 258 DataVisualization::NamedSummaryFormats::Delete (const ConstString &type) in Delete() function in DataVisualization::NamedSummaryFormats 260 return GetFormatManager().GetNamedSummaryNavigator().Delete(type); in Delete()
|
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/ |
D | leveldb_wrapper_unittest.cc | 122 itr->Delete(); in TEST_F() 209 GetDB()->Delete("c"); // Remove a pending entry. in TEST_F() 210 GetDB()->Delete("ab"); // Remove a committed entry. in TEST_F() 228 GetDB()->Delete("c"); in TEST_F() 229 GetDB()->Delete("ab"); in TEST_F()
|
/external/chromium_org/base/ |
D | lazy_instance.h | 72 static void Delete(Type* instance) { in Delete() function 101 static void Delete(Type* instance) { in Delete() function 201 Traits::Delete(me->instance()); in OnExit()
|
/external/chromium_org/third_party/leveldatabase/src/include/leveldb/ |
D | write_batch.h | 40 void Delete(const Slice& key); 50 virtual void Delete(const Slice& key) = 0;
|
/external/lldb/include/lldb/DataFormatters/ |
D | DataVisualization.h | 52 Delete (const ConstString &type); 113 Delete (const ConstString &type); 138 Delete (const ConstString &category);
|
/external/lldb/source/API/ |
D | SBTypeCategory.cpp | 327 return DataVisualization::ValueFormats::Delete(ConstString(type_name.GetName())); in DeleteTypeFormat() 397 return m_opaque_sp->GetRegexSummaryNavigator()->Delete(ConstString(type_name.GetName())); in DeleteTypeSummary() 399 return m_opaque_sp->GetSummaryNavigator()->Delete(ConstString(type_name.GetName())); in DeleteTypeSummary() 433 return m_opaque_sp->GetRegexFilterNavigator()->Delete(ConstString(type_name.GetName())); in DeleteTypeFilter() 435 return m_opaque_sp->GetFilterNavigator()->Delete(ConstString(type_name.GetName())); in DeleteTypeFilter() 504 return m_opaque_sp->GetRegexSyntheticNavigator()->Delete(ConstString(type_name.GetName())); in DeleteTypeSynthetic() 506 return m_opaque_sp->GetSyntheticNavigator()->Delete(ConstString(type_name.GetName())); in DeleteTypeSynthetic()
|
/external/chromium_org/base/files/ |
D | scoped_temp_dir_unittest.cc | 87 EXPECT_TRUE(dir.Delete()); in TEST() 105 EXPECT_FALSE(dir.Delete()); // We should not be able to delete. in TEST() 109 EXPECT_TRUE(dir.Delete()); in TEST()
|