Home
last modified time | relevance | path

Searched full:get (Results 1 – 25 of 2836) sorted by relevance

12345678910>>...114

/arkcompiler/ets_runtime/test/moduletest/arrayfrom/
Dexpect_output.txt34 get toJSON
35 get 0
36 get 1
37 get 2
38 get 3
39 get length
46 get toJSON
47 get length
48 get 0
49 get 1
[all …]
/arkcompiler/runtime_core/taihe/test/ani_bundlemanager/idl/
DapplicationInfo.taihe16 @get GetName(): String;
17 @get GetDescription(): String;
18 @get GetDescriptionId(): i32;
19 @get GetEnabled(): bool;
20 @get GetLabel(): String;
21 @get GetLabelId(): i32;
22 @get GetIcon(): String;
23 @get GetIconId(): i32;
24 @get GetProcess(): String;
25 @get GetPermissions(): Array<String>;
[all …]
DabilityInfo.taihe21 @get GetBundleName(): String;
22 @get GetModuleName(): String;
23 @get GetName(): String;
24 @get GetLabel(): String;
25 @get GetLabelId(): i32;
26 @get GetDescription(): String;
27 @get GetDescriptionId(): i32;
28 @get GetIcon(): String;
29 @get GetIconId(): i32;
30 @get GetProcess(): String;
[all …]
DhapModuleInfo.taihe16 @get GetName(): String;
17 @get GetIcon(): String;
18 @get GetIconId(): i32;
19 @get GetLabel(): String;
20 @get GetLabelId(): i32;
21 @get GetDescription(): String;
22 @get GetDescriptionId(): i32;
23 @get GetMainElementName(): String;
24 @get GetDeviceTypes(): Array<String>;
25 @get GetInstallationFree(): bool;
[all …]
DbundleInfo.taihe16 @get GetName(): String;
17 @get GetVendor(): String;
18 @get GetVersionCode(): i32;
19 @get GetVersionName(): String;
20 @get GetMinCompatibleVersionCode(): String;
21 @get GetTargetVersion(): i32;
22 @get GetInstallTime(): i32;
23 @get GetUpdateTime(): i32;
24 @get GetAppIndex(): i32;
30 @get("name") GetName(): String;
[all …]
DextensionAbilityInfo.taihe16 @get GetBundleName(): String;
17 @get GetModuleName(): String;
18 @get GetName(): String;
19 @get GetLabelId(): i32;
20 @get GetDescriptionId(): i32;
21 @get GetIconId(): i32;
22 @get GetExported(): bool;
23 @get GetExtensionAbilityTypeName(): bool;
24 @get GetPermissions(): Array<String>;
25 @get GetEnabled(): bool;
[all …]
Dskill.taihe16 @get GetActions(): Array<String>;
17 @get GetEntities(): Array<String>;
18 @get GetdomainVerify(): bool;
23 @get GetScheme(): String;
24 @get GetHost(): String;
25 @get GetPort(): i32;
26 @get GetPath(): String;
27 @get GetPathStartWith(): String;
28 @get GetPathRegex(): String;
29 @get GetType(): String;
[all …]
/arkcompiler/runtime_core/taihe/test/ani_bundle/idl/
DabilityInfo.taihe17 @get GetBundleName(): String;
18 @get GetName(): String;
19 @get GetLabel(): String;
20 @get GetDescription(): String;
21 @get GetIcon(): String;
22 @get GetLabelId(): i32;
23 @get GetDescriptionId(): i32;
24 @get GetIconId(): i32;
25 @get GetModuleName(): String;
26 @get GetProcess(): String;
[all …]
DbundleInfo.taihe17 @get("when") GetWhen(): String;
19 @get GetAbilities(): Array<String>;
25 @get("name") GetName(): String;
27 @get("reason") GetReason(): String;
33 @get GetName(): String;
34 @get GetType(): String;
35 @get GetAppId(): String;
36 @get GetUid(): i32;
37 @get GetInstallTime(): i32;
38 @get GetUpdateTime(): i32;
[all …]
DapplicationInfo.taihe17 @get GetName(): String;
18 @get GetDescription(): String;
19 @get GetDescriptionId(): i32;
20 @get GetSystemApp(): bool;
21 @get GetEnabled(): bool;
22 @get GetLabel(): String;
23 @get GetLabelId(): String;
24 @get GetIcon(): String;
25 @get GetIconId(): i32;
26 @get GetProcess(): String;
[all …]
DhapModuleInfo.taihe17 @get GetName(): String;
18 @get GetDescription(): String;
19 @get GetDescriptionId(): i32;
20 @get GetIcon(): String;
21 @get GetLabel(): String;
22 @get GetLabelId(): i32;
23 @get GetIconId(): i32;
24 @get GetBackgroundImg(): String;
25 @get GetSupportedModes(): i32;
26 @get GetReqCapabilities(): Array<String>;
[all …]
DshortcutInfo.taihe17 @get GetId(): String;
18 @get GetBundleName(): String;
19 @get GetHostAbility(): String;
20 @get GetIcon(): String;
21 @get GetLabel(): String;
22 @get GetLabelId(): i32;
23 @get GetIconId(): i32;
24 @get GetDisableMessage(): String;
25 @get GetIsStatic(): Optional<bool>;
26 @get GetIsHomeShortcut(): Optional<bool>;
[all …]
/arkcompiler/ets_runtime/test/aottest/builtin_inlining/map/Get/
DbuiltinMapGet.ts26 return myMap.get(x);
38 print(x.get(y));
46 //aot: [trace] aot inline builtin: Map.get, caller function name:func_main_0@builtinMapGet
47 print(myMap.get()); //: undefined
51 //aot: [trace] aot inline builtin: Map.get, caller function name:func_main_0@builtinMapGet
52 print(myMap.get()); //: 42
55 //aot: [trace] aot inline builtin: Map.get, caller function name:func_main_0@builtinMapGet
56 print(myMap.get(0)); //: 5
57 //aot: [trace] aot inline builtin: Map.get, caller function name:func_main_0@builtinMapGet
58 print(myMap.get(3)); //: undefined
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/escompat/
DReflectGetBadCases.ets19 // get
20 failures += test(reflectGetBadCases(), "Reflect.get on types without fields and elements");
57 Reflect.get(c, "a")
59 … result += e.toString().contains("`target` argument of Reflect.get must have fields", 0) ? 0 : 1
63 Reflect.get(bo, "a")
65 … result += e.toString().contains("`target` argument of Reflect.get must have fields", 0) ? 0 : 1
69 Reflect.get(bt, "a")
71 … result += e.toString().contains("`target` argument of Reflect.get must have fields", 0) ? 0 : 1
75 Reflect.get(sh, "a")
77 … result += e.toString().contains("`target` argument of Reflect.get must have fields", 0) ? 0 : 1
[all …]
DReflectGet.ets19 // get
20 failures += test(reflectGetClass(), "Reflect.get on class type");
21 failures += test(reflectGetArray(), "Reflect.get on array type");
22 failures += test(reflectGetLambda(), "Reflect.get on function type");
51 result += (Reflect.get(p, "x") as Number == 10) ? 0 : 1
52 result += (Reflect.get(p, "y") as Number == 20) ? 0 : 1
53 result += (Reflect.get(p, "z") as Number == 30) ? 0 : 1
55 result += (Reflect.get(p, "axisnum") == undefined) ? 0 : 1
56 result += (Reflect.get(p, "qwerty") == undefined) ? 0 : 1
57 result += (Reflect.get(p, 1) == null) ? 0 : 1
[all …]
/arkcompiler/runtime_core/libpandabase/tests/
Dunique_fd_test.cpp40 EXPECT_EQ(fd_a.Get(), DEFAULT_VALUE);
41 EXPECT_EQ(fd_b.Get(), dupDF.stdinValue);
42 EXPECT_EQ(fd_c.Get(), dupDF.stdoutValue);
43 EXPECT_EQ(fd_d.Get(), dupDF.stferrValue);
50 EXPECT_EQ(fd_a.Get(), DEFAULT_VALUE);
51 EXPECT_EQ(fd_b.Get(), DEFAULT_VALUE);
52 EXPECT_EQ(fd_c.Get(), DEFAULT_VALUE);
53 EXPECT_EQ(fd_d.Get(), DEFAULT_VALUE);
54 EXPECT_EQ(fd_e.Get(), DEFAULT_VALUE);
55 EXPECT_EQ(fd_f.Get(), dupDF.stdinValue);
[all …]
/arkcompiler/runtime_core/compiler/tests/aarch32/
Dcallconv32_test.cpp106 EXPECT_EQ(std::get<Reg>(ret).GetId(), 0); in TEST_F()
107 EXPECT_EQ(std::get<Reg>(ret), Reg(0, INT8_TYPE)); in TEST_F()
112 EXPECT_EQ(std::get<Reg>(ret).GetId(), i); in TEST_F()
113 EXPECT_EQ(std::get<Reg>(ret), Reg(i, INT8_TYPE)); in TEST_F()
122 EXPECT_EQ(std::get<Reg>(ret).GetId(), 0); in TEST_F()
123 EXPECT_EQ(std::get<Reg>(ret), Reg(0, INT32_TYPE)); in TEST_F()
128 EXPECT_EQ(std::get<Reg>(ret).GetId(), i); in TEST_F()
129 EXPECT_EQ(std::get<Reg>(ret), Reg(i, INT32_TYPE)); in TEST_F()
138 EXPECT_EQ(std::get<Reg>(ret).GetId(), 0); in TEST_F()
139 EXPECT_EQ(std::get<Reg>(ret), Reg(0, INT64_TYPE)); in TEST_F()
[all …]
/arkcompiler/runtime_core/static_core/libpandabase/tests/
Dunique_fd_test.cpp46 EXPECT_EQ(fdA.Get(), DEFAULT_VALUE); in TEST()
47 EXPECT_EQ(fdB.Get(), dupDf.stdinValue); in TEST()
48 EXPECT_EQ(fdC.Get(), dupDf.stdoutValue); in TEST()
49 EXPECT_EQ(fdD.Get(), dupDf.stferrValue); in TEST()
57 EXPECT_EQ(fdA.Get(), DEFAULT_VALUE); in TEST()
58 EXPECT_EQ(fdB.Get(), DEFAULT_VALUE); in TEST()
59 EXPECT_EQ(fdC.Get(), DEFAULT_VALUE); in TEST()
60 EXPECT_EQ(fdD.Get(), DEFAULT_VALUE); in TEST()
61 EXPECT_EQ(fdE.Get(), DEFAULT_VALUE); in TEST()
62 EXPECT_EQ(fdF.Get(), dupDf.stdinValue); in TEST()
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/declgen_ets2ts/fields/
Dlib.expected16 public get readonlyBoolean_(): boolean;
17 public static get staticFloat_(): number;
19 public get number_(): number;
21 public get Number_(): number;
23 public get double_(): number;
25 public get Double_(): number;
27 public get int_(): number;
29 public get string_(): string;
31 public get nullableString_(): string | null;
33 public get object_(): Object;
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/class_method/sts_to_js/
Dclass_method.ets23 get(): int {
28 if (x instanceof UserClass && x.get() == this.get()) {
42 if (x instanceof ChildClass && x.get() == this.get()) {
57 get(): int;
65 get(): int {
70 if (x instanceof InterfaceClass && x.get() == this.get()) {
85 private get(): int {
90 if (x instanceof PrivateClass && x.get() == this.get()) {
105 protected get(): int {
110 if (x instanceof ProtectedClass && x.get() == this.get()) {
[all …]
/arkcompiler/runtime_core/static_core/compiler/tests/aarch32/
Dcallconv32_test.cpp90 EXPECT_EQ(std::get<Reg>(ret).GetId(), 0); in CheckMissesDueAlign()
91 EXPECT_EQ(std::get<Reg>(ret), Reg(0, INT8_TYPE)); in CheckMissesDueAlign()
95 EXPECT_EQ(std::get<Reg>(ret).GetId(), 2U); in CheckMissesDueAlign()
96 EXPECT_EQ(std::get<Reg>(ret), Reg(2U, INT64_TYPE)); in CheckMissesDueAlign()
100 EXPECT_EQ(std::get<uint8_t>(ret), 0); in CheckMissesDueAlign()
104 EXPECT_EQ(std::get<uint8_t>(ret), 2U); in CheckMissesDueAlign()
108 EXPECT_EQ(std::get<uint8_t>(ret), 4U); in CheckMissesDueAlign()
112 EXPECT_EQ(std::get<uint8_t>(ret), 5U); in CheckMissesDueAlign()
116 EXPECT_EQ(std::get<uint8_t>(ret), 6U); in CheckMissesDueAlign()
120 EXPECT_EQ(std::get<uint8_t>(ret), 8U); in CheckMissesDueAlign()
[all …]
/arkcompiler/runtime_core/static_core/tests/checked/
Dinline_small.pa24 #! EVENTS_COUNT /Inline,C::Get,D::Get,.*STATIC,SUCCESS/, 1
25 #! EVENTS_COUNT /Inline,B::Get,C::Get,.*STATIC,SUCCESS/, 1
26 #! EVENTS_COUNT /Inline,A::Get,B::Get,.*STATIC,SUCCESS/, 1
27 #! EVENTS_COUNT /Inline,A::main,A::Get,.*STATIC,SUCCESS/, 1
35 #! EVENTS_COUNT /Inline,D::Get,D::GetModified,.*STATIC,SUCCESS/, 0
36 #! EVENTS_COUNT /Inline,C::Get,D::Get,.*STATIC,SUCCESS/, 1
37 #! EVENTS_COUNT /Inline,B::Get,C::Get,.*STATIC,SUCCESS/, 1
38 #! EVENTS_COUNT /Inline,A::Get,B::Get,.*STATIC,SUCCESS/, 1
39 #! EVENTS_COUNT /Inline,A::main,A::Get,.*STATIC,SUCCESS/, 1
49 #! EVENTS_COUNT /Inline,D::Get,D::GetModified,.*STATIC,SUCCESS/, 0
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/class_method/ts_to_sts/put_another_instance_class/
Dput_another_instance_class.ets46 return TSClass.compare(AnotherClass.get) as boolean == false;
53 return TSClass.compare(AnotherClass.get) as boolean == false;
60 return TSClass.compare(AnotherClass.get) as boolean == false;
67 return TSClass.childMethodCompare(AnotherClass.get) as boolean == false;
74 return TSClass.childMethodCompare(AnotherClass.get) as boolean == false;
81 return TSClass.childMethodCompare(AnotherClass.get) as boolean == false;
88 return TSClass.compare(AnotherClass.get) as boolean == false;
95 return TSClass.compare(AnotherClass.get) as boolean == false;
102 return TSClass.compare(AnotherClass.get) as boolean == false;
109 return TSClass.compare(AnotherClass.get) as boolean == false;
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/20.implementation_details/03.how_to_get_type_via_reflection/
Dhow_to_get_type_via_reflection_ext.params.yaml16 - desc: How to get number[] via reflection.
20 - desc: How to get object[] via reflection.
24 - desc: How to get Promise<number>[] via reflection.
28 - desc: How to get bigint via reflection.
32 - desc: How to get RegExp[] via reflection.
36 - desc: How to get Set[] via reflection.
40 - desc: How to get string[] via reflection.
44 - desc: How to get Promise<string>[] via reflection.
48 - desc: How to get User[] via reflection.
52 - desc: How to get Boolean via reflection.
[all …]
/arkcompiler/ets_frontend/arkguard/test/grammar/getsetaccessor/defaultConfig/
Dgetaccessor_1.ts18 static get INT(): SettingType_1 & {
19 get name_get_2(): "INT";
20 get orignal_get_2(): 0;
24 static get DOUBLE(): SettingType_1 & {
25 get name_get_2(): "DOUBLE";
26 get orignal_get_2(): 1;
33 get name_get_2(): "INT" {
36 get orignal_get_2():0 {
42 get name_get_2(): "DOUBLE" {
45 get orignal_get_2():1 {

12345678910>>...114