Searched defs:seconds (Results 1 - 15 of 15) sorted by relevance

/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DDuration.java27 * 70 seconds.
36 public int seconds; field in class:Duration
54 seconds = 0;
109 seconds = n;
135 cal.add(Calendar.SECOND, sign*seconds);
148 + seconds);
/frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
H A DDurationTest.java28 int minutes, int seconds) throws DateException {
38 assertEquals("Duration seconds is not equal for " + str, seconds, duration.seconds);
26 verifyDuration(String str, int sign, int weeks, int days, int hours, int minutes, int seconds) argument
/frameworks/av/media/mtp/
H A DMtpUtils.cpp71 void formatDateTime(time_t seconds, char* buffer, int bufferLength) { argument
74 localtime_r(&seconds, &tm);
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dvop.cpp26 PV_STATUS EncodeGOVHeader(BitstreamEncVideo *stream, UInt seconds);
276 PV_STATUS EncodeGOVHeader(BitstreamEncVideo *stream, UInt seconds) argument
288 tmpvar = seconds / 3600;
291 tmpvar = (seconds - tmpvar * 3600) / 60;
296 tmpvar = seconds % 60;
/frameworks/base/media/java/android/mtp/
H A DMtpPropertyGroup.java398 // convert from seconds to DateTime
470 private native String format_date_time(long seconds); argument
/frameworks/wilhelm/tests/sandbox/
H A Dconfigbq.c150 float seconds = (((i * 8) / (format->bitsPerSample * format->numChannels)) * 1000.0) / local
152 short sampleLeft = sin(seconds * M_PI_2 * hzLeft) * 32767.0;
153 short sampleRight = sin(seconds * M_PI_2 * hzRight) * 32767.0;
177 if (seconds >= 1.0f)
/frameworks/base/services/core/jni/
H A Dcom_android_server_AlarmManagerService.cpp358 static void android_server_AlarmManagerService_set(JNIEnv*, jobject, jlong nativeData, jint type, jlong seconds, jlong nanoseconds) argument
362 ts.tv_sec = seconds;
369 static_cast<long long>(seconds),
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DPlaybackControlsPresenter.java157 int seconds = currentTimeMs / 1000;
158 if (seconds != mCurrentTimeInSeconds) {
159 mCurrentTimeInSeconds = seconds;
179 private static void formatTime(int seconds, StringBuilder sb) { argument
180 int minutes = seconds / 60;
182 seconds -= minutes * 60;
193 if (seconds < 10) {
196 sb.append(seconds);
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DGridLayoutManagerTest.java623 public void waitForLayout(int seconds) throws InterruptedException { argument
624 mLayoutLatch.await(seconds, SECONDS);
H A DDefaultItemAnimatorTest.java135 void runAndWait(int itemCount, int seconds) throws Throwable { argument
136 runAndWait(itemCount, seconds, null);
139 void runAndWait(int itemCount, int seconds, final ThrowingRunnable postRun) throws Throwable { argument
153 waitForItems(itemCount, seconds);
157 void waitForItems(int itemCount, int seconds) throws InterruptedException { argument
159 mExpectedItemCount.tryAcquire(itemCount, seconds, TimeUnit.SECONDS));
H A DBaseRecyclerViewInstrumentationTest.java175 void waitForAnimations(int seconds) throws InterruptedException { argument
185 latch.await(seconds, TimeUnit.SECONDS);
/frameworks/base/media/jni/
H A Dandroid_mtp_MtpDatabase.cpp1163 android_mtp_MtpPropertyGroup_format_date_time(JNIEnv *env, jobject /*thiz*/, jlong seconds) argument
1166 formatDateTime(seconds, date, sizeof(date));
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.cpp398 } else if (timeUs <= 100000LL) { // XXX: 100 milli-seconds
439 } else if (durationUs >= 10000000) { // 10 seconds
450 // If seconds < 0, only the first frame is I frame, and rest are all P frames
451 // If seconds == 0, all frames are encoded as I frames. No P frames
452 // If seconds > 0, it is the time spacing (seconds) between 2 neighboring I frames
453 status_t StagefrightRecorder::setParamVideoIFramesInterval(int32_t seconds) { argument
454 ALOGV("setParamVideoIFramesInterval: %d seconds", seconds);
455 mIFramesIntervalSec = seconds;
661 int32_t seconds; local
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DAlarmManagerService.java79 private static final long MIN_FUTURITY = 5 * 1000; // 5 seconds, in millis
463 // with a minimum delay/interval of 10 seconds, under which we will simply not
706 // seconds when the API expects milliseconds.
710 + " seconds");
1408 private native void set(long nativeData, int type, long seconds, long nanoseconds); argument
/frameworks/base/core/java/android/os/
H A DBatteryStats.java1703 private final static void formatTimeRaw(StringBuilder out, long seconds) { argument
1704 long days = seconds / (60 * 60 * 24);
1711 long hours = (seconds - used) / (60 * 60);
1718 long mins = (seconds-used) / 60;
1725 if (seconds != 0 || used != 0) {
1726 out.append(seconds-used);

Completed in 708 milliseconds