Home
last modified time | relevance | path

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

/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/
H A Ddescriptor.py27 self.includes = re.compile(r"includes:\s+\[(?P<includes>.+)]")
29 self.includes2 = re.compile(f"includes:(?P<includes>{spaces_pattern})")
55 includes = []
56 match = self.includes.search(header)
57 includes += [incl.strip() for incl in match.group("includes").split(",")] if match else []
60 includes
[all...]
H A Dchapters.py31 includes: List[str]
78 def __parse_item(includes: List[str], excludes: List[str], yaml_item: Union[str, dict]) -> None:
80 includes.append(yaml_item.strip())
99 includes: List[str] = []
102 Chapters.__parse_item(includes, excludes, yaml_item)
104 return Chapter(name, includes, excludes)
126 for inc in chapter.includes:
160 for item in chapter.includes + chapter.excludes:
/arkcompiler/ets_frontend/es2panda/test/
H A Dtest262util.py29 self.includes = re.compile(r"includes:\s+\[(?P<includes>.+)\]")
30 self.includes2 = re.compile(r"includes:(?P<includes>(\s+-[^-].+)+)")
108 for include in desc['includes']:
126 match = self.includes.search(header)
127 includes = list(map(lambda e: e.strip(), match.group(
128 'includes').split(','))) if match else []
131 includes
[all...]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/interfaces/interface_method_returns_value/arkts_interface/
H A Dindex.js96 while (!foundResults.includes(1234) && !foundResults.includes(false) && !foundResults.includes('stringValue')) {
99 if (!foundResults.includes(runResult)) {
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/test262/
H A Dutil_test262.py54 includes = []
56 if "includes" in desc:
57 includes.extend(desc["includes"])
58 includes.extend(['assert.js', 'sta.js'])
61 includes.extend(['doneprintHandle.js'])
71 'includes': includes,
133 for include in desc['includes']:
/arkcompiler/ets_frontend/ets2panda/public/headers_parser/
H A Dmain.py51 data, includes = extract_and_remove_includes(data)
56 if len(includes) != 0:
57 res["include"] = includes
/arkcompiler/ets_frontend/arkguard/scripts/
H A Dexecute_result_statistics.js54 } else if (filePath.includes('assert-expectation.ts')) {
73 if (!NonExecutableFile.includes(fileName)) {
H A Dobfuscate_script.js37 if (currentEntries.includes(configFile)) {
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/proxies/ets_proxy/
H A Dcheck_proxy_objects.js25 ASSERT_TRUE(expected.every((p) => props.includes(p)));
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/test/chapters_test/
H A Dchapters_neg_test.py50 len_includes = len(ch1.includes)
/arkcompiler/ets_frontend/ets2panda/util/
H A Darktsconfig.cpp426 auto includes = arktsConfig->Include(); in GetSourceList() local
430 // If "files" and "includes" are empty - include everything from tsconfig root in GetSourceList()
432 if (files.empty() && includes.empty()) { in GetSourceList()
433 includes = {ArkTsConfig::Pattern("**/*", configDir.string())}; in GetSourceList()
452 for (auto &include : includes) { in GetSourceList()
/arkcompiler/ets_runtime/test/moduletest/arrayFilterCase/
H A DarrayFilterCase.js54 return arr.filter((el) => el.toLowerCase().includes(query.toLowerCase()));
/arkcompiler/ets_runtime/test/moduletest/arrayreducecase/
H A Darrayreducecase.js40 if (!accumulator.includes(currentValue)) {
/arkcompiler/ets_runtime/test/moduletest/bindfunction/
H A Dbindfunction.js82 const proxy = new Proxy(Array.prototype.includes, {});
/arkcompiler/ets_runtime/test/moduletest/forin/
H A Dforin.js82 if (key.includes('_')) {
/arkcompiler/ets_frontend/ets2panda/ast_verifier/
H A DASTVerifier.cpp76 std::includes(invariantsNames_.begin(), invariantsNames_.end(), invariantSet.begin(), invariantSet.end()); in Verify()
/arkcompiler/ets_frontend/ets2panda/public/
H A Des2panda_lib.rb665 @includes = Set.new
835 def includes method in Es2pandaLibApi
836 @includes
874 @includes << include
892 module_function :wrap_data, :classes, :ast_nodes, :includes, :change_types, :enums, :ast_types,
/arkcompiler/ets_runtime/test/moduletest/jsonstringifier/
H A Djsonstringifier.js248 print(err.message.includes("circular structure"));
/arkcompiler/ets_runtime/test/moduletest/typearray/
H A Dtypearray.js412 // Test case for includes()
414 print(arr1_includes.includes(5, -100));
415 print(arr1_includes.includes(55,-1));
417 print(arr2_includes.includes(5));
/arkcompiler/ets_runtime/test/moduletest/arraysort/
H A Darraysort.js276 super.includes();
/arkcompiler/ets_runtime/test/moduletest/elements_kind/
H A Delements_kind.js1581 // Array.includes
1586 if (!array1.includes(2) && ArkTools.getElementsKind(array1) == PACKEDINT) {
1592 if (!pets.includes('cat')) {
1596 if (pets.includes('at')) {
/arkcompiler/ets_runtime/test/moduletest/elements_kind_generic/
H A Delements_kind_generic.js1579 if (!array1.includes(2) && ArkTools.getElementsKind(array1) == GENERIC) {
1585 if (!pets.includes('cat')) {
1589 if (pets.includes('at')) {
/arkcompiler/ets_runtime/test/moduletest/array/
H A Darray.js452 print(arr25.includes({}, 414));
453 print(arr25.includes(1025,109));
457 print(arr25.includes({}, 26));
1495 const result = array.includes(target);
/arkcompiler/ets_runtime/tools/ap_file_viewer/src/ap/component/sheet/
H A DTabPaneApSummary.js71 return value !== undefined && value !== null && value.toString().toLowerCase().includes(filter);
/arkcompiler/ets_frontend/es2panda/test/compiler/js/
H A Dcocos_worker_test.js20328 this._delegates.includes(t) || this._delegates.push(t);
20331 return this._delegates.includes(t);
[all...]

Completed in 48 milliseconds