本文整理汇总了C++中std::hash_map::begin方法的典型用法代码示例。如果您正苦于以下问题:C++ hash_map::begin方法的具体用法?C++ hash_map::begin怎么用?C++ hash_map::begin使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类std::hash_map
的用法示例。
在下文中一共展示了hash_map::begin方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: UnhookAfsReplace
KEXPORT void UnhookAfsReplace()
{
MasterUnhookFunction(code[C_NEWFILEFROMAFS_CS], afsNewFileFromAFS);
MasterUnhookFunction(code[C_ALLOCATEBUFFERS_CS], afsAllocateBuffers);
// free all file buffers
for (g_FilesIterator = g_Files.begin(); g_FilesIterator != g_Files.end();
g_FilesIterator++) {
try {
LogWithNumber(&k_kload, "Buffer with %d bytes was still allocated!",
(g_FilesIterator->second)->replaceSize);
makeReplaceBuffer(0, g_FilesIterator->second);
HeapFree(GetProcessHeap(),0,(void*)g_FilesIterator->second);
} catch (...) {}
}
g_Files.clear();
DeleteCriticalSection(&_ar_cs);
return;
}
示例2: substitute
Expr Expr::substitute(const std::hash_map<Expr, Expr, ExprHashFunction> map) const {
ExprManagerScope ems(*this);
return Expr(d_exprManager, new Node(d_node->substitute(mkNodePairIteratorAdaptor(map.begin()), mkNodePairIteratorAdaptor(map.end()))));
}