Home
last modified time | relevance | path

Searched refs:tmp (Results 1 – 25 of 69) sorted by relevance

123

/arkcompiler/ets_runtime/test/moduletest/string/
Dstring.js22 let tmp = '不林肯访华:习近平会晤美国国务卿促“让中美关系稳下来好起来”美国国务卿安东尼于6月1日于北京与习近平会面。大杂烩中国都五年来首位访华\ variable
24 let flag = tmp;
25 let str1 = tmp.substring(0, 111) + ',,,,,,,,,,,,,,,,,,,,,,,' + tmp.substring(111 + 23);
26 let str2 = tmp.substring(0, 111) + 'nsExpress3SF#123456789的' + tmp.substring(111 + 23,111 + 24) + '…
27 let str3 = tmp.substring(0, 111) + 'nsExpress3SF#123456789的' + tmp.substring(111 + 23);
/arkcompiler/ets_runtime/test/typeinfer/classwithproperty/
Dclasswithproperty.ts42 let tmp = "x"; variable
43 let value1: string = c[tmp] variable
44 AssertType(c[tmp], "any");
51 tmp = "b";
52 let value2: string = c[tmp] variable
53 AssertType(c[tmp], "string");
65 tmp = "e";
66 let value3: string = c[tmp] variable
67 AssertType(c[tmp], "any");
/arkcompiler/ets_runtime/test/typeinfer/getiterator/
Dgetiterator.ts19 for (let tmp of arr) {
20 AssertType(tmp, "number");
25 for (let tmp of str) {
26 AssertType(tmp, "string");
33 for (let tmp of stu) {
34 AssertType(tmp, "Student");
/arkcompiler/ets_runtime/test/aottest/getiterator/
Dgetiterator.ts18 for (var tmp of someArray) {
19 var tmpNumber = tmp;
28 for (var tmp of arr) {
29 tmp.x = 1;
/arkcompiler/ets_runtime/test/aottest/typedarray_load_store/
Dtypedarray_load_store.ts51 let tmp: number = 0;
53 tmp += res[i];
55 print(tmp);
97 let tmp: number = 0.0;
99 tmp += res[i];
102 print(tmp.toFixed(2));
/arkcompiler/ets_runtime/test/aottest/starrayspread/
Dstarrayspread.ts19 var tmp = [...str];
21 print(tmp[0]);
22 print(tmp.length);
/arkcompiler/toolchain/websocket/
Ddefine.h48 std::string tmp = str.substr(prev, cur - prev); in ProtocolSplit() local
49 result.push_back(tmp); in ProtocolSplit()
54 std::string tmp = str.substr(prev); in ProtocolSplit() local
55 result.push_back(tmp); in ProtocolSplit()
/arkcompiler/toolchain/tooling/base/
Dpt_base64.cpp71 char tmp[UNENCODED_GROUP_BYTES]; in Decode() local
72tmp[0] = (base64Chars[0] << 2) | ((base64Chars[1] & 0x30) >> 4); // 2: shift 2bits, 4: shift 4bits in Decode()
73tmp[1] = (base64Chars[1] << 4) | ((base64Chars[2] & 0x3c) >> 2); // 2: shift 2bits, 4: shift 4bits in Decode()
74tmp[2] = (base64Chars[2] << 6) | base64Chars[3]; // 6: shift 6bits, 2: the second char, 3: the thi… in Decode()
76 *dest++ = tmp[j]; in Decode()
/arkcompiler/ets_runtime/test/typeinfer/interface/
Dinterface.ts30 constructor(tmp : number) {
32 this.claN = tmp;
57 constructor(tmp : number) {
58 this.oth = tmp;
/arkcompiler/runtime_core/compiler/optimizer/templates/
Dcodegen_arm64.rb49 auto tmp_reg = #{tmp 'u64'};
102 def tmp(type) method
114 return tmp(m[1])
/arkcompiler/ets_runtime/test/aottest/getpropiterator/
Dgetpropiterator.ts18 for (var tmp in someArray) {
19 var tmpNumber = tmp;
/arkcompiler/runtime_core/libpandabase/utils/
Dring_buffer.h54 auto tmp = RingBufferIterator(*this); variable
56 return tmp;
67 auto tmp = RingBufferIterator(*this); variable
69 return tmp;
289 auto tmp = tail_; in end() local
290 increment_buffer_index(tmp); in end()
291 return iterator(&buffer_, tmp); in end()
307 auto tmp = tail_; in end() local
308 increment_buffer_index(tmp); in end()
309 return const_iterator(&buffer_, tmp); in end()
/arkcompiler/ets_runtime/ecmascript/platform/windows/
Dtime.cpp29 TIME_ZONE_INFORMATION tmp; in GetLocalOffsetFromOS() local
30 GetTimeZoneInformation(&tmp); in GetLocalOffsetFromOS()
31 int64_t res = -tmp.Bias; in GetLocalOffsetFromOS()
/arkcompiler/ets_runtime/test/moduletest/container/
Dcontainer_queue.js63 let tmp = undefined; variable
66 tmp = itr.next().value;
67 testArray1.push(tmp);
68 } while (tmp != undefined);
Dcontainer_stack.js70 let tmp = undefined; variable
73 tmp = itr.next().value;
74 testArray1.push(tmp);
75 } while (tmp != undefined);
Dcontainer_deque.js78 let tmp = undefined; variable
81 tmp = itr.next().value;
82 testArray1.push(tmp);
83 } while (tmp != undefined);
Dcontainer_plainarray.js93 let tmp = undefined; variable
96 tmp = itr.next().value;
97 testArray1.push(tmp);
98 } while (tmp != undefined);
Dcontainer_arraylist.js158 let tmp = undefined; variable
161 tmp = itr.next().value;
162 testArray1.push(tmp);
163 } while (tmp != undefined);
/arkcompiler/ets_runtime/test/aottest/stclasstoglobalrecord/
Dstclasstoglobalrecord.ts31 set setName(tmp: string) {
32 this.name = tmp;
/arkcompiler/ets_runtime/test/moduletest/module/
Dmodule.js26 import {tmp, f} from './exportas.js'
65 print("export as ... case test : " + tmp);
Dexportas.js27 export {str as tmp}
/arkcompiler/ets_runtime/tools/circuit_viewer/src/ir/
DLogParser.js149 let tmp = ir.MType.substring(p, i);
150 if (tmp.startsWith(", ")) {
151 tmp = tmp.substring(2);
153 if (tmp.endsWith(", ")) {
154 tmp = tmp.substring(0, tmp.length - 2);
156 cutResult.push(tmp);
/arkcompiler/runtime_core/libpandabase/tests/
Dbase_mem_stats_test.cpp57 void *tmp; variable
65 tmp = ca.AllocateCode(size1, static_cast<void *>(&buff1[0]));
66 tmp = ca.AllocateCode(sizeof(buff2), static_cast<void *>(&buff2[0]));
/arkcompiler/ets_runtime/ecmascript/compiler/trampoline/aarch64/
Doptimized_call.cpp63 Register tmp(X19); in CallRuntime() local
75 __ Stp(tmp, frameType, MemoryOperand(sp, -FRAME_SLOT_SIZE * 2, AddrMode::PREINDEX)); in CallRuntime()
81 __ Ldr(tmp, MemoryOperand(fp, GetStackArgOffSetToFp(0))); // 0: the first arg id in CallRuntime()
83 __ Add(tmp, glue, Operand(tmp, LSL, 3)); in CallRuntime()
84 __ Ldr(rtfunc, MemoryOperand(tmp, JSThread::GlueData::GetRTStubEntriesOffset(false))); in CallRuntime()
91 __ Ldr(tmp, MemoryOperand(sp, 0)); in CallRuntime()
237 Register tmp = __ TempRegister1(); in OptimizedCallAndPushUndefined() local
239 __ Subs(tmp, expectedNumArgs, actualNumArgs); in OptimizedCallAndPushUndefined()
241 PushUndefinedWithArgc(assembler, glue, tmp, undefinedValue, currentSp, nullptr, nullptr); in OptimizedCallAndPushUndefined()
618 Register tmp = __ TempRegister1(); in JSBoundFunctionCallInternal() local
[all …]
/arkcompiler/ets_runtime/test/aottest/isomorphism/
Disomorphism.ts16 declare function print(tmp:any):string;

123