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

1 2 3

  /external/webkit/JavaScriptCore/runtime/
Completion.h 34 enum ComplType { Normal, Break, Continue, ReturnValue, Throw, Interrupted };
  /external/skia/src/core/
SkAlphaRuns.cpp 32 void SkAlphaRuns::Break(int16_t runs[], uint8_t alpha[], int x, int count)
52 break;
73 break;
77 break;
94 SkAlphaRuns::Break(runs, alpha, x, 1);
111 SkAlphaRuns::Break(runs, alpha, x, middleCount);
127 SkAlphaRuns::Break(runs, alpha, x, 1);
SkAntiRun.h 158 static void Break(int16_t runs[], uint8_t alpha[], int x, int count);
171 break;
  /external/v8/test/mjsunit/
debug-evaluate-with.js 38 if (event == Debug.DebugEvent.Break)
42 // Break point in first with block.
46 // Break point in second with block.
debug-constructor.js 35 if (event == Debug.DebugEvent.Break)
63 // Break point stops on "new c()" and steps into c.
70 // Break point stops on "x = 1" and steps to "new c()" and then into c.
debug-event-listener.js 35 if (event == Debug.DebugEvent.Break ||
62 // Test debug event for break point.
70 assertTrue(lastDebugEvent.event == Debug.DebugEvent.Break);
debug-evaluate-recursive.js 69 // Event listener which evaluates with break disabled.
72 if (event == Debug.DebugEvent.Break)
74 // Call functions with break using the FrameMirror directly.
80 // Call functions with break using the JSON protocol. Tests that argument
87 // Call functions with break using the JSON protocol. Tests passing
105 // Event listener which evaluates with break enabled one time and the second
106 // time evaluates with break disabled.
110 if (event == Debug.DebugEvent.Break)
114 // Call functions with break using the FrameMirror directly.
116 // First break event evaluates with break enabled
    [all...]
debug-stepnext-do-while.js 37 if (event == Debug.DebugEvent.Break) {
debug-clearbreakpoint.js 60 if (event == Debug.DebugEvent.Break) {
71 // TODO(1241036) change this to 2 when break points have been restructured.
78 // Cannot clear the same break point twice.
94 // Set a break point and call to invoke the debug event listener.
debug-enable-disable-breakpoints.js 32 // Simple debug event handler which just counts the number of break points hit.
36 if (event == Debug.DebugEvent.Break) {
47 // This tests enabeling and disabling of break points including the case
48 // with several break points in the same location.
debug-evaluate-arguments.js 55 if (event == Debug.DebugEvent.Break)
debug-evaluate-bool-constructor.js 37 if (event == Debug.DebugEvent.Break) {
debug-ignore-breakpoints.js 32 // Simple debug event handler which just counts the number of break points hit.
36 if (event == Debug.DebugEvent.Break) {
47 // This tests ignore of break points including the case with several
48 // break points in the same location.
debug-mirror-cache.js 49 if (event == Debug.DebugEvent.Break)
debug-multiple-breakpoints.js 32 // Simple debug event handler which just counts the number of break points hit.
36 if (event == Debug.DebugEvent.Break) {
49 // This test sets several break points at the same place and checks that
50 // several break points at the same place only makes one debug break event
51 // and that when the last break point is removed no more debug break events
65 // Remove one of the break points.
70 // Remove the second break point.
75 // Perform the same test using function g (this time removing the break point
    [all...]
debug-step-stub-callfunction.js 35 if (event == Debug.DebugEvent.Break) {
debug-step.js 39 if (event == Debug.DebugEvent.Break) {
45 // Clear the break point on line 2 if set.
56 // Test debug event for break point.
72 // Check that performing 1000 steps with a break point on the statement in the
73 // for loop (line 2) will only make i 0 as a real break point breaks even when
debug-stepin-builtin.js 43 if (event == Debug.DebugEvent.Break) {
debug-stepin-constructor.js 35 if (event == Debug.DebugEvent.Break) {
debug-stepout-recursive-function.js 39 if (event == Debug.DebugEvent.Break) {
debug-stepout-to-builtin.js 43 if (event == Debug.DebugEvent.Break) {
debug-suspend.js 75 if (event == Debug.DebugEvent.Break) {
  /external/v8/include/
v8-debug.h 74 Break = 1,
204 // Break execution of JavaScript.
225 * a V8 break. This can happen automatically by using the option
226 * --debugger-auto-break.
  /external/webkit/WebKit/chromium/src/
DebuggerAgentManager.cpp 193 if (message.GetEvent() != v8::AfterCompile && message.GetEvent() != v8::Break && message.GetEvent() != v8::Exception)
204 if (s_inUtilityContext && message.GetEvent() == v8::Break) {
207 // nested MessageLoop which may process Break request from the second
230 // Autocontinue execution on break and exception events if there is no
  /external/v8/test/mjsunit/regress/
regress-269.js 33 if (event == Debug.DebugEvent.Break) {

Completed in 150 milliseconds

1 2 3