Home
last modified time | relevance | path

Searched refs:caseSensitive (Results 1 – 25 of 45) sorted by relevance

12

/external/webkit/Source/JavaScriptCore/wtf/text/
DAtomicString.h69 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); }
DWTFString.h188 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 …]
DStringImpl.h308 …bool startsWith(StringImpl* str, bool caseSensitive = true) { return (caseSensitive ? reverseFind(…
309 bool endsWith(StringImpl*, bool caseSensitive = true);
DStringImpl.cpp764 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/
DFTPDirectoryParser.h135 caseSensitive = false; in clear()
150 bool caseSensitive; // file system is definitely case insensitive member
DFTPDirectoryParser.cpp487 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/
DWebDocumentPrivate.h83 - (BOOL)searchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOO…
DWebDocument.h99 - (BOOL)searchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOO…
DWebViewPrivate.h563 - (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…
DWebView.h508 - (BOOL)searchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOO…
DWebPDFView.mm88 - (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/
DPDFViewController.mm117 - (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/
DWebPlugin.h114 …virtual bool startFind(const WebString& searchText, bool caseSensitive, int identifier) { return f… in startFind() argument
/external/webkit/Source/WebKit/win/Interfaces/
DIWebDocument.idl114 @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…
DIWebViewPrivate.idl96 …HRESULT markAllMatchesForText([in] BSTR search, [in] BOOL caseSensitive, [in] BOOL highlight, [in]…
DIWebView.idl539 @method searchFor:direction:caseSensitive:
546 …- (BOOL)searchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BO…
/external/webkit/Source/WebKit/wx/
DWebFrame.h153 bool caseSensitive = false, bool wrapSelection = true,
DWebFrame.cpp272 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()
DWebView.cpp694 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()
DWebView.h178 bool caseSensitive = false, bool wrapSelection = true,
/external/webkit/Source/WebKit/mac/
DWebKit.order1609 -[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/
DDOMWindow.h158 …bool find(const String&, bool caseSensitive, bool backwards, bool wrap, bool wholeWord, bool searc…
DDOMWindow.cpp1051 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/
Dwebkitwebview.cpp4052 …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/
DCSSStyleSelector.cpp2400 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()

12