/arkcompiler/runtime_core/static_core/scripts/code_style/ |
D | doxygen_style_check.py | 64 def check_keywords(src_path: str, splitted_lines: list, line_num: int) -> bool: 78 def check_javadoc(src_path: str, strings: list) -> bool: 105 def check_additional_slashes(src_path: str, strings: list) -> bool: 143 def check_less_than_slashes(src_path: str, strings: list) -> bool: 164 def check_all(src_path: str, fine_patterns_found: list, wrong_patterns_number: int) -> bool: 220 def check_file_list(file_list: list) -> bool:
|
D | code_style_check.py | 78 def check_file_list(file_list : list, panda_dir : str, reformat : bool, proc_count : int):
|
/arkcompiler/runtime_core/static_core/scripts/clang-tidy/ |
D | clang_tidy_check.py | 250 def check_file_list(file_list: list, panda_dir: str, build_dir: str, proc_count: int) -> bool: 335 def filter_test_file_duplicates(file_list: list) -> list: 353 def check_file_list_duplicate(dup_path : str, file_list: list) -> bool: 365 def filter_file_duplicated_options(file_list: list) -> list: 379 def filter_file_list(file_list: list) -> list: 389 def verify_uniq_element_list(uniq_element_list: list) -> bool: 418 def check_file_list_for_system_headers_includes(file_list: list):
|
/arkcompiler/toolchain/build/compile_script/ |
D | ark.py | 356 def build_for_gn_target(self, out_path: str, gn_args: list, arg_list: list, log_file_name: str): 391 def build_for_test262(self, out_path, gn_args: list, arg_list: list, log_file_name: str, 505 def build_for_unittest(self, out_path: str, gn_args: list, log_file_name:str): 511 def build_for_regress_test(self, out_path, gn_args: list, arg_list: list, log_file_name: str): 543 def build(self, out_path: str, gn_args: list, arg_list: list): 570 def match_options(self, arg_list: list, out_path: str) -> [list, list]: 629 def start_for_matched_os_cpu_mode(self, os_cpu_key: str, mode_key: str, arg_list: list): 647 def __main__(self, arg_list: list):
|
/arkcompiler/ets_runtime/ecmascript/js_api/ |
D | js_api_linked_list.cpp | 27 JSTaggedValue JSAPILinkedList::Insert(JSThread *thread, const JSHandle<JSAPILinkedList> &list, in Insert() 52 …le<JSAPILinkedList> JSAPILinkedList::Clone(JSThread *thread, const JSHandle<JSAPILinkedList> &list) in Clone() 70 JSTaggedValue JSAPILinkedList::RemoveFirst(JSThread *thread, const JSHandle<JSAPILinkedList> &list) in RemoveFirst() 81 JSTaggedValue JSAPILinkedList::RemoveLast(JSThread *thread, const JSHandle<JSAPILinkedList> &list) in RemoveLast() 92 JSTaggedValue JSAPILinkedList::RemoveByIndex(JSThread *thread, JSHandle<JSAPILinkedList> &list, con… in RemoveByIndex() 117 JSTaggedValue JSAPILinkedList::RemoveFirstFound(JSThread *thread, JSHandle<JSAPILinkedList> &list, in RemoveFirstFound() 129 JSTaggedValue JSAPILinkedList::RemoveLastFound(JSThread *thread, JSHandle<JSAPILinkedList> &list, in RemoveLastFound() 141 void JSAPILinkedList::Add(JSThread *thread, const JSHandle<JSAPILinkedList> &list, const JSHandle<J… in Add() 148 void JSAPILinkedList::AddFirst(JSThread *thread, const JSHandle<JSAPILinkedList> &list, in AddFirst() 174 JSTaggedValue JSAPILinkedList::Set(JSThread *thread, const JSHandle<JSAPILinkedList> &list, in Set() [all …]
|
D | js_api_list.cpp | 31 void JSAPIList::Add(JSThread *thread, const JSHandle<JSAPIList> &list, const JSHandle<JSTaggedValue… in Add() 56 JSTaggedValue JSAPIList::Insert(JSThread *thread, const JSHandle<JSAPIList> &list, const JSHandle<J… in Insert() 73 JSTaggedValue JSAPIList::Set(JSThread *thread, const JSHandle<JSAPIList> &list, in Set() 131 JSTaggedValue JSAPIList::RemoveByIndex(JSThread *thread, const JSHandle<JSAPIList> &list, const int… in RemoveByIndex() 156 JSHandle<JSAPIList> list = JSHandle<JSAPIList>::Cast(thisHandle); in ReplaceAllElements() local 164 JSHandle<JSAPIList> list = JSHandle<JSAPIList>::Cast(thisHandle); in Sort() local 169 JSTaggedValue JSAPIList::Equal(JSThread *thread, const JSHandle<JSAPIList> &list) in Equal() 175 JSTaggedValue JSAPIList::ConvertToArray(const JSThread *thread, const JSHandle<JSAPIList> &list) in ConvertToArray() 181 JSTaggedValue JSAPIList::GetSubList(JSThread *thread, const JSHandle<JSAPIList> &list, in GetSubList() 210 JSHandle<TaggedArray> JSAPIList::OwnKeys(JSThread *thread, const JSHandle<JSAPIList> &list) in OwnKeys() [all …]
|
D | js_api_list_iterator.cpp | 43 JSHandle<JSTaggedValue> list(thread, iter->GetIteratedList()); in Next() local
|
D | js_api_linked_list_iterator.cpp | 46 JSHandle<TaggedDoubleList> list(linkedList); in Next() local
|
/arkcompiler/ets_runtime/ecmascript/containers/tests/ |
D | containers_list_test.cpp | 66 JSHandle<JSTaggedValue> list = GetCallArg(argv, 2); // 2 means the secode arg in TestForEachFunc() local 111 JSHandle<JSAPIList> list(thread, result); in CreateJSAPIList() local 115 JSTaggedValue ListAdd(JSHandle<JSAPIList> list, JSTaggedValue value) in ListAdd() 128 JSTaggedValue ListEqual(JSHandle<JSAPIList> list, JSHandle<JSAPIList> compareList) in ListEqual() 157 JSHandle<JSAPIList> list(thread, result); in HWTEST_F_L0() local 172 JSHandle<JSAPIList> list = CreateJSAPIList(); in HWTEST_F_L0() local 216 JSHandle<JSAPIList> list = CreateJSAPIList(); in HWTEST_F_L0() local 262 JSHandle<JSAPIList> list = CreateJSAPIList(); in HWTEST_F_L0() local 307 JSHandle<JSAPIList> list = CreateJSAPIList(); in HWTEST_F_L0() local 349 JSHandle<JSAPIList> list = CreateJSAPIList(); in HWTEST_F_L0() local [all …]
|
/arkcompiler/runtime_core/static_core/scripts/ |
D | gc_pause_stats.py | 22 def min_handle(times: list) -> float: 26 def max_handle(times: list) -> float: 30 def avg_handle(times: list) -> float: 36 def median_handle(times: list) -> float: 42 def stdev_handle(times: list) -> float: 48 def stdev_mean_percent(times: list) -> float:
|
/arkcompiler/ets_frontend/ets2panda/checker/ |
D | checker.cpp | 51 std::string Checker::FormatMsg(std::initializer_list<TypeErrorMessageElement> list) in FormatMsg() 78 void Checker::ThrowTypeError(std::initializer_list<TypeErrorMessageElement> list, const lexer::Sour… in ThrowTypeError() 102 void Checker::ReportWarning(std::initializer_list<TypeErrorMessageElement> list, const lexer::Sourc… in ReportWarning() 134 …ker::IsTypeIdenticalTo(Type *source, Type *target, std::initializer_list<TypeErrorMessageElement> … in IsTypeIdenticalTo() 159 …er::IsTypeAssignableTo(Type *source, Type *target, std::initializer_list<TypeErrorMessageElement> … in IsTypeAssignableTo() 184 …er::IsTypeComparableTo(Type *source, Type *target, std::initializer_list<TypeErrorMessageElement> … in IsTypeComparableTo()
|
/arkcompiler/ets_frontend/arkguard/test/grammar/types_definition/ |
D | array_define.ts | 28 let list: any[] = [0, 'a', true, 3]; variable
|
/arkcompiler/ets_runtime/test/moduletest/ldmodulensbyic/ |
D | ldmodulensbyic.js | 18 let list = ["Panda", "Lion ", "Monkey"]; variable
|
/arkcompiler/ets_runtime/tools/circuit_viewer/src/engine/control/ |
D | XSelect.js | 19 constructor(list, default_) { argument 28 resetList(list, default_) { argument
|
/arkcompiler/ets_frontend/es2panda/typescript/core/ |
D | typeRelation.cpp | 49 …ker::IsTypeIdenticalTo(Type *source, Type *target, std::initializer_list<TypeErrorMessageElement> … in IsTypeIdenticalTo() 74 …er::IsTypeAssignableTo(Type *source, Type *target, std::initializer_list<TypeErrorMessageElement> … in IsTypeAssignableTo() 99 …er::IsTypeComparableTo(Type *source, Type *target, std::initializer_list<TypeErrorMessageElement> … in IsTypeComparableTo()
|
/arkcompiler/ets_runtime/test/fuzztest/containerslistclear_fuzzer/ |
D | containerslistclear_fuzzer.cpp | 77 JSHandle<JSAPIList> list(thread, result); in CreateJSAPIList() local 103 JSHandle<JSAPIList> list = CreateJSAPIList(thread); in ContainerslistClearFuzzTest() local
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
D | js_api_list_iterator_test.cpp | 85 …JSHandle<JSAPIList> list(factory->NewJSObjectByConstructor(JSHandle<JSFunction>(constructor), cons… in CreateList() local 100 JSHandle<JSAPIList> list(thread, CreateList()); in HWTEST_F_L0() local
|
D | js_api_list_test.cpp | 85 …JSHandle<JSAPIList> list(factory->NewJSObjectByConstructor(JSHandle<JSFunction>(constructor), cons… in CreateList() local 94 JSAPIList *list = CreateList(); in HWTEST_F_L0() local 241 JSHandle<JSAPIList> list(thread, CreateList()); in HWTEST_F_L0() local 405 JSHandle<JSAPIList> list(thread, CreateList()); in HWTEST_F_L0() local
|
/arkcompiler/ets_runtime/test/moduletest/arraySliceCase/ |
D | arraySliceCase.js | 53 function list() { function
|
/arkcompiler/ets_frontend/ets2panda/checker/ets/ |
D | castingContext.cpp | 20 … const lexer::SourcePosition &pos, std::initializer_list<TypeErrorMessageElement> list, in CastingContext()
|
/arkcompiler/ets_runtime/test/fuzztest/containerslistconverttoarray_fuzzer/ |
D | containerslistconverttoarray_fuzzer.cpp | 102 JSHandle<JSAPIList> list(thread, result); in CreateJSAPIList() local 124 JSHandle<JSAPIList> list = CreateJSAPIList(thread); in ContainerslistConvertToArrayFuzzTest() local
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
D | builtins_list_format.cpp | 97 JSHandle<JSTaggedValue> list = GetCallArg(argv, 0); in Format() local 124 JSHandle<JSTaggedValue> list = GetCallArg(argv, 0); in FormatToParts() local
|
/arkcompiler/ets_frontend/es2panda/typescript/ |
D | checker.cpp | 51 void Checker::ThrowTypeError(std::initializer_list<TypeErrorMessageElement> list, const lexer::Sour… in ThrowTypeError()
|
/arkcompiler/runtime_core/compiler/tests/ |
D | unit_test.h | 154 bool CheckInputs(Inst &inst, std::initializer_list<size_t> list) const in CheckInputs() 168 bool CheckUsers(Inst &inst, std::initializer_list<int> list) const in CheckUsers()
|
/arkcompiler/ets_runtime/test/moduletest/container/ |
D | container_linked_list.js | 25 let list = new LinkedList(); variable
|