Lines Matching defs:std
21 void StackManager::SetCallFrames(std::map<int32_t, std::unique_ptr<CallFrame>> callFrames)
24 callFrames_[callFrame.first] = std::move(callFrame.second);
30 std::cout << std::endl;
35 std::cout << callFrame.first << ". " << callFrame.second->GetFunctionName() << "(), "
36 << callFrame.second->GetUrl() << ": " << callFrame.second->GetLocation()->GetLine() << std::endl;
40 std::map<int32_t, std::map<int32_t, std::string>> StackManager::GetScopeChainInfo()
42 std::map<int32_t, std::map<int32_t, std::string>> scopeInfos;
57 void StackManager::PrintScopeChainInfo(const std::map<int32_t, std::map<int32_t, std::string>>& scopeInfos)
60 std::cout << "CallFrame ID: " << callFrameId << std::endl;
62 std::cout << " Object ID: " << objectId << ", Type: " << type << std::endl;
64 std::cout << "-----------------------" << std::endl;