HomeSort by relevance Sort by last modified time
    Searched full:chrono (Results 376 - 400 of 542) sorted by null

<<11121314151617181920>>

  /device/google/contexthub/util/nanotool/
log.cpp 20 #include <chrono>
28 std::chrono::time_point<std::chrono::steady_clock> Log::init_time_;
34 Log::init_time_ = std::chrono::steady_clock::now();
127 std::chrono::duration<float> log_time =
128 (std::chrono::steady_clock::now() - Log::init_time_);
  /external/libcxx/test/std/thread/futures/futures.shared_future/
get.pass.cpp 25 std::this_thread::sleep_for(std::chrono::milliseconds(500));
31 std::this_thread::sleep_for(std::chrono::milliseconds(500));
39 std::this_thread::sleep_for(std::chrono::milliseconds(500));
46 std::this_thread::sleep_for(std::chrono::milliseconds(500));
52 std::this_thread::sleep_for(std::chrono::milliseconds(500));
58 std::this_thread::sleep_for(std::chrono::milliseconds(500));
wait_for.pass.cpp 18 // wait_for(const chrono::duration<Rep, Period>& rel_time) const;
23 typedef std::chrono::milliseconds ms;
48 typedef std::chrono::high_resolution_clock Clock;
  /external/libcxx/test/std/thread/futures/futures.unique_future/
get.pass.cpp 25 std::this_thread::sleep_for(std::chrono::milliseconds(500));
31 std::this_thread::sleep_for(std::chrono::milliseconds(500));
39 std::this_thread::sleep_for(std::chrono::milliseconds(500));
46 std::this_thread::sleep_for(std::chrono::milliseconds(500));
52 std::this_thread::sleep_for(std::chrono::milliseconds(500));
58 std::this_thread::sleep_for(std::chrono::milliseconds(500));
wait_for.pass.cpp 18 // wait_for(const chrono::duration<Rep, Period>& rel_time) const;
23 typedef std::chrono::milliseconds ms;
48 typedef std::chrono::high_resolution_clock Clock;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.shared_future/
get.pass.cpp 23 std::this_thread::sleep_for(std::chrono::milliseconds(500));
29 std::this_thread::sleep_for(std::chrono::milliseconds(500));
37 std::this_thread::sleep_for(std::chrono::milliseconds(500));
44 std::this_thread::sleep_for(std::chrono::milliseconds(500));
50 std::this_thread::sleep_for(std::chrono::milliseconds(500));
56 std::this_thread::sleep_for(std::chrono::milliseconds(500));
wait_for.pass.cpp 16 // wait_for(const chrono::duration<Rep, Period>& rel_time) const;
21 typedef std::chrono::milliseconds ms;
46 typedef std::chrono::high_resolution_clock Clock;
wait_until.pass.cpp 16 // wait_until(const chrono::time_point<Clock, Duration>& abs_time) const;
21 typedef std::chrono::milliseconds ms;
46 typedef std::chrono::high_resolution_clock Clock;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.unique_future/
get.pass.cpp 23 std::this_thread::sleep_for(std::chrono::milliseconds(500));
29 std::this_thread::sleep_for(std::chrono::milliseconds(500));
37 std::this_thread::sleep_for(std::chrono::milliseconds(500));
44 std::this_thread::sleep_for(std::chrono::milliseconds(500));
50 std::this_thread::sleep_for(std::chrono::milliseconds(500));
56 std::this_thread::sleep_for(std::chrono::milliseconds(500));
wait_for.pass.cpp 16 // wait_for(const chrono::duration<Rep, Period>& rel_time) const;
21 typedef std::chrono::milliseconds ms;
46 typedef std::chrono::high_resolution_clock Clock;
wait_until.pass.cpp 16 // wait_until(const chrono::time_point<Clock, Duration>& abs_time) const;
21 typedef std::chrono::milliseconds ms;
46 typedef std::chrono::high_resolution_clock Clock;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/
chrono 0 // <chrono> -*- C++ -*-
25 /** @file include/chrono
48 * @defgroup chrono Time
55 /** @namespace std::chrono
58 namespace chrono
85 typedef __success_type<chrono::duration<__cr, __r>> type;
93 struct common_type<chrono::duration<_Rep1, _Period1>,
94 chrono::duration<_Rep2, _Period2>>
104 typedef __success_type<chrono::time_point<_Clock, typename _CT::type>>
113 struct common_type<chrono::time_point<_Clock, _Duration1>
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/
chrono 0 // <chrono> -*- C++ -*-
25 /** @file include/chrono
48 * @defgroup chrono Time
55 /** @namespace std::chrono
58 namespace chrono
85 typedef __success_type<chrono::duration<__cr, __r>> type;
93 struct common_type<chrono::duration<_Rep1, _Period1>,
94 chrono::duration<_Rep2, _Period2>>
104 typedef __success_type<chrono::time_point<_Clock, typename _CT::type>>
113 struct common_type<chrono::time_point<_Clock, _Duration1>
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/
chrono 0 // <chrono> -*- C++ -*-
25 /** @file include/chrono
48 * @defgroup chrono Time
55 /** @namespace std::chrono
58 namespace chrono
85 typedef __success_type<chrono::duration<__cr, __r>> type;
93 struct common_type<chrono::duration<_Rep1, _Period1>,
94 chrono::duration<_Rep2, _Period2>>
104 typedef __success_type<chrono::time_point<_Clock, typename _CT::type>>
113 struct common_type<chrono::time_point<_Clock, _Duration1>
    [all...]
  /system/netd/server/
SockDiagTest.cpp 417 using ms = std::chrono::duration<float, std::ratio<1, 1000>>;
424 auto start = std::chrono::steady_clock::now();
439 std::chrono::duration_cast<ms>(std::chrono::steady_clock::now() - start).count());
441 start = std::chrono::steady_clock::now();
444 std::chrono::duration_cast<ms>(std::chrono::steady_clock::now() - start).count());
446 start = std::chrono::steady_clock::now();
453 std::chrono::duration_cast<ms>(std::chrono::steady_clock::now() - start).count()
    [all...]
  /external/libcxx/src/
chrono.cpp 1 //===------------------------- chrono.cpp ---------------------------------===//
10 #include "chrono"
29 namespace chrono namespace
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
chrono.cpp 1 //===------------------------- chrono.cpp ---------------------------------===//
10 #include "chrono"
22 namespace chrono namespace
  /external/libcxx/test/std/thread/futures/futures.async/
async_race.pass.cpp 27 #include <chrono>
33 typedef std::chrono::milliseconds ms;
  /external/libcxx/test/std/thread/thread.condition/thread.condition.condvar/
notify_all.pass.cpp 54 std::this_thread::sleep_for(std::chrono::milliseconds(100));
62 std::this_thread::sleep_for(std::chrono::milliseconds(100));
  /external/libcxx/test/std/thread/thread.condition/thread.condition.condvarany/
notify_all.pass.cpp 58 std::this_thread::sleep_for(std::chrono::milliseconds(100));
66 std::this_thread::sleep_for(std::chrono::milliseconds(100));
  /external/parameter-framework/upstream/asio/
CMakeLists.txt 47 # does not correcly detect that the stl has CHRONO support (c++11).
48 # Force the use of std::chrono by setting ASIO_HAS_STD_CHRONO
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.condition/thread.condition.condvar/
notify_all.pass.cpp 52 std::this_thread::sleep_for(std::chrono::milliseconds(100));
60 std::this_thread::sleep_for(std::chrono::milliseconds(100));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.condition/thread.condition.condvarany/
notify_all.pass.cpp 56 std::this_thread::sleep_for(std::chrono::milliseconds(100));
64 std::this_thread::sleep_for(std::chrono::milliseconds(100));
  /external/clang/INPUTS/
all-std-headers.cpp 60 #include <chrono>
  /external/libcxx/include/experimental/
__config 29 namespace chrono { namespace experimental { inline namespace fundamentals_v1 {

Completed in 204 milliseconds

<<11121314151617181920>>