Searched defs:TrieNode (Results 1 – 7 of 7) sorted by relevance
30 template <typename AssociatedData> struct TrieNode { struct35 TrieNode<AssociatedData> *Parent; argument38 llvm::SmallVector<TrieNode<AssociatedData> *, 4> Callees; argument48 TrieNode<T> * argument
57 struct TrieNode { struct60 absl::flat_hash_map<std::string, TrieNode> token_to_node; argument62 absl::flat_hash_map<std::string, TrieNode> prefix_to_node; argument
117 struct TrieNode { struct119 std::vector<TrieNode *> Callees{}; argument120 TrieNode *Caller = nullptr; argument127 // List of TrieNode elements we've seen. argument
78 struct TrieNode { struct79 typedef llvm::ilist<TrieEdge> TrieEdgeList;81 TrieNode(StringRef s) in TrieNode() function95 StringRef _cummulativeString;96 TrieEdgeList _children;97 uint64_t _address;98 uint64_t _flags;99 uint64_t _other;100 StringRef _importedName;101 uint32_t _trieOffset;[all …]
82 struct macho::TrieNode { struct in macho83 std::vector<Edge> edges;84 Optional<ExportInfo> info;88 size_t offset = 0;
39 typedef uint32 TrieNode; typedef