Home
last modified time | relevance | path

Searched refs:representedObject (Results 1 – 11 of 11) sorted by relevance

/external/webkit/WebCore/inspector/front-end/
DElementsTreeOutline.js110 … var selectedNode = this.selectedTreeElement ? this.selectedTreeElement.representedObject : null;
253 …nspector.hoveredDOMNode = (element && !element.elementCloseTag ? element.representedObject : null);
297 if (this.representedObject.nodeType == Node.ELEMENT_NODE)
414 if (this.children.length || this._showInlineText(this.representedObject))
422 …WebInspector.domAgent.getChildNodesAsync(this.representedObject, this._updateChildren.bind(this, f…
443 if (!currentTreeElement || currentTreeElement.representedObject !== child) {
447 if (treeElement.children[i].representedObject === child) {
479 var currentNode = currentChild.representedObject;
482 if (currentParentNode === this.representedObject)
492 updateChildrenOfNode(this.representedObject);
[all …]
Dtreeoutline.js263 TreeOutline.prototype.getCachedTreeElement = function(representedObject) argument
265 if (!representedObject)
268 if ("__treeElementIdentifier" in representedObject) {
271 var elements = this._knownTreeElements[representedObject.__treeElementIdentifier];
274 if (elements[i].representedObject === representedObject)
281 TreeOutline.prototype.findTreeElement = function(representedObject, isAncestor, getParent) argument
283 if (!representedObject)
286 var cachedElement = this.getCachedTreeElement(representedObject);
296 …if (item.representedObject === representedObject || isAncestor(item.representedObject, represented…
308 var currentObject = representedObject;
[all …]
DSidebarTreeElement.js26 WebInspector.SidebarSectionTreeElement = function(title, representedObject, hasChildren) argument
28 TreeElement.call(this, title.escapeHTML(), representedObject || {}, hasChildren);
66 WebInspector.SidebarTreeElement = function(className, title, subtitle, representedObject, hasChildr… argument
68 TreeElement.call(this, "", representedObject || {}, hasChildren);
DScriptsPanel.js699 option.representedObject = (script.resource || script);
711 var aSourceID = a.representedObject.sourceID;
712 var bSourceID = b.representedObject.sourceID;
731 this._showScriptOrResource(option.representedObject, {initialLoad: true});
734 var url = option.representedObject.url || option.representedObject.sourceURL;
737 this._showScriptOrResource(option.representedObject, {initialLoad: true});
771 this._showScriptOrResource(select.options[select.selectedIndex].representedObject);
DElementsPanel.js570 WebInspector.hoveredDOMNode = (crumbElement ? crumbElement.representedObject : null);
600 if (crumb.representedObject === this.rootDOMNode)
608 if (crumb.representedObject === this.focusedDOMNode) {
653 panel.rootDOMNode = crumb.representedObject.parentNode;
654 panel.focusedDOMNode = crumb.representedObject;
670 crumb.representedObject = current;
/external/webkit/WebKit/mac/DefaultDelegates/
DWebDefaultContextMenuDelegate.mm55 - (NSMenuItem *)menuItemWithTag:(int)tag target:(id)target representedObject:(id)representedObject
60 [menuItem setRepresentedObject:representedObject];
144 …bject:[self menuItemWithTag:WebMenuItemTagSearchInSpotlight target:nil representedObject:element]];
145 …ems addObject:[self menuItemWithTag:WebMenuItemTagSearchWeb target:nil representedObject:element]];
153 …t:[self menuItemWithTag:WebMenuItemTagLookUpInDictionary target:nil representedObject:element]]; …
155 …[menuItems addObject:[self menuItemWithTag:WebMenuItemTagCopy target:nil representedObject:element…
159 …nuItems addObject:[self menuItemWithTag:WebMenuItemTagGoBack target:wv representedObject:element]];
162 …tems addObject:[self menuItemWithTag:WebMenuItemTagGoForward target:wv representedObject:element]];
165 …menuItems addObject:[self menuItemWithTag:WebMenuItemTagStop target:wv representedObject:element]];
167 …nuItems addObject:[self menuItemWithTag:WebMenuItemTagReload target:wv representedObject:element]];
[all …]
/external/webkit/WebKit/chromium/src/js/
DTests.js777 scriptResource = options[scriptSelect.selectedIndex].representedObject;
787 scriptResource = options[pageScriptIndex].representedObject;
/external/webkit/WebKit/mac/
DChangeLog-2007-10-142961 (-[WebDefaultUIDelegate menuItemWithTag:target:representedObject:]):
6481 representedObject on every NSMenuItem to match our old (correct) API
8778 menuItemWithTag:target:representedObject:]): Same.
10073 (-[WebDefaultUIDelegate menuItemWithTag:target:representedObject:]):
10713 (-[WebDefaultUIDelegate menuItemWithTag:target:representedObject:]):
23571 (-[WebDefaultUIDelegate menuItemWithTag:target:representedObject:]):
23572 Added a representedObject parameter, which is set on the newly created menu item.
23574 …Instead of setting the representedObject on each menu item after creating them all, pass the eleme…
23575 -menuItemWithTag:target:representedObject:.
23577 …ditto. This fixes 4439752 because this method failed to set the representedObject on the menu ite…
/external/webkit/WebKit/mac/WebView/
DWebView.mm5270 NSDictionary *element = [sender representedObject];
/external/webkit/WebCore/
DChangeLog-2008-08-103229 return the parent TreeElement of the representedObject instead
3230 of the TreeElement for the representedObject. Regressed with the
3237 do a final search for representedObject instead of returning item, which
3238 is the parent of representedObject.
17683 Make sure we don't call findTreeElement with the same representedObject
75900 * page/inspector/treeoutline.js: If a null representedObject is passed
DChangeLog-2009-06-164856 rootDOMNode should be updated to this.representedObject.parentNode, not
4857 this.parent.representedObject which is parent inside the element