HomeSort by relevance Sort by last modified time
    Searched refs:caseSensitive (Results 1 - 25 of 33) sorted by null

1 2

  /external/webkit/Source/WebCore/loader/
FTPDirectoryParser.h 135 caseSensitive = false;
150 bool caseSensitive; // file system is definitely case insensitive
FTPDirectoryParser.cpp 487 result.caseSensitive = true;
735 result.caseSensitive = true;
822 result.caseSensitive = true;
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/text/
AtomicString.h 69 bool contains(const char* s, bool caseSensitive = true) const
70 { return m_string.contains(s, caseSensitive); }
71 bool contains(const String& s, bool caseSensitive = true) const
72 { return m_string.contains(s, caseSensitive); }
80 bool startsWith(const String& s, bool caseSensitive = true) const
81 { return m_string.startsWith(s, caseSensitive); }
82 bool endsWith(const String& s, bool caseSensitive = true) const
83 { return m_string.endsWith(s, caseSensitive); }
WTFString.h 188 size_t find(const char* str, unsigned start, bool caseSensitive) const
189 { return caseSensitive ? find(str, start) : findIgnoringCase(str, start); }
190 size_t find(const String& str, unsigned start, bool caseSensitive) const
191 { return caseSensitive ? find(str, start) : findIgnoringCase(str, start); }
192 size_t reverseFind(const String& str, unsigned start, bool caseSensitive) const
193 { return caseSensitive ? reverseFind(str, start) : reverseFindIgnoringCase(str, start); }
200 bool contains(const char* str, bool caseSensitive = true) const { return find(str, 0, caseSensitive) != notFound; }
201 bool contains(const String& str, bool caseSensitive = true) const { return find(str, 0, caseSensitive) != notFound;
    [all...]
StringImpl.h 308 bool startsWith(StringImpl* str, bool caseSensitive = true) { return (caseSensitive ? reverseFind(str, 0) : reverseFindIgnoringCase(str, 0)) == 0; }
309 bool endsWith(StringImpl*, bool caseSensitive = true);
StringImpl.cpp 764 bool StringImpl::endsWith(StringImpl* m_data, bool caseSensitive)
769 return (caseSensitive ? find(m_data, start) : findIgnoringCase(m_data, start)) == start;
  /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/Source/WebKit/mac/WebView/
WebDocumentPrivate.h 74 @method searchFor:direction:caseSensitive:wrap:startInSelection:
83 - (BOOL)searchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOOL)wrapFlag startInSelection:(BOOL)startInSelection;
WebDocument.h 91 @method searchFor:direction:caseSensitive:wrap:
99 - (BOOL)searchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOOL)wrapFlag;
WebPDFView.mm 88 - (PDFSelection *)_nextMatchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOOL)wrapFlag fromSelection:(PDFSelection *)initialSelection startInSelection:(BOOL)startInSelection;
597 - (BOOL)searchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOOL)wrapFlag
599 return [self searchFor:string direction:forward caseSensitive:caseFlag wrap:wrapFlag startInSelection:NO];
604 - (BOOL)searchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOOL)wrapFlag startInSelection:(BOOL)startInSelection
606 PDFSelection *selection = [self _nextMatchFor:string direction:forward caseSensitive:caseFlag wrap:wrapFlag fromSelection:[PDFSubview currentSelection] startInSelection:startInSelection];
653 PDFSelection *nextMatch = [self _nextMatchFor:string direction:YES caseSensitive:!(options & WebFindOptionsCaseInsensitive) wrap:NO fromSelection:previousMatch startInSelection:NO];
    [all...]
WebViewPrivate.h 563 - (WebNSUInteger)markAllMatchesForText:(NSString *)string caseSensitive:(BOOL)caseFlag highlight:(BOOL)highlight limit:(WebNSUInteger)limit;
564 - (WebNSUInteger)countMatchesForText:(NSString *)string caseSensitive:(BOOL)caseFlag highlight:(BOOL)highlight limit:(WebNSUInteger)limit markMatches:(BOOL)markMatches;
567 @method searchFor:direction:caseSensitive:wrap:startInSelection:
578 - (BOOL)searchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOOL)wrapFlag startInSelection:(BOOL)startInSelection;
WebView.h 500 @method searchFor:direction:caseSensitive:
508 - (BOOL)searchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOOL)wrapFlag;
  /external/webkit/Source/WebKit/chromium/public/
WebPlugin.h 114 virtual bool startFind(const WebString& searchText, bool caseSensitive, int identifier) { return false; }
  /libcore/luni/src/main/java/javax/sql/
RowSetMetaData.java 61 * @param caseSensitive
67 public void setCaseSensitive(int columnIndex, boolean caseSensitive)
  /external/webkit/Source/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/Source/WebKit2/UIProcess/API/mac/
PDFViewController.mm 117 - (PDFSelection *)_nextMatchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOOL)wrapFlag fromSelection:(PDFSelection *)initialSelection startInSelection:(BOOL)startInSelection;
213 - (PDFSelection *)_nextMatchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOOL)wrapFlag fromSelection:(PDFSelection *)initialSelection startInSelection:(BOOL)startInSelection
254 - (NSUInteger)_countMatches:(NSString *)string caseSensitive:(BOOL)caseFlag
611 PDFSelection *selection = [m_wkPDFView.get() _nextMatchFor:string direction:forward caseSensitive:caseFlag wrap:wrapFlag fromSelection:[m_pdfView currentSelection] startInSelection:NO];
612 NSUInteger matchCount = [m_wkPDFView.get() _countMatches:string caseSensitive:caseFlag];
630 NSUInteger matchCount = [m_wkPDFView.get() _countMatches:string caseSensitive:caseFlag];
  /external/webkit/Source/WebKit/wx/
WebFrame.h 153 bool caseSensitive = false, bool wrapSelection = true,
WebFrame.cpp 272 bool wxWebFrame::FindString(const wxString& string, bool forward, bool caseSensitive, bool wrapSelection, bool startInSelection)
275 return m_impl->frame->editor()->findString(string, forward, caseSensitive, wrapSelection, startInSelection);
WebView.cpp 694 bool wxWebView::FindString(const wxString& string, bool forward, bool caseSensitive, bool wrapSelection, bool startInSelection)
697 return m_mainFrame->FindString(string, forward, caseSensitive, wrapSelection, startInSelection);
WebView.h 178 bool caseSensitive = false, bool wrapSelection = true,
  /external/webkit/Source/WebCore/page/
DOMWindow.h 158 bool find(const String&, bool caseSensitive, bool backwards, bool wrap, bool wholeWord, bool searchInFrames, bool showDialog) const;
DOMWindow.cpp 1051 bool DOMWindow::find(const String& string, bool caseSensitive, bool backwards, bool wrap, bool /*wholeWord*/, bool /*searchInFrames*/, bool /*showDialog*/) const
1057 return m_frame->editor()->findString(string, !backwards, caseSensitive, wrap, false);
    [all...]
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebview.cpp     [all...]
  /external/webkit/Source/WebKit/win/
WebView.h 644 BSTR search, BOOL caseSensitive, BOOL highlight, UINT limit, UINT* matches);
    [all...]

Completed in 569 milliseconds

1 2