Searched refs:delete (Results 1 - 25 of 616) sorted by relevance

1234567891011>>

/freebsd-11-stable/crypto/heimdal/
H A Dautogen.sh6 find . \( -name '*-private.h' -o -name '*-protos.h' \) -delete
/freebsd-11-stable/sys/conf/
H A Dkmod_syms.awk10 delete ARGV[1]
15 delete syms[$0]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/
H A Dmutex.h23 Mutex(const Mutex &) = delete;
24 Mutex &operator=(const Mutex &) = delete;
42 ScopedLock(const ScopedLock &) = delete;
43 ScopedLock &operator=(const ScopedLock &) = delete;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_recursion_guard.h41 inline RecursionGuard(const RecursionGuard &) = delete;
42 inline RecursionGuard(RecursionGuard &&) = delete;
43 inline RecursionGuard &operator=(const RecursionGuard &) = delete;
44 inline RecursionGuard &operator=(RecursionGuard &&) = delete;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DValueProfileCollector.h62 ValueProfileCollector(ValueProfileCollector &&) = delete;
63 ValueProfileCollector &operator=(ValueProfileCollector &&) = delete;
65 ValueProfileCollector(const ValueProfileCollector &) = delete;
66 ValueProfileCollector &operator=(const ValueProfileCollector &) = delete;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeSymbolEmitter.h22 TypeSymbolEmitter(const TypeSymbolEmitter &) = delete;
23 TypeSymbolEmitter &operator=(const TypeSymbolEmitter &) = delete;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCDisassembler/
H A DMCRelocationInfo.h30 MCRelocationInfo(const MCRelocationInfo &) = delete;
31 MCRelocationInfo &operator=(const MCRelocationInfo &) = delete;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/
H A DHardwareUnit.h22 HardwareUnit(const HardwareUnit &H) = delete;
23 HardwareUnit &operator=(const HardwareUnit &H) = delete;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DCOM.h29 InitializeCOMRAII(const InitializeCOMRAII &) = delete;
30 void operator=(const InitializeCOMRAII &) = delete;
H A DWatchdog.h31 Watchdog(const Watchdog &other) = delete;
32 Watchdog &operator=(const Watchdog &other) = delete;
H A DTimeProfiler.h55 TimeTraceScope() = delete;
56 TimeTraceScope(const TimeTraceScope &) = delete;
57 TimeTraceScope &operator=(const TimeTraceScope &) = delete;
58 TimeTraceScope(TimeTraceScope &&) = delete;
59 TimeTraceScope &operator=(TimeTraceScope &&) = delete;
H A DAtomicOrdering.h37 bool operator<(AtomicOrderingCABI, AtomicOrderingCABI) = delete;
38 bool operator>(AtomicOrderingCABI, AtomicOrderingCABI) = delete;
39 bool operator<=(AtomicOrderingCABI, AtomicOrderingCABI) = delete;
40 bool operator>=(AtomicOrderingCABI, AtomicOrderingCABI) = delete;
67 bool operator<(AtomicOrdering, AtomicOrdering) = delete;
68 bool operator>(AtomicOrdering, AtomicOrdering) = delete;
69 bool operator<=(AtomicOrdering, AtomicOrdering) = delete;
70 bool operator>=(AtomicOrdering, AtomicOrdering) = delete;
H A DItaniumManglingCanonicalizer.h37 ItaniumManglingCanonicalizer(const ItaniumManglingCanonicalizer &) = delete;
38 void operator=(const ItaniumManglingCanonicalizer &) = delete;
/freebsd-11-stable/usr.sbin/pc-sysinstall/backend-partmanager/
H A DMakefile3 FILES= create-part.sh delete-part.sh
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/
H A DTextAPIWriter.h21 TextAPIWriter() = delete;
H A DTextAPIReader.h25 TextAPIReader() = delete;
/freebsd-11-stable/tools/tools/nanobsd/
H A Dmtree-dedup.awk94 delete kvs;
113 delete old["uname"]
115 delete old["uid"];
118 delete old["gname"]
120 delete old["gid"];
139 delete tree[path]; # unlink
149 delete new_kvs["copy_from"];
160 delete new_kvs["move_from"];
164 delete tree[from]; # unlink
170 delete old_kv
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Initialization/
H A DSystemLifetimeManager.h36 SystemLifetimeManager(const SystemLifetimeManager &other) = delete;
37 SystemLifetimeManager &operator=(const SystemLifetimeManager &other) = delete;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DASTContextAllocate.h31 // It is good practice to pair new/delete operators. Also, MSVC gives many
32 // warnings if a matching delete overload is not declared, even though the
34 void operator delete(void *Ptr, const clang::ASTContext &C, size_t);
35 void operator delete[](void *Ptr, const clang::ASTContext &C, size_t);
/freebsd-11-stable/tools/tools/net80211/scripts/
H A Dsetup.sta15 ifconfig $WIRED down delete
/freebsd-11-stable/tools/tools/wtap/wtap/
H A Dwtap.c47 static void delete(int id) function
75 delete(id);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMsgPackWriter.h52 Writer(const Writer &) = delete;
53 Writer &operator=(const Writer &) = delete;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCLabel.h33 MCLabel(const MCLabel &) = delete;
34 MCLabel &operator=(const MCLabel &) = delete;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/
H A DPipeline.h53 Pipeline(const Pipeline &P) = delete;
54 Pipeline &operator=(const Pipeline &P) = delete;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/Stages/
H A DEntryStage.h35 EntryStage(const EntryStage &Other) = delete;
36 EntryStage &operator=(const EntryStage &Other) = delete;

Completed in 210 milliseconds

1234567891011>>