Searched refs:KeyValueNode (Results 1 – 7 of 7) sorted by relevance
85 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;
215 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()
47 class KeyValueNode; variable99 bool parseEntry(yaml::Stream &Stream, yaml::KeyValueNode &Entry,
290 class KeyValueNode final : public Node {294 KeyValueNode(std::unique_ptr<Document> &D) in KeyValueNode() function433 friend class basic_collection_iterator<MappingNode, KeyValueNode>;435 using iterator = basic_collection_iterator<MappingNode, KeyValueNode>;454 KeyValueNode *CurrentEntry = nullptr;
115 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()
431 for (KeyValueNode &KVN : *Map) { in createHNodes()
291 bool RewriteMapParser::parseEntry(yaml::Stream &YS, yaml::KeyValueNode &Entry, in parseEntry()