HomeSort by relevance Sort by last modified time
    Searched refs:InspectorInstrumentation (Results 1 - 25 of 44) sorted by null

1 2

  /external/webkit/Source/WebCore/inspector/
InspectorConsoleInstrumentation.h 34 #include "InspectorInstrumentation.h"
41 inline void InspectorInstrumentation::addMessageToConsole(Page* page, MessageSource source, MessageType type, MessageLevel level, const String& message, PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> callStack)
49 inline void InspectorInstrumentation::addMessageToConsole(Page* page, MessageSource source, MessageType type, MessageLevel level, const String& message, unsigned lineNumber, const String& sourceID)
57 inline void InspectorInstrumentation::consoleCount(Page* page, PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> stack)
65 inline void InspectorInstrumentation::startConsoleTiming(Page* page, const String& title)
73 inline void InspectorInstrumentation::stopConsoleTiming(Page* page, const String& title, PassRefPtr<ScriptCallStack> stack)
81 inline void InspectorInstrumentation::consoleMarkTimeline(Page* page, PassRefPtr<ScriptArguments> arguments)
90 inline void InspectorInstrumentation::addStartProfilingMessageToConsole(Page* page, const String& title, unsigned lineNumber, const String& sourceURL)
98 inline void InspectorInstrumentation::addProfile(Page* page, RefPtr<ScriptProfile> profile, PassRefPtr<ScriptCallStack> callStack)
106 inline bool InspectorInstrumentation::profilerEnabled(Page* page
    [all...]
InspectorInstrumentation.cpp 32 #include "InspectorInstrumentation.h"
69 HashMap<Page*, InspectorAgent*>& InspectorInstrumentation::inspectorAgents()
75 int InspectorInstrumentation::s_frontendCounter = 0;
94 void InspectorInstrumentation::didClearWindowObjectInWorldImpl(InspectorAgent* inspectorAgent, Frame* frame, DOMWrapperWorld* world)
101 void InspectorInstrumentation::inspectedPageDestroyedImpl(InspectorAgent* inspectorAgent)
106 void InspectorInstrumentation::willInsertDOMNodeImpl(InspectorAgent* inspectorAgent, Node* node, Node* parent)
114 void InspectorInstrumentation::didInsertDOMNodeImpl(InspectorAgent* inspectorAgent, Node* node)
124 void InspectorInstrumentation::willRemoveDOMNodeImpl(InspectorAgent* inspectorAgent, Node* node)
132 void InspectorInstrumentation::didRemoveDOMNodeImpl(InspectorAgent* inspectorAgent, Node* node)
142 void InspectorInstrumentation::willModifyDOMAttrImpl(InspectorAgent* inspectorAgent, Element* element
    [all...]
InspectorInstrumentation.h 71 class InspectorInstrumentation {
317 inline void InspectorInstrumentation::didClearWindowObjectInWorld(Frame* frame, DOMWrapperWorld* world)
325 inline void InspectorInstrumentation::inspectedPageDestroyed(Page* page)
333 inline void InspectorInstrumentation::willInsertDOMNode(Document* document, Node* node, Node* parent)
341 inline void InspectorInstrumentation::didInsertDOMNode(Document* document, Node* node)
349 inline void InspectorInstrumentation::willRemoveDOMNode(Document* document, Node* node)
359 inline void InspectorInstrumentation::willModifyDOMAttr(Document* document, Element* element)
367 inline void InspectorInstrumentation::didModifyDOMAttr(Document* document, Element* element)
375 inline void InspectorInstrumentation::didInvalidateStyleAttr(Document* document, Node* node)
383 inline void InspectorInstrumentation::mouseDidMoveOverElement(Page* page, const HitTestResult& result, unsigned modifierFlags
    [all...]
InspectorDatabaseInstrumentation.h 35 #include "InspectorInstrumentation.h"
41 inline void InspectorInstrumentation::didOpenDatabase(ScriptExecutionContext* context, PassRefPtr<Database> database, const String& domain, const String& name, const String& version)
WorkerInspectorController.h 48 class InspectorInstrumentation;
InspectorController.cpp 48 #include "InspectorInstrumentation.h"
110 if (!InspectorInstrumentation::hasFrontends())
112 InspectorInstrumentation::frontendCreated();
161 InspectorInstrumentation::frontendDeleted();
162 if (!InspectorInstrumentation::hasFrontends())
InspectorAgent.cpp 49 #include "InspectorInstrumentation.h"
140 InspectorInstrumentation::bindInspectorAgent(m_inspectedPage, this);
179 InspectorInstrumentation::unbindInspectorAgent(m_inspectedPage);
  /external/webkit/Source/WebCore/page/
Console.cpp 149 InspectorInstrumentation::addMessageToConsole(page, source, type, level, message, 0, callStack);
151 InspectorInstrumentation::addMessageToConsole(page, source, type, level, message, lineNumber, sourceURL);
192 InspectorInstrumentation::addMessageToConsole(page, JSMessageSource, type, level, message, arguments, callStack);
252 InspectorInstrumentation::consoleCount(page(), arguments, callStack);
257 InspectorInstrumentation::consoleMarkTimeline(page(), arguments);
269 if (!InspectorInstrumentation::profilerEnabled(page))
274 resolvedTitle = InspectorInstrumentation::getCurrentUserInitiatedProfileName(page, true);
279 InspectorInstrumentation::addStartProfilingMessageToConsole(page, resolvedTitle, lastCaller.lineNumber(), lastCaller.sourceURL());
288 if (!InspectorInstrumentation::profilerEnabled(page))
296 InspectorInstrumentation::addProfile(page, profile, callStack)
    [all...]
DOMTimer.cpp 30 #include "InspectorInstrumentation.h"
95 InspectorInstrumentation::didInstallTimer(context, timer->m_timeoutId, timeout, singleShot);
108 InspectorInstrumentation::didRemoveTimer(context, timeoutId);
123 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willFireTimer(context, m_timeoutId);
137 InspectorInstrumentation::didFireTimer(cookie);
150 InspectorInstrumentation::didFireTimer(cookie);
  /external/webkit/Source/WebCore/loader/mac/
ResourceLoaderMac.mm 39 #include "InspectorInstrumentation.h"
82 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willReceiveResourceData(m_frame.get(), identifier());
84 InspectorInstrumentation::didReceiveResourceData(cookie);
  /external/webkit/Source/WebCore/workers/
AbstractWorker.cpp 41 #include "InspectorInstrumentation.h"
59 InspectorInstrumentation::didDestroyWorker(scriptExecutionContext(), asID());
SharedWorker.cpp 38 #include "InspectorInstrumentation.h"
67 InspectorInstrumentation::didCreateWorker(context, worker->asID(), scriptURL.string(), true);
Worker.cpp 43 #include "InspectorInstrumentation.h"
73 InspectorInstrumentation::didCreateWorker(context, worker->asID(), scriptURL.string(), false);
135 InspectorInstrumentation::scriptImported(scriptExecutionContext(), m_scriptLoader->identifier(), m_scriptLoader->script());
  /external/webkit/Source/WebCore/loader/
ResourceLoadNotifier.cpp 38 #include "InspectorInstrumentation.h"
100 InspectorInstrumentation::didFailLoading(m_frame, loader->identifier(), error);
119 InspectorInstrumentation::willSendRequest(m_frame, identifier, loader, request, redirectResponse);
128 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willReceiveResourceResponse(m_frame, identifier, r);
130 InspectorInstrumentation::didReceiveResourceResponse(cookie, identifier, loader, r);
137 InspectorInstrumentation::didReceiveContentLength(m_frame, identifier, dataLength, encodedDataLength);
144 InspectorInstrumentation::didFinishLoading(m_frame, identifier, finishTime);
MainResourceLoader.cpp 43 #include "InspectorInstrumentation.h"
267 InspectorInstrumentation::continueWithPolicyDownload(m_frame.get(), documentLoader(), identifier(), r);
275 InspectorInstrumentation::continueWithPolicyIgnore(m_frame.get(), documentLoader(), identifier(), r);
362 InspectorInstrumentation::continueAfterXFrameOptionsDenied(m_frame.get(), documentLoader(), identifier(), r);
ResourceLoader.cpp 39 #include "InspectorInstrumentation.h"
438 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willReceiveResourceData(m_frame.get(), identifier());
440 InspectorInstrumentation::didReceiveResourceData(cookie);
  /external/webkit/Source/WebCore/websockets/
WebSocketChannel.cpp 39 #include "InspectorInstrumentation.h"
78 InspectorInstrumentation::didCreateWebSocket(m_context, m_identifier, url, m_context->url());
129 InspectorInstrumentation::didCloseWebSocket(m_context, m_identifier);
156 InspectorInstrumentation::willSendWebSocketHandshakeRequest(m_context, m_identifier, m_handshake.clientHandshakeRequest());
168 InspectorInstrumentation::didCloseWebSocket(m_context, m_identifier);
283 InspectorInstrumentation::didReceiveWebSocketHandshakeResponse(m_context, m_identifier, m_handshake.serverHandshakeResponse());
  /external/webkit/Source/WebCore/loader/appcache/
ApplicationCacheGroup.cpp 43 #include "InspectorInstrumentation.h"
402 InspectorInstrumentation::updateApplicationCacheStatus(m_frame);
413 InspectorInstrumentation::updateApplicationCacheStatus(m_frame);
479 InspectorInstrumentation::willSendRequest(m_frame, m_currentResourceIdentifier, m_frame->loader()->documentLoader(), request, redirectResponse);
488 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willReceiveResourceResponse(m_frame, m_currentResourceIdentifier, response);
489 InspectorInstrumentation::didReceiveResourceResponse(cookie, m_currentResourceIdentifier, loader, response);
561 InspectorInstrumentation::didReceiveContentLength(m_frame, m_currentResourceIdentifier, length, 0);
580 InspectorInstrumentation::didFinishLoading(m_frame, m_currentResourceIdentifier, finishTime);
621 InspectorInstrumentation::didFailLoading(m_frame, m_currentResourceIdentifier, error);
    [all...]
  /external/webkit/Source/WebCore/dom/
ContainerNode.cpp 36 #include "InspectorInstrumentation.h"
161 InspectorInstrumentation::willInsertDOMNode(document(), child, this);
234 InspectorInstrumentation::willInsertDOMNode(document(), child, this);
311 InspectorInstrumentation::willInsertDOMNode(document(), child.get(), this);
610 InspectorInstrumentation::willInsertDOMNode(document(), child, this);
654 InspectorInstrumentation::willInsertDOMNode(document(), newChild.get(), this);
    [all...]
EventDispatcher.cpp 33 #include "InspectorInstrumentation.h"
292 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willDispatchEvent(m_node->document(), *event, windowContext.window(), m_node.get(), m_ancestors);
367 InspectorInstrumentation::didDispatchEvent(cookie);
  /external/webkit/Source/WebKit/chromium/src/
SharedWorkerRepository.cpp 39 #include "InspectorInstrumentation.h"
165 InspectorInstrumentation::scriptImported(m_worker->scriptExecutionContext(), m_scriptLoader.identifier(), m_scriptLoader.script());
  /external/webkit/Source/WebCore/html/parser/
HTMLDocumentParser.cpp 40 #include "InspectorInstrumentation.h"
254 // We tell the InspectorInstrumentation about every pump, even if we
259 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willWriteHTML(document(), m_input.current().length(), m_tokenizer->lineNumber());
299 InspectorInstrumentation::didWriteHTML(cookie, m_tokenizer->lineNumber());
  /external/webkit/Source/WebCore/bindings/v8/
V8Proxy.cpp 43 #include "InspectorInstrumentation.h"
342 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willEvaluateScript(m_frame, source.url().isNull() ? String() : source.url().string(), source.startLine());
377 InspectorInstrumentation::didEvaluateScript(cookie);
469 if (InspectorInstrumentation::hasFrontends()) {
477 cookie = InspectorInstrumentation::willCallFunction(m_frame, resourceName, lineNumber);
484 InspectorInstrumentation::didCallFunction(cookie);
  /external/webkit/Source/WebCore/xml/
XMLHttpRequest.cpp 38 #include "InspectorInstrumentation.h"
355 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willChangeXHRReadyState(scriptExecutionContext(), this);
360 InspectorInstrumentation::didChangeXHRReadyState(cookie);
363 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willLoadXHR(scriptExecutionContext(), this);
365 InspectorInstrumentation::didLoadXHR(cookie);
997 InspectorInstrumentation::resourceRetrievedByXMLHttpRequest(scriptExecutionContext(), identifier, m_responseBuilder.toStringPreserveCapacity(), m_url, m_lastSendURL, m_lastSendLineNumber);
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
ScriptController.cpp 31 #include "InspectorInstrumentation.h"
139 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willEvaluateScript(m_frame, sourceURL, sourceCode.startLine());
145 InspectorInstrumentation::didEvaluateScript(cookie);

Completed in 823 milliseconds

1 2