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

1 2 3 4 56 7 8 91011>>

  /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/chrome/browser/policy/cloud/
component_cloud_policy_store.cc 136 Delete(ns);
150 Delete(ns);
177 void ComponentCloudPolicyStore::Delete(const PolicyNamespace& ns) {
183 cache_->Delete(constants->proto_cache_key, ns.component_id);
184 cache_->Delete(constants->data_cache_key, ns.component_id);
resource_cache_unittest.cc 76 // Delete subkeys directly.
77 cache.Delete(kKey1, kSubB);
78 cache.Delete(kKey1, kSubD);
cloud_external_data_store.cc 67 // delete the entry.
68 cache_->Delete(cache_key_, subkey);
component_cloud_policy_store.h 92 void Delete(const PolicyNamespace& ns);
  /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/chrome/test/chromedriver/
util.py 43 # Don't use shutil.rmtree because it can't delete read-only files on Win.
54 def Delete(path):
65 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 146 * to call Delete on these profiles.
148 void Delete();
342 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/extensions/api/history/
history_apitest.cc 53 #define MAYBE_Delete Delete
57 ASSERT_TRUE(RunExtensionSubtest("history", "delete.html")) << message_;
  /external/chromium_org/chrome/test/pyautolib/chromeos/
file_browser.py 115 def Delete(self):
116 """Delete selected entries."""
  /external/chromium_org/content/browser/
power_save_blocker_mac.cc 32 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;
  /external/chromium_org/content/public/browser/
render_widget_host.h 139 virtual void Delete() = 0;
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
local_temp_file.h 64 void Delete(const pp::CompletionCallback& cb);

Completed in 972 milliseconds

1 2 3 4 56 7 8 91011>>