Searched defs:timestamps (Results 1 - 23 of 23) sorted by relevance

/external/chromium/chrome/browser/webdata/
H A Dautofill_entry.cc44 const std::vector<base::Time>& timestamps)
46 timestamps_(timestamps) {
55 if (timestamps_.size() != entry.timestamps().size())
58 std::set<base::Time> other_timestamps(entry.timestamps().begin(),
59 entry.timestamps().end());
43 AutofillEntry(const AutofillKey& key, const std::vector<base::Time>& timestamps) argument
H A Dautofill_entry.h35 const std::vector<base::Time>& timestamps);
39 const std::vector<base::Time>& timestamps() const { return timestamps_; } function in class:AutofillEntry
H A Dautofill_table_unittest.cc56 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...]
H A Dautofill_table.cc763 std::vector<base::Time>* timestamps) {
764 DCHECK(timestamps);
778 timestamps->push_back(Time::FromTimeT(s.ColumnInt64(0)));
828 s.BindInt(3, entry.timestamps().size());
836 for (size_t i = 0; i < entry.timestamps().size(); i++) {
837 if (!InsertPairIDAndDate(pair_id, entry.timestamps()[i]))
761 GetAutofillTimestamps(const string16& name, const string16& value, std::vector<base::Time>* timestamps) argument
/external/chromium_org/components/autofill/core/browser/webdata/
H A Dautofill_entry.h39 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.
H A Dautofill_entry_unittest.cc53 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...]
H A Dautofill_entry.cc57 const std::vector<base::Time>& timestamps)
59 timestamps_culled_ = CullTimeStamps(timestamps, &timestamps_);
68 if (timestamps_.size() != entry.timestamps().size())
71 std::set<base::Time> other_timestamps(entry.timestamps().begin(),
72 entry.timestamps().end());
97 // Culls the list of timestamps to the first and last used.
103 // web db with these new timestamps. However after restart if an autofill item
106 // list. Meaning until restart there will be mis-match in timestamps but
124 DVLOG(1) << "Culling timestamps. Current count is : " << source.size();
56 AutofillEntry(const AutofillKey& key, const std::vector<base::Time>& timestamps) argument
H A Dautofill_table_unittest.cc64 std::set<Time> timestamps1(a.timestamps().begin(), a.timestamps().end());
65 std::set<Time> timestamps2(b.timestamps().begin(), b.timestamps().end());
90 std::vector<Time> timestamps; local
92 timestamps.push_back(Time::FromTimeT(timestamp0));
94 timestamps.push_back(Time::FromTimeT(timestamp1));
96 AutofillKey(ASCIIToUTF16(name), ASCIIToUTF16(value)), timestamps);
397 std::vector<Time> timestamps; local
400 &timestamps));
1459 std::vector<Time> timestamps; local
[all...]
H A Dautofill_table.cc526 // the last timestamp for the data, so check how many timestamps do remain.
581 // Cull remaining entries' timestamps.
594 entries[i].timestamps().empty() ? 0 :
595 entries[i].timestamps().front().ToTimeT());
597 entries[i].timestamps().empty() ? 0 :
598 entries[i].timestamps().back().ToTimeT());
850 std::vector<Time>* timestamps) {
851 DCHECK(timestamps);
860 timestamps->push_back(Time::FromTimeT(s.ColumnInt64(0)));
903 s.BindInt(3, entry.timestamps()
848 GetAutofillTimestamps(const base::string16& name, const base::string16& value, std::vector<Time>* timestamps) argument
[all...]
/external/chromium/chrome/browser/sync/glue/
H A Dautofill_change_processor.cc110 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
[all...]
H A Dautofill_model_associator.cc87 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
474 MergeTimestamps( const sync_pb::AutofillSpecifics& autofill, const std::vector<base::Time>& timestamps, std::vector<base::Time>* new_timestamps) argument
[all...]
/external/chromium_org/chrome/browser/webdata/
H A Dautocomplete_syncable_service.cc33 // 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
37 MergeTimestamps(const sync_pb::AutofillSpecifics& autofill, const std::vector<base::Time>& timestamps, std::vector<base::Time>* new_timestamps) argument
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/chrome/browser/ui/toolbar/
H A Drecent_tabs_builder_test_helper.cc103 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/media/filters/
H A Dsource_buffer_stream_unittest.cc218 std::vector<std::string> timestamps; local
219 base::SplitString(expected, ' ', &timestamps);
221 for (size_t i = 0; i < timestamps.size(); i++) {
310 std::vector<std::string> timestamps; local
311 base::SplitString(buffers_to_append, ' ', &timestamps);
313 CHECK_GT(timestamps.size(), 0u);
316 for (size_t i = 0; i < timestamps.size(); i++) {
318 if (EndsWith(timestamps[i], "K", true)) {
321 timestamps[i] = timestamps[
[all...]
H A Dchunk_demuxer_unittest.cc146 // have timestamps consistent with the end times of the blocks
346 std::vector<std::string> timestamps; local
347 base::SplitString(cluster_description, ' ', &timestamps);
351 for (size_t i = 0; i < timestamps.size(); ++i) {
352 std::string timestamp_str = timestamps[i];
357 timestamp_str = timestamp_str.substr(0, timestamps[i].length() - 1);
811 std::vector<std::string> timestamps; local
812 base::SplitString(expected, ' ', &timestamps);
814 for (size_t i = 0; i < timestamps.size(); ++i) {
840 // |timestamps|
844 ParseWebMFile(const std::string& filename, const BufferTimestamps* timestamps, const base::TimeDelta& duration) argument
850 ParseWebMFile(const std::string& filename, const BufferTimestamps* timestamps, const base::TimeDelta& duration, bool has_audio, bool has_video) argument
[all...]
/external/chromium/chrome/browser/sync/
H A Dprofile_sync_service_autofill_unittest.cc104 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());
873 std::vector<base::Time> timestamps(added_entr
[all...]
/external/chromium_org/chrome/browser/sync/
H A Dprofile_sync_service_autofill_unittest.cc127 std::vector<base::Time>* timestamps));
685 std::vector<base::Time> timestamps; local
688 timestamps.push_back(Time::FromInternalValue(
691 entries->push_back(AutofillEntry(key, timestamps));
745 std::vector<Time> timestamps; local
747 timestamps.push_back(base_time + TimeDelta::FromSeconds(time_shift0));
749 timestamps.push_back(base_time + TimeDelta::FromSeconds(time_shift1));
751 AutofillKey(ASCIIToUTF16(name), ASCIIToUTF16(value)), timestamps);
852 const std::vector<base::Time>& ts(entry_.timestamps());
1237 std::vector<base::Time> timestamps(added_entr
[all...]
/external/chromium_org/chrome/browser/ui/webui/
H A Dhistory_ui.cc329 // Pass the timestamps in a list.
330 scoped_ptr<ListValue> timestamps(new ListValue);
333 timestamps->AppendDouble(base::Time::FromInternalValue(*it).ToJsTime());
335 result->Set("allTimestamps", timestamps.release());
550 ListValue* timestamps = NULL; local
552 // Each argument is a dictionary with properties "url" and "timestamps".
555 deletion->GetList("timestamps", &timestamps))) {
559 DCHECK(timestamps->GetSize() > 0);
570 for (ListValue::const_iterator ts_iterator = timestamps
[all...]
/external/qemu/
H A Dqemu-char.c281 int timestamps; member in struct:__anon25838
291 if (!d->timestamps) {
330 "% t toggle console timestamps\n\r"
402 d->timestamps = !d->timestamps;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.reconciler.dropins_1.1.2.R36x_v20101111-1430.jar ... IOException e private boolean isUpToDate () java.util.Properties timestamps java.util.Collection files java.util. ...
H A Dorg.eclipse.equinox.p2.engine_2.0.0.v20100606.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/
H A Dpdebuild.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/pde/ org/eclipse/pde/build/ ...

Completed in 854 milliseconds