HomeSort by relevance Sort by last modified time
    Searched refs:HNode (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/Support/
YAMLTraits.h 1011 class HNode {
1014 HNode(Node *n) : _node(n) { }
1015 virtual ~HNode() { }
1016 static inline bool classof(const HNode *) { return true; }
1021 class EmptyHNode : public HNode {
1024 EmptyHNode(Node *n) : HNode(n) { }
1025 static inline bool classof(const HNode *n) {
1031 class ScalarHNode : public HNode {
1034 ScalarHNode(Node *n, StringRef s) : HNode(n), _value(s) { }
1038 static inline bool classof(const HNode *n)
    [all...]
  /external/llvm/lib/Support/
YAMLTraits.cpp 65 void Input::HNode::anchor() {}
144 HNode *Value = MN->Mapping[Key].get();
158 CurrentNode = reinterpret_cast<HNode *>(saveInfo);
190 // Any other type of HNode is an error.
210 CurrentNode = reinterpret_cast<HNode *>(SaveInfo);
227 CurrentNode = reinterpret_cast<HNode *>(SaveInfo);
319 void Input::setError(HNode *hnode, const Twine &message) {
320 assert(hnode && "HNode must not be NULL")
    [all...]

Completed in 60 milliseconds