Searched refs:Delete (Results 1 - 25 of 70) sorted by relevance

123

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DExtractGV.cpp21 /// Make sure GV is visible from both modules. Delete is true if it is
25 static void makeVisible(GlobalValue &GV, bool Delete) { argument
27 if (Local || Delete) {
85 bool Delete = variable
87 if (!Delete) {
94 makeVisible(*I, Delete);
96 if (Delete) {
105 bool Delete = variable
107 if (!Delete) {
112 makeVisible(F, Delete);
127 bool Delete = deleteStuff == (bool)Named.count(&*CurI); variable
[all...]
/freebsd-12-stable/usr.sbin/ctm/ctm/
H A Dctm_passb.c53 Delete(md5);
54 Delete(uid);
55 Delete(gid);
56 Delete(mode);
57 Delete(md5before);
58 Delete(trash);
59 Delete(name);
131 Delete(md5);
132 Delete(uid);
133 Delete(gi
[all...]
H A Dctm_pass1.c70 Delete(md5);
71 Delete(name);
72 Delete(trash);
119 Delete(name);
127 Delete(name);
229 Delete(md5);
230 Delete(name);
231 Delete(trash);
H A Dctm_pass3.c112 Delete(md5);
113 Delete(uid);
114 Delete(gid);
115 Delete(mode);
116 Delete(md5before);
117 Delete(trash);
118 Delete(name);
284 Delete(md5);
285 Delete(uid);
286 Delete(gi
[all...]
H A Dctm_pass2.c53 Delete(trash);
54 Delete(name);
55 Delete(md5);
294 Delete(trash);
295 Delete(name);
296 Delete(md5);
/freebsd-12-stable/contrib/llvm-project/lldb/source/DataFormatters/
H A DTypeCategory.cpp184 bool TypeCategoryImpl::Delete(ConstString name, FormatCategoryItems items) { function in class:TypeCategoryImpl
188 success = GetTypeFormatsContainer()->Delete(name) || success;
190 success = GetRegexTypeFormatsContainer()->Delete(name) || success;
193 success = GetTypeSummariesContainer()->Delete(name) || success;
196 success = GetRegexTypeSummariesContainer()->Delete(name) || success;
199 success = GetTypeFiltersContainer()->Delete(name) || success;
202 success = GetRegexTypeFiltersContainer()->Delete(name) || success;
205 success = GetTypeSyntheticsContainer()->Delete(name) || success;
207 success = GetRegexTypeSyntheticsContainer()->Delete(name) || success;
H A DDataVisualization.cpp96 bool DataVisualization::Categories::Delete(ConstString category) { function in class:DataVisualization::Categories
182 bool DataVisualization::NamedSummaryFormats::Delete(ConstString type) { function in class:DataVisualization::NamedSummaryFormats
183 return GetFormatManager().GetNamedSummaryContainer().Delete(type);
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DDataVisualization.h69 static bool Delete(ConstString type);
91 static bool Delete(ConstString category);
H A DFormattersContainer.h81 Delete(name);
87 bool Delete(const KeyType &name) { function in class:lldb_private::FormatMap
179 bool Delete(ConstString type) { function in class:lldb_private::FormattersContainer
237 return m_format_map.Delete(type);
H A DTypeCategoryMap.h47 bool Delete(KeyType name);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DCFGUpdate.h9 // This file defines a CFG Edge Update: Insert or Delete, and two Nodes as the
26 enum class UpdateKind : unsigned char { Insert, Delete };
45 OS << (getKind() == UpdateKind::Insert ? "Insert " : "Delete ");
91 NumInsertions > 0 ? UpdateKind::Insert : UpdateKind::Delete;
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Host/
H A DPipeBase.h56 // Delete named pipe.
57 virtual Status Delete(llvm::StringRef name) = 0;
/freebsd-12-stable/contrib/googletest/googlemock/test/
H A Dgmock-nice-strict_test.cc84 void Delete() { delete this; } function in class:testing::gmock_nice_strict_test::MockFoo
162 .WillByDefault(Invoke(raw_foo, &MockFoo::Delete));
203 .WillByDefault(Invoke(nice_foo, &MockFoo::Delete));
339 .WillByDefault(Invoke(naggy_foo, &MockFoo::Delete));
451 .WillByDefault(Invoke(strict_foo, &MockFoo::Delete));
/freebsd-12-stable/contrib/llvm-project/lldb/source/API/
H A DSBTypeCategory.cpp388 return m_opaque_sp->GetRegexTypeFormatsContainer()->Delete(
391 return m_opaque_sp->GetTypeFormatsContainer()->Delete(
467 return m_opaque_sp->GetRegexTypeSummariesContainer()->Delete(
470 return m_opaque_sp->GetTypeSummariesContainer()->Delete(
512 return m_opaque_sp->GetRegexTypeFiltersContainer()->Delete(
515 return m_opaque_sp->GetTypeFiltersContainer()->Delete(
591 return m_opaque_sp->GetRegexTypeSyntheticsContainer()->Delete(
594 return m_opaque_sp->GetTypeSyntheticsContainer()->Delete(
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Host/posix/
H A DPipePosix.h66 Status Delete(llvm::StringRef name) override;
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Tooling/ASTDiff/
H A DASTDiff.h29 Delete, // (Src): delete node Src. enumerator in enum:clang::diff::ChangeKind
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DDomTreeUpdater.cpp46 if (Kind == DominatorTree::Delete && HasEdge)
262 // If the first update to an edge is "Delete", it means that the edge
266 // For example, if the user submits {{Delete, A, B}, {Insert, A, B}},
275 // edge, so both {Delete, A, B}, {Insert, A, B} actually happened and
277 // b. If the edge doesn't exist, we can then infer that {Delete, A, B}
279 // happened. DTU will submit {Delete, A, B} in this case.
366 assert(isUpdateValid({DominatorTree::Delete, From, To}) &&
385 PendUpdates.push_back({DominatorTree::Delete, From, To});
395 if (!isUpdateValid({DominatorTree::Delete, From, To}))
406 PendUpdates.push_back({DominatorTree::Delete, Fro
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-ar/
H A Dllvm-ar.cpp186 Delete, ///< Delete the specified members enumerator in enum:ArchiveOperation
305 Operation = Delete;
428 if (Operation != Extract && Operation != Delete)
576 case Delete:
744 if (Operation == Delete) {
833 if (Operation == Delete)
955 case Delete:
1005 enum class MRICommand { AddLib, AddMod, Create, CreateThin, Delete, Save, End, Invalid }; member in class:MRICommand
1032 .Case("delete", MRICommand::Delete)
[all...]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Target/
H A DModuleCache.cpp57 void Delete();
111 lock.Delete();
179 void ModuleLock::Delete() { function in class:ModuleLock
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_thread.cpp91 heap_allocations_->Delete();
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
H A DASTMutationListener.h84 const FunctionDecl *Delete,
83 ResolvedOperatorDelete(const CXXDestructorDecl *DD, const FunctionDecl *Delete, Expr *ThisArg) argument
/freebsd-12-stable/share/examples/drivers/
H A Dmake_device_driver.sh821 (void)scp; /* Delete this line after using scp. */
830 (void)scp; /* Delete this line after using scp. */
855 (void)scp; /* Delete this line after using scp. */
867 (void)scp; /* Delete this line after using scp. */
881 (void)scp; /* Delete this line after using scp. */
896 (void)scp; /* Delete this line after using scp. */
910 (void)scp; /* Delete this line after using scp. */
928 (void)scp; /* Delete this line after using scp. */
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopFuse.cpp1220 DominatorTree::Delete, FC0.ExitingBlock, FC1.Preheader));
1229 DominatorTree::Delete, FC1.Preheader, FC1.Header));
1276 TreeUpdates.emplace_back(DominatorTree::UpdateType(DominatorTree::Delete,
1280 TreeUpdates.emplace_back(DominatorTree::UpdateType(DominatorTree::Delete,
1318 // Delete the now empty loop L1.
1406 DominatorTree::Delete, FC1GuardBlock, FC1.Preheader));
1408 DominatorTree::Delete, FC1GuardBlock, FC1NonLoopBlock));
1410 DominatorTree::Delete, FC0GuardBlock, FC1GuardBlock));
1459 DominatorTree::Delete, FC0.ExitingBlock, FC0.ExitBlock));
1481 DominatorTree::Delete, FC
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/Frontend/
H A DMultiplexConsumer.cpp94 const FunctionDecl *Delete,
164 const CXXDestructorDecl *DD, const FunctionDecl *Delete, Expr *ThisArg) {
166 L->ResolvedOperatorDelete(DD, Delete, ThisArg);
163 ResolvedOperatorDelete( const CXXDestructorDecl *DD, const FunctionDecl *Delete, Expr *ThisArg) argument
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_ring_buffer.h32 void Delete() { function in class:__sanitizer::RingBuffer

Completed in 275 milliseconds

123