Searched refs:MatchXPathJob (Results 1 – 1 of 1) sorted by relevance
/external/webkit/Source/WebCore/inspector/ |
D | InspectorDOMAgent.cpp | 195 class MatchXPathJob : public WebCore::MatchJob { class 197 MatchXPathJob(Document* document, const String& query) : WebCore::MatchJob(document, query) { } in MatchXPathJob() function in WebCore::__anon9d7ceb9d0111::MatchXPathJob 198 virtual ~MatchXPathJob() { } in ~MatchXPathJob() 227 class MatchPlainTextJob : public MatchXPathJob { 229 MatchPlainTextJob(Document* document, const String& query) : MatchXPathJob(document, query) in MatchPlainTextJob() 822 …m_pendingMatchJobs.append(new MatchXPathJob(document, "//*[starts-with(name(), '" + escapedTagName… in performSearch() 830 …m_pendingMatchJobs.append(new MatchXPathJob(document, "//*[contains(name(), '" + escapedTagNameQue… in performSearch() 839 …m_pendingMatchJobs.append(new MatchXPathJob(document, "//*[contains(@*, '" + escapedQuery + "')]")… in performSearch() 849 …m_pendingMatchJobs.append(new MatchXPathJob(document, "//*[contains(@*, '" + escapedQuery + "')]")… in performSearch() 851 …m_pendingMatchJobs.append(new MatchXPathJob(document, "//*[contains(name(), '" + escapedTagNameQue… in performSearch() [all …]
|