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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/page/
Console.cpp 78 InspectorInstrumentation::addMessageToConsole(page, ConsoleAPIMessageSource, type, level, message, state, arguments);
144 InspectorInstrumentation::consoleCount(page(), state, arguments);
149 InspectorInstrumentation::consoleTimeStamp(m_frame, arguments);
160 if (!InspectorInstrumentation::profilerEnabled(page))
165 resolvedTitle = InspectorInstrumentation::getCurrentUserInitiatedProfileName(page, true);
171 InspectorInstrumentation::addStartProfilingMessageToConsole(page, resolvedTitle, lastCaller.lineNumber(), lastCaller.sourceURL());
180 if (!InspectorInstrumentation::profilerEnabled(page))
188 InspectorInstrumentation::addProfile(page, profile, callStack);
194 InspectorInstrumentation::startConsoleTiming(m_frame, title);
202 InspectorInstrumentation::stopConsoleTiming(m_frame, title, callStack.release())
    [all...]
DOMTimer.cpp 32 #include "core/inspector/InspectorInstrumentation.h"
74 InspectorInstrumentation::didInstallTimer(context, timeoutID, timeout, singleShot);
81 InspectorInstrumentation::didRemoveTimer(context, timeoutID);
120 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willFireTimer(context, m_timeoutID);
133 InspectorInstrumentation::didFireTimer(cookie);
146 InspectorInstrumentation::didFireTimer(cookie);
Chrome.cpp 29 #include "core/inspector/InspectorInstrumentation.h"
81 InspectorInstrumentation::didScroll(m_page);
224 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willRunJavaScriptDialog(m_page, message);
226 InspectorInstrumentation::didRunJavaScriptDialog(cookie);
248 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willRunJavaScriptDialog(m_page, displayMessage);
250 InspectorInstrumentation::didRunJavaScriptDialog(cookie);
266 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willRunJavaScriptDialog(m_page, displayMessage);
268 InspectorInstrumentation::didRunJavaScriptDialog(cookie);
285 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willRunJavaScriptDialog(m_page, displayPrompt);
287 InspectorInstrumentation::didRunJavaScriptDialog(cookie)
    [all...]
PageConsole.cpp 87 InspectorInstrumentation::addMessageToConsole(page, source, LogMessageType, level, message, callStack, requestIdentifier);
89 InspectorInstrumentation::addMessageToConsole(page, source, LogMessageType, level, message, url, lineNumber, columnNumber, state, requestIdentifier);
Screen.cpp 33 #include "core/inspector/InspectorInstrumentation.h"
57 InspectorInstrumentation::applyScreenHeightOverride(m_frame, &height);
69 InspectorInstrumentation::applyScreenWidthOverride(m_frame, &width);
  /external/chromium_org/third_party/WebKit/Source/core/loader/
ResourceLoadNotifier.cpp 34 #include "core/inspector/InspectorInstrumentation.h"
53 InspectorInstrumentation::willSendRequest(m_frame, identifier, loader, request, redirectResponse, initiatorInfo);
60 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willReceiveResourceResponse(m_frame, identifier, r);
62 InspectorInstrumentation::didReceiveResourceResponse(cookie, identifier, loader, r, resourceLoader);
69 InspectorInstrumentation::didReceiveData(m_frame, identifier, data, dataLength, encodedDataLength);
78 InspectorInstrumentation::didFinishLoading(m_frame, identifier, loader, finishTime);
85 InspectorInstrumentation::didFailLoading(m_frame, identifier, loader, error);
DocumentThreadableLoader.cpp 36 #include "core/inspector/InspectorInstrumentation.h"
281 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willReceiveResourceResponse(m_document->frame(), identifier, response);
282 InspectorInstrumentation::didReceiveResourceResponse(cookie, identifier, loader, response, 0);
327 InspectorInstrumentation::didReceiveData(m_document->frame(), identifier, 0, 0, dataLength);
350 InspectorInstrumentation::didFinishLoading(m_document->frame(), identifier, m_document->frame()->loader()->documentLoader(), finishTime);
361 InspectorInstrumentation::didFailLoading(m_document->frame(), identifier, m_document->frame()->loader()->documentLoader(), error);
395 InspectorInstrumentation::didFailLoading(m_document->frame(), identifier, m_document->frame()->loader()->documentLoader(), error);
428 InspectorInstrumentation::documentThreadableLoaderStartedLoadingForClient(m_document, identifier, m_client);
449 InspectorInstrumentation::documentThreadableLoaderStartedLoadingForClient(m_document, identifier, m_client);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ScriptedAnimationController.cpp 31 #include "core/inspector/InspectorInstrumentation.h"
71 InspectorInstrumentation::didRequestAnimationFrame(m_document, id);
83 InspectorInstrumentation::didCancelAnimationFrame(m_document, id);
110 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willFireAnimationFrame(m_document, callback->m_id);
115 InspectorInstrumentation::didFireAnimationFrame(cookie);
NamedFlowCollection.cpp 37 #include "core/inspector/InspectorInstrumentation.h"
85 InspectorInstrumentation::didCreateNamedFlow(document(), newFlow.get());
99 InspectorInstrumentation::willRemoveNamedFlow(document(), namedFlow);
DeviceOrientationController.cpp 31 #include "core/inspector/InspectorInstrumentation.h"
51 orientation = InspectorInstrumentation::overrideDeviceOrientation(m_page, orientation);
  /external/chromium_org/third_party/WebKit/Source/core/workers/
Worker.cpp 36 #include "core/inspector/InspectorInstrumentation.h"
122 InspectorInstrumentation::didReceiveScriptResponse(scriptExecutionContext(), identifier);
131 if (InspectorInstrumentation::shouldPauseDedicatedWorkerOnStart(scriptExecutionContext()))
134 InspectorInstrumentation::scriptImported(scriptExecutionContext(), m_scriptLoader->identifier(), m_scriptLoader->script());
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorInstrumentationCustomInl.h 36 namespace InspectorInstrumentation {
69 } // namespace InspectorInstrumentation
InspectorInstrumentation.h 86 namespace InspectorInstrumentation {
115 } // namespace InspectorInstrumentation
135 namespace InspectorInstrumentation {
169 } // namespace InspectorInstrumentation
InjectedScriptBase.cpp 37 #include "core/inspector/InspectorInstrumentation.h"
77 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willCallFunction(scriptExecutionContext, name(), 1);
93 InspectorInstrumentation::didCallFunction(cookie);
InspectorInstrumentation.cpp 32 #include "core/inspector/InspectorInstrumentation.h"
53 namespace InspectorInstrumentation {
88 namespace InspectorInstrumentation {
227 } // namespace InspectorInstrumentation
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8WorkerGlobalScopeEventListener.cpp 42 #include "core/inspector/InspectorInstrumentation.h"
89 if (InspectorInstrumentation::timelineAgentEnabled(context)) {
97 cookie = InspectorInstrumentation::willCallFunction(context, resourceName, lineNumber);
103 InspectorInstrumentation::didCallFunction(cookie);
ScriptCallStackFactory.cpp 38 #include "core/inspector/InspectorInstrumentation.h"
111 if (InspectorInstrumentation::hasFrontends()) {
113 if (InspectorInstrumentation::consoleAgentEnabled(scriptExecutionContext))
  /external/chromium_org/third_party/WebKit/Source/core/
inspector_instrumentation_sources.target.darwin-arm.mk 21 $(gyp_shared_intermediate_dir)/blink/InspectorCanvasInstrumentationInl.h: $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/CodeGeneratorInstrumentation.py $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl $(GYP_TARGET_DEPENDENCIES)
22 @echo "Gyp action: Generating Inspector instrumentation code from InspectorInstrumentation.idl ($@)"
23 $(hide)cd $(gyp_local_path)/third_party/WebKit/Source/core; mkdir -p $(gyp_shared_intermediate_dir)/blink; python inspector/CodeGeneratorInstrumentation.py inspector/InspectorInstrumentation.idl --output_dir "$(gyp_shared_intermediate_dir)/blink"
inspector_instrumentation_sources.target.darwin-mips.mk 21 $(gyp_shared_intermediate_dir)/blink/InspectorCanvasInstrumentationInl.h: $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/CodeGeneratorInstrumentation.py $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl $(GYP_TARGET_DEPENDENCIES)
22 @echo "Gyp action: Generating Inspector instrumentation code from InspectorInstrumentation.idl ($@)"
23 $(hide)cd $(gyp_local_path)/third_party/WebKit/Source/core; mkdir -p $(gyp_shared_intermediate_dir)/blink; python inspector/CodeGeneratorInstrumentation.py inspector/InspectorInstrumentation.idl --output_dir "$(gyp_shared_intermediate_dir)/blink"
inspector_instrumentation_sources.target.darwin-x86.mk 21 $(gyp_shared_intermediate_dir)/blink/InspectorCanvasInstrumentationInl.h: $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/CodeGeneratorInstrumentation.py $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl $(GYP_TARGET_DEPENDENCIES)
22 @echo "Gyp action: Generating Inspector instrumentation code from InspectorInstrumentation.idl ($@)"
23 $(hide)cd $(gyp_local_path)/third_party/WebKit/Source/core; mkdir -p $(gyp_shared_intermediate_dir)/blink; python inspector/CodeGeneratorInstrumentation.py inspector/InspectorInstrumentation.idl --output_dir "$(gyp_shared_intermediate_dir)/blink"
inspector_instrumentation_sources.target.linux-arm.mk 21 $(gyp_shared_intermediate_dir)/blink/InspectorCanvasInstrumentationInl.h: $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/CodeGeneratorInstrumentation.py $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl $(GYP_TARGET_DEPENDENCIES)
22 @echo "Gyp action: Generating Inspector instrumentation code from InspectorInstrumentation.idl ($@)"
23 $(hide)cd $(gyp_local_path)/third_party/WebKit/Source/core; mkdir -p $(gyp_shared_intermediate_dir)/blink; python inspector/CodeGeneratorInstrumentation.py inspector/InspectorInstrumentation.idl --output_dir "$(gyp_shared_intermediate_dir)/blink"
inspector_instrumentation_sources.target.linux-mips.mk 21 $(gyp_shared_intermediate_dir)/blink/InspectorCanvasInstrumentationInl.h: $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/CodeGeneratorInstrumentation.py $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl $(GYP_TARGET_DEPENDENCIES)
22 @echo "Gyp action: Generating Inspector instrumentation code from InspectorInstrumentation.idl ($@)"
23 $(hide)cd $(gyp_local_path)/third_party/WebKit/Source/core; mkdir -p $(gyp_shared_intermediate_dir)/blink; python inspector/CodeGeneratorInstrumentation.py inspector/InspectorInstrumentation.idl --output_dir "$(gyp_shared_intermediate_dir)/blink"
inspector_instrumentation_sources.target.linux-x86.mk 21 $(gyp_shared_intermediate_dir)/blink/InspectorCanvasInstrumentationInl.h: $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/CodeGeneratorInstrumentation.py $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl $(GYP_TARGET_DEPENDENCIES)
22 @echo "Gyp action: Generating Inspector instrumentation code from InspectorInstrumentation.idl ($@)"
23 $(hide)cd $(gyp_local_path)/third_party/WebKit/Source/core; mkdir -p $(gyp_shared_intermediate_dir)/blink; python inspector/CodeGeneratorInstrumentation.py inspector/InspectorInstrumentation.idl --output_dir "$(gyp_shared_intermediate_dir)/blink"
  /external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
ElementShadow.cpp 51 InspectorInstrumentation::didPushShadowRoot(shadowHost, shadowRoot.get());
62 InspectorInstrumentation::willPopShadowRoot(shadowHost, oldRoot.get());
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8HTMLCanvasElementCustom.cpp 97 if (InspectorInstrumentation::canvasAgentEnabled(imp->document())) {
100 ScriptObject wrapped = InspectorInstrumentation::wrapCanvas2DRenderingContextForInstrumentation(imp->document(), context);
111 if (InspectorInstrumentation::canvasAgentEnabled(imp->document())) {
114 ScriptObject wrapped = InspectorInstrumentation::wrapWebGLRenderingContextForInstrumentation(imp->document(), glContext);

Completed in 637 milliseconds

1 2 3 4