Searched refs:ByteAt (Results 1 - 22 of 22) sorted by relevance

/haiku/src/tests/kits/support/bstring/
H A DStringCharAccessTest.cpp32 // ByteAt(int32)
34 CPPUNIT_ASSERT(string.ByteAt(-10) == 0);
35 CPPUNIT_ASSERT(string.ByteAt(200) == 0);
36 CPPUNIT_ASSERT(string.ByteAt(1) == ' ');
37 CPPUNIT_ASSERT(string.ByteAt(7) == 'e');
/haiku/src/apps/haikudepot/util/
H A DStringUtils.cpp15 while (i < len && _IsSpaceOrControl(value.ByteAt(i)))
24 while (i > 0 && _IsSpaceOrControl(value.ByteAt(i)))
36 if (_IsSpaceOrControl(value.ByteAt(i)))
/haiku/src/kits/interface/textview_support/
H A DUndoBuffer.cpp349 buffer[x] = fTextView->ByteAt(start + x);
378 fTextData[x] = fTextView->ByteAt(start + x);
395 buffer[fTextLength + x] = fTextView->ByteAt(start + x);
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/
H A DResponse.cpp103 uint8 c = (uint8)encodedText.ByteAt(i);
105 if (i < end - 1 && encodedText.ByteAt(i + 1) == '-') {
117 c = encodedText.ByteAt(i);
294 if (!isdigit(string.ByteAt(i)))
/haiku/src/preferences/filetypes/
H A DExtensionWindow.cpp152 if (fExtension.ByteAt(0) == '.')
/haiku/src/apps/stylededit/
H A DStyledEditView.cpp224 unsigned char ch = ByteAt(i);
/haiku/src/kits/mail/
H A DMailComponent.cpp226 if (!isspace(sub_cat.ByteAt(h))) {
232 if (!isspace(sub_cat.ByteAt(h))) {
243 while (isspace (end_piece.ByteAt(0)))
246 if (end_piece.ByteAt(0) == '\"') {
755 // if (isspace(modified.ByteAt(i)))
758 // if ((modified.ByteAt(i) == '\r') && (modified.ByteAt(i+1) == '\n'))
H A Dmail_util.cpp1424 if (pos != 0 && header.ByteAt(pos - 1) != '\n')
1426 if (header.ByteAt(fieldEndPos) == ':')
1439 if (header.ByteAt(crPos - 1) == '\r') {
1447 char nextByte = header.ByteAt(crPos);
/haiku/src/preferences/time/
H A DZoneView.cpp72 if (first.ByteAt(0) == '<') {
73 if (second.ByteAt(0) != '<')
75 } else if (second.ByteAt(0) == '<')
/haiku/src/apps/cortex/InfoView/
H A DInfoView.cpp481 if (canEndLine(currentLine->ByteAt(i)))
484 if (mustEndLine(currentLine->ByteAt(i)))
/haiku/src/kits/network/libnetapi/
H A DNetworkAddressResolver.cpp23 && (separator == 0 || host.ByteAt(separator - 1) != ']')) {
/haiku/src/kits/interface/
H A DTextView.cpp1329 BTextView::ByteAt(int32 offset) const function in class:BTextView
1874 if (ByteAt(offset) == B_TAB)
1891 if (ByteAt(offset - 1) == B_ENTER)
1896 if (offset != textLength && ByteAt(offset - 1) == B_SPACE)
1958 if (classification == CHAR_CLASS_END_OF_TEXT || ByteAt(offset) == B_ENTER)
1982 || ByteAt(offset + 1) == B_ENTER)) {
2020 if (ByteAt((line + 1)->offset - 1) == B_ENTER)
3624 if (ByteAt(fCaretOffset - 1) == B_ENTER)
3755 while (ByteAt(offset) != '\0' &&
3756 (ByteAt(offse
[all...]
/haiku/src/add-ons/mail_daemon/inbound_protocols/pop3/
H A DPOP3.cpp841 if (result.ByteAt(0) == '.')
853 if (result.ByteAt(0) == '.')
/haiku/headers/os/support/
H A DString.h318 char ByteAt(int32 index) const;
495 BString::ByteAt(int32 index) const function in class:BString
/haiku/src/apps/mail/
H A DContent.cpp302 while (urlPos >= startIndex && (isalnum(string.ByteAt(urlPos - 1))
303 || string.ByteAt(urlPos - 1) == '-'))
419 || view->ByteAt(view->TextLength() - 1) == '\n';
928 while (!IsInitialUTF8Byte(ByteAt(--start))) {
950 for (end = start + 1; !IsInitialUTF8Byte(ByteAt(end)); end++) {
985 for (end = start + 1; !IsInitialUTF8Byte(ByteAt(end));
3247 if (ByteAt(offset) == B_ENTER)
3264 if ((ByteAt(offset) & 0xC0) != 0x80)
/haiku/src/apps/icon-o-matic/import_export/styled_text/
H A DStyledTextImporter.cpp310 for (charLen = 1; str.ByteAt(i + charLen) & 0x80; charLen++);
/haiku/src/kits/network/libnetservices/
H A DNetworkCookie.cpp855 if (path.IsEmpty() || path.ByteAt(0) != '/')
/haiku/src/apps/diskprobe/
H A DFindWindow.cpp207 if (ByteAt(start) == ' ')
/haiku/headers/os/interface/
H A DTextView.h116 uint8 ByteAt(int32 offset) const;
/haiku/src/add-ons/input_server/filters/shortcut_catcher/
H A DCommandActuators.cpp679 char next = fSequence.ByteAt(i);
885 char nextChar = fSequence.ByteAt(i);
/haiku/src/kits/storage/
H A DPathMonitor.cpp80 if (parent.ByteAt(length - 1) != '/') {
818 if (normalizedPath.ByteAt(normalizedPathLength - 1) != '/') {
/haiku/src/tests/kits/storage/testapps/
H A DPathMonitorTest2.cpp104 if (maybeRelativePath.ByteAt(0) == '/')

Completed in 583 milliseconds