Lines Matching defs:Node
31 struct Node { struct
32 bool IsRoot = false;
33 char32_t Value = 0xFFFFFFFF;
34 uint32_t ChildrenOffset = 0;
35 bool HasSibling = false;
36 uint32_t Size = 0;
37 StringRef Name;
38 const Node *Parent = nullptr;
40 constexpr bool isValid() const { in isValid()
43 constexpr bool hasChildren() const { return ChildrenOffset != 0 || IsRoot; } in hasChildren()
45 std::string fullName() const { in fullName()
383 Node Node; in nameToCodepoint() local
429 char32_t Value) -> bool { in nearestMatchesForCodepointName()