HomeSort by relevance Sort by last modified time
    Searched full:reversefind (Results 1 - 25 of 35) sorted by null

1 2

  /external/lzma/CPP/Windows/
FileName.cpp 16 if (dirPath.ReverseFind(kDirDelimiter) != dirPath.Length() - 1)
25 if (dirPath.ReverseFind(wchar_t(kDirDelimiter)) != dirPath.Length() - 1)
35 int index = fullName.ReverseFind(kExtensionDelimiter);
FileDir.cpp 282 int pos = pathName.ReverseFind(TEXT(CHAR_PATH_SEPARATOR));
304 pos = pathName.ReverseFind(TEXT(CHAR_PATH_SEPARATOR));
328 int pos = pathName.ReverseFind(WCHAR_PATH_SEPARATOR);
350 pos = pathName.ReverseFind(WCHAR_PATH_SEPARATOR);
477 fileNamePartStartIndex = resultPath.ReverseFind(WCHAR_PATH_SEPARATOR);
  /external/lzma/CPP/7zip/Common/
FilePathAutoRename.cpp 28 int dotPos = fullProcessedPath.ReverseFind(L'.');
30 int slashPos = fullProcessedPath.ReverseFind(L'/');
32 int slash1Pos = fullProcessedPath.ReverseFind(L'\\');
  /external/lzma/CPP/7zip/UI/Common/
ArchiveName.cpp 39 int dotPos = resultName.ReverseFind('.');
43 if (archiveName2.ReverseFind('.') < 0)
DefaultName.cpp 19 int dotPos = fileName.ReverseFind(L'.');
Update.h 34 int dotPos = Name.ReverseFind(L'.');
Extract.cpp 168 int pos = arcPath.ReverseFind(L'.');
176 pos = s.ReverseFind(L'.');
LoadCodecs.cpp 41 int pos = path.ReverseFind(TEXT(CHAR_PATH_SEPARATOR));
458 int slashPos1 = arcPath.ReverseFind(WCHAR_PATH_SEPARATOR);
459 int slashPos2 = arcPath.ReverseFind(L'.');
460 int dotPos = arcPath.ReverseFind(L'.');
  /external/chromium_org/ash/display/
display_pref_util.h 31 bool ReverseFind(const std::map<T, std::string>* map,
display_layout.cc 42 if (ReverseFind(GetPositionToStringMap(), position, field))
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLFormattingElementList.cpp 67 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/core/platform/
MIMETypeFromURL.cpp 53 String extension = decodedPath.substring(decodedPath.reverseFind('.') + 1);
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
DOMFilePath.cpp 59 int index = path.reverseFind(DOMFilePath::separator);
67 int index = path.reverseFind(DOMFilePath::separator);
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
StringImpl.h 380 size_t reverseFind(UChar, unsigned index = UINT_MAX);
381 size_t reverseFind(StringImpl*, unsigned index = UINT_MAX);
386 bool startsWith(StringImpl* str, bool caseSensitive = true) { return (caseSensitive ? reverseFind(str, 0) : reverseFindIgnoringCase(str, 0)) == 0; }
590 inline size_t reverseFind(const CharacterType* characters, unsigned length, CharacterType matchCharacter, unsigned index = UINT_MAX)
603 ALWAYS_INLINE size_t reverseFind(const UChar* characters, unsigned length, LChar matchCharacter, unsigned index = UINT_MAX)
605 return reverseFind(characters, length, static_cast<UChar>(matchCharacter), index);
608 inline size_t reverseFind(const LChar* characters, unsigned length, UChar matchCharacter, unsigned index = UINT_MAX)
612 return reverseFind(characters, length, static_cast<LChar>(matchCharacter), index);
WTFString.h 238 size_t reverseFind(UChar c, unsigned start = UINT_MAX) const
239 { return m_impl ? m_impl->reverseFind(c, start) : notFound; }
240 size_t reverseFind(const String& str, unsigned start = UINT_MAX) const
241 { return m_impl ? m_impl->reverseFind(str.impl(), start) : notFound; }
251 // Wrappers for find & reverseFind adding dynamic sensitivity check.
256 size_t reverseFind(const String& str, unsigned start, bool caseSensitive) const
257 { return caseSensitive ? reverseFind(str, start) : reverseFindIgnoringCase(str, start); }
717 using WTF::reverseFind;
StringImpl.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
File.cpp 43 int index = name.reverseFind('.');
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
ContentSearchUtils.cpp 171 size_t lastStarIndex = match.reverseFind('*');
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/
MIMETypeRegistryChromium.cpp 55 int pos = path.reverseFind('.');
  /external/chromium_org/third_party/WebKit/Source/weborigin/
DatabaseIdentifier.cpp 59 size_t separator2 = databaseIdentifier.reverseFind(separatorCharacter);
  /external/lzma/CPP/7zip/Archive/7z/
7zUpdate.cpp 57 int slashPos = name.ReverseFind(L'/');
59 int slash1Pos = name.ReverseFind(L'\\');
68 int dotPos = Name.ReverseFind(L'.');
261 int dotPos = ui.Name.ReverseFind(L'.');
831 int dotPos = ui.Name.ReverseFind(L'.');
  /external/chromium_org/third_party/WebKit/Source/core/platform/text/win/
LocaleWin.cpp 66 size_t lastSeparator = name.reverseFind('-');
453 size_t pos = format.reverseFind(builder.toString());
  /external/chromium_org/third_party/WebKit/Source/core/platform/text/
LocaleToScriptMappingDefault.cpp 393 size_t pos = canonicalLocale.reverseFind('_');
  /external/lzma/CPP/7zip/Archive/
SplitHandler.cpp 162 int dotPos = name.ReverseFind('.');
  /external/chromium_org/chrome/browser/chromeos/display/
display_preferences.cc 231 if (ash::ReverseFind(GetDisplayPowerStateToStringMap(), state, field))

Completed in 2190 milliseconds

1 2