Home
last modified time | relevance | path

Searched full:control (Results 1 – 25 of 343) sorted by relevance

12345678910>>...14

/arkcompiler/ets_frontend/ets2panda/linter/docs/rules/
Drecipe104.md16 class Control {
20 interface SelectableControl extends Control {
31 interface Control {
35 interface SelectableControl extends Control {
/arkcompiler/ets_runtime/ecmascript/compiler/
Dcircuit_builder_helper.h159 inline void SetControl(GateRef control) in SetControl() argument
161 impl_->SetControl(control); in SetControl()
163 inline void SetPreControl(GateRef control) in SetPreControl() argument
165 impl_->SetPreControl(control); in SetPreControl()
167 inline void MergeControl(GateRef control) in MergeControl() argument
169 impl_->MergeControl(control); in MergeControl()
187 LabelImpl(Environment *env, GateRef control) in LabelImpl() argument
188 : env_(env), control_(control), predeControl_(-1), isSealed_(false) in LabelImpl()
205 void SetControl(GateRef control) in SetControl() argument
207 control_ = control; in SetControl()
[all …]
Dshare_opcodes.h33 V(OrdinaryBlock, ORDINARY_BLOCK, GateFlags::CONTROL, 1, 0, 0) \
34 V(DefaultCase, DEFAULT_CASE, GateFlags::CONTROL, 1, 0, 0) \
38 V(Throw, THROW, GateFlags::CONTROL, 1, 1, 1) \
39 V(LoopExit, LOOP_EXIT, GateFlags::CONTROL, 1, 0, 0) \
43 V(IfTrue, IF_TRUE, GateFlags::CONTROL, 1, 0, 0) \
44 V(IfFalse, IF_FALSE, GateFlags::CONTROL, 1, 0, 0) \
45 V(IfSuccess, IF_SUCCESS, GateFlags::CONTROL, 1, 0, 0) \
46 V(IfException, IF_EXCEPTION, GateFlags::CONTROL, 1, 1, 0) \
53 V(LoopBack, LOOP_BACK, GateFlags::CONTROL, 1, 0, 0) \
73 V(LoopBegin, LOOP_BEGIN, GateFlags::CONTROL, value, 0, 0) \
[all …]
Dcircuit_builder-inl.h115 auto control = GetCurrentLabel()->GetControl(); in Return() local
117 return Return(control, depend, value); in Return()
122 auto control = GetCurrentLabel()->GetControl(); in Return() local
124 return ReturnVoid(control, depend); in Return()
/arkcompiler/ets_frontend/ets2panda/test/ast/parser/ets/
Dunclosed_loop.ets27 /* @@@ label Error TypeError: Control flow redirection statement can not be used out of loop or swi…
28 /* @@@ label1 Error TypeError: Control flow redirection statement can not be used out of loop or sw…
29 /* @@@ label2 Error TypeError: Control flow redirection statement can not be used out of loop or sw…
30 /* @@@ label3 Error TypeError: Control flow redirection statement can not be used out of loop or sw…
Dillegal_continue_statement.ets45 /* @@? 18:5 Error TypeError: Control flow redirection statement can not be used out of loop or swit…
47 /* @@? 25:5 Error TypeError: Control flow redirection statement can not be used out of loop or swit…
50 /* @@? 32:5 Error TypeError: Control flow redirection statement can not be used out of loop or swit…
52 /* @@? 39:5 Error TypeError: Control flow redirection statement can not be used out of loop or swit…
Dillegal_break_statement.ets32 /* @@? 18:20 Error TypeError: Control flow redirection statement can not be used out of loop or swi…
33 /* @@? 25:20 Error TypeError: Control flow redirection statement can not be used out of loop or swi…
/arkcompiler/ets_frontend/ets2panda/test/ast/parser/ets/FixedArray/
Dunclosed_loop.ets27 /* @@@ label Error TypeError: Control flow redirection statement can not be used out of loop or swi…
28 /* @@@ label1 Error TypeError: Control flow redirection statement can not be used out of loop or sw…
29 /* @@@ label2 Error TypeError: Control flow redirection statement can not be used out of loop or sw…
30 /* @@@ label3 Error TypeError: Control flow redirection statement can not be used out of loop or sw…
/arkcompiler/runtime_core/static_core/plugins/ets/playground/backend/
D.gitignore92 # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
99 # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
102 # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
106 # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
109 # in version control.
110 # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
/arkcompiler/ets_frontend/arkguard/test/grammar/interface_validation/
Dinterface_inherit_class.ts18 class Control { class
22 interface SelectableControl extends Control {
26 class Button extends Control implements SelectableControl {
/arkcompiler/ets_frontend/ets2panda/linter/test/rules/
Drule104.ets16 class Control {
20 interface SelectableControl extends Control {
/arkcompiler/runtime_core/static_core/plugins/ets/doc/spec/
D8_statements.rst21 Statements are designed to control execution.
520 A ``break`` statement transfers control out of the enclosing *loopStatement*
525 control transfer
537 A ``break`` statement with the label *identifier* transfers control out of the
542 A statement without a label transfers control out of the innermost enclosing
551 control transfer
575 and transfers control to the next iteration. Appropriate checks of loop
586 A ``continue`` statement with the label *identifier* transfers control
600 control transfer
675 statements, the control is transferred out of the scope of the construction in
[all …]
/arkcompiler/ets_frontend/ets2panda/linter/test/sdkwhite/
Dquoted_hyphen_props_deprecated_sdk.ets45 'cache-control': 'no-cache', // Error
80 "cache-control": 'no-cache',
136 'cache-control',
151 'cache-control': '', // Error
179 "cache-control": 'application/json',
/arkcompiler/ets_frontend/ets2panda/linter/test/main/
Dextends_expression.ets27 class Control {
31 interface SelectableControl extends Control {
Dtype_declarations.ets16 interface Control {
20 interface SelectableControl extends Control {
/arkcompiler/runtime_core/static_core/compiler/docs/
Dir_builder.md37 1. Building the Control Flow Graph.
41 **Building the Control Flow Graph**
102 # Add control flow edges between created basic blocks
152 [Efficiently Computing Static Single Assignment Form and the Control Dependence Graph, Ron Cytron](…
Davoid-calculating-start-of-array.md11 Having multiple access to the same array on a control flow path results in
21 a chain of basic blocks that comprise a single control flow path and are not
/arkcompiler/runtime_core/compiler/docs/
Dir_builder.md37 1. Building the Control Flow Graph.
41 **Building the Control Flow Graph**
102 # Add control flow edges between created basic blocks
152 [Efficiently Computing Static Single Assignment Form and the Control Dependence Graph, Ron Cytron](…
Davoid-calculating-start-of-array.md11 Having multiple access to the same array on a control flow path results in
21 a chain of basic blocks that comprise a single control flow path and are not
/arkcompiler/ets_runtime/tools/ap_file_viewer/server/
Dapdump_server.py231 self.send_header("Access-Control-Allow-Origin", "*")
232 self.send_header("Access-Control-Allow-Credentials", "true")
233 … self.send_header("Access-Control-Allow-Headers", "x-requested-with, authorization, blade-auth")
234 self.send_header("Access-Control-Allow-Methods", "*")
235 self.send_header("Access-Control-Max-Age", "3600")
/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Dreturn.void.yaml24 …Return from the current method, i.e. restore the frame of method invoker and return control to the…
49 …description: Check 'return.void' returns control flow to caller in Pandasm context with static cal…
84 …description: Check 'return.void' returns control flow to caller in PandaAssembly context with stat…
120 …description: Check 'return.void' returns control flow to caller in Pandasm context with virtual ca…
157 …description: Check 'return.void' returns control flow to caller in PandaAssembly context with virt…
/arkcompiler/ets_runtime/tools/ap_file_viewer/src/
Dindex.html4 <meta http-equiv="cache-control" content="no-cache"/>
/arkcompiler/runtime_core/static_core/bytecode_optimizer/templates/
Dcheck_width.cpp.erb59 // NOLINTBEGIN(readability-redundant-control-flow)
70 // NOLINTEND(readability-redundant-control-flow)
/arkcompiler/runtime_core/static_core/
DLICENSE17 other entities that control, are controlled by, or are under common
18 control with that entity. For the purposes of this definition,
19 "control" means (i) the power, direct or indirect, to cause the
57 communication on electronic mailing lists, source code control systems,
/arkcompiler/toolchain/
DLICENSE17 other entities that control, are controlled by, or are under common
18 control with that entity. For the purposes of this definition,
19 "control" means (i) the power, direct or indirect, to cause the
57 communication on electronic mailing lists, source code control systems,

12345678910>>...14