/external/webkit/Source/JavaScriptCore/wtf/text/ |
D | 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); }
|
D | WTFString.h | 188 size_t find(const char* str, unsigned start, bool caseSensitive) const in find() argument 189 { return caseSensitive ? find(str, start) : findIgnoringCase(str, start); } in find() 190 size_t find(const String& str, unsigned start, bool caseSensitive) const in find() argument 191 { return caseSensitive ? find(str, start) : findIgnoringCase(str, start); } in find() 192 size_t reverseFind(const String& str, unsigned start, bool caseSensitive) const in reverseFind() argument 193 { return caseSensitive ? reverseFind(str, start) : reverseFindIgnoringCase(str, start); } in reverseFind() 200 …bool contains(const char* str, bool caseSensitive = true) const { return find(str, 0, caseSensitiv… 201 …bool contains(const String& str, bool caseSensitive = true) const { return find(str, 0, caseSensit… 203 bool startsWith(const String& s, bool caseSensitive = true) const 204 { return m_impl ? m_impl->startsWith(s.impl(), caseSensitive) : s.isEmpty(); } [all …]
|
D | StringImpl.h | 308 …bool startsWith(StringImpl* str, bool caseSensitive = true) { return (caseSensitive ? reverseFind(… 309 bool endsWith(StringImpl*, bool caseSensitive = true);
|
D | StringImpl.cpp | 764 bool StringImpl::endsWith(StringImpl* m_data, bool caseSensitive) in endsWith() argument 769 return (caseSensitive ? find(m_data, start) : findIgnoringCase(m_data, start)) == start; in endsWith()
|
/external/webkit/Source/WebCore/loader/ |
D | FTPDirectoryParser.h | 135 caseSensitive = false; in clear() 150 bool caseSensitive; // file system is definitely case insensitive member
|
D | FTPDirectoryParser.cpp | 487 result.caseSensitive = true; in parseOneFTPLine() 735 result.caseSensitive = true; in parseOneFTPLine() 822 result.caseSensitive = true; in parseOneFTPLine() 963 result.caseSensitive = true; in parseOneFTPLine() 1159 result.caseSensitive = false; in parseOneFTPLine() 1371 result.caseSensitive = true; in parseOneFTPLine()
|
/external/webkit/Source/WebKit/mac/WebView/ |
D | WebDocumentPrivate.h | 83 - (BOOL)searchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOO…
|
D | WebDocument.h | 99 - (BOOL)searchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOO…
|
D | WebViewPrivate.h | 563 - (WebNSUInteger)markAllMatchesForText:(NSString *)string caseSensitive:(BOOL)caseFlag highlight:(B… 564 - (WebNSUInteger)countMatchesForText:(NSString *)string caseSensitive:(BOOL)caseFlag highlight:(BOO… 578 - (BOOL)searchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOO…
|
D | WebView.h | 508 - (BOOL)searchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOO…
|
D | WebPDFView.mm | 88 - (PDFSelection *)_nextMatchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)case… 597 - (BOOL)searchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOO… 599 …return [self searchFor:string direction:forward caseSensitive:caseFlag wrap:wrapFlag startInSelect… 604 - (BOOL)searchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOO… 606 …PDFSelection *selection = [self _nextMatchFor:string direction:forward caseSensitive:caseFlag wrap… 653 …PDFSelection *nextMatch = [self _nextMatchFor:string direction:YES caseSensitive:!(options & WebFi… 1192 - (PDFSelection *)_nextMatchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)case…
|
/external/webkit/Source/WebKit2/UIProcess/API/mac/ |
D | PDFViewController.mm | 117 - (PDFSelection *)_nextMatchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)case… 213 - (PDFSelection *)_nextMatchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)case… 254 - (NSUInteger)_countMatches:(NSString *)string caseSensitive:(BOOL)caseFlag 611 …selection = [m_wkPDFView.get() _nextMatchFor:string direction:forward caseSensitive:caseFlag wrap:… 612 NSUInteger matchCount = [m_wkPDFView.get() _countMatches:string caseSensitive:caseFlag]; 630 NSUInteger matchCount = [m_wkPDFView.get() _countMatches:string caseSensitive:caseFlag];
|
/external/webkit/Source/WebKit/chromium/public/ |
D | WebPlugin.h | 114 …virtual bool startFind(const WebString& searchText, bool caseSensitive, int identifier) { return f… in startFind() argument
|
/external/webkit/Source/WebKit/win/Interfaces/ |
D | IWebDocument.idl | 114 @method searchFor:direction:caseSensitive:wrap: 121 …- (BOOL)searchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BO… 123 …HRESULT searchFor([in] BSTR str, [in] BOOL forwardDirection, [in] BOOL caseSensitive, [in] BOOL wr…
|
D | IWebViewPrivate.idl | 96 …HRESULT markAllMatchesForText([in] BSTR search, [in] BOOL caseSensitive, [in] BOOL highlight, [in]…
|
D | IWebView.idl | 539 @method searchFor:direction:caseSensitive: 546 …- (BOOL)searchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BO…
|
/external/webkit/Source/WebKit/wx/ |
D | WebFrame.h | 153 bool caseSensitive = false, bool wrapSelection = true,
|
D | WebFrame.cpp | 272 bool wxWebFrame::FindString(const wxString& string, bool forward, bool caseSensitive, bool wrapSele… in FindString() argument 275 …return m_impl->frame->editor()->findString(string, forward, caseSensitive, wrapSelection, startInS… in FindString()
|
D | WebView.cpp | 694 bool wxWebView::FindString(const wxString& string, bool forward, bool caseSensitive, bool wrapSelec… in FindString() argument 697 … return m_mainFrame->FindString(string, forward, caseSensitive, wrapSelection, startInSelection); in FindString()
|
D | WebView.h | 178 bool caseSensitive = false, bool wrapSelection = true,
|
/external/webkit/Source/WebKit/mac/ |
D | WebKit.order | 1609 -[WebView(WebPendingPublic) markAllMatchesForText:caseSensitive:highlight:limit:] 1611 -[WebHTMLView(WebDocumentInternalProtocols) markAllMatchesForText:caseSensitive:limit:] 2514 -[WebView(WebPendingPublic) searchFor:direction:caseSensitive:wrap:startInSelection:] 2515 -[WebHTMLView(WebDocumentPrivateProtocols) searchFor:direction:caseSensitive:wrap:startInSelection:] 2575 -[WebPDFView markAllMatchesForText:caseSensitive:limit:] 2576 -[WebPDFView(FileInternal) _nextMatchFor:direction:caseSensitive:wrap:fromSelection:startInSelectio… 2578 -[WebPDFView searchFor:direction:caseSensitive:wrap:startInSelection:]
|
/external/webkit/Source/WebCore/page/ |
D | DOMWindow.h | 158 …bool find(const String&, bool caseSensitive, bool backwards, bool wrap, bool wholeWord, bool searc…
|
D | DOMWindow.cpp | 1051 bool DOMWindow::find(const String& string, bool caseSensitive, bool backwards, bool wrap, bool /*wh… in find() argument 1057 return m_frame->editor()->findString(string, !backwards, caseSensitive, wrap, false); in find()
|
/external/webkit/Source/WebKit/gtk/webkit/ |
D | webkitwebview.cpp | 4052 …iew_search_text(WebKitWebView* webView, const gchar* string, gboolean caseSensitive, gboolean forw… in webkit_web_view_search_text() argument 4057 TextCaseSensitivity caseSensitivity = caseSensitive ? TextCaseSensitive : TextCaseInsensitive; in webkit_web_view_search_text() 4074 …mark_text_matches(WebKitWebView* webView, const gchar* string, gboolean caseSensitive, guint limit) in webkit_web_view_mark_text_matches() argument 4079 TextCaseSensitivity caseSensitivity = caseSensitive ? TextCaseSensitive : TextCaseInsensitive; in webkit_web_view_mark_text_matches()
|
/external/webkit/Source/WebCore/css/ |
D | CSSStyleSelector.cpp | 2400 bool caseSensitive = !m_documentIsHTML || !htmlAttributeHasCaseInsensitiveValue(attr); in checkOneSelector() local 2404 if (caseSensitive ? sel->value() != value : !equalIgnoringCase(sel->value(), value)) in checkOneSelector() 2415 size_t foundPos = value.find(sel->value(), startSearchAt, caseSensitive); in checkOneSelector() 2430 if (!value.contains(sel->value(), caseSensitive) || sel->value().isEmpty()) in checkOneSelector() 2434 if (!value.startsWith(sel->value(), caseSensitive) || sel->value().isEmpty()) in checkOneSelector() 2438 if (!value.endsWith(sel->value(), caseSensitive) || sel->value().isEmpty()) in checkOneSelector() 2444 if (!value.startsWith(sel->value(), caseSensitive)) in checkOneSelector()
|