OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:seconds_
(Results
1 - 3
of
3
) sorted by null
/external/llvm/include/llvm/Support/
TimeValue.h
89
:
seconds_
( seconds ), nanos_( nanos ) { this->normalize(); }
95
:
seconds_
( 0 ) , nanos_ ( 0 ) {
97
seconds_
= integer_part;
116
this->
seconds_
+= that.
seconds_
;
126
this->
seconds_
-= that.
seconds_
;
141
if ( this->
seconds_
> that.
seconds_
) {
143
} else if ( this->
seconds_
== that.seconds_ )
358
SecondsType
seconds_
;\/\/\/< Stores the seconds part of the TimeVal
member in class:llvm::sys::TimeValue
[
all
...]
/external/llvm/lib/Support/
TimeValue.cpp
30
seconds_
++;
35
seconds_
--;
40
if (
seconds_
>= 1 && nanos_ < 0) {
41
seconds_
--;
43
} else if (
seconds_
< 0 && nanos_ > 0) {
44
seconds_
++;
/external/chromium/base/synchronization/
waitable_event_unittest.cc
75
:
seconds_
(seconds),
80
PlatformThread::Sleep(static_cast<int>(
seconds_
* 1000));
85
const double
seconds_
;
member in class:base::WaitableEventSignaler
Completed in 492 milliseconds