Home
last modified time | relevance | path

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

/netbsd-src/external/bsd/elftosb/dist/elftosb2/
H A DElftosbAST.cpp412 : ExprASTNode(other), m_functionName(), m_sourceFile() in SourceFileFunctionASTNode()
415 m_sourceFile = new std::string(*other.m_sourceFile); in SourceFileFunctionASTNode()
425 if (m_functionName.get() && m_sourceFile.get()) in printTree()
427 printf("%s ( %s )\n", m_functionName->c_str(), m_sourceFile->c_str()); in printTree()
433 if (!(m_functionName && m_sourceFile)) in reduce()
450 functionResult = static_cast<uint32_t>(mgr->hasSourceFile(*m_sourceFile)); in reduce()
H A DElftosbAST.h376 …ring * sourceFileName) : ExprASTNode(), m_functionName(functionName), m_sourceFile(sourceFileName)… in SourceFileFunctionASTNode()
388 std::string * getSourceFile() { return m_sourceFile; } in getSourceFile()
392 smart_ptr<std::string> m_sourceFile; variable