HomeSort by relevance Sort by last modified time
    Searched full:sourceentry (Results 1 - 4 of 4) sorted by null

  /external/chromium/chrome/browser/resources/net_internals/
sourceentry.js 6 * Each row in the filtered items list is backed by a SourceEntry. This
12 function SourceEntry(parentView, maxPreviousSourceId) {
23 SourceEntry.prototype.isSelected = function() {
27 SourceEntry.prototype.setSelectedStyles = function(isSelected) {
32 SourceEntry.prototype.setMouseoverStyle = function(isMouseOver) {
36 SourceEntry.prototype.setIsMatchedByFilter = function(isMatchedByFilter) {
54 SourceEntry.prototype.isMatchedByFilter = function() {
58 SourceEntry.prototype.setFilterStyles = function(isMatchedByFilter) {
67 SourceEntry.prototype.update = function(logEntry) {
95 SourceEntry.prototype.onCheckboxToggled_ = function()
    [all...]
eventsview.js 180 * appear right after the SourceEntry with the highest source ID received
396 * Repositions |sourceEntry|'s row in the table using an insertion sort.
400 EventsView.prototype.InsertionSort_ = function(sourceEntry) {
401 // SourceEntry that should be after |sourceEntry|, if it needs
403 var sourceEntryAfter = sourceEntry;
409 if (this.comparisonFuncWithReversing_(sourceEntry, prevSourceEntry) >= 0)
413 if (sourceEntryAfter != sourceEntry) {
414 sourceEntry.moveBefore(sourceEntryAfter);
418 var sourceEntryBefore = sourceEntry;
    [all...]
logviewpainter.js 29 function addSourceEntry_(node, sourceEntry) {
36 addTextNode(nobr, sourceEntry.getDescription());
41 var logEntries = sourceEntry.getLogEntries();
index.html 22 <script src="sourceentry.js"></script>

Completed in 117 milliseconds