HomeSort by relevance Sort by last modified time
    Searched refs:Delete (Results 126 - 150 of 646) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/skia/src/core/
SkGlyphCache_Globals.h 99 static void DeleteTLS() { SkTLS::Delete(CreateTLS); }
  /external/v8/src/
allocation.cc 47 void Malloced::Delete(void* p) {
67 void Embedded::operator delete(void* p) {
78 void AllStatic::operator delete(void* p) {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
TokenRewriteStream.cs 45 * You can insert stuff, replace, and delete chunks. Note that the
308 public virtual void Delete(int index) {
309 Delete(DEFAULT_PROGRAM_NAME, index, index);
312 public virtual void Delete(int from, int to) {
313 Delete(DEFAULT_PROGRAM_NAME, from, to);
316 public virtual void Delete(IToken indexT) {
317 Delete(DEFAULT_PROGRAM_NAME, indexT, indexT);
320 public virtual void Delete(IToken from, IToken to) {
321 Delete(DEFAULT_PROGRAM_NAME, from, to);
324 public virtual void Delete(string programName, int from, int to)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
TokenRewriteStream.cs 48 * You can insert stuff, replace, and delete chunks. Note that the
352 public virtual void Delete( int index )
354 Delete( DEFAULT_PROGRAM_NAME, index, index );
357 public virtual void Delete( int from, int to )
359 Delete( DEFAULT_PROGRAM_NAME, from, to );
362 public virtual void Delete( IToken indexT )
364 Delete( DEFAULT_PROGRAM_NAME, indexT, indexT );
367 public virtual void Delete( IToken from, IToken to )
369 Delete( DEFAULT_PROGRAM_NAME, from, to );
372 public virtual void Delete( string programName, int from, int to
    [all...]
  /external/chromium_org/v8/test/mjsunit/
delete-non-configurable.js 28 // Delete elements of a String object.
34 assertFalse(delete so[i]);
35 assertThrows("'use strict'; delete so[i];", TypeError);
36 assertFalse(delete so[i.toString()]);
37 assertThrows("'use strict'; delete so[i.toString()];", TypeError);
43 // Delete elements of an Array.
52 assertFalse(delete arr[i]);
53 assertThrows("'use strict'; delete arr[i];", TypeError);
54 assertFalse(delete arr[i.toString()]);
55 assertThrows("'use strict'; delete arr[i.toString()];", TypeError)
    [all...]
  /external/chromium/chrome/browser/extensions/
convert_user_script_unittest.cc 54 file_util::Delete(extension->path(), true);
93 file_util::Delete(extension->path(), true);
  /external/chromium/chrome/browser/webdata/
web_apps_table_unittest.cc 29 file_util::Delete(file_, false);
33 file_util::Delete(file_, false);
  /external/chromium_org/base/memory/
shared_memory_unittest.cc 54 memory.Delete(s_test_name_);
145 // Android doesn't support SharedMemory::Open/Delete/
155 bool rv = memory1.Delete(test_name);
157 rv = memory1.Delete(test_name);
190 rv = memory1.Delete(test_name);
192 rv = memory2.Delete(test_name);
248 // Verify that opening memory2 didn't truncate or delete memory 1.
258 rv = memory1.Delete(test_name);
294 delete thread_delegates[index];
323 delete thread_delegates[index]
    [all...]
  /external/chromium_org/chrome/renderer/resources/extensions/
web_view_deny.js 23 // Delete the callbacks so developers cannot call them and produce unexpected
25 delete proto.createdCallback;
26 delete proto.enteredDocumentCallback;
27 delete proto.leftDocumentCallback;
28 delete proto.attributeChangedCallback;
  /external/chromium_org/chrome/test/chromedriver/
util.py 44 # Don't use shutil.rmtree because it can't delete read-only files on Win.
55 def Delete(path):
66 Delete(path)
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvoe.h 57 ~scoped_voe_engine() { if (ptr) VERIFY(webrtc::VoiceEngine::Delete(ptr)); }
61 VERIFY(webrtc::VoiceEngine::Delete(ptr));
  /external/chromium_org/v8/include/
v8-profiler.h 138 * to call Delete on these profiles.
140 void Delete();
334 void Delete();
  /external/chromium_org/v8/src/
list.h 73 INLINE(void operator delete(void* p)) {
74 AllocationPolicy::Delete(p);
78 INLINE(void operator delete(void* p, AllocationPolicy allocator)) {
146 // pointer type, clearing the list doesn't delete the entries.
182 AllocationPolicy::Delete(data);
  /external/v8/include/
v8-profiler.h 141 * to call Delete on these profiles.
143 void Delete();
354 void Delete();
  /external/v8/test/cctest/
test-cpu-profiler.cc 289 // Test profiling cancellation by the 'delete' command.
312 const_cast<v8::CpuProfile*>(p1)->Delete();
334 const_cast<v8::CpuProfile*>(p2)->Delete();
338 const_cast<v8::CpuProfile*>(p3)->Delete();
363 const_cast<v8::CpuProfile*>(p1)->Delete();
367 const_cast<v8::CpuProfile*>(p1_t1)->Delete();
388 const_cast<v8::CpuProfile*>(p2_t2)->Delete();
392 const_cast<v8::CpuProfile*>(p2)->Delete();
396 const_cast<v8::CpuProfile*>(p3)->Delete();
  /external/valgrind/main/gdbserver_tests/
mcwatchpoints.stdoutB.exp 30 Delete all breakpoints? (y or n) [answered Y; input not from terminal]
  /frameworks/volley/tests/src/com/android/volley/toolbox/
HttpClientStackTest.java 97 TestRequest.Delete request = new TestRequest.Delete();
98 assertEquals(request.getMethod(), Method.DELETE);
  /external/chromium/chrome/browser/net/
url_fixer_upper_unittest.cc 404 EXPECT_TRUE(file_util::Delete(original, false));
430 EXPECT_TRUE(file_util::Delete(full_path, false));
472 EXPECT_TRUE(file_util::Delete(full_path, false));
473 EXPECT_TRUE(file_util::Delete(new_dir, true));
  /external/chromium/chrome/browser/ui/webui/options/
certificate_manager_handler.h 120 // Delete certificate and private key (if any).
121 void Delete(const ListValue* args);
  /external/chromium_org/chrome/browser/chromeos/policy/
cloud_external_data_store.cc 71 // delete the entry.
72 cache_->Delete(cache_key_, subkey);
  /external/chromium_org/components/policy/core/common/cloud/
component_cloud_policy_store.h 91 void Delete(const PolicyNamespace& ns);
component_cloud_policy_updater.cc 81 // Delete any existing policy for this component.
82 store_->Delete(ns);
  /external/chromium_org/content/browser/
power_save_blocker_mac.cc 34 static void Delete(base::Thread* instance) { }
  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_external_file_ref_backend.h 35 virtual int32_t Delete(ppapi::host::ReplyMessageContext context) OVERRIDE;
pepper_internal_file_ref_backend.h 39 virtual int32_t Delete(ppapi::host::ReplyMessageContext context) OVERRIDE;

Completed in 1006 milliseconds

1 2 3 4 56 7 8 91011>>