HomeSort by relevance Sort by last modified time
    Searched defs:ListNode (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/tools/gn/
parse_tree.cc 39 const ListNode* ParseNode::AsList() const { return NULL; }
338 // ListNode -------------------------------------------------------------------
340 ListNode::ListNode() {
343 ListNode::~ListNode() {
347 const ListNode* ListNode::AsList() const {
351 Value ListNode::Execute(Scope* scope, Err* err) const {
371 LocationRange ListNode::GetRange() const
    [all...]
parse_tree.h 23 class ListNode;
42 virtual const ListNode* AsList() const;
238 const ListNode* args() const { return args_.get(); }
239 void set_args(scoped_ptr<ListNode> a) { args_ = a.Pass(); }
246 scoped_ptr<ListNode> args_;
277 // ListNode --------------------------------------------------------------------
279 class ListNode : public ParseNode {
281 ListNode();
282 virtual ~ListNode();
284 virtual const ListNode* AsList() const OVERRIDE
    [all...]
  /external/clang/test/ASTMerge/Inputs/
struct1.c 48 struct ListNode {
50 struct ListNode *Next;
struct2.c 45 struct ListNode {
47 struct ListNode *Next;
  /external/chromium/sdch/open-vcdiff/src/gtest/src/
gtest-internal-inl.h 153 // ListNode is a node in a singly-linked list. It consists of an
157 class ListNode {
163 ListNode * next_;
165 // The c'tor is private s.t. only in the ListNode class and in its
166 // friend class List we can create a ListNode object.
171 // ListNode does NOT have a default constructor. Always use this
172 // constructor (with parameter) to create a ListNode object.
173 explicit ListNode(const E & element) : element_(element), next_(NULL) {}
175 // We disallow copying ListNode
176 GTEST_DISALLOW_COPY_AND_ASSIGN(ListNode);
    [all...]

Completed in 141 milliseconds