Searched defs:element (Results 201 - 225 of 683) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/css/
H A DCSSFontFaceSource.cpp131 // For SVG fonts parse the external SVG document, and extract the <font> element.
154 // Use the imported <font-face> tag as referencing font-face element for these cases.
201 void CSSFontFaceSource::setSVGFontFaceElement(PassRefPtr<SVGFontFaceElement> element) argument
203 m_svgFontFaceElement = element;
/external/webkit/Source/WebCore/dom/
H A DOptionElement.cpp40 void OptionElement::setSelectedState(OptionElementData& data, Element* element, bool selected) argument
46 element->setNeedsStyleRecalc();
49 int OptionElement::optionIndex(SelectElement* selectElement, const Element* element) argument
62 if (items[i] == element)
70 String OptionElement::collectOptionLabelOrText(const OptionElementData& data, const Element* element) argument
72 Document* document = element->document();
79 text = collectOptionInnerText(element);
83 String OptionElement::collectOptionInnerText(const Element* element) argument
86 Node* n = element->firstChild();
93 n = n->traverseNextSibling(element);
112 collectOptionTextRespectingGroupLabel(const OptionElementData& data, const Element* element) argument
121 collectOptionValue(const OptionElementData& data, const Element* element) argument
141 toOptionElement(Element* element) argument
154 isOptionElement(Element* element) argument
[all...]
H A DScriptElement.h41 Element* element() const { return m_element; } function in class:WebCore::ScriptElement
H A DTreeScope.cpp85 void TreeScope::addElementById(const AtomicString& elementId, Element* element) argument
87 m_elementsById.add(elementId.impl(), element);
90 void TreeScope::removeElementById(const AtomicString& elementId, Element* element) argument
92 m_elementsById.remove(elementId.impl(), element);
103 Element* element = static_cast<Element*>(n); local
104 const AtomicString& accessKey = element->getAttribute(accesskeyAttr);
106 m_elementsByAccessKey.set(accessKey.impl(), element);
150 if (Element* element = getElementById(name))
151 return element;
/external/webkit/Source/WebCore/html/
H A DClassList.cpp38 ClassList::ClassList(Element* element) argument
39 : m_element(element)
H A DFormAssociatedElement.cpp57 HTMLElement* element = toHTMLElement(this); local
58 if (element->fastHasAttribute(formAttr))
59 element->document()->unregisterFormElementWithFormAttribute(this);
64 HTMLElement* element = toHTMLElement(this); local
65 if (element->fastHasAttribute(formAttr))
66 element->document()->registerFormElementWithFormAttribute(this);
71 HTMLElement* element = toHTMLElement(this); local
72 if (element->fastHasAttribute(formAttr))
73 element->document()->unregisterFormElementWithFormAttribute(this);
78 HTMLElement* element local
109 HTMLElement* element = toHTMLElement(this); local
127 HTMLElement* element = toHTMLElement(this); local
153 HTMLElement* element = toHTMLElement(this); local
171 const HTMLElement* element = static_cast<const HTMLObjectElement*>(associatedElement); local
[all...]
H A DHTMLLabelElement.cpp71 // Search the children and descendants of the label element for a form element.
72 // per http://dev.w3.org/html5/spec/Overview.html#the-label-element
73 // the form element must be "labelable form-associated element".
82 // Find the first element whose id is controlId. If it is found and it is a labelable form control,
96 if (HTMLElement* element = control())
97 element->setActive(down, pause);
109 if (HTMLElement* element = control())
110 element
118 RefPtr<HTMLElement> element = control(); local
[all...]
H A DImageInputType.cpp35 inline ImageInputType::ImageInputType(HTMLInputElement* element) argument
36 : BaseButtonInputType(element)
40 PassOwnPtr<InputType> ImageInputType::create(HTMLInputElement* element) argument
42 return adoptPtr(new ImageInputType(element));
57 if (!element()->isActivatedSubmit())
59 const AtomicString& name = element()->name();
62 if (!name.isEmpty() && !element()->value().isEmpty())
63 encoding.appendData(name, element()->value());
74 RefPtr<HTMLInputElement> element = this->element(); local
[all...]
H A DRadioInputType.cpp39 PassOwnPtr<InputType> RadioInputType::create(HTMLInputElement* element) argument
41 return adoptPtr(new RadioInputType(element));
51 return !element()->checkedRadioButtons().checkedButtonForGroup(element()->name());
78 Document* document = element()->document();
85 Node* node = element();
87 // Once we encounter a form element, we know we're through.
94 if (inputElement->form() != element()->form())
96 if (inputElement->isRadioButton() && inputElement->name() == element()->name() && inputElement->isFocusable()) {
113 if (element()
[all...]
H A DTimeInputType.cpp49 PassOwnPtr<InputType> TimeInputType::create(HTMLInputElement* element) argument
51 return adoptPtr(new TimeInputType(element));
76 return parseToDouble(element()->fastGetAttribute(minAttr), DateComponents::minimumTime());
81 return parseToDouble(element()->fastGetAttribute(maxAttr), DateComponents::maximumTime());
H A DValidationMessage.cpp51 ALWAYS_INLINE ValidationMessage::ValidationMessage(FormAssociatedElement* element) argument
52 : m_element(element)
61 PassOwnPtr<ValidationMessage> ValidationMessage::create(FormAssociatedElement* element) argument
63 return adoptPtr(new ValidationMessage(element));
H A DValidityState.cpp46 HTMLElement* element = toHTMLElement(m_control);
47 bool isInputElement = element->isFormControlElement() && element->hasTagName(inputTag);
48 bool isTextAreaElement = element->isFormControlElement() && element->hasTagName(textareaTag);
52 if (element->hasTagName(selectTag))
55 return static_cast<HTMLInputElement*>(element)->valueMissingText();
60 return static_cast<HTMLInputElement*>(element)->typeMismatchText();
70 HTMLTextFormControlElement* text = static_cast<HTMLTextFormControlElement*>(element);
78 return validationMessageRangeUnderflowText(static_cast<HTMLInputElement*>(element)
108 HTMLElement* element = toHTMLElement(m_control); local
129 HTMLElement* element = toHTMLElement(m_control); local
140 HTMLElement* element = toHTMLElement(m_control); local
152 HTMLElement* element = toHTMLElement(m_control); local
169 HTMLElement* element = toHTMLElement(m_control); local
181 HTMLElement* element = toHTMLElement(m_control); local
193 HTMLElement* element = toHTMLElement(m_control); local
205 HTMLElement* element = toHTMLElement(m_control); local
[all...]
/external/webkit/Source/WebCore/page/animation/
H A DAnimationControllerPrivate.h67 void addEventToDispatch(PassRefPtr<Element> element, const AtomicString& eventType, const String& name, double elapsedTime);
118 RefPtr<Element> element; member in class:WebCore::AnimationControllerPrivate::EventToDispatch
/external/webkit/Source/WebCore/platform/graphics/
H A DPath.cpp44 static void pathLengthApplierFunction(void* info, const PathElement* element) argument
50 FloatPoint* points = element->points;
52 switch (element->type) {
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DMediaPlayerProxy.cpp68 RenderObject* r = element()->renderer();
72 Frame* frame = element()->document()->frame();
74 RenderWidget* renderWidget = static_cast<RenderWidget*>(element()->renderer());
92 HTMLMediaElement* element = static_cast<HTMLMediaElement*>(m_mediaPlayer->mediaPlayerClient()); local
93 String url = element->initialURL();
98 Frame* frame = element->document()->frame();
104 if (NamedNodeMap* attributes = element->attributes()) {
112 frame->loader()->subframeLoader()->requestObject(static_cast<RenderPartObject*>(element->renderer()), url, nullAtom, serviceType, paramNames, paramValues);
117 HTMLMediaElement* WebMediaPlayerProxy::element() function in class:WebCore::WebMediaPlayerProxy
125 Frame* frame = element()
[all...]
/external/webkit/Source/WebCore/plugins/
H A DIFrameShimSupport.cpp122 void getPluginOcclusions(Element* element, Widget* parentWidget, const IntRect& frameRect, Vector<IntRect>& occlusions) argument
124 RenderObject* pluginNode = element->renderer();
144 // Check to make sure we can get both the element and the RenderObject
150 HTMLElement* element = frameView->frame()->ownerElement(); local
151 RenderObject* iframeRenderer = element->renderer();
153 if (element->hasTagName(HTMLNames::iframeTag)
/external/webkit/Source/WebCore/rendering/
H A DRenderFieldset.cpp43 RenderFieldset::RenderFieldset(Node* element) argument
44 : RenderBlock(element)
H A DRenderSlider.cpp52 static double sliderPosition(HTMLInputElement* element) argument
54 StepRange range(element);
55 return range.proportionFromValue(range.valueFromElement(element));
58 RenderSlider::RenderSlider(HTMLInputElement* element) argument
59 : RenderBlock(element)
/external/webkit/Source/WebCore/rendering/svg/
H A DSVGMarkerLayoutInfo.cpp44 static inline void processStartAndMidMarkers(void* infoPtr, const PathElement* element) argument
50 // First update the outslope for the previous element
51 markerData.updateOutslope(element->points[0]);
53 // Draw the marker for the previous element
58 // Update our marker data for this element
59 markerData.updateMarkerDataForPathElement(element);
/external/webkit/Source/WebCore/storage/
H A DIDBKeyPath.cpp77 IDBKeyPathLexer::TokenType IDBKeyPathLexer::lex(IDBKeyPathElement& element) argument
106 return lexNumber(element);
108 return lexIdentifier(element);
123 IDBKeyPathLexer::TokenType IDBKeyPathLexer::lexIdentifier(IDBKeyPathElement& element)
134 element.type = IDBKeyPathElement::IsNamed;
135 element.identifier = String(start, m_ptr - start);
139 IDBKeyPathLexer::TokenType IDBKeyPathLexer::lexNumber(IDBKeyPathElement& element)
156 element.type = IDBKeyPathElement::IsIndexed;
157 element.index = number;
195 IDBKeyPathElement element
[all...]
/external/webkit/Source/WebCore/svg/
H A DSVGCursorElement.cpp89 void SVGCursorElement::addClient(SVGElement* element) argument
91 m_clients.add(element);
92 element->setCursorElement(this);
95 void SVGCursorElement::removeClient(SVGElement* element) argument
97 HashSet<SVGElement*>::iterator it = m_clients.find(element);
100 element->cursorElementRemoved();
104 void SVGCursorElement::removeReferencedElement(SVGElement* element) argument
106 m_clients.remove(element);
H A DSVGElementInstance.cpp56 // Register as instance for passed element.
70 // Deregister as instance for passed element.
81 void SVGElementInstance::setShadowTreeElement(SVGElement* element) argument
83 ASSERT(element);
84 m_shadowTreeElement = element;
92 void SVGElementInstance::invalidateAllInstancesOfElement(SVGElement* element) argument
94 if (!element || !element->inDocument())
97 if (element->isStyled() && static_cast<SVGStyledElement*>(element)
138 SVGElement* element = shadowTreeElement(); local
[all...]
H A DSVGPathSegCurvetoCubicSmooth.h31 SVGPathSegCurvetoCubicSmooth(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) argument
32 : SVGPathSegWithContext(element, role)
77 static PassRefPtr<SVGPathSegCurvetoCubicSmoothAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) argument
79 return adoptRef(new SVGPathSegCurvetoCubicSmoothAbs(element, role, x, y, x2, y2));
83 SVGPathSegCurvetoCubicSmoothAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) argument
84 : SVGPathSegCurvetoCubicSmooth(element, role, x, y, x2, y2)
94 static PassRefPtr<SVGPathSegCurvetoCubicSmoothRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) argument
96 return adoptRef(new SVGPathSegCurvetoCubicSmoothRel(element, role, x, y, x2, y2));
100 SVGPathSegCurvetoCubicSmoothRel(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) argument
101 : SVGPathSegCurvetoCubicSmooth(element, rol
[all...]
H A DSVGPathSegCurvetoQuadratic.h31 SVGPathSegCurvetoQuadratic(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1) argument
32 : SVGPathSegWithContext(element, role)
77 static PassRefPtr<SVGPathSegCurvetoQuadraticAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1) argument
79 return adoptRef(new SVGPathSegCurvetoQuadraticAbs(element, role, x, y, x1, y1));
83 SVGPathSegCurvetoQuadraticAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1) argument
84 : SVGPathSegCurvetoQuadratic(element, role, x, y, x1, y1)
94 static PassRefPtr<SVGPathSegCurvetoQuadraticRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1) argument
96 return adoptRef(new SVGPathSegCurvetoQuadraticRel(element, role, x, y, x1, y1));
100 SVGPathSegCurvetoQuadraticRel(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1) argument
101 : SVGPathSegCurvetoQuadratic(element, rol
[all...]
/external/webkit/Source/WebCore/svg/properties/
H A DSVGAnimatedProperty.h65 static PassRefPtr<TearOffType> lookupOrCreateWrapper(SVGElement* element, const QualifiedName& attributeName, const AtomicString& attributeIdentifier, PropertyType& property) argument
67 SVGAnimatedPropertyDescription key(element, attributeIdentifier);
70 wrapper = TearOffType::create(element, attributeName, property);
78 static TearOffType* lookupWrapper(SVGElement* element, const AtomicString& attributeIdentifier) argument
80 SVGAnimatedPropertyDescription key(element, attributeIdentifier);

Completed in 347 milliseconds

1234567891011>>