Lines Matching refs:TreeNode

269   TreeNode *TypeNode = TypeIt->second.get();  in cleanUpManifests()
275 TreeNode *NameNode = NameIt->second.get(); in cleanUpManifests()
297 TreeNode *FirstNode = FirstIt->second.get(); in cleanUpManifests()
300 TreeNode *LastNode = LastIt->second.get(); in cleanUpManifests()
353 TreeNode *Node; in parse()
381 bool WindowsResourceParser::TreeNode::addEntry( in addEntry()
384 std::vector<std::vector<UTF16>> &StringTable, TreeNode *&Result) { in addEntry()
385 TreeNode &TypeNode = addTypeNode(Entry, StringTable); in addEntry()
386 TreeNode &NameNode = TypeNode.addNameNode(Entry, StringTable); in addEntry()
390 Error WindowsResourceParser::addChildren(TreeNode &Node, in addChildren()
400 TreeNode *Child; in addChildren()
430 TreeNode *Child; in addChildren()
452 WindowsResourceParser::TreeNode::TreeNode(uint32_t StringIndex) in TreeNode() function in llvm::object::WindowsResourceParser::TreeNode
455 WindowsResourceParser::TreeNode::TreeNode(uint16_t MajorVersion, in TreeNode() function in llvm::object::WindowsResourceParser::TreeNode
463 std::unique_ptr<WindowsResourceParser::TreeNode>
464 WindowsResourceParser::TreeNode::createStringNode(uint32_t Index) { in createStringNode()
465 return std::unique_ptr<TreeNode>(new TreeNode(Index)); in createStringNode()
468 std::unique_ptr<WindowsResourceParser::TreeNode>
469 WindowsResourceParser::TreeNode::createIDNode() { in createIDNode()
470 return std::unique_ptr<TreeNode>(new TreeNode(0)); in createIDNode()
473 std::unique_ptr<WindowsResourceParser::TreeNode>
474 WindowsResourceParser::TreeNode::createDataNode(uint16_t MajorVersion, in createDataNode()
479 return std::unique_ptr<TreeNode>(new TreeNode( in createDataNode()
483 WindowsResourceParser::TreeNode &WindowsResourceParser::TreeNode::addTypeNode( in addTypeNode()
492 WindowsResourceParser::TreeNode &WindowsResourceParser::TreeNode::addNameNode( in addNameNode()
501 bool WindowsResourceParser::TreeNode::addLanguageNode( in addLanguageNode()
503 std::vector<std::vector<uint8_t>> &Data, TreeNode *&Result) { in addLanguageNode()
512 bool WindowsResourceParser::TreeNode::addDataChild( in addDataChild()
515 TreeNode *&Result) { in addDataChild()
523 WindowsResourceParser::TreeNode &WindowsResourceParser::TreeNode::addIDChild( in addIDChild()
528 WindowsResourceParser::TreeNode &Node = *NewChild; in addIDChild()
535 WindowsResourceParser::TreeNode &WindowsResourceParser::TreeNode::addNameChild( in addNameChild()
544 WindowsResourceParser::TreeNode &Node = *NewChild; in addNameChild()
551 void WindowsResourceParser::TreeNode::print(ScopedPrinter &Writer, in print()
565 uint32_t WindowsResourceParser::TreeNode::getTreeSize() const { in getTreeSize()
590 void WindowsResourceParser::TreeNode::shiftDataIndexDown(uint32_t Index) { in shiftDataIndexDown()
625 const WindowsResourceParser::TreeNode &Resources;
874 std::queue<const WindowsResourceParser::TreeNode *> Queue; in writeDirectoryTree()
880 std::vector<const WindowsResourceParser::TreeNode *> DataEntriesTreeOrder; in writeDirectoryTree()