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

1 2 3 4 5 6 7 8 91011>>

  /developers/build/prebuilts/gradle/EmojiCompat/
build.gradle 32 task clean(type: Delete) {
33 delete rootProject.buildDir
  /developers/build/prebuilts/gradle/EmojiCompat/kotlinApp/
build.gradle 32 task clean(type: Delete) {
33 delete rootProject.buildDir
  /developers/build/prebuilts/gradle/WearSpeakerSample/
build.gradle 37 task clean(type: Delete) {
38 delete rootProject.buildDir
  /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) {
88 bool Delete =
90 if (!Delete) {
97 makeVisible(*I, Delete);
99 if (Delete) {
108 bool Delete =
110 if (!Delete) {
115 makeVisible(F, Delete);
    [all...]
  /external/skia/src/core/
SkTLS.h 34 * When this thread, or Delete is called, the cached data is removed, and
45 static void Delete(CreateProc);
75 * Will delete our internal list. To be called by the platform if/when its
  /external/v8/src/
allocation.h 19 // Superclass for classes managed with new & delete.
23 void operator delete(void* p) { Delete(p); }
26 static void Delete(void* p);
32 // superclass. The macro prevents the use of new & delete in debug mode.
41 void operator delete(void* p);
54 AllStatic() = delete;
69 delete[] array;
85 INLINE(static void Delete(void* p)) { Malloced::Delete(p);
    [all...]
  /developers/samples/android/views/EmojiCompat/kotlinApp/
build.gradle 33 task clean(type: Delete) {
34 delete rootProject.buildDir
  /external/libchrome/base/files/
scoped_temp_dir.h 16 // intervening calls to Delete or Take, or the calls will fail.
29 // Recursively delete path.
44 bool Delete() WARN_UNUSED_RESULT;
scoped_temp_dir.cc 16 if (!path_.empty() && !Delete())
17 DLOG(WARNING) << "Could not delete temp dir in dtor.";
60 bool ScopedTempDir::Delete() {
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
FormattedStream.h 27 /// DELETE_STREAM - Tell the destructor to delete the held stream.
31 /// PRESERVE_STREAM - Tell the destructor to not delete the held
42 /// DeleteStream - Do we need to delete TheStream in the
84 formatted_raw_ostream(raw_ostream &Stream, bool Delete = false)
86 setStream(Stream, Delete);
98 void setStream(raw_ostream &Stream, bool Delete = false) {
102 DeleteStream = Delete;
126 // Delete the stream if needed. Otherwise, transfer the buffer
131 delete TheStream;
  /developers/samples/android/views/EmojiCompat/
build.gradle 33 task clean(type: Delete) {
34 delete rootProject.buildDir
  /developers/samples/android/wearable/wear/WearSpeakerSample/
build.gradle 37 task clean(type: Delete) {
38 delete rootProject.buildDir
  /device/linaro/bootloader/edk2/NetworkPkg/Application/IpsecConfig/
IpSecConfig.inf 38 Delete.h
39 Delete.c
  /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/libchrome/base/memory/
singleton_objc.h 46 static void Delete(Type* object) {
singleton_unittest.cc 57 static void Delete(Type* instance) {
60 DefaultSingletonTraits<Type>::Delete(instance);
107 static void Delete(CallbackSingletonWithStaticTrait* instance) {
110 StaticMemorySingletonTraits<CallbackSingletonWithStaticTrait>::Delete(
142 DefaultSingletonTraits<CallbackSingletonWithLeakTrait>::Delete(
240 // Delete the leaky singleton.
  /external/pdfium/xfa/fxbarcode/
BC_Utils.cpp 18 dst.Delete(first, last - first);
  /external/webrtc/webrtc/voice_engine/
voice_engine_fixture.cc 29 EXPECT_TRUE(VoiceEngine::Delete(voe_));
  /system/keymaster/
operation_table.h 44 bool Delete(keymaster_operation_handle_t);
  /system/tpm/attestation/server/
mock_key_store.cc 27 ON_CALL(*this, Delete(_, _)).WillByDefault(Return(true));
  /external/pdfium/xfa/fde/
cfde_txtedtbuf_unittest.cpp 88 buf_->Delete(6, 6);
99 buf_->Delete(5, 6);
110 buf_->Delete(0, 6);
121 buf_->Delete(0, 11);
179 EXPECT_DEATH(buf_->Delete(-10, 4), "Assertion");
180 EXPECT_DEATH(buf_->Delete(1, -5), "Assertion");
181 EXPECT_DEATH(buf_->Delete(5, 1), "Assertion");
182 EXPECT_DEATH(buf_->Delete(0, 10000), "Assertion");
  /external/protobuf/src/google/protobuf/stubs/
mutex.h 111 pthread_key_create(&key_, &ThreadLocalStorage::Delete);
125 static void Delete(void* value) {
126 delete static_cast<T*>(value);
  /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/wasm/
managed.h 42 &Managed<CppType>::Delete,
45 static void Delete(const v8::WeakCallbackInfo<void>& data) {
48 delete (*p)->get();
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
mutex.h 111 pthread_key_create(&key_, &ThreadLocalStorage::Delete);
125 static void Delete(void* value) {
126 delete static_cast<T*>(value);

Completed in 731 milliseconds

1 2 3 4 5 6 7 8 91011>>