Home
last modified time | relevance | path

Searched refs:m_time (Results 1 – 16 of 16) sorted by relevance

/third_party/boost/libs/icl/example/
Dtoytime.hpp32 Time(): m_time(0) {} in Time()
33 Time(int hours, int minutes): m_time(60*hours+minutes) {} in Time()
34 Time(int day, int hours, int minutes): m_time((24*60)*day+60*hours+minutes) {} in Time()
35 int getDay()const { return m_time/(24*60); } in getDay()
36 int getHours()const { return (m_time%(24*60))/60; } in getHours()
37 int getMinutes()const { return (m_time%(24*60))%60; } in getMinutes()
38 int asInt()const { return m_time; } in asInt()
49 Time& operator ++ () { m_time++; return *this; } in operator ++()
50 Time& operator -- () { m_time--; return *this; } in operator --()
53 int m_time; member in boost::icl::Time
/third_party/boost/libs/graph/example/
Ddfs-example.cpp23 : m_dtimemap(dmap), m_ftimemap(fmap), m_time(t) in dfs_time_visitor()
29 put(m_dtimemap, u, m_time++); in discover_vertex()
34 put(m_ftimemap, u, m_time++); in finish_vertex()
38 T& m_time; member in dfs_time_visitor
Dbfs-example.cpp22 bfs_time_visitor(TimeMap tmap, T& t) : m_timemap(tmap), m_time(t) {} in bfs_time_visitor()
26 put(m_timemap, u, m_time++); in discover_vertex()
29 T& m_time; member in bfs_time_visitor
Dbfs-example2.cpp23 bfs_time_visitor(TimeMap tmap, T& t) : m_timemap(tmap), m_time(t) {} in bfs_time_visitor()
27 put(m_timemap, u, m_time++); in discover_vertex()
30 T& m_time; member in bfs_time_visitor
/third_party/flutter/skia/src/core/
DSkTime.cpp54 time_t m_time; in GetDateTime() local
55 time(&m_time); in GetDateTime()
57 gmtime_r(&m_time, &tstruct); in GetDateTime()
/third_party/skia/src/core/
DSkTime.cpp54 time_t m_time; in GetDateTime() local
55 time(&m_time); in GetDateTime()
57 gmtime_r(&m_time, &tstruct); in GetDateTime()
/third_party/boost/boost/graph/
Dboykov_kolmogorov_max_flow.hpp117 , m_time(1) in bk_max_flow()
159 ++m_time; in max_flow()
556 put(m_time_map, current_node, m_time); in adopt()
620 put(m_time_map, current_node, m_time); in adopt()
792 if (get(m_time_map, current_vertex) == m_time) in has_sink_connect()
801 put(m_time_map, m_sink, m_time); in has_sink_connect()
818 while (get(m_time_map, current_vertex) != m_time) in has_sink_connect()
822 put(m_time_map, current_vertex, m_time); in has_sink_connect()
840 if (get(m_time_map, current_vertex) == m_time) in has_source_connect()
849 put(m_time_map, m_source, m_time); in has_source_connect()
[all …]
Dvisitors.hpp325 time_stamper(TimeMap pa, TimeT& t) : m_time_pa(pa), m_time(t) {} in time_stamper()
329 put(m_time_pa, u, ++m_time); in operator ()()
332 TimeT& m_time; member
Ddominator_tree.hpp45 v_[timeStamper_.m_time] = v; in operator ()()
/third_party/node/test/parallel/
Dtest-fs-promises.js241 const m_time = new Date();
242 m_time.setHours(m_time.getHours() - 1);
243 await lutimes(dest, a_time, m_time);
247 assert.strictEqual(m_time.toString(), stats.mtime.toString());
/third_party/vk-gl-cts/framework/common/
DtcuThreadUtil.hpp116 Message (deUint64 time, const char* message) : m_time(time), m_message(message) {} in Message()
118 deUint64 getTime (void) const { return m_time; } in getTime()
124 deUint64 m_time; member in tcu::ThreadUtil::Message
/third_party/boost/libs/graph/test/
Ddfs.cpp36 , m_time(0) in dfs_test_visitor()
56 put(m_discover_time, u, m_time++); in discover_vertex()
92 put(m_finish_time, u, m_time++); in finish_vertex()
100 typename boost::property_traits< DiscoverTimeMap >::value_type m_time; member in dfs_test_visitor
Dundirected_dfs.cpp36 , m_time(0) in dfs_test_visitor()
56 put(m_discover_time, u, m_time++); in discover_vertex()
92 put(m_finish_time, u, m_time++); in finish_vertex()
100 typename boost::property_traits< DiscoverTimeMap >::value_type m_time; member in dfs_test_visitor
Dboykov_kolmogorov_max_flow_test.cpp299 || tSuper::m_time_map[v] <= tSuper::m_time); in invariant_five()
305 || tSuper::m_time_map[v] != tSuper::m_time) in invariant_six()
403 this->m_time++; in test()
/third_party/boost/boost/log/detail/
Ddecomposed_time.hpp102 value_type m_time; member
106 explicit decomposed_time_wrapper(value_type const& time) : m_time(time)
/third_party/boost/boost/log/support/
Ddate_time.hpp249 ctx.strm << ctx.value.m_time.zone_abbrev(true); in format_iso_time_zone()
255 ctx.strm << ctx.value.m_time.zone_name(true); in format_extended_iso_time_zone()