Home
last modified time | relevance | path

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

12345678910>>...140

/external/chromium_org/third_party/sqlite/src/test/
Drandexpr1.test36when -count(distinct 19) then ((count(*))) else max(13) end from t1 union select count(distinct b…
39when -count(distinct 19) then ((count(*))) else max(13) end from t1 union select count(distinct b…
42when -count(distinct 19) then ((count(*))) else max(13) end from t1 union select count(distinct b…
45when coalesce((select +case when not exists(select 1 from t1 where 17<>t1.f and ((a))<t1.b) then t…
48when coalesce((select +case when not exists(select 1 from t1 where 17<>t1.f and ((a))<t1.b) then t…
51when case when not exists(select 1 from t1 where e not in (~t1.d,+case when t1.c<b then t1.e else …
54when case when not exists(select 1 from t1 where e not in (~t1.d,+case when t1.c<b then t1.e else …
57when case when not exists(select 1 from t1 where e not in (~t1.d,+case when t1.c<b then t1.e else …
60when d then e else 11 end=t1.f),t1.d) from t1 where (t1.d)>b), -11) | f+t1.f not in (((c)),b,13)))…
63when d then e else 11 end=t1.f),t1.d) from t1 where (t1.d)>b), -11) | f+t1.f not in (((c)),b,13)))…
[all …]
/external/libunwind/include/
Dlibunwind-dynamic.h88 int32_t when; /* when does it take effect? */ member
178 #define _U_dyn_op_save_reg(op, qp, when, reg, dst) \ argument
179 (*(op) = _U_dyn_op (UNW_DYN_SAVE_REG, (qp), (when), (reg), (dst)))
181 #define _U_dyn_op_spill_fp_rel(op, qp, when, reg, offset) \ argument
182 (*(op) = _U_dyn_op (UNW_DYN_SPILL_FP_REL, (qp), (when), (reg), \
185 #define _U_dyn_op_spill_sp_rel(op, qp, when, reg, offset) \ argument
186 (*(op) = _U_dyn_op (UNW_DYN_SPILL_SP_REL, (qp), (when), (reg), \
189 #define _U_dyn_op_add(op, qp, when, reg, value) \ argument
190 (*(op) = _U_dyn_op (UNW_DYN_ADD, (qp), (when), (reg), (value)))
192 #define _U_dyn_op_pop_frames(op, qp, when, num_frames) \ argument
[all …]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/workspace/
DIsolatedFileSystem.js209 …console.error(errorMessage + " when testing if file exists '" + (this._path + "/" + path + "/" + n…
223 console.error(errorMessage + " when getting content for file '" + (filePath) + "'");
266 console.error(errorMessage + " when deleting file '" + (this._path + "/" + path) + "'");
370 …console.error(errorMessage + " when getting content for file '" + (this._path + "/" + path) + "'");
434 …console.error(errorMessage + " when setting content for file '" + (this._path + "/" + path) + "'");
526 …console.error(errorMessage + " when renaming file '" + (this._path + "/" + path) + "' to '" + newN…
560 console.error(errorMessage + " when reading directory '" + dirEntry.fullPath + "'");
586 console.error(errorMessage + " when requesting entry '" + path + "'");
/external/chromium_org/third_party/icu/source/samples/date/
Ddate.c47 static void date(UDate when, const UChar *tz, UDateFormatStyle style, const char *format, UErrorCod…
76 UDate when; in main() local
161 when = getWhen(millis, seconds, format, style, parse, tz, &status); in main()
167 date(when, tz, style, format, &status); in main()
240 date(UDate when, in date() argument
255 printf("%.0f\n", when); in date()
258 printf("%.3f\n", when/1000.0); in date()
268 len = udat_format(fmt, when, 0, len, 0, status); in date()
273 udat_format(fmt, when, s, len + 1, 0, status); in date()
296 UDate when=0; in getWhen() local
[all …]
/external/icu/icu4c/source/samples/date/
Ddate.c47 static void date(UDate when, const UChar *tz, UDateFormatStyle style, const char *format, UErrorCod…
76 UDate when; in main() local
161 when = getWhen(millis, seconds, format, style, parse, tz, &status); in main()
167 date(when, tz, style, format, &status); in main()
240 date(UDate when, in date() argument
255 printf("%.0f\n", when); in date()
258 printf("%.3f\n", when/1000.0); in date()
268 len = udat_format(fmt, when, 0, len, 0, status); in date()
273 udat_format(fmt, when, s, len + 1, 0, status); in date()
296 UDate when=0; in getWhen() local
[all …]
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
DAudioScheduledSourceNode.cpp137 void AudioScheduledSourceNode::start(double when, ExceptionState& exceptionState) in start() argument
148 if (!std::isfinite(when) || (when < 0)) { in start()
151 "Start time must be a finite non-negative number: " + String::number(when)); in start()
155 m_startTime = when; in start()
159 void AudioScheduledSourceNode::stop(double when, ExceptionState& exceptionState) in stop() argument
170 if (!std::isfinite(when) || (when < 0)) { in stop()
173 "Stop time must be a finite non-negative number: " + String::number(when)); in stop()
180 when = std::max(0.0, when); in stop()
181 m_endTime = when; in stop()
/external/littlemock/tests/com/google/testing/littlemock/
DLittleMockTest.java411 doReturn("first").when(mFoo).get(0); in testDoReturnWhen_SimpleReturn()
416 doReturn("first").when(mFoo).get(0); in testDoReturnWhen_LastStubCallWins()
417 doReturn("second").when(mFoo).get(0); in testDoReturnWhen_LastStubCallWins()
422 doReturn("one").when(mFoo).get(1); in testDoReturnWhen_CorrectStubMethodIsChosen()
423 doReturn("two").when(mFoo).get(2); in testDoReturnWhen_CorrectStubMethodIsChosen()
429 doReturn("one").when(mFoo).get(1); in testDoReturnWhen_UnstubbedMethodStillReturnsDefault()
435 doReturn("first").when("hello").contains("something"); in testDoReturnWhen_CalledOnString()
442 doReturn("first").when(createNotARealMock()).get(0); in testDoReturnWhen_CalledOnNonMock()
450 doReturn("one").when(mFoo).get(8); in testDoReturnWhen_CanAlsoBeVerified()
456 doReturn(90).when(mFoo).anInt(); in testDoReturn_CanPassIntForIntMethod()
[all …]
/external/chromium_org/chrome/browser/resources/help/
Dchannel_change_page.css20 .show-when-selected-channel-requires-powerwash,
21 .show-when-selected-channel-requires-delayed-update,
22 .show-when-selected-channel-good,
23 .show-when-selected-channel-unstable {
28 .show-when-selected-channel-requires-powerwash,
30 .show-when-selected-channel-requires-delayed-update,
31 .selected-channel-good .show-when-selected-channel-good,
32 .selected-channel-unstable .show-when-selected-channel-unstable {
/external/clang/include/clang/Frontend/
DCodeGenOptions.def38 CODEGENOPT(CUDAIsDevice , 1, 0) ///< Set when compiling for CUDA device.
41 ///< aliases to base ctors when possible.
42 CODEGENOPT(DataSections , 1, 0) ///< Set when -fdata-sections is enabled.
43 CODEGENOPT(DisableFPElim , 1, 0) ///< Set when -fomit-frame-pointer is enabled.
50 CODEGENOPT(DisableRedZone , 1, 0) ///< Set when -mno-red-zone is enabled.
54 ///< Only useful when running CodeGen as a
63 CODEGENOPT(FunctionSections , 1, 0) ///< Set when -ffunction-sections is enabled.
64 CODEGENOPT(InstrumentFunctions , 1, 0) ///< Set when -finstrument-functions is
66 CODEGENOPT(InstrumentForProfiling , 1, 0) ///< Set when -pg is enabled.
70 CODEGENOPT(NoCommon , 1, 0) ///< Set when -fno-common or C++ is enabled.
[all …]
/external/chromium_org/remoting/base/
Dplugin_thread_task_runner.cc11 base::TimeDelta CalcTimeDelta(base::TimeTicks when) { in CalcTimeDelta() argument
12 return std::max(when - base::TimeTicks::Now(), base::TimeDelta()); in CalcTimeDelta()
150 void PluginThreadTaskRunner::PostDelayedRunTasks(base::TimeTicks when) { in PostDelayedRunTasks() argument
158 if (scheduled_timers_.insert(when).second) { in PostDelayedRunTasks()
159 base::TimeDelta delay = CalcTimeDelta(when); in PostDelayedRunTasks()
161 base::Bind(&PluginThreadTaskRunner::RunDelayedTasks, this, when); in PostDelayedRunTasks()
196 void PluginThreadTaskRunner::RunDelayedTasks(base::TimeTicks when) { in RunDelayedTasks() argument
199 scheduled_timers_.erase(when); in RunDelayedTasks()
222 base::TimeTicks when = delayed_queue_.top().delayed_run_time; in RunDueTasks() local
223 if (scheduled_timers_.empty() || when < *scheduled_timers_.begin()) { in RunDueTasks()
[all …]
/external/libunwind/src/ia64/
DGparser.c155 set_reg (struct ia64_reg_info *reg, enum ia64_where where, int when, in set_reg() argument
160 if (reg->when == IA64_WHEN_NEVER) in set_reg()
161 reg->when = when; in set_reg()
191 reg->when = t; in spill_next_when()
439 sr->curr.reg[IA64_REG_PSP].when = in desc_mem_stack_v()
480 reg->when = sr->region_start + MIN ((int) t, sr->region_len - 1); in desc_reg_when()
570 r->when = IA64_WHEN_NEVER; in desc_restore_p()
592 r->when = sr->region_start + MIN ((int) t, sr->region_len - 1); in desc_spill_reg_p()
607 r->when = sr->region_start + MIN ((int) t, sr->region_len - 1); in desc_spill_psprel_p()
622 r->when = sr->region_start + MIN ((int) t, sr->region_len - 1); in desc_spill_sprel_p()
[all …]
/external/dhcpcd/
Deloop.c51 struct timeval when; member
114 const struct timeval *when, void (*callback)(void *), void *arg) in add_q_timeout_tv() argument
120 timeradd(&now, when, &w); in add_q_timeout_tv()
148 t->when.tv_sec = w.tv_sec; in add_q_timeout_tv()
149 t->when.tv_usec = w.tv_usec; in add_q_timeout_tv()
158 if (!timeouts || timercmp(&t->when, &timeouts->when, <)) { in add_q_timeout_tv()
164 if (timercmp(&t->when, &tt->next->when, <)) { in add_q_timeout_tv()
174 add_q_timeout_sec(int queue, time_t when, void (*callback)(void *), void *arg) in add_q_timeout_sec() argument
178 tv.tv_sec = when; in add_q_timeout_sec()
299 if (timercmp(&now, &timeouts->when, >)) { in start_eloop()
[all …]
/external/clang/docs/
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 …]
/external/chromium_org/ui/views/controls/native/
Dnative_view_host_mac_unittest.mm48 // On Mac, also ensure that the native view is removed from its superview when
61 // Ensure the native view receives the correct bounds when it is attached. On
89 // Ensure the native view is hidden along with its host, and when detaching, or
90 // when attaching to a host that is already hidden.
103 EXPECT_TRUE([native_view_ isHidden]); // Hidden when detached.
109 EXPECT_TRUE([native_view_ isHidden]); // Hidden when attached.
116 EXPECT_FALSE([native_view_ isHidden]); // Made visible when attached.
120 EXPECT_TRUE([native_view_ isHidden]); // Hidden when removed from Widget.
124 EXPECT_FALSE([native_view_ isHidden]); // And visible when added.
/external/chromium_org/extensions/common/api/
Dsockets_tcp.idl11 // value is not specified, a default value is used when calling
12 // <code>create</code>, or the existing value if preserved when calling
15 // Flag indicating if the socket is left open when the event page of
102 // Flag indicating whether the socket is left open when the application is
162 // |callback| : Called when the socket has been created.
169 // |callback| : Called when the properties are updated.
179 // when messages are received.
189 // |callback| : Called when the setKeepAlive attempt is complete.
196 // algorithm will be disabled when <code>TCP_NODELAY</code> is set.
199 // |callback| : Called when the setNoDelay attempt is complete.
[all …]
Dsockets_tcp_server.idl11 // value is not specified, a default value is used when calling
12 // <code>create</code>, or the existing value if preserved when calling
15 // Flag indicating if the socket remains open when the event page of the
61 // Flag indicating if the socket remains open when the event page of the
115 // |callback| : Called when the socket has been created.
122 // |callback| : Called when the properties are updated.
130 // connection requests. <code>onAccept</code> events are raised only when
144 // |callback| : Called when listen operation completes.
156 // |callback| : Called when the disconnect attempt is complete.
163 // when the callback is invoked.
[all …]
Dsockets_udp.idl11 // value is not specified, a default value is used when calling
12 // <code>create</code>, or the existing value if preserved when calling
15 // Flag indicating if the socket is left open when the event page of the
76 // Flag indicating whether the socket is left open when the application is
158 // |callback| : Called when the socket has been created.
165 // |callback| : Called when the properties are updated.
174 // |callback| : Called when the socket has been successfully paused or
184 // <code>onReceive</code> events are raised when UDP packets arrive on the
192 // |callback| : Called when the <code>bind</code> operation completes.
204 // |callback| : Called when the <code>send</code> operation completes.
[all …]
Dbluetooth_socket.idl10 // a default value is used when calling $ref:create, or the existing value is
11 // preserved when calling $ref:update.
13 // Flag indicating whether the socket is left open when the event page of
87 // Flag indicating if the socket remains open when the event page of the
197 // |callback| : Called when the socket has been created.
204 // |callback| : Called when the properties are updated.
215 // when messages are received. When a listening socket is paused, new
218 // only when the socket is un-paused.
227 // |callback| : Called when listen operation completes.
237 // |callback| : Called when listen operation completes.
[all …]
/external/chromium_org/media/cast/sender/
Dcongestion_control.cc39 base::TimeTicks when) OVERRIDE;
42 virtual void AckFrame(uint32 frame_id, base::TimeTicks when) OVERRIDE;
102 base::TimeTicks when) OVERRIDE { in SendFrameToTransport() argument
106 virtual void AckFrame(uint32 frame_id, base::TimeTicks when) OVERRIDE { in AckFrame() argument
226 base::TimeTicks when) { in AckFrame() argument
237 if (when < frame_stats->sent_time) in AckFrame()
238 when = frame_stats->sent_time; in AckFrame()
240 frame_stats->ack_time = when; in AckFrame()
248 base::TimeTicks when) { in SendFrameToTransport() argument
253 frame_stats->sent_time = when; in SendFrameToTransport()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
Dantenv.cmd33 when param='-lcp' then mode = 'l'
34 when param='-cp' | param='-classpath' then mode = 'c'
35 when abbrev('-opts', param, 4) then mode = 'o'
36 when abbrev('-args', param, 4) then mode = 'a'
39 when mode = 'a' then args = space(args param, 1)
40 when mode = 'c' then cp = space(cp param, 1)
41 when mode = 'l' then lcp = space(lcp param, 1)
42 when mode = 'o' then opts = space(opts param, 1)
/external/chromium_org/build/internal/
DREADME.chromium9 …Included by ..\release.vsprops by default when CHROME_BUILD_TYPE is undefined. Includes release_de…
12 …Included by ..\release.vsprops when CHROME_BUILD_TYPE=_checksenabled. Matches what release_default…
15 …Included by ..\release.vsprops when CHROME_BUILD_TYPE=_official. Includes release_defaults.vsprops…
18 …Included by ..\release.vsprops when CHROME_BUILD_TYPE=_pgo_instrument. Includes release_defaults.v…
21 …Included by ..\release.vsprops when CHROME_BUILD_TYPE=_pgo_optimize. Includes release_defaults.vsp…
24 …Included by ..\release.vsprops when CHROME_BUILD_TYPE=_purify. Includes release_defaults.vsprops. …
/external/apache-xml/src/main/java/org/apache/xalan/templates/
DElemChoose.java92 ElemWhen when = (ElemWhen) childElem; in execute() local
103 if (when.getTest().bool(xctxt, sourceNode, when)) { in execute()
104 transformer.executeChildTemplates(when, true); in execute()
/external/chromium_org/components/metrics/proto/
Dsampled_profile.proto40 // Time after system boot when the collection took place, in milliseconds.
43 // Time after last login when the collection took place, in milliseconds.
47 // sampled profile. Only set when |trigger_event| is RESUME_FROM_SUSPEND.
51 // when |trigger_event| is RESUME_FROM_SUSPEND.
54 // Number of tabs restored during a session restore. Only set when
59 // collected. Only set when |trigger_event| is RESTORE_SESSION.
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowMessage.java17 private long when; field in ShadowMessage
115 return when; in getWhen()
118 public void setWhen(long when) { in setWhen() argument
119 this.when = when; in setWhen()
/external/chromium_org/chrome/common/extensions/api/
Dalarms.idl22 // TODO(mpcomplete): rename to CreateInfo when http://crbug.com/123073 is
27 double? when;
36 // minutes after the initial event specified by <var>when</var> or
57 // honored and will cause a warning. <code>when</code> can be set to less
61 // To help you debug your app or extension, when you've loaded it unpacked,
67 // |alarmInfo|: Describes when the alarm should fire. The initial time must
68 // be specified by either <var>when</var> or <var>delayInMinutes</var> (but
71 // neither <var>when</var> or <var>delayInMinutes</var> is set for a
92 // Fired when an alarm has elapsed. Useful for event pages.

12345678910>>...140