HomeSort by relevance Sort by last modified time
    Searched refs:reverseFind (Results 1 - 25 of 39) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/chromium/
FileSystemChromiumLinux.cpp 38 return path.substring(path.reverseFind('/') + 1);
MIMETypeRegistryChromium.cpp 78 int pos = path.reverseFind('.');
  /external/webkit/Source/WebCore/html/parser/
HTMLFormattingElementList.cpp 61 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/
SVGURIReference.cpp 49 size_t end = url.reverseFind(')');
  /external/webkit/Source/WebCore/fileapi/
DOMFilePath.cpp 62 int index = path.reverseFind(DOMFilePath::separator);
70 int index = path.reverseFind(DOMFilePath::separator);
File.cpp 39 int index = path.reverseFind('.');
  /external/webkit/Source/JavaScriptCore/runtime/
UString.h 105 size_t reverseFind(UChar c, unsigned start = UINT_MAX) const
106 { return m_impl ? m_impl->reverseFind(c, start) : notFound; }
107 size_t reverseFind(const UString& str, unsigned start = UINT_MAX) const
108 { return m_impl ? m_impl->reverseFind(str.impl(), start) : notFound; }
  /external/webkit/Source/WebCore/platform/android/
FileSystemAndroid.cpp 97 return fsPath.substring(fsPath.reverseFind('/') + 1);
  /external/webkit/Source/WebCore/platform/brew/
FileSystemBrew.cpp 125 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/
ImageSourceCGWin.cpp 42 if (int dotLocation = type.reverseFind('.'))
  /external/webkit/Source/JavaScriptCore/wtf/text/
WTFString.h 174 size_t reverseFind(UChar c, unsigned start = UINT_MAX) const
175 { return m_impl ? m_impl->reverseFind(c, start) : notFound; }
176 size_t reverseFind(const String& str, unsigned start = UINT_MAX) const
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
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)
529 using WTF::reverseFind;
StringImpl.h 304 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; }
StringImpl.cpp 690 size_t StringImpl::reverseFind(UChar c, unsigned index)
692 return WTF::reverseFind(m_data, m_length, c, index);
695 size_t StringImpl::reverseFind(StringImpl* matchString, unsigned index)
706 return WTF::reverseFind(characters(), length(), matchString->characters()[0], index);
  /external/webkit/Source/WebCore/platform/network/
CredentialStorage.cpp 78 size_t index = directoryURL.reverseFind('/');
134 size_t index = directoryURL.reverseFind('/', directoryURL.length() - 2);
  /external/webkit/Source/WebCore/platform/wince/
FileSystemWinCE.cpp 44 size_t positionSlash = path.reverseFind('/', start);
45 size_t positionBackslash = path.reverseFind('\\', start);
  /external/webkit/Source/WebKit/android/WebCoreSupport/
WebResponse.cpp 138 size_t extensionPos = path.reverseFind('.');
  /external/webkit/Source/WebCore/platform/network/win/
ResourceHandleWin.cpp 374 int dotPos = fileName.reverseFind('.');
375 int slashPos = fileName.reverseFind('/');
  /external/webkit/Source/WebCore/platform/
LinkHash.cpp 105 size_t previousSlash = slash ? reverseFind(path.data(), path.size(), '/', slash - 1) : notFound;
MIMETypeRegistry.cpp 462 size_t pos = path.reverseFind('.');
  /external/webkit/Source/WebCore/platform/posix/
FileSystemPOSIX.cpp 220 return path.substring(path.reverseFind('/') + 1);
  /external/webkit/Source/WebCore/plugins/win/
PluginPackageWin.cpp 248 String path = m_path.substring(0, m_path.reverseFind('\\'));
  /external/webkit/Source/WebCore/wml/
WMLPageState.cpp 164 size_t index = currentPath.reverseFind('/');
  /external/webkit/Source/WebKit2/UIProcess/Plugins/
PluginInfoStore.cpp 178 int extensionPos = filename.reverseFind('.');
  /external/webkit/Source/WebCore/plugins/android/
PluginPackageAndroid.cpp 308 int last_slash = m_path.reverseFind('/');
  /external/webkit/Source/WebCore/loader/
MainResourceLoader.cpp 338 size_t extensionPos = filename.reverseFind('.');

Completed in 916 milliseconds

1 2