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

1 2 3 4 5

  /external/chromium/third_party/libjingle/source/talk/base/
common.cc 51 void Break() {
common.h 77 // Break causes the debugger to stop executing, or the program to abort
78 void Break();
88 Break();
  /external/webkit/Source/JavaScriptCore/runtime/
Completion.h 34 enum ComplType { Normal, Break, Continue, ReturnValue, Throw, Interrupted, Terminated };
  /external/harfbuzz/src/
harfbuzz-shaper.cpp 39 // The line break algorithm. See http://www.unicode.org/reports/tr14/tr14-13.html
65 // The following line break classes are not treated by the table:
204 break;
207 break;
216 break;
223 break;
335 break;
343 break;
349 break;
353 break;
    [all...]
  /external/skia/legacy/src/core/
SkAlphaRuns.cpp 27 void SkAlphaRuns::Break(int16_t runs[], uint8_t alpha[], int x, int count) {
44 break;
63 break;
67 break;
87 SkAlphaRuns::Break(runs, alpha, x, 1);
105 SkAlphaRuns::Break(runs, alpha, x, middleCount);
122 SkAlphaRuns::Break(runs, alpha, x, 1);
SkAntiRun.h 55 * Break the runs in the buffer at offsets x and x+count, properly
58 * Break(..., 2, 5) would produce AAAABBBB rle as A2A2B3B1.
62 static void Break(int16_t runs[], uint8_t alpha[], int x, int count);
79 break;
  /external/skia/src/core/
SkAlphaRuns.cpp 27 void SkAlphaRuns::Break(int16_t runs[], uint8_t alpha[], int x, int count) {
44 break;
63 break;
67 break;
87 SkAlphaRuns::Break(runs, alpha, x, 1);
105 SkAlphaRuns::Break(runs, alpha, x, middleCount);
122 SkAlphaRuns::Break(runs, alpha, x, 1);
SkAntiRun.h 55 * Break the runs in the buffer at offsets x and x+count, properly
58 * Break(..., 2, 5) would produce AAAABBBB rle as A2A2B3B1.
62 static void Break(int16_t runs[], uint8_t alpha[], int x, int count);
79 break;
  /external/v8/test/mjsunit/regress/
regress-102153.js 30 // Test that the break point is set before initializing the loop variable
31 // so that we break before any iteration has been run.
38 if (event == Debug.DebugEvent.Break) {
46 for (var i = 0; i < 3; i++) { // Break here.
47 if (i == 0) break;
53 assertTrue(Debug.showBreakPoints(test).indexOf("// Break here.") >= 0);
regress-1586.js 50 if (event == Debug.DebugEvent.Break) {
regress-269.js 33 if (event == Debug.DebugEvent.Break) {
regress-94873.js 42 if (event == Debug.DebugEvent.Break) {
44 print('break: ' + line);
regress-crbug-107996.js 38 if (event == Debug.DebugEvent.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.
50 // Break point in eval 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-break-inline.js 43 // and otherwise counts break points hit and checks that the expected
46 if (event == Debug.DebugEvent.Break) {
80 var b = 1; // Break point is set here.
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) {
  /external/llvm/lib/Target/R600/
SIAnnotateControlFlow.cpp 34 static const char *BreakIntrinsic = "llvm.SI.break";
35 static const char *IfBreakIntrinsic = "llvm.SI.if.break";
36 static const char *ElseBreakIntrinsic = "llvm.SI.else.break";
56 Constant *Break;
130 Break = M.getOrInsertFunction(
241 Value *Ret = CallInst::Create(Break, Arg, "", Insert);
  /frameworks/base/tools/aidl/
AST.h 310 struct Break : public Statement
312 Break();
313 virtual ~Break();
AST.cpp 683 Break::Break()
687 Break::~Break()
692 Break::Write(FILE* to)
694 fprintf(to, "break;\n");
  /external/v8/include/
v8-debug.h 74 Break = 1,
257 // Schedule a debugger break to happen when JavaScript code is run
262 // Remove scheduled debugger break in given isolate if it has not
267 // Break execution of JavaScript in the given isolate (this method
297 * a V8 break. This can happen automatically by using the option
298 * --debugger-auto-break.
  /external/stressapptest/src/
sat.h 71 void Break() { user_break_ = true; }
  /external/v8/test/mjsunit/harmony/
debug-evaluate-blockscopes.js 56 if (event == Debug.DebugEvent.Break) {

Completed in 1026 milliseconds

1 2 3 4 5