Searched refs:nodeId (Results 1 - 25 of 35) sorted by relevance

12

/macosx-10.9.5/WebCore-7537.78.1/inspector/
H A DInspectorDOMAgent.h124 virtual void querySelector(ErrorString*, int nodeId, const String& selectors, int* elementId);
125 virtual void querySelectorAll(ErrorString*, int nodeId, const String& selectors, RefPtr<TypeBuilder::Array<int> >& result);
127 virtual void requestChildNodes(ErrorString*, int nodeId, const int* depth);
131 virtual void removeNode(ErrorString*, int nodeId);
132 virtual void setNodeName(ErrorString*, int nodeId, const String& name, int* newId);
133 virtual void getOuterHTML(ErrorString*, int nodeId, WTF::String* outerHTML);
134 virtual void setOuterHTML(ErrorString*, int nodeId, const String& outerHTML);
135 virtual void setNodeValue(ErrorString*, int nodeId, const String& value);
136 virtual void getEventListenersForNode(ErrorString*, int nodeId, const WTF::String* objectGroup, RefPtr<TypeBuilder::Array<TypeBuilder::DOM::EventListener> >& listenersArray);
140 virtual void resolveNode(ErrorString*, int nodeId, cons
[all...]
H A DPageConsoleAgent.cpp77 void PageConsoleAgent::addInspectedNode(ErrorString* errorString, int nodeId) argument
79 Node* node = m_inspectorDOMAgent->nodeForId(nodeId);
81 *errorString = "nodeId is not valid";
H A DWorkerConsoleAgent.h54 virtual void addInspectedNode(ErrorString*, int nodeId);
H A DInspectorDOMAgent.cpp382 Node* InspectorDOMAgent::assertNode(ErrorString* errorString, int nodeId) argument
384 Node* node = nodeForId(nodeId);
392 Document* InspectorDOMAgent::assertDocument(ErrorString* errorString, int nodeId) argument
394 Node* node = assertNode(errorString, nodeId);
405 Element* InspectorDOMAgent::assertElement(ErrorString* errorString, int nodeId) argument
407 Node* node = assertNode(errorString, nodeId);
418 Node* InspectorDOMAgent::assertEditableNode(ErrorString* errorString, int nodeId) argument
420 Node* node = assertNode(errorString, nodeId);
432 Element* InspectorDOMAgent::assertEditableElement(ErrorString* errorString, int nodeId) argument
434 Element* element = assertElement(errorString, nodeId);
462 pushChildNodesToFrontend(int nodeId, int depth) argument
523 requestChildNodes(ErrorString* errorString, int nodeId, const int* depth) argument
541 querySelector(ErrorString* errorString, int nodeId, const String& selectors, int* elementId) argument
559 querySelectorAll(ErrorString* errorString, int nodeId, const String& selectors, RefPtr<TypeBuilder::Array<int> >& result) argument
618 int nodeId = map->get(path.at(i)); local
719 removeNode(ErrorString* errorString, int nodeId) argument
734 setNodeName(ErrorString* errorString, int nodeId, const String& tagName, int* newId) argument
769 getOuterHTML(ErrorString* errorString, int nodeId, WTF::String* outerHTML) argument
778 setOuterHTML(ErrorString* errorString, int nodeId, const String& outerHTML) argument
816 setNodeValue(ErrorString* errorString, int nodeId, const String& value) argument
830 getEventListenersForNode(ErrorString* errorString, int nodeId, const String* objectGroup, RefPtr<TypeBuilder::Array<TypeBuilder::DOM::EventListener> >& listenersArray) argument
1183 highlightNode(ErrorString* errorString, const RefPtr<InspectorObject>& highlightInspectorObject, const int* nodeId, const String* objectId) argument
1227 moveTo(ErrorString* errorString, int nodeId, int targetElementId, const int* const anchorNodeId, int* newNodeId) argument
1273 focus(ErrorString* errorString, int nodeId) argument
1285 setFileInputFiles(ErrorString* errorString, int nodeId, const RefPtr<InspectorArray>& files) argument
1313 resolveNode(ErrorString* errorString, int nodeId, const String* const objectGroup, RefPtr<TypeBuilder::Runtime::RemoteObject>& result) argument
1329 getAttributes(ErrorString* errorString, int nodeId, RefPtr<TypeBuilder::Array<String> >& result) argument
1338 requestNode(ErrorString*, const String& objectId, int* nodeId) argument
1797 pushNodeByPathToFrontend(ErrorString* errorString, const String& path, int* nodeId) argument
1805 pushNodeByBackendIdToFrontend(ErrorString* errorString, BackendNodeId backendNodeId, int* nodeId) argument
[all...]
H A DPageConsoleAgent.h58 virtual void addInspectedNode(ErrorString*, int nodeId);
H A DInspectorLayerTreeAgent.cpp121 void InspectorLayerTreeAgent::layersForNode(ErrorString* errorString, int nodeId, RefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::Layer> >& layers) argument
125 Node* node = m_instrumentingAgents->inspectorDOMAgent()->nodeForId(nodeId);
223 int nodeId = domAgent->boundNodeId(node); local
224 if (!nodeId)
225 nodeId = domAgent->pushNodeToFrontend(errorString, domAgent->boundNodeId(node->document()), node);
227 return nodeId;
H A DInspectorDOMDebuggerAgent.h71 virtual void setDOMBreakpoint(ErrorString*, int nodeId, const String& type);
72 virtual void removeDOMBreakpoint(ErrorString*, int nodeId, const String& type);
H A DInspectorCSSAgent.h111 virtual void getComputedStyleForNode(ErrorString*, int nodeId, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::CSSComputedStyleProperty> >&);
112 virtual void getInlineStylesForNode(ErrorString*, int nodeId, RefPtr<TypeBuilder::CSS::CSSStyle>& inlineStyle, RefPtr<TypeBuilder::CSS::CSSStyle>& attributes);
113 virtual void getMatchedStylesForNode(ErrorString*, int nodeId, const bool* includePseudo, const bool* includeInherited, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::RuleMatch> >& matchedCSSRules, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::PseudoIdMatches> >& pseudoIdMatches, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::InheritedStyleEntry> >& inheritedEntries);
124 virtual void forcePseudoState(ErrorString*, int nodeId, const RefPtr<InspectorArray>& forcedPseudoClasses);
155 Element* elementForId(ErrorString*, int nodeId);
H A DInspectorLayerTreeAgent.h70 virtual void layersForNode(ErrorString*, int nodeId, RefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::Layer> >&);
H A DInspectorCSSAgent.cpp707 int nodeId = m_domAgent->boundNodeId(element); local
708 if (!nodeId)
711 NodeIdToForcedPseudoState::iterator it = m_nodeIdToForcedPseudoState.find(nodeId);
730 void InspectorCSSAgent::getMatchedStylesForNode(ErrorString* errorString, int nodeId, const bool* includePseudo, const bool* includeInherited, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::RuleMatch> >& matchedCSSRules, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::PseudoIdMatches> >& pseudoIdMatches, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::InheritedStyleEntry> >& inheritedEntries) argument
732 Element* element = elementForId(errorString, nodeId);
780 void InspectorCSSAgent::getInlineStylesForNode(ErrorString* errorString, int nodeId, RefPtr<TypeBuilder::CSS::CSSStyle>& inlineStyle, RefPtr<TypeBuilder::CSS::CSSStyle>& attributesStyle) argument
782 Element* element = elementForId(errorString, nodeId);
795 void InspectorCSSAgent::getComputedStyleForNode(ErrorString* errorString, int nodeId, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::CSSComputedStyleProperty> >& style) argument
797 Element* element = elementForId(errorString, nodeId);
964 void InspectorCSSAgent::forcePseudoState(ErrorString* errorString, int nodeId, cons argument
1067 elementForId(ErrorString* errorString, int nodeId) argument
1347 int nodeId = m_domAgent->boundNodeId(node); local
[all...]
H A DInspectorConsoleAgent.h95 virtual void addInspectedNode(ErrorString*, int nodeId) = 0;
H A DInspectorDOMDebuggerAgent.cpp249 void InspectorDOMDebuggerAgent::setDOMBreakpoint(ErrorString* errorString, int nodeId, const String& typeString) argument
251 Node* node = m_domAgent->assertNode(errorString, nodeId);
267 void InspectorDOMDebuggerAgent::removeDOMBreakpoint(ErrorString* errorString, int nodeId, const String& typeString) argument
269 Node* node = m_domAgent->assertNode(errorString, nodeId);
349 description->setNumber("nodeId", breakpointOwnerNodeId);
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DDOMAgent.js44 this.id = payload.nodeId;
951 * @param {DOMAgent.NodeId} nodeId
955 _attributeModified: function(nodeId, name, value)
957 var node = this._idToDOMNode[nodeId];
966 * @param {DOMAgent.NodeId} nodeId
969 _attributeRemoved: function(nodeId, name)
971 var node = this._idToDOMNode[nodeId];
994 * @param {DOMAgent.NodeId} nodeId
998 function callback(nodeId, error, attributes)
1004 var node = this._idToDOMNode[nodeId];
[all...]
H A DEventListenersSidebarPane.js89 if (selectedNodeOnly && (node.id !== eventListener.nodeId))
91 eventListener.node = WebInspector.domAgent.nodeForId(eventListener.nodeId);
92 delete eventListener.nodeId; // no longer needed
145 WebInspector.EventListenersSection = function(title, nodeId, linkifier)
148 this._nodeId = nodeId;
176 WebInspector.EventListenerBar = function(eventListener, nodeId, linkifier)
181 this._nodeId = nodeId;
H A DCSSStyleModel.js87 * @param {DOMAgent.NodeId} nodeId
92 getMatchedStylesAsync: function(nodeId, needPseudo, needInherited, userCallback)
138 CSSAgent.getMatchedStylesForNode(nodeId, needPseudo, needInherited, callback.bind(null, userCallback));
142 * @param {DOMAgent.NodeId} nodeId
145 getComputedStyleAsync: function(nodeId, userCallback)
158 CSSAgent.getComputedStyleForNode(nodeId, callback.bind(null, userCallback));
162 * @param {DOMAgent.NodeId} nodeId
165 getInlineStylesAsync: function(nodeId, userCallback)
181 CSSAgent.getInlineStylesForNode(nodeId, callback.bind(null, userCallback));
185 * @param {DOMAgent.NodeId} nodeId
[all...]
H A DCSSNamedFlowView.js110 var treeOutline = this._createFlowTreeOutline(WebInspector.domAgent.nodeForId(region.nodeId));
204 nodeIdSet[newRegions[i].nodeId] = true;
223 if (oldRegions[oldRegionsIndex].nodeId === newRegions[newRegionsIndex].nodeId) {
232 if (nodeIdSet[oldRegions[oldRegionsIndex].nodeId]) {
H A DExtensionAuditCategory.js191 * @param {?number} nodeId
193 function onNodeAvailable(nodeId)
195 if (!nodeId)
198 treeOutline.rootDOMNode = WebInspector.domAgent.nodeForId(nodeId);
H A DDOMBreakpointsSidebarPane.js114 var linkifiedNode = WebInspector.DOMPresentationUtils.linkifyNodeById(auxData.nodeId);
122 if (targetNodeId !== auxData.nodeId) {
261 var breakpointId = this._createBreakpointId(auxData.nodeId, auxData.type);
278 _createBreakpointId: function(nodeId, type)
280 return nodeId + ":" + type;
303 function didPushNodeByPathToFrontend(path, nodeId)
305 var node = WebInspector.domAgent.nodeForId(nodeId);
H A DDOMPresentationUtils.js106 WebInspector.DOMPresentationUtils.linkifyNodeById = function(nodeId)
108 var node = WebInspector.domAgent.nodeForId(nodeId);
H A DCSSNamedFlowCollectionsView.js129 this._regionNodes[flow.regions[i].nodeId] = flowHash;
157 delete this._regionNodes[flow.regions[i].nodeId];
182 delete this._regionNodes[oldFlow.regions[i].nodeId];
187 this._regionNodes[flow.regions[i].nodeId] = flowHash;
H A DElementsPanel.js166 * @param {DOMAgent.NodeId} nodeId
170 _setPseudoClassForNodeId: function(nodeId, pseudoClass, enable)
172 var node = WebInspector.domAgent.nodeForId(nodeId);
274 function selectLastSelectedNode(nodeId)
280 var node = nodeId ? WebInspector.domAgent.nodeForId(nodeId) : null;
1060 revealAndSelectNode: function(nodeId)
1064 var node = WebInspector.domAgent.nodeForId(nodeId);
1068 WebInspector.domAgent.highlightDOMNodeForTwoSeconds(nodeId);
1084 function selectNode(nodeId)
[all...]
H A DMetricsSidebarPane.js117 var nodeId = showHighlight && this.node ? this.node.id : 0; variable
118 if (nodeId) {
122 WebInspector.domAgent.highlightDOMNode(nodeId, mode);
130 if (!nodeId || mode === "all" || element._name === mode)
/macosx-10.9.5/CPANInternal-140/YAML-Syck/
H A Dgram.h65 SYMID nodeId; member in union:YYSTYPE
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/struct/graph/
H A Darc.h30 Tcl_Obj* ga_serial (GA* a, Tcl_Obj* empty, int nodeId);
/macosx-10.9.5/tcl-102/tcl_ext/tclxml/tcldom/src/
H A DtclDomProInt.h124 unsigned int nodeId; /* The node's unique id */ member in struct:_tcldomNode
185 unsigned int nodeId; member in struct:_tcldomTextNode
216 unsigned int nodeId; member in struct:_tcldomDocTypeNode
252 unsigned int nodeId; member in struct:_tcldomAttributeNode

Completed in 312 milliseconds

12