Home
last modified time | relevance | path

Searched full:capitalize (Results 1 – 25 of 100) sorted by relevance

1234

/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/number_subtypes/ts_to_sts_frontend/
Dnumber_subtypes_frontend.ets.erb23 //! CHECKER jscall<%= primitive.getName.capitalize %> JIT
24 …primitive.getName.capitalize %>", options: "--compiler-regex=number_subtypes_frontend.ETSGLOBAL::j…
25 //! METHOD "jscall<%= primitive.getName.capitalize %>"
30 //! CHECKER jsnewGetProperty<%= primitive.getName.capitalize %> JIT
31 …tive.getName.capitalize %>", options: "--compiler-regex=number_subtypes_frontend.ETSGLOBAL::jsnewG…
32 //! METHOD "jsnewGetProperty<%= primitive.getName.capitalize %>"
39 //! CHECKER jsnewSetProperty<%= primitive.getName.capitalize %> JIT
40 …tive.getName.capitalize %>", options: "--compiler-regex=number_subtypes_frontend.ETSGLOBAL::jsnewS…
41 //! METHOD "jsnewSetProperty<%= primitive.getName.capitalize %>"
48 //! CHECKER jscallStaticMethod<%= primitive.getName.capitalize %> JIT
[all …]
Dnumber_subtypes_frontend.cpp.erb24 TEST_F(EtsInteropNumberSubtypesTest, TestJSCall<%= primitive.getName.capitalize() %>)
26 …allRet = CallEtsFunction<int64_t>(GetPackageName(), "jscall<%= primitive.getName.capitalize() %>");
30 TEST_F(EtsInteropNumberSubtypesTest, TestjsnewGetProperty<%= primitive.getName.capitalize() %>)
32 …allEtsFunction<int64_t>(GetPackageName(), "jsnewGetProperty<%= primitive.getName.capitalize() %>");
36 TEST_F(EtsInteropNumberSubtypesTest, TestjsnewSetProperty<%= primitive.getName.capitalize() %>)
38 …allEtsFunction<int64_t>(GetPackageName(), "jsnewSetProperty<%= primitive.getName.capitalize() %>");
42 TEST_F(EtsInteropNumberSubtypesTest, TestJSCallStatic<%= primitive.getName.capitalize() %>)
44 …lEtsFunction<int64_t>(GetPackageName(), "jscallStaticMethod<%= primitive.getName.capitalize() %>");
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/number_subtypes/ts_to_sts/
Dnumber_subtypes.cpp.erb30 TEST_F(EtsInteropNumberSubtypesTest, TestJSCall<%= primitive.getName.capitalize() %>)
32 …allRet = CallEtsFunction<int64_t>(GetPackageName(), "jscall<%= primitive.getName.capitalize() %>");
36 TEST_F(EtsInteropNumberSubtypesTest, TestjsnewGetProperty<%= primitive.getName.capitalize() %>)
38 …allEtsFunction<int64_t>(GetPackageName(), "jsnewGetProperty<%= primitive.getName.capitalize() %>");
42 TEST_F(EtsInteropNumberSubtypesTest, TestjsnewSetProperty<%= primitive.getName.capitalize() %>)
44 …allEtsFunction<int64_t>(GetPackageName(), "jsnewSetProperty<%= primitive.getName.capitalize() %>");
48 TEST_F(EtsInteropNumberSubtypesTest, TestJSCallStatic<%= primitive.getName.capitalize() %>)
50 …lEtsFunction<int64_t>(GetPackageName(), "jscallStaticMethod<%= primitive.getName.capitalize() %>");
Dnumber_subtypes.ets.erb35 function jscall<%= primitive.getName.capitalize() %>(): int {
36 let v0: <%= primitive.getName.capitalize() %> = <%= primitive.getMin() %>;
37 let v1: <%= primitive.getName.capitalize() %> = <%= primitive.getMax() %>;
46 function jsnewGetProperty<%= primitive.getName.capitalize() %>(): int {
47 let v0: <%= primitive.getName.capitalize() %> = <%= primitive.getMin() %>;
48 let v1: <%= primitive.getName.capitalize() %> = <%= primitive.getMax() %>;;
60 function jsnewSetProperty<%= primitive.getName.capitalize() %>(): int {
61 let v0: <%= primitive.getName.capitalize() %> = <%= primitive.getMin() %>;
62 let v1: <%= primitive.getName.capitalize() %> = <%= primitive.getMax() %>;;
82 function jscallStaticMethod<%= primitive.getName.capitalize() %>(): int {
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/stdlib-templates/utils/
Dtest_check_test_float_result.j226 if({{.item.result_type|capitalize}}.isNaN(expected)) {
27 if ({{.item.result_type|capitalize}}.isNaN(actual)) return 0;
32 if(expected == {{.item.result_type|capitalize}}.POSITIVE_INFINITY) {
33 if (actual == {{.item.result_type|capitalize}}.POSITIVE_INFINITY) return 0;
37 if(expected == {{.item.result_type|capitalize}}.NEGATIVE_INFINITY) {
38 if (actual == {{.item.result_type|capitalize}}.NEGATIVE_INFINITY) return 0;
Dtest_main_function_escompat.j221 testResult = checkTestResult({{.item.method_name}}{{.test_name|capitalize}}())
23 …let expectedData{{.test_name|capitalize}} : {{.item.result_type}} = {{.item.method_expected_data[t…
24 … = checkTestResult({{.item.func_name}}{{.test_name|capitalize}}(), expectedData{{.test_name|capita…
Dtest_main_function.j228 testResult = checkTestResult({{.item.method_name}}{{.test_name|capitalize}}())
34 testResult = checkTestResult({{.item.method_name}}{{.test_name|capitalize}}(), {{.item.method_expec…
36 let expectedData{{.test_name|capitalize}} : {{.item.result_type}} = {{.item.method_expected_data[te…
37 … checkTestResult({{.item.method_name}}{{.test_name|capitalize}}(), expectedData{{.test_name|capita…
Dtest_check_test_regexp_result.j286 if({{.item.result_type|capitalize}}.isNaN(expected)) {
87 if ({{.item.result_type|capitalize}}.isNaN(actual)) return 0;
92 if(expected == {{.item.result_type|capitalize}}.POSITIVE_INFINITY) {
93 if (actual == {{.item.result_type|capitalize}}.POSITIVE_INFINITY) return 0;
97 if(expected == {{.item.result_type|capitalize}}.NEGATIVE_INFINITY) {
98 if (actual == {{.item.result_type|capitalize}}.NEGATIVE_INFINITY) return 0;
/arkcompiler/runtime_core/static_core/runtime/templates/
Dlanguage_config_gen.inc.erb18 class <%= plugin_lang.capitalize %>LanguageConfig {
32 template class x< <%= plugin_lang.capitalize %>LanguageConfig >; \
40 template class x< <%= plugin_lang.capitalize %>LanguageConfig , __VA_ARGS__ >; \
48 …template GC *CreateGC< <%= plugin_lang.capitalize %>LanguageConfig >(GCType gc_type, ObjectAllocat…
57 template<> bool GCLang<<%= plugin_lang.capitalize %>LanguageConfig>::IsMutatorAllowed() \
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/10.interfaces/07.interface_inheritance/Interface_inheritance_class_implementation/multi_inheritance_interface_abstract_method/
Dmulti_inheritance_interface_abstract_method_23.ets27 capitalize(str: string): string;
43 capitalize(str: string): string {
53 const result3 = util.capitalize('world');
Dmulti_inheritance_interface_abstract_method_10.ets27 capitalize(str: string): string;
43 capitalize(str: string): string {
53 const result3 = util.capitalize('world');
Dmulti_inheritance_interface_abstract_method_22.ets27 capitalize(str: string): string;
43 capitalize(str: string): string {
53 const result3 = util.capitalize('world');
/arkcompiler/runtime_core/static_core/libpandabase/events/
Devents.rb19 self.split('_').collect(&:capitalize).join
23 self.split('_').inject([]){ |buffer,e| buffer.push(buffer.empty? ? e : e.capitalize) }.join
/arkcompiler/runtime_core/static_core/plugins/ets/templates/stdlib/
DDataView.ets.j2199 … {% set helpTypeForNumber = "Double" if (resType|capitalize == "Number") else resType|capitalize %}
213 …ypeForNumber = "Double" if (type2nameBits[bit]|capitalize == "Number") else type2nameBits[bit]|cap…
256 const val: {{type2name[bit]}} = temp.to{{type2name[bit]|capitalize}}();
258 …{% set helpType = "Double" if (type2name[bit]|capitalize == "Number") else type2name[bit]|capitali…
/arkcompiler/runtime_core/static_core/templates/
Dmessages.rb70 @component = data.component.capitalize
76 short_message = msg_data.short_message&.strip || split_words(name).join(' ').capitalize
/arkcompiler/runtime_core/templates/
Dmessages.rb70 @component = data.component.capitalize
76 short_message = msg_data.short_message&.strip || split_words(name).join(' ').capitalize
Dcommon.rb53 n = name.split(Regexp.union(['-', '.'])).map(&:capitalize).join
90 n = "#{lang}.#{name}".split(Regexp.union(['-', '.'])).map(&:capitalize).join
138 'Event' + name.split('-').map(&:capitalize).join
/arkcompiler/ets_frontend/ets2panda/linter/src/lib/utils/consts/
DLimitedStandardUtilityTypes.ts18 'Capitalize',
/arkcompiler/ets_frontend/arkguard/test/grammar/removeComments/
DremoveComments2_expected.txt29 * A function to capitalize the first letter of a string.
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates_deprecated/05.unboxing_conversion/call_cons/
Dcall-cons-nan.ets30 if (! {{c.to_type|capitalize}}.isNaN(new A(s{{loop.index}}).f)) {
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/03.types/alias_unconversion/call_cons/
Dcall-cons-nan.ets30 if (! {{c.to_type|capitalize}}.isNaN(new A(s{{loop.index}}).f)) {
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates_deprecated/05.unboxing_conversion/decl_const/
Ddecl-const-nan.ets26 if (! {{c.to_type|capitalize}}.isNaN(d{{loop.index}})) {
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates_deprecated/05.unboxing_conversion/call_func/
Dcall-func-nan.ets27 if (! {{c.to_type|capitalize}}.isNaN(foo(s{{loop.index}}))) {
/arkcompiler/ets_frontend/arkguard/test/grammar/wildcard_comment/keep_comment3/
Dkeep_single_comment_expected.txt37 * A function to capitalize the first letter of a string.
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates_deprecated/05.unboxing_conversion/decl_var/
Ddecl-var-nan.ets26 if (! {{c.to_type|capitalize}}.isNaN(d{{loop.index}})) {

1234