Home
last modified time | relevance | path

Searched refs:nodeId (Results 1 – 4 of 4) sorted by relevance

/AOO41X/main/writerfilter/qa/cppunittests/odiapi/
H A DExternalViewLogger.cxx109 …void ExternalViewLoggerImpl::beginNode(const std::string& nodeId, const std::string& value, const … in beginNode() argument
112 NodeContainer_t::value_type(nodeId, in beginNode()
114 mParentNodeStack.push(nodeId); in beginNode()
117 void ExternalViewLoggerImpl::endNode(const std::string& nodeId) in endNode() argument
122 bool ExternalViewLoggerImpl::isLeaf(const std::string& nodeId) in isLeaf() argument
130 if (iter->second->mParentNodeId == nodeId) in isLeaf()
139 bool ExternalViewLoggerImpl::isUnreferencedLeaf(const string& nodeId) in isUnreferencedLeaf() argument
141 return isLeaf(nodeId) && !isReferenced(nodeId); in isUnreferencedLeaf()
144 bool ExternalViewLoggerImpl::isReferenced(const string& nodeId) in isReferenced() argument
152 if (iter->second->mRefersToNodeId == nodeId) in isReferenced()
[all …]
H A DExternalViewLogger.hxx61 …virtual void beginNode(const std::string& nodeId, const std::string& value, const std::string& ref…
62 virtual void endNode(const std::string& nodeId);
65 bool isLeaf(const std::string& nodeId);
66 bool isUnreferencedLeaf(const std::string& nodeId);
67 bool isReferenced(const std::string& nodeId);
68 bool isReferingToOtherNode(const std::string& nodeId);
69 bool hasParent(const std::string& nodeId);
70 void dumpTree(const std::string& nodeId);
71 std::string getValue(const std::string& nodeId);
H A DFileLoggerImpl.cxx49 …void FileLoggerImpl::beginNode(const std::string& nodeId, const std::string& value, const std::str… in beginNode() argument
54 …file_ << nodeId << " [ label=\"(" << value << ")\", shape=box, color=grey, style=filled ];"<< endl; in beginNode()
56 file_ << nodeId << " [ label=\"(" << value << ")\" ];"<< endl; in beginNode()
58 file_ << nodeStack_.top() << " -> " << nodeId << ";" << endl; in beginNode()
61 file_ << nodeId << " -> " << refersToNodeId << " [ color=grey, weight=0 ];" << endl; in beginNode()
65 … file_ << nodeId << " [ label=\"(" << value << ")\", shape=diamond ];"<< endl; in beginNode()
67 nodeStack_.push(nodeId); in beginNode()
70 void FileLoggerImpl::endNode(const std::string& nodeId) in endNode() argument
H A DFileLoggerImpl.hxx43 …virtual void beginNode(const std::string& nodeId, const std::string& value, const std::string& ref…
44 virtual void endNode(const std::string& nodeId);