OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:time
(Results
1 - 25
of
2859
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/e2fsprogs/include/nonunix/sys/
time.h
1
#include <
time
.h>
/external/stlport/test/unit/
time_header_test.c
8
#include <
time
.h>
/ndk/tests/device/test-gnustl-full/unit/
time_header_test.c
8
#include <
time
.h>
/ndk/tests/device/test-stlport/unit/
time_header_test.c
8
#include <
time
.h>
/bionic/libc/kernel/arch-arm/asm/
dyntick.h
15
#include <asm/mach/
time
.h>
/development/ndk/platforms/android-3/arch-arm/include/asm/
dyntick.h
15
#include <asm/mach/
time
.h>
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/
ASN1GeneralizedTime.java
13
public ASN1GeneralizedTime(Date
time
)
15
super(
time
);
18
public ASN1GeneralizedTime(String
time
)
20
super(
time
);
ASN1UTCTime.java
13
public ASN1UTCTime(Date
time
)
15
super(
time
);
18
public ASN1UTCTime(String
time
)
20
super(
time
);
/external/kernel-headers/original/asm-arm/
dyntick.h
4
#include <asm/mach/
time
.h>
/hardware/ti/omap3/omx/system/src/openmax_il/perf/inc/
perf_common.h
38
#include <
time
.h>
40
/*
time
and process ID routines */
43
#define TIME_GET(target)
time
(&target)
45
#define TIME_MICROSECONDS(
time
) 0
46
#define TIME_SECONDS(
time
) (
time
)
47
#define TIME_INCREASE(
time
, microsecs)
time
+= microsecs / 1000000
48
#define TIME_SET(
time
, sec, microsec)
time
= se
[
all
...]
/prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/asm/
dyntick.h
15
#include <asm/mach/
time
.h>
/prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/asm/
dyntick.h
15
#include <asm/mach/
time
.h>
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/asm/
dyntick.h
15
#include <asm/mach/
time
.h>
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/asm/
dyntick.h
15
#include <asm/mach/
time
.h>
/prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/asm/
dyntick.h
15
#include <asm/mach/
time
.h>
/prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/asm/
dyntick.h
15
#include <asm/mach/
time
.h>
/external/oprofile/libutil/
op_get_time.c
3
* Get current
time
as a string
14
#include <
time
.h>
18
time_t t =
time
(NULL);
/external/chromium/base/i18n/
time_formatting.h
5
// Basic
time
formatting methods. These methods use the current locale
6
// formatting for displaying the
time
.
16
class
Time
;
24
// Returns the
time
of day, e.g., "3:07 PM".
25
string16 TimeFormatTimeOfDay(const
Time
&
time
);
27
// Returns the
time
of day in the specified hour clock type. e.g.
30
string16 TimeFormatTimeOfDayWithHourClockType(const
Time
&
time
,
34
string16 TimeFormatShortDate(const
Time
& time)
[
all
...]
/frameworks/media/libvideoeditor/osal/inc/
M4OSA_Time.h
20
* @brief
Time
macros
21
* @note This file defines
time
type and associated macros which must
22
* be used to manipulate
time
.
38
/** This macro sets the unknown
time
value */
42
/** This macro converts a
time
with a
time
scale to millisecond.
44
#define M4OSA_TIME_TO_MS(result,
time
, timescale)\
45
{ result = (1000*(M4OSA_Double)
time
)/((M4OSA_Double)timescale); }
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/location/
TrackPoint.java
22
* <p/>A track point is a point in
time
and space.
27
void setTime(long
time
) {
28
mTime =
time
;
/external/proguard/src/proguard/gui/splash/
LinearTiming.java
24
* This Timing ramps up linearly from 0 to 1 in a given
time
interval.
36
* @param fromTime the
time
at which the timing starts ramping up from 0.
37
* @param toTime the
time
at which the timing stops ramping up at 1.
48
public double getTiming(long
time
)
51
return
time
<= fromTime ? 0.0 :
52
time
>= toTime ? 1.0 :
53
(double)(
time
- fromTime) / (double)(toTime - fromTime);
SmoothTiming.java
24
* This Timing ramps up smoothly from 0 to 1 in a given
time
interval.
36
* @param fromTime the
time
at which the timing starts ramping up from 0.
37
* @param toTime the
time
at which the timing stops ramping up at 1.
48
public double getTiming(long
time
)
50
if (
time
<= fromTime)
55
if (
time
>= toTime)
61
double timing = (double) (
time
- fromTime) / (double) (toTime - fromTime);
Timing.java
24
* This interface maps a
time
to a normalized timing between 0 and 1.
31
* Returns the timing for the given
time
.
33
public double getTiming(long
time
);
VariableDouble.java
24
* This interface represents a double that varies with
time
.
31
* Returns the double for the given
time
.
33
public double getDouble(long
time
);
VariableInt.java
24
* This interface represents an integer that varies with
time
.
31
* Returns the integer for the given
time
.
33
public int getInt(long
time
);
Completed in 789 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>