| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/03.types/15.literal_types/02.operations_on_literal_types/ |
| D | operations_on_literal_types2.ets | 23 type VER = "top" | "middle" | "bottom"| "same"; 25 let s: string[] = ["left", "top", "center", "same", "bottom", "middle", "right"] 28 let i: (VER|HOR)[] = ["left", "top", "center", "same", "bottom", "middle", "right"]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/templates/stdlib/ |
| D | Array_builtin_algorithms.ets.j2 | 58 let middle: int = left + half; 60 if (arr[middle] < key) { 61 left = middle + 1; 111 let middle: int = left + half; 113 if (arr[middle] <= key) { 114 left = middle + 1; 164 let middle: int = left + half; 166 if (arr[middle] == false && key == true) { 167 left = middle + 1; 217 let middle: int = left + half; [all …]
|
| D | Array_builtin_sort.ets.j2 | 69 const middle = Math.floor(begin + arrLength / 2) as int 70 const leftHalf:FixedArray<{{T}}> = new {{T}}[middle] 72 copyPart(leftHalf, counter, array, 0, middle) 75 const rightHalf:FixedArray<{{T}}> = new {{T}}[arrLength - middle] 76 copyPart(rightHalf, counter, array, middle)
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tools/declgen_ts2sts/test/cookbook_tests/ |
| D | arkts-no-type-generic.ts | 47 export type FunctionComposer<Input, Middle, Output> = ( 48 f: (input: Input) => Middle, 49 g: (middle: Middle) => Output
|
| D | arkts-no-type-generic.d.ets | 41 export type FunctionComposer<Input, Middle, Output> = Any;
|
| /arkcompiler/runtime_core/static_core/plugins/ets/stdlib/std/core/ |
| D | BuiltinArrayAlgorithms.ets | 54 let middle: int = left + half; 56 if (arr[middle] == false && key == true) { 57 left = middle + 1; 107 let middle: int = left + half; 109 if (arr[middle] == false && key == true || arr[middle] == key) { 110 left = middle + 1; 220 let middle: int = left + half; 222 if (arr[middle] < key) { 223 left = middle + 1; 273 let middle: int = left + half; [all …]
|
| /arkcompiler/ets_frontend/test/sdk_test_projects/bytecodehar_test/entry/src/main/ets/pages/ |
| D | Index.ets | 74 middle: { anchor: 'container', align: HorizontalAlign.Center } 85 middle: { anchor: '__container__', align: HorizontalAlign.Center } 95 middle: { anchor: '__container__', align: HorizontalAlign.Center } 105 middle: { anchor: '__container__', align: HorizontalAlign.Center }
|
| /arkcompiler/runtime_core/static_core/libpandabase/os/ |
| D | cpu_affinity.h | 94 enum CpuPower : uint8_t { BEST = 1U, MIDDLE = 1U << 1U, WEAK = 1U << 2U, ANY = 0U, ALL = BEST | MID… enumerator 146 /// @return const reference on best + middle cpu-set in system
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/05.generics/generic_declarations/generic_classes/test_bridge_methods_in_generic_overrides/ |
| D | bridge_methods_generic.params.yaml | 73 class Middle<U> extends Base<U> { 79 class Bottom extends Middle<string> { 305 class Middle<T extends string> extends Base<T> { 310 class Bottom extends Middle<string> {
|
| /arkcompiler/ets_frontend/ets2panda/lexer/ |
| D | keywordsUtil.cpp | 264 size_t middle = end / 2; in ScanIdContinueMaybeKeyword() local 267 const auto &kw = map[middle]; in ScanIdContinueMaybeKeyword() 276 start = middle + 1; in ScanIdContinueMaybeKeyword() 278 end = middle; in ScanIdContinueMaybeKeyword() 281 middle = (start + end) / 2U; in ScanIdContinueMaybeKeyword()
|
| /arkcompiler/ets_frontend/es2panda/lexer/ |
| D | keywordsUtil.cpp | 266 int middle = end / 2; in ScanIdContinueMaybeKeyword() local 269 const auto &kws = map[middle]; in ScanIdContinueMaybeKeyword() 277 start = middle + 1; in ScanIdContinueMaybeKeyword() 279 end = middle; in ScanIdContinueMaybeKeyword() 282 middle = (start + end) / 2; in ScanIdContinueMaybeKeyword()
|
| /arkcompiler/runtime_core/static_core/docs/images/ |
| D | arkts-debugger-expression-evaluation.svg | 4 …middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1"> …
|
| /arkcompiler/ets_frontend/test/sdk_test_projects/bytecodehar_out_project/entry/src/main/ets/pages/ |
| D | Index.ets | 29 middle: { anchor: '__container__', align: HorizontalAlign.Center }
|
| /arkcompiler/ets_frontend/test/sdk_test_projects/bytecodehar_increace_compile/entry/src/main/ets/pages/ |
| D | Index.ets | 37 middle: { anchor: '__container__', align: HorizontalAlign.Center }
|
| /arkcompiler/ets_runtime/test/moduletest/compareobjecthclass/ |
| D | compareobjecthclass.js | 38 // MemoryReduceDegree::MIDDLE
|
| /arkcompiler/ets_runtime/ecmascript/mem/ |
| D | barriers.h | 67 // It can be a derived pointer point to the middle of an object. 75 // It can be a derived pointer point to the middle of an object.
|
| /arkcompiler/ets_runtime/test/perform/string/ |
| D | expect_output.txt | 32 string replace into string.replace searchtag in the middle of the input parameter : 59
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/ |
| D | method_properties.cpp | 26 // Calls may be in the middle of method in MethodProperties()
|
| /arkcompiler/runtime_core/libabckit/tests/apps/deveco-hello-world/modules/entry/src/main/ets/pages/ |
| D | Index.ts | 67 middle: { anchor: '__container__', align: HorizontalAlign.Center }
|
| /arkcompiler/ets_runtime/common_components/heap/collector/ |
| D | collector.h | 56 // async: Trigger from unsafe context, e.g., holding a lock, in the middle of an allocation.
|
| /arkcompiler/jsvm/src/ |
| D | sourcemap.h | 140 int middle = left + step; in FindEntry() local 141 if (offset < sourceMappings[middle].traceOffset) { in FindEntry() 144 left = middle; in FindEntry()
|
| /arkcompiler/ets_frontend/test/scripts/utils/commit_message/ |
| D | result.py | 76 vertical-align: middle;
|
| /arkcompiler/ets_runtime/tools/ap_file_viewer/src/ap/component/search/ |
| D | Search.html.js | 39 vertical-align:middle;
|
| /arkcompiler/ets_runtime/ecmascript/shared_objects/ |
| D | js_shared_array.cpp | 514 int32_t middle = (left + right) / 2; in IncludeInSortedValue() local 515 JSHandle<JSTaggedValue> vv = JSSharedArray::FastGetPropertyByValue(thread, obj, middle); in IncludeInSortedValue() 520 left = middle + 1; in IncludeInSortedValue() 522 right = middle - 1; in IncludeInSortedValue()
|
| /arkcompiler/ets_runtime/tools/ap_file_viewer/src/ap/ |
| D | ApApplicationPublicFunc.js | 93 vertical-align:middle;
|