HomeSort by relevance Sort by last modified time
    Searched defs:Delete (Results 76 - 100 of 188) sorted by null

1 2 34 5 6 7 8

  /external/chromium_org/tools/telemetry/telemetry/page/
cloud_storage.py 160 def Delete(bucket, remote_path):
  /external/chromium_org/webkit/browser/fileapi/
file_system_usage_cache.cc 155 bool FileSystemUsageCache::Delete(const base::FilePath& usage_file_path) {
156 TRACE_EVENT0("FileSystem", "UsageCache::Delete");
220 Delete(usage_file_path);
244 delete new_file;
  /art/compiler/utils/
growable_array.h 157 void Delete(T element) {
205 static void operator delete(void* p) {} // Nop.
  /external/chromium_org/base/memory/
shared_memory_posix.cc 117 // In case we want to delete it later, it may be useful to save the value
252 bool SharedMemory::Delete(const std::string& name) {
singleton_unittest.cc 54 static void Delete(Type* instance) {
57 DefaultSingletonTraits<Type>::Delete(instance);
104 static void Delete(CallbackSingletonWithStaticTrait* instance) {
107 StaticMemorySingletonTraits<CallbackSingletonWithStaticTrait>::Delete(
139 DefaultSingletonTraits<CallbackSingletonWithLeakTrait>::Delete(
238 // Delete the leaky singleton.
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend_v1/
local_sync_delegate.cc 100 Delete(callback);
254 void LocalSyncDelegate::Delete(const SyncStatusCallback& callback) {
291 // Delete |drive_metadata| on the conflict case.
  /external/chromium_org/components/policy/core/common/cloud/
component_cloud_policy_store.cc 138 Delete(ns);
152 Delete(ns);
179 void ComponentCloudPolicyStore::Delete(const PolicyNamespace& ns) {
185 cache_->Delete(constants->proto_cache_key, ns.component_id);
186 cache_->Delete(constants->data_cache_key, ns.component_id);
  /external/chromium_org/content/child/
child_thread.cc 177 static void Delete(base::ConditionVariable* instance) {
357 // Delete objects that hold references to blink so derived classes can
385 delete msg;
  /external/chromium_org/native_client_sdk/src/examples/api/file_io/
file_io.cc 130 callback_factory_.NewCallback(&FileIoInstance::Delete, file_name));
257 void Delete(int32_t /* result */, const std::string& file_name) {
264 int32_t result = ref.Delete(pp::BlockUntilComplete());
272 ShowStatusMessage("Delete success");
  /external/chromium_org/remoting/protocol/
protocol_mock_objects.cc 90 bool MockPairingRegistryDelegate::Delete(const std::string& client_id) {
  /external/chromium_org/third_party/leveldatabase/src/db/
leveldb_main.cc 63 delete file;
78 virtual void Delete(const Slice& key) {
141 delete table;
142 delete file;
178 delete iter;
179 delete table;
180 delete file;
  /external/chromium_org/third_party/skia/src/svg/
SkSVGParser.cpp 60 void SkSVGParser::Delete(SkTDArray<SkSVGElement*>& fChildren) {
63 Delete((*ptr)->fChildren);
64 delete *ptr;
106 Delete(fChildren);
  /external/chromium_org/third_party/sqlite/src/contrib/
sqlitecon.tcl 110 bind Sqlitecon <Delete> {sqlitecon::Delete %W}
111 bind Sqlitecon <Control-d> {sqlitecon::Delete %W}
151 $w delete {insert -1c}
161 $w delete insert {insert lineend}
173 proc sqlitecon::Delete w {
174 $w delete insert
425 $w delete $start end
566 $w delete sel.first sel.last
574 $w delete sel.first sel.las
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
page_heap.cc 217 void PageHeap::Delete(Span* span) {
502 // Pretend the new area is allocated and then Delete() it to cause
506 Delete(span);
  /external/chromium_org/third_party/tcmalloc/vendor/src/
page_heap.cc 186 void PageHeap::Delete(Span* span) {
440 // Pretend the new area is allocated and then Delete() it to cause
444 Delete(span);
  /external/clang/lib/Parse/
ParseCXXInlineMethods.cpp 72 bool Delete = false;
79 Delete = true;
86 llvm_unreachable("function definition after = not 'delete' or 'default'");
91 << Delete;
94 Delete ? "delete" : "default")) {
143 delete getCurrentClass().LateParsedDeclarations.back();
177 delete getCurrentClass().LateParsedDeclarations.back();
363 delete Toks;
    [all...]
  /external/lldb/include/lldb/DataFormatters/
FormatNavigator.h 139 Delete (KeyType name)
279 Delete (ConstString type)
368 return m_format_map.Delete(type);
  /external/lzma/CPP/Common/
MyVector.h 29 virtual void Delete(int index, int num = 1);
207 virtual void Delete(int index, int num = 1)
211 delete (T *)(((void **)_items)[index + i]);
212 CPointerVector::Delete(index, num);
  /external/pdfium/core/src/fxcrt/
fx_basic_array.cpp 337 void CFX_BaseSegmentedArray::Delete(int index, int count)
fx_basic_buffer.cpp 31 void CFX_BinaryBuf::Delete(int start_index, int count)
  /external/skia/src/svg/
SkSVGParser.cpp 60 void SkSVGParser::Delete(SkTDArray<SkSVGElement*>& fChildren) {
63 Delete((*ptr)->fChildren);
64 delete *ptr;
106 Delete(fChildren);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/
dbtables.py 248 def delete(self, key, txn=None) : member in class:bsdTableDB.__init__.db_py3k
250 return self._db.delete(key, txn=txn)
341 # delete 1st, in case we opened with DB_DUP
342 self.db.delete(_table_names_key, txn=txn)
422 # delete the old one first since we opened with DB_DUP
423 self.db.delete(columnlist_key, txn=txn)
517 self.db.delete(_rowid_key(table, rowid))
551 self.db.delete(
578 def Delete(self, table, conditions={}):
579 """Delete(table, conditions) - Delete items matching the give
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/
dbtables.py 248 def delete(self, key, txn=None) : member in class:bsdTableDB.__init__.db_py3k
250 return self._db.delete(key, txn=txn)
341 # delete 1st, in case we opened with DB_DUP
342 self.db.delete(_table_names_key, txn=txn)
422 # delete the old one first since we opened with DB_DUP
423 self.db.delete(columnlist_key, txn=txn)
517 self.db.delete(_rowid_key(table, rowid))
551 self.db.delete(
578 def Delete(self, table, conditions={}):
579 """Delete(table, conditions) - Delete items matching the give
    [all...]
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/
fake_pepper_interface_html5_fs.cc 29 ~FakeFileSystemResource() { delete filesystem; }
541 int32_t FakeFileRefInterface::Delete(PP_Resource file_ref,
  /external/chromium_org/v8/src/
hydrogen-bce.cc 321 void BoundsCheckTable::Delete(BoundsCheckKey* key) {
459 table_.Delete(data->Key());

Completed in 5344 milliseconds

1 2 34 5 6 7 8