Home
last modified time | relevance | path

Searched full:than (Results 1 – 25 of 174) sorted by relevance

1234567

/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DdoNotEmitDetachedCommentsAtStartOfLambdaFunction.ts42 AssertType(() => { // Single line comment with more than one blank line return 0;}, "() => nu…
44 // Single line comment with more than one blank line
52 AssertType(() => { /* multi-line comment with more than one blank line */ return 0;…
55 multi-line comment with more than one blank line
DdoNotEmitDetachedCommentsAtStartOfFunctionBody.ts40 // Single line comment with more than one blank line
50 multi line comment with more than one blank line
DdoNotEmitDetachedCommentsAtStartOfConstructor.ts45 // Single Line Comment with more than one blank line
57 Multi-line comment with more than one blank line
DprivateConstructorFunction.ts22 // make sure not to crash when parent's a block rather than a source file or some other
DmergedInterfacesWithConflictingPropertyNames2.ts48 x: T; // ok, different declaration space than other M2
/arkcompiler/ets_frontend/es2panda/test/hotfix/hotfix-noerror/modify-anon-content-keep-origin-name/
Dbase_mod.js20 // #16327008318272898567# other than #4142007332460109178# for first anonymous function
21 // #7595881967332036965# other than #311697330876580632# for second anonymous function
/arkcompiler/toolchain/build/config/aosp/
Dconfig.gni54 # architecture, which is different than the names GN uses.
64 # architecture, which is different than the names GN uses.
84 # only need to define the current one, rather than one for every platform
/arkcompiler/runtime_core/tests/checked/
Dcompare_lenarray_with_zero.pa14 #! CHECKER Check if LenArray is not less than zero is eliminated
41 #! CHECKER Check if LenArray is greater than zero is not eliminated
/arkcompiler/ets_runtime/ecmascript/compiler/
Dcircuit_ir_specification.md65 …S_STRING>, b:<JS_ARRAY>)`), thus the secondary types will be more precise than initially set at th…
367 …* `0010` `UGT`: interprets the operands as unsigned values and yields true if op1 is greater than
368 …* `0011` `UGE`: interprets the operands as unsigned values and yields true if op1 is greater than
369 …* `0100` `ULT`: interprets the operands as unsigned values and yields true if op1 is less than op2.
370 …* `0101` `ULE`: interprets the operands as unsigned values and yields true if op1 is less than or …
372 …* `1010` `SGT`: interprets the operands as signed values and yields true if op1 is greater than op…
373 …* `1011` `SGE`: interprets the operands as signed values and yields true if op1 is greater than or…
374 * `1100` `SLT`: interprets the operands as signed values and yields true if op1 is less than op2.
375 …* `1101` `SLE`: interprets the operands as signed values and yields true if op1 is less than or eq…
393 * `0010` `OGT`: ordered and greater than
[all …]
/arkcompiler/ets_runtime/ecmascript/
Djs_weak_container.cpp67 …ASSERT_PRINT(entry >= 0 && entry < GetSize(), "entry must be non-negative integer less than capaci… in GetKey()
73 …ASSERT_PRINT(entry >= 0 && entry < GetSize(), "entry must be non-negative integer less than capaci… in GetValue()
113 …ASSERT_PRINT(entry >= 0 && entry < GetSize(), "entry must be non-negative integer less than capaci… in GetValue()
Djs_map.cpp71 …ASSERT_PRINT(entry >= 0 && entry < GetSize(), "entry must be non-negative integer less than capaci… in GetKey()
77 …ASSERT_PRINT(entry >= 0 && entry < GetSize(), "entry must be non-negative integer less than capaci… in GetValue()
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_global.cpp224 // i. If the code unit value of C is not less than 0xDC00 and not greater than 0xDFFF, in Encode()
231 // ii. If the code unit value of C is less than 0xD800 or greater than 0xDBFF, then in Encode()
237 … // 4. If kChar is less than 0xDC00 or greater than 0xDFFF, throw a URIError exception. in Encode()
338 // ii. If k + 2 is greater than or equal to strLen, throw a URIError exception. in Decode()
390 if (n > 4) { // 4 : 4 means less than 4 in Decode()
394 // 2. If n equals 1 or n is greater than 4, throw a URIError exception. in Decode()
395 if ((n == 1) || (n > 4)) { // 4: means greater than 4 in Decode()
402 … // 5. If k + (3 × (n – 1)) is greater than or equal to strLen, throw a URIError exception. in Decode()
/arkcompiler/runtime_core/docs/
Ddesign-of-interpreter.md33 1. Bytecode should allow the interpreter to run no slower than state of the art interpreters.
106 operating by 9% faster than `gzip`.
116 1. Interpreter should run no slower than state of the art interpreters.
132 1. Interpreters are by nature slower than native code execution. Slowdown can be explained by:
181 redundant memory consumption is cheaper than ongoing runtime penalties on garbage collector
Ddebugger-vscode-communication.md17 * Client runs a server than waiting for a TCP socket
/arkcompiler/ets_runtime/ecmascript/base/tests/
Dnumber_helper_test.cpp299 // more than INT_MAX in HWTEST_F_L0()
301 // less than INT_MIN in HWTEST_F_L0()
384 …* of number based on ten is less than zero and radix Digit is more than zero or it is gr…
385 …* and radix Digit is less than MAX_EXPONENT_DIGIT call the DoubleToFixed function.other …
421 …* of number based on ten is less than zero and radix Digit is more than zero or it is gr…
422 …* and radix Digit is less than MAX_EXPONENT_DIGIT call the DoubleToFixed function.other …
/arkcompiler/ets_runtime/ecmascript/shared_mm/
Dshared_mm.cpp78 LOG_ECMA_MEM(FATAL) << "size must have a size bigger than 0"; in AllocateBuffer()
82 LOG_ECMA_MEM(FATAL) << "size must be less than the maximum"; in AllocateBuffer()
/arkcompiler/ets_runtime/ecmascript/mem/
Dnative_area_allocator.cpp26 LOG_ECMA_MEM(FATAL) << "capacity must have a size not less than sizeof Area."; in AllocateArea()
94 LOG_ECMA_MEM(FATAL) << "size must have a size bigger than 0"; in AllocateBuffer()
Dnative_area_allocator.h108 LOG_ECMA_MEM(FATAL) << "size must have a size bigger than 0"; in Allocate()
125 LOG_ECMA_MEM(FATAL) << "capacity must have a size not less than sizeof Area."; in AllocateSpace()
/arkcompiler/ets_frontend/test262/
Des5_tests.txt154 language/expressions/greater-than/bigint-and-bigint.js
155 language/expressions/greater-than/bigint-and-boolean.js
156 language/expressions/greater-than/bigint-and-incomparable-string.js
157 language/expressions/greater-than/bigint-and-non-finite.js
158 language/expressions/greater-than/bigint-and-number-extremes.js
159 language/expressions/greater-than/bigint-and-number.js
160 language/expressions/greater-than/bigint-and-string.js
161 language/expressions/greater-than/bigint-and-symbol.js
162 language/expressions/greater-than-or-equal/bigint-and-bigint.js
163 language/expressions/greater-than-or-equal/bigint-and-incomparable-string.js
[all …]
/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_tree_map.cpp56 ASSERT_PRINT(entry < GetSize(), "entry must less than capacity"); in GetKey()
63 ASSERT_PRINT(entry < GetSize(), "entry must less than capacity"); in GetValue()
/arkcompiler/ets_runtime/test/deopttest/restore_vregs/
Drestore_vregs.ts17 // declare args is greater than the number of actual args.
/arkcompiler/runtime_core/compiler/docs/
Dinterface_inline_cache.md104 1. `Interface Inline Cache` will reduce `RESOLVE_VIRTUAL_CALL_AOT` calls by more than 90%
105 2. benchmark test case: ImtConflicts100 -- runing time will accelerate by more than 300%
/arkcompiler/runtime_core/bytecode_optimizer/tests/benchmark/
Dcompare.py58 de_optimized_files = 0 # code_item section is bigger than baseline
113 \n Files that are bigger than baseline: {:d}\
/arkcompiler/toolchain/build/toolchain/mingw/
DBUILD.gn18 # considered runtime_deps rather than stripped ones.
/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Df64tou32.yaml112 …description: If converted integer is less than minimal value for destination type, the result is m…
135 …description: If converted integer is greater than maximum value for destination type, the result i…

1234567