/frameworks/opt/calendar/src/com/android/calendarcommon2/ |
H A D | Duration.java | 27 * 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 D | DurationTest.java | 28 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 D | MtpUtils.cpp | 71 void formatDateTime(time_t seconds, char* buffer, int bufferLength) { argument 74 localtime_r(&seconds, &tm);
|
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/ |
H A D | LoggingItemAnimator.java | 46 public void waitForPendingAnimationsCall(int seconds) throws InterruptedException { argument 47 mWaitForPendingAnimations.await(seconds, TimeUnit.SECONDS);
|
H A D | DefaultItemAnimatorTest.java | 135 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 D | GridLayoutManagerTest.java | 1034 public void waitForLayout(int seconds) throws InterruptedException { argument 1035 mLayoutLatch.await(seconds, SECONDS);
|
H A D | BaseRecyclerViewInstrumentationTest.java | 205 void waitForAnimations(int seconds) throws InterruptedException { argument 216 latch.await(seconds, TimeUnit.SECONDS);
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
H A D | vop.cpp | 26 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 D | MtpPropertyGroup.java | 398 // convert from seconds to DateTime 470 private native String format_date_time(long seconds); argument
|
/frameworks/wilhelm/tests/sandbox/ |
H A D | configbq.c | 150 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/keystore/java/android/security/keystore/ |
H A D | KeyProtection.java | 377 * Gets the duration of time (seconds) for which this key is authorized to be used after the 384 * @return duration in seconds or {@code -1} if authentication is required for every use of the 638 * Sets the duration of time (seconds) for which this key is authorized to be used after the 664 * @param seconds duration in seconds or {@code -1} if user authentication must take place 674 @IntRange(from = -1) int seconds) { 675 if (seconds < -1) { 676 throw new IllegalArgumentException("seconds must be -1 or larger"); 678 mUserAuthenticationValidityDurationSeconds = seconds; 673 setUserAuthenticationValidityDurationSeconds( @ntRangefrom = -1) int seconds) argument
|
H A D | KeyGenParameterSpec.java | 510 * Gets the duration of time (seconds) for which this key is authorized to be used after the 517 * @return duration in seconds or {@code -1} if authentication is required for every use of the 888 * Sets the duration of time (seconds) for which this key is authorized to be used after the 914 * @param seconds duration in seconds or {@code -1} if user authentication must take place 924 @IntRange(from = -1) int seconds) { 925 if (seconds < -1) { 926 throw new IllegalArgumentException("seconds must be -1 or larger"); 928 mUserAuthenticationValidityDurationSeconds = seconds; 923 setUserAuthenticationValidityDurationSeconds( @ntRangefrom = -1) int seconds) argument
|
/frameworks/base/services/core/jni/ |
H A D | com_android_server_AlarmManagerService.cpp | 428 static void android_server_AlarmManagerService_set(JNIEnv*, jobject, jlong nativeData, jint type, jlong seconds, jlong nanoseconds) argument 432 ts.tv_sec = seconds; 439 static_cast<long long>(seconds),
|
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/ |
H A D | PlaybackControlsPresenter.java | 160 int seconds = currentTimeMs / 1000; 161 if (seconds != mCurrentTimeInSeconds) { 162 mCurrentTimeInSeconds = seconds; 182 private static void formatTime(int seconds, StringBuilder sb) { argument 183 int minutes = seconds / 60; 185 seconds -= minutes * 60; 196 if (seconds < 10) { 199 sb.append(seconds);
|
/frameworks/base/media/jni/ |
H A D | android_mtp_MtpDatabase.cpp | 1167 android_mtp_MtpPropertyGroup_format_date_time(JNIEnv *env, jobject /*thiz*/, jlong seconds) argument 1170 formatDateTime(seconds, date, sizeof(date));
|
/frameworks/av/media/libmediaplayerservice/ |
H A D | StagefrightRecorder.cpp | 425 } else if (timeUs <= 100000LL) { // XXX: 100 milli-seconds 466 } else if (durationUs >= 10000000) { // 10 seconds 477 // If seconds < 0, only the first frame is I frame, and rest are all P frames 478 // If seconds == 0, all frames are encoded as I frames. No P frames 479 // If seconds > 0, it is the time spacing (seconds) between 2 neighboring I frames 480 status_t StagefrightRecorder::setParamVideoIFramesInterval(int32_t seconds) { argument 481 ALOGV("setParamVideoIFramesInterval: %d seconds", seconds); 482 mIFramesIntervalSec = seconds; 691 int32_t seconds; local [all...] |
/frameworks/base/services/core/java/com/android/server/ |
H A D | AlarmManagerService.java | 617 // with a minimum delay/interval of 10 seconds, under which we will simply not 910 // seconds when the API expects milliseconds. 915 + " seconds"); 1826 private native void set(long nativeData, int type, long seconds, long nanoseconds); argument
|
/frameworks/base/core/java/android/os/ |
H A D | BatteryStats.java | 2283 private final static void formatTimeRaw(StringBuilder out, long seconds) { argument 2284 long days = seconds / (60 * 60 * 24); 2291 long hours = (seconds - used) / (60 * 60); 2298 long mins = (seconds-used) / 60; 2305 if (seconds != 0 || used != 0) { 2306 out.append(seconds-used);
|
/frameworks/data-binding/prebuilds/1.0-rc0/ |
H A D | databinding-studio-bundle.jar | META-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ... |