Searched defs:index (Results 201 - 225 of 2240) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/bindings/js/
H A DJSUint32ArrayCustom.cpp36 void JSUint32Array::indexSetter(JSC::ExecState* exec, unsigned index, JSC::JSValue value) argument
38 impl()->set(index, static_cast<unsigned int>(value.toUInt32(exec)));
H A DJSUint8ArrayCustom.cpp36 void JSUint8Array::indexSetter(JSC::ExecState* exec, unsigned index, JSC::JSValue value) argument
38 impl()->set(index, static_cast<unsigned char>(value.toInt32(exec)));
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8ClipboardCustom.cpp58 int index = 0; local
59 for (HashSet<String>::const_iterator it = types.begin(); it != end; ++it, ++index)
60 result->Set(v8::Integer::New(index), v8String(*it));
H A DV8HTMLFormElementCustom.cpp44 v8::Handle<v8::Value> V8HTMLFormElement::indexedPropertyGetter(uint32_t index, const v8::AccessorInfo& info) argument
49 RefPtr<Node> formElement = form->elements()->item(index);
H A DV8HTMLSelectElementCustom.cpp49 v8::Handle<v8::Value> V8HTMLSelectElement::indexedPropertyGetter(uint32_t index, const v8::AccessorInfo& info) argument
52 RefPtr<Node> result = V8HTMLSelectElement::toNative(info.Holder())->item(index);
59 v8::Handle<v8::Value> V8HTMLSelectElement::indexedPropertySetter(uint32_t index, v8::Local<v8::Value> value, const v8::AccessorInfo& info) argument
63 return toOptionsCollectionSetter(index, value, select);
77 imp->remove(element->index());
H A DV8HistoryCustom.cpp92 bool V8History::indexedSecurityCheck(v8::Local<v8::Object> host, uint32_t index, v8::AccessType type, v8::Local<v8::Value>) argument
H A DV8NamedNodeMapCustom.cpp46 v8::Handle<v8::Value> V8NamedNodeMap::indexedPropertyGetter(uint32_t index, const v8::AccessorInfo& info) argument
50 RefPtr<Node> result = imp->item(index);
H A DV8ScriptProfileNodeCustom.cpp48 int index = 0; local
51 result->Set(v8::Integer::New(index++), toV8(iter->get()));
/external/webkit/Source/WebCore/css/
H A DCSSOMUtils.cpp73 unsigned index = 0; local
74 while (index < identifier.length()) {
75 UChar32 c = identifier.characterStartingAt(index);
76 index += U16_LENGTH(c);
108 unsigned index = 0; local
109 while (index < string.length()) {
110 UChar32 c = string.characterStartingAt(index);
111 index += U16_LENGTH(c);
H A DCSSRuleList.cpp59 CSSRule* CSSRuleList::item(unsigned index) argument
62 StyleBase* rule = m_list->item(index);
67 if (index < m_lstCSSRules.size())
68 return m_lstCSSRules[index].get();
72 void CSSRuleList::deleteRule(unsigned index) argument
76 if (index >= m_lstCSSRules.size()) {
81 if (m_lstCSSRules[index]->isKeyframeRule()) {
82 if (CSSMutableStyleDeclaration* style = static_cast<WebKitCSSKeyframeRule*>(m_lstCSSRules[index].get())->style())
86 m_lstCSSRules[index]->setParent(0);
87 m_lstCSSRules.remove(index);
101 insertRule(CSSRule* rule, unsigned index) argument
[all...]
H A DCSSValueList.h51 CSSValue* itemWithoutBoundsCheck(unsigned index) { return m_values[index].get(); } argument
H A DStyleSheetList.cpp53 StyleSheet* StyleSheetList::item(unsigned index) argument
55 return index < length() ? m_sheets[index].get() : 0;
/external/webkit/Source/WebCore/fileapi/
H A DFile.cpp39 int index = path.reverseFind('.'); local
40 if (index != -1)
41 type = MIMETypeRegistry::getMIMETypeForExtension(path.substring(index + 1));
/external/webkit/Source/WebCore/html/
H A DHTMLOptionsCollection.cpp45 void HTMLOptionsCollection::add(PassRefPtr<HTMLOptionElement> element, int index, ExceptionCode &ec) argument
54 if (index < -1) {
62 if (index == -1 || unsigned(index) >= length())
65 select->add(newOption, static_cast<HTMLOptionElement*>(item(index)), ec);
70 void HTMLOptionsCollection::remove(int index) argument
72 static_cast<HTMLSelectElement*>(base())->remove(index);
80 void HTMLOptionsCollection::setSelectedIndex(int index) argument
82 static_cast<HTMLSelectElement*>(base())->setSelectedIndex(index);
/external/webkit/Source/WebCore/html/canvas/
H A DCanvasPixelArray.h49 void set(unsigned index, double value) argument
51 m_data->set(index, value);
54 void set(unsigned index, unsigned char value) argument
56 m_data->set(index, value);
59 bool get(unsigned index, unsigned char& result) const argument
61 return m_data->get(index, result);
64 unsigned char get(unsigned index) const
66 return m_data->get(index);
H A DInt32Array.h42 void set(unsigned index, double value) { IntegralTypedArrayBase<int>::set(index, value); } argument
H A DInt8Array.h44 void set(unsigned index, double value) { IntegralTypedArrayBase<signed char>::set(index, value); } argument
H A DUint16Array.h44 void set(unsigned index, double value) { IntegralTypedArrayBase<unsigned short>::set(index, value); } argument
H A DUint32Array.h44 void set(unsigned index, double value) { IntegralTypedArrayBase<unsigned int>::set(index, value); } argument
H A DUint8Array.h44 void set(unsigned index, double value) { IntegralTypedArrayBase<unsigned char>::set(index, value); } argument
/external/webkit/Source/WebCore/html/parser/
H A DHTMLFormattingElementList.cpp61 size_t index = m_entries.reverseFind(element); local
62 if (index != notFound) {
64 return &m_entries[index];
71 size_t index = m_entries.reverseFind(element); local
72 ASSERT(index != notFound);
73 return Bookmark(&at(index));
85 size_t index = bookmark.mark() - first(); local
86 ASSERT(index < size());
87 m_entries.insert(index + 1, newElement);
98 size_t index
[all...]
/external/webkit/Source/WebCore/page/
H A DWebKitAnimationList.cpp49 WebKitAnimation* WebKitAnimationList::item(unsigned index) argument
51 if (index < m_animations.size())
52 return m_animations[index].get();
56 void WebKitAnimationList::deleteAnimation(unsigned index) argument
58 if (index >= m_animations.size())
61 m_animations.remove(index);
69 unsigned WebKitAnimationList::insertAnimation(RefPtr<WebKitAnimation> animation, unsigned index) argument
74 if (index > m_animations.size())
77 m_animations.insert(index, animation);
78 return index;
[all...]
/external/webkit/Source/WebCore/platform/
H A DContextMenu.h65 ContextMenuItem* itemAtIndex(unsigned index) { return &m_items[index]; } argument
/external/webkit/Source/WebCore/platform/brew/
H A DPopupMenuBrew.cpp54 void PopupMenuBrew::show(const IntRect& rect, FrameView* view, int index) argument
61 chromeClient->createSelectPopup(m_popupClient, index, rect);
/external/webkit/Source/WebCore/platform/chromium/
H A DDataTransferItemsChromium.cpp60 PassRefPtr<DataTransferItem> DataTransferItemsChromium::item(unsigned long index) const
62 if (m_owner->policy() == ClipboardNumb || index >= length())
64 return m_items[index];
67 void DataTransferItemsChromium::deleteItem(unsigned long index, ExceptionCode& ec) argument
74 if (index >= length())
77 m_items.remove(index);

Completed in 970 milliseconds

1234567891011>>