Home
last modified time | relevance | path

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

12345678910>>...89

/openbsd/gnu/usr.bin/perl/t/op/
H A Dswitch.t203 when(/lo/)
205 when(/no/)
583 when(21) {}
584 when("22") {}
599 when(21) {}
650 when (1) {
667 when (1) {
1184 when-lexical
1185 when-global
1186 when-local
[all …]
/openbsd/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')),
74 when=lambda cfg: sourceBuilds(cfg, """
83 when=lambda cfg: sourceBuilds(cfg, """
99 when=lambda cfg: not sourceBuilds(cfg, """
141 when=lambda cfg: sourceBuilds(cfg, """
160 when=lambda cfg: _getSuitableClangTidy(cfg) is not None,
220 when=lambda cfg, m=macro: m in compilerMacros(cfg))
[all …]
/openbsd/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/gnu/usr.bin/perl/t/lib/feature/
H A Dswitch12 # No switch; when should be a bareword.
14 print STDOUT when;
17 when
44 # Use switch; so when is a keyword
46 given(1) { when(1) { print "okay" } }
78 print STDOUT when;
82 when
110 print STDOUT when;
114 when
121 print STDOUT when;
[all …]
/openbsd/gnu/llvm/clang/include/clang/Basic/
H A DCodeGenOptions.def100 CODEGENOPT(InstrumentFunctionsAfterInlining , 1, 0) ///< Set when
102 CODEGENOPT(InstrumentFunctionEntryBare , 1, 0) ///< Set when
118 ///< Set when -femit-dwarf-unwind is passed.
122 ///< Set when -fxray-always-emit-customevents is enabled.
125 ///< Set when -fxray-always-emit-typedevents is enabled.
128 ///< Set when -fxray-ignore-loops is enabled.
151 CODEGENOPT(JMCInstrument, 1, 0) ///< Set when -fjmc is enabled.
152 CODEGENOPT(InstrumentForProfiling , 1, 0) ///< Set when -pg is enabled.
153 CODEGENOPT(CallFEntry , 1, 0) ///< Set when -mfentry is enabled.
154 CODEGENOPT(MNopMCount , 1, 0) ///< Set when -mnop-mcount is enabled.
[all …]
/openbsd/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/gnu/usr.bin/perl/cpan/Test2-Suite/t/regression/
H A DTest2-Mock.t15 'Did not die when adding plain value'
25 'Correct value returned for add when plain string given'
30 'Correct value returned for add when undef given'
37 'Correct value returned for override when undef given'
42 'Correct value returned for override when plain string given'
/openbsd/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/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()
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()
1079 ((timer_ptr->when.tv_sec == time_now.tv_sec) && in handle_timer_event()
[all …]
/openbsd/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/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/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/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/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/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/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/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/gnu/llvm/clang/include/clang/AST/
H A DCXXRecordDeclDefinitionBits.def41 /// 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
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
96 /// True when there are private non-static data members.
99 /// True when there are protected non-static data members.
[all …]
/openbsd/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/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/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…
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…
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.
122 …each stop. Commands and command output will be sent to the debugger console when they are executed.
123 …ng]| | LLDB commands executed when the program exits. Commands and command output will be sent to …
[all …]
/openbsd/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
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
117 functions when requested with this feature enabled. Setting file and line
[all …]
/openbsd/gnu/llvm/lldb/source/Target/
H A DTargetProperties.td13 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.">;
51 Desc<"List of directories to be searched when locating modules for Clang.">;
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.">;
154 Desc<"Allow LLDB to load scripting resources embedded in symbol files when available.">;
181 Desc<"Always install the main executable when connected to a remote platform.">;
215 Desc<"If true, stop when a shared library is loaded or unloaded.">;
219 Desc<"If true, LanguageRuntime plugins' UnwindPlans will not be used when backtracing.">;
[all …]
/openbsd/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/gnu/gcc/gcc/config/sparc/
H A Dt-sol217 # We need to use -fPIC when we are using gcc to compile the routines in
18 # crtstuff.c. This is only really needed when we are going to use gcc/g++
19 # to produce a shared library, but since we don't know ahead of time when
20 # we will be doing that, we just always use -fPIC when compiling the

12345678910>>...89