Home
last modified time | relevance | path

Searched defs:list (Results 1 – 25 of 84) sorted by relevance

1234

/arkcompiler/runtime_core/static_core/scripts/code_style/
Ddoxygen_style_check.py64 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:
Dcode_style_check.py78 def check_file_list(file_list : list, panda_dir : str, reformat : bool, proc_count : int):
/arkcompiler/runtime_core/static_core/scripts/clang-tidy/
Dclang_tidy_check.py250 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/
Dark.py356 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/
Djs_api_linked_list.cpp27 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 …]
Djs_api_list.cpp31 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 …]
Djs_api_list_iterator.cpp43 JSHandle<JSTaggedValue> list(thread, iter->GetIteratedList()); in Next() local
Djs_api_linked_list_iterator.cpp46 JSHandle<TaggedDoubleList> list(linkedList); in Next() local
/arkcompiler/ets_runtime/ecmascript/containers/tests/
Dcontainers_list_test.cpp66 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/
Dgc_pause_stats.py22 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/
Dchecker.cpp51 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/
Darray_define.ts28 let list: any[] = [0, 'a', true, 3]; variable
/arkcompiler/ets_runtime/test/moduletest/ldmodulensbyic/
Dldmodulensbyic.js18 let list = ["Panda", "Lion ", "Monkey"]; variable
/arkcompiler/ets_runtime/tools/circuit_viewer/src/engine/control/
DXSelect.js19 constructor(list, default_) { argument
28 resetList(list, default_) { argument
/arkcompiler/ets_frontend/es2panda/typescript/core/
DtypeRelation.cpp49 …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/
Dcontainerslistclear_fuzzer.cpp77 JSHandle<JSAPIList> list(thread, result); in CreateJSAPIList() local
103 JSHandle<JSAPIList> list = CreateJSAPIList(thread); in ContainerslistClearFuzzTest() local
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_api_list_iterator_test.cpp85 …JSHandle<JSAPIList> list(factory->NewJSObjectByConstructor(JSHandle<JSFunction>(constructor), cons… in CreateList() local
100 JSHandle<JSAPIList> list(thread, CreateList()); in HWTEST_F_L0() local
Djs_api_list_test.cpp85 …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/
DarraySliceCase.js53 function list() { function
/arkcompiler/ets_frontend/ets2panda/checker/ets/
DcastingContext.cpp20 … const lexer::SourcePosition &pos, std::initializer_list<TypeErrorMessageElement> list, in CastingContext()
/arkcompiler/ets_runtime/test/fuzztest/containerslistconverttoarray_fuzzer/
Dcontainerslistconverttoarray_fuzzer.cpp102 JSHandle<JSAPIList> list(thread, result); in CreateJSAPIList() local
124 JSHandle<JSAPIList> list = CreateJSAPIList(thread); in ContainerslistConvertToArrayFuzzTest() local
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_list_format.cpp97 JSHandle<JSTaggedValue> list = GetCallArg(argv, 0); in Format() local
124 JSHandle<JSTaggedValue> list = GetCallArg(argv, 0); in FormatToParts() local
/arkcompiler/ets_frontend/es2panda/typescript/
Dchecker.cpp51 void Checker::ThrowTypeError(std::initializer_list<TypeErrorMessageElement> list, const lexer::Sour… in ThrowTypeError()
/arkcompiler/runtime_core/compiler/tests/
Dunit_test.h154 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/
Dcontainer_linked_list.js25 let list = new LinkedList(); variable

1234