| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/experimental/ |
| H A D | checkedint.d | 216 struct Checked(T, Hook = Abort) 229 static if (hasMember!(Hook, "defaultValue")) 230 private T payload = Hook.defaultValue!T; 237 static if (stateSize!Hook > 0) Hook hook; 238 else alias hook = Hook; 261 static if (hasMember!(Hook, "min")) 263 enum Checked!(T, Hook) min = Checked!(T, Hook)(Hook.min!T); 273 enum Checked!(T, Hook) min = Checked(T.min); 275 static if (hasMember!(Hook, "max")) 276 enum Checked!(T, Hook) max = Checked(Hook.max!T); [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/ |
| H A D | checkedint.d | 265 struct Checked(T, Hook = Abort) 280 static if (hasMember!(Hook, "defaultValue")) 281 private T payload = Hook.defaultValue!T; 288 static if (stateSize!Hook > 0) Hook hook; 289 else alias hook = Hook; 313 static if (hasMember!(Hook, "min")) 315 enum Checked!(T, Hook) min = Checked!(T, Hook)(Hook.min!T); 327 enum Checked!(T, Hook) min = Checked(T.min); 329 static if (hasMember!(Hook, "max")) 332 enum Checked!(T, Hook) max = Checked(Hook.max!T); [all …]
|
| /netbsd-src/external/bsd/kyua-cli/dist/utils/process/ |
| H A D | child.hpp | 83 template< typename Hook > 84 static std::unique_ptr< child > fork_capture(Hook); 87 template< typename Hook > 88 static std::unique_ptr< child > fork_files(Hook, const fs::path&,
|
| H A D | child.ipp | 54 template< typename Hook > 56 child::fork_files(Hook hook, const fs::path& stdout_file, 85 template< typename Hook > 87 child::fork_capture(Hook hook)
|
| H A D | child_test.cpp | 300 template< class Hook > 302 child__fork_capture__ok(Hook hook) in child__fork_capture__ok()
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/array/ |
| H A D | utils.d | 52 auto _d_HookTraceImpl(T, alias Hook, string errorMessage)(string file, int line, string funcname, P… in _d_HookTraceImpl() argument 65 Hook.stringof.ptr, in _d_HookTraceImpl() 89 return Hook(parameters); in _d_HookTraceImpl()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/doc/ |
| H A D | tm.texi | 88 ``Target Hook'' with a prototype. Many macros will change in future 94 Target Hook''. This is declared in @file{c-family/c-target.h}, the 102 documented as ``Common Target Hook''. This is declared in 111 specific to the D language front end, documented as ``D Target Hook''. 402 @deftypevr {Common Target Hook} bool TARGET_ALWAYS_STRIP_DOTDOT 669 @deftypevr {Common Target Hook} int TARGET_DEFAULT_TARGET_FLAGS 677 @deftypefn {Common Target Hook} bool TARGET_HANDLE_OPTION (struct gcc_options *@var{opts}, struct g… 691 @deftypefn {C Target Hook} bool TARGET_HANDLE_C_OPTION (size_t @var{code}, const char *@var{arg}, i… 705 @deftypefn {C Target Hook} tree TARGET_OBJC_CONSTRUCT_STRING_OBJECT (tree @var{string}) 709 @deftypefn {C Target Hook} void TARGET_OBJC_DECLARE_UNRESOLVED_CLASS_REFERENCE (const char *@var{cl… [all …]
|
| H A D | hostconfig.texi | 39 @deftypefn {Host Hook} void HOST_HOOKS_EXTRA_SIGNALS (void) 44 @deftypefn {Host Hook} {void *} HOST_HOOKS_GT_PCH_GET_ADDRESS (size_t @ 54 @deftypefn {Host Hook} int HOST_HOOKS_GT_PCH_USE_ADDRESS (void * @var{address}, @ 75 @deftypefn {Host Hook} size_t HOST_HOOKS_GT_PCH_ALLOC_GRANULARITY (void);
|
| H A D | gccint.info | 31000 Hook" with a prototype. Many macros will change in future from being 31004 to front ends for C-family languages, documented as "C Target Hook". 31013 as "Common Target Hook". This is declared in 'common/common-target.h', 31020 to the D language front end, documented as "D Target Hook". This is 31276 -- Common Target Hook: bool TARGET_ALWAYS_STRIP_DOTDOT 31508 -- Common Target Hook: int TARGET_DEFAULT_TARGET_FLAGS 31512 -- Common Target Hook: bool TARGET_HANDLE_OPTION (struct gcc_options 31526 -- C Target Hook: bool TARGET_HANDLE_C_OPTION (size_t CODE, const char 31541 -- C Target Hook: tree TARGET_OBJC_CONSTRUCT_STRING_OBJECT (tree 31557 -- C Target Hook: void TARGET_OBJC_DECLARE_UNRESOLVED_CLASS_REFERENCE [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/doc/ |
| H A D | hostconfig.texi | 39 @deftypefn {Host Hook} void HOST_HOOKS_EXTRA_SIGNALS (void) 44 @deftypefn {Host Hook} {void *} HOST_HOOKS_GT_PCH_GET_ADDRESS (size_t @ 54 @deftypefn {Host Hook} int HOST_HOOKS_GT_PCH_USE_ADDRESS (void * @var{address}, @ 75 @deftypefn {Host Hook} size_t HOST_HOOKS_GT_PCH_ALLOC_GRANULARITY (void);
|
| H A D | gccint.info | 32436 Hook" with a prototype. Many macros will change in future from being 32440 to front ends for C-family languages, documented as "C Target Hook". 32449 as "Common Target Hook". This is declared in 'common/common-target.h', 32456 to the D language front end, documented as "D Target Hook". This is 32712 -- Common Target Hook: bool TARGET_ALWAYS_STRIP_DOTDOT 32944 -- Common Target Hook: int TARGET_DEFAULT_TARGET_FLAGS 32948 -- Common Target Hook: bool TARGET_HANDLE_OPTION (struct gcc_options 32962 -- C Target Hook: bool TARGET_HANDLE_C_OPTION (size_t CODE, const char 32977 -- C Target Hook: tree TARGET_OBJC_CONSTRUCT_STRING_OBJECT (tree 32993 -- C Target Hook: void TARGET_OBJC_DECLARE_UNRESOLVED_CLASS_REFERENCE [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/LTO/ |
| H A D | LTOBackend.cpp | 96 auto setHook = [&](std::string PathSuffix, ModuleHookFn &Hook) { in addSaveTemps() argument 98 ModuleHookFn LinkerHook = Hook; in addSaveTemps() 99 Hook = [=](unsigned Task, const Module &M) { in addSaveTemps()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/d/ |
| H A D | d-target.def | 24 #define HOOK_TYPE "D Target Hook"
|
| /netbsd-src/external/gpl3/binutils/dist/ld/emultempl/ |
| H A D | vxworks.em | 79 # Hook in our routines above. There are three possibilities:
|
| /netbsd-src/external/gpl3/binutils.old/dist/ld/emultempl/ |
| H A D | vxworks.em | 79 # Hook in our routines above. There are three possibilities:
|
| /netbsd-src/external/mpl/bind/dist/doc/arm/ |
| H A D | plugins.inc.rst | 81 action" - a function within the plugin library - is called. Hook
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/common/ |
| H A D | common-target.def | 23 #define HOOK_TYPE "Common Target Hook"
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/common/ |
| H A D | common-target.def | 23 #define HOOK_TYPE "Common Target Hook"
|
| /netbsd-src/external/gpl3/gdb/dist/sim/m32c/ |
| H A D | ChangeLog-2021 | 619 * mem.c (mem_put_byte): Hook simulated UART to stdout. 620 (mem_put_hi): Hook in simulated trace port. 621 (mem_get_byte): Hook in simulated uart control port.
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/d/ |
| H A D | d-target.def | 24 #define HOOK_TYPE "D Target Hook"
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/c-family/ |
| H A D | c-target.def | 23 #define HOOK_TYPE "C Target Hook"
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/c-family/ |
| H A D | c-target.def | 23 #define HOOK_TYPE "C Target Hook"
|
| /netbsd-src/external/gpl3/gdb/dist/gdb/mi/ |
| H A D | ChangeLog-1999-2003 | 869 * mi-cmds.c (mi_cmds): Hook up data-write-memory to 1209 * mi-cmds.c (mi_cmds): Hook data-assign to mi_cmd_data_assign and 1227 * mi-cmds.c (mi_cmds): Hook data-list-register-values to 1434 * mi-cmds.c (mi_cmds): Hook up break-watch to function 1456 * mi-cmds.c (mi_cmds): Hook up data-list-changed-registers to 1587 * mi-cmds.c (mi_cmds): Hook stack-list-frames command to 1913 * mi-cmds.c (mi_cmds): Hook up -target-select operation to new mi
|
| /netbsd-src/external/gpl3/gdb.old/dist/gdb/mi/ |
| H A D | ChangeLog-1999-2003 | 869 * mi-cmds.c (mi_cmds): Hook up data-write-memory to 1209 * mi-cmds.c (mi_cmds): Hook data-assign to mi_cmd_data_assign and 1227 * mi-cmds.c (mi_cmds): Hook data-list-register-values to 1434 * mi-cmds.c (mi_cmds): Hook up break-watch to function 1456 * mi-cmds.c (mi_cmds): Hook up data-list-changed-registers to 1587 * mi-cmds.c (mi_cmds): Hook stack-list-frames command to 1913 * mi-cmds.c (mi_cmds): Hook up -target-select operation to new mi
|
| /netbsd-src/usr.bin/calendar/calendars/ |
| H A D | calendar.music | 61 03/29 Dr. Hook gets a group picture on the cover of "Rolling Stone", 1973
|