Home
last modified time | relevance | path

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

/external/webkit/WebCore/inspector/front-end/
DElementsTreeOutline.js228 …nspector.hoveredDOMNode = (element && !element.elementCloseTag ? element.representedObject : null);
378 … if (!currentTreeElement || !objectsAreSame(currentTreeElement.representedObject, child)) {
382 if (objectsAreSame(treeElement.children[i].representedObject, child)) {
414 var currentNode = currentChild.representedObject;
417 if (objectsAreSame(currentParentNode, this.representedObject))
419 …if (this.representedObject.contentDocument && objectsAreSame(currentParentNode, this.representedOb…
432 if (this.representedObject.contentDocument)
433 updateChildrenOfNode(this.representedObject.contentDocument);
434 updateChildrenOfNode(this.representedObject);
437 …if (this.representedObject.nodeType == Node.ELEMENT_NODE && (!lastChild || !lastChild.elementClose…
[all …]
Dtreeoutline.js252 TreeOutline.prototype.findTreeElement = function(representedObject, isAncestor, getParent, equal) argument
254 if (!representedObject)
260 if ("__treeElementIdentifier" in representedObject) {
263 var elements = this._knownTreeElements[representedObject.__treeElementIdentifier];
266 if (equal(elements[i].representedObject, representedObject))
280 …if (equal(item.representedObject, representedObject) || isAncestor(item.representedObject, represe…
292 var currentObject = representedObject;
295 if (equal(currentObject, item.representedObject))
304 if (equal(ancestors[i], representedObject))
315 return this.findTreeElement(representedObject, null, null, equal);
[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);
DElementsPanel.js667 WebInspector.hoveredDOMNode = (crumbElement ? crumbElement.representedObject : null);
697 if (objectsAreSame(crumb.representedObject, this.rootDOMNode))
705 if (objectsAreSame(crumb.representedObject, this.focusedDOMNode)) {
750 panel.rootDOMNode = crumb.representedObject.parentNode;
751 panel.focusedDOMNode = crumb.representedObject;
767 crumb.representedObject = current;
DScriptsPanel.js574 option.representedObject = (script.resource || script);
583 this._showScriptOrResource(option.representedObject);
615 this._showScriptOrResource(select.options[select.selectedIndex].representedObject);
/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/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.mm4704 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