HomeSort by relevance Sort by last modified time
    Searched refs:treeOutline (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
ElementsPanel.js 132 var treeOutline = new WebInspector.ElementsTreeOutline(target, true, true, this._setPseudoClassForNode.bind(this));
133 treeOutline.wireToDOMModel();
134 treeOutline.addEventListener(WebInspector.ElementsTreeOutline.Events.SelectedNodeChanged, this._selectedNodeChanged, this);
135 treeOutline.addEventListener(WebInspector.ElementsTreeOutline.Events.NodePicked, this._onNodePicked, this);
136 treeOutline.addEventListener(WebInspector.ElementsTreeOutline.Events.ElementsTreeUpdated, this._updateBreadcrumbIfNeeded, this);
137 this._treeOutlines.push(treeOutline);
138 this._targetToTreeOutline.set(target, treeOutline);
150 var treeOutline = this._targetToTreeOutline.remove(target);
151 treeOutline.unwireFromDOMModel();
152 this._treeOutlines.remove(treeOutline);
    [all...]
ElementsTreeOutline.js 33 * @extends {TreeOutline}
57 TreeOutline.call(this, this.element);
455 var element = this.treeOutline.selectedTreeElement;
497 var treeElement = TreeOutline.prototype.findTreeElement.call(this, node, parentNode);
500 treeElement = TreeOutline.prototype.findTreeElement.call(this, node.parentNode, parentNode);
930 __proto__: TreeOutline.prototype
    [all...]
StylesSidebarPane.js     [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
treeoutline.js 34 function TreeOutline(listNode, nonFocusable)
47 this.treeOutline = this;
61 TreeOutline.prototype.setFocusable = function(focusable)
72 TreeOutline.prototype.appendChild = function(child)
75 if (this.treeOutline.comparator)
76 insertionIndex = insertionIndexForObjectInListSortedByFunction(child, this.children, this.treeOutline.comparator);
86 TreeOutline.prototype.insertBeforeChild = function(child, beforeChild)
105 TreeOutline.prototype.insertChild = function(child, index)
129 child.treeOutline = this.treeOutline;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
WatchExpressionsSidebarPane.js 385 this.treeOutline.section._expandedExpressions[this._expression()] = true;
391 delete this.treeOutline.section._expandedExpressions[this._expression()];
397 if (this.treeOutline.section._expandedExpressions[this._expression()])
433 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Add watch expression" : "Add Watch Expression"), this.treeOutline.section.addNewExpressionAndEdit.bind(this.treeOutline.section));
436 if (this.treeOutline.section.watchExpressions.length > 1)
449 this.treeOutline.section._deleteAllExpressions();
454 this.treeOutline.section.updateExpression(this, null);
480 this.treeOutline.section.updateExpression(this, null);
493 this.treeOutline.section.updateExpression(this, expression)
    [all...]
ScopeChainSidebarPane.js 160 if (this.hasChildren && this.propertyIdentifier in this.treeOutline.section.pane._expandedProperties)
166 this.treeOutline.section.pane._expandedProperties[this.propertyIdentifier] = true;
171 delete this.treeOutline.section.pane._expandedProperties[this.propertyIdentifier];
178 var section = this.treeOutline.section;
NavigatorView.js 598 * @extends {TreeOutline}
603 TreeOutline.call(this, element);
672 __proto__: TreeOutline.prototype
880 var isSelected = this === this.treeOutline.selectedTreeElement;
881 var isFocused = this.treeOutline.childrenListElement.isSelfOrAncestor(document.activeElement);
882 return isSelected && isFocused && !WebInspector.isBeingEdited(this.treeOutline.element);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/layers/
LayerTreeOutline.js 34 * @param {!TreeOutline} treeOutline
36 WebInspector.LayerTreeOutline = function(treeOutline)
39 this._treeOutline = treeOutline;
117 for (var node = /** @type {!TreeElement|!TreeOutline|null} */ (this._treeOutline.children[0]); node && !node.root;) {
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
ObjectPropertiesSection.js 289 this.treeOutline.section.update();
322 if (WebInspector.isBeingEdited(elementToEdit) || !this.treeOutline.section.editable || this._readOnly)
502 treeElement.treeOutline.section.treeElementConstructor, WebInspector.ObjectPropertiesSection.CompareProperties,
503 treeElement.treeOutline.section.skipProto, value, emptyPlaceholder);
510 * @param {!TreeElement|!TreeOutline} treeElement
578 * @param {!TreeElement|!TreeOutline} treeElement
686 this.appendChild(new this.treeOutline.section.treeElementConstructor(property));
806 * @param {!TreeElement|!TreeOutline} treeElement
817 * @param {!TreeElement|!TreeOutline} treeElement
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
FileSystemView.js 43 this._directoryTree = new TreeOutline(directoryTreeElement);
168 if (this.parent !== this.treeOutline)
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
PaintProfilerView.js 257 this.sidebarTree = new TreeOutline(sidebarTreeElement);
275 * @param {!TreeOutline} treeOutline
278 _appendLogItem: function(treeOutline, logItem)
281 treeOutline.appendChild(treeElement);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/console/
ConsoleViewMessage.js 223 var treeOutline = new TreeOutline(ol);
230 treeOutline.appendChild(root);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
ProfilesPanel.js 1051 this.treeOutline.element.classList.add("some-expandable");
    [all...]

Completed in 198 milliseconds