Searched refs:rootNode (Results 1 - 25 of 107) sorted by last modified time

12345

/macosx-10.9.5/CF-855.17/
H A DCFStorage.c126 CFStorageNode rootNode; member in struct:__CFStorage
385 result = (uint8_t *)__CFStorageFindByte(storage, &storage->rootNode, __CFStorageConvertValueToByte(storage, idx), 0, &resultNode, &rangeInBytes, requireUnfreezing);
909 return __CFStorageConvertByteToValue(storage, storage->rootNode.numBytes);
967 return __CFStorageConvertByteToValue(storage, __CFStorageGetNodeCapacity(&storage->rootNode));
980 __CFStorageDescribeNode(&storage->rootNode, result, 0);
1069 if (storage->rootNode.isLeaf) {
1070 _CFAllocatorDeallocateGC(allocator, storage->rootNode.info.leaf.memory);
1073 __CFStorageReleaseNodeWithNullCheck(storage, storage->rootNode.info.notLeaf.child[0]);
1074 __CFStorageReleaseNodeWithNullCheck(storage, storage->rootNode.info.notLeaf.child[1]);
1075 __CFStorageReleaseNodeWithNullCheck(storage, storage->rootNode
[all...]
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DDocument.cpp685 ContainerNode* rootNode = scope->rootNode(); local
686 for (Element* element = ElementTraversal::firstWithin(rootNode); element; element = ElementTraversal::next(element, rootNode)) {
H A DDocumentOrderedMap.cpp88 ASSERT_WITH_SECURITY_IMPLICATION(treeScope->rootNode()->containsIncludingShadowDOM(element));
147 for (Element* element = ElementTraversal::firstWithin(scope->rootNode()); element; element = ElementTraversal::next(element)) {
212 for (Element* element = entry.element ? entry.element : ElementTraversal::firstWithin(scope->rootNode()); element; element = ElementTraversal::next(element)) {
H A DTreeScope.cpp67 TreeScope::TreeScope(ContainerNode* rootNode, Document* document) argument
68 : m_rootNode(rootNode)
74 ASSERT(rootNode);
76 ASSERT(rootNode != document);
123 ASSERT(rootNode()->isDocumentNode());
130 ASSERT(!rootNode()->isDocumentNode());
240 if (rootNode()->document()->isHTMLDocument())
273 Node* node = nodeFromPoint(rootNode()->document(), x, y);
301 for (Element* element = ElementTraversal::firstWithin(rootNode()); element; element = ElementTraversal::next(element)) {
316 if (!rootNode()
[all...]
H A DEventRetargeter.h92 Node* rootNode = referenceNode->treeScope()->rootNode();
93 Element* shadowHostElement = rootNode->isShadowRoot() ? toShadowRoot(rootNode)->host() : 0;
H A DSelectorQuery.cpp53 inline bool SelectorDataList::selectorMatches(const SelectorData& selectorData, Element* element, const Node* rootNode) const
65 selectorCheckingContext.scope = !rootNode->isDocumentNode() && rootNode->isContainerNode() ? toContainerNode(rootNode) : 0;
83 PassRefPtr<NodeList> SelectorDataList::queryAll(Node* rootNode) const
86 execute<false>(rootNode, result);
90 PassRefPtr<Element> SelectorDataList::queryFirst(Node* rootNode) const
93 execute<true>(rootNode, result);
101 static const CSSSelector* selectorForIdLookup(const Node* rootNode, const CSSSelector* selector) argument
103 if (!rootNode
126 executeFastPathForIdSelector(const Node* rootNode, const SelectorData& selectorData, const CSSSelector* idSelector, Vector<RefPtr<Node> >& matchedElements) const argument
159 elementsForLocalName(const Node* rootNode, const AtomicString& localName, Vector<RefPtr<Node> >& matchedElements) argument
171 anyElement(const Node* rootNode, Vector<RefPtr<Node> >& matchedElements) argument
182 executeSingleTagNameSelectorData(const Node* rootNode, const SelectorData& selectorData, Vector<RefPtr<Node> >& matchedElements) const argument
223 executeSingleClassNameSelectorData(const Node* rootNode, const SelectorData& selectorData, Vector<RefPtr<Node> >& matchedElements) const argument
239 executeSingleSelectorData(const Node* rootNode, const SelectorData& selectorData, Vector<RefPtr<Node> >& matchedElements) const argument
253 executeSingleMultiSelectorData(const Node* rootNode, Vector<RefPtr<Node> >& matchedElements) const argument
269 execute(Node* rootNode, Vector<RefPtr<Node> >& matchedElements) const argument
[all...]
H A DElement.h947 if (isInShadowTree() && !treeScope()->rootNode()->isShadowRoot())
H A DNode.cpp1144 ContainerNode* root = treeScope()->rootNode();
1841 static void traverseTreeAndMark(const String& baseIndent, const Node* rootNode, const Node* markedNode1, const char* markedLabel1, const Node* markedNode2, const char* markedLabel2) argument
1843 for (const Node* node = rootNode; node; node = NodeTraversal::next(node)) {
1851 for (const Node* tmpNode = node; tmpNode && tmpNode != rootNode; tmpNode = tmpNode->parentOrShadowHostNode())
1865 const Node* rootNode; local
1869 rootNode = node;
1872 traverseTreeAndMark(startingIndent, rootNode, markedNode1, markedLabel1, markedNode2, markedLabel2);
1915 Node* rootNode = const_cast<Node*>(this); local
1916 while (parentOrShadowHostOrFrameOwner(rootNode))
1917 rootNode
[all...]
/macosx-10.9.5/WebCore-7537.78.1/testing/
H A DInternals.cpp379 return node->treeScope()->rootNode();
389 return parentTreeScope ? parentTreeScope->rootNode() : 0;
/macosx-10.9.5/WebCore-7537.78.1/page/
H A DDragController.cpp286 if (inputElement && inputElement->isTextButton() && inputElement->treeScope()->rootNode()->isShadowRoot())
287 inputElement = toShadowRoot(inputElement->treeScope()->rootNode())->host()->toInputElement();
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DFrameSelection.cpp136 return node ? node->treeScope()->rootNode() : 0;
H A DSimplifyMarkupCommand.cpp44 Node* rootNode = m_firstNode->parentNode(); local
63 while (currentNode != rootNode) {
64 if (currentNode->parentNode() != rootNode && isRemovableBlock(currentNode))
/macosx-10.9.5/xnu-2422.115.4/bsd/hfs/
H A Dhfs_format.h734 u_int32_t rootNode; /* node number of root node */ member in struct:BTHeaderRec
/macosx-10.9.5/WebCore-7537.78.1/html/parser/
H A DHTMLConstructionSite.cpp459 ContainerNode* parent = m_openElements.rootNode();
741 bool parentCanBeFosterParent = parent && (parent->isElementNode() || (m_isParsingFragment && parent == m_openElements.rootNode()));
754 task.parent = m_openElements.rootNode(); // DocumentFragment
H A DHTMLConstructionSite.h150 bool currentIsRootNode() { return m_openElements.topNode() == m_openElements.rootNode(); }
H A DHTMLTreeBuilder.cpp1625 if (item->node() == m_tree.openElements()->rootNode()) {
2558 if (m_tree.currentNode() != m_tree.openElements()->rootNode())
/macosx-10.9.5/WebCore-7537.78.1/page/scrolling/mac/
H A DScrollingTreeScrollingNodeMac.mm177 if (scrollingTree()->rootNode() == this) {
360 if (scrollingTree()->rootNode() == this && scrollingTree()->scrollPinningBehavior() == PinToBottom)
373 if (scrollingTree()->rootNode() == this && scrollingTree()->scrollPinningBehavior() == PinToTop)
/macosx-10.9.5/llvmCore-3425.0.33/tools/opt/
H A DPrintSCC.cpp95 CallGraphNode* rootNode = getAnalysis<CallGraph>().getRoot(); local
98 for (scc_iterator<CallGraphNode*> SCCI = scc_begin(rootNode),
99 E = scc_end(rootNode); SCCI != E; ++SCCI) {
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DCodeCache.cpp88 RefPtr<RootNode> rootNode = parse<RootNode>(&vm, source, 0, Identifier(), strictness, JSParseProgramCode, error); local
89 if (!rootNode)
91 executable->recordParse(rootNode->features(), rootNode->hasCapturedVariables(), rootNode->lineNo(), rootNode->lastLine(), rootNode->startColumn());
94 unlinkedCode->recordParse(rootNode->features(), rootNode->hasCapturedVariables(), rootNode
[all...]
/macosx-10.9.5/WebCore-7537.78.1/page/scrolling/
H A DScrollingTree.cpp138 ScrollingStateScrollingNode* rootNode = scrollingStateTree->rootStateNode(); local
139 if (rootNode
141 || rootNode->hasChangedProperty(ScrollingStateScrollingNode::WheelEventHandlerCount)
142 || rootNode->hasChangedProperty(ScrollingStateScrollingNode::NonFastScrollableRegion)
143 || rootNode->hasChangedProperty(ScrollingStateNode::ScrollLayer))) {
146 if (rootStateNodeChanged || rootNode->hasChangedProperty(ScrollingStateNode::ScrollLayer))
148 if (rootStateNodeChanged || rootNode->hasChangedProperty(ScrollingStateScrollingNode::WheelEventHandlerCount))
150 if (rootStateNodeChanged || rootNode->hasChangedProperty(ScrollingStateScrollingNode::NonFastScrollableRegion))
154 bool scrollRequestIsProgammatic = rootNode ? rootNode
[all...]
H A DScrollingTree.h113 ScrollingTreeScrollingNode* rootNode() const { return m_rootNode.get(); } function in class:WebCore::ScrollingTree
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLCollection.cpp300 static Node* lastNode(Node* rootNode, bool onlyIncludeDirectChildren) argument
302 return onlyIncludeDirectChildren ? rootNode->lastChild() : lastDescendent(rootNode);
309 Node* rootNode = this->rootNode(); local
310 for (; current; current = previousNode(rootNode, current, onlyIncludeDirectChildren)) {
326 current = previousNode(rootNode(), previous, shouldOnlyIncludeDirectChildren());
328 current = lastNode(rootNode(), shouldOnlyIncludeDirectChildren());
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DApplicationCacheItemsView.js232 this._dataGrid.rootNode().removeChildren();
244 this._dataGrid.rootNode().appendChild(node);
251 if (!nodeToSelect && this._dataGrid.rootNode().children.length)
252 this._dataGrid.rootNode().children[0].selected = true;
H A DCPUProfileView.js173 this.dataGrid.rootNode().removeChildren();
179 this.dataGrid.rootNode().appendChild(children[index]);
187 var child = this.dataGrid.rootNode().children[0];
H A DCSSSelectorProfileView.js152 this.dataGrid.rootNode().removeChildren();
158 this.dataGrid.rootNode().appendChild(children[index]);
163 var child = this.dataGrid.rootNode().children[0];

Completed in 233 milliseconds

12345