Searched refs:documentNodeId (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DCSSNamedFlowCollectionsView.js123 var flowHash = this._hashNamedFlow(flow.documentNodeId, flow.name);
170 var flowHash = this._hashNamedFlow(flow.documentNodeId, flow.name);
219 if (event.data.documentNodeId !== this._document.id)
232 if (event.data.documentNodeId !== this._document.id)
235 this._removeNamedFlow(this._hashNamedFlow(event.data.documentNodeId, event.data.flowName));
244 if (event.data.documentNodeId !== this._document.id)
257 if (event.data.documentNodeId !== this._document.id)
265 * @param {DOMAgent.NodeId} documentNodeId
268 _hashNamedFlow: function(documentNodeId, flowName)
270 return documentNodeId
[all...]
H A DCSSStyleModel.js195 * @param {DOMAgent.NodeId} documentNodeId
198 getNamedFlowCollectionAsync: function(documentNodeId, userCallback)
200 var namedFlowCollection = this._namedFlowCollections[documentNodeId];
217 this._namedFlowCollections[documentNodeId] = namedFlowCollection;
222 CSSAgent.getNamedFlowCollection(documentNodeId, callback.bind(this, userCallback));
226 * @param {DOMAgent.NodeId} documentNodeId
230 getFlowByNameAsync: function(documentNodeId, flowName, userCallback)
232 var namedFlowCollection = this._namedFlowCollections[documentNodeId];
250 this.getNamedFlowCollectionAsync(documentNodeId, callback.bind(this, userCallback));
478 var namedFlowCollection = this._namedFlowCollections[namedFlow.documentNodeId];
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorCSSAgent.cpp144 void scheduleFor(NamedFlow*, int documentNodeId);
161 void UpdateRegionLayoutTask::scheduleFor(NamedFlow* namedFlow, int documentNodeId) argument
163 m_namedFlows.add(namedFlow, documentNodeId);
190 int documentNodeId = namedFlows.at(i).second; local
193 m_cssAgent->regionLayoutUpdated(namedFlow, documentNodeId);
205 void scheduleFor(NamedFlow*, int documentNodeId);
222 void ChangeRegionOversetTask::scheduleFor(NamedFlow* namedFlow, int documentNodeId) argument
224 m_namedFlows.add(namedFlow, documentNodeId);
818 int documentNodeId = documentNodeWithRequestedFlowsId(document); local
819 if (!documentNodeId)
828 int documentNodeId = documentNodeWithRequestedFlowsId(document); local
840 int documentNodeId = documentNodeWithRequestedFlowsId(document); local
849 regionLayoutUpdated(NamedFlow* namedFlow, int documentNodeId) argument
862 int documentNodeId = documentNodeWithRequestedFlowsId(document); local
871 regionOversetChanged(NamedFlow* namedFlow, int documentNodeId) argument
1227 getNamedFlowCollection(ErrorString* errorString, int documentNodeId, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::NamedFlow> >& result) argument
1383 int documentNodeId = m_domAgent->boundNodeId(document); local
1592 buildArrayForRegions(ErrorString* errorString, PassRefPtr<NodeList> regionList, int documentNodeId) argument
1627 buildObjectForNamedFlow(ErrorString* errorString, NamedFlow* webkitNamedFlow, int documentNodeId) argument
[all...]
H A DInspectorCSSAgent.h117 void regionLayoutUpdated(NamedFlow*, int documentNodeId);
118 void regionOversetChanged(NamedFlow*, int documentNodeId);
141 virtual void getNamedFlowCollection(ErrorString*, int documentNodeId, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::NamedFlow> >& result);
179 PassRefPtr<TypeBuilder::Array<TypeBuilder::CSS::Region> > buildArrayForRegions(ErrorString*, PassRefPtr<NodeList>, int documentNodeId);
180 PassRefPtr<TypeBuilder::CSS::NamedFlow> buildObjectForNamedFlow(ErrorString*, NamedFlow*, int documentNodeId);
H A DInspectorDOMAgent.h174 int pushNodeToFrontend(ErrorString*, int documentNodeId, Node*);
H A DInspectorDOMAgent.cpp502 int InspectorDOMAgent::pushNodeToFrontend(ErrorString* errorString, int documentNodeId, Node* nodeToPush) argument
504 Document* document = assertDocument(errorString, documentNodeId);

Completed in 259 milliseconds