Searched defs:node (Results 176 - 200 of 1594) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DNodeRenderingTraversal.h68 inline Element* parentElement(const Node* node) argument
70 ContainerNode* found = parent(node);
H A DParentNode.h42 static PassRefPtrWillBeRawPtr<HTMLCollection> children(ContainerNode& node) argument
44 return node.children();
47 static Element* firstElementChild(ContainerNode& node) argument
49 return ElementTraversal::firstChild(node);
52 static Element* lastElementChild(ContainerNode& node) argument
54 return ElementTraversal::lastChild(node);
57 static unsigned childElementCount(ContainerNode& node) argument
60 for (Element* child = ElementTraversal::firstChild(node); child; child = ElementTraversal::nextSibling(*child))
65 static PassRefPtrWillBeRawPtr<Element> querySelector(ContainerNode& node, const AtomicString& selectors, ExceptionState& exceptionState) argument
67 return node
70 querySelectorAll(ContainerNode& node, const AtomicString& selectors, ExceptionState& exceptionState) argument
[all...]
H A DStyleSheetCandidate.cpp45 return isElement() ? toElement(node()).fastGetAttribute(titleAttr) : nullAtom;
50 return !node().document().isHTMLDocument() && m_type == Pi && toProcessingInstruction(node()).isXSL();
55 return m_type == HTMLLink && toHTMLLinkElement(node()).isImport();
61 return toHTMLLinkElement(node()).import();
68 return toElement(node()).getAttribute(relAttr).contains("alternate");
73 return isHTMLLink() && toHTMLLinkElement(node()).isEnabledViaScript();
78 return isHTMLLink() && !toHTMLLinkElement(node()).isDisabled() && toHTMLLinkElement(node()).styleSheetIsLoading();
101 StyleSheetCandidate::Type StyleSheetCandidate::typeOf(Node& node) argument
[all...]
H A DStyleSheetCandidate.h50 StyleSheetCandidate(Node& node) argument
51 : m_node(node)
52 , m_type(typeOf(node))
70 Node& node() const { return *m_node; } function in class:blink::StyleSheetCandidate
/external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
H A DContentDistribution.cpp40 void ContentDistribution::append(PassRefPtrWillBeRawPtr<Node> node) argument
42 ASSERT(node);
43 ASSERT(!isActiveInsertionPoint(*node));
45 m_indices.set(node.get(), size);
46 m_nodes.append(node);
49 size_t ContentDistribution::find(const Node* node) const
51 WillBeHeapHashMap<RawPtrWillBeMember<const Node>, size_t>::const_iterator it = m_indices.find(node);
58 Node* ContentDistribution::nextTo(const Node* node) const
60 size_t index = find(node);
66 Node* ContentDistribution::previousTo(const Node* node) cons
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DDeleteFromTextNodeCommand.h37 static PassRefPtrWillBeRawPtr<DeleteFromTextNodeCommand> create(PassRefPtrWillBeRawPtr<Text> node, unsigned offset, unsigned count) argument
39 return adoptRefWillBeNoop(new DeleteFromTextNodeCommand(node, offset, count));
H A DHTMLInterchange.cpp38 String convertHTMLTextToInterchangeFormat(const String& in, const Text& node) argument
40 // Assume all the text comes from node.
41 if (node.renderer() && node.renderer()->style()->preserveNewline())
H A DInsertIntoTextNodeCommand.cpp37 InsertIntoTextNodeCommand::InsertIntoTextNodeCommand(PassRefPtrWillBeRawPtr<Text> node, unsigned offset, const String& text) argument
38 : SimpleEditCommand(node->document())
39 , m_node(node)
H A DInsertIntoTextNodeCommand.h37 static PassRefPtrWillBeRawPtr<InsertIntoTextNodeCommand> create(PassRefPtrWillBeRawPtr<Text> node, unsigned offset, const String& text) argument
39 return adoptRefWillBeNoop(new InsertIntoTextNodeCommand(node, offset, text));
45 InsertIntoTextNodeCommand(PassRefPtrWillBeRawPtr<Text> node, unsigned offset, const String& text);
H A DRemoveNodeCommand.h35 static PassRefPtrWillBeRawPtr<RemoveNodeCommand> create(PassRefPtrWillBeRawPtr<Node> node, ShouldAssumeContentIsAlwaysEditable shouldAssumeContentIsAlwaysEditable) argument
37 return adoptRefWillBeNoop(new RemoveNodeCommand(node, shouldAssumeContentIsAlwaysEditable));
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DEventDispatcher.h57 Node* node() const { return m_node.get(); } function in class:blink::EventDispatcher
H A DNodeEventContext.h48 Node* node() const { return m_node.get(); } function in class:blink::NodeEventContext
H A DScopedEventQueue.cpp82 Node* node = mediator->event()->target()->toNode(); local
83 EventDispatcher::dispatchEvent(node, mediator);
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DSmartClip.h47 SmartClipData(Node* node, IntRect rect, String string) argument
48 : m_isEmpty(!node)
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLAllCollection.cpp34 PassRefPtrWillBeRawPtr<HTMLAllCollection> HTMLAllCollection::create(ContainerNode& node, CollectionType type) argument
37 return adoptRefWillBeNoop(new HTMLAllCollection(node));
40 HTMLAllCollection::HTMLAllCollection(ContainerNode& node) argument
41 : HTMLCollection(node, DocAll, DoesNotOverrideItemAfter)
H A DHTMLImageLoader.cpp36 HTMLImageLoader::HTMLImageLoader(Element* node) argument
37 : ImageLoader(node)
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorNodeIds.cpp33 int InspectorNodeIds::idForNode(Node* node) argument
36 NodeToIdMap::iterator it = nodeToIdMap().find(node);
40 nodeToIdMap().set(node, id);
42 idToNodeMap().set(id, node);
57 int InspectorNodeIds::idForNode(Node* node)
61 int result = ids.value(node);
64 ids.put(node, result);
71 return nodeIds().node(id);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBR.cpp38 RenderBR::RenderBR(Node* node) argument
39 : RenderText(node, newlineString())
H A DRenderLayerModelObject.h65 ContainerNode* node() const { return toContainerNode(RenderObject::node()); } function in class:blink::RenderLayerModelObject
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGRect.cpp35 RenderSVGRect::RenderSVGRect(SVGRectElement* node) argument
36 : RenderSVGShape(node)
H A DRenderSVGResourceLinearGradient.cpp31 RenderSVGResourceLinearGradient::RenderSVGResourceLinearGradient(SVGLinearGradientElement* node) argument
32 : RenderSVGResourceGradient(node)
H A DRenderSVGResourceRadialGradient.cpp32 RenderSVGResourceRadialGradient::RenderSVGResourceRadialGradient(SVGRadialGradientElement* node) argument
33 : RenderSVGResourceGradient(node)
H A DRenderSVGTransformableContainer.cpp33 RenderSVGTransformableContainer::RenderSVGTransformableContainer(SVGGraphicsElement* node) argument
34 : RenderSVGContainer(node)
40 static bool hasValidPredecessor(const Node* node) argument
42 ASSERT(node);
43 for (node = node->previousSibling(); node; node = node->previousSibling()) {
44 if (node
54 Node* node = child->node(); local
[all...]
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DDetectDiscontinuity.cpp17 bool DetectLoopDiscontinuity::traverse(TIntermNode *node) argument
21 node->traverse(this);
39 bool DetectLoopDiscontinuity::visitBranch(Visit visit, TIntermBranch *node) argument
51 switch (node->getFlowOp())
66 bool DetectLoopDiscontinuity::visitAggregate(Visit visit, TIntermAggregate *node) argument
71 bool containsLoopDiscontinuity(TIntermNode *node) argument
74 return detectLoopDiscontinuity.traverse(node);
77 bool DetectGradientOperation::traverse(TIntermNode *node) argument
80 node->traverse(this);
84 bool DetectGradientOperation::visitUnary(Visit visit, TIntermUnary *node) argument
103 visitAggregate(Visit visit, TIntermAggregate *node) argument
134 containsGradientOperation(TIntermNode *node) argument
[all...]
H A DFlagStd140Structs.cpp47 bool FlagStd140Structs::isInStd140InterfaceBlock(TIntermTyped *node) const
49 TIntermBinary *binaryNode = node->getAsBinaryNode();
56 const TType &type = node->getType();
68 std::vector<TIntermTyped *> FlagStd140ValueStructs(TIntermNode *node) argument
72 node->traverse(&flaggingTraversal);

Completed in 3744 milliseconds

1234567891011>>