Home
last modified time | relevance | path

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

1234567

/arkcompiler/runtime_core/static_core/scripts/code_style/
Ddoxygen_style_check.py68 def check_keywords(src_path: str, splitted_lines: list, line_num: int) -> bool:
83 def check_javadoc(src_path: str, strings: list) -> bool:
111 def check_additional_slashes(src_path: str, strings: list) -> bool:
150 def check_less_than_slashes(src_path: str, strings: list) -> bool:
172 def check_all(src_path: str, fine_patterns_found: list, wrong_patterns_number: int) -> bool:
232 def check_file_list(file_list: list) -> bool:
/arkcompiler/runtime_core/static_core/scripts/clang-tidy/
Dclang_tidy_check.py260 def check_file_list(file_list: list, panda_dir: str, build_dir: str, header_filter: str, proc_count…
351 def filter_test_file_duplicates(file_list: list) -> list:
370 def check_file_list_duplicate(dup_path : str, file_list: list) -> bool:
383 def filter_file_duplicated_options(file_list: list) -> list:
394 def filter_file_list(file_list: list) -> list:
404 def verify_uniq_element_list(uniq_element_list: list) -> bool:
436 def check_file_list_for_system_headers_includes(file_list: list):
/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_linked_list.cpp22 JSTaggedValue JSAPILinkedList::Insert(JSThread *thread, const JSHandle<JSAPILinkedList> &list, in Insert()
47 …le<JSAPILinkedList> JSAPILinkedList::Clone(JSThread *thread, const JSHandle<JSAPILinkedList> &list) in Clone()
65 JSTaggedValue JSAPILinkedList::RemoveFirst(JSThread *thread, const JSHandle<JSAPILinkedList> &list) in RemoveFirst()
76 JSTaggedValue JSAPILinkedList::RemoveLast(JSThread *thread, const JSHandle<JSAPILinkedList> &list) in RemoveLast()
87 JSTaggedValue JSAPILinkedList::RemoveByIndex(JSThread *thread, JSHandle<JSAPILinkedList> &list, con… in RemoveByIndex()
116 JSTaggedValue JSAPILinkedList::RemoveFirstFound(JSThread *thread, JSHandle<JSAPILinkedList> &list, in RemoveFirstFound()
128 JSTaggedValue JSAPILinkedList::RemoveLastFound(JSThread *thread, JSHandle<JSAPILinkedList> &list, in RemoveLastFound()
140 void JSAPILinkedList::Add(JSThread *thread, const JSHandle<JSAPILinkedList> &list, const JSHandle<J… in Add()
147 void JSAPILinkedList::AddFirst(JSThread *thread, const JSHandle<JSAPILinkedList> &list, in AddFirst()
173 JSTaggedValue JSAPILinkedList::Set(JSThread *thread, const JSHandle<JSAPILinkedList> &list, in Set()
[all …]
Djs_api_list.cpp23 void JSAPIList::Add(JSThread *thread, const JSHandle<JSAPIList> &list, const JSHandle<JSTaggedValue… in Add()
48 JSTaggedValue JSAPIList::Insert(JSThread *thread, const JSHandle<JSAPIList> &list, const JSHandle<J… in Insert()
68 JSTaggedValue JSAPIList::Set(JSThread *thread, const JSHandle<JSAPIList> &list, in Set()
110 JSTaggedValue JSAPIList::FastGet(JSThread *thread, const int index, const JSHandle<JSAPIList> &list) in FastGet()
151 JSTaggedValue JSAPIList::RemoveByIndex(JSThread *thread, const JSHandle<JSAPIList> &list, const int… in RemoveByIndex()
182 JSHandle<JSAPIList> list = JSHandle<JSAPIList>::Cast(thisHandle); in ReplaceAllElements() local
190 JSHandle<JSAPIList> list = JSHandle<JSAPIList>::Cast(thisHandle); in Sort() local
196 JSTaggedValue JSAPIList::Equal(JSThread *thread, const JSHandle<JSAPIList> &list) in Equal()
202 JSTaggedValue JSAPIList::ConvertToArray(const JSThread *thread, const JSHandle<JSAPIList> &list) in ConvertToArray()
208 JSTaggedValue JSAPIList::GetSubList(JSThread *thread, const JSHandle<JSAPIList> &list, in GetSubList()
[all …]
/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/ets_frontend/ets2panda/public/headers_parser/
Dparse_method.py164 def extract_init_args(args: list, initializers: list) -> Tuple[List, List]:
/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/es2panda/test/bytecode_file_size_comparison/test_cases/js/
DArrayListTest.js16 const list = []; variable
DLinkedListTest.js16 let list = []; variable
DIteratorTest.js16 const list = []; variable
/arkcompiler/ets_frontend/es2panda/test/bytecode_file_size_comparison/test_cases/ts/
DLinkedListTest.ts16 let list: number[] = []; variable
DArrayListTest.ts16 const list: string[] = []; constant
DIteratorTest.ts16 const list: string[] = []; constant
/arkcompiler/runtime_core/static_core/plugins/ets/playground/backend/tests/fixtures/
Doverrides.py25 …async def compile_run_arkts(code: str, options: list, disasm: bool = False, verifier: bool = False…
57 async def compile_arkts(code: str, options: list, disasm: bool = False, verifier: bool = False):
/arkcompiler/ets_frontend/arkguard/test/grammar/types_definition/
Darray_define.ts28 let list: any[] = [0, 'a', true, 3]; variable
/arkcompiler/ets_frontend/es2panda/test/bytecode_file_size_comparison/test_cases/java_test_framework/java_cases/
DArrayListTest.java24 ArrayList<String> list = new ArrayList<>(); in main() local
DLinkedListTest.java24 LinkedList<Integer> list = new LinkedList<>(); in main() local
DIteratorTest.java26 List<String> list = new ArrayList<>(); in main() local
/arkcompiler/ets_runtime/test/moduletest/ldmodulensbyic/
Dldmodulensbyic.js18 let list = ["Panda", "Lion ", "Monkey"]; variable
/arkcompiler/ets_frontend/es2panda/test/parser/binder/
Dloop-scope-name-js.js25 const list = [] variable
/arkcompiler/ets_runtime/tools/circuit_viewer/src/engine/control/
DXSelect.js19 constructor(list, default_) { argument
28 resetList(list, default_) { argument
/arkcompiler/ets_runtime/tools/ap_file_viewer/src/ap/component/search/
DSearch.js34 get list() { getter in LitSearch
38 set list(value) { setter in LitSearch
115 this.list = []; property
/arkcompiler/ets_runtime/common_components/heap/space/
Dold_space.h77 void PromoteRegionList(RegionList& list) in PromoteRegionList()
133 void ClearGCInfo(RegionList& list) in ClearGCInfo()
/arkcompiler/runtime_core/static_core/plugins/ets/playground/backend/src/arkts_playground/deps/
Drunner.py92 options: list,
112 options: list,
151 async def _compile(self, filename: str, options: list) -> Dict[str, Any]:
/arkcompiler/ets_frontend/es2panda/typescript/core/
DtypeRelation.cpp47 …ker::IsTypeIdenticalTo(Type *source, Type *target, std::initializer_list<TypeErrorMessageElement> … in IsTypeIdenticalTo()
72 …er::IsTypeAssignableTo(Type *source, Type *target, std::initializer_list<TypeErrorMessageElement> … in IsTypeAssignableTo()
97 …er::IsTypeComparableTo(Type *source, Type *target, std::initializer_list<TypeErrorMessageElement> … in IsTypeComparableTo()

1234567