Home
last modified time | relevance | path

Searched defs:string_view (Results 1 – 15 of 15) sorted by relevance

/arkcompiler/runtime_core/taihe/runtime/include/taihe/
Dstring.hpp37 struct string_view { struct
38 using value_type = char;
39 using size_type = std::size_t;
40 using const_reference = value_type const &;
41 using const_pointer = value_type const *;
42 using const_iterator = const_pointer;
43 using const_reverse_iterator = std::reverse_iterator<const_iterator>;
45 explicit string_view(struct TString handle) : m_handle(handle) {} in string_view() function
47string_view(char const *value TH_NONNULL) : string_view(tstr_new_ref(value, std::strlen(value))) {} in string_view() argument
49string_view(char const *value TH_NONNULL, size_type size) : string_view(tstr_new_ref(value, size))… in string_view() argument
[all …]
/arkcompiler/ets_frontend/ets2panda/ir/expressions/literals/
DstringLiteral.h40 operator std::string_view() const in string_view() function
/arkcompiler/runtime_core/taihe/test/ani_callback/author/src/
Dcallback.impl.cpp61 void TestCbS(callback_view<void(string_view, bool)> f) in TestCbS()
/arkcompiler/runtime_core/libpandabase/utils/
Dtype_converter.cpp93 ValueUnit TypeConverter(const std::array<double, SIZE> &coeffs, const std::array<std::string_view, … in TypeConverter()
/arkcompiler/runtime_core/static_core/libpandabase/utils/
Dtype_converter.cpp96 ValueUnit TypeConverter(const std::array<double, SIZE> &coeffs, const std::array<std::string_view, … in TypeConverter()
/arkcompiler/runtime_core/taihe/test/ani_function/author/src/
Dfunction_test.impl.cpp71 void test_cb_s(callback_view<void(string_view, bool)> f) in test_cb_s()
/arkcompiler/ets_runtime/ecmascript/compiler/aot_file/
Delf_builder.cpp465 void ElfBuilder::FixUndefinedSymbols(const std::map<std::string_view, llvm::ELF::Elf64_Sym *> &name… in FixUndefinedSymbols()
529 void ElfBuilder::CollectUndefSyms(std::map<std::string_view, llvm::ELF::Elf64_Sym *> &nameToSym, in CollectUndefSyms()
/arkcompiler/ets_runtime/ecmascript/dfx/tracing/
Dtracing.cpp279 void Tracing::LoadModule([[maybe_unused]] std::string_view name, [[maybe_unused]] std::string_view) in LoadModule()
/arkcompiler/toolchain/tooling/static/
Dinspector_server.cpp236 std::function<void(PtThread, std::string_view, size_t)> &&handler) in OnCallDebuggerContinueToLocation()
272 std::function<std::set<size_t>(std::string_view, size_t, size_t, bool)> &&handler) in OnCallDebuggerGetPossibleBreakpoints()
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/
Dinspector_server.cpp236 std::function<void(PtThread, std::string_view, size_t)> &&handler) in OnCallDebuggerContinueToLocation()
272 std::function<std::set<size_t>(std::string_view, size_t, size_t, bool)> &&handler) in OnCallDebuggerGetPossibleBreakpoints()
/arkcompiler/runtime_core/static_core/runtime/include/tooling/
Ddebug_interface.h235 virtual void LoadModule(std::string_view /* pandaFileName */) {} in LoadModule()
/arkcompiler/toolchain/tooling/static/tests/
Dinspector_server.cpp689 inspectorServer.OnCallDebuggerContinueToLocation([](PtThread thread, std::string_view, size_t) { in TEST_F()
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/tests/
Dinspector_server.cpp689 inspectorServer.OnCallDebuggerContinueToLocation([](PtThread thread, std::string_view, size_t) { in TEST_F()
/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_buffer.cpp44 using string_view = std::string_view; typedef
/arkcompiler/runtime_core/static_core/assembler/
Dassembly-emitter.cpp1997 const std::unordered_map<std::string_view, panda_file::StringItem *> &strings, in Emit()