Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Remarks/
DYAMLRemarkParser.h87 Expected<StringRef> parseKey(yaml::KeyValueNode &Node);
89 virtual Expected<StringRef> parseStr(yaml::KeyValueNode &Node);
91 Expected<unsigned> parseUnsigned(yaml::KeyValueNode &Node);
93 Expected<RemarkLocation> parseDebugLoc(yaml::KeyValueNode &Node);
109 Expected<StringRef> parseStr(yaml::KeyValueNode &Node) override;
DYAMLRemarkParser.cpp217 for (yaml::KeyValueNode &RemarkField : *Root) { in parseRemark()
287 Expected<StringRef> YAMLRemarkParser::parseKey(yaml::KeyValueNode &Node) { in parseKey()
294 Expected<StringRef> YAMLRemarkParser::parseStr(yaml::KeyValueNode &Node) { in parseStr()
309 Expected<unsigned> YAMLRemarkParser::parseUnsigned(yaml::KeyValueNode &Node) { in parseUnsigned()
321 YAMLRemarkParser::parseDebugLoc(yaml::KeyValueNode &Node) { in parseDebugLoc()
330 for (yaml::KeyValueNode &DLNode : *DebugLoc) { in parseDebugLoc()
372 for (yaml::KeyValueNode &ArgEntry : *ArgMap) { in parseArg()
430 Expected<StringRef> YAMLStrTabRemarkParser::parseStr(yaml::KeyValueNode &Node) { in parseStr()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/
DSymbolRewriter.h48 class KeyValueNode; variable
100 bool parseEntry(yaml::Stream &Stream, yaml::KeyValueNode &Entry,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DYAMLParser.h279 class KeyValueNode final : public Node {
283 KeyValueNode(std::unique_ptr<Document> &D) in KeyValueNode() function
418 friend class basic_collection_iterator<MappingNode, KeyValueNode>;
420 using iterator = basic_collection_iterator<MappingNode, KeyValueNode>;
439 KeyValueNode *CurrentEntry = nullptr;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DYAMLParser.h266 class KeyValueNode final : public Node {
270 KeyValueNode(std::unique_ptr<Document> &D) in KeyValueNode() function
405 friend class basic_collection_iterator<MappingNode, KeyValueNode>;
406 typedef basic_collection_iterator<MappingNode, KeyValueNode> iterator;
424 KeyValueNode *CurrentEntry;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DYAMLParser.cpp117 void KeyValueNode::anchor() {} in anchor()
2065 Node *KeyValueNode::getKey() { in getKey()
2090 Node *KeyValueNode::getValue() { in getValue()
2149 CurrentEntry = new (getAllocator()) KeyValueNode(Doc); in increment()
DYAMLTraits.cpp394 for (KeyValueNode &KVN : *Map) { in createHNodes()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DSymbolRewriter.cpp292 bool RewriteMapParser::parseEntry(yaml::Stream &YS, yaml::KeyValueNode &Entry, in parseEntry()