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

12

/external/webkit/Source/WebCore/platform/chromium/
H A DFileSystemChromiumLinux.cpp38 return path.substring(path.reverseFind('/') + 1);
H A DMIMETypeRegistryChromium.cpp78 int pos = path.reverseFind('.');
/external/webkit/Source/WebCore/html/parser/
H A DHTMLFormattingElementList.cpp61 size_t index = m_entries.reverseFind(element);
71 size_t index = m_entries.reverseFind(element);
98 size_t index = m_entries.reverseFind(element);
/external/webkit/Source/WebCore/svg/
H A DSVGURIReference.cpp49 size_t end = url.reverseFind(')');
/external/webkit/Source/WebCore/fileapi/
H A DDOMFilePath.cpp62 int index = path.reverseFind(DOMFilePath::separator);
70 int index = path.reverseFind(DOMFilePath::separator);
H A DFile.cpp39 int index = path.reverseFind('.');
/external/webkit/Source/JavaScriptCore/runtime/
H A DUString.h105 size_t reverseFind(UChar c, unsigned start = UINT_MAX) const function in class:JSC::UString
106 { return m_impl ? m_impl->reverseFind(c, start) : notFound; }
107 size_t reverseFind(const UString& str, unsigned start = UINT_MAX) const function in class:JSC::UString
108 { return m_impl ? m_impl->reverseFind(str.impl(), start) : notFound; }
/external/webkit/Source/WebCore/platform/android/
H A DFileSystemAndroid.cpp97 return fsPath.substring(fsPath.reverseFind('/') + 1);
/external/webkit/Source/WebCore/platform/brew/
H A DFileSystemBrew.cpp125 int lastDivPos = canonPath.reverseFind('/');
138 int lastDivPos = path.reverseFind('/');
142 lastDivPos = path.reverseFind('/', lastDivPos);
178 return path.substring(path.reverseFind('/') + 1);
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DImageSourceCGWin.cpp42 if (int dotLocation = type.reverseFind('.'))
/external/webkit/Source/JavaScriptCore/wtf/text/
H A DWTFString.h174 size_t reverseFind(UChar c, unsigned start = UINT_MAX) const function in class:WTF::String
175 { return m_impl ? m_impl->reverseFind(c, start) : notFound; }
176 size_t reverseFind(const String& str, unsigned start = UINT_MAX) const function in class:WTF::String
177 { return m_impl ? m_impl->reverseFind(str.impl(), start) : notFound; }
187 // Wrappers for find & reverseFind adding dynamic sensitivity check.
192 size_t reverseFind(const String& str, unsigned start, bool caseSensitive) const function in class:WTF::String
193 { return caseSensitive ? reverseFind(str, start) : reverseFindIgnoringCase(str, start); }
444 inline size_t reverseFind(const UChar* characters, unsigned length, UChar matchCharacter, unsigned index = UINT_MAX) function in namespace:WTF
529 using WTF::reverseFind;
H A DStringImpl.h304 size_t reverseFind(UChar, unsigned index = UINT_MAX);
305 size_t reverseFind(StringImpl*, unsigned index = UINT_MAX);
308 bool startsWith(StringImpl* str, bool caseSensitive = true) { return (caseSensitive ? reverseFind(str, 0) : reverseFindIgnoringCase(str, 0)) == 0; }
H A DStringImpl.cpp690 size_t StringImpl::reverseFind(UChar c, unsigned index) function in class:WTF::StringImpl
692 return WTF::reverseFind(m_data, m_length, c, index);
695 size_t StringImpl::reverseFind(StringImpl* matchString, unsigned index) function in class:WTF::StringImpl
706 return WTF::reverseFind(characters(), length(), matchString->characters()[0], index);
/external/webkit/Source/WebCore/platform/network/
H A DCredentialStorage.cpp78 size_t index = directoryURL.reverseFind('/');
134 size_t index = directoryURL.reverseFind('/', directoryURL.length() - 2);
/external/webkit/Source/WebCore/platform/wince/
H A DFileSystemWinCE.cpp44 size_t positionSlash = path.reverseFind('/', start);
45 size_t positionBackslash = path.reverseFind('\\', start);
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DWebResponse.cpp138 size_t extensionPos = path.reverseFind('.');
/external/webkit/Source/WebCore/platform/network/win/
H A DResourceHandleWin.cpp374 int dotPos = fileName.reverseFind('.');
375 int slashPos = fileName.reverseFind('/');
/external/webkit/Source/WebCore/platform/
H A DLinkHash.cpp105 size_t previousSlash = slash ? reverseFind(path.data(), path.size(), '/', slash - 1) : notFound;
H A DMIMETypeRegistry.cpp462 size_t pos = path.reverseFind('.');
/external/webkit/Source/WebCore/platform/posix/
H A DFileSystemPOSIX.cpp220 return path.substring(path.reverseFind('/') + 1);
/external/webkit/Source/WebCore/plugins/win/
H A DPluginPackageWin.cpp248 String path = m_path.substring(0, m_path.reverseFind('\\'));
/external/webkit/Source/WebCore/wml/
H A DWMLPageState.cpp164 size_t index = currentPath.reverseFind('/');
/external/webkit/Source/WebKit2/UIProcess/Plugins/
H A DPluginInfoStore.cpp178 int extensionPos = filename.reverseFind('.');
/external/webkit/Source/WebCore/plugins/android/
H A DPluginPackageAndroid.cpp308 int last_slash = m_path.reverseFind('/');
/external/webkit/Source/WebCore/loader/
H A DMainResourceLoader.cpp338 size_t extensionPos = filename.reverseFind('.');

Completed in 327 milliseconds

12