Lines Matching refs:TreeNode
268 TreeNode *TypeNode = TypeIt->second.get(); in cleanUpManifests()
274 TreeNode *NameNode = NameIt->second.get(); in cleanUpManifests()
296 TreeNode *FirstNode = FirstIt->second.get(); in cleanUpManifests()
299 TreeNode *LastNode = LastIt->second.get(); in cleanUpManifests()
352 TreeNode *Node; in parse()
380 bool WindowsResourceParser::TreeNode::addEntry( in addEntry()
383 std::vector<std::vector<UTF16>> &StringTable, TreeNode *&Result) { in addEntry()
384 TreeNode &TypeNode = addTypeNode(Entry, StringTable); in addEntry()
385 TreeNode &NameNode = TypeNode.addNameNode(Entry, StringTable); in addEntry()
389 Error WindowsResourceParser::addChildren(TreeNode &Node, in addChildren()
399 TreeNode *Child; in addChildren()
429 TreeNode *Child; in addChildren()
451 WindowsResourceParser::TreeNode::TreeNode(uint32_t StringIndex) in TreeNode() function in llvm::object::WindowsResourceParser::TreeNode
454 WindowsResourceParser::TreeNode::TreeNode(uint16_t MajorVersion, in TreeNode() function in llvm::object::WindowsResourceParser::TreeNode
462 std::unique_ptr<WindowsResourceParser::TreeNode>
463 WindowsResourceParser::TreeNode::createStringNode(uint32_t Index) { in createStringNode()
464 return std::unique_ptr<TreeNode>(new TreeNode(Index)); in createStringNode()
467 std::unique_ptr<WindowsResourceParser::TreeNode>
468 WindowsResourceParser::TreeNode::createIDNode() { in createIDNode()
469 return std::unique_ptr<TreeNode>(new TreeNode(0)); in createIDNode()
472 std::unique_ptr<WindowsResourceParser::TreeNode>
473 WindowsResourceParser::TreeNode::createDataNode(uint16_t MajorVersion, in createDataNode()
478 return std::unique_ptr<TreeNode>(new TreeNode( in createDataNode()
482 WindowsResourceParser::TreeNode &WindowsResourceParser::TreeNode::addTypeNode( in addTypeNode()
491 WindowsResourceParser::TreeNode &WindowsResourceParser::TreeNode::addNameNode( in addNameNode()
500 bool WindowsResourceParser::TreeNode::addLanguageNode( in addLanguageNode()
502 std::vector<std::vector<uint8_t>> &Data, TreeNode *&Result) { in addLanguageNode()
511 bool WindowsResourceParser::TreeNode::addDataChild( in addDataChild()
514 TreeNode *&Result) { in addDataChild()
522 WindowsResourceParser::TreeNode &WindowsResourceParser::TreeNode::addIDChild( in addIDChild()
527 WindowsResourceParser::TreeNode &Node = *NewChild; in addIDChild()
534 WindowsResourceParser::TreeNode &WindowsResourceParser::TreeNode::addNameChild( in addNameChild()
543 WindowsResourceParser::TreeNode &Node = *NewChild; in addNameChild()
550 void WindowsResourceParser::TreeNode::print(ScopedPrinter &Writer, in print()
564 uint32_t WindowsResourceParser::TreeNode::getTreeSize() const { in getTreeSize()
589 void WindowsResourceParser::TreeNode::shiftDataIndexDown(uint32_t Index) { in shiftDataIndexDown()
624 const WindowsResourceParser::TreeNode &Resources;
873 std::queue<const WindowsResourceParser::TreeNode *> Queue; in writeDirectoryTree()
879 std::vector<const WindowsResourceParser::TreeNode *> DataEntriesTreeOrder; in writeDirectoryTree()