Searched refs:caseSensitive (Results 1 - 9 of 9) sorted by relevance

/haiku/headers/private/shared/
H A DRegExp.h26 bool caseSensitive = true);
36 bool caseSensitive = true);
/haiku/src/apps/stylededit/
H A DStyledEditWindow.h50 bool caseSensitive);
62 bool _Search(BString searchFor, bool caseSensitive,
67 bool caseSensitive, bool wrap,
70 bool caseSensitive);
H A DStyledEditWindow.cpp1078 bool caseSensitive)
1087 message->AddBool("casesens", caseSensitive);
1726 StyledEditWindow::_Search(BString string, bool caseSensitive, bool wrap, argument
1742 if (caseSensitive)
1747 if (caseSensitive)
1754 if (caseSensitive)
1759 if (caseSensitive)
1796 bool caseSensitive, bool wrap, bool backSearch)
1798 if (_Search(findThis, caseSensitive, wrap, backSearch)) {
1819 bool caseSensitive)
1077 SearchAllWindows(BString find, BString replace, bool caseSensitive) argument
1795 _Replace(BString findThis, BString replaceWith, bool caseSensitive, bool wrap, bool backSearch) argument
1818 _ReplaceAll(BString findThis, BString replaceWith, bool caseSensitive) argument
[all...]
/haiku/src/kits/shared/
H A DRegExp.cpp23 Data(const char* pattern, PatternType patternType, bool caseSensitive) argument
119 if (!caseSensitive)
203 bool caseSensitive)
207 SetPattern(pattern, patternType, caseSensitive);
229 bool caseSensitive)
236 Data* newData = new(std::nothrow) Data(pattern, patternType, caseSensitive);
202 RegExp(const char* pattern, PatternType patternType, bool caseSensitive) argument
228 SetPattern(const char* pattern, PatternType patternType, bool caseSensitive) argument
/haiku/src/system/kernel/debug/
H A Ddebug_builtin_commands.cpp210 bool caseSensitive = true; local
221 caseSensitive = false;
240 if (caseSensitive) {
/haiku/src/apps/diskprobe/
H A DFindWindow.cpp531 bool caseSensitive; local
532 if (previous.FindBool("case_sensitive", &caseSensitive) != B_OK
534 || settings->FindBool("case_sensitive", &caseSensitive) != B_OK)) {
535 caseSensitive = true;
537 fCaseCheckBox->SetValue(caseSensitive);
H A DDiskProbe.cpp234 bool caseSensitive; local
235 if (message->FindBool("case_sensitive", &caseSensitive) == B_OK)
236 fMessage.ReplaceBool("case_sensitive", caseSensitive);
/haiku/src/apps/terminal/
H A DBasicTerminalBuffer.h119 bool forward, bool caseSensitive,
H A DBasicTerminalBuffer.cpp520 bool forward, bool caseSensitive, bool matchWord, TermPos& _matchStart,
524 //"word: %d)\n", _pattern, start.x, start.y, forward, caseSensitive, matchWord);
555 if (!caseSensitive && charLen == 1)
584 if (caseSensitive ? (c == pattern[matchIndex])
519 Find(const char* _pattern, const TermPos& start, bool forward, bool caseSensitive, bool matchWord, TermPos& _matchStart, TermPos& _matchEnd) const argument

Completed in 134 milliseconds