Home
last modified time | relevance | path

Searched full:before (Results 1 – 25 of 687) sorted by relevance

12345678910>>...28

/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/class_extension/
Dtests.cpp26 // Please uncomment extendUserClass fn in index.sts before running in TEST_F()
34 // Please uncomment extendNativeClass fn in index.sts before running in TEST_F()
42 // Please uncomment extendedUserClassIsInstanceOf fn in index.sts before running in TEST_F()
50 // Please uncomment extendedNativeClassIsInstanceOf fn in index.sts before running in TEST_F()
58 // Please uncomment canAccessSuperMethod fn in index.sts before running in TEST_F()
66 // Please uncomment canAddGetter fn in index.sts before running in TEST_F()
74 // Please uncomment canSetProtectedValue fn in index.sts before running in TEST_F()
82 // Please uncomment extendUserClass fn in index.sts before running in TEST_F()
90 // Please uncomment extendNativeClass fn in index.sts before running in TEST_F()
98 // Please uncomment jsRespectsProtectedModifier fn in index.sts before running in TEST_F()
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tools/declgen_ts2sts/
D.eslintrc.json40 "@stylistic/arrow-spacing": ["error", { "before": true, "after": true }], boolean
53 "@stylistic/comma-spacing": ["error", { "before": false, "after": true }], boolean
61 "@stylistic/generator-star-spacing": ["error", { "before": true, "after": false }], boolean
92 "@stylistic/keyword-spacing": ["error", { "before": true, "after": true }], boolean
116 "@stylistic/no-whitespace-before-property": "error",
126 "@stylistic/semi-spacing": ["error", { "before": false, "after": true }], boolean
128 "@stylistic/space-before-blocks": ["error", "always"],
129 "@stylistic/space-before-function-paren": ["error", "never"],
133 "@stylistic/switch-colon-spacing": ["error", { "after": true, "before": false }], boolean
139 "@stylistic/yield-star-spacing": ["error", { "before": true, "after": false }], boolean
/arkcompiler/ets_runtime/ecmascript/base/
Dpath_helper.h44 * Before: moduleName@nameSpace
57 * Before: moduleName@nameSpace
68 * Before: bundleName/moduleName@namespace/moduleName/xxx/xxx
83 * Before: @***:xxxx
96 * Before: @xxx:****
/arkcompiler/runtime_core/static_core/runtime/coretypes/
Darray.cpp58 // Order is matters here: GC can read data before it copied if we set length first. in Create()
65 // legth before it's set in Create()
83 // length before it's set in Create()
102 // legth before it's set in Create()
116 // Order is matters here: GC can read data before it copied if we set length first. in CreateTagged()
125 // legth before it's set in CreateTagged()
/arkcompiler/ets_frontend/ets2panda/linter/
D.eslintrc.json61 "@stylistic/arrow-spacing": ["error", { "before": true, "after": true }], boolean
74 "@stylistic/comma-spacing": ["error", { "before": false, "after": true }], boolean
84 "@stylistic/generator-star-spacing": ["error", { "before": true, "after": false }], boolean
115 "@stylistic/keyword-spacing": ["error", { "before": true, "after": true }], boolean
139 "@stylistic/no-whitespace-before-property": "error",
149 "@stylistic/semi-spacing": ["error", { "before": false, "after": true }], boolean
151 "@stylistic/space-before-blocks": ["error", "always"],
152 "@stylistic/space-before-function-paren": ["error", "never"],
156 "@stylistic/switch-colon-spacing": ["error", { "after": true, "before": false }], boolean
162 "@stylistic/yield-star-spacing": ["error", { "before": true, "after": false }], boolean
/arkcompiler/runtime_core/static_core/runtime/mem/
Dmem_stats.cpp40 // the load and on writes before the store in RecordAllocateObjects()
44 // and on writes before the store in RecordAllocateObjects()
57 // the load and on writes before the store in RecordYoungMovedObjects()
60 // on writes before the store in RecordYoungMovedObjects()
73 // on writes before the store in RecordTenuredMovedObjects()
91 // load and on writes before the store in RecordFreeObjects()
95 // on writes before the store in RecordFreeObjects()
/arkcompiler/runtime_core/static_core/patches/asmjit/
D0004-Mark-asmjit-headers-as-system.patch17 - target_include_directories(asmjit BEFORE INTERFACE ${ASMJIT_INCLUDE_DIRS})
18 + target_include_directories(asmjit SYSTEM BEFORE INTERFACE ${ASMJIT_INCLUDE_DIRS})
/arkcompiler/ets_frontend/ets2panda/linter/test_rules/
Drule5.ts.json595 "suggest": "Variable 'b9' is used before being assigned.",
596 "rule": "Variable 'b9' is used before being assigned."
602 "suggest": "Variable 'foo15' is used before being assigned.",
603 "rule": "Variable 'foo15' is used before being assigned."
609 "suggest": "Variable 'a23' is used before being assigned.",
610 "rule": "Variable 'a23' is used before being assigned."
616 "suggest": "Variable 'a24' is used before being assigned.",
617 "rule": "Variable 'a24' is used before being assigned."
630 "suggest": "Variable 'b31' is used before being assigned.",
631 "rule": "Variable 'b31' is used before being assigned."
[all …]
Drule5.ts.autofix.json749 "suggest": "Variable 'b9' is used before being assigned.",
750 "rule": "Variable 'b9' is used before being assigned."
756 "suggest": "Variable 'foo15' is used before being assigned.",
757 "rule": "Variable 'foo15' is used before being assigned."
763 "suggest": "Variable 'a23' is used before being assigned.",
764 "rule": "Variable 'a23' is used before being assigned."
770 "suggest": "Variable 'a24' is used before being assigned.",
771 "rule": "Variable 'a24' is used before being assigned."
784 "suggest": "Variable 'b31' is used before being assigned.",
785 "rule": "Variable 'b31' is used before being assigned."
[all …]
/arkcompiler/runtime_core/static_core/irtoc/backend/compiler/
Dcodegen_fastpath.h27 …* save/restore registers before calling native functions. These intrinsics pushes caller saved reg…
33 * So, before calling the slow path we restore all modified callee registers.
36 * before calling slow path, since they are saved within irtoced entrypoint.
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/
Dstring_builder_utils.cpp109 void InsertBeforeWithSaveState(Inst *inst, Inst *before) in InsertBeforeWithSaveState() argument
112 before->InsertBefore(inst->GetSaveState()); in InsertBeforeWithSaveState()
114 before->InsertBefore(inst); in InsertBeforeWithSaveState()
125 void InsertBeforeWithInputs(Inst *inst, Inst *before) in InsertBeforeWithInputs() argument
130 InsertBeforeWithInputs(inputInst, before); in InsertBeforeWithInputs()
135 before->InsertBefore(inst); in InsertBeforeWithInputs()
/arkcompiler/runtime_core/static_core/runtime/include/
Dmtmanaged_thread.h105 …// Need to acquire the mutex before waiting to avoid scheduling between monitor release and clond_…
134 * @description Before we clear is_interrupted_ flag. in ClearInterrupted()
184 … // Unlock before setting status RUNNING to handle MutatorReadLock without inversed lock order. in WaitWithLockHeld()
221 … // Unlock before setting status RUNNING to handle MutatorReadLock without inversed lock order. in REQUIRES()
239 * @description Right after changing the thread's status and before going to sleep
256 * @description This point is right before the thread starts to release all his monitors. in TerminationLoop()
257 …* All monitors should be released by the thread before completing its execution by stepping into t… in TerminationLoop()
266 …iption This point is right after the thread has released all his monitors and right before it steps in TerminationLoop()
/arkcompiler/runtime_core/compiler/optimizer/ir/
Dbasicblock.cpp466 void BasicBlock::InsertBefore(Inst *inst, Inst *before) in InsertBefore() argument
468 ASSERT(inst && before); in InsertBefore()
469 ASSERT(inst->IsPhi() == before->IsPhi()); in InsertBefore()
470 ASSERT(before->GetBasicBlock() == this); in InsertBefore()
473 Inst *prev = before->GetPrev(); in InsertBefore()
475 inst->SetNext(before); in InsertBefore()
476 before->SetPrev(inst); in InsertBefore()
480 if (before == first_phi_) { in InsertBefore()
483 if (before == first_inst_) { in InsertBefore()
488 void BasicBlock::InsertRangeBefore(Inst *range_first, Inst *range_last, Inst *before) in InsertRangeBefore() argument
[all …]
Dmarker.h86 // returns true if the marker was set before, otherwise set marker and return false
99 // returns true if the marker was set before, otherwise false
108 // unset marker and returns true if the marker was set before, otherwise false
/arkcompiler/ets_frontend/es2panda/test/patch/currentVersion/hotfix/hotfix-throwerror/modify-class-1/
Dbase_mod.js16 // Test scenario: add class attributes, which is before computed properties, es2abc can specify and…
37 a() { // an attribute added before computed properties
/arkcompiler/ets_frontend/es2panda/test/patch/11/hotreload/hotreload-throwerror/modify-class-1/
Dbase_mod.js16 // Test scenario: add class attributes, which is before computed properties, es2abc can specify and…
37 a() { // an attribute added before computed properties
/arkcompiler/ets_frontend/es2panda/test/patch/currentVersion/coldfix/coldfix-noerror/modify-class-1/
Dbase_mod.js16 // Test scenario: add class attributes, which is before computed properties, es2abc can support it.
37 a() { // an attribute added before computed properties
/arkcompiler/ets_frontend/es2panda/test/patch/11/coldfix/coldfix-noerror/modify-class-1/
Dbase_mod.js16 // Test scenario: add class attributes, which is before computed properties, es2abc can support it.
37 a() { // an attribute added before computed properties
/arkcompiler/ets_frontend/es2panda/test/patch/currentVersion/coldreload/modify-class-1/
Dbase_mod.js16 // Test scenario: add class attributes, which is before computed properties, es2abc can support it.
37 a() { // an attribute added before computed properties
/arkcompiler/ets_frontend/es2panda/test/patch/11/hotfix/hotfix-throwerror/modify-class-1/
Dbase_mod.js16 // Test scenario: add class attributes, which is before computed properties, es2abc can specify and…
37 a() { // an attribute added before computed properties
/arkcompiler/ets_frontend/es2panda/test/patch/currentVersion/hotreload/hotreload-throwerror/modify-class-1/
Dbase_mod.js16 // Test scenario: add class attributes, which is before computed properties, es2abc can specify and…
37 a() { // an attribute added before computed properties
/arkcompiler/ets_frontend/es2panda/test/patch/11/coldreload/modify-class-1/
Dbase_mod.js16 // Test scenario: add class attributes, which is before computed properties, es2abc can support it.
37 a() { // an attribute added before computed properties
/arkcompiler/runtime_core/static_core/compiler/docs/
Dmove_constants_closer_to_usage_doc.md16 Before register allocation for each constant try to move it closer to usage:
17 …uction among users and all users are located in the same block move constant just before first user
24 IR before optimization
102 // constants are defined just before usage, no SpillFills
/arkcompiler/runtime_core/compiler/docs/
Dmove_constants_closer_to_usage_doc.md16 Before register allocation for each constant try to move it closer to usage:
17 …uction among users and all users are located in the same block move constant just before first user
24 IR before optimization
102 // constants are defined just before usage, no SpillFills
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
Dmarker.h86 // returns true if the marker was set before, otherwise set marker and return false
99 // returns true if the marker was set before, otherwise false
108 // unset marker and returns true if the marker was set before, otherwise false

12345678910>>...28