Home
last modified time | relevance | path

Searched refs:delegating (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/
H A DCIRGenClass.cpp444 bool delegating, in emitCXXConstructorCall() argument
469 emitCXXConstructorCall(d, type, forVirtualBase, delegating, thisAddr, args, in emitCXXConstructorCall()
475 bool delegating, Address thisAddr, CallArgList &args, SourceLocation loc) { in emitCXXConstructorCall() argument
H A DCIRGenExpr.cpp1604 bool delegating = false; in emitCXXConstructExpr() local
1613 delegating = true; in emitCXXConstructExpr()
1627 emitCXXConstructorCall(cd, type, forVirtualBase, delegating, dest, e); in emitCXXConstructExpr()
H A DCIRGenFunction.h842 bool delegating, AggValueSlot thisAVS,
847 bool delegating, Address thisAddr,
/freebsd/crypto/heimdal/appl/ftp/
H A DChangeLog232 * ftp/main.c (getargs): negative flag for delegating gss creds
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticGroups.td1380 DiagGroup<"delegating-ctor-cycles">;
H A DDiagnosticSemaKinds.td2871 // C++11 delegating constructors
2873 "delegating constructors are permitted only in C++11">;
2875 "delegating constructors are incompatible with C++98">,
2878 "an initializer for a delegating constructor must appear alone">;
/freebsd/contrib/googletest/docs/
H A Dgmock_cook_book.md752 You can use the *delegating-to-real* technique to ensure that your mock has the
754 This technique is very similar to the [delegating-to-fake](#DelegatingToFake)