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

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLLinkElement.cpp59 static void parseSizes(const CharacterType* value, unsigned length, Vector<IntSize>& iconSizes) argument
92 iconSizes.append(IntSize(width, height));
110 iconSizes.clear();
115 iconSizes.append(IntSize(width, height));
125 void HTMLLinkElement::parseSizesAttribute(const AtomicString& value, Vector<IntSize>& iconSizes) argument
127 ASSERT(iconSizes.isEmpty());
131 parseSizes(value.characters8(), value.length(), iconSizes);
133 parseSizes(value.characters16(), value.length(), iconSizes);
438 const Vector<IntSize>& HTMLLinkElement::iconSizes() const function in class:blink::HTMLLinkElement

Completed in 117 milliseconds