Home
last modified time | relevance | path

Searched refs:m_decls_to_deport (Results 1 – 2 of 2) sorted by relevance

/external/lldb/source/Symbol/
DClangASTImporter.cpp457 assert(!m_decls_to_deport); // TODO make debug only in InitDeportWorkQueues()
460 m_decls_to_deport = decls_to_deport; in InitDeportWorkQueues()
467 assert(m_decls_to_deport); // TODO make debug only in ExecuteDeportWorkQueues()
472 while (!m_decls_to_deport->empty()) in ExecuteDeportWorkQueues()
474 NamedDecl *decl = *m_decls_to_deport->begin(); in ExecuteDeportWorkQueues()
477 m_decls_to_deport->erase(decl); in ExecuteDeportWorkQueues()
506 m_decls_to_deport = NULL; in ExecuteDeportWorkQueues()
636 if (m_decls_to_deport && m_decls_already_deported) in Imported()
643 m_decls_to_deport->insert(to_named_decl); in Imported()
/external/lldb/include/lldb/Symbol/
DClangASTImporter.h253 m_decls_to_deport(NULL), in Minion()
281 std::set<clang::NamedDecl *> *m_decls_to_deport; variable