/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/ |
H A D | SymbolRewriter.h | 49 class MappingNode; 104 yaml::MappingNode *Value, 108 yaml::MappingNode *Value, 111 yaml::MappingNode *V,
|
/third_party/PyYAML/lib/yaml/ |
H A D | resolver.py | 43 # `ScalarNode`, `SequenceNode`, `MappingNode` or `None`. `None` 71 node_check = MappingNode 72 elif node_check not in [ScalarNode, SequenceNode, MappingNode] \ 85 kind = MappingNode 86 elif kind not in [ScalarNode, SequenceNode, MappingNode] \ 164 elif kind is MappingNode:
|
H A D | serializer.py | 69 elif isinstance(node, MappingNode): 101 elif isinstance(node, MappingNode): 103 == self.resolve(MappingNode, node.value, True))
|
H A D | constructor.py | 97 elif isinstance(node, MappingNode): 133 if not isinstance(node, MappingNode): 148 if not isinstance(node, MappingNode): 174 if isinstance(node, MappingNode): 187 if isinstance(value_node, MappingNode): 193 if not isinstance(subnode, MappingNode): 216 if isinstance(node, MappingNode): 362 if not isinstance(subnode, MappingNode): 383 if not isinstance(subnode, MappingNode):
|
H A D | composer.py | 121 tag = self.resolve(MappingNode, None, start_event.implicit) 122 node = MappingNode(tag, [],
|
H A D | nodes.py | 47 class MappingNode(CollectionNode): class
|
H A D | representer.py | 105 node = MappingNode(tag, value, flow_style=flow_style)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
H A D | SymbolRewriter.cpp | 272 yaml::MappingNode *DescriptorList; in parse() 278 DescriptorList = dyn_cast<yaml::MappingNode>(Document.getRoot()); in parse() 295 yaml::MappingNode *Value; in parseEntry() 305 Value = dyn_cast<yaml::MappingNode>(Entry.getValue()); in parseEntry() 325 yaml::MappingNode *Descriptor, in parseRewriteFunctionDescriptor() 395 yaml::MappingNode *Descriptor, in parseRewriteGlobalVariableDescriptor() 458 yaml::MappingNode *Descriptor, in parseRewriteGlobalAliasDescriptor()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
H A D | YAMLParser.h | 378 // The following two templates are used for both MappingNode and Sequence Node. 404 class MappingNode final : public Node { 414 MappingNode(std::unique_ptr<Document> &D, StringRef Anchor, StringRef Tag, in MappingNode() function in llvm::yaml::final 418 friend class basic_collection_iterator<MappingNode, KeyValueNode>; 420 using iterator = basic_collection_iterator<MappingNode, KeyValueNode>;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
H A D | YAMLParser.h | 364 // The following two templates are used for both MappingNode and Sequence Node. 390 class MappingNode final : public Node { 400 MappingNode(std::unique_ptr<Document> &D, StringRef Anchor, StringRef Tag, in MappingNode() function in llvm::yaml::final 405 friend class basic_collection_iterator<MappingNode, KeyValueNode>; 406 typedef basic_collection_iterator<MappingNode, KeyValueNode> iterator;
|
H A D | YAMLTraits.h | 1150 return MappingNode::classof(n->_node); in classof()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Remarks/ |
H A D | YAMLRemarkParser.cpp | 201 auto *Root = dyn_cast<yaml::MappingNode>(YAMLRoot); in parseRemark() 273 Expected<Type> YAMLRemarkParser::parseType(yaml::MappingNode &Node) { in parseType() 322 auto *DebugLoc = dyn_cast<yaml::MappingNode>(Node.getValue()); in parseDebugLoc() 364 auto *ArgMap = dyn_cast<yaml::MappingNode>(&Node); in parseArg()
|
H A D | YAMLRemarkParser.h | 85 Expected<Type> parseType(yaml::MappingNode &Node);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | YAMLParser.cpp | 118 void MappingNode::anchor() {} in anchor() 2132 void MappingNode::increment() { in increment() 2369 MappingNode( stream.CurrentDoc in parseBlockNode() 2372 , MappingNode::MT_Block); in parseBlockNode() 2383 MappingNode( stream.CurrentDoc in parseBlockNode() 2386 , MappingNode::MT_Flow); in parseBlockNode() 2405 MappingNode( stream.CurrentDoc in parseBlockNode() 2408 , MappingNode::MT_Inline); in parseBlockNode() 2419 if (Root && (isa<MappingNode>(Root) || isa<SequenceNode>(Root))) in parseBlockNode()
|
H A D | YAMLTraits.cpp | 392 } else if (MappingNode *Map = dyn_cast<MappingNode>(N)) { in createHNodes()
|
H A D | VirtualFileSystem.cpp | 1301 auto *M = dyn_cast<yaml::MappingNode>(N); in parseEntry() 1511 auto *Top = dyn_cast<yaml::MappingNode>(Root); in parse()
|
/third_party/PyYAML/tests/lib/ |
H A D | test_resolver.py | 55 elif isinstance(node, yaml.MappingNode):
|
/third_party/PyYAML/yaml/ |
H A D | _yaml.pyx | 59 MappingNode = yaml.nodes.MappingNode variable 829 tag = self.resolve(MappingNode, None, implicit) 838 node = MappingNode(tag, value, start_mark, None, flow_style) 1250 elif node_class is MappingNode: 1354 elif node_class is MappingNode: 1357 if self.resolve(MappingNode, node.value, True) == tag_object:
|