HomeSort by relevance Sort by last modified time
    Searched refs:getTimestamp (Results 1 - 25 of 327) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
ITestSummary.java 31 public String getTimestamp();
56 * Expected format: {@link TimeUtil#getTimestamp()}
TimeUtil.java 55 static String getTimestamp() {
56 return getTimestamp(System.currentTimeMillis());
66 static String getTimestamp(long time) {
  /packages/apps/Camera2/src/com/android/camera/burst/
BurstMediaItem.java 42 public long getTimestamp();
RingBuffer.java 54 long timestamp = image.getTimestamp();
99 mImages.put(image.getTimestamp(), image);
  /packages/apps/Camera2/src/com/android/camera/one/v2/camera2proxy/
ForwardingImageProxy.java 80 * @see {@link android.media.Image#getTimestamp}
83 public long getTimestamp() {
84 return mImpl.getTimestamp();
106 .add("timestamp", getTimestamp())
124 otherImage.getTimestamp() == getTimestamp();
129 return Objects.hashCode(getFormat(), getWidth(), getHeight(), getTimestamp());
AndroidImageProxy.java 108 mTimestamp = mImage.getTimestamp();
179 * @see {@link android.media.Image#getTimestamp}
182 public long getTimestamp() {
208 .add("timestamp", getTimestamp())
226 otherImage.getTimestamp() == getTimestamp();
231 return Objects.hashCode(getFormat(), getWidth(), getHeight(), getTimestamp());
ImageProxy.java 92 * @see {@link android.media.Image#getTimestamp}
94 public long getTimestamp();
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/backward/v402/
ver4_patricia_trie_writing_helper.h 96 int getTimestamp() const {
115 if (left.getTimestamp() != right.getTimestamp()) {
116 return left.getTimestamp() < right.getTimestamp();
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v4/content/
dynamic_language_model_probability_utils.h 44 const int elapsedTime = TimeKeeper::peekCurrentTime() - historicalInfo.getTimestamp();
56 const int elapsedTime = TimeKeeper::peekCurrentTime() - historicalInfo.getTimestamp();
63 return historicalInfo.getTimestamp();
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
wpamsg.h 25 QDateTime getTimestamp() const { return timestamp; }
  /packages/apps/Camera2/src/com/android/camera/one/v2/imagesaver/
MostRecentImageSaver.java 49 mThumbnails.put(imageProxy.getTimestamp(), imageProxy);
56 mFullSizeImages.put(imageProxy.getTimestamp(), new MetadataImage(imageProxy, metadata));
67 mFullSizeImages.remove(fullSize.getTimestamp());
72 ImageProxy thumbnail = getThumbnail(fullSize.getTimestamp());
76 mThumbnails.remove(thumbnail.getTimestamp());
124 long timestamp = image.getTimestamp();
144 if (lastImage == null || image.getTimestamp() > lastImage.getTimestamp()) {
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/property/
historical_info.h 37 int getTimestamp() const {
  /cts/tests/tests/media/src/android/media/cts/
CodecImage.java 118 public abstract long getTimestamp();
  /developers/samples/android/common/src/java/com/example/android/common/midi/
EventScheduler.java 107 public long getTimestamp() {
156 FastEventQueue list = mEventBuffer.get(event.getTimestamp());
161 mEventBuffer.put(event.getTimestamp(), list);
164 if (event.getTimestamp() < lowestTime) {
MidiEventThread.java 40 + event.getTimestamp());
42 event.count, event.getTimestamp());
  /frameworks/av/include/media/nbaio/
AudioStreamOutSink.h 55 virtual status_t getTimestamp(AudioTimestamp& timestamp);
  /frameworks/base/media/java/android/media/
TimedMetaData.java 54 public long getTimestamp() {
Image.java 174 public abstract long getTimestamp();
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
TimestampTest.java 84 assertEquals(now, t.getTimestamp());
85 assertNotSame(now, t.getTimestamp());
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
Frame.java 91 public final long getTimestamp() {
92 return mBackingStore.getTimestamp();
99 return mBackingStore.getTimestamp() / 1000000L;
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
TimestampTest.java 60 assertEquals("not expected value", now, timestamp.getTimestamp());
88 assertEquals(now, t.getTimestamp());
89 assertNotSame(now, t.getTimestamp());
  /cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/result/
TestSummaryXmlTest.java 44 assertEquals("2011-11-01", result.getTimestamp());
  /device/htc/flounder/sensor_hub/libsensors/
SensorBase.h 40 static int64_t getTimestamp();
  /frameworks/base/core/java/com/android/internal/midi/
EventScheduler.java 104 public long getTimestamp() {
153 FastEventQueue list = mEventBuffer.get(event.getTimestamp());
158 mEventBuffer.put(event.getTimestamp(), list);
161 if (event.getTimestamp() < lowestTime) {
  /hardware/akm/AK8975_FS/libsensors/
SensorBase.h 39 static int64_t getTimestamp();

Completed in 1332 milliseconds

1 2 3 4 5 6 7 8 91011>>