/external/chromium-trace/trace-viewer/src/tracks/ |
D | counter_track.js | 102 var startIndex = tracing.findLowIndexInSortedArray(ctr.timestamps, 120 var xLast = iLast >= 0 ? ctr.timestamps[iLast] - skipDistanceWorld : -1; 137 var x = ctr.timestamps[i]; 149 var xNext = ctr.timestamps[i + 1]; 181 var x = ctr.timestamps[i]; 211 if (vX < this.counter_.timestamps[0]) 213 var i = tracing.findLowIndexInSortedArray(ctr.timestamps, 216 if (i < 0 || i >= ctr.timestamps.length) 221 if (i > 0 && wX > this.counter_.timestamps[i - 1]) 274 var iLo = tracing.findLowIndexInSortedArray(ctr.timestamps, [all …]
|
/external/chromium-trace/trace-viewer/src/model/ |
D | counter.js | 28 this.timestamps = []; property in anonymousFunction3254a8250100.Counter 64 return this.timestamps.length; 120 for (var sI = 0; sI < this.timestamps.length; sI++) 121 this.timestamps[sI] = (this.timestamps[sI] + amount); 139 this.bounds.addValue(this.timestamps[0]); 140 this.bounds.addValue(this.timestamps[this.timestamps.length - 1]); 144 for (var i = 0; i < this.timestamps.length; i++) {
|
/external/chromium/chrome/browser/webdata/ |
D | autofill_entry.cc | 44 const std::vector<base::Time>& timestamps) in AutofillEntry() argument 46 timestamps_(timestamps) { in AutofillEntry() 55 if (timestamps_.size() != entry.timestamps().size()) in operator ==() 58 std::set<base::Time> other_timestamps(entry.timestamps().begin(), in operator ==() 59 entry.timestamps().end()); in operator ==()
|
D | autofill_entry.h | 35 const std::vector<base::Time>& timestamps); 39 const std::vector<base::Time>& timestamps() const { return timestamps_; } in timestamps() function
|
D | autofill_table_unittest.cc | 56 std::set<Time> timestamps1(a.timestamps().begin(), a.timestamps().end()); in CompareAutofillEntries() 57 std::set<Time> timestamps2(b.timestamps().begin(), b.timestamps().end()); in CompareAutofillEntries() 115 std::vector<Time> timestamps; in MakeAutofillEntry() local 117 timestamps.push_back(Time::FromTimeT(timestamp0)); in MakeAutofillEntry() 119 timestamps.push_back(Time::FromTimeT(timestamp1)); in MakeAutofillEntry() 121 AutofillKey(ASCIIToUTF16(name), ASCIIToUTF16(value)), timestamps); in MakeAutofillEntry() 495 std::vector<Time> timestamps; in TEST_F() local 498 ×tamps)); in TEST_F() 499 ASSERT_EQ(2U, timestamps.size()); in TEST_F() 500 EXPECT_TRUE(Time::FromTimeT(1) == timestamps[0]); in TEST_F() [all …]
|
D | autofill_table.cc | 763 std::vector<base::Time>* timestamps) { in GetAutofillTimestamps() argument 764 DCHECK(timestamps); in GetAutofillTimestamps() 778 timestamps->push_back(Time::FromTimeT(s.ColumnInt64(0))); in GetAutofillTimestamps() 828 s.BindInt(3, entry.timestamps().size()); in InsertAutofillEntry() 836 for (size_t i = 0; i < entry.timestamps().size(); i++) { in InsertAutofillEntry() 837 if (!InsertPairIDAndDate(pair_id, entry.timestamps()[i])) in InsertAutofillEntry()
|
D | autofill_table.h | 193 std::vector<base::Time>* timestamps);
|
/external/chromium/chrome/browser/sync/glue/ |
D | autofill_change_processor.cc | 110 std::vector<base::Time> timestamps; in ObserveAutofillEntriesChanged() local 114 ×tamps)) { in ObserveAutofillEntriesChanged() 122 WriteAutofillEntry(AutofillEntry(change->key(), timestamps), in ObserveAutofillEntriesChanged() 147 std::vector<base::Time> timestamps; in ObserveAutofillEntriesChanged() local 151 ×tamps)) { in ObserveAutofillEntriesChanged() 157 WriteAutofillEntry(AutofillEntry(change->key(), timestamps), in ObserveAutofillEntriesChanged() 321 std::vector<base::Time> timestamps; in ApplySyncAutofillEntryChange() local 324 timestamps.push_back( in ApplySyncAutofillEntryChange() 328 AutofillEntry new_entry(k, timestamps); in ApplySyncAutofillEntryChange() 437 const std::vector<base::Time>& ts(entry.timestamps()); in WriteAutofillEntry()
|
D | autofill_model_associator.cc | 87 std::vector<base::Time> timestamps; in TraverseAndAssociateChromeAutofillEntries() local 88 if (MergeTimestamps(autofill, ix->timestamps(), ×tamps)) { in TraverseAndAssociateChromeAutofillEntries() 89 AutofillEntry new_entry(ix->key(), timestamps); in TraverseAndAssociateChromeAutofillEntries() 332 std::vector<base::Time> timestamps; in AddNativeEntryIfNeeded() local 335 timestamps.push_back(base::Time::FromInternalValue( in AddNativeEntryIfNeeded() 340 bundle->new_entries.push_back(AutofillEntry(key, timestamps)); in AddNativeEntryIfNeeded() 476 const std::vector<base::Time>& timestamps, in MergeTimestamps() argument 479 std::set<base::Time> timestamp_union(timestamps.begin(), in MergeTimestamps() 480 timestamps.end()); in MergeTimestamps() 484 bool different = timestamps.size() != timestamps_count; in MergeTimestamps()
|
D | autofill_model_associator.h | 96 const std::vector<base::Time>& timestamps,
|
/external/chromium-trace/trace-viewer/src/importer/linux_perf/ |
D | power_parser.js | 49 powerCounter.timestamps.push(ts); 66 powerCounter.timestamps.push(ts); 78 powerCounter.timestamps.push(ts);
|
D | bus_parser.js | 60 ctr.timestamps.push(ts); 73 ctr.timestamps.push(ts);
|
D | clock_parser.js | 49 ctr.timestamps.push(ts);
|
D | exynos_parser.js | 82 counter.timestamps.push(ts);
|
D | android_parser.js | 111 ctr.timestamps.push(ts);
|
D | mali_parser.js | 304 counter.timestamps.push(ts); 347 counter.timestamps.push(ts);
|
/external/chromium/chrome/browser/sync/ |
D | profile_sync_service_autofill_unittest.cc | 104 std::vector<base::Time>* timestamps)); 389 std::vector<base::Time> timestamps; in GetAutofillEntriesFromSyncDB() local 392 timestamps.push_back(Time::FromInternalValue( in GetAutofillEntriesFromSyncDB() 395 entries->push_back(AutofillEntry(key, timestamps)); in GetAutofillEntriesFromSyncDB() 443 std::vector<Time> timestamps; in MakeAutofillEntry() local 445 timestamps.push_back(Time::FromTimeT(timestamp0)); in MakeAutofillEntry() 447 timestamps.push_back(Time::FromTimeT(timestamp1)); in MakeAutofillEntry() 449 AutofillKey(ASCIIToUTF16(name), ASCIIToUTF16(value)), timestamps); in MakeAutofillEntry() 548 const std::vector<base::Time>& ts(entry_.timestamps()); in Update() 873 std::vector<base::Time> timestamps(added_entry.timestamps()); in TEST_F() local [all …]
|
/external/chromium-trace/trace-viewer/src/analysis/test/ |
D | analysis_test_support.js | 60 ctr1.timestamps.push(0, 10, 20); 66 ctr2.timestamps.push(0, 10, 20);
|
/external/webkit/LayoutTests/fast/dom/Geolocation/ |
D | timestamp-expected.txt | 1 Tests that Geoposition timestamps are well-formed (non-zero and in the same units as Date.getTime).
|
/external/linux-tools-perf/Documentation/ |
D | perf-record.txt | 116 Sample timestamps. Use it with 'perf report -D' to see the timestamps,
|
/external/valgrind/main/helgrind/ |
D | README_YARD.txt | 11 the idea of shadowing each memory location with two vector timestamps,
|
/external/chromium-trace/trace-viewer/src/importer/ |
D | linux_perf_importer.js | 570 for (var sI = 0; sI < counter.timestamps.length; sI++) 571 counter.timestamps[sI] = (counter.timestamps[sI] + timeShift);
|
D | timeline_stream_importer.js | 178 counter.timestamps.push(x);
|
/external/chromium-trace/ |
D | script.js | 91 …tegory=b||"";this.name=f;this.seriesNames=[];this.seriesColors=[];this.timestamps=[];this.samples=… property 92 get numSamples(){return this.timestamps.length},getSampleValue:function(c,a){return this.samples[c*… 93 …timestamps.length;a++)this.timestamps[a]+=c},updateBounds:function(){if(this.seriesNames.length!=t… 94 1]);for(var c=this.numSeries,a=-Infinity,b=0;b<this.timestamps.length;b++){for(var f=0,e=0;e<c;e++)… 115 …timestamps,function(b){return b},h),m=0<m-1?m-1:0,q=e/a.maxTotal,p=a.numSeries-1;0<=p;p--){b.fillS… 116 …timestamps[v];for(p=a.numSeries-1;0<=p;p--)y=a.totals[v*l+p],y=e-q*y,b.fillRect(x-j,y-1,3*j,3)}b.r… 117 …owIndexInSortedArray(e.timestamps,function(b){return b},b);if(0>a||a>=e.timestamps.length)return!1… 118 …timestamps,function(b){return b},a);b=tracing.findLowIndexInSortedArray(e.timestamps,function(b){r… 171 …endSummaryRow(h,"Title",e.name);b.appendSummaryRowTime(h,"Timestamp",e.timestamps[y]);for(k=0;k<e.… 199 …gument to use as a value.");delete a.parent.counters[a.name];return}}a.timestamps.push(c.ts/1E3);f… [all …]
|
/external/iptables/utils/ |
D | pf.os | 92 # - Timestamp - some systems that implement timestamps set them to 172 # functionality, enable or disable timestamps or selective ACK, 239 # Popular cluster config scripts disable timestamps and 257 S4:64:1:52:M*,N,N,S,N,W0: Linux:2.4:ts:Linux 2.4 w/o timestamps 258 S22:64:1:52:M*,N,N,S,N,W0: Linux:2.2:ts:Linux 2.2 w/o timestamps 286 # 16384:64:1:60:M*,N,N,N,N,N,N,T:FreeBSD:4.4:noTS:FreeBSD 4.4 (w/o timestamps)
|