Searched refs:HNode (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Support/
H A DYAMLTraits.cpp63 void Input::HNode::anchor() {}
136 HNode *Value = MN->Mapping[Key];
150 CurrentNode = reinterpret_cast<HNode *>(saveInfo);
190 CurrentNode = reinterpret_cast<HNode *>(SaveInfo);
212 CurrentNode = reinterpret_cast<HNode *>(SaveInfo);
256 for (HNode *N : SQ->Entries) {
295 void Input::setError(HNode *hnode, const Twine &message) {
296 assert(hnode && "HNode must not be NULL");
305 Input::HNode *Input::createHNodes(Node *N) {
320 HNode *Entr
[all...]
/external/llvm/include/llvm/Support/
H A DYAMLTraits.h910 class HNode { class in class:llvm::yaml::Input
913 HNode(Node *n) : _node(n) { } function in class:llvm::yaml::Input::HNode
914 virtual ~HNode() { }
915 static inline bool classof(const HNode *) { return true; }
920 class EmptyHNode : public HNode {
923 EmptyHNode(Node *n) : HNode(n) { }
924 static inline bool classof(const HNode *n) {
930 class ScalarHNode : public HNode {
933 ScalarHNode(Node *n, StringRef s) : HNode(n), _value(s) { }
937 static inline bool classof(const HNode *
[all...]

Completed in 49 milliseconds