| /arkcompiler/runtime_core/scripts/ |
| D | gc_pause_stats.py | 30 def sort_one_gc_stat(stats: dict, gc_type: str) -> list: 49 def save_pause_stats(gc_log_path: str, file_name: str, stats: dict) -> None: 67 def get_ms_time(line: str) -> float: 79 def get_full_type(line: str, cause_start: int, cause_len: int) -> str: 89 def get_gc_type(line: str) -> (str, str): 98 def update_stats(stats: dict, gc_type: str, time_value: float): 125 def detect_str(line: str) -> (int, int): 135 def update_group_stats(gc_pause_stats: dict, gc_type: str, full_gc_type: str, time_v: float): 142 def process_one_log(gc_log_path: str, result_file_path: str, all_stats: dict) -> None:
|
| /arkcompiler/toolchain/build/compile_script/ |
| D | ark.py | 35 def _call(cmd: str): 40 def _write(filename: str, content: str, mode: str): 45 def call_with_output(cmd: str, file: str): 254 def is_dict_flags_match_arg(dict_to_match: dict, arg_to_match: str) -> bool: 260 …def which_dict_flags_match_arg(self, dict_including_dicts_to_match: dict, arg_to_match: str) -> st… 266 def dict_in_os_cpu_mode_match_arg(self, arg: str) -> [bool, str, str]: 289 …def get_help_msg_of_dict(self, dict_in: dict, indentation_str_current: str, indentation_str_per_le… 325 def clean(self, out_path: str): 337 def build_for_gn_target(self, out_path: str, gn_args: list, arg_list: list, log_file_name: str): 372 def build_for_test262(self, out_path, gn_args: list, arg_list: list, log_file_name: str): [all …]
|
| /arkcompiler/ets_runtime/test/perform/string/ |
| D | string.js | 17 … const str = "The quick brown fox jumps over the lazy dog. If the dog reacted, was it really lazy?" constant 30 const str = 'Apples are round, and apples are juicy.'; constant 54 const str = "Hello World. How are you doing?" constant 65 const str = "The quick brown fox jumps over the lazy dog." constant 76 const str = "Harry Trump ;Fred Barney; Helen Rigby ; Bill Abel ;Chris Hand " constant 88 … const str = "The quick brown fox jumps over the lazy dog. If the dog barked, was it really lazy?" constant 100 … const str = "The quick brown fox jumps over the lazy dog. If the dog barked, was it really lazy?" constant 112 … const str = "The quick brown fox jumps over the lazy dog. If the dog barked, was it really lazy?" constant 123 const str = "Hello World. How are you doing?" constant 134 const str = "The quick brown fox jumps over the lazy dog." constant [all …]
|
| /arkcompiler/runtime_core/libpandabase/tests/ |
| D | json_parser_test.cpp | 24 auto str = R"( variable 45 auto str = R"( variable 90 auto str = R"( variable 148 auto str = R"( variable 183 auto str = R"( variable
|
| /arkcompiler/runtime_core/libpandabase/trace/ |
| D | trace.h | 42 static inline void BeginTracePoint(const char *str) in BeginTracePoint() 56 static inline void IntTracePoint(const char *str, int32_t val) in IntTracePoint() 63 static inline void Int64TracePoint(const char *str, int64_t val) in Int64TracePoint() 72 explicit ScopedTrace(const char *str) in ScopedTrace() 76 explicit ScopedTrace(const std::string &str) : ScopedTrace(str.c_str()) {} in ScopedTrace()
|
| /arkcompiler/ets_runtime/ecmascript/mem/ |
| D | c_string.cpp | 28 long CStringToL(const CString &str) in CStringToL() 36 int64_t CStringToLL(const CString &str) in CStringToLL() 44 uint64_t CStringToULL(const CString &str) in CStringToULL() 52 float CStringToF(const CString &str) in CStringToF() 61 double CStringToD(const CString &str) in CStringToD() 90 CString ConvertToString(const std::string &str) in ConvertToString() 123 std::string ConvertToStdString(const CString &str) in ConvertToStdString()
|
| /arkcompiler/runtime_core/platforms/windows/libpandabase/ |
| D | trace.cpp | 30 void DoBeginTracePoint([[maybe_unused]] const char *str) in DoBeginTracePoint() 40 void DoIntTracePoint([[maybe_unused]] const char *str, [[maybe_unused]] int32_t val) in DoIntTracePoint() 45 void DoInt64TracePoint([[maybe_unused]] const char *str, [[maybe_unused]] int64_t val) in DoInt64TracePoint()
|
| /arkcompiler/runtime_core/platforms/unix/libpandabase/ |
| D | trace.cpp | 68 void DoBeginTracePoint(const char *str) in DoBeginTracePoint() 80 void DoIntTracePoint(const char *str, int32_t val) in DoIntTracePoint() 86 void DoInt64TracePoint(const char *str, int64_t val) in DoInt64TracePoint()
|
| /arkcompiler/toolchain/tooling/test/utils/ |
| D | test_channel.h | 39 std::string str = result.ToJson()->Stringify(); in SendResponse() local 44 std::string str = events.ToJson()->Stringify(); in SendNotification() local
|
| /arkcompiler/toolchain/tooling/test/ |
| D | pt_json_test.cpp | 45 std::string str = "false"; in HWTEST_F_L0() local 55 std::string str = "true"; in HWTEST_F_L0() local 65 std::string str = "100"; in HWTEST_F_L0() local 75 std::string str = "123456789012345"; in HWTEST_F_L0() local 85 std::string str = "12345.6789"; in HWTEST_F_L0() local 95 std::string str = "\"abcdefg\""; in HWTEST_F_L0() local 105 std::string str = "[\"a\",\"b\",200]"; in HWTEST_F_L0() local 118 std::string str = "[\"a\",\"b\",200,10.5,{}]"; in HWTEST_F_L0() local 158 std::string str; in HWTEST_F_L0() local 224 PtJson str(node1); in HWTEST_F_L0() local
|
| /arkcompiler/ets_frontend/es2panda/util/ |
| D | ustring.h | 33 explicit StringView(const ArenaString *str) noexcept : sv_(*str) {} in StringView() 37 StringView(const char *str) noexcept : sv_(str) {} in StringView() 72 bool Is(const char *str) const noexcept in Is() 77 bool Is(const std::string_view &str) const noexcept in Is() 112 constexpr size_t Find(const char *str) const in Find() 254 explicit UString(const std::string &str, ArenaAllocator *allocator) : UString(allocator) in UString() 361 std::string str; in EscapeSymbol() local 415 void StringView::Utf8Encode(T *str, char32_t cu) in Utf8Encode() 441 void StringView::Mutf8Encode(T *str, char32_t cu) in Mutf8Encode()
|
| /arkcompiler/ets_frontend/arkguard/test/grammar/string_validation/ |
| D | string_toUpperCase.ts | 18 let str = 'abcdefg'; variable
|
| D | string_slice.ts | 18 let str = 'abcdefg'; variable
|
| D | string_bold.ts | 18 let str = 'abcbcbc'; variable
|
| D | string_sub.ts | 18 let str = 'abc'; variable
|
| D | string_toLowerCase.ts | 18 let str = 'ABCDEFG'; variable
|
| D | string_includes.ts | 18 let str = 'abc,aaa,bbb,abcde'; variable
|
| D | string_fontcolor.ts | 18 let str = 'abc'; variable
|
| D | string_substring.ts | 18 let str = 'abcdefg'; variable
|
| D | string_padStart.ts | 18 let str = 'abc'; variable
|
| D | string_at.ts | 18 let str = 'abcde'; variable
|
| D | string_fixed.ts | 18 let str = 'abc'; variable
|
| D | string_codePointAt.ts | 18 let str = 'abcbcbc'; variable
|
| D | string_trimEnd.ts | 18 let str = 'abcdefg '; variable
|
| /arkcompiler/ets_frontend/es2panda/test/base64/inputFile/ |
| D | input.js | 16 let str = "hello world!"; variable
|