| /arkcompiler/runtime_core/cmake/ |
| D | README.md | 8 $ make 27 $ make clang_format 32 $ make clang_tidy 41 You may force fixes for clang-format issues, with the `make clang_force_format` command. 42 Run `make help | grep clang` to see all possible clang-[format|style] targets. 43 …mat target (`make clang_format_opt_opt.cpp`) or the clang-tidy one (`make clang_tidy_opt_opt.cpp`)… 44 To check code-style through just one check-system - use `make clang_tidy` or `make clang_format`.
|
| /arkcompiler/runtime_core/static_core/cmake/ |
| D | README.md | 8 $ make 27 $ make clang_format 32 $ make clang_tidy 41 You may force fixes for clang-format issues, with the `make clang_force_format` command. 42 Run `make help | grep clang` to see all possible clang-[format|style] targets. 43 …mat target (`make clang_format_opt_opt.cpp`) or the clang-tidy one (`make clang_tidy_opt_opt.cpp`)… 44 To check code-style through just one check-system - use `make clang_tidy` or `make clang_format`. 58 In order to make possible importing prebuilt targets without recompiling them use the following wra…
|
| /arkcompiler/runtime_core/taihe/test/ani_arraybuffer/author/src/ |
| D | arraybuffer.impl.cpp | 32 array<uint8_t> result = array<uint8_t>::make(nums); in GetArrayBuffer() 39 array<uint8_t> result = array<uint8_t>::make(nums.size()); in DoubleArrayBuffer() 54 array<int8_t> result = array<int8_t>::make(nums); in GetArrayI8() 61 array<int8_t> result = array<int8_t>::make(nums.size()); in DoubleI8() 76 array<int16_t> result = array<int16_t>::make(nums); in GetArrayI16() 83 array<int16_t> result = array<int16_t>::make(nums.size()); in DoubleI16() 98 array<int32_t> result = array<int32_t>::make(nums); in GetArrayI32() 105 array<int32_t> result = array<int32_t>::make(nums.size()); in DoubleI32() 120 array<int64_t> result = array<int64_t>::make(nums); in GetArrayI64() 127 array<int64_t> result = array<int64_t>::make(nums.size()); in DoubleI64() [all …]
|
| /arkcompiler/runtime_core/taihe/test/ani_optional/author/src/ |
| D | optional.impl.cpp | 100 return taihe::optional<string>::make("hello"); in GetName() 106 return taihe::optional<int8_t>::make(geti8Value); in Geti8() 112 return taihe::optional<int16_t>::make(geti16Value); in Geti16() 118 return taihe::optional<int32_t>::make(geti32Value); // 默认返回0 in Geti32() 124 return taihe::optional<int64_t>::make(geti64Value); // 默认返回0 in Geti64() 130 return taihe::optional<float>::make(getf32Value); in Getf32() 136 return taihe::optional<double>::make(getf64Value); in Getf64() 141 return taihe::optional<bool>::make(false); in Getbool() 148 return taihe::optional<array<uint8_t>>::make(array<uint8_t>::make(arrSize, arrNum)); in GetArraybuffer()
|
| D | opt.impl.cpp | 106 return optional<int32_t>::make(optionalMakeValue); in MakeOptionalInt() 115 return optional<array<int32_t>>::make(array<int32_t>::make(num, val)); in MakeOptionalArray() 128 return optional<string>::make(ret); in SendReturnResult()
|
| /arkcompiler/ets_runtime/test/jittest/create_arguments/ |
| D | create_arguments.ts | 15 function Car(make, model, year) { 16 this.make = make;
|
| /arkcompiler/runtime_core/taihe/test/ani_bundle/author/src/ |
| D | shortcutInfo.impl.cpp | 74 return optional<bool>::make(true); in GetIsStatic() 79 return optional<bool>::make(true); in GetIsHomeShortcut() 84 return optional<bool>::make(true); in GetIsEnabled()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/doc/ |
| D | BUILDING.md | 7 Make sure your Git is set up with Gitee account 61 Install Curl, Make, Ninja, Ruby, CMake 64 sudo apt install curl make ninja-build ruby cmake 97 Make `build` folder
|
| /arkcompiler/ets_frontend/ets2panda/test/ast/compiler/ets/ |
| D | Invalid_rest_element_wtih_tuple_type.ets | 25 /* @@? 17:38 Error TypeError: Cannot make a static reference to the non-static type B */ 26 /* @@? 17:41 Error TypeError: Cannot make a static reference to the non-static type C */
|
| /arkcompiler/runtime_core/static_core/scripts/ |
| D | install-deps-ubuntu | 21 make -C "${SCRIPT_DIR}/../tests/vm-benchmarks/" vmb 197 make -j install 198 make clean 203 make -j install 204 make clean 209 make -j install 210 make clean 230 make -j install 231 make clean 236 make -j install [all …]
|
| /arkcompiler/runtime_core/taihe/test/ani_array/author/src/ |
| D | array.impl.cpp | 363 optional<array<::taihe::string>>::make(array<::taihe::string> {name, name, name}); in ArrayOpt() 383 auto result = array<string>::make(nums.size(), ""); in ToStingArray() 390 return array<int32_t>::make(num, value); in MakeIntArray() 395 return array<::array_test::Color>::make(num, value); in MakeEnumArray() 402 return array<map<string, int64_t>>::make(num, record); in MakeRecordArray() 407 return array<::array_test::Data>::make(num, ::array_test::Data {a, b, c}); in MakeStructArray() 412 return array<array<int32_t>>::make(num, value); in MakeIntArray2() 417 auto result = array<::array_test::Color>::make(value.size(), value[0]); in ChangeEnumArray() 424 auto result = array<map<string, int64_t>>::make(value.size(), value[0]); in ChangeRecordArray() 434 auto result = array<::array_test::Data>::make(value.size(), value[0]); in ChangeStructArray() [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_sdk/api/@ohos/util/ |
| D | GetHashTest.ets | 59 make: string; 62 constructor(make: string, model: string) { 63 this.make = make;
|
| /arkcompiler/runtime_core/static_core/tests/regression/ |
| D | irreducible_loop.pa | 21 inci a1, 1 # make a1 even 33 jmp _one # make a1 even
|
| /arkcompiler/runtime_core/tests/regression/ |
| D | irreducible_loop.pa | 21 inci a1, 1 # make a1 even 33 jmp _one # make a1 even
|
| /arkcompiler/runtime_core/libpandabase/mem/ |
| D | code_allocator.h | 35 …* \brief Allocates \param size bytes, copies \param codeBuff to allocated memory and make this mem… 50 * Make memory \mem_range executable
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/std/core/ |
| D | TypeMethodResolveConstructorFew.ets | 41 TestType.make(args) 69 TestType.make(from(new C()))
|
| D | TypeMethodResolveConstructor.ets | 49 CType.make(args) 83 CType.make(from(new C()))
|
| /arkcompiler/runtime_core/tests/cts-generator/ |
| D | README.md | 97 ### How to generate all test not using cmake/make 109 All test can be executed using `make cts-generated` command, test with `ignore` runner options will… 114 make cts-generator 162 make cts-generator
|
| /arkcompiler/runtime_core/static_core/tests/cts-generator/ |
| D | README.md | 97 ### How to generate all test not using cmake/make 109 All test can be executed using `make cts-generated` command, test with `ignore` runner options will… 114 make cts-generator 162 make cts-generator
|
| /arkcompiler/runtime_core/static_core/libpandabase/mem/ |
| D | code_allocator.h | 35 …* @brief Allocates @param size bytes, copies @param codeBuff to allocated memory and make this mem… 50 * Make memory \mem_range executable
|
| /arkcompiler/runtime_core/taihe/test/ani_test/author/src/ |
| D | ani_test.impl.cpp | 26 array<string>::make(2, "file.txt"), in makeData() 86 return optional<int32_t>::make(optionalIntValue); in makeOptionalInt() 102 return array<int32_t>::make(n, v); in makeArrayInt()
|
| /arkcompiler/ets_runtime/ecmascript/mem/ |
| D | heap_region_allocator.h | 67 …// Can not throw OOM during GC, so just make MemMapAllocator infinite to make allocating region al…
|
| /arkcompiler/runtime_core/taihe/test/ani_namespace/author/src/ |
| D | ns_alltest.functiontest.impl.cpp | 118 array<uint8_t> result = array<uint8_t>::make(param1.size()); in BaseFunctionTest52() 135 return optional<int8_t>::make(result); in BaseFunctionTest53() 152 return optional<int32_t>::make(result); in BaseFunctionTest54() 589 array<uint8_t> result = array<uint8_t>::make(g_testIntAdd10); in get_ArrayBuffer_test_attribute() 601 return optional<int32_t>::make(result); in getOptional_test_attribute() 631 return array<bool>::make(1, true); in getArray_test_attribute() 868 array<int8_t> result = array<int8_t>::make(param1.size()); in BaseFunctionTest24() 877 array<int16_t> result = array<int16_t>::make(param1.size()); in BaseFunctionTest25() 895 return optional<int16_t>::make(result); in BaseFunctionTest26() 912 return optional<int64_t>::make(result); in BaseFunctionTest27() [all …]
|
| /arkcompiler/runtime_core/static_core/libpandafile/tests/ |
| D | panda_cache_test.cpp | 60 // NOTE(yxr) : make sure no conflicts in TEST() 70 // NOTE(yxr) : make sure no conflicts in TEST() 171 // NOTE(yxr) : make sure no conflicts in GetElement() 183 // NOTE(yxr) : make sure no conflicts in SetElement() 261 // NOTE(yxr) : make sure no conflicts in CleanFieldMocks()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/stdlib-templates/utils/ |
| D | test_core_type_array_type.j2 | 32 obj = arrayType.make({{.array_size}}) as FixedArray<{{.item.name}}>; 34 printTestVerdict(testResult, "Type.of({{.item.name}}[]).make()");
|