Searched refs:FindLast (Results 1 - 25 of 57) sorted by relevance

123

/haiku/src/tests/kits/support/bstring/
H A DStringSearchTest.cpp173 // FindLast(BString&)
177 i = string1->FindLast(*string2);
185 i = string1->FindLast(*string2);
190 // FindLast(char*)
193 i = string1->FindLast("st");
199 i = string1->FindLast("some text");
207 i = string1->FindLast((char*)NULL);
212 // FindLast(BString&, int32)
216 i = string1->FindLast(*string2, 7);
224 i = string1->FindLast(*string
[all...]
/haiku/src/kits/debugger/files/
H A DLocatableDirectory.cpp30 int32 lastSlash = fPath.FindLast('/');
/haiku/src/apps/devices/
H A DDeviceACPI.cpp66 nodeACPIPath.Remove(0, nodeACPIPath.FindLast(".") + 1);
90 nodeACPIHid.Remove(0, nodeACPIHid.FindLast("_") + 1);
/haiku/src/apps/mediaplayer/playlist/
H A DPlaylistFileReader.cpp86 if (path.FindLast(".m3u") == path.CountChars() - 4
87 || path.FindLast(".m3u8") == path.CountChars() - 5)
89 else if (path.FindLast(".pls") == path.CountChars() - 4)
/haiku/src/bin/
H A Dopen.cpp112 i = arg.FindLast(':');
126 i = arg.FindLast(':');
H A Dcheckitout.cpp147 if (leaf.FindLast('/') > -1)
148 leaf.Remove(0, leaf.FindLast('/') + 1);
/haiku/src/kits/network/libnetservices/
H A DGopherRequest.cpp524 if (user.FindLast('/') > -1) {
525 user.Remove(0, user.FindLast('/'));
540 if (user.FindLast('/') > -1) {
541 user.Remove(0, user.FindLast('/'));
559 if (user.FindLast('/') > -1) {
560 user.Remove(0, user.FindLast('/'));
H A DUrlContext.cpp127 domain.Truncate(domain.FindLast('/'));
H A DNetworkCookie.cpp264 if (newDomain.FindLast('.') <= 0)
506 int slashPos = normalizedPath.FindLast('/');
565 int slashPos = normalizedPath.FindLast('/');
858 int32 index = path.FindLast('/');
/haiku/src/servers/package/
H A DFSUtils.h154 int32 index = fPath.FindLast('/');
166 int32 index = fPath.FindLast('/');
/haiku/src/apps/terminal/
H A DTitlePlaceholderMapper.cpp41 index = directory.FindLast('/', index - 1);
/haiku/src/add-ons/print/transports/hp_jetdirect/
H A DHPJetDirectTransport.cpp44 int32 index = address.FindLast(':');
/haiku/src/apps/installer/
H A DUnzipEngine.cpp264 int leafPos = itemPath.FindLast('/');
312 int pos = line.FindLast(" -> ");
319 pos = itemPath.FindLast('/');
/haiku/headers/os/support/
H A DString.h220 int32 FindLast(const BString& string) const;
221 int32 FindLast(const char* string) const;
222 int32 FindLast(const BString& string,
224 int32 FindLast(const char* string,
226 int32 FindLast(char c) const;
227 int32 FindLast(char c, int32 beforeOffset) const;
/haiku/src/kits/locale/
H A DMutableLocaleRoster.cpp218 while ((pos = langName.FindLast('_')) >= 0) {
313 while ((pos = langName.FindLast('_')) >= 0) {
/haiku/src/kits/package/
H A DPackageInfoParser.cpp52 int32 newlinePos = packageInfoString.FindLast('\n', offset - 1);
59 newlinePos = packageInfoString.FindLast('\n',
372 int32 dashPos = word.text.FindLast('-');
393 int32 tildePos = word.text.FindLast('~');
/haiku/src/apps/expander/
H A DExpanderRules.cpp86 int32 extensionPosition = fileName.FindLast(rule->FilenameExtension());
/haiku/src/apps/haikudepot/packagemanagement/
H A DOpenPackageProcess.cpp185 int32 lastPathSeparator = target.FindLast('/');
/haiku/src/add-ons/kernel/file_systems/ramfs/
H A DTwoKeyAVLTree.h254 Value *FindLast(const PrimaryKey &key, Iterator *iterator = NULL);
402 // FindLast
405 TWO_KEY_AVL_TREE_CLASS_NAME::FindLast(const PrimaryKey &key, function in class:TWO_KEY_AVL_TREE_CLASS_NAME
/haiku/src/add-ons/input_server/devices/tablet/
H A DTabletInputDevice.cpp252 int32 slash = string.FindLast("/");
256 int32 previousSlash = string.FindLast("/", slash);
/haiku/src/preferences/mail/
H A DAutoConfig.cpp92 int32 at = emailS.FindLast("@");
/haiku/src/kits/tracker/
H A DTrackerString.cpp140 return FindLast(string) == position;
/haiku/src/kits/network/libnetapi/
H A DNetworkAddressResolver.cpp21 int32 separator = host.FindLast(':');
/haiku/src/kits/mail/
H A Dmail_util.cpp782 splitIndex = string.FindLast (", ", tempIndex);
789 splitIndex = string.FindLast (" ", tempIndex);
791 splitIndex = string.FindLast ("\t", tempIndex);
1173 int32 greaterIndex = name.FindLast('>');
/haiku/src/bin/locale/
H A Dcollectcatkeys.cpp264 int32 dot = outputFile.FindLast('.');

Completed in 156 milliseconds

123