HomeSort by relevance Sort by last modified time
    Searched refs:when (Results 1 - 25 of 3222) 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;
93 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
564 long when = delay + System.currentTimeMillis(); local
    [all...]
  /external/webkit/Source/WebCore/webaudio/
AudioBufferSourceNode.idl 37 void noteOn(in float when);
38 void noteGrainOn(in float when, in float grainOffset, in float grainDuration);
39 void noteOff(in float when);
  /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,
  /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/Tools/iExploder/iexploder-1.3.2/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...]
  /external/webkit/Tools/iExploder/iexploder-1.7.2/src/
iexploder.rb 136 when 0..50 then
138 when 51..75
140 when 76..85
142 when 86..90
144 when 91..98
159 when 0..30
161 when 31..50
163 when 51..60
165 when 60..75
167 when 75..8
    [all...]
  /frameworks/base/libs/utils/tests/
ZipFileRO_test.cpp 41 long when = 0x3EDD7514; local
43 ZipFileRO::zipTimeToTimespec(when, &t);
  /dalvik/vm/native/
org_apache_harmony_dalvik_ddmc_DdmVmInternal.cpp 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);
  /external/apache-xml/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);
  /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;
  /system/core/adb/
mutex_list.h 7 #error ADB_MUTEX not defined when including this file
  /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;
  /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/llvm/autoconf/m4/
need_dev_zero_for_mmap.m4 2 # When allocating RWX memory, check whether we need to use /dev/zero
16 [Define if /dev/zero should be used when mapping RWX memory, or undefine if its not necessary])
  /external/llvm/projects/sample/autoconf/m4/
need_dev_zero_for_mmap.m4 2 # When allocating RWX memory, check whether we need to use /dev/zero
16 [Define if /dev/zero should be used when mapping RWX memory, or undefine if its not necessary])
  /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

Completed in 1407 milliseconds

1 2 3 4 5 6 7 8 91011>>