Home
last modified time | relevance | path

Searched refs:Break (Results 1 - 25 of 49) sorted by relevance

12

/third_party/PyYAML/examples/pygments-lexer/
H A Dyaml.py172 (r'\n+', Text.Break),
197 (r'\n', Text.Break, '#pop:2'),
285 (r'\n+', Text.Break),
319 (r'\n', Text.Break),
347 (r'\n+', Text.Break),
384 (r'\n+', Text.Break),
400 (r'\n+', Text.Break, 'plain-scalar-in-block-context-new-line'),
417 (r'\n+', Text.Break),
/third_party/skia/src/core/
H A DSkAntiRun.h66 SkAlphaRuns::Break(runs, alpha, x, 1); in add()
83 SkAlphaRuns::Break(runs, alpha, x, middleCount); in add()
100 SkAlphaRuns::Break(runs, alpha, x, 1); in add()
114 * Break the runs in the buffer at offsets x and x+count, properly
117 * Break(..., 2, 5) would produce AAAABBBB rle as A2A2B3B1.
121 static void Break(int16_t runs[], uint8_t alpha[], int x, int count) { in Break() function in SkAlphaRuns
/third_party/skia/third_party/externals/tint/src/writer/spirv/
H A Dbuilder_loop_test.cc229 auto* if_stmt = create<ast::IfStatement>(Expr(true), Block(Break()), in TEST_F()
264 ast::ElseStatementList{Else(nullptr, Block(Break()))}); in TEST_F()
303 auto* inner_if_stmt = create<ast::IfStatement>(Expr(true), Block(Break()), in TEST_F()
308 auto* outer_if_stmt = create<ast::IfStatement>(Expr(true), Block(Break()), in TEST_F()
360 ast::ElseStatementList{Else(nullptr, Block(Break()))}); in TEST_F()
366 ast::ElseStatementList{Else(nullptr, Block(Break()))}); in TEST_F()
/third_party/skia/third_party/externals/tint/src/resolver/
H A Dvalidation_test.cc647 Break())); in TEST_F()
674 Break())); in TEST_F()
701 Break())); in TEST_F()
880 Block(Break()))); in TEST_F()
896 Block(Break()))); in TEST_F()
911 Block(Break()))); in TEST_F()
927 Block(Break()))); in TEST_F()
949 Block(Break()))); in TEST_F()
964 Block(Break()))); in TEST_F()
980 Block(Break()))); in TEST_F()
[all...]
H A Dresolver_behavior_test.cc196 nullptr, Block(Break())); in TEST_F()
207 auto* stmt = Break(); in TEST_F()
247 auto* stmt = For(nullptr, nullptr, nullptr, Block(Break())); in TEST_F()
288 nullptr, Block(Break())); in TEST_F()
427 auto* stmt = Loop(Block(Break())); in TEST_F()
477 auto* stmt = Loop(Block(), Block(Break())); in TEST_F()
H A Dcontrol_block_validation_test.cc172 auto* brk = Break(); in TEST_F()
194 auto* brk = Break(); in TEST_F()
/third_party/skia/third_party/externals/tint/src/writer/hlsl/
H A Dgenerator_impl_switch_test.cc28 Case(Expr(5), Block(Break())), // in TEST_F()
/third_party/skia/modules/skparagraph/src/
H A DTextWrapper.cpp406 breaks_.emplace_back(cumulativeLen_, Break::BreakType::BREAKTYPE_WHITE_SPACE, prevWasWhitespace); in moveForward()
410 breaks_.emplace_back(cumulativeLen_, Break::BreakType::BREAKTYPE_HARD, false); in moveForward()
414 breaks_.emplace_back(cumulativeLen_, Break::BreakType::BREAKTYPE_INTRA, false); in moveForward()
420 breaks_.emplace_back(cumulativeLen_, Break::BreakType::BREAKTYPE_FORCED, false); in moveForward()
475 if (lastBreakPos_ < breaks_.size() && breaks_[lastBreakPos_].type == Break::BreakType::BREAKTYPE_FORCED) { in moveForward()
487 breaks_.insert(breaks_.cbegin() + param.breakPos + 1, Break(param.begin + param.currentMax, in moveForward()
488 Break::BreakType::BREAKTYPE_FORCED, false)); in moveForward()
651 struct Break { in moveForward() struct
659 Break(SkScalar w, BreakType t, bool ssws) : width(w), type(t), subsequentWhitespace(ssws) {} in moveForward() function
666 std::vector<Break> breaks in moveForward()
[all...]
/third_party/node/deps/v8/src/interpreter/
H A Dcontrol-flow-builders.h52 void Break() { EmitJump(&break_labels_); } in Break() function in v8::internal::interpreter::BreakableControlFlowBuilder
/third_party/typescript/tests/baselines/reference/
H A DparserRealSource3.js86 Break,
207 NodeType[NodeType["Break"] = 76] = "Break";
/third_party/rust/crates/syn/src/
H A Dtoken.rs744 "break" pub struct Break
922 [break] => { $crate::token::Break };
H A Dstmt.rs334 | Expr::Break(_) in stmt_expr()
/third_party/mksh/
H A Dexec.c117 goto Break; in execute()
156 goto Break; in execute()
332 goto Break; in execute()
365 goto Break; in execute()
451 Break: in execute()
/third_party/skia/src/sksl/dsl/
H A DDSLCore.cpp136 static DSLStatement Break(PositionInfo pos) { in Break() function in SkSL::dsl::DSLCore
379 DSLStatement Break(PositionInfo pos) { in Break() function
380 return DSLCore::Break(pos); in Break()
/third_party/jinja2/
H A Dext.py607 def parse(self, parser: "Parser") -> t.Union[nodes.Break, nodes.Continue]:
610 return nodes.Break(lineno=token.lineno)
/third_party/node/deps/v8/src/debug/
H A Ddebug.h234 void Break(JavaScriptFrame* frame, Handle<JSFunction> break_target);
239 // Break point handling.
/third_party/skia/include/sksl/
H A DDSLCore.h84 DSLStatement Break(PositionInfo pos = PositionInfo::Capture());
/third_party/skia/tests/
H A DSkSLDSLTest.cpp1298 If(i > 5, Break()) in DEF_GPUTEST_FOR_MOCK_CONTEXT()
1308 Break() in DEF_GPUTEST_FOR_MOCK_CONTEXT()
1641 Case(0, a = 0, Break()), in DEF_GPUTEST_FOR_MOCK_CONTEXT()
1656 Case(0, a = 0, Break()), in DEF_GPUTEST_FOR_MOCK_CONTEXT()
/third_party/node/deps/v8/src/runtime/
H A Druntime-debug.cc61 isolate->debug()->Break(it.frame(), in RUNTIME_FUNCTION_RETURN_PAIR()
130 isolate->debug()->Break(it.frame(), function); in RUNTIME_FUNCTION()
/third_party/node/deps/v8/third_party/jinja2/
H A Dext.py458 return nodes.Break(lineno=token.lineno)
H A Dnodes.py1034 class Break(Stmt): class
1035 """Break a loop."""
/third_party/node/tools/inspector_protocol/jinja2/
H A Dext.py425 return nodes.Break(lineno=token.lineno)
H A Dnodes.py952 class Break(Stmt): class
953 """Break a loop."""
/third_party/skia/third_party/externals/spirv-tools/test/opt/loop_optimizations/
H A Dfusion_compatibility.cpp564 TEST_F(FusionCompatibilityTest, Break) { in TEST_F()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/loop_optimizations/
H A Dfusion_compatibility.cpp564 TEST_F(FusionCompatibilityTest, Break) { in TEST_F()

Completed in 27 milliseconds

12