HomeSort by relevance Sort by last modified time
    Searched refs:when (Results 1 - 25 of 414) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/util/
TimerTask.java 35 long when; field in class:TimerTask
42 * The time when task will be executed, or the time when task was launched
48 * Method called from the Timer for synchronized getting of when field.
52 return when;
57 * Method called from the Timer object when scheduling an event @param time
73 return when > 0 || scheduledTime > 0;
94 boolean willRun = !cancelled && when > 0;
Timer.java 25 * <p>Each timer has one thread on which tasks are executed sequentially. When
38 * successive run of a task is scheduled without regard for when the
44 * <p>When a timer is no longer needed, users should call {@link #cancel}, which
96 while (timers[current].when < timers[parent].when) {
115 && timers[child + 1].when < timers[child].when) {
120 if (timers[current].when < timers[child].when) {
179 * {@code when} field of TaskScheduled object
566 long when = delay + System.currentTimeMillis(); local
    [all...]
  /libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/
DdmVmInternal.java 39 * @param when when to send the next HPIF chunk
40 * @return true on success. false if 'when' is bad or if there was
43 native public static boolean heapInfoNotify(int when);
51 native public static boolean heapSegmentNotify(int when, int what,
  /system/core/adb/
mutex_list.h 3 #error ADB_MUTEX not defined when including this file
  /dalvik/vm/
Ddm.h 43 * If thread start/stop notification is enabled, call this when threads
49 * If thread start/stop notification is enabled, call this when the
60 * Let the heap know that the HPIF when value has changed.
62 * @return true iff the when value is supported by the VM.
64 bool dvmDdmHandleHpifChunk(int when);
67 * Let the heap know that the HPSG or NHSG what/when values have changed.
71 * @return true iff the what/when values are supported by the VM.
73 bool dvmDdmHandleHpsgNhsgChunk(int when, int what, bool native);
  /frameworks/base/libs/utils/
SystemClock.cpp 44 * Set the current time. This only works when running as root.
100 int64_t when = systemTime(SYSTEM_TIME_MONOTONIC); local
101 return (int64_t) nanoseconds_to_milliseconds(when);
124 int64_t when = seconds_to_nanoseconds(ts.tv_sec) + ts.tv_nsec; local
125 return (int64_t) nanoseconds_to_milliseconds(when);
130 int64_t when = systemTime(SYSTEM_TIME_MONOTONIC); local
131 return (int64_t) nanoseconds_to_milliseconds(when);
134 int64_t when = systemTime(SYSTEM_TIME_MONOTONIC);
135 return (int64_t) nanoseconds_to_milliseconds(when);
  /external/webkit/WebKitTools/iExploder/htdocs/
iexploder.rb 91 when 1..3 then return (@htmlValues[rand(@htmlValues.length)])
92 when 4..5 then return (@htmlValues[rand(@htmlValues.length)] + inventValue())
93 when 6 then return (@htmlValues[rand(@htmlValues.length)] + "//" + inventValue())
94 when 7 then return ''
96 when 8..10 then return rand(255).chr * (rand(256)+8)
97 when 11 then return rand(255).chr * (rand(2048)+8)
98 when 12 then return "#" + rand(999999).to_s
99 when 13 then return rand(999999).to_s + "%"
100 when 14..15 then return "&" + rand(999999).to_s + ";"
102 when 16 the
    [all...]
  /dalvik/vm/native/
org_apache_harmony_dalvik_ddmc_DdmVmInternal.c 62 int when = args[0]; local
65 ret = dvmDdmHandleHpifChunk(when);
70 * public static boolean heapSegmentNotify(int when, int what, bool native)
78 int when = args[0]; // 0=never (off), 1=during GC local
83 ret = dvmDdmHandleHpsgNhsgChunk(when, what, native);
  /development/simulator/app/
LogBundle.h 29 time_t when; member in struct:android_LogBundle
  /external/jsr305/ri/src/main/java/javax/annotation/
CheckForNull.java 8 import javax.annotation.meta.When;
12 @Nonnull(when = When.MAYBE)
CheckForSigned.java 8 import javax.annotation.meta.When;
20 @Nonnegative(when = When.MAYBE)
Detainted.java 8 import javax.annotation.meta.When;
12 @Untainted(when = When.ALWAYS)
Nullable.java 8 import javax.annotation.meta.When;
12 @Nonnull(when = When.UNKNOWN)
PropertyKey.java 8 import javax.annotation.meta.When;
14 When when() default When.ALWAYS;
Signed.java 8 import javax.annotation.meta.When;
14 @Nonnegative(when = When.UNKNOWN)
Tainted.java 8 import javax.annotation.meta.When;
12 @Untainted(when = When.MAYBE)
Untainted.java 8 import javax.annotation.meta.When;
14 When when() default When.ALWAYS;
  /libcore/luni/src/main/java/org/apache/xalan/templates/
ElemChoose.java 33 * <!ELEMENT xsl:choose (xsl:when+, xsl:otherwise?)>
92 ElemWhen when = (ElemWhen) childElem; local
94 // must be xsl:when
98 // System.err.println("\""+when.getTest().getPatternString()+"\"");
100 // if(when.getTest().getPatternString().equals("COLLECTION/icuser/ictimezone/LITERAL='GMT +13:00 Pacific/Tongatapu'"))
103 if (when.getTest().bool(xctxt, sourceNode, when)) {
104 transformer.executeChildTemplates(when, true);
  /frameworks/base/services/surfaceflinger/
MessageQueue.h 56 nsecs_t when; member in class:android::MessageBase
60 MessageBase() : when(0), what(0), arg0(0) { }
62 : when(0), what(what), arg0(arg0) { }
83 return lhs.when < rhs.when;
  /packages/apps/Calendar/src/com/android/calendar/
AgendaAdapter.java 39 TextView when; field in class:AgendaAdapter.ViewHolder
66 holder.when = (TextView) view.findViewById(R.id.when);
79 TextView when = holder.when; local
94 // When
110 when.setText(whenString);
114 when.setCompoundDrawablesWithIntrinsicBounds(null, null,
116 when.setCompoundDrawablePadding(5);
118 when.setCompoundDrawablesWithIntrinsicBounds(null, null, null, null)
    [all...]
  /frameworks/base/core/java/android/os/
MessageQueue.java 52 * Callback interface for discovering when a thread is going to block
57 * Called when the message queue has run out of messages and will now
69 * {@link IdleHandler#queueIdle IdleHandler.queueIdle()} when it is
126 final long when = msg.when; local
127 if (now >= when) {
134 nextPollTimeoutMillis = (int) Math.min(when - now, Integer.MAX_VALUE);
185 final boolean enqueueMessage(Message msg, long when) {
186 if (msg.when != 0) {
204 msg.when = when
    [all...]
  /external/jsr305/sampleUses/src/main/java/edu/umd/cs/findbugs/examples/
Test.java 3 import javax.annotation.meta.When;
24 public void foo5(@SlashedClassName(when=When.MAYBE) String foo) {
27 public void foo6(@SlashedClassName(when=When.UNKNOWN) String foo) {
  /external/qemu/
dynlink.h 53 #error DYNLINK_FUNCTIONS should be defined when including this file
57 #error DYNLINK_FUNCTIONS_INIT should be defined when including this file
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
DateUtils.java 38 public static String getKMLTimestamp(long when) {
41 c.setTimeInMillis(when);
  /hardware/ti/omap3/omx/audio/src/openmax_il/aac_enc/tests/
AacEncTest.mk 4 # library files to link with when building

Completed in 286 milliseconds

1 2 3 4 5 6 7 8 91011>>