Searched defs:time (Results 76 - 100 of 829) sorted by relevance

1234567891011>>

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DTimeZoneTransition.java9 * <code>TimeZoneTransition</code> is a class representing a time zone transition.
10 * An instance has a time of transition and rules for both before and
18 private final long time; field in class:TimeZoneTransition
21 * Constructs a <code>TimeZoneTransition</code> with the time and the rules before/after
24 * @param time The time of transition in milliseconds since the base time.
25 * @param from The time zone rule used before the transition.
26 * @param to The time zone rule used after the transition.
30 public TimeZoneTransition(long time, TimeZoneRul argument
[all...]
/external/jmonkeyengine/engine/src/android/jme3test/android/
H A DTestAmbient.java48 private float time = 0; field in class:TestAmbient
/external/jmonkeyengine/engine/src/core/com/jme3/animation/
H A DTrack.java40 * Sets the time of the animation.
46 * @param time The time in the animation
51 public void setTime(float time, float weight, AnimControl control, AnimChannel channel, TempVars vars); argument
/external/jmonkeyengine/engine/src/core/com/jme3/input/event/
H A DInputEvent.java42 protected long time; field in class:InputEvent
48 * The time when the event occurred. This is relative to
51 * @return time when the event occured
54 return time;
58 * Set the time when the event occurred.
60 * @param time time when the event occurred.
62 public void setTime(long time){ argument
63 this.time = time;
[all...]
/external/jmonkeyengine/engine/src/test/jme3test/audio/
H A DTestReverb.java40 private float time = 0; field in class:TestReverb
63 time += tpf;
65 if (time > nextTime) {
75 time = 0;
/external/jmonkeyengine/engine/src/test/jme3test/batching/
H A DTestBatchNode.java83 float time = 0; field in class:TestBatchNode
87 time += tpf;
89 cube2.setLocalTranslation(FastMath.sin(-time)*3, FastMath.cos(time)*3, 0);
90 cube2.setLocalRotation(new Quaternion().fromAngleAxis(time, Vector3f.UNIT_Z));
91 cube2.setLocalScale(Math.max(FastMath.sin(time),0.5f));
93 batch.setLocalRotation(new Quaternion().fromAngleAxis(time, Vector3f.UNIT_Z));
/external/jmonkeyengine/engine/src/test/jme3test/material/
H A DTestColoredTexture.java44 private float time = 0; field in class:TestColoredTexture
71 time += tpf;
72 if (time > 1f){
73 time -= 1f;
78 currentColor.interpolate(prevColor, nextColor, time);
/external/jmonkeyengine/engine/src/tools/jme3tools/converters/
H A DFolderConverter.java48 private static long time; field in class:FolderConverter
53 entry.setTime(time);
/external/libcxx/test/libcxx/android/
H A Dexecutors.py1 import time namespace
48 time.sleep(1)
/external/libxml2/doc/
H A Dqueries.py7 import time namespace
26 date = time.strftime("%Y%m%d")
/external/linux-tools-perf/src/tools/perf/scripts/python/
H A Dsctop.py11 import os, sys, thread, time namespace
75 time.sleep(interval)
/external/lldb/test/expression_command/issue_11588/
H A DTest11588.py7 import os, time namespace
/external/lldb/test/expression_command/test/
H A DTestExprs.py14 import os, time namespace
/external/lldb/test/functionalities/abbreviation/
H A DTestAbbreviations.py5 import os, time namespace
H A DTestCommonShortSpellings.py6 import os, time namespace
/external/lldb/test/functionalities/alias/
H A DTestAliases.py5 import os, time namespace
/external/lldb/test/functionalities/archives/
H A DTestBSDArchives.py3 import os, time namespace
/external/lldb/test/functionalities/breakpoint/breakpoint_command/
H A DTestRegexpBreakCommand.py5 import os, time namespace
/external/lldb/test/functionalities/breakpoint/breakpoint_ids/
H A DTestBreakpointIDs.py5 import os, time namespace
/external/lldb/test/functionalities/breakpoint/breakpoint_locations/
H A DTestBreakpointLocations.py5 import os, time namespace
/external/lldb/test/functionalities/breakpoint/inlined_breakpoints/
H A DTestInlinedBreakpoints.py6 import os, time namespace
/external/lldb/test/functionalities/command_script/
H A DTestCommandScript.py5 import os, time namespace
/external/lldb/test/functionalities/command_script/import/rdar-12586188/
H A DTestRdar12586188.py3 import os, sys, time namespace
/external/lldb/test/functionalities/conditional_break/
H A DTestConditionalBreak.py5 import os, time namespace
/external/lldb/test/functionalities/data-formatter/data-formatter-advanced/
H A DTestDataFormatterAdv.py5 import os, time namespace

Completed in 1789 milliseconds

1234567891011>>