Home
last modified time | relevance | path

Searched refs:details (Results 1 - 22 of 22) sorted by relevance

/arkcompiler/toolchain/test/fuzztest/pttypesbreakpointparseid_fuzzer/
H A Dpttypesbreakpointparseid_fuzzer.cpp33 BreakpointDetails details; in PtTypesBreakpointParseIdFuzzTest() local
34 details.line_ = size; in PtTypesBreakpointParseIdFuzzTest()
35 details.column_ = size; in PtTypesBreakpointParseIdFuzzTest()
36 details.url_ = std::string((const char*)data, size); in PtTypesBreakpointParseIdFuzzTest()
37 BreakpointId id = BreakpointDetails::ToString(details); in PtTypesBreakpointParseIdFuzzTest()
38 BreakpointDetails::ParseBreakpointId(id, &details); in PtTypesBreakpointParseIdFuzzTest()
/arkcompiler/toolchain/test/fuzztest/pttypesbreakpointtostring_fuzzer/
H A Dpttypesbreakpointtostring_fuzzer.cpp33 BreakpointDetails details; in PtTypesBreakpointToStringFuzzTest() local
34 details.line_ = size; in PtTypesBreakpointToStringFuzzTest()
35 details.column_ = size; in PtTypesBreakpointToStringFuzzTest()
36 details.url_ = std::string((const char*)data, size); in PtTypesBreakpointToStringFuzzTest()
37 BreakpointId id = BreakpointDetails::ToString(details); in PtTypesBreakpointToStringFuzzTest()
/arkcompiler/toolchain/test/fuzztest/pttypesexceptiondetailsexception_fuzzer/
H A Dpttypesexceptiondetailsexception_fuzzer.cpp33 ExceptionDetails details; in PtTypesExceptionDetailsExceptionFuzzTest() local
35 details.SetException(std::move(obj)); in PtTypesExceptionDetailsExceptionFuzzTest()
36 details.GetException(); in PtTypesExceptionDetailsExceptionFuzzTest()
37 details.HasException(); in PtTypesExceptionDetailsExceptionFuzzTest()
/arkcompiler/toolchain/test/fuzztest/pttypesexceptiondetailsurl_fuzzer/
H A Dpttypesexceptiondetailsurl_fuzzer.cpp33 ExceptionDetails details; in PtTypesExceptionDetailsUrlFuzzTest() local
34 details.SetUrl(std::string((const char*)data, size)); in PtTypesExceptionDetailsUrlFuzzTest()
35 details.GetUrl(); in PtTypesExceptionDetailsUrlFuzzTest()
36 details.HasUrl(); in PtTypesExceptionDetailsUrlFuzzTest()
/arkcompiler/toolchain/test/fuzztest/pttypesexceptiondetailsscriptid_fuzzer/
H A Dpttypesexceptiondetailsscriptid_fuzzer.cpp34 ExceptionDetails details; in PtTypesExceptionDetailsScriptIdFuzzTest() local
35 details.SetScriptId(id); in PtTypesExceptionDetailsScriptIdFuzzTest()
36 details.GetScriptId(); in PtTypesExceptionDetailsScriptIdFuzzTest()
37 details.HasScriptId(); in PtTypesExceptionDetailsScriptIdFuzzTest()
/arkcompiler/toolchain/test/fuzztest/pttypesexceptiondetailsexecutioncontextid_fuzzer/
H A Dpttypesexceptiondetailsexecutioncontextid_fuzzer.cpp33 ExceptionDetails details; in PtTypesExceptionDetailsExecutionContextIdFuzzTest() local
35 details.SetExecutionContextId(id); in PtTypesExceptionDetailsExecutionContextIdFuzzTest()
36 details.GetExecutionContextId(); in PtTypesExceptionDetailsExecutionContextIdFuzzTest()
37 details.HasExecutionContextId(); in PtTypesExceptionDetailsExecutionContextIdFuzzTest()
/arkcompiler/toolchain/test/fuzztest/pttypesexceptiondetailscolumn_fuzzer/
H A Dpttypesexceptiondetailscolumn_fuzzer.cpp34 ExceptionDetails details; in PtTypesExceptionDetailsColumnFuzzTest() local
35 details.SetColumn(line); in PtTypesExceptionDetailsColumnFuzzTest()
36 details.GetColumn(); in PtTypesExceptionDetailsColumnFuzzTest()
/arkcompiler/toolchain/test/fuzztest/pttypesexceptiondetailstext_fuzzer/
H A Dpttypesexceptiondetailstext_fuzzer.cpp33 ExceptionDetails details; in PtTypesExceptionDetailsTextFuzzTest() local
34 details.SetText(std::string((const char*)data, size)); in PtTypesExceptionDetailsTextFuzzTest()
35 details.GetText(); in PtTypesExceptionDetailsTextFuzzTest()
/arkcompiler/toolchain/test/fuzztest/pttypesexceptiondetailsline_fuzzer/
H A Dpttypesexceptiondetailsline_fuzzer.cpp34 ExceptionDetails details; in PtTypesExceptionDetailsLineFuzzTest() local
35 details.SetLine(line); in PtTypesExceptionDetailsLineFuzzTest()
36 details.GetLine(); in PtTypesExceptionDetailsLineFuzzTest()
/arkcompiler/toolchain/test/fuzztest/pttypesexceptiondetailsexceptionid_fuzzer/
H A Dpttypesexceptiondetailsexceptionid_fuzzer.cpp33 ExceptionDetails details; in PtTypesExceptionDetailsExceptionIdFuzzTest() local
35 details.SetExceptionId(id); in PtTypesExceptionDetailsExceptionIdFuzzTest()
36 details.GetExceptionId(); in PtTypesExceptionDetailsExceptionIdFuzzTest()
/arkcompiler/toolchain/test/fuzztest/pttypesexceptiondetailstojson_fuzzer/
H A Dpttypesexceptiondetailstojson_fuzzer.cpp33 ExceptionDetails details; in PtTypesExceptionDetailsToJsonFuzzTest() local
34 auto pj = details.ToJson(); in PtTypesExceptionDetailsToJsonFuzzTest()
/arkcompiler/runtime_core/compiler/optimizer/
H A Dpass_manager.h37 namespace details { namespace
74 } // namespace details
91 if constexpr (details::PredefinedAnalyses::HasType<T>()) { in RunPass()
93 res = RunPass(ANALYSES[details::PredefinedAnalyses::ID<T>], local_mem_size_before); in RunPass()
112 return *static_cast<T *>(ANALYSES[details::PredefinedAnalyses::ID<T>]); in GetAnalysis()
H A Dpass_manager.cpp33 ANALYSES(details::PredefinedAnalyses::Instantiate<Analysis *>(graph_->GetAllocator(), graph_)), in PassManager()
/arkcompiler/runtime_core/static_core/compiler/optimizer/
H A Dpass_manager.h45 namespace details { namespace
83 } // namespace details
100 if constexpr (details::PredefinedAnalyses::HasType<T>()) { in RunPass()
102 res = RunPass(analyses_[details::PredefinedAnalyses::ID<T>], localMemSizeBefore); in RunPass()
121 return *static_cast<T *>(analyses_[details::PredefinedAnalyses::ID<T>]); in GetAnalysis()
H A Dpass_manager.cpp54 analyses_(details::PredefinedAnalyses::Instantiate<Analysis *>(graph_->GetAllocator(), graph_)), in PassManager()
/arkcompiler/toolchain/test/fuzztest/pttypesexceptiondetails_fuzzer/
H A Dpttypesexceptiondetails_fuzzer.cpp33 ExceptionDetails details; in PtTypesExceptionDetailsFuzzTest() local
/arkcompiler/toolchain/test/fuzztest/pttypesexceptiondetailscreate_fuzzer/
H A Dpttypesexceptiondetailscreate_fuzzer.cpp39 auto details = ExceptionDetails::Create(pjson); in PtTypesExceptionDetailsCreateFuzzTest() local
/arkcompiler/runtime_core/static_core/static_linker/
H A Dlinker_context.cpp405 std::vector<ark::static_linker::Context::ErrorDetail> details = {{"method", fm}}; in MergeForeignMethod() local
406 auto res = TryFindMethod(clz, fm, &details); in MergeForeignMethod()
411 Error("Unresolved method", details, reader); in MergeForeignMethod()
480 auto details = std::vector<ErrorDetail> {{"field", ff}}; in HandleCandidates() local
482 details.emplace_back("candidate", c); in HandleCandidates()
484 Error("Unresolved field", details, reader); in HandleCandidates()
643 std::vector<ErrorDetail> details {ErrorDetail {"annotation", oldAnnot}, ed};
645 details.emplace_back("old item", ad.oi);
646 details.emplace_back("new item", ad.ni);
648 this->Error("can't transfer annotation", details, a
[all...]
H A Dlinker_context_misc.cpp319 void Context::Error(const std::string &msg, const std::vector<ErrorDetail> &details, in Error() argument
325 for (const auto &d : details) { in Error()
H A Dlinker_context.h297 void Error(const std::string &msg, const std::vector<ErrorDetail> &details,
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/
H A Dpgo_profiler_info.cpp886 std::string details; in ParseFromText() local
887 while (std::getline(stream, details)) { in ParseFromText()
888 if (details.empty()) { in ParseFromText()
891 size_t blockIndex = details.find(DumpUtils::BLOCK_AND_ARRAY_START); in ParseFromText()
895 CString recordName = ConvertToString(details.substr(0, blockIndex)); in ParseFromText()
897 size_t start = details.find_first_of(DumpUtils::ARRAY_START); in ParseFromText()
898 size_t end = details.find_last_of(DumpUtils::ARRAY_END); in ParseFromText()
903 auto content = details.substr(start + 1, end - (start + 1) - 1); in ParseFromText()
/arkcompiler/ets_runtime/ecmascript/
H A Ddump.cpp648 JSTaggedValue details = jshclass->GetProtoChangeDetails(); in DumpHClass() local
649 details.DumpTaggedValue(os); in DumpHClass()
650 if (details.IsHeapObject()) { in DumpHClass()
651 ProtoChangeDetails::Cast(details.GetTaggedObject())->Dump(os); in DumpHClass()

Completed in 20 milliseconds