Home
last modified time | relevance | path

Searched defs:element (Results 1 – 25 of 722) sorted by relevance

12345678910>>...29

/external/webkit/Source/WebCore/bindings/gobject/
DWebKitHTMLElementWrapperFactory.cpp172 static gpointer createAnchorWrapper(PassRefPtr<HTMLElement> element) in createAnchorWrapper()
177 static gpointer createAppletWrapper(PassRefPtr<HTMLElement> element) in createAppletWrapper()
182 static gpointer createAreaWrapper(PassRefPtr<HTMLElement> element) in createAreaWrapper()
188 static gpointer createAudioWrapper(PassRefPtr<HTMLElement> element) in createAudioWrapper()
193 static gpointer createVideoWrapper(PassRefPtr<HTMLElement> element) in createVideoWrapper()
199 static gpointer createBaseWrapper(PassRefPtr<HTMLElement> element) in createBaseWrapper()
204 static gpointer createBaseFontWrapper(PassRefPtr<HTMLElement> element) in createBaseFontWrapper()
209 static gpointer createBlockquoteWrapper(PassRefPtr<HTMLElement> element) in createBlockquoteWrapper()
214 static gpointer createBodyWrapper(PassRefPtr<HTMLElement> element) in createBodyWrapper()
219 static gpointer createBRWrapper(PassRefPtr<HTMLElement> element) in createBRWrapper()
[all …]
/external/webkit/Source/WebCore/html/
DValidityState.cpp46 HTMLElement* element = toHTMLElement(m_control); in validationMessage() local
108 HTMLElement* element = toHTMLElement(m_control); in valueMissing() local
129 HTMLElement* element = toHTMLElement(m_control); in typeMismatch() local
140 HTMLElement* element = toHTMLElement(m_control); in patternMismatch() local
152 HTMLElement* element = toHTMLElement(m_control); in tooLong() local
169 HTMLElement* element = toHTMLElement(m_control); in rangeUnderflow() local
181 HTMLElement* element = toHTMLElement(m_control); in rangeOverflow() local
193 HTMLElement* element = toHTMLElement(m_control); in stepMismatch() local
205 HTMLElement* element = toHTMLElement(m_control); in customError() local
DFormAssociatedElement.cpp57 HTMLElement* element = toHTMLElement(this); in willMoveToNewOwnerDocument() local
64 HTMLElement* element = toHTMLElement(this); in insertedIntoDocument() local
71 HTMLElement* element = toHTMLElement(this); in removedFromDocument() local
78 HTMLElement* element = toHTMLElement(this); in insertedIntoTree() local
109 HTMLElement* element = toHTMLElement(this); in removedFromTree() local
127 HTMLElement* element = toHTMLElement(this); in resetFormOwner() local
153 HTMLElement* element = toHTMLElement(this); in formAttributeChanged() local
171 const HTMLElement* element = static_cast<const HTMLObjectElement*>(associatedElement); in toHTMLElement() local
DHTMLLabelElement.cpp96 if (HTMLElement* element = control()) in setActive() local
109 if (HTMLElement* element = control()) in setHovered() local
118 RefPtr<HTMLElement> element = control(); in defaultEventHandler() local
145 if (HTMLElement* element = control()) in focus() local
151 if (HTMLElement* element = control()) in accessKeyAction() local
/external/webkit/Source/WebCore/dom/
DOptionElement.cpp40 void OptionElement::setSelectedState(OptionElementData& data, Element* element, bool selected) in setSelectedState()
49 int OptionElement::optionIndex(SelectElement* selectElement, const Element* element) in optionIndex()
70 …ring OptionElement::collectOptionLabelOrText(const OptionElementData& data, const Element* element) in collectOptionLabelOrText()
83 String OptionElement::collectOptionInnerText(const Element* element) in collectOptionInnerText()
112 …ement::collectOptionTextRespectingGroupLabel(const OptionElementData& data, const Element* element) in collectOptionTextRespectingGroupLabel()
121 String OptionElement::collectOptionValue(const OptionElementData& data, const Element* element) in collectOptionValue()
141 OptionElement* toOptionElement(Element* element) in toOptionElement()
154 bool isOptionElement(Element* element) in isOptionElement()
DSelectElement.cpp98 static int nextSelectableListIndex(SelectElementData& data, Element* element, int startIndex) in nextSelectableListIndex()
103 static int previousSelectableListIndex(SelectElementData& data, Element* element, int startIndex) in previousSelectableListIndex()
110 static int firstSelectableListIndex(SelectElementData& data, Element* element) in firstSelectableListIndex()
119 static int lastSelectableListIndex(SelectElementData& data, Element* element) in lastSelectableListIndex()
125 static int nextSelectableListIndexPageAway(SelectElementData& data, Element* element, int startInde… in nextSelectableListIndexPageAway()
141 void SelectElement::selectAll(SelectElementData& data, Element* element) in selectAll()
158 void SelectElement::saveLastSelection(SelectElementData& data, Element* element) in saveLastSelection()
175 void SelectElement::setActiveSelectionAnchorIndex(SelectElementData& data, Element* element, int in… in setActiveSelectionAnchorIndex()
195 void SelectElement::updateListBoxSelection(SelectElementData& data, Element* element, bool deselect… in updateListBoxSelection()
222 void SelectElement::listBoxOnChange(SelectElementData& data, Element* element) in listBoxOnChange()
[all …]
DDocumentOrderedMap.cpp43 inline bool keyMatchesId(AtomicStringImpl* key, Element* element) in keyMatchesId()
48 inline bool keyMatchesMapName(AtomicStringImpl* key, Element* element) in keyMatchesMapName()
53 inline bool keyMatchesLowercasedMapName(AtomicStringImpl* key, Element* element) in keyMatchesLowercasedMapName()
64 void DocumentOrderedMap::add(AtomicStringImpl* key, Element* element) in add()
94 void DocumentOrderedMap::remove(AtomicStringImpl* key, Element* element) in remove()
114 Element* element = m_map.get(key); in get() local
DDatasetDOMStringMap.h38 static PassOwnPtr<DatasetDOMStringMap> create(Element* element) in create()
52 virtual Element* element() { return m_element; } in element() function
55 DatasetDOMStringMap(Element* element) in DatasetDOMStringMap()
/external/guava/guava/src/com/google/common/collect/
DMultiset.java102 int count(@Nullable Object element); in count()
125 int add(@Nullable E element, int occurrences); in add()
140 int remove(@Nullable Object element, int occurrences); in remove()
155 int setCount(E element, int count); in setCount()
177 boolean setCount(E element, int oldCount, int newCount); in setCount()
345 boolean contains(@Nullable Object element); in contains()
389 boolean add(E element); in add()
403 boolean remove(@Nullable Object element); in remove()
DForwardingMultiset.java61 public int count(Object element) { in count()
66 public int add(E element, int occurrences) { in add()
71 public int remove(Object element, int occurrences) { in remove()
94 public int setCount(E element, int count) { in setCount()
99 public boolean setCount(E element, int oldCount, int newCount) { in setCount()
152 @Beta protected boolean standardAdd(E element) { in standardAdd()
178 @Beta @Override protected boolean standardRemove(Object element) { in standardRemove()
217 @Beta protected int standardSetCount(E element, int count) { in standardSetCount()
230 E element, int oldCount, int newCount) { in standardSetCount()
DForwardingList.java65 public void add(int index, E element) { in add()
80 public int indexOf(Object element) { in indexOf()
85 public int lastIndexOf(Object element) { in lastIndexOf()
105 public E set(int index, E element) { in set()
130 @Beta protected boolean standardAdd(E element){ in standardAdd()
131 add(size(), element); in standardAdd() local
155 @Beta protected int standardIndexOf(@Nullable Object element) { in standardIndexOf()
167 @Beta protected int standardLastIndexOf(@Nullable Object element) { in standardLastIndexOf()
DAbstractMultiset.java59 @Override public boolean contains(@Nullable Object element) { in contains()
68 public int count(Object element) { in count()
79 @Override public boolean add(@Nullable E element) { in add()
85 public int add(E element, int occurrences) { in add()
89 @Override public boolean remove(Object element) { in remove()
94 public int remove(Object element, int occurrences) { in remove()
99 public int setCount(E element, int count) { in setCount()
104 public boolean setCount(E element, int oldCount, int newCount) { in setCount()
DConcurrentHashMultiset.java147 @Override public int count(@Nullable Object element) { in count()
157 private AtomicInteger safeGet(Object element) { in safeGet()
201 E element = entry.getElement(); in snapshot() local
220 @Override public int add(E element, int occurrences) { in add()
275 @Override public int remove(@Nullable Object element, int occurrences) { in remove()
314 public boolean removeExactly(@Nullable Object element, int occurrences) { in removeExactly()
348 @Override public int setCount(E element, int count) { in setCount()
402 @Override public boolean setCount(E element, int expectedOldCount, int newCount) { in setCount()
/external/webkit/Source/WebKit/android/WebCoreSupport/autofill/
DFormManagerAndroid.cpp75 HTMLInputElement* HTMLFormControlElementToHTMLInputElement(const HTMLFormControlElement& element) { in HTMLFormControlElementToHTMLInputElement()
102 bool IsTextInput(const HTMLInputElement* element) { in IsTextInput()
109 bool IsSelectElement(const HTMLFormControlElement& element) { in IsSelectElement()
113 bool IsOptionElement(Element& element) { in IsOptionElement()
117 bool IsAutofillableElement(const HTMLFormControlElement& element) { in IsAutofillableElement()
151 string16 FindChildText(Element* element) { in FindChildText()
160 string16 InferLabelFromPrevious(const HTMLFormControlElement& element) { in InferLabelFromPrevious()
175 Element* element = static_cast<Element*>(previous); in InferLabelFromPrevious() local
186 Element* element = static_cast<Element*>(sibling); in InferLabelFromPrevious() local
200 Element* element = static_cast<Element*>(previous); in InferLabelFromPrevious() local
[all …]
/external/srec/portable/src/
DArrayList.c27 ESR_ReturnCode ArrayListAdd(ArrayList* self, void* element) in ArrayListAdd()
37 ESR_ReturnCode ArrayListInsertAt(ArrayList* self, size_t index, void* element) in ArrayListInsertAt()
47 ESR_ReturnCode ArrayListRemove(ArrayList* self, void* element) in ArrayListRemove()
77 ESR_ReturnCode ArrayListContains(ArrayList* self, void* element, ESR_BOOL* exists) in ArrayListContains()
97 ESR_ReturnCode ArrayListGet(ArrayList* self, size_t index, void** element) in ArrayListGet()
107 ESR_ReturnCode ArrayListSet(ArrayList* self, size_t index, void* element) in ArrayListSet()
DArrayListImpl.c74 static ESR_ReturnCode ArrayList_Insert_Internal(ArrayListImpl *impl, size_t index, void *element) in ArrayList_Insert_Internal()
96 ESR_ReturnCode ArrayList_Add(ArrayList* self, void* element) in ArrayList_Add()
103 ESR_ReturnCode ArrayList_InsertAt(ArrayList *self, size_t index, void *element) in ArrayList_InsertAt()
137 ESR_ReturnCode ArrayList_Remove(ArrayList* self, const void* element) in ArrayList_Remove()
170 ESR_ReturnCode ArrayList_Contains(ArrayList* self, const void* element, in ArrayList_Contains()
188 ESR_ReturnCode ArrayList_Get(ArrayList* self, size_t index, void** element) in ArrayList_Get()
198 ESR_ReturnCode ArrayList_Set(ArrayList* self, size_t index, void* element) in ArrayList_Set()
219 void* element; in ArrayList_Clone() local
/external/srec/shared/src/
DIntArrayList.c24 ESR_ReturnCode IntArrayListAdd(IntArrayList* self, int element) in IntArrayListAdd()
31 ESR_ReturnCode IntArrayListRemove(IntArrayList* self, int element) in IntArrayListRemove()
45 ESR_ReturnCode IntArrayListContains(IntArrayList* self, int element, ESR_BOOL* exists) in IntArrayListContains()
59 ESR_ReturnCode IntArrayListGet(IntArrayList* self, size_t index, int* element) in IntArrayListGet()
66 ESR_ReturnCode IntArrayListSet(IntArrayList* self, size_t index, int element) in IntArrayListSet()
DInt8ArrayList.c26 ESR_ReturnCode Int8ArrayListAdd(Int8ArrayList* self, asr_int8_t element) in Int8ArrayListAdd()
36 ESR_ReturnCode Int8ArrayListRemove(Int8ArrayList* self, asr_int8_t element) in Int8ArrayListRemove()
56 ESR_ReturnCode Int8ArrayListContains(Int8ArrayList* self, asr_int8_t element, ESR_BOOL* exists) in Int8ArrayListContains()
76 ESR_ReturnCode Int8ArrayListGet(Int8ArrayList* self, size_t index, asr_int8_t* element) in Int8ArrayListGet()
86 ESR_ReturnCode Int8ArrayListSet(Int8ArrayList* self, size_t index, asr_int8_t element) in Int8ArrayListSet()
/external/webkit/Source/WebCore/svg/
DSVGPathSegLinetoVertical.h31 SVGPathSegLinetoVertical(SVGPathElement* element, SVGPathSegRole role, float y) in SVGPathSegLinetoVertical()
50 …static PassRefPtr<SVGPathSegLinetoVerticalAbs> create(SVGPathElement* element, SVGPathSegRole role… in create()
56 SVGPathSegLinetoVerticalAbs(SVGPathElement* element, SVGPathSegRole role, float y) in SVGPathSegLinetoVerticalAbs()
67 …static PassRefPtr<SVGPathSegLinetoVerticalRel> create(SVGPathElement* element, SVGPathSegRole role… in create()
73 SVGPathSegLinetoVerticalRel(SVGPathElement* element, SVGPathSegRole role, float y) in SVGPathSegLinetoVerticalRel()
DSVGPathSegLinetoHorizontal.h31 SVGPathSegLinetoHorizontal(SVGPathElement* element, SVGPathSegRole role, float x) in SVGPathSegLinetoHorizontal()
50 …static PassRefPtr<SVGPathSegLinetoHorizontalAbs> create(SVGPathElement* element, SVGPathSegRole ro… in create()
56 SVGPathSegLinetoHorizontalAbs(SVGPathElement* element, SVGPathSegRole role, float x) in SVGPathSegLinetoHorizontalAbs()
67 …static PassRefPtr<SVGPathSegLinetoHorizontalRel> create(SVGPathElement* element, SVGPathSegRole ro… in create()
73 SVGPathSegLinetoHorizontalRel(SVGPathElement* element, SVGPathSegRole role, float x) in SVGPathSegLinetoHorizontalRel()
/external/webkit/Source/WebKit/chromium/public/
DWebInputElement.h46 WebInputElement(const WebInputElement& element) : WebFormControlElement(element) { } in WebInputElement()
53 void assign(const WebInputElement& element) { WebFormControlElement::assign(element); } in assign()
93 inline const WebInputElement* toWebInputElement(const WebElement* element) in toWebInputElement()
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
DMultisetSetCountUnconditionallyTester.java31 @Override void setCountCheckReturnValue(E element, int count) { in setCountCheckReturnValue()
36 @Override void setCountNoCheckReturnValue(E element, int count) { in setCountNoCheckReturnValue()
40 private int setCount(E element, int count) { in setCount()
/external/webkit/Source/WebCore/html/parser/
DHTMLFormattingElementList.cpp54 bool HTMLFormattingElementList::contains(Element* element) in contains()
59 HTMLFormattingElementList::Entry* HTMLFormattingElementList::find(Element* element) in find()
69 HTMLFormattingElementList::Bookmark HTMLFormattingElementList::bookmarkFor(Element* element) in bookmarkFor()
91 void HTMLFormattingElementList::append(Element* element) in append()
96 void HTMLFormattingElementList::remove(Element* element) in remove()
/external/webkit/Source/WebCore/bindings/js/
DJSPluginElementFunctions.cpp73 HTMLElement* element = jsHTMLElement->impl(); in pluginScriptObjectFromPluginViewBase() local
83 HTMLElement* element = jsHTMLElement->impl(); in pluginScriptObject() local
105 JSHTMLElement* element = static_cast<JSHTMLElement*>(asObject(slotBase)); in runtimeObjectPropertyGetter() local
113 …tySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot, JSHTMLElement* element) in runtimeObjectCustomGetOwnPropertySlot()
125 …tate* exec, const Identifier& propertyName, PropertyDescriptor& descriptor, JSHTMLElement* element) in runtimeObjectCustomGetOwnPropertyDescriptor()
141 …(ExecState* exec, const Identifier& propertyName, JSValue value, JSHTMLElement* element, PutProper… in runtimeObjectCustomPut()
154 JSHTMLElement* element = static_cast<JSHTMLElement*>(exec->callee()); in callPlugin() local
174 CallType runtimeObjectGetCallData(JSHTMLElement* element, CallData& callData) in runtimeObjectGetCallData()
/external/webkit/Source/WebCore/inspector/front-end/
DDrawer.js106 {element: this.element, end: {height: height}}, property
107 {element: this._mainElement, end: {bottom: height}}, property
108 …{element: this._mainStatusBar, start: {"padding-left": anchoredItems.offsetWidth - 1}, end: {"padd… property
109 {element: this._viewStatusBar, start: {opacity: 0}, end: {opacity: 1}} property
118 …animations.push({element: this._currentPanelCounters, start: {"padding-right": rightPadding}, end:… property
168 {element: this._mainElement, end: {bottom: 0}}, property
169 …{element: this._mainStatusBar, start: {"padding-left": 0}, end: {"padding-left": anchoredItems.off… property
170 {element: this._viewStatusBar, start: {opacity: 1}, end: {opacity: 0}} property
177 …animations.push({element: this._currentPanelCounters, start: {"padding-right": 0}, end: {"padding-… property
285 {element: this.element, end: {height: height}}, property
[all …]

12345678910>>...29