HomeSort by relevance Sort by last modified time
    Searched refs:Delete (Results 151 - 175 of 655) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/remoting/host/
pairing_registry_delegate_linux_unittest.cc 56 // Delete the first pairing.
57 EXPECT_TRUE(delegate->Delete(pairing1.client_id()));
70 // Delete the rest and verify.
  /external/chromium_org/remoting/protocol/
protocol_mock_objects.cc 90 bool MockPairingRegistryDelegate::Delete(const std::string& client_id) {
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
ScriptProfile.cpp 43 const_cast<v8::CpuProfile*>(m_profile)->Delete();
  /external/chromium_org/third_party/leveldatabase/src/issues/
issue178_test.cc 58 // delete second key range
61 batch.Delete(Key2(i));
80 delete iter;
84 delete db;
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
shared.c 260 /* NOTE: Delete should always be defined but there are two reports
263 if (fb->Delete)
264 fb->Delete(fb);
277 if (rb->Delete)
278 rb->Delete(ctx, rb);
410 GLboolean delete; local
415 delete = (old->RefCount == 0);
418 if (delete) {
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_texrender.c 49 rb->Delete = delete_texture_wrapper;
  /external/chromium_org/third_party/skia/include/svg/
SkSVGParser.h 55 static void Delete(SkTDArray<SkSVGElement*>& fChildren);
  /external/chromium_org/third_party/skia/src/core/
SkTLS.cpp 99 void SkTLS::Delete(CreateProc createProc) {
  /external/chromium_org/third_party/tcmalloc/chromium/src/
span.cc 69 Static::span_allocator()->Delete(span);
  /external/chromium_org/third_party/tcmalloc/vendor/src/
span.cc 69 Static::span_allocator()->Delete(span);
  /external/chromium_org/webkit/browser/fileapi/
file_system_usage_cache.h 54 bool Delete(const base::FilePath& usage_file_path);
  /external/lzma/CPP/Common/
Wildcard.cpp 238 item.PathParts.Delete(0);
297 pathParts2.Delete(0);
347 path2.Delete(path.Length() - 1);
418 pathParts.Delete(0);
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);
MyString.h 116 Delete(0, (int)(p - _chars));
136 Delete(i, _length - i);
177 delete []_chars;
229 ~CStringBase() { delete []_chars; }
421 Delete(0, p - _chars);
460 Delete(i, _length - i);
522 Delete(pos, oldStringLength);
529 int Delete(int index, int count = 1)
540 void DeleteBack() { Delete(_length - 1); }
  /external/mesa3d/src/mesa/main/
shared.c 260 /* NOTE: Delete should always be defined but there are two reports
263 if (fb->Delete)
264 fb->Delete(fb);
277 if (rb->Delete)
278 rb->Delete(ctx, rb);
410 GLboolean delete; local
415 delete = (old->RefCount == 0);
418 if (delete) {
  /external/mesa3d/src/mesa/swrast/
s_texrender.c 49 rb->Delete = delete_texture_wrapper;
  /external/skia/include/svg/
SkSVGParser.h 55 static void Delete(SkTDArray<SkSVGElement*>& fChildren);
  /external/skia/src/core/
SkTLS.cpp 99 void SkTLS::Delete(CreateProc createProc) {
  /external/v8/src/
elements.h 87 virtual MaybeObject* Delete(JSObject* holder,
zone.h 42 // Zone scopes are in one of two modes. Either they delete the zone
154 // Ideally, the delete operator should be private instead of
157 // require the operator to be visible. MSVC requires the delete
161 // Zone::DeleteAll() to delete all zone objects in one go.
162 void operator delete(void*, size_t) { UNREACHABLE(); }
163 void operator delete(void* pointer, Zone* zone) { UNREACHABLE(); }
176 static void Delete(void* p) { }
182 // Zone. ZoneLists cannot be deleted individually; you can delete all
201 void operator delete(void* pointer) { UNREACHABLE(); }
202 void operator delete(void* pointer, Zone* zone) { UNREACHABLE();
    [all...]
  /external/chromium/base/
shared_memory_posix.cc 98 // In case we want to delete it later, it may be useful to save the value
125 file_util::Delete(path, false);
175 bool SharedMemory::Delete(const std::string& name) {
181 return file_util::Delete(path, false);
  /external/chromium_org/chromeos/dbus/
gsm_sms_client.cc 63 // Calls Delete method.
64 void Delete(uint32 index, const DeleteCallback& callback) {
120 // Handles responses of Delete method calls.
189 virtual void Delete(const std::string& service_name,
193 GetProxy(service_name, object_path)->Delete(index, callback);
  /external/chromium_org/native_client_sdk/src/examples/api/file_io/
file_io.cc 130 callback_factory_.NewCallback(&FileIoInstance::Delete, file_name));
256 void Delete(int32_t /* result */, const std::string& file_name) {
263 int32_t result = ref.Delete(pp::BlockUntilComplete());
  /external/lzma/CPP/7zip/Archive/7z/
7zHandlerOut.cpp 428 srcString.Delete(0, index);
431 srcString.Delete(0);
435 srcString.Delete(0, index);
445 srcString.Delete(0);
469 name.Delete(0);
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_store_file.cc 147 // Delete the chunks in |deleted| from |chunks|.
215 if (file_util::Delete(original_filename, false)) {
225 file_util::Delete(journal_filename, false);
240 bool SafeBrowsingStoreFile::Delete() {
248 if (!file_util::Delete(filename_, false) &&
255 if (!file_util::Delete(new_filename, false) &&
267 file_util::Delete(journal_filename, false);
390 // database files, this is a reasonable to time delete any old
404 // If the file exists but cannot be opened, try to delete it (not
652 if (!file_util::Delete(filename_, false) &
    [all...]

Completed in 999 milliseconds

1 2 3 4 5 67 8 91011>>