Home
last modified time | relevance | path

Searched full:test1 (Results 1 – 25 of 27) sorted by relevance

12

/arkcompiler/runtime_core/tests/checked/
Dinline.pa19 … force_jit: true, options: "--compiler-regex=Test1::main --compiler-inlining-max-insts=8", entry…
20 #! EVENT /Inline,Test1::main,_GLOBAL::func,.*STATIC,LIMIT/
21 #! EVENT_NEXT /Inline,Test1::main,_GLOBAL::small_func,.*STATIC,SUCCESS/
24 … force_jit: true, options: "--compiler-regex=Test1::main --compiler-inlining-max-size=6", entry:…
25 #! EVENT /Inline,Test1::main,_GLOBAL::func,.*STATIC,LIMIT/
26 #! EVENT_NEXT /Inline,Test1::main,_GLOBAL::small_func,.*STATIC,SUCCESS/
28 .record Test1 {}
31 newobj v0, Test1
32 newobj v0, Test1
44 .function i32 Test1.main() {
[all …]
/arkcompiler/ets_runtime/ecmascript/tests/
Dconcurrent_sweep_test.cpp55 JSHandle<EcmaString> test1(thread, in TEST_F() local
62 ASSERT_EQ(EcmaStringAccessor(test1).GetLength(), 4U); in TEST_F()
63 ASSERT_NE(test1.GetTaggedValue().GetTaggedObject(), test2.GetTaggedValue().GetTaggedObject()); in TEST_F()
Djs_handle_test.cpp60 auto string1 = factory->NewFromASCII("test1"); in HWTEST_F_L0()
68 *factory->NewFromASCII("test1"), *reinterpret_cast<EcmaString **>(globalString)), 0); in HWTEST_F_L0()
163 auto string1 = factory->NewFromASCII("test1"); in HWTEST_F_L0()
172 *factory->NewFromASCII("test1"), *reinterpret_cast<EcmaString **>(globalString)), 0); in HWTEST_F_L0()
Dtagged_value_test.cpp1045 JSHandle<JSTaggedValue> test1(ecma->GetFactory()->NewFromASCII("test1")); in HWTEST_F_L0() local
1046 ASSERT_FALSE(JSTaggedValue::SameValue(test.GetTaggedValue(), test1.GetTaggedValue())); in HWTEST_F_L0()
1074 JSHandle<JSTaggedValue> test1(thread->GetEcmaVM()->GetFactory()->NewFromASCII("test1")); in HWTEST_F_L0() local
1084 ASSERT_TRUE(JSTaggedValue::Less(thread, test, test1)); in HWTEST_F_L0()
1085 ASSERT_FALSE(JSTaggedValue::Less(thread, test2, test1)); in HWTEST_F_L0()
1086 …SSERT_FALSE(JSTaggedValue::Less(thread, JSHandle<JSTaggedValue>(thread, JSTaggedValue(1)), test1)); in HWTEST_F_L0()
1146 JSHandle<JSTaggedValue> test1(thread->GetEcmaVM()->GetFactory()->NewFromASCII("test1")); in HWTEST_F_L0() local
1165 ASSERT_FALSE(JSTaggedValue::Equal(thread, test, test1)); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/require/tests/
Djs_cjs_module_test.cpp70 JSHandle<JSTaggedValue> fileName1(factory->NewFromUtf8("ark/js_runtime/test1.js")); in HWTEST_F_L0()
89 JSHandle<JSTaggedValue> test1 = CjsModule::SearchFromModuleCache(thread, fileName1); in HWTEST_F_L0() local
90 EXPECT_TRUE(test1->IsString()); in HWTEST_F_L0()
91 EcmaString *test1Str = EcmaString::Cast(test1.GetTaggedValue().GetTaggedObject()); in HWTEST_F_L0()
/arkcompiler/ets_frontend/testTs/expect/types/specifyingTypes/typeQueries/
DtypeofThisWithImplicitThis.txt1 {'lb': [{'t': 2, 'v': 3}, {'t': 2, 'v': 0}, {'t': 5, 'v': 'Test1'}, {'t': 2, 'v': 0}, {'t': 2, 'v':…
/arkcompiler/ets_frontend/testTs/expect/functions/
DparameterInitializersBackwardReferencing.txt2 … 3}, {'tag': 2, 'value': 0}, {'tag': 2, 'value': 0}, {'tag': 5, 'value': 'test1'}, {'tag': 2, 'val…
/arkcompiler/ets_frontend/es2panda/test/parser/js/
Dtest-patterns.js26 function test1(...rest){} function
Dtest-patterns-expected.txt633 "name": "test1",
/arkcompiler/ets_runtime/test/moduletest/builtins/
Dbuiltinsregexp.js24 // Test1 - Regexp backward
/arkcompiler/runtime_core/disassembler/tests/
Dmetadata_test.cpp.in26 TEST(metadata_test, test1) argument
Dlabels_test.cpp.in26 TEST(label_test, test1) argument
/arkcompiler/ets_runtime/ecmascript/module/tests/
Decma_module_test.cpp474 inputFileName = "@bundle:com.bundleName.test1/moduleName1/ets/pages/index.abc"; in HWTEST_F_L0()
475 …CString outRes1 = "/data/storage/el1/bundle/com.bundleName.test1/moduleName1/moduleName1/ets/modul… in HWTEST_F_L0()
476 CString res3 = "com.bundleName.test1/moduleName1/ets/pages/index"; in HWTEST_F_L0()
/arkcompiler/runtime_core/compiler/tests/
Dmemory_barriers_test.cpp24 TEST_F(MemoryBarrierTest, Test1) in TEST_F() argument
Daot_test.cpp351 TmpFile panda_fname1("test1.pf"); in TEST_F()
758 TmpFile panda_fname1("test1.pf"); in TEST_F()
/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Djeq.obj.yaml1056 - lda.str "test1"
1097 lda.str "test1"
1172 - lda.str "test1"
1213 lda.str "test1"
Djne.obj.yaml1058 - lda.str "test1"
1099 lda.str "test1"
1175 - lda.str "test1"
1216 lda.str "test1"
Djnez.obj.yaml455 - lda.str "test1"
522 - lda.str "test1"
Djeqz.obj.yaml455 - lda.str "test1"
524 - lda.str "test1"
/arkcompiler/ets_runtime/ecmascript/quick_fix/
Dmain.cpp108 … std::cout << "Must include base.abc, patch.abc, test1.abc, test2.abc absolute path" << std::endl; in Main()
/arkcompiler/ets_frontend/testTs/expect/types/namedTypes/
DoptionalMethods.txt1 {'lb': [{'t': 2, 'v': 3}, {'t': 2, 'v': 0}, {'t': 5, 'v': 'test1'}, {'t': 2, 'v': 0}, {'t': 2, 'v':…
/arkcompiler/runtime_core/assembler/tests/
Dlexer_test.cpp25 TEST(lexertests, test1) in TEST() argument
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/tests/
Dpgo_profiler_test.cpp148 JSHandle<JSTaggedValue> recordName1(vm_->GetFactory()->NewFromStdString("test1")); in HWTEST_F_L0()
159 CString expectRecordName1 = "test1"; in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/jspandafile/tests/
Djs_pandafile_test.cpp272 const CString fileName1 = "test1.pa"; in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/builtins/tests/
Dbuiltins_regexp_test.cpp442 HWTEST_F_L0(BuiltinsRegExpTest, Test1) in HWTEST_F_L0() argument

12