Searched refs:FindFirst (Results 26 - 50 of 105) sorted by relevance

12345

/haiku-fatelf/headers/os/support/
H A DString.h182 int32 FindFirst(const BString& string) const;
183 int32 FindFirst(const char* string) const;
184 int32 FindFirst(const BString& string,
186 int32 FindFirst(const char* string,
188 int32 FindFirst(char c) const;
189 int32 FindFirst(char c, int32 fromOffset) const;
/haiku-fatelf/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/
H A DIMAPProtocol.cpp123 int32 endPos = fStringBuffer.FindFirst('\n');
125 endPos = fStringBuffer.FindFirst(xEOF);
351 if (line.FindFirst(idString) >= 0) {
H A DIMAPFolders.cpp93 if (fCapabilityHandler.Capabilities().FindFirst("QUOTA") < 0)
/haiku-fatelf/src/bin/desklink/
H A Ddesklink.cpp110 int32 index = title->FindFirst(':');
/haiku-fatelf/src/preferences/touchpad/
H A DTouchpadPref.cpp170 if (name.FindFirst("Touchpad") >= 0
/haiku-fatelf/headers/private/shared/
H A DHashSet.h139 fElement = fSet->fTable.FindFirst(fIndex);
327 Element* element = fTable.FindFirst(key.GetHashCode());
H A DHashMap.h164 fElement = fMap->fTable.FindFirst(fIndex);
464 Element* element = fTable.FindFirst(key.GetHashCode());
/haiku-fatelf/src/add-ons/kernel/network/ppp/shared/libppp/
H A DMessageDriverSettingsUtils.cpp176 bool needsEscaping = word.FindFirst(' ') >= 0;
190 needsEscaping = word.FindFirst(' ') >= 0;
/haiku-fatelf/src/apps/webpositive/support/
H A DHashSet.h139 fElement = fSet->fTable.FindFirst(fIndex);
327 Element* element = fTable.FindFirst(key.GetHashCode());
/haiku-fatelf/src/kits/mail/
H A Dmail_util.cpp795 splitIndex = string.FindFirst (" ", lineStartIndex + 1);
797 splitIndex = string.FindFirst ("\t", lineStartIndex + 1);
1170 int32 lessIndex = name.FindFirst('<');
1432 crPos = header.FindFirst('\n', crPos);
1470 if ((first = address.FindFirst('"')) >= 0) {
1481 if ((first = address.FindFirst('<')) >= 0) {
1483 int32 last = address.FindFirst('>');
1494 if ((first = address.FindFirst('(')) >= 0) {
H A DMailComponent.cpp170 if (BString(sub_val).FindFirst(' ') > 0)
215 end = string.FindFirst(';', i);
236 int32 first_equal = sub_cat.FindFirst('=');
630 if (decoded.FindFirst ("\e$B") >= 0 || decoded.FindFirst ("\e$@") >= 0)
H A DProtocolConfigView.cpp408 if (host_name.FindFirst(':') > -1) {
409 port = atol(host_name.String() + host_name.FindFirst(':') + 1);
410 host_name.Truncate(host_name.FindFirst(':'));
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/headers/shared/
H A DHashSet.h135 fElement = fSet->fTable.FindFirst(fIndex);
313 Element* element = fTable.FindFirst(key.GetHashCode());
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/ramfs/
H A DTwoKeyAVLTree.h159 Value *FindFirst(const PrimaryKey &key, Iterator *iterator = NULL);
209 // FindFirst
212 TWO_KEY_AVL_TREE_CLASS_NAME::FindFirst(const PrimaryKey &key, function in class:TWO_KEY_AVL_TREE_CLASS_NAME
H A DVolume.cpp423 if (fNodeListeners->FindFirst(node, &it)) {
454 if (fNodeListeners->FindFirst(node, &it)) {
543 if (fEntryListeners->FindFirst(entry, &it)) {
574 if (fEntryListeners->FindFirst(entry, &it)) {
/haiku-fatelf/src/tests/kits/net/preflet/DialUpAddOn/
H A DMessageDriverSettingsUtils.cpp193 bool needsEscaping = word.FindFirst(' ') >= 0;
207 needsEscaping = word.FindFirst(' ') >= 0;
/haiku-fatelf/src/kits/network/libnetapi/
H A DNetworkCookie.cpp475 return path.FindFirst(fPath) == 0;
747 int16 firstSemiColon = cookieString.FindFirst(";", *index);
748 int16 firstEqual = cookieString.FindFirst("=", *index);
H A DNetworkCookieJar.cpp272 int32 endOfLine = flattenedCookies.FindFirst('\n', 0);
284 int32 endOfField = tempCookieLine.FindFirst('\t', 0);
622 int32 nextDot = domain.FindFirst('.', 1);
H A DHttpHeaders.cpp81 int32 separatorLocation = strLine.FindFirst(": ");
/haiku-fatelf/src/add-ons/kernel/file_systems/ramfs/
H A DVolume.cpp438 if (fNodeListeners->FindFirst(node, &it)) {
469 if (fNodeListeners->FindFirst(node, &it)) {
558 if (fEntryListeners->FindFirst(entry, &it)) {
589 if (fEntryListeners->FindFirst(entry, &it)) {
/haiku-fatelf/src/apps/cortex/TipManager/
H A DTipView.cpp208 int32 nextBreak = m_text.FindFirst('\n', n);
/haiku-fatelf/src/apps/mediaplayer/supplier/
H A DSubTitlesSRT.cpp66 int32 separatorPos = line.FindFirst(" --> ");
/haiku-fatelf/src/add-ons/screen_savers/message/
H A DMessage.cpp63 while ((start = message->FindFirst('\n', start)) != B_ERROR) {
73 for (int i = 0; ((end = message->FindFirst('\n', start)) != B_ERROR) && i < count; i++) {
/haiku-fatelf/src/apps/mail/
H A DWIndex.cpp343 WIndex::FindFirst(const char *word) function in class:WIndex
403 return GetEntry(FindFirst(word));
/haiku-fatelf/src/add-ons/mail_daemon/inbound_protocols/pop3/
H A Dpop3.cpp430 int32 index = fLog.FindFirst("<");
434 int32 end = fLog.FindFirst(">",index);
901 uidOffset = result.FindFirst(' ') + 1;

Completed in 195 milliseconds

12345