Searched defs:node (Results 226 - 250 of 1180) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/bindings/js/
H A DJSInjectedScriptHostCustom.cpp71 ScriptValue InjectedScriptHost::nodeAsScriptValue(ScriptState* state, Node* node) argument
74 return ScriptValue(state->globalData(), toJS(state, node));
97 Node* node = impl()->inspectedNode(exec->argument(0).toInt32(exec));
98 if (!node)
102 return toJS(exec, node);
H A DJSNodeCustom.h50 inline JSDOMWrapper* getInlineCachedWrapper(DOMWrapperWorld* world, Node* node) argument
54 return node->wrapper();
57 inline bool setInlineCachedWrapper(DOMWrapperWorld* world, Node* node, JSDOMWrapper* wrapper) argument
61 ASSERT(!node->wrapper());
62 node->setWrapper(*world->globalData(), wrapper, wrapperOwner(world, node), wrapperContext(world, node));
66 inline bool clearInlineCachedWrapper(DOMWrapperWorld* world, Node* node, JSDOMWrapper* wrapper) argument
70 ASSERT_UNUSED(wrapper, node->wrapper() == wrapper);
71 node
77 toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, Node* node) argument
89 root(Node* node) argument
[all...]
H A DScriptEventListener.cpp52 PassRefPtr<JSLazyEventListener> createAttributeEventListener(Node* node, Attribute* attr) argument
54 ASSERT(node);
63 if (Frame* frame = node->document()->frame()) {
69 sourceURL = node->document()->url().string();
72 return JSLazyEventListener::create(attr->localName().string(), eventParameterName(node->isSVGElement()), attr->value(), node, sourceURL, lineNumber, 0, mainThreadNormalWorld());
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptProfile.cpp63 static PassRefPtr<InspectorObject> buildInspectorObjectFor(const v8::CpuProfileNode* node) argument
67 result->setString("functionName", toWebCoreString(node->GetFunctionName()));
68 result->setString("url", toWebCoreString(node->GetScriptResourceName()));
69 result->setNumber("lineNumber", node->GetLineNumber());
70 result->setNumber("totalTime", node->GetTotalTime());
71 result->setNumber("selfTime", node->GetSelfTime());
74 result->setNumber("callUID", node->GetCallUid());
77 const int childrenCount = node->GetChildrenCount();
79 const v8::CpuProfileNode* child = node->GetChild(i);
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8ClipboardCustom.cpp113 Node* node = 0; local
115 node = V8Node::toNative(v8::Handle<v8::Object>::Cast(args[0]));
117 if (!node || !node->isElementNode())
120 if (static_cast<Element*>(node)->hasLocalName(HTMLNames::imgTag) && !node->inDocument())
121 clipboard->setDragImage(static_cast<HTMLImageElement*>(node)->cachedImage(), IntPoint(x, y));
123 clipboard->setDragImageElement(node, IntPoint(x, y));
H A DV8XSLTProcessorCustom.cpp64 Node* node = V8Node::toNative(v8::Handle<v8::Object>::Cast(args[0])); local
65 imp->importStylesheet(node);
/external/webkit/Source/WebCore/css/
H A DCSSComputedStyleDeclaration.h85 inline PassRefPtr<CSSComputedStyleDeclaration> computedStyle(PassRefPtr<Node> node, bool allowVisitedStyle = false, const String& pseudoElementName = String()) argument
87 return adoptRef(new CSSComputedStyleDeclaration(node, allowVisitedStyle, pseudoElementName));
H A DSVGCSSComputedStyleDeclaration.cpp64 Node* node = m_node.get(); local
65 if (!node)
70 node->document()->updateLayout();
72 RenderStyle* style = node->computedStyle();
/external/webkit/Source/WebCore/dom/
H A DEventDispatcher.h58 Node* node() const;
75 inline Node* EventDispatcher::node() const function in class:WebCore::EventDispatcher
H A DStaticHashSetNodeList.cpp71 Node* node = (*it).get(); local
72 if (node->hasID() && static_cast<Element*>(node)->getIdAttribute() == elementId)
73 return node;
/external/webkit/Source/WebCore/editing/
H A DAppendNodeCommand.cpp34 AppendNodeCommand::AppendNodeCommand(PassRefPtr<ContainerNode> parent, PassRefPtr<Node> node) argument
37 , m_node(node)
46 static void sendAXTextChangedIgnoringLineBreaks(Node* node, AXObjectCache::AXTextChange textChange) argument
48 String nodeValue = node->nodeValue();
54 node->document()->axObjectCache()->nodeTextChangeNotification(node->renderer(), textChange, 0, len);
H A DDeleteFromTextNodeCommand.h37 static PassRefPtr<DeleteFromTextNodeCommand> create(PassRefPtr<Text> node, unsigned offset, unsigned count) argument
39 return adoptRef(new DeleteFromTextNodeCommand(node, offset, count));
/external/webkit/Source/WebCore/html/
H A DHTMLFrameElement.cpp62 static inline HTMLFrameSetElement* containingFrameSetElement(Node* node) argument
64 while ((node = node->parentNode())) {
65 if (node->hasTagName(framesetTag))
66 return static_cast<HTMLFrameSetElement*>(node);
H A DHTMLImageLoader.cpp41 HTMLImageLoader::HTMLImageLoader(Element* node) argument
42 : ImageLoader(node)
/external/webkit/Source/WebCore/html/shadow/
H A DDetailsMarkerControl.cpp65 Node* node = this->shadowAncestorNode(); local
66 ASSERT(!node || toElement(node)->hasTagName(summaryTag));
67 return static_cast<HTMLSummaryElement*>(node);
H A DMeterShadowElement.cpp53 Node* node = const_cast<MeterShadowElement*>(this)->shadowAncestorNode(); local
54 ASSERT(!node || meterTag == toElement(node)->tagQName());
55 return static_cast<HTMLMeterElement*>(node);
H A DProgressShadowElement.cpp50 Node* node = const_cast<ProgressShadowElement*>(this)->shadowAncestorNode(); local
51 ASSERT(!node || progressTag == toElement(node)->tagQName());
52 return static_cast<HTMLProgressElement*>(node);
H A DSliderThumbElement.h86 inline SliderThumbElement* toSliderThumbElement(Node* node) argument
88 ASSERT(!node || node->isHTMLElement());
89 return static_cast<SliderThumbElement*>(node);
/external/webkit/Source/WebCore/inspector/front-end/
H A DTextPrompt.js321 var node = selectionRange.startContainer; variable
322 if (node !== this.element && !node.isDescendant(this.element))
325 if (node.nodeType === Node.TEXT_NODE && selectionRange.startOffset < node.nodeValue.length)
329 while (node) {
330 if (node.nodeType === Node.TEXT_NODE && node.nodeValue.length) {
336 node = node
[all...]
/external/webkit/Source/WebCore/page/chromium/
H A DFrameChromium.cpp66 DragImageRef Frame::nodeImage(Node* node) argument
68 RenderObject* renderer = node->renderer();
79 m_view->setNodeToDraw(node); // Enable special sub-tree drawing mode.
/external/webkit/Source/WebCore/rendering/
H A DRenderBR.cpp31 RenderBR::RenderBR(Node* node) argument
32 : RenderText(node, StringImpl::create("\n"))
H A DRenderFullScreen.h36 RenderFullScreen(Node* node) : RenderFlexibleBox(node) { setReplaced(false); } argument
H A DRenderPart.cpp35 RenderPart::RenderPart(Element* node) argument
36 : RenderWidget(node)
80 if (!node() || !node()->isFrameOwnerElement())
90 HTMLFrameOwnerElement* element = static_cast<HTMLFrameOwnerElement*>(node());
H A DRenderRubyText.cpp40 RenderRubyText::RenderRubyText(Node* node) argument
41 : RenderBlock(node)
/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGBlock.cpp32 RenderSVGBlock::RenderSVGBlock(SVGElement* node) argument
33 : RenderBlock(node)

Completed in 809 milliseconds

1234567891011>>