Home
last modified time | relevance | path

Searched full:overriding (Results 1 – 25 of 352) sorted by relevance

12345678910>>...15

/freebsd-src/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsELFStreamer.h40 /// Overriding this function allows us to add arbitrary behaviour before the
46 /// Overriding this function allows us to record all labels that should be
51 /// Overriding this function allows us to dismiss all labels that are
55 /// Overriding these functions allows us to dismiss all labels that are
61 // Overriding these functions allows us to avoid recording of these labels
/freebsd-src/contrib/llvm-project/clang/include/clang/AST/
H A DCXXInheritance.h231 /// The overriding virtual method.
234 /// The subobject in which the overriding virtual method
276 // Iterate over the set of subobjects that have overriding methods.
286 // Iterate over the set of overriding virtual methods in a given
293 // Add a new overriding method for a particular subobject.
294 void add(unsigned OverriddenSubobject, UniqueVirtualMethod Overriding);
296 // Add all of the overriding methods from "other" into overrides for
301 // Replace all overriding virtual methods in all subobjects with the
303 void replaceAll(UniqueVirtualMethod Overriding);
353 /// and the overriding virtual member functions are located. Subobject
/freebsd-src/contrib/llvm-project/clang/lib/AST/
H A DCXXInheritance.cpp465 UniqueVirtualMethod Overriding) { in add() argument
468 if (!llvm::is_contained(SubobjectOverrides, Overriding)) in add()
469 SubobjectOverrides.push_back(Overriding); in add()
482 void OverridingMethods::replaceAll(UniqueVirtualMethod Overriding) { in replaceAll() argument
485 I->second.push_back(Overriding); in replaceAll()
610 // overriding virtual function. in Collect()
651 SmallVectorImpl<UniqueVirtualMethod> &Overriding = SO.second; in getFinalOverriders() local
652 if (Overriding.size() < 2) in getFinalOverriders()
655 auto IsHidden = [&Overriding](const UniqueVirtualMethod &M) { in getFinalOverriders()
659 // We have an overriding method in a virtual base class in getFinalOverriders()
[all …]
/freebsd-src/crypto/openssl/doc/man3/
H A DSSL_CTX_set0_CA_list.pod70 requesting a client certificate for the chosen B<ssl>, overriding the
90 the chosen B<ssl>, overriding the setting valid for B<ssl>'s SSL_CTX object.
111 overriding any list set in the parent B<SSL_CTX> of B<s>. Ownership of
125 list of CAs sent to the peer for B<s>, overriding the setting in the parent
/freebsd-src/usr.bin/man/
H A Dmanpath.198 flag, causes the utility to display a warning and the value, overriding any
101 If set, causes the utility to display a warning and the value, overriding
/freebsd-src/crypto/openssh/regress/
H A Dforcecommand.sh42 trace "force command overriding subsystem"
53 trace "force command in match overriding subsystem"
/freebsd-src/secure/lib/libcrypto/man/man3/
H A DSSL_CTX_set0_CA_list.3205 requesting a client certificate for the chosen \fBssl\fR, overriding the
225 the chosen \fBssl\fR, overriding the setting valid for \fBssl\fR's \s-1SSL_CTX\s0 object.
246 overriding any list set in the parent \fB\s-1SSL_CTX\s0\fR of \fBs\fR. Ownership of
260 list of CAs sent to the peer for \fBs\fR, overriding the setting in the parent
/freebsd-src/usr.sbin/certctl/
H A Dcertctl.860 Specify the DESTDIR (overriding values from the environment).
62 Specify the DISTBASE (overriding values from the environment).
/freebsd-src/contrib/netbsd-tests/bin/ps/
H A Dt_ps.sh221 "overriding via 'ps -o foo=BAR'"
247 atf_set "descr" "Tests simple uses of header overriding via" \
276 atf_set "descr" "Tests header overriding with embedded space," \
307 "overriding via 'ps -o foo=BAR -o baz='. This" \
/freebsd-src/sys/contrib/openzfs/config/
H A Dpkg.m464 AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
141 AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
142 AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
269 AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl
/freebsd-src/bin/sh/tests/execution/
H A Dfunc3.05 ${SH} -c 'unset() { echo overriding function executed, bad; }; v=1; unset v; exit "${v-0}"' 2>/dev/…
/freebsd-src/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZRegisterInfo.h103 /// Destroys the object. Bogus destructor overriding base class destructor
126 /// Destroys the object. Bogus destructor overriding base class destructor
/freebsd-src/contrib/sendmail/cf/feature/
H A Dmailertable.m422 # Mailer table (overriding domains)
/freebsd-src/contrib/mandoc/
H A Dtest-PATH_MAX.c8 * <limits.h>, overriding an excessive value of PATH_MAX from
/freebsd-src/bin/df/
H A Ddf.176 Explicitly use 512 byte blocks, overriding any
140 Explicitly use 512 byte blocks, overriding any
/freebsd-src/sys/contrib/device-tree/Bindings/interrupt-controller/
H A Darm,gic.yaml170 this property should contain the SPI base of the MSI frame, overriding
177 frame, overriding the HW value.
/freebsd-src/rescue/
H A DREADME18 support for overriding specific library entries. Such techniques
/freebsd-src/share/man/man4/
H A Disp.4180 to use, overriding the value in NVRAM for the card.
183 to use, overriding the value in NVRAM for the card.
/freebsd-src/contrib/llvm-project/compiler-rt/lib/builtins/aarch64/
H A Dfp_mode.c24 // For soft float targets, allow changing rounding mode by overriding the weak
/freebsd-src/contrib/llvm-project/compiler-rt/lib/builtins/arm/
H A Dfp_mode.c24 // For soft float targets, allow changing rounding mode by overriding the weak
/freebsd-src/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticFrontendKinds.td47 "overriding the module target triple with %0">,
50 "overriding currently unsupported rounding mode on this target">,
53 "overriding currently unsupported use of floating point exceptions "
/freebsd-src/crypto/openssh/
H A Dssh-add.1231 FIDO authenticator-hosted keys, overriding the default of using the
312 FIDO authenticator-hosted keys, overriding the default of using
/freebsd-src/contrib/googletest/docs/reference/
H A Dmocking.md25 | `const` | Makes the mocked method a `const` method. Required if overriding a `const` method. |
26 | `override` | Marks the method with `override`. Recommended if overriding a `virtual` method. |
27 | `noexcept` | Marks the method with `noexcept`. Required if overriding a `noexcept` method. |
29 | `ref(`*`qualifier`*`)` | Marks the method with the given reference qualifier, for example `ref(&)` or `ref(&&)`. Required if overriding a method that has a reference qualifier. |
/freebsd-src/sys/dev/qat/qat_api/common/crypto/sym/qat/
H A Dlac_sym_qat_cipher.c282 * Overriding default values previously set for AES
298 * Overriding default values previously set for AES
314 * Overriding default values previously set for AES
362 * Overriding default values previously set for AES
/freebsd-src/share/examples/tests/tests/atf/
H A DKyuafile40 -- Note that, while Kyua supports overriding the test case metadata

12345678910>>...15