Searched defs:iconSizes (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLLinkElement.cpp58 static void parseSizes(const CharacterType* value, unsigned length, Vector<IntSize>& iconSizes) argument
91 iconSizes.append(IntSize(width, height));
109 iconSizes.clear();
114 iconSizes.append(IntSize(width, height));
124 void HTMLLinkElement::parseSizesAttribute(const AtomicString& value, Vector<IntSize>& iconSizes) argument
126 ASSERT(iconSizes.isEmpty());
130 parseSizes(value.characters8(), value.length(), iconSizes);
132 parseSizes(value.characters16(), value.length(), iconSizes);
428 const Vector<IntSize>& HTMLLinkElement::iconSizes() const function in class:WebCore::HTMLLinkElement

Completed in 91 milliseconds