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

1 2 3 4 5 6 7

  /external/clang/test/Tooling/
ms-asm-no-target.cpp 8 void Break() {
  /external/chromium_org/ui/gfx/
break_list.h 20 // Each break stores the start position and value of its associated range.
21 // A solitary break at position 0 applies to the entire space [0, max_).
23 // The first break always has position 0, to ensure all positions have a value.
24 // The value of the terminal break applies to the range [break.first, max_).
25 // The value of other breaks apply to the range [break.first, (break+1).first).
29 // The break type and const iterator, typedef'ed for convenience.
30 typedef std::pair<size_t, T> Break;
31 typedef typename std::vector<Break>::const_iterator const_iterator
    [all...]
  /external/chromium_org/v8/src/compiler/
control-builders.h 19 // control builders to handle 'break' and 'continue' statements when they are
27 // Interface for break and continue.
28 virtual void Break() { UNREACHABLE(); }
77 // Primitive support for break and continue.
79 virtual void Break();
81 // Compound control command for conditional break.
110 // Primitive support for break.
111 virtual void Break();
134 // Primitive support for break.
135 virtual void Break();
    [all...]
control-builders.cc 49 void LoopBuilder::Break() {
72 Break();
111 void SwitchBuilder::Break() {
132 void BlockBuilder::Break() {
  /external/chromium_org/v8/test/mjsunit/regress/
regress-crbug-385002.js 7 %Break(); // Schedule an interrupt that does not go away.
regress-crbug-405922.js 11 if (event == Debug.DebugEvent.Break) {
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-131994.js 39 if (event != Debug.DebugEvent.Break) return;
42 // Assert correct break point.
43 assertTrue(breakpoint.sourceLineText().indexOf("// Break") > -1);
62 debugger; // Break.
regress-debug-deopt-while-recompile.js 34 if (event != Debug.DebugEvent.Break) return;
48 var baz = bar; // Break point should be here.
54 var baz = bar; // Break point should be here.
72 // Set break point.
76 // Trigger break point.
80 // Assert that break point is set at expected location.
  /external/chromium_org/third_party/skia/src/core/
SkAntiRun.h 61 SkAlphaRuns::Break(runs, alpha, x, 1);
79 SkAlphaRuns::Break(runs, alpha, x, middleCount);
96 SkAlphaRuns::Break(runs, alpha, x, 1);
110 * Break the runs in the buffer at offsets x and x+count, properly
113 * Break(..., 2, 5) would produce AAAABBBB rle as A2A2B3B1.
117 static void Break(int16_t runs[], uint8_t alpha[], int x, int count) {
134 break;
153 break;
157 break;
179 break;
    [all...]
  /external/chromium_org/third_party/webrtc/base/
common.cc 35 void Break() {
39 // On POSIX systems, SIGTRAP signals debuggers to break without killing the
safe_conversions.h 27 Break();
common.h 81 void Break();
115 Break();
120 // Same as Assert above, but does not call Break(). Used in assert macros
  /external/skia/src/core/
SkAntiRun.h 61 SkAlphaRuns::Break(runs, alpha, x, 1);
79 SkAlphaRuns::Break(runs, alpha, x, middleCount);
96 SkAlphaRuns::Break(runs, alpha, x, 1);
110 * Break the runs in the buffer at offsets x and x+count, properly
113 * Break(..., 2, 5) would produce AAAABBBB rle as A2A2B3B1.
117 static void Break(int16_t runs[], uint8_t alpha[], int x, int count) {
134 break;
153 break;
157 break;
179 break;
    [all...]
  /external/chromium_org/v8/test/mjsunit/es6/regress/
regress-3280.js 12 if (event == Debug.DebugEvent.Break) {
  /external/chromium_org/v8/test/mjsunit/
debug-break-native.js 11 if (event != Debug.DebugEvent.Break) return;
14 // Assert that the break happens at an intended location.
15 assertTrue(exec_state.frame(0).sourceLineText().indexOf("// break") > 0);
23 debugger; // break
26 return x; // break
27 } // break
29 Debug.setBreakPoint(f, 0, 0); // break
30 Debug.scripts(); // break
31 debug.MakeMirror(f); // break
33 new Error("123").stack; // break
    [all...]
debug-evaluate-with.js 40 if (event == Debug.DebugEvent.Break)
44 // Break point in first with block.
48 // Break point in second with block.
52 // 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.
regress-3225.js 13 if (event != Debug.DebugEvent.Break) return;
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.
  /external/chromium_org/v8/test/mjsunit/es6/
debug-stepin-generators.js 12 if (event != Debug.DebugEvent.Break) return;
debug-stepin-collections-foreach.js 13 if (event == Debug.DebugEvent.Break) {
19 // Check whether we break at the expected line.
75 if (event == Debug.DebugEvent.Break) {
81 // Check whether we break at the expected line.
  /external/chromium_org/v8/include/
v8-debug.h 17 Break = 1,
162 // Schedule a debugger break to happen when JavaScript code is run
166 // Remove scheduled debugger break in given isolate if it has not
170 // Check if a debugger break is scheduled in the given isolate.
173 // Break execution of JavaScript in the given isolate (this method
  /external/llvm/lib/Target/R600/
SIAnnotateControlFlow.cpp 38 static const char *const BreakIntrinsic = "llvm.SI.break";
39 static const char *const IfBreakIntrinsic = "llvm.SI.if.break";
40 static const char *const ElseBreakIntrinsic = "llvm.SI.else.break";
60 Constant *Break;
133 Break = M.getOrInsertFunction(
244 Value *PhiArg = CallInst::Create(Break, Broken, "", Insert);
  /frameworks/base/tools/aidl/
AST.h 310 struct Break : public Statement
312 Break();
313 virtual ~Break();

Completed in 682 milliseconds

1 2 3 4 5 6 7