Searched refs:element (Results 76 - 100 of 1396) sorted by relevance

1234567891011>>

/macosx-10.9.5/WebCore-7537.78.1/html/
H A DFormAssociatedElement.cpp74 HTMLElement* element = toHTMLElement(this); local
75 if (oldDocument && element->fastHasAttribute(formAttr))
85 HTMLElement* element = toHTMLElement(this);
86 if (element->fastHasAttribute(formAttr))
92 HTMLElement* element = toHTMLElement(this); local
93 if (insertionPoint->inDocument() && element->fastHasAttribute(formAttr))
95 // If the form and element are both in the same tree, preserve the connection to the form.
97 if (m_form && element->highestAncestor() != m_form->highestAncestor())
101 HTMLFormElement* FormAssociatedElement::findAssociatedForm(const HTMLElement* element, HTMLFormElement* currentAssociatedForm) argument
103 const AtomicString& formId(element
164 HTMLElement* element = toHTMLElement(this); local
171 HTMLElement* element = toHTMLElement(this); local
176 HTMLElement* element = toHTMLElement(this); local
189 const HTMLElement* element = toHTMLElement(this); local
282 const HTMLElement* element = static_cast<const HTMLObjectElement*>(associatedElement); local
292 create(const AtomicString& id, FormAssociatedElement* element) argument
297 FormAttributeTargetObserver(const AtomicString& id, FormAssociatedElement* element) argument
[all...]
H A DHiddenInputType.cpp46 PassOwnPtr<InputType> HiddenInputType::create(HTMLInputElement* element) argument
48 return adoptPtr(new HiddenInputType(element));
62 return element()->valueAttributeWasUpdatedAfterParsing() ? FormControlState(element()->value()) : FormControlState();
67 element()->setAttribute(valueAttr, state[0]);
97 element()->setAttribute(valueAttr, sanitizedValue);
107 if (equalIgnoringCase(element()->name(), "_charset_")) {
108 encoding.appendData(element()->name(), String(encoding.encoding().name()));
H A DMicroDataAttributeTokenList.cpp41 MicroDataAttributeTokenList::MicroDataAttributeTokenList(Element* element, const QualifiedName& attributeName) argument
43 , m_element(element)
H A DTelephoneInputType.cpp40 PassOwnPtr<InputType> TelephoneInputType::create(HTMLInputElement* element) argument
42 return adoptPtr(new TelephoneInputType(element));
H A DTelephoneInputType.h43 TelephoneInputType(HTMLInputElement* element) : BaseTextInputType(element) { } argument
H A DTextInputType.h43 TextInputType(HTMLInputElement* element) : BaseTextInputType(element) { } argument
H A DTextFieldInputType.cpp61 TextFieldInputType::TextFieldInputType(HTMLInputElement* element) argument
62 : InputType(element)
74 return element()->isTextFormControlFocusable();
79 return element()->isTextFormControlFocusable();
89 return element()->isRequired() && value.isEmpty();
99 // Grab this input element to keep reference even if JS event handler
101 RefPtr<HTMLInputElement> input(element());
146 if (!element()->focused())
148 Frame* frame = element()->document()->frame();
149 if (!frame || !frame->editor().doTextFieldCommandFromEvent(element(), even
[all...]
H A DRangeInputType.cpp83 PassOwnPtr<InputType> RangeInputType::create(HTMLInputElement* element) argument
85 return adoptPtr(new RangeInputType(element));
88 RangeInputType::RangeInputType(HTMLInputElement* element) argument
89 : InputType(element)
113 return parseToDoubleForNumberType(element()->value());
118 element()->setValue(serialize(newValue), eventBehavior);
135 const Decimal minimum = parseToNumber(element()->fastGetAttribute(minAttr), rangeDefaultMinimum);
136 const Decimal maximum = ensureMaximum(parseToNumber(element()->fastGetAttribute(maxAttr), rangeDefaultMaximum), minimum, rangeDefaultMaximum);
138 const AtomicString& precisionValue = element()->fastGetAttribute(precisionAttr);
144 const Decimal step = StepRange::parseStep(anyStepHandling, stepDescription, element()
[all...]
H A DHTMLFormControlsCollection.cpp76 FormAssociatedElement* element = elementsArray[offset]; local
77 if (element->isEnumeratable())
78 return toHTMLElement(element);
90 HTMLElement* element = toHTMLElement(elementsArray[i]); local
91 if (elementsArray[i]->isEnumeratable() && element->fastGetAttribute(attrName) == name)
92 return element;
99 HTMLImageElement* element = (*imageElementsArray)[i]; local
100 if (element->fastGetAttribute(attrName) == name)
101 return element;
133 HTMLElement* element local
150 HTMLImageElement* element = imageElementsArray[i]; local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DDatabaseTableView.js37 this.element.addStyleClass("storage-view");
38 this.element.addStyleClass("table");
52 return [this.refreshButton.element];
72 this.element.removeChildren();
77 this._emptyView.show(this.element);
80 dataGrid.show(this.element);
87 this.element.removeChildren();
92 this.element.appendChild(errorMsgElement);
H A DNativeBreakpointsSidebarPane.js51 _addListElement: function(element, beforeElement)
54 this.listElement.insertBefore(element, beforeElement);
60 this.listElement.appendChild(element);
64 _removeListElement: function(element)
66 this.listElement.removeChild(element);
H A DView.js33 this.element = document.createElement("div");
34 this.element.__view = this;
66 WebInspector.View._assert(!this.element.parentElement, "Attempt to mark as root attached node");
72 this.element.addStyleClass("layout-boundary");
123 if (this.element.hasStyleClass("layout-boundary"))
124 this.element.style.removeProperty("height");
137 if (this.element.hasStyleClass("layout-boundary"))
138 this.element.style.height = this.element.offsetHeight + "px";
164 if (this.element
[all...]
H A DNavigatorOverlayController.js44 this._navigatorView.element.appendChild(this._navigatorSidebarResizeWidgetElement);
49 this._editorView.element.appendChild(this._navigatorShowHideButton.element);
82 this._parentSidebarView.element.appendChild(this._navigatorShowHideButton.element);
84 this._editorView.element.addStyleClass("navigator-hidden");
100 this._editorView.element.removeStyleClass("navigator-hidden");
102 this._editorView.element.appendChild(this._navigatorShowHideButton.element);
121 this._sidebarOverlay.element
[all...]
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderDialog.h39 explicit RenderDialog(Element* element) argument
40 : RenderBlock(element)
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGPathSegCurvetoQuadraticSmooth.h31 static PassRefPtr<SVGPathSegCurvetoQuadraticSmoothAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y) argument
33 return adoptRef(new SVGPathSegCurvetoQuadraticSmoothAbs(element, role, x, y));
37 SVGPathSegCurvetoQuadraticSmoothAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y) argument
38 : SVGPathSegSingleCoordinate(element, role, x, y)
48 static PassRefPtr<SVGPathSegCurvetoQuadraticSmoothRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y) argument
50 return adoptRef(new SVGPathSegCurvetoQuadraticSmoothRel(element, role, x, y));
54 SVGPathSegCurvetoQuadraticSmoothRel(SVGPathElement* element, SVGPathSegRole role, float x, float y) argument
55 : SVGPathSegSingleCoordinate(element, role, x, y)
H A DSVGPathSegLineto.h31 static PassRefPtr<SVGPathSegLinetoAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y) argument
33 return adoptRef(new SVGPathSegLinetoAbs(element, role, x, y));
37 SVGPathSegLinetoAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y) argument
38 : SVGPathSegSingleCoordinate(element, role, x, y)
48 static PassRefPtr<SVGPathSegLinetoRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y) argument
50 return adoptRef(new SVGPathSegLinetoRel(element, role, x, y));
54 SVGPathSegLinetoRel(SVGPathElement* element, SVGPathSegRole role, float x, float y) argument
55 : SVGPathSegSingleCoordinate(element, role, x, y)
H A DSVGPathSegMoveto.h31 static PassRefPtr<SVGPathSegMovetoAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y) argument
33 return adoptRef(new SVGPathSegMovetoAbs(element, role, x, y));
37 SVGPathSegMovetoAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y) argument
38 : SVGPathSegSingleCoordinate(element, role, x, y)
48 static PassRefPtr<SVGPathSegMovetoRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y) argument
50 return adoptRef(new SVGPathSegMovetoRel(element, role, x, y));
54 SVGPathSegMovetoRel(SVGPathElement* element, SVGPathSegRole role, float x, float y) argument
55 : SVGPathSegSingleCoordinate(element, role, x, y)
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...]
/macosx-10.9.5/curl-78.94.1/curl/lib/
H A Dfileinfo.c44 void Curl_fileinfo_dtor(void *user, void *element) argument
46 struct curl_fileinfo *finfo = element;
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DDatasetDOMStringMap.h38 static PassOwnPtr<DatasetDOMStringMap> create(Element* element) argument
40 return adoptPtr(new DatasetDOMStringMap(element));
52 virtual Element* element() { return m_element; } function in class:WebCore::DatasetDOMStringMap
55 explicit DatasetDOMStringMap(Element* element) argument
56 : m_element(element)
/macosx-10.9.5/WebCore-7537.78.1/html/parser/
H A DHTMLFormattingElementList.h65 Element* element() const function in class:WebCore::HTMLFormattingElementList::Entry
68 // callers should check isMarker() before calling element().
70 return m_item->element();
75 bool operator==(Element* element) const { return !m_item ? !element : m_item->element() == element; }
76 bool operator!=(Element* element) const { return !m_item ? !!element : m_item->element() !
[all...]
/macosx-10.9.5/IOHIDFamily-503.215.2/IOHIDFamily/
H A DIOHIDEventDriver.cpp320 IOHIDElement * element = NULL; local
342 element = (IOHIDElement *) elementArray->getObject(index);
344 if ( element == NULL )
347 if ( element->getType() == kIOHIDElementTypeCollection ) {
364 reportID = element->getReportID();
369 if ( element->getFlags() & kIOHIDElementFlagsRelativeMask)
372 usagePage = element->getUsagePage();
373 usage = element->getUsage();
382 if ((element->getFlags() & (kIOHIDElementFlagsNoPreferredMask|kIOHIDElementFlagsRelativeMask)) == 0) {
383 calibratePreferredStateElement(element, _absoluteAxisRemovalPercentag
590 processMultiAxisElement(IOHIDElement * element, UInt32 * isMultiAxis, bool * supportsInk, IOHIDElement ** relativeCollection) argument
627 calibratePreferredStateElement(IOHIDElement * element, SInt32 removalPercentage) argument
645 calibrateDigitizerElement(IOHIDElement * element, SInt32 removalPercentage) argument
663 calibrateAxisToButtonElement(IOHIDElement * element, SInt32 removalPercentage) argument
706 IOHIDElement * element; local
1023 IOHIDElement *element = 0; local
1039 IOHIDElement *element = 0; local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DStyleInvalidationAnalysis.cpp101 static bool elementMatchesSelectorScopes(const Element* element, const HashSet<AtomicStringImpl*>& idScopes, const HashSet<AtomicStringImpl*>& classScopes) argument
103 if (!idScopes.isEmpty() && element->hasID() && idScopes.contains(element->idForStyleResolution().impl()))
105 if (classScopes.isEmpty() || !element->hasClass())
107 const SpaceSplitString& classNames = element->classNames();
120 Element* element = ElementTraversal::firstWithin(document);
121 while (element) {
122 if (elementMatchesSelectorScopes(element, m_idScopes, m_classScopes)) {
123 element->setNeedsStyleRecalc();
125 element
[all...]
/macosx-10.9.5/WebCore-7537.78.1/rendering/svg/
H A DSVGPathData.cpp38 static void updatePathFromCircleElement(SVGElement* element, Path& path) argument
40 ASSERT(element->hasTagName(SVGNames::circleTag));
41 SVGCircleElement* circle = static_cast<SVGCircleElement*>(element);
43 SVGLengthContext lengthContext(element);
49 static void updatePathFromEllipseElement(SVGElement* element, Path& path) argument
51 ASSERT(element->hasTagName(SVGNames::ellipseTag));
52 SVGEllipseElement* ellipse = static_cast<SVGEllipseElement*>(element);
54 SVGLengthContext lengthContext(element);
64 static void updatePathFromLineElement(SVGElement* element, Path& path) argument
66 ASSERT(element
74 updatePathFromPathElement(SVGElement* element, Path& path) argument
80 updatePathFromPolygonElement(SVGElement* element, Path& path) argument
98 updatePathFromPolylineElement(SVGElement* element, Path& path) argument
114 updatePathFromRectElement(SVGElement* element, Path& path) argument
147 updatePathFromGraphicsElement(SVGElement* element, Path& path) argument
[all...]

Completed in 186 milliseconds

1234567891011>>