Searched refs:reverseFind (Results 1 - 20 of 20) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/
H A DMIMETypeFromURL.cpp53 String extension = decodedPath.substring(decodedPath.reverseFind('.') + 1);
H A DMIMETypeRegistry.cpp55 int pos = path.reverseFind('.');
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DDOMFilePath.cpp57 int index = path.reverseFind(DOMFilePath::separator);
65 int index = path.reverseFind(DOMFilePath::separator);
/external/chromium_org/third_party/WebKit/Source/platform/weborigin/
H A DDatabaseIdentifier.cpp59 size_t separator2 = databaseIdentifier.reverseFind(separatorCharacter);
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLFormattingElementList.cpp67 size_t index = m_entries.reverseFind(element);
77 size_t index = m_entries.reverseFind(element);
105 size_t index = m_entries.reverseFind(element);
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringImpl.h389 size_t reverseFind(UChar, unsigned index = UINT_MAX);
390 size_t reverseFind(StringImpl*, unsigned index = UINT_MAX);
395 bool startsWith(StringImpl* str, bool caseSensitive = true) { return (caseSensitive ? reverseFind(str, 0) : reverseFindIgnoringCase(str, 0)) == 0; }
600 inline size_t reverseFind(const CharacterType* characters, unsigned length, CharacterType matchCharacter, unsigned index = UINT_MAX)
613 ALWAYS_INLINE size_t reverseFind(const UChar* characters, unsigned length, LChar matchCharacter, unsigned index = UINT_MAX)
615 return reverseFind(characters, length, static_cast<UChar>(matchCharacter), index);
618 inline size_t reverseFind(const LChar* characters, unsigned length, UChar matchCharacter, unsigned index = UINT_MAX)
622 return reverseFind(characters, length, static_cast<LChar>(matchCharacter), index);
H A DWTFString.h220 size_t reverseFind(UChar c, unsigned start = UINT_MAX) const function in class:WTF::String
221 { return m_impl ? m_impl->reverseFind(c, start) : kNotFound; }
222 size_t reverseFind(const String& str, unsigned start = UINT_MAX) const function in class:WTF::String
223 { return m_impl ? m_impl->reverseFind(str.impl(), start) : kNotFound; }
233 // Wrappers for find & reverseFind adding dynamic sensitivity check.
238 size_t reverseFind(const String& str, unsigned start, bool caseSensitive) const function in class:WTF::String
239 { return caseSensitive ? reverseFind(str, start) : reverseFindIgnoringCase(str, start); }
692 using WTF::reverseFind;
H A DStringImpl.cpp1367 size_t StringImpl::reverseFind(UChar c, unsigned index) function in class:WTF::StringImpl
1370 return WTF::reverseFind(characters8(), m_length, c, index);
1371 return WTF::reverseFind(characters16(), m_length, c, index);
1401 size_t StringImpl::reverseFind(StringImpl* matchString, unsigned index) function in class:WTF::StringImpl
1414 return WTF::reverseFind(characters8(), ourLength, (*matchString)[0], index);
1415 return WTF::reverseFind(characters16(), ourLength, (*matchString)[0], index);
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DLocaleWin.cpp63 size_t lastSeparator = name.reverseFind('-');
454 size_t pos = format.reverseFind(builder.toString());
H A DLocaleToScriptMapping.cpp393 size_t pos = canonicalLocale.reverseFind('_');
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DContentSearchUtils.cpp123 pos = content.reverseFind(name, pos);
H A DInspectorDOMAgent.cpp1016 bool endTagFound = whitespaceTrimmedQuery.reverseFind('>') + 1 == queryLength;
1018 bool endQuoteFound = whitespaceTrimmedQuery.reverseFind('"') + 1 == queryLength;
/external/chromium_org/third_party/WebKit/Source/core/fileapi/
H A DFile.cpp43 int index = name.reverseFind('.');
/external/chromium_org/third_party/WebKit/Source/core/clipboard/
H A DDataTransfer.cpp302 int extensionIndex = filename.reverseFind('.');
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DBisonCSSParser-in.cpp1381 size_t index = m_floatingSelectors.reverseFind(selector);
1398 size_t index = m_floatingSelectorVectors.reverseFind(selectorVector);
1415 size_t index = m_floatingValueLists.reverseFind(list);
1440 size_t index = m_floatingFunctions.reverseFind(function);
1450 size_t index = m_floatingFunctions.reverseFind(value.function);
/external/chromium_org/third_party/WebKit/Source/web/
H A DFrameLoaderClientImpl.cpp697 int extensionPos = filename.reverseFind('.');
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DVector.h659 template<typename U> size_t reverseFind(const U&) const;
839 size_t Vector<T, inlineCapacity, Allocator>::reverseFind(const U& value) const function in class:WTF::Vector::Vector
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLTextFormControlElement.cpp923 size_t lastLineBreak = textNode->data().substring(0, isPivotNode ? pivotPosition.offsetInContainerNode() : textNode->length()).reverseFind('\n');
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathFunctions.cpp621 size_t index = langValue.reverseFind('-');
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DGraphicsLayer.cpp237 // We use reverseFind so that removeAllChildren() isn't n^2.
238 m_parent->m_children.remove(m_parent->m_children.reverseFind(this));

Completed in 1904 milliseconds