Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/html/parser/
DHTMLFormattingElementList.cpp67 size_t index = m_entries.reverseFind(element); in find()
77 size_t index = m_entries.reverseFind(element); in bookmarkFor()
105 size_t index = m_entries.reverseFind(element); in remove()
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
DDOMFilePath.cpp57 int index = path.reverseFind(DOMFilePath::separator); in getName()
65 int index = path.reverseFind(DOMFilePath::separator); in getDirectory()
/external/chromium_org/third_party/WebKit/Source/wtf/text/
DStringImpl.h389 size_t reverseFind(UChar, unsigned index = UINT_MAX);
390 size_t reverseFind(StringImpl*, unsigned index = UINT_MAX);
395 …(StringImpl* str, bool caseSensitive = true) { return (caseSensitive ? reverseFind(str, 0) : rever…
600 inline size_t reverseFind(const CharacterType* characters, unsigned length, CharacterType matchChar…
613 ALWAYS_INLINE size_t reverseFind(const UChar* characters, unsigned length, LChar matchCharacter, un…
615 return reverseFind(characters, length, static_cast<UChar>(matchCharacter), index);
618 inline size_t reverseFind(const LChar* characters, unsigned length, UChar matchCharacter, unsigned …
622 return reverseFind(characters, length, static_cast<LChar>(matchCharacter), index);
DWTFString.h220 size_t reverseFind(UChar c, unsigned start = UINT_MAX) const
221 { return m_impl ? m_impl->reverseFind(c, start) : kNotFound; }
222 size_t reverseFind(const String& str, unsigned start = UINT_MAX) const
223 { return m_impl ? m_impl->reverseFind(str.impl(), start) : kNotFound; }
238 size_t reverseFind(const String& str, unsigned start, bool caseSensitive) const in reverseFind() function
239 { return caseSensitive ? reverseFind(str, start) : reverseFindIgnoringCase(str, start); } in reverseFind()
692 using WTF::reverseFind;
DStringImpl.cpp1367 size_t StringImpl::reverseFind(UChar c, unsigned index) in reverseFind() function in WTF::StringImpl
1370 return WTF::reverseFind(characters8(), m_length, c, index); in reverseFind()
1371 return WTF::reverseFind(characters16(), m_length, c, index); in reverseFind()
1401 size_t StringImpl::reverseFind(StringImpl* matchString, unsigned index) in reverseFind() function in WTF::StringImpl
1414 return WTF::reverseFind(characters8(), ourLength, (*matchString)[0], index); in reverseFind()
1415 return WTF::reverseFind(characters16(), ourLength, (*matchString)[0], index); in reverseFind()
/external/chromium_org/third_party/WebKit/Source/platform/
DMIMETypeFromURL.cpp53 String extension = decodedPath.substring(decodedPath.reverseFind('.') + 1); in mimeTypeFromURL()
DMIMETypeRegistry.cpp55 int pos = path.reverseFind('.'); in getMIMETypeForPath()
/external/chromium_org/third_party/WebKit/Source/platform/weborigin/
DDatabaseIdentifier.cpp59 size_t separator2 = databaseIdentifier.reverseFind(separatorCharacter); in createSecurityOriginFromDatabaseIdentifier()
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DContentSearchUtils.cpp123 pos = content.reverseFind(name, pos); in findMagicComment()
DInspectorDOMAgent.cpp1016 bool endTagFound = whitespaceTrimmedQuery.reverseFind('>') + 1 == queryLength; in performSearch()
1018 bool endQuoteFound = whitespaceTrimmedQuery.reverseFind('"') + 1 == queryLength; in performSearch()
/external/chromium_org/third_party/WebKit/Source/platform/text/
DLocaleWin.cpp63 size_t lastSeparator = name.reverseFind('-'); in removeLastComponent()
454 size_t pos = format.reverseFind(builder.toString()); in shortTimeFormat()
DLocaleToScriptMapping.cpp393 size_t pos = canonicalLocale.reverseFind('_'); in localeToScriptCodeForFontSelection()
/external/chromium_org/third_party/WebKit/Source/core/fileapi/
DFile.cpp43 int index = name.reverseFind('.'); in getContentTypeFromFileName()
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
DBisonCSSParser-in.cpp1381 size_t index = m_floatingSelectors.reverseFind(selector); in sinkFloatingSelector()
1398 size_t index = m_floatingSelectorVectors.reverseFind(selectorVector); in sinkFloatingSelectorVector()
1415 size_t index = m_floatingValueLists.reverseFind(list); in sinkFloatingValueList()
1440 size_t index = m_floatingFunctions.reverseFind(function); in sinkFloatingFunction()
1450 size_t index = m_floatingFunctions.reverseFind(value.function); in sinkFloatingValue()
/external/chromium_org/third_party/WebKit/Source/core/clipboard/
DDataTransfer.cpp302 int extensionIndex = filename.reverseFind('.'); in writeImageToDataObject()
/external/chromium_org/third_party/WebKit/Source/web/
DFrameLoaderClientImpl.cpp697 int extensionPos = filename.reverseFind('.'); in objectContentType()
/external/chromium_org/third_party/WebKit/Source/core/xml/
DXPathFunctions.cpp621 size_t index = langValue.reverseFind('-'); in evaluate()
/external/chromium_org/third_party/WebKit/Source/wtf/
DVector.h659 template<typename U> size_t reverseFind(const U&) const;
839 size_t Vector<T, inlineCapacity, Allocator>::reverseFind(const U& value) const
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DGraphicsLayer.cpp238 m_parent->m_children.remove(m_parent->m_children.reverseFind(this)); in removeFromParent()
/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLTextFormControlElement.cpp923 …ing(0, isPivotNode ? pivotPosition.offsetInContainerNode() : textNode->length()).reverseFind('\n'); in startOfSentence()