HomeSort by relevance Sort by last modified time
    Searched full:casesensitive (Results 1 - 25 of 42) sorted by null

1 2

  /external/webkit/WebCore/platform/text/
AtomicString.h 78 bool contains(const char* s, bool caseSensitive = true) const
79 { return m_string.contains(s, caseSensitive); }
80 bool contains(const String& s, bool caseSensitive = true) const
81 { return m_string.contains(s, caseSensitive); }
89 bool startsWith(const String& s, bool caseSensitive = true) const
90 { return m_string.startsWith(s, caseSensitive); }
91 bool endsWith(const String& s, bool caseSensitive = true) const
92 { return m_string.endsWith(s, caseSensitive); }
PlatformString.h 102 bool contains(const char* str, bool caseSensitive = true) const { return find(str, 0, caseSensitive) != -1; }
103 bool contains(const String& str, bool caseSensitive = true) const { return find(str, 0, caseSensitive) != -1; }
109 int find(const char* str, int start = 0, bool caseSensitive = true) const
110 { return m_impl ? m_impl->find(str, start, caseSensitive) : -1; }
111 int find(const String& str, int start = 0, bool caseSensitive = true) const
112 { return m_impl ? m_impl->find(str.impl(), start, caseSensitive) : -1; }
116 int reverseFind(const String& str, int start = -1, bool caseSensitive = true) const
117 { return m_impl ? m_impl->reverseFind(str.impl(), start, caseSensitive) : -1;
    [all...]
StringImpl.h 152 int find(const char*, int index = 0, bool caseSensitive = true);
155 int find(StringImpl*, int index, bool caseSensitive = true);
158 int reverseFind(StringImpl*, int index, bool caseSensitive = true);
160 bool startsWith(StringImpl* str, bool caseSensitive = true) { return reverseFind(str, 0, caseSensitive) == 0; }
161 bool endsWith(StringImpl*, bool caseSensitive = true);
StringImpl.cpp 486 int StringImpl::find(const char* chs, int index, bool caseSensitive)
503 if (caseSensitive) {
530 int StringImpl::find(StringImpl* str, int index, bool caseSensitive)
553 if (caseSensitive) {
591 int StringImpl::reverseFind(StringImpl* str, int index, bool caseSensitive)
613 if (caseSensitive) {
649 bool StringImpl::endsWith(StringImpl* m_data, bool caseSensitive)
654 return (find(m_data, start, caseSensitive) == start);
  /external/chromium/third_party/icu/source/tools/gencase/
gencase.c 53 static USet *caseSensitive;
295 caseSensitive=uset_open(1, 0); /* empty set (start>end) */
456 uset_add(caseSensitive, (UChar32)specialCasings[specialCasingCount].code);
457 _set_addAll(caseSensitive, specialCasings[specialCasingCount].lowerCase+1, specialCasings[specialCasingCount].lowerCase[0]);
458 _set_addAll(caseSensitive, specialCasings[specialCasingCount].upperCase+1, specialCasings[specialCasingCount].upperCase[0]);
459 _set_addAll(caseSensitive, specialCasings[specialCasingCount].titleCase+1, specialCasings[specialCasingCount].titleCase[0]);
519 * Add one complex mapping to caseSensitive that was filtered out above:
524 uset_add(caseSensitive, 0x3c2);
580 uset_add(caseSensitive, (UChar32)caseFoldings[caseFoldingCount].code);
581 _set_addAll(caseSensitive, caseFoldings[caseFoldingCount].full+1, caseFoldings[caseFoldingCount].full[0])
    [all...]
  /external/icu4c/tools/gencase/
gencase.c 53 static USet *caseSensitive;
297 caseSensitive=uset_open(1, 0); /* empty set (start>end) */
458 uset_add(caseSensitive, (UChar32)specialCasings[specialCasingCount].code);
459 _set_addAll(caseSensitive, specialCasings[specialCasingCount].lowerCase+1, specialCasings[specialCasingCount].lowerCase[0]);
460 _set_addAll(caseSensitive, specialCasings[specialCasingCount].upperCase+1, specialCasings[specialCasingCount].upperCase[0]);
461 _set_addAll(caseSensitive, specialCasings[specialCasingCount].titleCase+1, specialCasings[specialCasingCount].titleCase[0]);
521 * Add one complex mapping to caseSensitive that was filtered out above:
526 uset_add(caseSensitive, 0x3c2);
582 uset_add(caseSensitive, (UChar32)caseFoldings[caseFoldingCount].code);
583 _set_addAll(caseSensitive, caseFoldings[caseFoldingCount].full+1, caseFoldings[caseFoldingCount].full[0])
    [all...]
  /external/webkit/WebKit/mac/WebView/
WebDocumentPrivate.h 69 @method searchFor:direction:caseSensitive:wrap:startInSelection:
78 - (BOOL)searchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOOL)wrapFlag startInSelection:(BOOL)startInSelection;
WebDocumentInternal.h 64 - (WebNSUInteger)markAllMatchesForText:(NSString *)string caseSensitive:(BOOL)caseFlag limit:(WebNSUInteger)limit;
WebDocument.h 91 @method searchFor:direction:caseSensitive:wrap:
99 - (BOOL)searchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOOL)wrapFlag;
WebPDFView.mm 85 - (PDFSelection *)_nextMatchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOOL)wrapFlag fromSelection:(PDFSelection *)initialSelection startInSelection:(BOOL)startInSelection;
588 - (BOOL)searchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOOL)wrapFlag
590 return [self searchFor:string direction:forward caseSensitive:caseFlag wrap:wrapFlag startInSelection:NO];
595 - (BOOL)searchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOOL)wrapFlag startInSelection:(BOOL)startInSelection
597 PDFSelection *selection = [self _nextMatchFor:string direction:forward caseSensitive:caseFlag wrap:wrapFlag fromSelection:[PDFSubview currentSelection] startInSelection:startInSelection];
623 - (NSUInteger)markAllMatchesForText:(NSString *)string caseSensitive:(BOOL)caseFlag limit:(NSUInteger)limit
630 nextMatch = [self _nextMatchFor:string direction:YES caseSensitive:caseFlag wrap:NO fromSelection:previousMatch startInSelection:NO];
    [all...]
WebViewPrivate.h 109 @method searchFor:direction:caseSensitive:wrap:startInSelection:
119 - (BOOL)searchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOOL)wrapFlag startInSelection:(BOOL)startInSelection;
176 - (WebNSUInteger)markAllMatchesForText:(NSString *)string caseSensitive:(BOOL)caseFlag highlight:(BOOL)highlight limit:(WebNSUInteger)limit;
  /external/webkit/WebKit/win/Interfaces/
IWebDocument.idl 114 @method searchFor:direction:caseSensitive:wrap:
121 - (BOOL)searchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOOL)wrapFlag;
123 HRESULT searchFor([in] BSTR str, [in] BOOL forwardDirection, [in] BOOL caseSensitive, [in] BOOL wrap, [out, retval] BOOL* result);
IWebViewPrivate.idl 96 HRESULT markAllMatchesForText([in] BSTR search, [in] BOOL caseSensitive, [in] BOOL highlight, [in] UINT limit, [out] UINT* matches);
  /external/webkit/WebCore/loader/
FTPDirectoryParser.h 135 caseSensitive = false;
150 bool caseSensitive; // file system is definitely case insensitive
  /external/webkit/WebKit/wx/
WebFrame.h 130 bool caseSensitive = false, bool wrapSelection = true,
WebFrame.cpp 216 bool wxWebFrame::FindString(const wxString& string, bool forward, bool caseSensitive, bool wrapSelection, bool startInSelection)
219 return m_impl->frame->findString(string, forward, caseSensitive, wrapSelection, startInSelection);
WebView.cpp 564 bool wxWebView::FindString(const wxString& string, bool forward, bool caseSensitive, bool wrapSelection, bool startInSelection)
567 return m_mainFrame->FindString(string, forward, caseSensitive, wrapSelection, startInSelection);
WebView.h 170 bool caseSensitive = false, bool wrapSelection = true,
  /libcore/luni/src/main/java/javax/sql/
RowSetMetaData.java 61 * @param caseSensitive
67 public void setCaseSensitive(int columnIndex, boolean caseSensitive)
  /external/libvpx/examples/includes/geshi/geshi/
powershell.php 108 '-not', '-bnot', '-f', '-casesensitive', '-exact', '-file', '-regex', '-wildcard'
138 '-CategoryTargetName', '-CategoryReason', '-CategoryActivity', '-Category', '-CaseSensitive',
  /external/webkit/WebCore/editing/
TextIterator.h 50 PassRefPtr<Range> findPlainText(const Range*, const String&, bool forward, bool caseSensitive);
TextIterator.cpp     [all...]
  /external/webkit/WebKit/mac/
WebKit.order     [all...]
  /external/webkit/WebCore/page/
DOMWindow.h 143 bool find(const String&, bool caseSensitive, bool backwards, bool wrap, bool wholeWord, bool searchInFrames, bool showDialog) const;
DOMWindow.idl 88 in boolean caseSensitive,
    [all...]

Completed in 279 milliseconds

1 2