Home
last modified time | relevance | path

Searched refs:when (Results 1 – 25 of 2307) sorted by relevance

12345678910>>...93

/openbsd-src/gnu/usr.bin/perl/t/op/
H A Dswitch.t22 CORE::when(3) { pass "CORE::given and CORE::when"; continue }
48 when(be_true(my $x = "bar")) {
63 when(2) { $ok = 'two'; }
64 when(3) { $ok = 'three'; }
65 when(4) { $ok = 'four'; }
75 when(2) { $ok = 'two'; }
76 when(3) { $ok = 'three'; }
77 when(4) { $ok = 'four'; }
86 when(3.1) { $ok1 = 'n'; }
87 when(3.0) { $ok1 = 'y'; continue }
[all …]
/openbsd-src/gnu/llvm/libcxx/utils/libcxx/test/
H A Dfeatures.py39 when=lambda cfg: hasCompileFlag(cfg, '-fcoroutines-ts') and
44 when=lambda cfg: hasCompileFlag(cfg, '-Werror=thread-safety'),
48 when=lambda cfg: hasCompileFlag(cfg, '-Wuser-defined-warnings'),
58 when=lambda cfg: hasCompileFlag(cfg, '-fconstexpr-steps=1')),
61 when=lambda cfg: hasCompileFlag(cfg, '-fconstexpr-ops-limit=1')),
63 Feature(name='has-fblocks', when=lambda cfg: hasCompileFlag(cfg, '-fblocks')),
64 …Feature(name='-fsized-deallocation', when=lambda cfg: hasCompileFlag(cfg, '-fsized-deallo…
65 …Feature(name='-faligned-allocation', when=lambda cfg: hasCompileFlag(cfg, '-faligned-allo…
66 …Feature(name='fdelayed-template-parsing', when=lambda cfg: hasCompileFlag(cfg, '-fdelayed-temp…
67 …Feature(name='libcpp-no-coroutines', when=lambda cfg: featureTestMacros(cfg).get('__cpp_i…
[all …]
/openbsd-src/usr.sbin/smtpd/
H A Drunq.c26 time_t when; member
52 if (job->when <= now) in runq_reset()
55 tv.tv_sec = job->when - now; in runq_reset()
71 if (job->when > now) in runq_timeout()
110 runq_schedule_at(struct runq *runq, time_t when, void *arg) in runq_schedule_at() argument
119 job->when = when; in runq_schedule_at()
122 if (tmpjob->when > job->when) { in runq_schedule_at()
159 runq_pending(struct runq *runq, void *arg, time_t *when) in runq_pending() argument
165 if (when) in runq_pending()
166 *when = job->when; in runq_pending()
/openbsd-src/gnu/usr.bin/perl/t/lib/feature/
H A Dswitch12 # No switch; when should be a bareword.
14 print STDOUT when;
16 Unquoted string "when" may clash with future reserved word at - line 3.
17 when
36 Can't "continue" outside a when block at - line 2.
44 # Use switch; so when is a keyword
46 given(1) { when(1) { print "okay" } }
73 # switch out of scope; when should be a bareword.
76 given (1) { when(1) {print "Okay here\n";} }
78 print STDOUT when;
[all …]
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DCodeGenOptions.def48 ///< aliases to base ctors when possible.
49 CODEGENOPT(DataSections , 1, 0) ///< Set when -fdata-sections is enabled.
70 CODEGENOPT(DisableRedZone , 1, 0) ///< Set when -mno-red-zone is enabled.
77 CODEGENOPT(IndirectTlsSegRefs, 1, 0) ///< Set when -mno-tls-direct-seg-refs
84 ///< Only useful when running CodeGen as a
97 CODEGENOPT(FunctionSections , 1, 0) ///< Set when -ffunction-sections is enabled.
98 CODEGENOPT(InstrumentFunctions , 1, 0) ///< Set when -finstrument-functions is
100 CODEGENOPT(InstrumentFunctionsAfterInlining , 1, 0) ///< Set when
102 CODEGENOPT(InstrumentFunctionEntryBare , 1, 0) ///< Set when
112 CODEGENOPT(XRayInstrumentFunctions , 1, 0) ///< Set when -fxray-instrument is
[all …]
/openbsd-src/sbin/shutdown/
H A Dshutdown.c108 char when[64]; in main() local
227 strftime(when, sizeof(when), "%a %b %e %T %Z %Y", lt); in main()
228 printf("Shutdown at %s.\n", when); in main()
305 char when[64]; in timewarn() local
349 strftime(when, sizeof(when), "%H:%M %Z", lt); in timewarn()
350 dprintf(fd[1], "System going down at %s\n\n", when); in timewarn()
497 char when[64]; in getoffset() local
571 strftime(when, sizeof(when), "%a %b %e %T %Z %Y", lt); in getoffset()
572 errx(1, "time is already past: %s", when); in getoffset()
595 char when[64]; in nolog() local
[all …]
/openbsd-src/gnu/llvm/clang/docs/
H A DTooling.rst14 you want to use. Consider the other interfaces only when you have a good
17 Canonical examples of when to use LibClang:
22 Use LibClang when you...:
29 Do not use LibClang when you...:
41 Canonical examples of when to use Clang Plugins:
46 Use Clang Plugins when you...:
52 Do not use Clang Plugins when you...:
65 examples of when to use LibTooling:
70 Use LibTooling when you...:
77 Do not use LibTooling when you...:
[all …]
/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Devent-loop.c171 struct timeval when; member
980 timer_ptr->when.tv_sec = time_now.tv_sec + delta.tv_sec; in create_timer()
981 timer_ptr->when.tv_usec = time_now.tv_usec + delta.tv_usec; in create_timer()
983 if (timer_ptr->when.tv_usec >= 1000000) in create_timer()
985 timer_ptr->when.tv_sec += 1; in create_timer()
986 timer_ptr->when.tv_usec -= 1000000; in create_timer()
1002 if ((timer_index->when.tv_sec > timer_ptr->when.tv_sec) || in create_timer()
1003 ((timer_index->when.tv_sec == timer_ptr->when.tv_sec) in create_timer()
1004 && (timer_index->when.tv_usec > timer_ptr->when.tv_usec))) in create_timer()
1078 if ((timer_ptr->when.tv_sec > time_now.tv_sec) || in handle_timer_event()
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/config/
H A Dt-svr41 # We need to use -fPIC when we are using gcc to compile the routines in
2 # crtstuff.c. This is only really needed when we are going to use gcc/g++
3 # to produce a shared library, but since we don't know ahead of time when
4 # we will be doing that, we just always use -fPIC when compiling the
/openbsd-src/gnu/gcc/gcc/config/
H A Dt-svr41 # We need to use -fPIC when we are using gcc to compile the routines in
2 # crtstuff.c. This is only really needed when we are going to use gcc/g++
3 # to produce a shared library, but since we don't know ahead of time when
4 # we will be doing that, we just always use -fPIC when compiling the
/openbsd-src/gnu/usr.bin/gcc/gcc/config/i386/
H A Dt-crtpic3 # We need to use -fPIC when we are using gcc to compile the routines in
4 # crtstuff.c. This is only really needed when we are going to use gcc/g++
5 # to produce a shared library, but since we don't know ahead of time when
6 # we will be doing that, we just always use -fPIC when compiling the
/openbsd-src/gnu/gcc/gcc/config/i386/
H A Dt-crtpic3 # We need to use -fPIC when we are using gcc to compile the routines in
4 # crtstuff.c. This is only really needed when we are going to use gcc/g++
5 # to produce a shared library, but since we don't know ahead of time when
6 # we will be doing that, we just always use -fPIC when compiling the
/openbsd-src/gnu/usr.bin/gcc/gcc/config/d30v/
H A Dt-d30v21 # end labels to the .ctors and .dtors section when we link using gcc.
25 # We need to use -fPIC when we are using gcc to compile the routines in
26 # crtstuff.c. This is only really needed when we are going to use gcc/g++
27 # to produce a shared library, but since we don't know ahead of time when
28 # we will be doing that, we just always use -fPIC when compiling the
/openbsd-src/gnu/usr.bin/binutils-2.17/ld/scripttempl/
H A Dtic80coff.sc7 # RELOCATING: Set to a non-empty string when the linker is going to be doing
10 # CONSTRUCTING: Set to a non-empty string when the linker is going to be
13 # DATA_ALIGNMENT: Set to an ALIGN expression when the output should be page
14 # aligned, or to "." when generating the -N script.
16 # CREATE_SHLIB: Set to a non-empty string when generating a script for
/openbsd-src/gnu/usr.bin/binutils/ld/scripttempl/
H A Dtic80coff.sc7 # RELOCATING: Set to a non-empty string when the linker is going to be doing
10 # CONSTRUCTING: Set to a non-empty string when the linker is going to be
13 # DATA_ALIGNMENT: Set to an ALIGN expression when the output should be page
14 # aligned, or to "." when generating the -N script.
16 # CREATE_SHLIB: Set to a non-empty string when generating a script for
/openbsd-src/gnu/usr.bin/gcc/gcc/config/m88k/
H A Dt-sysv414 # We need to use -fPIC when we are using gcc to compile the routines in
15 # crtstuff.c. This is only really needed when we are going to use gcc/g++
16 # to produce a shared library, but since we don't know ahead of time when
17 # we will be doing that, we just always use -fPIC when compiling the
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DCXXRecordDeclDefinitionBits.def26 /// MergePolicy: How to behave when the value of the field is different in
41 /// True when this class is an aggregate.
44 /// True when this class is a POD-type.
47 /// True when this class is empty for traits purposes, that is:
55 /// True when this class is polymorphic, i.e., has at
59 /// True when this class is abstract, i.e., has at least
63 /// True when this class is standard-layout, per the applicable
67 /// True when this class was standard-layout under the C++11
84 /// True when any base class has any declared non-static data
90 /// True when any base class has any declared non-static data
[all …]
/openbsd-src/gnu/usr.bin/binutils/gdb/doc/
H A Dobserver.texi9 when GDB reaches certain states, or certain events occur in GDB.
21 when attaching the callback. In return, the subject will provide
26 as it lacks a mechanism that would deallocate this data when the
32 data when attaching the callback.
47 @value{GDBN} notifies all @code{normal_stop} observers when the
52 Note that the @code{normal_stop} notification is not emitted when
61 Using the function @var{f}, create an observer that is notified when
66 Remove @var{observer} from the list of observers to be notified when
96 when @value{GDBN} calls this observer, the library's symbols probably
/openbsd-src/gnu/llvm/compiler-rt/lib/lsan/
H A Dlsan_mac.cpp122 INTERCEPTOR(void, dispatch_after_f, dispatch_time_t when, dispatch_queue_t dq, in INTERCEPT_DISPATCH_X_F_3()
125 return REAL(dispatch_after_f)(when, dq, (void *)lsan_ctxt, in INTERCEPT_DISPATCH_X_F_3()
141 void dispatch_after(dispatch_time_t when, dispatch_queue_t queue,
168 INTERCEPTOR(void, dispatch_after, dispatch_time_t when, dispatch_queue_t queue,
171 REAL(dispatch_after)(when, queue, lsan_block);
/openbsd-src/gnu/llvm/lldb/docs/use/
H A Dondemand.rst8 increase debug session load times and can slow developer productivity when the
10 be slow when types from all of the binaries have full debug info as each module
21 binaries that are not all required when you want to focus on debugging a few of
46 having to set any other settings and will try and determine when to enable
60 by file and line are always enabled when on demand symbols is being used. Line
91 symbol tables. This can cause breakpoint setting by function name to fail when
107 within debug inforamtion. As such, some lookups by name might fail when they
108 wouldn't when this feature is not eabled:
110 - Type lookups when the expression parser requests types by name
111 - Global variable lookups by name when the name of the variable is stripped
[all …]
/openbsd-src/gnu/llvm/lldb/tools/lldb-vscode/
H A DREADME.md68 This is handy if you want to debug and develope the `lldb-vscode` executable when adding features o…
91 |**env** |dictionary| | Environment variables to set when launching the program. The for…
93 …DB target. Commands and command output will be sent to the debugger console when they are executed.
94 …n created. Commands and command output will be sent to the debugger console when they are executed.
95 …each stop. Commands and command output will be sent to the debugger console when they are executed.
96 …ng]| | LLDB commands executed when the program exits. Commands and command output will be sent to …
97 …| LLDB commands executed when the debugging session ends. Commands and command output will be sent…
99 |**debuggerRoot** | string| |Specify a working directory to use when launching lldb-vscode. If th…
120 …DB target. Commands and command output will be sent to the debugger console when they are executed.
121 …n created. Commands and command output will be sent to the debugger console when they are executed.
[all …]
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DTargetProperties.td6 …bles explicitly into the expression text. This will fix symbol resolution when there are name coll…
13 Desc<"Default architecture to choose, when there's a choice.">;
19 Desc<"The language to use when interpreting expressions entered in commands.">;
36 Desc<"Skip function prologues when setting breakpoints by name.">;
45 …Desc<"Executable search paths to use when locating executable files whose paths don't match the lo…
48 …Desc<"List of directories to be searched when locating debug symbol files. See also symbols.enable…
51 Desc<"List of directories to be searched when locating modules for Clang.">;
78 …Desc<"The maximum number of zeroes to insert when displaying a very small float before falling bac…
87 Desc<"Maximum number of characters to show when using %s in summary strings.">;
93 Desc<"Consult the platform module avoid list when setting non-module specific breakpoints.">;
[all …]
/openbsd-src/gnu/usr.bin/perl/dist/Carp/
H A DChanges10 which throw exceptions when we call $obj->can("((").
14 * Deal with overloading when overload.pm is not use
33 * Optimize format_arg when arguments contain many references
78 * bugfix: ignore mismatched Carp and Carp::Heavy when it doesn't matter
91 * bugfix: don't get confused by a deleted stash when generating
96 * bugfix: don't generate Unicode warnings on old perls when an argument
110 * when truncating an argument list in a stack trace, don't format the
117 * in tests, avoid using package name "B" when not actually testing
/openbsd-src/gnu/gcc/gcc/config/m32r/
H A Dt-linux21 # We need to use -fpic when we are using gcc to compile the routines in
22 # initfini.c. This is only really needed when we are going to use gcc/g++
23 # to produce a shared library, but since we don't know ahead of time when
24 # we will be doing that, we just always use -fpic when compiling the
/openbsd-src/gnu/usr.bin/gcc/gcc/config/sparc/
H A Dt-sol216 # We need to use -fPIC when we are using gcc to compile the routines in
17 # crtstuff.c. This is only really needed when we are going to use gcc/g++
18 # to produce a shared library, but since we don't know ahead of time when
19 # we will be doing that, we just always use -fPIC when compiling the

12345678910>>...93