Home
last modified time | relevance | path

Searched refs:KeyValueNode (Results 1 – 7 of 7) sorted by relevance

/llvm-project/llvm/lib/Remarks/
H A DYAMLRemarkParser.h85 Expected<StringRef> parseKey(yaml::KeyValueNode &Node);
87 virtual Expected<StringRef> parseStr(yaml::KeyValueNode &Node);
89 Expected<unsigned> parseUnsigned(yaml::KeyValueNode &Node);
91 Expected<RemarkLocation> parseDebugLoc(yaml::KeyValueNode &Node);
107 Expected<StringRef> parseStr(yaml::KeyValueNode &Node) override;
H A DYAMLRemarkParser.cpp215 for (yaml::KeyValueNode &RemarkField : *Root) { in parseRemark()
285 Expected<StringRef> YAMLRemarkParser::parseKey(yaml::KeyValueNode &Node) { in parseKey()
292 Expected<StringRef> YAMLRemarkParser::parseStr(yaml::KeyValueNode &Node) { in parseStr()
311 Expected<unsigned> YAMLRemarkParser::parseUnsigned(yaml::KeyValueNode &Node) { in parseUnsigned()
323 YAMLRemarkParser::parseDebugLoc(yaml::KeyValueNode &Node) { in parseDebugLoc()
332 for (yaml::KeyValueNode &DLNode : *DebugLoc) { in parseDebugLoc()
374 for (yaml::KeyValueNode &ArgEntry : *ArgMap) { in parseArg()
432 Expected<StringRef> YAMLStrTabRemarkParser::parseStr(yaml::KeyValueNode &Node) { in parseStr()
/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DSymbolRewriter.h47 class KeyValueNode; variable
99 bool parseEntry(yaml::Stream &Stream, yaml::KeyValueNode &Entry,
/llvm-project/llvm/include/llvm/Support/
H A DYAMLParser.h290 class KeyValueNode final : public Node {
294 KeyValueNode(std::unique_ptr<Document> &D) in KeyValueNode() function
433 friend class basic_collection_iterator<MappingNode, KeyValueNode>;
435 using iterator = basic_collection_iterator<MappingNode, KeyValueNode>;
454 KeyValueNode *CurrentEntry = nullptr;
/llvm-project/llvm/lib/Support/
H A DYAMLParser.cpp115 void KeyValueNode::anchor() {} in anchor()
2257 Node *KeyValueNode::getKey() {
2282 Node *KeyValueNode::getValue() {
2340 // KeyValueNode eats the TK_Key. That way it can detect null keys. in increment()
2341 CurrentEntry = new (getAllocator()) KeyValueNode(Doc); in increment()
2595 // Don't eat the TK_Key, KeyValueNode expects it. in parseBlockNode()
H A DYAMLTraits.cpp431 for (KeyValueNode &KVN : *Map) { in createHNodes()
/llvm-project/llvm/lib/Transforms/Utils/
H A DSymbolRewriter.cpp291 bool RewriteMapParser::parseEntry(yaml::Stream &YS, yaml::KeyValueNode &Entry, in parseEntry()