HomeSort by relevance Sort by last modified time
    Searched refs:findString (Results 26 - 50 of 95) sorted by null

12 3 4

  /external/webkit/Source/WebCore/page/
Page.h 209 bool findString(const String&, FindOptions);
211 bool findString(const String&, TextCaseSensitivity, FindDirection, bool shouldWrap);
Page.cpp 497 bool Page::findString(const String& target, TextCaseSensitivity caseSensitivity, FindDirection direction, bool shouldWrap)
499 return findString(target, (caseSensitivity == TextCaseInsensitive ? CaseInsensitive : 0) | (direction == FindDirectionBackward ? Backwards : 0) | (shouldWrap ? WrapAround : 0));
502 bool Page::findString(const String& target, FindOptions options)
511 if (frame->editor()->findString(target, (options & ~WrapAround) | StartInSelection)) {
523 bool found = startFrame->editor()->findString(target, options | WrapAround | StartInSelection);
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
FindController.cpp 91 void FindController::findString(const String& string, FindOptions options, unsigned maxMatchCount)
95 bool found = m_webPage->corePage()->findString(string, core(options));
  /frameworks/av/cmds/stagefright/
SimplePlayer.cpp 114 CHECK(msg->findString("path", &mPath));
298 CHECK(format->findString("mime", &mime));
579 CHECK(format->findString("mime", &mime));
muxer.cpp 96 CHECK(format->findString("mime", &mime));
codec.cpp 93 CHECK(format->findString("mime", &mime));
  /frameworks/av/media/libstagefright/wifi-display/source/
Converter.cpp 61 CHECK(mInputFormat->findString("mime", &mime));
156 CHECK(mInputFormat->findString("mime", &inputMIME));
430 CHECK(mInputFormat->findString("mime", &mime));
WifiDisplaySource.cpp 135 CHECK(msg->findString("iface", &iface));
192 CHECK(msg->findString("detail", &detail));
226 CHECK(msg->findString("client-ip", &mClientInfo.mRemoteIP));
227 CHECK(msg->findString("server-ip", &mClientInfo.mLocalIP));
    [all...]
  /external/skia/legacy/src/views/
SkEvent.cpp 221 const char* value = md.findString(name);
450 const char* idStr = evt->findString("id");
  /external/skia/src/views/
SkEvent.cpp 221 const char* value = md.findString(name);
450 const char* idStr = evt->findString("id");
  /external/webkit/Source/WebCore/editing/
Editor.h 345 bool findString(const String&, FindOptions);
347 bool findString(const String&, bool forward, bool caseFlag, bool wrapFlag, bool startInSelection);
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
DumpRenderTreeSupportQt.h 92 static bool findString(QWebPage* page, const QString& string, const QStringList& optionArray);
  /external/webkit/Tools/DumpRenderTree/qt/
LayoutTestControllerQt.h 174 bool findString(const QString& string, const QStringList& optionArray);
  /external/webkit/Tools/DumpRenderTree/wx/
LayoutTestControllerWx.cpp 575 bool LayoutTestController::findString(JSContextRef context, JSStringRef target, JSObjectRef optionsArray)
  /frameworks/av/media/libstagefright/httplive/
LiveSession.cpp 163 CHECK(msg->findString("url", &url));
879 if (itemMeta->findString("cipher-method", &method)) {
897 if (!itemMeta->findString("cipher-uri", &keyURI)) {
956 if (itemMeta->findString("cipher-iv", &iv)) {
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
DumpRenderTreeSupportGtk.cpp 683 bool DumpRenderTreeSupportGtk::findString(WebKitWebView* webView, const gchar* targetString, WebKitFindOptions findOptions)
685 return core(webView)->findString(String::fromUTF8(targetString), findOptions);
  /external/apache-harmony/regex/src/test/java/org/apache/harmony/tests/java/util/regex/
Pattern2Test.java     [all...]
  /external/skia/legacy/src/core/
SkMetaData.cpp 201 const char* SkMetaData::findString(const char name[]) const
  /external/skia/src/core/
SkMetaData.cpp 201 const char* SkMetaData::findString(const char name[]) const
  /libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/
Pattern2Test.java     [all...]
  /frameworks/av/media/libstagefright/rtsp/
ARTSPConnection.cpp 227 CHECK(msg->findString("url", &url));
413 CHECK(msg->findString("request", &request));
739 CHECK(reply->findString("original-request", &request));
  /frameworks/av/media/libstagefright/
MediaCodec.cpp 347 CHECK(response->findString("name", name));
602 CHECK(msg->findString("componentName", &mComponentName));
722 CHECK(msg->findString("mime", &mime));
912 CHECK(msg->findString("name", &name));
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebPDFView.mm     [all...]
  /external/webkit/Source/WebKit/wx/
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);
  /external/webkit/Tools/DumpRenderTree/
LayoutTestController.h 65 bool findString(JSContextRef, JSStringRef, JSObjectRef optionsArray);

Completed in 1599 milliseconds

12 3 4