| /llvm-project-15.0.7/clang/test/Analysis/ |
| H A D | DeallocMissingRelease.m | 90 …ivar in 'MyPropertyClass1' was copied by a synthesized property but not released before '[super de… 103 …ar in 'MyPropertyClass2' was retained by a synthesized property but not released before '[super de… 119 …ar in 'MyPropertyClass3' was retained by a synthesized property but not released before '[super de… 175 …lassWithReturnInDealloc' was retained by a synthesized property but not released before '[super de… 237 // Don't claim that myproperty is released since it the property 256 // _ivar2 is not released. 305 // released. 774 [_ivar dealloc]; // expected-warning {{'_ivar' should be released rather than deallocated}} 818 …n 'ImmediateSubCIFilter' was retained by a synthesized property but not released before '[super de… 853 …inputIvar' ivar in 'OverreleasingCIFilter' will be released by '-[CIFilter dealloc]' but also rele… [all …]
|
| H A D | PR2978.m | 83 …ivar in 'MyClass' was synthesized for an assign, readwrite property but was released in 'dealloc'}} 93 …ng {{The '_S' ivar in 'MyClass' was synthesized for a weak property but was released in 'dealloc'}} 97 …ng {{The '_Q' ivar in 'MyClass' was synthesized for a weak property but was released in 'dealloc'}} 110 …e '_Y' ivar in 'MyClass' was retained by a synthesized property but not released before '[super de… 111 …e '_W' ivar in 'MyClass' was retained by a synthesized property but not released before '[super de…
|
| H A D | retain-release-cache-out.m | 16 [x release]; // expected-warning {{Reference-counted object is used after it is released}} 26 [x release]; // expected-warning {{Reference-counted object is used after it is released}}
|
| H A D | keychainAPI.m | 81 } // expected-warning{{Allocated data is not released: missing a call to 'SecKeychainItemFreeConten… 99 …ptr, &length, &outData); // expected-warning {{Allocated data should be released before another ca… 196 …return 0; // expected-warning{{Allocated data is not released: missing a call to 'SecKeychainItemF… 215 …if (length) { // expected-warning{{Allocated data is not released: missing a call to 'SecKeychainI… 284 …lloc, bytes, length, 5, 0, kCFAllocatorNull); // expected-warning{{Allocated data is not released}} 405 consumeChar(*(char*)outData); // expected-warning{{Allocated data is not released:}} 424 …us st = my_Allocate_Param(&outData, &length); // expected-warning{{Allocated data is not released}} 425 … st = my_Allocate_Param(&outData2, &length); // expected-warning{{Allocated data is not released}}
|
| H A D | keychainAPI-diagnostic-visitor.m | 33 …+; // expected-warning {{Allocated data is not released}} // expected-note{{Allocated data is not …
|
| H A D | retain-release-path-notes.m | 78 [object dealloc]; // expected-note{{Object released by directly sending the '-dealloc' message}} 79 …counted object is used after it is released}} // expected-note{{Reference-counted object is used a… 84 [object release]; // expected-note{{Object released}} 85 …counted object is used after it is released}} // expected-note{{Reference-counted object is used a… 296 [_ownedProp release]; // FIXME-note {{Strong instance variable relinquished. Object released}} 297 [_ownedProp myMethod]; // FIXME-note {{Reference-counted object is used after it is released}} 298 // FIXME-warning@-1 {{used after it is released}} 305 [_ivarOnly release]; // FIXME-note {{Strong instance variable relinquished. Object released}} 306 [_ivarOnly myMethod]; // FIXME-note {{Reference-counted object is used after it is released}} 307 // FIXME-warning@-1 {{used after it is released}}
|
| H A D | properties.m | 110 …value = self.myNumber; // _myNumber will be over released, since the value returned from self.myNu… 149 …'_name' ivar in 'Person' was retained by a synthesized property but not released before '[super de… 554 // be released, even though we are manipulating the ivar in between the two 688 [_ownedProp release]; // FIXME-warning{{used after it is released}} 701 [_ivarOnly release]; // FIXME-warning{{used after it is released}} 708 [_readonlyProp release]; // FIXME-warning{{used after it is released}} 715 [_implicitManualProp release]; // FIXME-warning{{used after it is released}} 728 CFRelease(_cfProp); // FIXME-warning{{used after it is released}} 735 [_ownedProp myMethod]; // FIXME-warning{{used after it is released}} 742 [_ivarOnly myMethod]; // FIXME-warning{{used after it is released}} [all …]
|
| /llvm-project-15.0.7/mlir/include/mlir/IR/ |
| H A D | OwningOpRef.h | 56 OpTy released; in release() local 57 std::swap(released, op); in release() 58 return released; in release()
|
| /llvm-project-15.0.7/clang/test/Analysis/Checkers/ |
| H A D | RunLoopAutoreleaseLeakChecker.m | 32 … autorelease pool followed by the launch of main run loop may never get released; consider moving … 51 …n the autorelease pool followed by the launch of xpc_main may never get released; consider moving … 59 … autorelease pool followed by the launch of main run loop may never get released; consider moving … 84 … autorelease pool followed by the launch of main run loop may never get released; consider moving … 94 …ol of last resort followed by the launch of main run loop may never get released; consider moving … 125 …se pool of last resort followed by the launch of xpc_main may never get released; consider moving … 159 …ol of last resort followed by the launch of main run loop may never get released; consider moving …
|
| /llvm-project-15.0.7/clang/docs/analyzer/checkers/ |
| H A D | dealloc_example.m | 29 // warn: var was retained but wasn't released 43 // warn: var wasn't retained but was released
|
| H A D | seckeychainapi_example.m | 18 // warn: data is not released
|
| /llvm-project-15.0.7/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_rtl_mutex.cpp | 227 bool released = false; in MutexUnlock() local 243 released = true; in MutexUnlock() 253 if (released) in MutexUnlock() 334 bool released = false; in MutexReadUnlock() local 346 released = true; in MutexReadUnlock() 353 if (released) in MutexReadUnlock() 376 bool released = false; in MutexReadOrWriteUnlock() local 385 released = true; in MutexReadOrWriteUnlock() 395 released = true; in MutexReadOrWriteUnlock() 407 if (released) in MutexReadOrWriteUnlock()
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/clang-analyzer/ |
| H A D | valist.Uninitialized.rst | 6 Check for usages of uninitialized (or already released) va_lists.
|
| H A D | valist.Unterminated.rst | 6 Check for va_lists which are not released by a va_end call.
|
| /llvm-project-15.0.7/clang/test/SemaObjC/ |
| H A D | arc.m | 759 …ed-warning {{assigning array literal to a weak variable; object will be released after assignment}} 760 …ed-warning {{assigning block literal to a weak variable; object will be released after assignment}} 761 …-warning {{assigning numeric literal to a weak variable; object will be released after assignment}} 762 …-warning {{assigning numeric literal to a weak variable; object will be released after assignment}} 763 …warning {{assigning boxed expression to a weak variable; object will be released after assignment}} 766 …rning {{assigning dictionary literal to a weak variable; object will be released after assignment}} 767 …ed-warning {{assigning array literal to a weak variable; object will be released after assignment}} 768 …ed-warning {{assigning block literal to a weak variable; object will be released after assignment}} 769 …-warning {{assigning numeric literal to a weak variable; object will be released after assignment}} 770 …-warning {{assigning numeric literal to a weak variable; object will be released after assignment}} [all …]
|
| H A D | warn-retain-block-property.m | 46 // CHECK-ARC: 30:13: warning: assigning block literal to a weak property; object will be released a…
|
| /llvm-project-15.0.7/libcxx/docs/Status/ |
| H A D | SpaceshipPapers.csv | 1 "Number","Name","Status","First released version"
|
| H A D | FormatIssues.csv | 1 Number,Name,Assignee,Patch,Status,First released version
|
| /llvm-project-15.0.7/ |
| H A D | .git-blame-ignore-revs | 1 # Since version 2.23 (released in August 2019), git-blame has a feature
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/abseil/ |
| H A D | upgrade-duration-conversions.rst | 21 prevent unintended behavior. After these changes are released, passing an
|
| /llvm-project-15.0.7/llvm/docs/ |
| H A D | index.rst | 6 If you are using a released version of LLVM, see `the download page
|
| /llvm-project-15.0.7/polly/lib/External/isl/ |
| H A D | README | 7 isl is released under the MIT license, but depends on the LGPL GMP
|
| /llvm-project-15.0.7/clang/test/ARCMT/ |
| H A D | objcmt-arc-cf-annotations.m | 346 …tAbsoluteTime(date); // expected-warning{{Reference-counted object is used after it is released}} 357 …tAbsoluteTime(date); // expected-warning{{Reference-counted object is used after it is released}} 681 [foo dealloc]; // expected-warning{{used after it is released}} 682 // message sent to released object 784 // Now the array is released 1003 CFRelease(matching); // expected-warning{{used after it is released}} 1009 CFRelease(matching); // expected-warning{{used after it is released}} 1017 CFRelease(matching); // expected-warning{{used after it is released}} 1231 number, // potentially released by callback 1252 number, // potentially released by callback [all …]
|
| H A D | objcmt-arc-cf-annotations.m.result | 376 …tAbsoluteTime(date); // expected-warning{{Reference-counted object is used after it is released}} 387 …tAbsoluteTime(date); // expected-warning{{Reference-counted object is used after it is released}} 723 [foo dealloc]; // expected-warning{{used after it is released}} 724 // message sent to released object 826 // Now the array is released 1045 CFRelease(matching); // expected-warning{{used after it is released}} 1051 CFRelease(matching); // expected-warning{{used after it is released}} 1059 CFRelease(matching); // expected-warning{{used after it is released}} 1273 number, // potentially released by callback 1294 number, // potentially released by callback [all …]
|
| /llvm-project-15.0.7/llvm/bindings/go/ |
| H A D | README.txt | 15 "llvm.org/llvm.v36/bindings/go/llvm" refer to released versions of LLVM.
|