OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HNode
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/Support/
YAMLTraits.cpp
105
HNode
*Value = MN->Mapping[Key];
119
CurrentNode = reinterpret_cast<
HNode
*>(saveInfo);
159
CurrentNode = reinterpret_cast<
HNode
*>(SaveInfo);
181
CurrentNode = reinterpret_cast<
HNode
*>(SaveInfo);
225
for (std::vector<
HNode
*>::iterator i = SQ->Entries.begin(),
265
void Input::setError(
HNode
*
hnode
, const Twine &message) {
266
this->setError(
hnode
->_node, message);
274
Input::
HNode
*Input::createHNodes(Node *N) {
290
HNode
*Entry = this->createHNodes(i)
[
all
...]
/external/llvm/include/llvm/Support/
YAMLTraits.h
719
class
HNode
{
721
HNode
(Node *n) : _node(n) { }
722
virtual ~
HNode
() { }
723
static inline bool classof(const
HNode
*) { return true; }
728
class EmptyHNode : public
HNode
{
730
EmptyHNode(Node *n) :
HNode
(n) { }
732
static inline bool classof(const
HNode
*n) {
738
class ScalarHNode : public
HNode
{
740
ScalarHNode(Node *n, StringRef s) :
HNode
(n), _value(s) { }
745
static inline bool classof(const
HNode
*n)
[
all
...]
Completed in 37 milliseconds