/freebsd/contrib/llvm-project/libcxx/src/include/ |
H A D | overridable_function.h | 27 // has been overridden by a user or not. 32 // overridden) to be annotated with the _LIBCPP_MAKE_OVERRIDABLE_FUNCTION_DETECTABLE macro. 44 // Let's say we want to check whether a weak function `f` has been overridden by the user. 49 // Then, when comes the time to check whether the function has been overridden, we take 55 // it was not overridden. Otherwise, it was overridden by the user because it falls 94 // Finally, the function was overridden if it falls outside of the section's bounds. in __is_function_overridden()
|
/freebsd/contrib/llvm-project/libcxx/src/ |
H A D | new.cpp | 27 // in this shared library, so that they can be overridden by programs 58 … "libc++ was configured with exceptions disabled and `operator new(size_t)` has been overridden, " in operator new() 59 "but `operator new(size_t, nothrow_t)` has not been overridden. This is problematic because " in operator new() 86 …"libc++ was configured with exceptions disabled and `operator new[](size_t)` has been overridden, " in operator new[]() 87 … "but `operator new[](size_t, nothrow_t)` has not been overridden. This is problematic because " in operator new[]() 152 … configured with exceptions disabled and `operator new(size_t, align_val_t)` has been overridden, " in operator new() 153 …"but `operator new(size_t, align_val_t, nothrow_t)` has not been overridden. This is problematic b… in operator new() 181 …onfigured with exceptions disabled and `operator new[](size_t, align_val_t)` has been overridden, " in operator new[]() 182 …"but `operator new[](size_t, align_val_t, nothrow_t)` has not been overridden. This is problematic… in operator new[]()
|
/freebsd/share/man/man4/ |
H A D | acpi_thermal.4 | 84 This value can be overridden by the user. 87 This value can be overridden by the user. 90 This value can be overridden by the user. 93 This value can be overridden by the user.
|
H A D | iicbus.4 | 122 hint data will be overridden by a tunable, which can be overridden by
|
/freebsd/contrib/llvm-project/clang/include/clang/Frontend/ |
H A D | LayoutOverrideSource.h | 43 /// The set of layouts that will be overridden. 53 /// If this particular record type has an overridden layout, 63 /// Dump the overridden layouts.
|
/freebsd/share/doc/usd/13.viref/ |
H A D | ex.cmd.roff | 236 can be overridden by escaping them with a backslash. 1021 This check can be overridden by appending a 1037 This check can be overridden by appending the 1103 This check can be overridden by appending the 1155 This check may be overridden by appending a 1210 character can be overridden by escaping it with a backslash 1271 This check may be overridden by appending the 1483 This check can be overridden by appending the 1524 This check can be overridden by appending the 1569 This check may be overridden by appending a [all …]
|
/freebsd/tools/build/make_check/ |
H A D | Makefile | 153 # These values should get overridden by the commandline 170 .error MAKEFLAGS-passed variables overridden 187 .error MAKEFLAGS-passed variables not overridden on command line 203 .error MAKEFLAGS-passed variables not overridden via .MAKEFLAGS target 209 .error MAKEFLAGS-passed variables not overridden via .MAKEFLAGS target (2)
|
/freebsd/sys/contrib/device-tree/src/riscv/starfive/ |
H A D | jh7100.dtsi | 119 /* This value must be overridden by the board */ 126 /* This value must be overridden by the board */ 133 /* Should be overridden by the board when needed */ 140 /* Should be overridden by the board when needed */
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | OSSL_CMP_MSG_get0_header.pod | 89 The extensions are further augmented or overridden by any extensions with the 91 The SANs are further overridden by any SANs included in I<ctx> via 93 Finally, policies are overridden by any policies included in I<ctx> via
|
/freebsd/sys/contrib/openzfs/man/man8/ |
H A D | zfs-receive.8 | 132 property is set by the send stream, it will be overridden by forcing the 134 Received properties are retained in spite of being overridden 155 property cannot be overridden to 160 Instead, the property can be overridden after the receive completes. 380 If a received property needs to be overridden, the effective value will be
|
H A D | zfs-recv.8 | 132 property is set by the send stream, it will be overridden by forcing the 134 Received properties are retained in spite of being overridden 155 property cannot be overridden to 160 Instead, the property can be overridden after the receive completes. 380 If a received property needs to be overridden, the effective value will be
|
H A D | zpool-create.8 | 102 Other uses, such as having a preexisting UFS file system, can be overridden with 122 This can be overridden with the 149 Not all devices can be overridden in this manner.
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaDeclObjC.cpp | 117 /// Issue a warning if the parameter of the overridden method is non-escaping 142 const ObjCMethodDecl *Overridden) { in CheckObjCMethodOverride() argument 144 if (Overridden->hasRelatedResultType() && in CheckObjCMethodOverride() 147 // implies a related result type, and the original (overridden) method has in CheckObjCMethodOverride() 180 if (ObjCMethodFamily Family = Overridden->getMethodFamily()) in CheckObjCMethodOverride() 181 Diag(Overridden->getLocation(), in CheckObjCMethodOverride() 183 << /*overridden method*/ 0 in CheckObjCMethodOverride() 186 Diag(Overridden->getLocation(), in CheckObjCMethodOverride() 191 Overridden->hasAttr<NSReturnsRetainedAttr>())) { in CheckObjCMethodOverride() 197 Diag(Overridden->getLocation(), diag::note_previous_decl) << "method"; in CheckObjCMethodOverride() [all …]
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
H A D | Cloneable.h | 29 /// To define a class derived from the Base with overridden Clone: 34 /// To define a class at the next level of inheritance with overridden Clone:
|
/freebsd/contrib/atf/atf-sh/ |
H A D | atf-sh.1 | 68 Should not be overridden other than for testing purposes. 73 Should not be overridden other than for testing purposes.
|
/freebsd/contrib/llvm-project/clang/include/clang/Serialization/ |
H A D | ModuleFile.h | 69 bool Overridden; member 76 /// bools indicating whether this was an overridden buffer or if it was 80 Overridden = 1, enumerator 92 "an overridden cannot be out-of-date"); 95 intVal = Overridden; 112 bool isOverridden() const { return Val.getInt() == Overridden; } in isOverridden()
|
/freebsd/contrib/bc/manuals/ |
H A D | build.md | 204 Can be overridden by passing the `--prefix` option to `configure.sh`. 226 Can be overridden by passing the `--bindir` option to `configure.sh`. 234 Can be overridden by passing the `--includedir` option to `configure.sh`. 242 Can be overridden by passing the `--libdir` option to `configure.sh`. 250 Can be overridden by passing the `--datarootdir` option to `configure.sh`. 258 Can be overridden by passing the `--datadir` option to `configure.sh`. 266 Can be overridden by passing the `--mandir` option to `configure.sh`. 275 Can be overridden by passing the `--man1dir` option to `configure.sh`. 283 Can be overridden by passing the `--man3dir` option to `configure.sh`. 730 environment variable is overridden.
|
/freebsd/sys/dev/bhnd/cores/pci/ |
H A D | bhnd_pci_hostbvar.h | 122 * ASPM and ECPM settings must be overridden manually. 238 * If true, ASPM/CLKREQ should be overridden as enabled. 239 * If false, ASPM/CLKREQ should be overridden as disabled.
|
/freebsd/secure/lib/libcrypto/man/man3/ |
H A D | OSSL_CMP_MSG_get0_header.3 | 214 The extensions are further augmented or overridden by any extensions with the 216 The SANs are further overridden by any SANs included in \fIctx\fR via 218 Finally, policies are overridden by any policies included in \fIctx\fR via
|
/freebsd/usr.bin/limits/ |
H A D | limits.1 | 149 affected unless overridden later with either the 159 affected until overridden later with either the 172 limits are affected until overridden later with either the
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | DeclObjC.cpp | 1259 // In categories look for overridden methods from protocols. A method from in CollectOverriddenMethodsRecurse() 1260 // category is not "overridden" since it is considered as the "same" method in CollectOverriddenMethodsRecurse() 1267 Overridden = Container->getMethod(Method->getSelector(), in CollectOverriddenMethodsRecurse() local 1270 if (Method != Overridden) { in CollectOverriddenMethodsRecurse() 1273 Methods.push_back(Overridden); in CollectOverriddenMethodsRecurse() 1284 Overridden = Container->getMethod(Method->getSelector(), in CollectOverriddenMethodsRecurse() local 1287 if (Method != Overridden) { in CollectOverriddenMethodsRecurse() 1290 Methods.push_back(Overridden); in CollectOverriddenMethodsRecurse() 1320 SmallVectorImpl<const ObjCMethodDecl *> &overridden) { in collectOverriddenMethodsSlow() argument 1325 CollectOverriddenMethods(ProtD, Method, overridden); in collectOverriddenMethodsSlow() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
H A D | AppleThreadPlanStepThroughObjCTrampoline.cpp | 221 // overridden methods. For instance 225 // This checks whether the selector has been overridden, directly calling the 228 // We need to get into the overridden implementation. We'll do that by 362 // of the overridden implementation didn't have debug info. in ShouldStop()
|
/freebsd/contrib/file/ |
H A D | INSTALL | 175 but not in terms of `${prefix}', must each be overridden at install 214 overridden with `make V=1'; while running `./configure 216 overridden with `make V=0'. 304 overridden in the site shell script).
|
/freebsd/contrib/sqlite3/ |
H A D | INSTALL | 175 but not in terms of `${prefix}', must each be overridden at install 214 overridden with `make V=1'; while running `./configure 216 overridden with `make V=0'. 309 overridden in the site shell script).
|
/freebsd/release/tools/ |
H A D | vmimage.subr | 106 # Prototype. When overridden, runs extra post-installworld commands 146 # Prototype. When overridden, installs additional ports within the 153 # Prototype. When overridden, performs additional tasks within the
|