HomeSort by relevance Sort by last modified time
    Searched defs:time (Results 401 - 425 of 2276) sorted by null

<<11121314151617181920>>

  /external/eigen/bench/btl/generic_bench/timers/
portable_timer.hh 28 #include <time.h>
36 // A timer object measures CPU time.
69 LARGE_INTEGER time; local
70 time.QuadPart = stopVal.QuadPart - startVal.QuadPart;
71 return LIToSecs(time);
92 #include <sys/time.h>
  /external/fonttools/Lib/fontTools/ttLib/tables/
_h_e_a_d.py 6 import time namespace
43 self.modified = int(time.time() - mac_epoch_diff)
55 value = time.asctime(time.gmtime(max(0, value + mac_epoch_diff)))
57 value = time.asctime(time.gmtime(0))
72 value = calendar.timegm(time.strptime(value)) - mac_epoch_diff
  /external/guava/guava-tests/benchmark/com/google/common/cache/
SegmentBenchmark.java 55 @Benchmark int time(int reps) { method in class:SegmentBenchmark
  /external/jmonkeyengine/engine/src/android/jme3test/android/
TestAmbient.java 48 private float time = 0; field in class:TestAmbient
  /external/jmonkeyengine/engine/src/test/jme3test/material/
TestColoredTexture.java 44 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/
FolderConverter.java 48 private static long time; field in class:FolderConverter
53 entry.setTime(time);
  /external/libcxx/test/libcxx/test/
format.py 3 import time namespace
54 time.sleep(0.1)
  /external/libxml2/python/tests/
thread2.py 2 import string, sys, time namespace
32 time.sleep(1)
  /external/libxml2/
regressions.py 2 import glob, os, string, sys, thread, time namespace
175 time.sleep(0.001)
  /external/lldb/examples/summaries/cocoa/
metrics.py 9 import time, datetime namespace
24 self.enter_time = time.clock()
27 self.exit_time = time.clock()
28 print "It took " + str(self.exit_time - self.enter_time) + " time units to run through " + self.function + self.label
  /external/lldb/test/functionalities/breakpoint/breakpoint_command/
TestBreakpointCommand.py 5 import os, time namespace
50 # Add three breakpoints on the same line. The first time we don't specify the file,
89 # and then specify only one file. The first time we should get two locations,
90 # the second time only one:
  /external/lldb/test/functionalities/breakpoint/breakpoint_conditions/
TestBreakpointConditions.py 5 import os, time namespace
  /external/lldb/test/functionalities/breakpoint/breakpoint_ignore_count/
TestBreakpointIgnoreCount.py 5 import os, time namespace
  /external/lldb/test/functionalities/data-formatter/data-formatter-python-synth/
TestDataFormatterPythonSynth.py 5 import os, time namespace
  /external/lldb/test/functionalities/inline-stepping/
TestInlineStepping.py 3 import os, time namespace
  /external/lldb/test/functionalities/thread/create_during_step/
TestCreateDuringStep.py 5 import os, time namespace
  /external/lldb/test/functionalities/thread/exit_during_step/
TestExitDuringStep.py 5 import os, time namespace
  /external/lldb/test/functionalities/thread/step_out/
TestThreadStepOut.py 5 import os, time namespace
  /external/lldb/test/lang/c/array_types/
TestArrayTypes.py 3 import os, time namespace
  /external/lldb/test/lang/cpp/class_static/
TestStaticVariables.py 5 import os, time namespace
  /external/lldb/test/lang/cpp/class_types/
TestClassTypes.py 3 import os, time namespace
TestClassTypesDisassembly.py 5 import os, time namespace
  /external/lldb/test/lang/objc/foundation/
TestObjCMethods.py 6 import os, time namespace
  /external/lldb/test/pexpect-2.4/examples/
hive.py 69 import sys, os, re, optparse, traceback, types, time, getpass namespace
415 start_time = time.time()
423 if options.verbose: print time.asctime()
425 if options.verbose: print time.asctime()
426 if options.verbose: print 'TOTAL TIME IN MINUTES:',
427 if options.verbose: print (time.time() - start_time) / 60.0
  /external/lldb/test/
progress.py 4 import time namespace
146 time.sleep(0.3)

Completed in 380 milliseconds

<<11121314151617181920>>