Home
last modified time | relevance | path

Searched refs:MappingNode (Results 1 - 18 of 18) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/
H A DSymbolRewriter.h49 class MappingNode;
104 yaml::MappingNode *Value,
108 yaml::MappingNode *Value,
111 yaml::MappingNode *V,
/third_party/PyYAML/lib/yaml/
H A Dresolver.py43 # `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 Dserializer.py69 elif isinstance(node, MappingNode):
101 elif isinstance(node, MappingNode):
103 == self.resolve(MappingNode, node.value, True))
H A Dconstructor.py97 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 Dcomposer.py121 tag = self.resolve(MappingNode, None, start_event.implicit)
122 node = MappingNode(tag, [],
H A Dnodes.py47 class MappingNode(CollectionNode): class
H A Drepresenter.py105 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 DSymbolRewriter.cpp272 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 DYAMLParser.h378 // 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 DYAMLParser.h364 // 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 DYAMLTraits.h1150 return MappingNode::classof(n->_node); in classof()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Remarks/
H A DYAMLRemarkParser.cpp201 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 DYAMLRemarkParser.h85 Expected<Type> parseType(yaml::MappingNode &Node);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DYAMLParser.cpp118 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 DYAMLTraits.cpp392 } else if (MappingNode *Map = dyn_cast<MappingNode>(N)) { in createHNodes()
H A DVirtualFileSystem.cpp1301 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 Dtest_resolver.py55 elif isinstance(node, yaml.MappingNode):
/third_party/PyYAML/yaml/
H A D_yaml.pyx59 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:

Completed in 21 milliseconds