Searched refs:time (Results 151 - 175 of 350) sorted by relevance

1234567891011>>

/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dvop.cpp49 // UInt time=0;
129 Int time = 0; /* follows EncodeVop value */ local
147 status = EncodeGOVHeader(stream, time); /* Encode GOV Header */
198 Int time = 0; /* follows EncodeVop value */ local
222 status = EncodeGOVHeader(stream, time); /* Encode GOV Header */
/frameworks/av/media/libstagefright/codecs/mpeg2dec/
H A DSoftMPEG2.h22 #include <sys/time.h>
29 /** Number of entries in the time-stamp array */
47 /** Get time */
/frameworks/av/services/audioflinger/
H A DStateQueue.cpp21 #include <time.h>
96 #define PUSH_BLOCK_ACK_NS 3000000L // 3 ms: time between checks for ack in push()
/frameworks/base/core/java/android/app/
H A DApplicationErrorReport.java114 public long time; field in class:ApplicationErrorReport
236 dest.writeLong(time);
263 time = in.readLong();
613 pw.println(prefix + "time: " + time);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationHeaderUtil.java187 View time = rowHeader.findViewById(com.android.internal.R.id.time);
194 && child != time) {
199 // in case no view is visible we make sure the time is visible
203 time.setVisibility(timeVisibility);
H A DFlingAnimationUtils.java289 float time = input * mDurationSeconds;
290 return time * mVelocity / mDiff;
/frameworks/base/tests/OneMedia/src/com/android/onemedia/playback/
H A DRenderer.java122 public boolean onSeekTo(int time) { argument
/frameworks/native/cmds/dumpstate/
H A Ddumpstate.h44 #include <time.h>
199 /** Gets the last modification time of a file, or default time if file is not found. */
/frameworks/native/opengl/tests/gl_perf/
H A Dgl2_perf.cpp19 #include <time.h>
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
H A DCircleView.java17 package com.android.datetimepicker.time;
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
H A DTestBase.java78 public void animateBars(float time) { argument
/frameworks/rs/tests/latency/
H A Dlatency.cpp2 #include <sys/time.h>
88 printf("elapsed time : %lld microseconds\n", elapsed);
89 printf("time per iter: %f microseconds\n", (double)elapsed / iters);
103 printf("elapsed time with copy : %lld microseconds\n", elapsed);
104 printf("time per iter with copy: %f microseconds\n", (double)elapsed / iters);
/frameworks/webview/chromium/plat_support/
H A Ddraw_gl_functor.cpp29 #include <sys/time.h>
/frameworks/wilhelm/tests/examples/
H A DslesTestEffectCapabilities.cpp21 #include <sys/time.h>
/frameworks/base/core/java/android/os/health/
H A DHealthStatsWriter.java92 public void addTimer(int timerId, int count, long time) { argument
97 mTimerTimes[index] = time;
/frameworks/base/core/java/android/widget/
H A DAnalogClock.java129 // The time zone may have changed while the receiver wasn't registered, so update the Time
132 // Make sure we update to the current time
256 String tz = intent.getStringExtra("time-zone");
266 private void updateContentDescription(Time time) { argument
269 time.toMillis(false), flags);
H A DEdgeEffect.java357 final long time = AnimationUtils.currentAnimationTimeMillis();
358 final float t = Math.min((time - mStartTime) / mDuration, 1.f);
/frameworks/native/include/input/
H A DVelocityTracker.h29 * Calculates the velocity of pointer movements over time.
40 // Estimator time base.
41 nsecs_t time; member in struct:android::VelocityTracker::Estimator
54 time = 0;
145 // Weight by time delta. Data points clustered together are weighted less.
/frameworks/native/libs/input/
H A DAndroid.mk17 # libinput is partially built for the host (used by build time keymap validation tool)
H A DVelocityTracker.cpp198 // time to adjust to changes in direction.
564 // Iterate over movement samples in reverse time order and collect samples.
568 float time[HISTORY_SIZE];
587 time[m] = -age * 0.000000001f;
603 if (solveLeastSquares(time, x, w, m, n, outEstimator->xCoeff, &xdet)
604 && solveLeastSquares(time, y, w, m, n, outEstimator->yCoeff, &ydet)) {
605 outEstimator->time = newestMovement.eventTime;
622 outEstimator->time = newestMovement.eventTime;
631 // Weight points based on how much time elapsed between them and the next
632 // point so that points that "cover" a shorter time spa
[all...]
/frameworks/native/libs/ui/
H A DAndroid.mk24 LOCAL_CPPFLAGS += -Wno-exit-time-destructors
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DProgramCache.cpp234 nsecs_t time = -systemTime(); local
237 time += systemTime();
239 //ALOGD(">>> generated new program: needs=%08X, time=%u ms (%d programs)",
240 // needs.mNeeds, uint32_t(ns2ms(time)), mCache.size());
/frameworks/native/vulkan/libvulkan/
H A DAndroid.mk33 -Wno-exit-time-destructors \
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DSmsMessage.java601 Time time = new Time(Time.TIMEZONE_UTC);
604 time.year = year >= 90 ? year + 1900 : year + 2000;
605 time.month = month - 1;
606 time.monthDay = day;
607 time.hour = hour;
608 time.minute = minute;
609 time.second = second;
612 return time.toMillis(true) - (timezoneOffset * 15 * 60 * 1000);
/frameworks/opt/timezonepicker/src/com/android/timezonepicker/
H A DTimeZonePickerView.java90 public void showFilterResults(int type, String string, int time) { argument
92 mResultAdapter.onSetFilter(type, string, time);

Completed in 491 milliseconds

1234567891011>>