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

1 2 3

  /external/chromium_org/v8/test/mjsunit/
debug-listbreakpoints.js 67 function clearBreakpoint(dcp, breakpoint_id) {
71 var json_response = dcp.processDebugJSONRequest(request);
75 function setBreakOnException(dcp, type, enabled) {
79 var json_response = dcp.processDebugJSONRequest(request);
83 function testArguments(dcp, success, breakpoint_ids, breakpoint_linenos,
86 var json_response = dcp.processDebugJSONRequest(request);
120 var dcp = exec_state.debugCommandProcessor("unspecified_running_state");
123 testArguments(dcp, true, [ breakpoint1 ], [ first_lineno ], false, false);
125 setBreakOnException(dcp, "all", true);
126 testArguments(dcp, true, [ breakpoint1 ], [ first_lineno ], true, false)
    [all...]
debug-setbreakpoint.js 52 function testArguments(dcp, arguments, success, is_script) {
54 var json_response = dcp.processDebugJSONRequest(request);
73 var dcp = exec_state.debugCommandProcessor("unspecified_running_state");
77 var response = safeEval(dcp.processDebugJSONRequest(request));
82 testArguments(dcp, '{}', false);
83 testArguments(dcp, '{"type":"xx"}', false);
84 testArguments(dcp, '{"type":"function"}', false);
85 testArguments(dcp, '{"type":"script"}', false);
86 testArguments(dcp, '{"target":"f"}', false);
87 testArguments(dcp, '{"type":"xx","target":"xx"}', false)
    [all...]
debug-evaluate.js 47 function testRequest(dcp, arguments, success, result) {
55 var response = safeEval(dcp.processDebugJSONRequest(request));
70 var dcp = exec_state.debugCommandProcessor("unspecified_running_state");
73 testRequest(dcp, void 0, false);
74 testRequest(dcp, '{"expression":"1","global"=true}', false);
75 testRequest(dcp, '{"expression":"a","frame":4}', false);
78 testRequest(dcp, '{"expression":"1+2"}', true, 3);
79 testRequest(dcp, '{"expression":"a+2"}', true, 5);
80 testRequest(dcp, '{"expression":"({\\"a\\":1,\\"b\\":2}).b+2"}', true, 4);
83 testRequest(dcp, '{"expression":"a"}', true, 3)
    [all...]
debug-changebreakpoint.js 48 function testArguments(dcp, arguments, success) {
50 var json_response = dcp.processDebugJSONRequest(request);
63 var dcp = exec_state.debugCommandProcessor("unspecified_running_state");
67 var response = safeEval(dcp.processDebugJSONRequest(request));
70 testArguments(dcp, '{}', false);
71 testArguments(dcp, '{"breakpoint":0,"condition":"false"}', false);
72 testArguments(dcp, '{"breakpoint":' + (breakpoint + 1) + ',"condition":"false"}', false);
73 testArguments(dcp, '{"breakpoint":"xx","condition":"false"}', false);
77 testArguments(dcp, '{' + bp_str + '}', true);
78 testArguments(dcp, '{' + bp_str + ',"enabled":"true"}', true)
    [all...]
debug-clearbreakpoint.js 48 function testArguments(dcp, arguments, success) {
50 var json_response = dcp.processDebugJSONRequest(request);
63 var dcp = exec_state.debugCommandProcessor("unspecified_running_state");
67 var response = safeEval(dcp.processDebugJSONRequest(request));
70 testArguments(dcp, '{}', false);
71 testArguments(dcp, '{"breakpoint":0}', false);
72 testArguments(dcp, '{"breakpoint":' + (breakpoint + 1)+ '}', false);
73 testArguments(dcp, '{"breakpoint":"xx"}', false);
76 testArguments(dcp, '{"breakpoint":' + breakpoint + '}', true);
79 testArguments(dcp, '{"breakpoint":' + breakpoint + '}', false)
    [all...]
debug-setexceptionbreak.js 53 function testArguments(dcp, arguments, success, type, enabled) {
55 var json_response = dcp.processDebugJSONRequest(request);
70 var dcp = exec_state.debugCommandProcessor("unspecified_running_state");
74 var response = safeEval(dcp.processDebugJSONRequest(request));
77 testArguments(dcp, '{}', false);
78 testArguments(dcp, '{"type":0}', false);
84 testArguments(dcp, '{"type":"all"}', true, "all", true);
85 testArguments(dcp, '{"type":"all"}', true, "all", false);
86 testArguments(dcp, '{"type":"uncaught"}', true, "uncaught", true);
87 testArguments(dcp, '{"type":"uncaught"}', true, "uncaught", false)
    [all...]
debug-references.js 47 function testRequest(dcp, arguments, success, count) {
57 var response = safeEval(dcp.processDebugJSONRequest(request));
69 assertEquals(response.running, dcp.isRunning(), request + ' -> expected not running');
76 var dcp = exec_state.debugCommandProcessor("unspecified_running_state");
79 testRequest(dcp, void 0, false);
80 testRequest(dcp, '{"handle":"a"}', false);
81 testRequest(dcp, '{"handle":1}', false);
82 testRequest(dcp, '{"type":"referencedBy"}', false);
83 testRequest(dcp, '{"type":"constructedBy"}', false);
88 var response = safeEval(dcp.processDebugJSONRequest(evaluate_point))
    [all...]
debug-scripts-request.js 48 function testArguments(dcp, arguments, success) {
50 var json_response = dcp.processDebugJSONRequest(request);
63 var dcp = exec_state.debugCommandProcessor("unspecified_running_state");
66 testArguments(dcp, '{"types":"xx"}', false);
69 testArguments(dcp, '{}', true);
70 testArguments(dcp, '{"types":1}', true);
71 testArguments(dcp, '{"types":2}', true);
72 testArguments(dcp, '{"types":4}', true);
73 testArguments(dcp, '{"types":7}', true);
74 testArguments(dcp, '{"types":255}', true)
    [all...]
debug-suspend.js 50 var dcp = exec_state.debugCommandProcessor(true);
52 assertTrue(dcp.isRunning());
55 var backtrace_response = safeEval(dcp.processDebugJSONRequest(backtrace_request));
61 assertTrue(dcp.isRunning());
64 var suspend_response = safeEval(dcp.processDebugJSONRequest(suspend_request));
70 assertFalse(dcp.isRunning());
debug-backtrace.js 96 var dcp;
98 dcp = exec_state.debugCommandProcessor(false);
103 var resp = dcp.processDebugJSONRequest(json);
127 response = new ParsedResponse(dcp.processDebugJSONRequest(json));
145 response = new ParsedResponse(dcp.processDebugJSONRequest(json));
162 response = new ParsedResponse(dcp.processDebugJSONRequest(json));
177 response = new ParsedResponse(dcp.processDebugJSONRequest(json));
191 response = new ParsedResponse(dcp.processDebugJSONRequest(json));
202 response = new ParsedResponse(dcp.processDebugJSONRequest(json));
210 response = new ParsedResponse(dcp.processDebugJSONRequest(json))
    [all...]
debug-version.js 49 var dcp = exec_state.debugCommandProcessor(true);
51 assertTrue(dcp.isRunning());
54 var version_response = safeEval(dcp.processDebugJSONRequest(version_request));
debug-clearbreakpointgroup.js 48 function testArguments(dcp, arguments, success) {
50 var json_response = dcp.processDebugJSONRequest(request);
63 var dcp = exec_state.debugCommandProcessor("unspecified_running_state");
66 testArguments(dcp, '{"groupId":1}', true);
  /external/v8/test/mjsunit/
debug-listbreakpoints.js 67 function clearBreakpoint(dcp, breakpoint_id) {
71 var json_response = dcp.processDebugJSONRequest(request);
75 function setBreakOnException(dcp, type, enabled) {
79 var json_response = dcp.processDebugJSONRequest(request);
83 function testArguments(dcp, success, breakpoint_ids, breakpoint_linenos,
86 var json_response = dcp.processDebugJSONRequest(request);
120 var dcp = exec_state.debugCommandProcessor("unspecified_running_state");
123 testArguments(dcp, true, [ breakpoint1 ], [ first_lineno ], false, false);
125 setBreakOnException(dcp, "all", true);
126 testArguments(dcp, true, [ breakpoint1 ], [ first_lineno ], true, false)
    [all...]
debug-setbreakpoint.js 52 function testArguments(dcp, arguments, success, is_script) {
54 var json_response = dcp.processDebugJSONRequest(request);
73 var dcp = exec_state.debugCommandProcessor("unspecified_running_state");
77 var response = safeEval(dcp.processDebugJSONRequest(request));
82 testArguments(dcp, '{}', false);
83 testArguments(dcp, '{"type":"xx"}', false);
84 testArguments(dcp, '{"type":"function"}', false);
85 testArguments(dcp, '{"type":"script"}', false);
86 testArguments(dcp, '{"target":"f"}', false);
87 testArguments(dcp, '{"type":"xx","target":"xx"}', false)
    [all...]
debug-evaluate.js 47 function testRequest(dcp, arguments, success, result) {
55 var response = safeEval(dcp.processDebugJSONRequest(request));
70 var dcp = exec_state.debugCommandProcessor("unspecified_running_state");
73 testRequest(dcp, void 0, false);
74 testRequest(dcp, '{"expression":"1","global"=true}', false);
75 testRequest(dcp, '{"expression":"a","frame":4}', false);
78 testRequest(dcp, '{"expression":"1+2"}', true, 3);
79 testRequest(dcp, '{"expression":"a+2"}', true, 5);
80 testRequest(dcp, '{"expression":"({\\"a\\":1,\\"b\\":2}).b+2"}', true, 4);
83 testRequest(dcp, '{"expression":"a"}', true, 3)
    [all...]
debug-changebreakpoint.js 48 function testArguments(dcp, arguments, success) {
50 var json_response = dcp.processDebugJSONRequest(request);
63 var dcp = exec_state.debugCommandProcessor("unspecified_running_state");
67 var response = safeEval(dcp.processDebugJSONRequest(request));
70 testArguments(dcp, '{}', false);
71 testArguments(dcp, '{"breakpoint":0,"condition":"false"}', false);
72 testArguments(dcp, '{"breakpoint":' + (breakpoint + 1) + ',"condition":"false"}', false);
73 testArguments(dcp, '{"breakpoint":"xx","condition":"false"}', false);
77 testArguments(dcp, '{' + bp_str + '}', true);
78 testArguments(dcp, '{' + bp_str + ',"enabled":"true"}', true)
    [all...]
debug-clearbreakpoint.js 48 function testArguments(dcp, arguments, success) {
50 var json_response = dcp.processDebugJSONRequest(request);
63 var dcp = exec_state.debugCommandProcessor("unspecified_running_state");
67 var response = safeEval(dcp.processDebugJSONRequest(request));
70 testArguments(dcp, '{}', false);
71 testArguments(dcp, '{"breakpoint":0}', false);
72 testArguments(dcp, '{"breakpoint":' + (breakpoint + 1)+ '}', false);
73 testArguments(dcp, '{"breakpoint":"xx"}', false);
76 testArguments(dcp, '{"breakpoint":' + breakpoint + '}', true);
79 testArguments(dcp, '{"breakpoint":' + breakpoint + '}', false)
    [all...]
debug-setexceptionbreak.js 53 function testArguments(dcp, arguments, success, type, enabled) {
55 var json_response = dcp.processDebugJSONRequest(request);
70 var dcp = exec_state.debugCommandProcessor("unspecified_running_state");
74 var response = safeEval(dcp.processDebugJSONRequest(request));
77 testArguments(dcp, '{}', false);
78 testArguments(dcp, '{"type":0}', false);
84 testArguments(dcp, '{"type":"all"}', true, "all", true);
85 testArguments(dcp, '{"type":"all"}', true, "all", false);
86 testArguments(dcp, '{"type":"uncaught"}', true, "uncaught", true);
87 testArguments(dcp, '{"type":"uncaught"}', true, "uncaught", false)
    [all...]
debug-references.js 47 function testRequest(dcp, arguments, success, count) {
57 var response = safeEval(dcp.processDebugJSONRequest(request));
69 assertEquals(response.running, dcp.isRunning(), request + ' -> expected not running');
76 var dcp = exec_state.debugCommandProcessor("unspecified_running_state");
79 testRequest(dcp, void 0, false);
80 testRequest(dcp, '{"handle":"a"}', false);
81 testRequest(dcp, '{"handle":1}', false);
82 testRequest(dcp, '{"type":"referencedBy"}', false);
83 testRequest(dcp, '{"type":"constructedBy"}', false);
88 var response = safeEval(dcp.processDebugJSONRequest(evaluate_point))
    [all...]
debug-scripts-request.js 48 function testArguments(dcp, arguments, success) {
50 var json_response = dcp.processDebugJSONRequest(request);
63 var dcp = exec_state.debugCommandProcessor("unspecified_running_state");
66 testArguments(dcp, '{"types":"xx"}', false);
69 testArguments(dcp, '{}', true);
70 testArguments(dcp, '{"types":1}', true);
71 testArguments(dcp, '{"types":2}', true);
72 testArguments(dcp, '{"types":4}', true);
73 testArguments(dcp, '{"types":7}', true);
74 testArguments(dcp, '{"types":255}', true)
    [all...]
debug-suspend.js 50 var dcp = exec_state.debugCommandProcessor(true);
52 assertTrue(dcp.isRunning());
55 var backtrace_response = safeEval(dcp.processDebugJSONRequest(backtrace_request));
61 assertTrue(dcp.isRunning());
64 var suspend_response = safeEval(dcp.processDebugJSONRequest(suspend_request));
70 assertFalse(dcp.isRunning());
debug-backtrace.js 96 var dcp;
98 dcp = exec_state.debugCommandProcessor(false);
103 var resp = dcp.processDebugJSONRequest(json);
127 response = new ParsedResponse(dcp.processDebugJSONRequest(json));
145 response = new ParsedResponse(dcp.processDebugJSONRequest(json));
162 response = new ParsedResponse(dcp.processDebugJSONRequest(json));
177 response = new ParsedResponse(dcp.processDebugJSONRequest(json));
191 response = new ParsedResponse(dcp.processDebugJSONRequest(json));
202 response = new ParsedResponse(dcp.processDebugJSONRequest(json));
210 response = new ParsedResponse(dcp.processDebugJSONRequest(json))
    [all...]
debug-version.js 49 var dcp = exec_state.debugCommandProcessor(true);
51 assertTrue(dcp.isRunning());
54 var version_response = safeEval(dcp.processDebugJSONRequest(version_request));
debug-clearbreakpointgroup.js 48 function testArguments(dcp, arguments, success) {
50 var json_response = dcp.processDebugJSONRequest(request);
63 var dcp = exec_state.debugCommandProcessor("unspecified_running_state");
66 testArguments(dcp, '{"groupId":1}', true);
  /external/chromium_org/v8/test/mjsunit/regress/
regress-94873.js 34 var dcp = state.debugCommandProcessor(false);
36 var response = dcp.processDebugJSONRequest(request);

Completed in 305 milliseconds

1 2 3