/external/webkit/Source/WebCore/html/ |
SearchInputType.h | 43 SearchInputType(HTMLInputElement* element) : BaseTextInputType(element) { }
|
TelephoneInputType.h | 43 TelephoneInputType(HTMLInputElement* element) : BaseTextInputType(element) { }
|
TextInputType.cpp | 38 PassOwnPtr<InputType> TextInputType::create(HTMLInputElement* element) 40 return adoptPtr(new TextInputType(element));
|
TextInputType.h | 43 TextInputType(HTMLInputElement* element) : BaseTextInputType(element) { }
|
ImageInputType.cpp | 35 inline ImageInputType::ImageInputType(HTMLInputElement* element) 36 : BaseButtonInputType(element) 40 PassOwnPtr<InputType> ImageInputType::create(HTMLInputElement* element) 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...] |
TextFieldInputType.cpp | 62 if (!element()->focused()) 64 Frame* frame = element()->document()->frame(); 65 if (!frame || !frame->editor()->doTextFieldCommandFromEvent(element(), event)) 72 if (element()->disabled() || element()->readOnly()) 82 element()->stepUpFromRenderer(step); 88 if (element()->disabled() || element()->readOnly() || !element()->focused()) 97 element()->stepUpFromRenderer(step) [all...] |
RadioInputType.cpp | 39 PassOwnPtr<InputType> RadioInputType::create(HTMLInputElement* element) 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()->checked() [all...] |
/external/webkit/Source/WebCore/svg/ |
SVGPathSegCurvetoQuadraticSmooth.h | 31 static PassRefPtr<SVGPathSegCurvetoQuadraticSmoothAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y) 33 return adoptRef(new SVGPathSegCurvetoQuadraticSmoothAbs(element, role, x, y)); 37 SVGPathSegCurvetoQuadraticSmoothAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y) 38 : SVGPathSegSingleCoordinate(element, role, x, y) 48 static PassRefPtr<SVGPathSegCurvetoQuadraticSmoothRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y) 50 return adoptRef(new SVGPathSegCurvetoQuadraticSmoothRel(element, role, x, y)); 54 SVGPathSegCurvetoQuadraticSmoothRel(SVGPathElement* element, SVGPathSegRole role, float x, float y) 55 : SVGPathSegSingleCoordinate(element, role, x, y)
|
SVGPathSegLineto.h | 31 static PassRefPtr<SVGPathSegLinetoAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y) 33 return adoptRef(new SVGPathSegLinetoAbs(element, role, x, y)); 37 SVGPathSegLinetoAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y) 38 : SVGPathSegSingleCoordinate(element, role, x, y) 48 static PassRefPtr<SVGPathSegLinetoRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y) 50 return adoptRef(new SVGPathSegLinetoRel(element, role, x, y)); 54 SVGPathSegLinetoRel(SVGPathElement* element, SVGPathSegRole role, float x, float y) 55 : SVGPathSegSingleCoordinate(element, role, x, y)
|
SVGPathSegMoveto.h | 31 static PassRefPtr<SVGPathSegMovetoAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y) 33 return adoptRef(new SVGPathSegMovetoAbs(element, role, x, y)); 37 SVGPathSegMovetoAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y) 38 : SVGPathSegSingleCoordinate(element, role, x, y) 48 static PassRefPtr<SVGPathSegMovetoRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y) 50 return adoptRef(new SVGPathSegMovetoRel(element, role, x, y)); 54 SVGPathSegMovetoRel(SVGPathElement* element, SVGPathSegRole role, float x, float y) 55 : SVGPathSegSingleCoordinate(element, role, x, y)
|
/external/webkit/Source/WebCore/dom/ |
DocumentOrderedMap.cpp | 34 #include "Element.h" 43 inline bool keyMatchesId(AtomicStringImpl* key, Element* element) 45 return element->hasID() && element->getIdAttribute().impl() == key; 48 inline bool keyMatchesMapName(AtomicStringImpl* key, Element* element) 50 return element->hasTagName(mapTag) && static_cast<HTMLMapElement*>(element)->getName().impl() == key; 53 inline bool keyMatchesLowercasedMapName(AtomicStringImpl* key, Element* element 114 Element* element = m_map.get(key); local [all...] |
DatasetDOMStringMap.h | 34 class Element; 38 static PassOwnPtr<DatasetDOMStringMap> create(Element* element) 40 return new DatasetDOMStringMap(element); 52 virtual Element* element() { return m_element; } function in class:WebCore::DatasetDOMStringMap 55 DatasetDOMStringMap(Element* element) 56 : m_element(element) 60 Element* m_element [all...] |
CheckedRadioButtons.cpp | 28 void CheckedRadioButtons::addButton(HTMLFormControlElement* element) 31 if (!element->isRadioButton()) 35 if (element->name().isEmpty()) 38 HTMLInputElement* inputElement = static_cast<HTMLInputElement*>(element); 47 pair<NameToInputMap::iterator, bool> result = m_nameToCheckedRadioButtonMap->add(element->name().impl(), inputElement); 69 void CheckedRadioButtons::removeButton(HTMLFormControlElement* element) 71 if (element->name().isEmpty() || !m_nameToCheckedRadioButtonMap) 76 NameToInputMap::iterator it = m_nameToCheckedRadioButtonMap->find(element->name().impl()); 77 if (it == m_nameToCheckedRadioButtonMap->end() || it->second != element) 80 InputElement* inputElement = element->toInputElement() [all...] |
SelectElement.cpp | 27 #include "Element.h" 81 // Valid means that it is enabled and an option element. 82 static int nextValidIndex(const Vector<Element*>& listItems, int listIndex, SkipDirection direction, int skip) 98 static int nextSelectableListIndex(SelectElementData& data, Element* element, int startIndex) 100 return nextValidIndex(data.listItems(element), startIndex, SkipForwards, 1); 103 static int previousSelectableListIndex(SelectElementData& data, Element* element, int startIndex) 106 startIndex = data.listItems(element).size(); 107 return nextValidIndex(data.listItems(element), startIndex, SkipBackwards, 1) 1062 SelectElement::recalcListItems(*const_cast<SelectElementData*>(this), element, false); local 1082 SelectElement::recalcListItems(*const_cast<SelectElementData*>(this), element); local [all...] |
/external/webkit/Source/WebKit/chromium/src/ |
DOMUtilitiesPrivate.cpp | 34 #include "Element.h" 80 bool elementHasLegalLinkAttribute(const Element* element, 85 if (element->hasTagName(HTMLNames::imgTag) 86 || element->hasTagName(HTMLNames::scriptTag) 87 || element->hasTagName(HTMLNames::iframeTag) 88 || element->hasTagName(HTMLNames::frameTag)) 90 if (element->hasTagName(HTMLNames::inputTag)) { 92 static_cast<const HTMLInputElement*>(element); 98 if (element->hasTagName(HTMLNames::linkTag [all...] |
/external/webkit/Source/WebCore/bindings/js/ |
JSHTMLElementCustom.cpp | 38 HTMLElement* element = impl(); local 40 // The document is put on first, fall back to searching it only after the element and form. 41 scope = scope->push(asObject(toJS(exec, globalObject(), element->ownerDocument()))); 43 // The form is next, searched before the document, but after the element itself. 44 if (HTMLFormElement* form = element->form()) 47 // The element is on top, searched first. 48 return scope->push(asObject(toJS(exec, globalObject(), element)));
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/ |
ResourceLabelProvider.java | 64 public Image getImage(Object element) { 72 public String getText(Object element) { 73 return getColumnText(element, 0); 84 public boolean isLabelProperty(Object element, String property) { 92 public Image getColumnImage(Object element, int columnIndex) { 94 if (element instanceof ResourceItem) { 95 ResourceItem item = (ResourceItem)element; 104 public String getColumnText(Object element, int columnIndex) { 107 if (element instanceof ResourceType) { 108 return ((ResourceType)element).getDisplayName() [all...] |
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
ElementHasAttribute.java | 3 import org.w3c.dom.Element; 11 * specified on this element or has a default value, false otherwise Invoke the 50 Element element; local 53 element = doc.getDocumentElement(); 54 state = element.hasAttribute(""); 61 // Element element; 66 // element = (Element) elementList.item(0) 73 Element element; local 88 Element element; local [all...] |
/external/webkit/Source/WebCore/bindings/gobject/ |
WebKitHTMLElementWrapperFactory.cpp | 172 static gpointer createAnchorWrapper(PassRefPtr<HTMLElement> element) 174 return wrapHTMLAnchorElement(static_cast<HTMLAnchorElement*>(element.get())); 177 static gpointer createAppletWrapper(PassRefPtr<HTMLElement> element) 179 return wrapHTMLAppletElement(static_cast<HTMLAppletElement*>(element.get())); 182 static gpointer createAreaWrapper(PassRefPtr<HTMLElement> element) 184 return wrapHTMLAreaElement(static_cast<HTMLAreaElement*>(element.get())); 188 static gpointer createAudioWrapper(PassRefPtr<HTMLElement> element) 190 return wrapHTMLAudioElement(static_cast<HTMLAudioElement*>(element.get())); 193 static gpointer createVideoWrapper(PassRefPtr<HTMLElement> element) 195 return wrapHTMLVideoElement(static_cast<HTMLVideoElement*>(element.get())) [all...] |
/external/opencv/cv/src/ |
_cvlist.h | 85 /* Basic element of a list*/\ 115 /* This macro finds a space for a new element and puts in into 'element' pointer */ 116 #define INSERT_NEW(element_type, l, element)\ 120 element = (element_type*)(l->m_head_free.m_pos);\ 121 if(element->m_next != NULL)\ 123 element->m_next->m_prev = NULL;\ 124 l->m_head_free.m_pos = element->m_next;\ 138 element = (element_type*)((char*)l->m_buffer + sizeof(void*));\ 142 element = (element_type*)((char*)l->m_buffer + sizeof(void*)) + l->m_size - 1; [all...] |
/hardware/qcom/media/mm-video/vidc/vdec/src/ |
queue.c | 39 void *element; member in struct:Node 73 void *element = pop(q); local 74 if (element) 75 free(element); 79 int push(Queue *q, void * element) 86 new_node->element = element; 107 void *element; local 113 element = temp->element; [all...] |
/external/guava/src/com/google/common/collect/ |
SingletonImmutableList.java | 31 * Implementation of {@link ImmutableList} with exactly one element. 38 final transient E element; field in class:SingletonImmutableList 40 SingletonImmutableList(E element) { 41 this.element = checkNotNull(element); 46 return element; 50 return element.equals(object) ? 0 : -1; 54 return Iterators.singletonIterator(element); 58 return element.equals(object) ? 0 : -1; 67 return Collections.singletonList(element).listIterator(start) [all...] |
SingletonImmutableSet.java | 27 * Implementation of {@link ImmutableSet} with exactly one element. 35 final transient E element; field in class:SingletonImmutableSet 42 SingletonImmutableSet(E element) { 43 this.element = Preconditions.checkNotNull(element); 46 SingletonImmutableSet(E element, int hashCode) { 48 this.element = element; 61 return element.equals(target); 65 return Iterators.singletonIterator(element); [all...] |
/external/webkit/Source/WebCore/html/parser/ |
HTMLFormattingElementList.cpp | 29 #include "Element.h" 42 Element* HTMLFormattingElementList::closestElementInScopeWithName(const AtomicString& targetName) 48 if (entry.element()->hasLocalName(targetName)) 49 return entry.element(); 54 bool HTMLFormattingElementList::contains(Element* element) 56 return !!find(element); 59 HTMLFormattingElementList::Entry* HTMLFormattingElementList::find(Element* element) 61 size_t index = m_entries.reverseFind(element); [all...] |
/external/webkit/Source/WebCore/inspector/front-end/ |
StatusBarButton.js | 33 this.element = document.createElement("button"); 34 this.element.className = className + " status-bar-item"; 35 this.element.addEventListener("click", this._clicked.bind(this), false); 39 this.element.appendChild(this.glyph); 43 this.element.appendChild(this.glyphShadow); 75 this.element.disabled = x; 88 this.element.title = x; 103 this.element.addStyleClass("toggled-on"); 105 this.element.removeStyleClass("toggled-on"); 108 this.element.removeStyleClass("toggled-" + this._state) [all...] |