Symbol: FindLast
headers/os/support/String.h
220
int32 FindLast(const BString& string) const;
headers/os/support/String.h
221
int32 FindLast(const char* string) const;
headers/os/support/String.h
222
int32 FindLast(const BString& string,
headers/os/support/String.h
224
int32 FindLast(const char* string,
headers/os/support/String.h
226
int32 FindLast(char c) const;
headers/os/support/String.h
227
int32 FindLast(char c, int32 beforeOffset) const;
src/add-ons/input_server/devices/keyboard/KeyboardInputDevice.cpp
73
int32 slash = string.FindLast("/");
src/add-ons/input_server/devices/keyboard/KeyboardInputDevice.cpp
77
int32 previousSlash = string.FindLast("/", slash);
src/add-ons/input_server/devices/mouse/MouseInputDevice.cpp
278
int32 slash = string.FindLast("/");
src/add-ons/input_server/devices/mouse/MouseInputDevice.cpp
284
int32 previousSlash = string.FindLast("/", slash);
src/add-ons/input_server/devices/tablet/TabletInputDevice.cpp
219
int32 slash = string.FindLast("/");
src/add-ons/input_server/devices/tablet/TabletInputDevice.cpp
223
int32 previousSlash = string.FindLast("/", slash);
src/add-ons/kernel/file_systems/packagefs/util/TwoKeyAVLTree.h
307
Value* FindLast(const PrimaryKey& key,
src/add-ons/kernel/file_systems/ramfs/TwoKeyAVLTree.h
254
Value *FindLast(const PrimaryKey &key, Iterator *iterator = NULL);
src/add-ons/mail_daemon/inbound_protocols/pop3/POP3.cpp
856
int32 index = result.FindLast(" ");
src/add-ons/print/transports/hp_jetdirect/HPJetDirectTransport.cpp
44
int32 index = address.FindLast(':');
src/apps/aboutsystem/AboutSystem.cpp
1723
int32 licensePart3 = haikuLicense.FindLast("<");
src/apps/aboutsystem/AboutSystem.cpp
1724
int32 licensePart4 = haikuLicense.FindLast(">");
src/apps/aboutsystem/Utilities.cpp
58
int32 urlEnd = namedURL.FindLast('>');
src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp
1995
int32 index = sourcePath.FindLast('/');
src/apps/devices/DeviceACPI.cpp
115
nodeACPIHid.Remove(0, nodeACPIHid.FindLast("_") + 1);
src/apps/devices/DeviceACPI.cpp
84
nodeACPIPath.Remove(0, nodeACPIPath.FindLast(".") + 1);
src/apps/expander/ExpanderRules.cpp
86
int32 extensionPosition = fileName.FindLast(rule->FilenameExtension());
src/apps/haikudepot/model/DeskbarLink.cpp
83
int32 lastSlash = fLink.FindLast('/');
src/apps/haikudepot/packagemanagement/OpenPackageProcess.cpp
185
int32 lastPathSeparator = target.FindLast('/');
src/apps/haikudepot/util/StorageUtils.cpp
447
int32 lastDot = result.FindLast(".");
src/apps/installer/UnzipEngine.cpp
264
int leafPos = itemPath.FindLast('/');
src/apps/installer/UnzipEngine.cpp
312
int pos = line.FindLast(" -> ");
src/apps/installer/UnzipEngine.cpp
319
pos = itemPath.FindLast('/');
src/apps/mediaconverter/MediaConverterApp.cpp
201
int32 extIndex = name.FindLast('.');
src/apps/mediaplayer/playlist/FilePlaylistItem.cpp
370
int32 extension = nameWithoutExtension.FindLast('.');
src/apps/mediaplayer/playlist/FilePlaylistItem.cpp
392
int32 pos = nameString.FindLast('.');
src/apps/mediaplayer/playlist/Playlist.cpp
822
int32 periodPos = path.FindLast('.');
src/apps/mediaplayer/playlist/Playlist.cpp
823
if (periodPos <= path.FindLast('/'))
src/apps/mediaplayer/playlist/PlaylistFileReader.cpp
86
if (path.FindLast(".m3u") == path.CountChars() - 4
src/apps/mediaplayer/playlist/PlaylistFileReader.cpp
87
|| path.FindLast(".m3u8") == path.CountChars() - 5)
src/apps/mediaplayer/playlist/PlaylistFileReader.cpp
89
else if (path.FindLast(".pls") == path.CountChars() - 4)
src/apps/packageinstaller/PackageInfo.cpp
1048
ret = itemPath.FindLast('/');
src/apps/stylededit/StyledEditWindow.cpp
1755
start = viewText.FindLast(string, textStart);
src/apps/stylededit/StyledEditWindow.cpp
1767
start = viewText.FindLast(string, viewText.Length());
src/apps/terminal/TermView.cpp
2213
int32 slash = string.FindLast("/");
src/apps/terminal/TermViewStates.cpp
980
int32 colonIndex = path.FindLast(':');
src/apps/terminal/TitlePlaceholderMapper.cpp
41
index = directory.FindLast('/', index - 1);
src/apps/webpositive/BrowserWindow.cpp
1870
int32 leafPos = url.FindLast('/');
src/apps/webpositive/BrowserWindow.cpp
1955
int32 leafPos = fileName.FindLast('/');
src/apps/webpositive/DownloadProgressView.cpp
801
int currentSizeUnitPos = currentSize.FindLast(' ');
src/apps/webpositive/DownloadProgressView.cpp
802
int expectedSizeUnitPos = expectedSize.FindLast(' ');
src/apps/webpositive/URLInputGroup.cpp
582
int32 leafPos = fileName.FindLast('/');
src/bin/checkitout.cpp
147
if (leaf.FindLast('/') > -1)
src/bin/checkitout.cpp
148
leaf.Remove(0, leaf.FindLast('/') + 1);
src/bin/keymap/Keymap.cpp
612
int32 index = name.FindLast('/');
src/bin/keymap/Keymap.cpp
617
index = name.FindLast('.');
src/bin/locale/collectcatkeys.cpp
264
int32 dot = outputFile.FindLast('.');
src/bin/open.cpp
112
i = arg.FindLast(':');
src/bin/open.cpp
126
i = arg.FindLast(':');
src/bin/urlwrapper.cpp
490
prettyPath.Remove(0, prettyPath.FindLast("/") + 1);
src/bin/urlwrapper.cpp
86
extension.Remove(0, extension.FindLast('.') + 1);
src/kits/debugger/controllers/TeamDebugger.cpp
1377
name.Remove(0, name.FindLast('/') + 1);
src/kits/debugger/controllers/TeamDebugger.cpp
1992
+ imageName.FindLast('/') + 1;
src/kits/debugger/files/FileManager.cpp
459
int32 lastSlash = path.FindLast('/');
src/kits/debugger/files/LocatableDirectory.cpp
30
int32 lastSlash = fPath.FindLast('/');
src/kits/locale/LocaleRoster.cpp
582
int32 last = signature.FindLast(':');
src/kits/locale/MutableLocaleRoster.cpp
218
while ((pos = langName.FindLast('_')) >= 0) {
src/kits/locale/MutableLocaleRoster.cpp
313
while ((pos = langName.FindLast('_')) >= 0) {
src/kits/mail/mail_util.cpp
1173
int32 greaterIndex = name.FindLast('>');
src/kits/mail/mail_util.cpp
782
splitIndex = string.FindLast (", ", tempIndex);
src/kits/mail/mail_util.cpp
789
splitIndex = string.FindLast (" ", tempIndex);
src/kits/mail/mail_util.cpp
791
splitIndex = string.FindLast ("\t", tempIndex);
src/kits/network/libnetapi/NetworkAddressResolver.cpp
21
int32 separator = host.FindLast(':');
src/kits/network/libnetservices/GopherRequest.cpp
523
if (user.FindLast('/') > -1) {
src/kits/network/libnetservices/GopherRequest.cpp
524
user.Remove(0, user.FindLast('/'));
src/kits/network/libnetservices/GopherRequest.cpp
539
if (user.FindLast('/') > -1) {
src/kits/network/libnetservices/GopherRequest.cpp
540
user.Remove(0, user.FindLast('/'));
src/kits/network/libnetservices/GopherRequest.cpp
558
if (user.FindLast('/') > -1) {
src/kits/network/libnetservices/GopherRequest.cpp
559
user.Remove(0, user.FindLast('/'));
src/kits/network/libnetservices/NetworkCookie.cpp
264
if (newDomain.FindLast('.') <= 0)
src/kits/network/libnetservices/NetworkCookie.cpp
506
int slashPos = normalizedPath.FindLast('/');
src/kits/network/libnetservices/NetworkCookie.cpp
565
int slashPos = normalizedPath.FindLast('/');
src/kits/network/libnetservices/NetworkCookie.cpp
858
int32 index = path.FindLast('/');
src/kits/network/libnetservices/UrlContext.cpp
127
domain.Truncate(domain.FindLast('/'));
src/kits/package/PackageInfoParser.cpp
372
int32 dashPos = word.text.FindLast('-');
src/kits/package/PackageInfoParser.cpp
393
int32 tildePos = word.text.FindLast('~');
src/kits/package/PackageInfoParser.cpp
52
int32 newlinePos = packageInfoString.FindLast('\n', offset - 1);
src/kits/package/PackageInfoParser.cpp
59
newlinePos = packageInfoString.FindLast('\n',
src/kits/support/String.cpp
1292
return FindLast(string, UTF8CountBytes(fPrivateData, beforeCharOffset));
src/kits/support/String.cpp
1299
return FindLast(string, UTF8CountBytes(fPrivateData, beforeCharOffset));
src/kits/support/String.cpp
1501
int32 pos = FindLast(replaceThis);
src/kits/support/Url.cpp
1124
int32 lastSlashIndex = fPath.FindLast("/");
src/kits/support/Url.cpp
292
int32 outputLastSlashIdx = path.FindLast('/');
src/kits/tracker/TrackerString.cpp
140
return FindLast(string) == position;
src/preferences/backgrounds/BackgroundImage.cpp
573
int offset = fName.FindLast('.');
src/preferences/joysticks/JoyWin.cpp
491
temp = temp.Remove(0, temp.FindLast('/') + 1) ;
src/preferences/mail/AutoConfig.cpp
92
int32 at = emailS.FindLast("@");
src/preferences/mail/AutoConfigView.cpp
265
if (provider.FindLast(".") < 0)
src/preferences/time/ZoneView.cpp
365
int32 closeParenthesisPos = timeZoneName.FindLast(')');
src/servers/package/FSUtils.h
154
int32 index = fPath.FindLast('/');
src/servers/package/FSUtils.h
166
int32 index = fPath.FindLast('/');
src/tests/kits/storage/MimeSnifferTest.cpp
1092
CHK(parseError.FindLast(testCase.error) >= 0);
src/tests/kits/storage/MimeTypeTest.cpp
4538
CHK(parseError.FindLast(testCase.error) >= 0);
src/tests/kits/support/StringSearchTest.cpp
276
CPPUNIT_ASSERT_EQUAL(16, string1.FindLast(string2));
src/tests/kits/support/StringSearchTest.cpp
283
CPPUNIT_ASSERT_EQUAL(B_ERROR, string1.FindLast(string2));
src/tests/kits/support/StringSearchTest.cpp
290
CPPUNIT_ASSERT_EQUAL(16, string1.FindLast("st"));
src/tests/kits/support/StringSearchTest.cpp
296
CPPUNIT_ASSERT_EQUAL(B_ERROR, string1.FindLast("some text"));
src/tests/kits/support/StringSearchTest.cpp
303
CPPUNIT_ASSERT_EQUAL(B_BAD_VALUE, string1.FindLast((char*)NULL));
src/tests/kits/support/StringSearchTest.cpp
311
CPPUNIT_ASSERT_EQUAL(3, string1.FindLast(string2, 7));
src/tests/kits/support/StringSearchTest.cpp
318
CPPUNIT_ASSERT_EQUAL(B_ERROR, string1.FindLast(string2, -10));
src/tests/kits/support/StringSearchTest.cpp
325
CPPUNIT_ASSERT_EQUAL(4, string1.FindLast("abc", 9));
src/tests/kits/support/StringSearchTest.cpp
331
CPPUNIT_ASSERT_EQUAL(B_ERROR, string1.FindLast("abc", -10));
src/tests/kits/support/StringSearchTest.cpp
338
CPPUNIT_ASSERT_EQUAL(B_BAD_VALUE, string1.FindLast((char*)NULL, 3));
src/tests/kits/support/StringSearchTest.cpp
345
CPPUNIT_ASSERT_EQUAL(7, string1.FindLast('c'));
src/tests/kits/support/StringSearchTest.cpp
351
CPPUNIT_ASSERT_EQUAL(B_ERROR, string1.FindLast('e'));
src/tests/kits/support/StringSearchTest.cpp
357
CPPUNIT_ASSERT_EQUAL(1, string1.FindLast("b", 5));
src/tests/kits/support/StringSearchTest.cpp
363
CPPUNIT_ASSERT_EQUAL(B_ERROR, string1.FindLast('e', 3));
src/tests/kits/support/StringSearchTest.cpp
369
CPPUNIT_ASSERT_EQUAL(6, string1.FindLast('b', 6));
src/tests/kits/support/StringSearchTest.cpp
375
CPPUNIT_ASSERT_EQUAL(1, string1.FindLast('b', 5));
src/tests/kits/support/StringSearchTest.cpp
381
CPPUNIT_ASSERT_EQUAL(B_ERROR, string1.FindLast("a", 0));
src/tools/locale/collectcatkeys.cpp
268
int32 dot = outputFile.FindLast('.');