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

/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLSrcsetParser.cpp52 struct DescriptorToken { struct in namespace:blink
56 DescriptorToken(unsigned start, unsigned length) function in struct:blink::DescriptorToken
81 static void appendDescriptorAndReset(const CharType* attributeStart, const CharType*& descriptorStart, const CharType* position, Vector<DescriptorToken>& descriptors)
84 descriptors.append(DescriptorToken(descriptorStart - attributeStart, position - descriptorStart));
107 Vector<DescriptorToken>& descriptors)
162 static bool parseDescriptors(const CharType* attribute, Vector<DescriptorToken>& descriptors, DescriptorParsingResult& result)
164 for (Vector<DescriptorToken>::iterator it = descriptors.begin(); it != descriptors.end(); ++it) {
197 static bool parseDescriptors(const String& attribute, Vector<DescriptorToken>& descriptors, DescriptorParsingResult& result)
199 // FIXME: See if StringView can't be extended to replace DescriptorToken here.
241 Vector<DescriptorToken> descriptorToken
[all...]

Completed in 84 milliseconds