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

/external/webkit/Source/WebKit/mac/WebView/
H A DWebDocumentInternal.h65 - (WebNSUInteger)countMatchesForText:(NSString *)string inDOMRange:(DOMRange *)range options:(WebFindOptions)options limit:(WebNSUInteger)limit markMatches:(BOOL)markMatches;
H A DWebViewPrivate.h184 - (WebNSUInteger)countMatchesForText:(NSString *)string options:(WebFindOptions)options highlight:(BOOL)highlight limit:(WebNSUInteger)limit markMatches:(BOOL)markMatches;
185 - (WebNSUInteger)countMatchesForText:(NSString *)string inDOMRange:(DOMRange *)range options:(WebFindOptions)options highlight:(BOOL)highlight limit:(WebNSUInteger)limit markMatches:(BOOL)markMatches;
564 - (WebNSUInteger)countMatchesForText:(NSString *)string caseSensitive:(BOOL)caseFlag highlight:(BOOL)highlight limit:(WebNSUInteger)limit markMatches:(BOOL)markMatches;
H A DWebView.mm2800 return [self countMatchesForText:string options:(caseFlag ? 0 : WebFindOptionsCaseInsensitive) highlight:highlight limit:limit markMatches:YES];
2803 - (NSUInteger)countMatchesForText:(NSString *)string caseSensitive:(BOOL)caseFlag highlight:(BOOL)highlight limit:(NSUInteger)limit markMatches:(BOOL)markMatches
2805 return [self countMatchesForText:string options:(caseFlag ? 0 : WebFindOptionsCaseInsensitive) highlight:highlight limit:limit markMatches:markMatches];
4702 - (NSUInteger)countMatchesForText:(NSString *)string options:(WebFindOptions)options highlight:(BOOL)highlight limit:(NSUInteger)limit markMatches:(BOOL)markMatches
4704 return [self countMatchesForText:string inDOMRange:nil options:options highlight:highlight limit:limit markMatches:markMatches];
4707 - (NSUInteger)countMatchesForText:(NSString *)string inDOMRange:(DOMRange *)range options:(WebFindOptions)options highlight:(BOOL)highlight limit:(NSUInteger)limit markMatches:(BOOL)markMatches
4721 matchCount += [(NSView <WebMultipleTextMatches>*)view countMatchesForText:string inDOMRange:range options:options limit:(limit == 0 ? 0 : limit - matchCount) markMatches:markMatches];
H A DWebPDFView.mm644 - (NSUInteger)countMatchesForText:(NSString *)string inDOMRange:(DOMRange *)range options:(WebFindOptions)options limit:(NSUInteger)limit markMatches:(BOOL)markMatches
H A DWebHTMLView.mm6345 - (NSUInteger)countMatchesForText:(NSString *)string inDOMRange:(DOMRange *)range options:(WebFindOptions)options limit:(NSUInteger)limit markMatches:(BOOL)markMatches
6351 return coreFrame->editor()->countMatchesForText(string, core(range), coreOptions(options), limit, markMatches);
/external/webkit/Source/WebCore/editing/
H A DEditor.h363 unsigned countMatchesForText(const String&, FindOptions, unsigned limit, bool markMatches);
364 unsigned countMatchesForText(const String&, Range*, FindOptions, unsigned limit, bool markMatches);
H A DEditor.cpp3060 unsigned Editor::countMatchesForText(const String& target, FindOptions options, unsigned limit, bool markMatches) function in class:WebCore::Editor
3062 return countMatchesForText(target, 0, options, limit, markMatches);
3065 unsigned Editor::countMatchesForText(const String& target, Range* range, FindOptions options, unsigned limit, bool markMatches) function in class:WebCore::Editor
/external/webkit/Source/WebCore/page/
H A DPage.cpp546 matches += frame->editor()->countMatchesForText(target, options, limit ? (limit - matches) : 0, true);
/external/webkit/Source/WebKit/efl/ewk/
H A Dewk_frame.cpp779 return sd->frame->editor()->countMatchesForText(WTF::String::fromUTF8(string), case_sensitive, limit, true);

Completed in 129 milliseconds