Home
last modified time | relevance | path

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

/src/contrib/llvm-project/llvm/lib/Support/
H A DYAMLParser.cpp112 void NullNode::anchor() {} in anchor()
2267 return Key = new (getAllocator()) NullNode(Doc); in getKey()
2276 return Key = new (getAllocator()) NullNode(Doc); in getKey()
2291 return Value = new (getAllocator()) NullNode(Doc); in getValue()
2295 return Value = new (getAllocator()) NullNode(Doc); in getValue()
2305 return Value = new (getAllocator()) NullNode(Doc); in getValue()
2310 return Value = new (getAllocator()) NullNode(Doc); in getValue()
2318 return Value = new (getAllocator()) NullNode(Doc); in getValue()
2608 return new (NodeAllocator) NullNode(stream.CurrentDoc); in parseBlockNode()
2613 return new (NodeAllocator) NullNode(stream.CurrentDoc); in parseBlockNode()
H A DYAMLTraits.cpp90 if (isa<NullNode>(N)) { in setCurrentDocument()
/src/contrib/llvm-project/llvm/include/llvm/Support/
H A DYAMLParser.h197 class NullNode final : public Node {
201 NullNode(std::unique_ptr<Document> &D) in NullNode() function
/src/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSymbolRewriter.cpp274 if (isa<yaml::NullNode>(Document.getRoot())) in parse()