HomeSort by relevance Sort by last modified time
    Searched defs:timestamps (Results 1 - 25 of 26) sorted by null

1 2

  /external/chromium/chrome/browser/webdata/
autofill_entry.h 35 const std::vector<base::Time>& timestamps);
39 const std::vector<base::Time>& timestamps() const { return timestamps_; } function in class:AutofillEntry
autofill_table_unittest.cc 56 std::set<Time> timestamps1(a.timestamps().begin(), a.timestamps().end());
57 std::set<Time> timestamps2(b.timestamps().begin(), b.timestamps().end());
115 std::vector<Time> timestamps; local
117 timestamps.push_back(Time::FromTimeT(timestamp0));
119 timestamps.push_back(Time::FromTimeT(timestamp1));
121 AutofillKey(ASCIIToUTF16(name), ASCIIToUTF16(value)), timestamps);
495 std::vector<Time> timestamps; local
498 &timestamps));
1571 std::vector<Time> timestamps; local
    [all...]
  /external/chromium_org/components/autofill/core/browser/webdata/
autofill_entry.h 39 const std::vector<base::Time>& timestamps);
43 const std::vector<base::Time>& timestamps() const { return timestamps_; } function in class:autofill::AutofillEntry
50 // Checks if last of the timestamps are older than ExpirationTime().
61 // Culls the list of timestamps to 2 - the oldest and most recent. This is a
62 // precursor to getting rid of the timestamps db altogether.
autofill_entry_unittest.cc 53 std::vector<base::Time> timestamps; local
57 timestamps.push_back(cutoff_time + one_hour);
61 AutofillEntry entry_within_the_limits(key, timestamps);
65 timestamps.push_back(cutoff_time - one_hour);
67 AutofillEntry entry_partially_within_the_limits(key, timestamps);
72 timestamps.clear();
73 timestamps.push_back(cutoff_time - one_hour);
74 timestamps.push_back(cutoff_time - one_hour * 2);
75 timestamps.push_back(cutoff_time - one_hour * 3);
77 AutofillEntry entry_outside_the_limits(key, timestamps);
    [all...]
autofill_table_unittest.cc 59 std::set<Time> timestamps1(a.timestamps().begin(), a.timestamps().end());
60 std::set<Time> timestamps2(b.timestamps().begin(), b.timestamps().end());
114 std::vector<Time> timestamps; local
116 timestamps.push_back(Time::FromTimeT(timestamp0));
118 timestamps.push_back(Time::FromTimeT(timestamp1));
120 AutofillKey(ASCIIToUTF16(name), ASCIIToUTF16(value)), timestamps);
388 std::vector<Time> timestamps; local
391 &timestamps));
1459 std::vector<Time> timestamps; local
    [all...]
  /hardware/qcom/media/mm-video-legacy/vidc/vdec/inc/
ts_parser.h 62 OMX_TICKS timestamps; member in struct:omx_time_stamp_reorder::timestamp
  /hardware/qcom/media/mm-video-v4l2/vidc/vdec/inc/
ts_parser.h 63 OMX_TICKS timestamps; member in struct:omx_time_stamp_reorder::timestamp
  /external/chromium/chrome/browser/sync/glue/
autofill_change_processor.cc 110 std::vector<base::Time> timestamps; local
114 &timestamps)) {
116 "Failed to get timestamps.");
122 WriteAutofillEntry(AutofillEntry(change->key(), timestamps),
147 std::vector<base::Time> timestamps; local
151 &timestamps)) {
153 "Failed to get timestamps.");
157 WriteAutofillEntry(AutofillEntry(change->key(), timestamps),
321 std::vector<base::Time> timestamps; local
324 timestamps.push_back
    [all...]
autofill_model_associator.cc 87 std::vector<base::Time> timestamps; local
88 if (MergeTimestamps(autofill, ix->timestamps(), &timestamps)) {
89 AutofillEntry new_entry(ix->key(), timestamps);
332 std::vector<base::Time> timestamps; local
335 timestamps.push_back(base::Time::FromInternalValue(
340 bundle->new_entries.push_back(AutofillEntry(key, timestamps));
476 const std::vector<base::Time>& timestamps,
479 std::set<base::Time> timestamp_union(timestamps.begin(),
480 timestamps.end())
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/integration/
CameraDeviceBinderTest.java 368 ArgumentCaptor<Long> timestamps = ArgumentCaptor.forClass(Long.class); local
380 timestamps.capture());
382 long timestamp = 0; // All timestamps should be larger than 0.
383 for (Long nextTimestamp : timestamps.getAllValues()) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/
CustomViewDescriptorService.java 293 Map<ResourceFile, Long> timestamps = local
310 timestamps.put(file, file.getFile().getModificationStamp());
313 return timestamps;
526 Map<ResourceFile, Long> timestamps) {
538 mTimeStamps = timestamps;
559 // Prevent checking actual file timestamps too frequently on rapid burst calls
  /external/chromium_org/chrome/browser/ui/toolbar/
recent_tabs_builder_test_helper.cc 103 std::vector<base::Time> timestamps; local
106 timestamps.push_back(GetTabTimestamp(session_index, w, t));
109 if (timestamps.empty())
112 sort(timestamps.begin(), timestamps.end());
113 return timestamps[0];
  /external/chromium_org/chrome/browser/webdata/
autocomplete_syncable_service.cc 33 // Merges timestamps from the |autofill| entry and |timestamps|. Returns
36 // sorted as well. Only two timestamps - the earliest and the latest are stored.
38 const std::vector<base::Time>& timestamps,
44 if (timestamps_count == 0 && timestamps.empty()) {
48 timestamps.begin(),
49 timestamps.end());
51 } else if (timestamps.empty()) {
65 if (timestamps.front() != sync_time_begin ||
66 timestamps.back() != sync_time_end)
367 std::vector<base::Time> timestamps; local
382 std::vector<base::Time> timestamps; local
432 std::vector<base::Time> timestamps; local
452 std::vector<base::Time> timestamps; local
    [all...]
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
ResourceExtractor.java 202 String[] timestamps = mOutputDir.list(new FilenameFilter() { local
209 if (timestamps.length != 1) {
211 // If there's multiple timestamps, something's gone wrong so nuke.
215 if (!expectedTimestamp.equals(timestamps[0])) {
  /external/chromium_org/media/filters/
source_buffer_stream_unittest.cc 206 std::vector<std::string> timestamps; local
207 base::SplitString(expected, ' ', &timestamps);
209 for (size_t i = 0; i < timestamps.size(); i++) {
298 std::vector<std::string> timestamps; local
299 base::SplitString(buffers_to_append, ' ', &timestamps);
301 CHECK_GT(timestamps.size(), 0u);
304 for (size_t i = 0; i < timestamps.size(); i++) {
306 if (EndsWith(timestamps[i], "K", true)) {
309 timestamps[i] = timestamps[i].substr(0, timestamps[i].length() - 1)
    [all...]
chunk_demuxer_unittest.cc 146 // have timestamps consistent with the end times of the blocks
321 std::vector<std::string> timestamps; local
322 base::SplitString(cluster_description, ' ', &timestamps);
326 for (size_t i = 0; i < timestamps.size(); ++i) {
327 std::string timestamp_str = timestamps[i];
332 timestamp_str = timestamp_str.substr(0, timestamps[i].length() - 1);
768 std::vector<std::string> timestamps; local
769 base::SplitString(expected, ' ', &timestamps);
771 for (size_t i = 0; i < timestamps.size(); ++i) {
797 // |timestamps| - The expected timestamps on the parsed buffers
    [all...]
  /frameworks/base/core/java/android/gesture/
GestureStroke.java 41 private final long[] timestamps; field in class:GestureStroke
79 timestamps = times;
92 timestamps = times.clone();
97 return new GestureStroke(boundingBox, length, points, timestamps);
203 final long[] times = timestamps;
  /cts/tests/tests/media/src/android/media/cts/
DecoderTest.java 567 ArrayList<Long> timestamps = new ArrayList<Long>(); local
592 timestamps.add(presentationTimeUs);
634 timestamps.clear();
645 assertTrue("invalid timestamp", timestamps.remove(info.presentationTimeUs));
    [all...]
  /external/chromium/chrome/browser/sync/
profile_sync_service_autofill_unittest.cc 104 std::vector<base::Time>* timestamps));
389 std::vector<base::Time> timestamps; local
392 timestamps.push_back(Time::FromInternalValue(
395 entries->push_back(AutofillEntry(key, timestamps));
443 std::vector<Time> timestamps; local
445 timestamps.push_back(Time::FromTimeT(timestamp0));
447 timestamps.push_back(Time::FromTimeT(timestamp1));
449 AutofillKey(ASCIIToUTF16(name), ASCIIToUTF16(value)), timestamps);
548 const std::vector<base::Time>& ts(entry_.timestamps());
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/
history_ui.cc 331 // Pass the timestamps in a list.
332 scoped_ptr<ListValue> timestamps(new ListValue);
335 timestamps->AppendDouble(base::Time::FromInternalValue(*it).ToJsTime());
337 result->Set("allTimestamps", timestamps.release());
552 ListValue* timestamps = NULL; local
554 // Each argument is a dictionary with properties "url" and "timestamps".
557 deletion->GetList("timestamps", &timestamps))) {
561 DCHECK(timestamps->GetSize() > 0);
572 for (ListValue::const_iterator ts_iterator = timestamps->begin()
    [all...]
  /external/chromium_org/chrome/browser/sync/
profile_sync_service_autofill_unittest.cc 124 std::vector<base::Time>* timestamps));
681 std::vector<base::Time> timestamps; local
684 timestamps.push_back(Time::FromInternalValue(
687 entries->push_back(AutofillEntry(key, timestamps));
741 std::vector<Time> timestamps; local
743 timestamps.push_back(base_time + TimeDelta::FromSeconds(time_shift0));
745 timestamps.push_back(base_time + TimeDelta::FromSeconds(time_shift1));
747 AutofillKey(ASCIIToUTF16(name), ASCIIToUTF16(value)), timestamps);
848 const std::vector<base::Time>& ts(entry_.timestamps());
    [all...]
  /libcore/luni/src/test/java/libcore/java/sql/
OldPreparedStatementTest.java 2034 Timestamp[] timestamps = { new Timestamp(2007, 10, 17, 19, 06, 50, 23), local
2109 Timestamp[] timestamps = { new Timestamp(2007, 10, 17, 19, 06, 50, 23), local
    [all...]
  /external/qemu/
qemu-char.c 281 int timestamps; member in struct:__anon27271
291 if (!d->timestamps) {
330 "% t toggle console timestamps\n\r"
402 d->timestamps = !d->timestamps;
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.reconciler.dropins_1.1.2.R36x_v20101111-1430.jar 
org.eclipse.equinox.p2.engine_2.0.0.v20100606.jar 

Completed in 1645 milliseconds

1 2