OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:seconds
(Results
76 - 100
of
4549
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter/
xt_limit.h
8
seconds
, or one every 59 hours. */
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter_bridge/
ebt_limit.h
10
seconds
, or one every 59 hours. */
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/
timefuncs.h
19
/* Get the current time since the epoch in
seconds
*/
/prebuilts/python/linux-x86/2.7.5/include/python2.7/
timefuncs.h
19
/* Get the current time since the epoch in
seconds
*/
/system/core/toolbox/
sleep.c
39
fprintf(stderr, "USAGE: %s
SECONDS
\n", s);
45
unsigned long
seconds
;
local
52
seconds
= strtoul(argv[1], &endptr, 10);
59
sleep((unsigned int)
seconds
);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/
DateHelper.java
21
* Converts ISO Dates (
seconds
since 1/1/1904) to Date and vice versa.
25
* Converts a long value with
seconds
since 1/1/1904 to Date.
27
* @param secondsSince
seconds
since 1/1/1904
/frameworks/support/v4/java/android/support/v4/util/
TimeUtils.java
101
int
seconds
= (int) Math.floor(duration / 1000);
local
104
if (
seconds
> SECONDS_PER_DAY) {
105
days =
seconds
/ SECONDS_PER_DAY;
106
seconds
-= days * SECONDS_PER_DAY;
108
if (
seconds
> SECONDS_PER_HOUR) {
109
hours =
seconds
/ SECONDS_PER_HOUR;
110
seconds
-= hours * SECONDS_PER_HOUR;
112
if (
seconds
> SECONDS_PER_MINUTE) {
113
minutes =
seconds
/ SECONDS_PER_MINUTE;
114
seconds
-= minutes * SECONDS_PER_MINUTE
[
all
...]
/external/chromium_org/chrome/browser/chromeos/
session_length_limiter_unittest.cc
296
SetSessionLengthLimitPref(60 * 1000); // 60
seconds
.
308
//
seconds
of session time to pass, then increases the limit to 90
seconds
.
315
SetSessionLengthLimitPref(60 * 1000); // 60
seconds
.
320
// Fast forward the time by 50
seconds
, verifying that no timer fires to
322
runner_->FastForwardBy(50 * 1000); // 50
seconds
.
324
// Increase the session length limit to 90
seconds
.
325
SetSessionLengthLimitPref(90 * 1000); // 90
seconds
.
334
//
seconds
of session time to pass, then decreases the limit to 40
seconds
[
all
...]
/development/samples/training/notify-user/src/com/example/android/pingme/
MainActivity.java
44
int
seconds
;
local
54
// The number of
seconds
the timer should run.
60
seconds
= R.string.seconds_default;
62
seconds
= Integer.parseInt(input);
64
int milliseconds = (
seconds
* 1000);