HomeSort by relevance Sort by last modified time
    Searched defs:activeMatch (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentMarker.cpp 73 bool activeMatch() const { return m_match; }
134 DocumentMarker::DocumentMarker(unsigned startOffset, unsigned endOffset, bool activeMatch)
138 , m_details(DocumentMarkerTextMatch::instanceFor(activeMatch))
170 bool DocumentMarker::activeMatch() const
173 return details->activeMatch();
  /external/chromium_org/third_party/WebKit/Source/web/tests/
TextFinderTest.cpp 79 Range* activeMatch = textFinder().activeMatch();
80 ASSERT_TRUE(activeMatch);
81 EXPECT_EQ(textNode, activeMatch->startContainer());
82 EXPECT_EQ(4, activeMatch->startOffset());
83 EXPECT_EQ(textNode, activeMatch->endContainer());
84 EXPECT_EQ(10, activeMatch->endOffset());
88 activeMatch = textFinder().activeMatch();
89 ASSERT_TRUE(activeMatch);
    [all...]
WebFrameTest.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
TextFinder.h 81 WebCore::Range* activeMatch() const { return m_activeMatch.get(); }
147 void addMarker(WebCore::Range*, bool activeMatch);
WebLocalFrameImpl.cpp     [all...]

Completed in 298 milliseconds