OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:documentNodeId
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
CSSNamedFlowCollectionsView.js
123
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
+ "|" + flowName
[
all
...]
CSSStyleModel.js
207
* @param {!DOMAgent.NodeId}
documentNodeId
210
getNamedFlowCollectionAsync: function(
documentNodeId
, userCallback)
212
var namedFlowCollection = this._namedFlowCollections[
documentNodeId
];
230
this._namedFlowCollections[
documentNodeId
] = namedFlowCollection;
235
CSSAgent.getNamedFlowCollection(
documentNodeId
, callback.bind(this, userCallback));
239
* @param {!DOMAgent.NodeId}
documentNodeId
243
getFlowByNameAsync: function(
documentNodeId
, flowName, userCallback)
245
var namedFlowCollection = this._namedFlowCollections[
documentNodeId
];
263
this.getNamedFlowCollectionAsync(
documentNodeId
, callback.bind(this, userCallback));
498
var namedFlowCollection = this._namedFlowCollections[namedFlow.
documentNodeId
];
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorCSSAgent.h
124
void regionLayoutUpdated(NamedFlow*, int
documentNodeId
);
125
void regionOversetChanged(NamedFlow*, int
documentNodeId
);
149
virtual void getNamedFlowCollection(ErrorString*, int
documentNodeId
, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::NamedFlow> >& result);
192
PassRefPtr<TypeBuilder::Array<TypeBuilder::CSS::Region> > buildArrayForRegions(ErrorString*, PassRefPtr<NodeList>, int
documentNodeId
);
193
PassRefPtr<TypeBuilder::CSS::NamedFlow> buildObjectForNamedFlow(ErrorString*, NamedFlow*, int
documentNodeId
);
InspectorCSSAgent.cpp
149
void scheduleFor(NamedFlow*, int
documentNodeId
);
166
void UpdateRegionLayoutTask::scheduleFor(NamedFlow* namedFlow, int
documentNodeId
)
168
m_namedFlows.add(namedFlow,
documentNodeId
);
195
int
documentNodeId
= namedFlows.at(i).second;
198
m_cssAgent->regionLayoutUpdated(namedFlow,
documentNodeId
);
210
void scheduleFor(NamedFlow*, int
documentNodeId
);
227
void ChangeRegionOversetTask::scheduleFor(NamedFlow* namedFlow, int
documentNodeId
)
229
m_namedFlows.add(namedFlow,
documentNodeId
);
751
int
documentNodeId
= documentNodeWithRequestedFlowsId(document);
752
if (!
documentNodeId
)
[
all
...]
InspectorDOMAgent.h
178
int pushNodeToFrontend(ErrorString*, int
documentNodeId
, Node*);
InspectorDOMAgent.cpp
516
int InspectorDOMAgent::pushNodeToFrontend(ErrorString* errorString, int
documentNodeId
, Node* nodeToPush)
518
Document* document = assertDocument(errorString,
documentNodeId
);
[
all
...]
Completed in 243 milliseconds