Searched refs:wrap (Results 1 - 21 of 21) sorted by last modified time

/haiku/src/apps/deskbar/
H A DSwitcher.cpp801 TSwitchManager::CycleWindow(bool forward, bool wrap) argument
810 if (!wrap)
817 if (!wrap)
H A DSwitcher.h70 void CycleWindow(bool forward, bool wrap = true);
/haiku/src/libs/compat/freebsd_iflib/
H A Diflib.c443 #define IDXDIFF(head, tail, wrap) \
444 ((head) >= (tail) ? (head) - (tail) : (wrap) - (tail) + (head))
4994 * value into the valid range (and wrap accordingly) so the
5003 /* wrap to range [first_valid, last_valid] */
/haiku/src/kits/interface/
H A DTextView.cpp2398 BTextView::SetWordWrap(bool wrap) argument
2400 if (wrap == fWrap)
2415 fWrap = wrap;
2416 if (wrap)
4034 // wrap the text
4074 // we've found where the line will wrap
4091 // width of visible characters exceeds line, we need to wrap
/haiku/headers/os/interface/
H A DTextView.h193 void SetWordWrap(bool wrap);
/haiku/src/apps/mail/
H A DContent.cpp337 // count qoute level (to be able to wrap quotes correctly)
2026 TTextView::AddAsContent(BEmailMessage *mail, bool wrap, uint32 charset, mail_encoding encoding)
2042 if (!wrap) {
2103 // hard-wrap, based on TextView's soft-wrapping
H A DPrefs.cpp91 bool* wrap, bool* attachAttributes, bool* cquotes, int32* account,
101 fNewWrap(wrap),
248 fWrapMenu = _BuildWrapMenu(*wrap);
249 menu = new BMenuField("wrap", B_TRANSLATE("Text wrapping:"), fWrapMenu);
445 msg->FindBool("wrap", fNewWrap);
785 TPrefsWindow::_BuildWrapMenu(bool wrap) argument
787 return _BuildBoolMenu(P_WRAP, "wrap", wrap);
90 TPrefsWindow(BPoint leftTop, BFont* font, int32* level, bool* wrap, bool* attachAttributes, bool* cquotes, int32* account, int32* replyTo, char** preamble, char** sig, uint32* encoding, bool* warnUnencodable, bool* spellCheckStartOn, bool* autoMarkRead, uint8* buttonBar) argument
H A DContent.h171 void AddAsContent(BEmailMessage *mail, bool wrap, uint32 charset, mail_encoding encoding);
/haiku/src/apps/stylededit/
H A DStyledEditWindow.cpp286 message->FindBool("wrap", &fWrapAround);
320 message->FindBool("wrap", &fWrapAround);
537 // update wrap setting
1726 StyledEditWindow::_Search(BString string, bool caseSensitive, bool wrap, argument
1752 if (start == B_ERROR && wrap) {
1796 bool caseSensitive, bool wrap, bool backSearch)
1798 if (_Search(findThis, caseSensitive, wrap, backSearch)) {
1795 _Replace(BString findThis, BString replaceWith, bool caseSensitive, bool wrap, bool backSearch) argument
H A DStyledEditWindow.h63 bool wrap, bool backSearch,
67 bool caseSensitive, bool wrap,
H A DStyledEditView.cpp154 bool wrap; local
155 bytesRead = node->ReadAttr("wrap", 0, 0, &wrap, sizeof(wrap));
156 if (bytesRead == (ssize_t)sizeof(wrap)) {
157 SetWordWrap(wrap);
158 if (wrap == false) {
/haiku/src/add-ons/kernel/drivers/input/hid_shared/
H A DHIDReport.cpp53 TRACE("\t\t%swrap\n", mainData.wrap ? "" : "no-");
H A DHIDDataTypes.h108 wrap : 1,
/haiku/src/add-ons/kernel/drivers/network/ether/rtl8139/dev/rl/
H A Dif_rl.c1123 int wrap = 0; local
1201 wrap = (sc->rl_cdata.rl_rx_buf + RL_RXBUFLEN) - rxbufpos;
1202 if (total_len > wrap) {
1206 m_copyback(m, wrap, total_len - wrap,
1208 cur_rx = (total_len - wrap + ETHER_CRC_LEN);
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DJournal.cpp813 int32 wrap = fLogSize - logStart; local
824 if (count >= wrap) {
833 wrap = fLogSize;
/haiku/src/apps/webpositive/autocompletion/
H A DAutoCompleterDefaultImpl.cpp69 BDefaultCompletionStyle::SelectNext(bool wrap) argument
76 if (wrap)
86 BDefaultCompletionStyle::SelectPrevious(bool wrap) argument
93 if (wrap)
H A DAutoCompleter.cpp132 BAutoCompleter::SelectNext(bool wrap) argument
135 return fCompletionStyle->SelectNext(wrap);
142 BAutoCompleter::SelectPrevious(bool wrap) argument
145 return fCompletionStyle->SelectPrevious(wrap);
H A DAutoCompleter.h98 virtual bool SelectNext(bool wrap = false) = 0;
99 virtual bool SelectPrevious(bool wrap = false) = 0;
139 bool SelectNext(bool wrap = false);
140 bool SelectPrevious(bool wrap = false);
H A DAutoCompleterDefaultImpl.h35 virtual bool SelectNext(bool wrap = false);
36 virtual bool SelectPrevious(bool wrap = false);
/haiku/src/tools/cppunit/cppunit/
H A DCompilerOutputter.cpp128 m_stream << wrap( "- Expected : " + e->expectedValue() );
130 m_stream << wrap( "- Actual : " + e->actualValue() );
134 m_stream << wrap( e->additionalMessage() );
143 string wrappedMessage = wrap( thrownException->what() );
161 CompilerOutputter::wrap( string message ) function in class:CppUnit::CompilerOutputter
/haiku/headers/tools/cppunit/cppunit/
H A DCompilerOutputter.h87 virtual std::string wrap( std::string message );

Completed in 166 milliseconds