HomeSort by relevance Sort by last modified time
    Searched defs:Delete (Results 1 - 25 of 158) sorted by null

1 2 3 4 5 6 7

  /external/chromium-trace/catapult/third_party/mapreduce/mapreduce/operation/
db.py 21 __all__ = ['Put', 'Delete']
52 class Delete(base.Operation):
53 """Delete entity from datastore via mutation_pool.
62 entity: a key or model instance to delete.
72 context._mutation_pool.delete(self.entity)
  /external/libchrome/base/memory/
singleton_objc.h 46 static void Delete(Type* object) {
singleton.h 45 // Default traits for Singleton<Type>. Calls operator new and operator delete on
58 static void Delete(Type* x) {
59 delete x;
120 static void Delete(Type* p) {
145 // normal process exit). The Trait::Delete function will not be called on
273 Traits::Delete(reinterpret_cast<Type*>(subtle::NoBarrier_Load(&instance_)));
  /external/autotest/client/cros/cellular/pseudomodem/
messaging.py 41 def Delete(self, path):
45 @param path: The object path of the SMS to delete.
  /external/chromium-trace/catapult/dashboard/dashboard/
namespaced_stored_object.py 35 def Delete(key):
39 stored_object.Delete(internal_key)
40 stored_object.Delete(external_key)
layered_cache.py 45 """URL endpoint for a cron job to delete expired entities from datastore."""
160 def Delete(key):
stored_object.py 7 This module provides Get, Set and Delete functions for storing pickleable
74 def Delete(key):
76 ndb.Key(MultipartEntity, key).delete()
77 MultipartCache.Delete(key)
179 def Delete(cls, key):
quick_logger.py 54 def Delete(namespace, key):
55 """Delete a log entity from the datastore.
62 ndb.Key('QuickLog', namespaced_key).delete()
  /system/keymaster/
operation_table.cpp 29 delete operation;
75 bool OperationTable::Delete(keymaster_operation_handle_t op_handle) {
81 delete table_[i].operation;
  /external/compiler-rt/test/asan/TestCases/Posix/
new_array_cookie_uaf_test.cc 17 __attribute__((noinline)) void Delete(C *c) { delete[] c; }
25 delete [] buffer;
27 delete [] buffer;
  /external/v8/test/cctest/
test-list.cc 39 // Stash the size in the first word to use for Delete.
47 static void Delete(void* ptr) {
160 delete list;
  /external/libchrome/base/files/
scoped_temp_dir.cc 16 if (!path_.empty() && !Delete())
17 DLOG(WARNING) << "Could not delete temp dir in dtor.";
60 bool ScopedTempDir::Delete() {
  /external/llvm/lib/Transforms/IPO/
ExtractGV.cpp 24 /// Make sure GV is visible from both modules. Delete is true if it is
28 static void makeVisible(GlobalValue &GV, bool Delete) {
30 if (Local || Delete) {
85 bool Delete =
87 if (!Delete) {
94 makeVisible(*I, Delete);
96 if (Delete) {
105 bool Delete =
107 if (!Delete) {
112 makeVisible(*I, Delete);
    [all...]
  /external/protobuf/src/google/protobuf/
repeated_field.cc 54 delete [] old_elements;
79 void StringTypeHandlerBase::Delete(string* value) {
80 delete value;
  /external/google-breakpad/src/testing/test/
gmock-nice-strict_test.cc 78 void Delete() { delete this; }
123 // that delete the mock object.
128 .WillByDefault(Invoke(nice_foo, &MockFoo::Delete));
240 .WillByDefault(Invoke(strict_foo, &MockFoo::Delete));
  /external/skia/src/core/
SkTLS.cpp 53 delete rec;
106 void SkTLS::Delete(CreateProc createProc) {
124 delete curr;
  /external/v8/src/
allocation.cc 30 void Malloced::Delete(void* p) {
45 void Embedded::operator delete(void* p) {
56 void AllStatic::operator delete(void* p) {
  /external/webrtc/webrtc/voice_engine/
voice_engine_impl.cc 36 self->AddRef(); // First reference. Released in VoiceEngine::Delete.
60 delete this;
118 bool VoiceEngine::Delete(VoiceEngine*& voiceEngine) {
130 "VoiceEngine::Delete did not release the very last reference. "
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
rewrite.rb 58 edit-inducing methods like +delete+ and +insert+ as RewriteOperation objects in
61 The three subclasses of RewriteOperation, InsertBefore, Delete, and Replace,
156 =begin rdoc ANTLR3::TokenRewriteStream::Delete
165 class Delete < Replace
166 @operation_name = 'delete'.freeze
204 def delete( *range_arguments ) method in class:ANTLR3.RewriteProgram
206 op = Delete.new( @stream, range )
288 if operation = operations.delete( cursor )
296 if operation = operations.delete( cursor ) and
391 @programs.delete( name
412 def delete( *args ) method
    [all...]
  /external/clang/test/SemaCXX/
cxx1y-contextual-conversion-tweaks.cpp 20 void Delete() {
23 delete p; //@23
24 delete (p + 0);
25 delete + p;
39 //expected-error@23 {{ambiguous conversion of delete expression of type 'zero_init<int *>' to a pointer}}
  /external/gmock/test/
gmock-nice-strict_test.cc 79 void Delete() { delete this; }
130 // that delete the mock object.
138 .WillByDefault(Invoke(raw_foo, &MockFoo::Delete));
174 // that delete the mock object.
179 .WillByDefault(Invoke(nice_foo, &MockFoo::Delete));
283 .WillByDefault(Invoke(naggy_foo, &MockFoo::Delete));
380 .WillByDefault(Invoke(strict_foo, &MockFoo::Delete));
  /external/libchrome/base/
lazy_instance.h 74 static void Delete(Type* instance) {
102 static void Delete(Type* /* instance */) {
202 Traits::Delete(me->instance());
  /external/regex-re2/re2/testing/
charclass_test.cc 122 void Delete(CharClass* cc) {
123 cc->Delete();
132 void Delete(CharClassBuilder* cc) {
133 delete cc;
179 Delete(ncc);
187 Delete(ncc);
191 Delete(ncc);
209 cc->Delete();
217 cc->Delete();
218 delete ccb1
    [all...]
  /external/v8/src/base/
smart-pointers.h 56 if (p_) Deallocator::Delete(p_);
79 if (p_) Deallocator::Delete(p_);
91 static void Delete(T* array) { delete[] array; }
108 static void Delete(T* object) { delete object; }
  /frameworks/volley/src/test/java/com/android/volley/mock/
TestRequest.java 130 /** Test example of a DELETE request in the new style. */
131 public static class Delete extends Base {
132 public Delete() {
133 super(Method.DELETE, TEST_URL, null);

Completed in 514 milliseconds

1 2 3 4 5 6 7