Searched defs:debugger (Results 1 - 12 of 12) sorted by relevance

/external/webkit/JavaScriptCore/parser/
H A DParser.h70 PassRefPtr<ParsedNode> Parser::parse(JSGlobalData* globalData, Debugger* debugger, ExecState* debuggerExecState, const SourceCode& source, int* errLine, UString* errMsg) argument
96 if (debugger && !ParsedNode::scopeIsFunction)
97 debugger->sourceParsed(debuggerExecState, source, *errLine, *errMsg);
/external/webkit/WebKitTools/FindSafari/
H A DFindSafari.cpp91 bool debugger = false; local
102 if (!_tcscmp(argv[i], TEXT("/debugger"))) {
103 debugger = true;
157 LPCTSTR* endLines = debugger ? debuggerLines : launchLines;
161 for (unsigned i = 0; i < (debugger ? ARRAYSIZE(debuggerLines) : ARRAYSIZE(launchLines)); ++i) {
/external/webkit/JavaScriptCore/runtime/
H A DExecutable.cpp67 RefPtr<EvalNode> evalNode = exec->globalData().parser->parse<EvalNode>(&exec->globalData(), exec->lexicalGlobalObject()->debugger(), exec, m_source, &errLine, &errMsg);
77 OwnPtr<BytecodeGenerator> generator(new BytecodeGenerator(evalNode.get(), globalObject->debugger(), scopeChain, m_evalCodeBlock->symbolTable(), m_evalCodeBlock));
88 RefPtr<ProgramNode> programNode = exec->globalData().parser->parse<ProgramNode>(&exec->globalData(), exec->lexicalGlobalObject()->debugger(), exec, m_source, &errLine, &errMsg);
98 RefPtr<ProgramNode> programNode = exec->globalData().parser->parse<ProgramNode>(&exec->globalData(), exec->lexicalGlobalObject()->debugger(), exec, m_source, &errLine, &errMsg);
108 OwnPtr<BytecodeGenerator> generator(new BytecodeGenerator(programNode.get(), globalObject->debugger(), scopeChain, &globalObject->symbolTable(), m_programCodeBlock));
129 OwnPtr<BytecodeGenerator> generator(new BytecodeGenerator(body.get(), globalObject->debugger(), scopeChain, m_codeBlock->symbolTable(), m_codeBlock));
194 OwnPtr<BytecodeGenerator> generator(new BytecodeGenerator(newFunctionBody.get(), globalObject->debugger(), scopeChain, newCodeBlock->symbolTable(), newCodeBlock.get()));
219 OwnPtr<BytecodeGenerator> generator(new BytecodeGenerator(newEvalBody.get(), globalObject->debugger(), scopeChain, newCodeBlock->symbolTable(), newCodeBlock.get()));
243 PassRefPtr<FunctionExecutable> FunctionExecutable::fromGlobalCode(const Identifier& functionName, ExecState* exec, Debugger* debugger, const SourceCode& source, int* errLine, UString* errMsg) argument
245 RefPtr<ProgramNode> program = exec->globalData().parser->parse<ProgramNode>(&exec->globalData(), debugger, exe
[all...]
H A DJSGlobalObject.h103 Debugger* debugger; member in struct:JSC::JSGlobalObject::JSGlobalObjectData
237 Debugger* debugger() const { return d()->debugger; } function in class:JSC::JSGlobalObject
238 void setDebugger(Debugger* debugger) { d()->debugger = debugger; } argument
/external/webkit/WebCore/bindings/js/
H A DScriptController.cpp43 #include <debugger/Debugger.h>
190 // Clear the debugger from the current window before setting the new window.
197 attachDebugger(windowShell, page->debugger());
217 attachDebugger(windowShell, page->debugger());
285 void ScriptController::attachDebugger(JSC::Debugger* debugger) argument
288 attachDebugger(iter->second, debugger);
291 void ScriptController::attachDebugger(JSDOMWindowShell* shell, JSC::Debugger* debugger) argument
297 if (debugger)
298 debugger->attach(globalObject);
299 else if (JSC::Debugger* currentDebugger = globalObject->debugger())
[all...]
/external/webkit/WebCore/page/
H A DPage.h205 JSC::Debugger* debugger() const { return m_debugger; } function in class:WebCore::Page
H A DPage.cpp683 void Page::setDebuggerForAllPages(JSC::Debugger* debugger) argument
689 (*it)->setDebugger(debugger);
692 void Page::setDebugger(JSC::Debugger* debugger) argument
694 if (m_debugger == debugger)
697 m_debugger = debugger;
/external/clearsilver/cgi/
H A Dcgi.c486 char *debugger; local
504 if ((debugger = hdf_get_value (cgi->hdf, "Config.Debugger", NULL)) == NULL)
506 debugger = "/usr/local/bin/sudo /usr/local/bin/ddd -display %s %s %d";
511 sprintf(buffer, debugger, display, Argv0, myPid);
/external/v8/src/
H A Dexecution.cc590 // If currently in the debugger don't do any actual preemption but record
591 // that preemption occoured while in the debugger.
630 // Don't stop in debugger functions.
655 // Enter the debugger. Just continue if we fail to enter the debugger.
656 EnterDebugger debugger; local
657 if (debugger.FailedToEnter()) {
H A Ddebug.cc267 // Debugger statement always calls debugger. No need to modify it.
284 // Debugger statement always calls debugger. No need to modify it.
302 // Debugger statement always calls debugger. No need to modify it.
327 // Debugger statement always calls debugger. No need to modify it.
467 // shutting down the debugger as it will leave the break point information in
550 // Default call debugger on uncaught exception.
703 // Execute the boilerplate function in the debugger context.
728 // Return if debugger is already loaded.
732 // JavaScript source code for the debugger.
738 // debugger script
821 EnterDebugger debugger; local
1882 EnterDebugger debugger; local
1983 EnterDebugger debugger; local
2465 EnterDebugger debugger; local
[all...]
/external/webkit/JavaScriptCore/interpreter/
H A DInterpreter.cpp453 if (Debugger* debugger = callFrame->dynamicGlobalObject()->debugger()) {
456 debugger->returnEvent(debuggerCallFrame, codeBlock->ownerExecutable()->sourceID(), codeBlock->ownerExecutable()->lastLine());
458 debugger->didExecuteProgram(debuggerCallFrame, codeBlock->ownerExecutable()->sourceID(), codeBlock->ownerExecutable()->lastLine());
534 if (Debugger* debugger = callFrame->dynamicGlobalObject()->debugger()) {
537 debugger->exception(debuggerCallFrame, codeBlock->ownerExecutable()->sourceID(), codeBlock->lineNumberForBytecodeOffset(callFrame, bytecodeOffset), hasHandler);
864 Debugger* debugger = callFrame->dynamicGlobalObject()->debugger(); local
865 if (!debugger)
[all...]
/external/webkit/JavaScriptCore/bytecompiler/
H A DBytecodeGenerator.cpp205 BytecodeGenerator::BytecodeGenerator(ProgramNode* programNode, const Debugger* debugger, const ScopeChain& scopeChain, SymbolTable* symbolTable, ProgramCodeBlock* codeBlock) argument
206 : m_shouldEmitDebugHooks(!!debugger)
291 BytecodeGenerator::BytecodeGenerator(FunctionBodyNode* functionBody, const Debugger* debugger, const ScopeChain& scopeChain, SymbolTable* symbolTable, CodeBlock* codeBlock) argument
292 : m_shouldEmitDebugHooks(!!debugger)
333 // The debugger currently retrieves the arguments object from an activation rather than pulling
373 BytecodeGenerator::BytecodeGenerator(EvalNode* evalNode, const Debugger* debugger, const ScopeChain& scopeChain, SymbolTable* symbolTable, EvalCodeBlock* codeBlock) argument
374 : m_shouldEmitDebugHooks(!!debugger)

Completed in 190 milliseconds