Home
last modified time | relevance | path

Searched full:all (Results 1 – 25 of 1732) sorted by relevance

12345678910>>...70

/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/13.compilation_units_packages_and_modules/04.import_directives/07.import_path/file/
Dimport_path_file.params.yaml15 - import * as all from "./module_a"
16 - import * as all from "./module_a.sts"
17 - import * as all from "./nesteddir/module_a"
18 - import * as all from "./nesteddir/module_a.sts"
19 - import * as all from "./nesteddir/../module_a"
20 - import * as all from "./nesteddir/../module_a.sts"
21 - import * as all from "../module_a"
22 - import * as all from "../module_a.sts"
/arkcompiler/runtime_core/isa/
Dasserts.rb21 each_cons(2).all? { |a, b| (a <=> b) <= 0 }
47 assert('All instructions for a prefix should fit one byte') do
50 end.all?
56 end.all?
64 end.all?
67 assert('All prefixes should have unique name') do
79 assert('All tags are unique between categories') do
83 assert('All tags are used') do
91 assert('All tags are defined') do
104 end.all?
[all …]
/arkcompiler/runtime_core/static_core/isa/
Dasserts.rb21 each_cons(2).all? { |a, b| (a <=> b) <= 0 }
47 assert('All instructions for a prefix should fit one byte') do
50 end.all?
56 end.all?
64 end.all?
67 assert('All prefixes should have unique name') do
79 assert('All tags are unique between categories') do
83 assert('All tags are used') do
91 assert('All tags are defined') do
104 end.all?
[all …]
/arkcompiler/runtime_core/static_core/verification/models/typesystem/
Dark_typesystem.als32 // all params are different
33 all disj p1, p2 : Param
43 // all signatures are different for different params
44 all disj p1, p2 : Params
54 all p1,p2: Param
58 all ps1, ps2: Params
66 all t: Type | one universe.t
67 all disj t1,t2: Type | universe.t1 != universe.t2
68 all t: Type | one universe.sort[t]
69 all t: Type | one universe.params[t]
[all …]
/arkcompiler/runtime_core/static_core/tests/cts-generator/
DREADME.md53 …-a, --run-all Run all tests, ignore "runner-option: ignore" tag in test definit…
78 This command will start all tests in `cts-generated` directory. Tests which have runner options `ig…
81 To run all tests, add `-a` options.
95 Run all tests marked with bugid 1316.
97 ### How to generate all test not using cmake/make
107 ### How to run all tests
109 All test can be executed using `make cts-generated` command, test with `ignore` runner options will…
110 If you want to run all tests, you can do the following:
113 cmake ${ROOT_PATH} -DCTS_TEST_SELECT_OPTION="--run-all"
143 Please note that `-a` options (`--run-all`) is defined, otherwise tests will be excluded, if they h…
[all …]
/arkcompiler/runtime_core/tests/cts-generator/
DREADME.md53 …-a, --run-all Run all tests, ignore "runner-option: ignore" tag in test definit…
78 This command will start all tests in `cts-generated` directory. Tests which have runner options `ig…
81 To run all tests, add `-a` options.
95 Run all tests marked with bugid 1316.
97 ### How to generate all test not using cmake/make
107 ### How to run all tests
109 All test can be executed using `make cts-generated` command, test with `ignore` runner options will…
110 If you want to run all tests, you can do the following:
113 cmake ${ROOT_PATH} -DCTS_TEST_SELECT_OPTION="--run-all"
143 Please note that `-a` options (`--run-all`) is defined, otherwise tests will be excluded, if they h…
[all …]
/arkcompiler/ets_frontend/ets2panda/test/parser/ets/import_tests/
Dimport_relative_path.sts16 import * as all from "./packages";
18 let x = all.foo(all.dbl /* double based signature */);
19 let y = all.foo(all.flt /* float based signature */);
Dimport_all.sts16 import * as all from "import_tests/packages";
19 let x = all.foo(all.dbl /* double based signature */);
20 let y = all.foo(all.flt /* float based signature */);
/arkcompiler/ets_frontend/test/scripts/sdk_test/
Doptions.py125 parser.add_argument('--buildMode', type=str, dest='build_mode', default='all',
126 choices=['all', 'assemble', 'preview', 'hotreload', 'hotfix'],
128 parser.add_argument('--hapMode', type=str, dest='hap_mode', default='all',
129 choices=['all', 'debug', 'release'],
131 parser.add_argument('--compileMode', type=str, dest='compile_mode', default='all',
132 choices=['all', 'full', 'incremental', 'bytecode_har', 'external'],
134 parser.add_argument('--testCase', type=str, dest='test_case', default='all',
135 choices=['all', 'fa', 'stage', 'compatible8', 'js'],
137 parser.add_argument('--testHap', type=str, dest='test_hap', default='all',
138 … help="specify test haps, option can be 'all' or a list of haps seperated by ','")
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/common/selective_export_with_alias/
Dimport_selective_exported.sts16 import * as all from "./selective_export"
21 console.print(all.msg);
23 let test_var: all.tc = new all.tc();
27 let alias_var = new all.aliased();
/arkcompiler/ets_frontend/ets2panda/test/compiler/ets/import_tests/selective_export_tests/
Dimport_selective_exported.sts16 import * as all from "./selective_export"
21 console.print(all.msg);
23 let test_var: all.tc = new all.tc();
27 let alias_var = new all.aliased();
/arkcompiler/runtime_core/static_core/docs/diagrams/
Dgc-mark-activity.plantuml29 :Mark all fields in Reference except 'referent';
31 :Mark all fields in object;
37 mark object == mark object and add all non-primitive fields to the Mark Stack
38 …mark all fields in object == mark all directly referenced objects and add their un-marked fields t…
/arkcompiler/runtime_core/docs/diagrams/
Dgc-mark.puactivity29 :Mark all fields in Reference except 'referent';
31 :Mark all fields in object;
37 mark object == mark object and add all non-primitive fields to the Mark Stack
38 …mark all fields in object == mark all directly referenced objects and add their un-marked fields t…
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/
Dreadme.md17 # Run all js and ts examples on Node (needs node and tsc):
18 ./run-vmb.sh all -p node_host `pwd`/examples/benchmarks
20 # Run all only js examples on Node (needs node installed):
21 ./run-vmb.sh all -l js -p node_host `pwd`/examples/benchmarks
23 # See all options explained:
26 # List all available plugins:
32 Wrapper script `run-vmb.sh` has all the module functionality,
46 # Run all js and ts tests in current dir
47 vmb all -p node_host
50 vmb all -p node_host -l js -T sanity ./examples
[all …]
/arkcompiler/runtime_core/libpandabase/
Doptions.yaml52 - all
54 - all
85 - all
93 - all
101 - all
109 - all
117 - all
/arkcompiler/runtime_core/static_core/libpandabase/
Doptions.yaml52 - all
54 - all
88 - all
96 - all
104 - all
112 - all
120 - all
/arkcompiler/ets_frontend/ets2panda/test/parser/ets/import_tests/import_alias/
Dimport_alias_1.sts16 import * as all from './export'
19 let a = new all.bar2();
20 all.foo2();
21 all.goo2;
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/enum_types/
Dverbose_format.py22 ALL = "all" variable in VerboseKind
28 ALL = "all" variable in VerboseFilter
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/
Dtest_base.py58 # Test result: True if all steps passed, False is any step fails
65 # Collect all executable commands
80 Log.all(_LOGGER, f"Start to execute: {self.test_id}")
131 verbose in [ALL, SHORT] and filter == ALL -> True
132 … verbose in [ALL, SHORT] and filter == KNOWN and status = New or Known or Passed Ignored -> True
133 verbose in [ALL, SHORT] and filter == NEW and status = New -> True
140 if verbose in [VerboseKind.ALL, VerboseKind.SHORT]:
141 is_all = verbose_filter == VerboseFilter.ALL
153 verbose in [ALL, SHORT] -> True
155 verbose == NONE and filter == ALL -> True
[all …]
/arkcompiler/runtime_core/static_core/verification/models/contexts_merge/
Djava_typing.als31 all c: Class | lone c.~subtypes & Class
32 all t: ProperType + NullType | t in Bot.~subtypes and t in Top.subtypes
33 all i: Interface | no i.~subtypes & Class
34 all i: ProperType | NullType in i.subtypes
44 fact Soundness { all r: Register | r.holds.type in r.type.*subtypes }
/arkcompiler/runtime_core/docs/changelogs/
D2022-08-18-isa-changelog.md11 The bytecode size and runtime performance have been suffering for a long time as the all the
13 1. We delete all original java specific opcodes and delete java specific opcode prefix.
16 4. We add prefix "throw" and make all throwing opcodes be prefixed by "throw".
36 As the method number in a class is not limited, we release the constraint that all methodId,
38 Instead, we only ask that all methodId, stringId and literalarrayId in a method should be put in on…
47 5. The literalarray which is referenced by TypeSummary contains the offsets of all type-literalarra…
/arkcompiler/runtime_core/static_core/runtime/arch/
Dmemory_helpers.h35 // NB! It is assumed all panda targets provide such synchronization, which might not be true on all
37 // fence while FullMemoryBarrier callers expect all previous reads and writes to be visible in all
/arkcompiler/runtime_core/static_core/compiler/docs/
Descape_analysis.md14 To check if an object is escaping a method the algorithm initially marks all the allocations as vir…
26all the predecessing blocks. If the object was materialized in at least one predecessor then it sh…
33 …nstruction in the original method to an in instruction that should replace all original instructio…
39 * Allocates all required phi instructions;
41 * Replace all aliased instructions using alias mapping;
42 * Resolve inputs of all newly created phi instructions;
111 materialize all instruction having this save state as materialization site
122 updated all save states by removing virtual objects and inserting new materialized objects;
/arkcompiler/runtime_core/static_core/runtime/mem/
Dmem_stats.h62 /// Number of allocated objects for all time
65 /// Number of freed objects for all time
68 /// Number of allocated large and regular (size <= FREELIST_MAX_ALLOC_SIZE) objects for all time
71 /// Number of freed large and regular (size <= FREELIST_MAX_ALLOC_SIZE) objects for all time
74 /// Number of allocated humongous (size > FREELIST_MAX_ALLOC_SIZE) objects for all time
77 /// Number of freed humongous (size > FREELIST_MAX_ALLOC_SIZE) objects for all time
/arkcompiler/ets_frontend/ets2panda/test/parser/ets/selective_export/
Dimport_4.sts16 import * as all from "./selective_export_4"
20 let sum: int = all.foo() + all.bar();

12345678910>>...70