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

1234567891011>>

/external/webkit/LayoutTests/dom/xhtml/level3/core/
H A Dnodeinsertbefore18.js94 var element;
110 element = doc.createElement("element");
115 appendedChild = element.appendChild(newElem);
116 appendedChild = element.appendChild(newComment);
117 appendedChild = element.appendChild(newPI);
118 appendedChild = element.appendChild(newCDATA);
119 inserted = element.insertBefore(newComment,newElem);
120 insertedNode = element.firstChild;
H A Dnodeinsertbefore17.js86 first element child and verify the name of the new first child node.
96 var element;
111 element = childList.item(1);
112 refNode = element.firstChild;
115 inserted = element.insertBefore(newText,refNode);
116 insertedText = element.firstChild;
H A Dnodeinsertbefore21.js89 var element;
101 element = childList.item(2);
102 refNode = element.firstChild;
104 newNode = element.parentNode;
110 inserted = element.insertBefore(newNode,refNode);
/external/webkit/Source/WebCore/html/
H A DButtonInputType.cpp38 PassOwnPtr<InputType> ButtonInputType::create(HTMLInputElement* element) argument
40 return adoptPtr(new ButtonInputType(element));
H A DButtonInputType.h43 ButtonInputType(HTMLInputElement* element) : BaseButtonInputType(element) { } argument
H A DColorInputType.h43 ColorInputType(HTMLInputElement* element) : TextFieldInputType(element) { } argument
H A DEmailInputType.h43 EmailInputType(HTMLInputElement* element) : BaseTextInputType(element) { } argument
H A DResetInputType.h43 ResetInputType(HTMLInputElement* element) : BaseButtonInputType(element) { } argument
H A DSearchInputType.cpp38 PassOwnPtr<InputType> SearchInputType::create(HTMLInputElement* element) argument
40 return adoptPtr(new SearchInputType(element));
H A DSearchInputType.h43 SearchInputType(HTMLInputElement* element) : BaseTextInputType(element) { } argument
H A DStepRange.cpp36 StepRange::StepRange(const HTMLInputElement* element) argument
38 if (element->hasAttribute(precisionAttr)) {
40 hasStep = !equalIgnoringCase(element->getAttribute(precisionAttr), "float");
42 hasStep = element->getAllowedValueStep(&step);
44 maximum = element->maximum();
45 minimum = element->minimum();
71 double StepRange::valueFromElement(HTMLInputElement* element, bool* wasClamped) argument
74 bool parseSuccess = parseToDoubleForNumberType(element->value(), &oldValue);
H A DTelephoneInputType.cpp38 PassOwnPtr<InputType> TelephoneInputType::create(HTMLInputElement* element) argument
40 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 DURLInputType.h43 URLInputType(HTMLInputElement* element) : BaseTextInputType(element) { } argument
H A DFileInputType.cpp41 inline FileInputType::FileInputType(HTMLInputElement* element) argument
42 : BaseButtonInputType(element)
47 PassOwnPtr<InputType> FileInputType::create(HTMLInputElement* element) argument
49 return adoptPtr(new FileInputType(element));
59 FileList* fileList = element()->files();
70 encoding.appendData(element()->name(), fileList->item(i)->fileName());
77 encoding.appendBlob(element()->name(), File::create(""));
82 encoding.appendBlob(element()->name(), fileList->item(i));
93 return element()->multiple() ? validationMessageValueMissingForMultipleFileText() : validationMessageValueMissingForFileText();
98 if (element()
[all...]
/external/webkit/Source/WebCore/inspector/front-end/
H A DDOMBreakpointsSidebarPane.js65 var element = this._breakpointElements[id];
66 if (element._node === node)
67 nodeBreakpoints[element._type] = true;
124 var element = document.createElement("span");
135 element.appendChild(b);
139 callback(element);
155 var element = this._breakpointElements[id];
156 if (element._node === node)
157 this._removeBreakpoint(element._node, element
[all...]
/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGHiddenContainer.cpp30 RenderSVGHiddenContainer::RenderSVGHiddenContainer(SVGStyledElement* element) argument
31 : RenderSVGContainer(element)
/external/webkit/Source/WebCore/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)
/external/webkit/Source/WebCore/wml/
H A DWMLEventHandlingElement.cpp80 WMLEventHandlingElement* toWMLEventHandlingElement(WMLElement* element) argument
82 if (!element->isWMLElement())
85 if (element->hasTagName(cardTag))
86 return static_cast<WMLCardElement*>(element);
87 else if (element->hasTagName(optionTag))
88 return static_cast<WMLOptionElement*>(element);
89 else if (element->hasTagName(templateTag))
90 return static_cast<WMLTemplateElement*>(element);
/external/webkit/Source/WebKit/chromium/public/
H A DWebInputElement.h42 // Provides readonly access to some properties of a DOM input element node.
46 WebInputElement(const WebInputElement& element) : WebFormControlElement(element) { } argument
48 WebInputElement& operator=(const WebInputElement& element) argument
50 WebFormControlElement::assign(element);
53 void assign(const WebInputElement& element) { WebFormControlElement::assign(element); } argument
93 inline const WebInputElement* toWebInputElement(const WebElement* element) argument
95 return toWebInputElement(const_cast<WebElement*>(element));
/external/guava/guava/src/com/google/common/collect/
H A DForwardingList.java65 public void add(int index, E element) { argument
66 delegate().add(index, element);
80 public int indexOf(Object element) { argument
81 return delegate().indexOf(element);
85 public int lastIndexOf(Object element) { argument
86 return delegate().lastIndexOf(element);
105 public E set(int index, E element) { argument
106 return delegate().set(index, element);
130 @Beta protected boolean standardAdd(E element){ argument
131 add(size(), element);
155 standardIndexOf(@ullable Object element) argument
167 standardLastIndexOf(@ullable Object element) argument
[all...]
/external/srec/shared/include/
H A DIntArrayListImpl.h42 * Virtual number of allocated element slots.
46 * Actual number of allocated element slots.
56 ESR_SHARED_API ESR_ReturnCode IntArrayList_Add(IntArrayList* self, const int element);
61 ESR_SHARED_API ESR_ReturnCode IntArrayList_Remove(IntArrayList* self, const int element);
71 ESR_SHARED_API ESR_ReturnCode IntArrayList_Contains(IntArrayList* self, const int element, ESR_BOOL* exists);
76 ESR_SHARED_API ESR_ReturnCode IntArrayList_Get(IntArrayList* self, size_t index, int* element);
81 ESR_SHARED_API ESR_ReturnCode IntArrayList_Set(IntArrayList* self, size_t index, const int element);

Completed in 315 milliseconds

1234567891011>>