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

  /external/llvm/lib/Support/
YAMLTraits.cpp 63 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")
    [all...]
  /external/llvm/include/llvm/Support/
YAMLTraits.h 910 class HNode {
913 HNode(Node *n) : _node(n) { }
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 *n)
    [all...]

Completed in 109 milliseconds