Home
last modified time | relevance | path

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

1234

/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/number_subtypes/
Dnumber_subtypes_frontend.sts.erb23 //! CHECKER jscall<%= primitive.getName.capitalize %> JIT
24 … "jscall<%= primitive.getName.capitalize %>", options: "--compiler-regex=ETSGLOBAL::jscall<%= prim…
25 //! METHOD "jscall<%= primitive.getName.capitalize %>"
30 //! CHECKER jsnewGetProperty<%= primitive.getName.capitalize %> JIT
31 …rty<%= primitive.getName.capitalize %>", options: "--compiler-regex=ETSGLOBAL::jsnewGetProperty<%=…
32 //! METHOD "jsnewGetProperty<%= primitive.getName.capitalize %>"
39 //! CHECKER jsnewSetProperty<%= primitive.getName.capitalize %> JIT
40 …rty<%= primitive.getName.capitalize %>", options: "--compiler-regex=ETSGLOBAL::jsnewSetProperty<%=…
41 //! METHOD "jsnewSetProperty<%= primitive.getName.capitalize %>"
48 //! CHECKER jscallStaticMethod<%= primitive.getName.capitalize %> JIT
[all …]
Dnumber_subtypes.cpp.erb34 TEST_F(EtsInteropNumberSubtypesTest, TestJSCall<%= primitive.getName.capitalize() %>)
36 auto jscallRet = CallEtsMethod<int64_t>("jscall<%= primitive.getName.capitalize() %>");
40 TEST_F(EtsInteropNumberSubtypesTest, TestjsnewGetProperty<%= primitive.getName.capitalize() %>)
42 auto jsnewRet = CallEtsMethod<int64_t>("jsnewGetProperty<%= primitive.getName.capitalize() %>");
46 TEST_F(EtsInteropNumberSubtypesTest, TestjsnewSetProperty<%= primitive.getName.capitalize() %>)
48 auto jsnewRet = CallEtsMethod<int64_t>("jsnewSetProperty<%= primitive.getName.capitalize() %>");
52 TEST_F(EtsInteropNumberSubtypesTest, TestJSCallStatic<%= primitive.getName.capitalize() %>)
54 …taticMethodRet = CallEtsMethod<int64_t>("jscallStaticMethod<%= primitive.getName.capitalize() %>");
Dnumber_subtypes.sts.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/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/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
143 'Event' + name.split('-').map(&:capitalize).join
/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/runtime_core/static_core/tests/vm-benchmarks/src/vmb/templates/
DInteropRunner.js28 const capitalize = (str = '') => { function
38 #benchName = capitalize(VMB_BENCH_UNIT_NAME);
/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/06.contexts_and_conversions/05.implicit_conversions/05.unboxing_conversion/call_lmbd/
Dcall-lmbd-nan.sts25 …if (! {{c.to_type|capitalize}}.isNaN(((p: {{c.to_type}}): {{c.to_type}} => { return p })(s{{loop.i…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/06.contexts_and_conversions/05.implicit_conversions/05.unboxing_conversion/decl_var/
Ddecl-var-nan.sts26 if (! {{c.to_type|capitalize}}.isNaN(d{{loop.index}})) {
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/06.contexts_and_conversions/05.implicit_conversions/05.unboxing_conversion/call_func/
Dcall-func-nan.sts27 if (! {{c.to_type|capitalize}}.isNaN(foo(s{{loop.index}}))) {
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/06.contexts_and_conversions/05.implicit_conversions/05.unboxing_conversion/decl_const/
Ddecl-const-nan.sts26 if (! {{c.to_type|capitalize}}.isNaN(d{{loop.index}})) {
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/06.contexts_and_conversions/05.implicit_conversions/05.unboxing_conversion/call_cons/
Dcall-cons-nan.sts30 if (! {{c.to_type|capitalize}}.isNaN(new A(s{{loop.index}}).f)) {
/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/06.contexts_and_conversions/05.implicit_conversions/05.unboxing_conversion/comp_obj/
Dcomp-intf-nan.sts29 if (! {{c.to_type|capitalize}}.isNaN(d{{loop.index}}.fld)) {
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/06.contexts_and_conversions/05.implicit_conversions/05.unboxing_conversion/assn_var/
Dassn-var-nan.sts29 if (! {{c.to_type|capitalize}}.isNaN(d{{loop.index}})) {
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/06.contexts_and_conversions/02.string_operator_contexts/
Dstr_prim.sts27 let exp_{{loop.index}}: string = (new {{t.type|capitalize}}(src_{{loop.index}})).toString();

1234