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

  /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_org/tools/gn/
parse_tree.cc 47 const ListNode* ParseNode::AsList() const { return NULL; }
445 // ListNode -------------------------------------------------------------------
447 ListNode::ListNode() {
450 ListNode::~ListNode() {
454 const ListNode* ListNode::AsList() const {
458 Value ListNode::Execute(Scope* scope, Err* err) const {
480 LocationRange ListNode::GetRange() const
    [all...]
parse_tree.h 23 class ListNode;
81 virtual const ListNode* AsList() const;
315 const ListNode* args() const { return args_.get(); }
316 void set_args(scoped_ptr<ListNode> a) { args_ = a.Pass(); }
323 scoped_ptr<ListNode> args_;
354 // ListNode --------------------------------------------------------------------
356 class ListNode : public ParseNode {
358 ListNode();
359 virtual ~ListNode();
361 virtual const ListNode* AsList() const OVERRIDE
    [all...]
  /external/cmockery/cmockery_0_1_2/src/
cmockery.c 51 typedef struct ListNode {
54 struct ListNode *next;
55 struct ListNode *prev;
56 } ListNode;
64 ListNode node; // Node within list of all allocated blocks.
69 const ListNode *check_point; // Check point of the test if there's a
89 ListNode symbol_values_list_head;
117 static ListNode* list_initialize(ListNode * const node);
118 static ListNode* list_add(ListNode * const head, ListNode *new_node)
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Compiler/
ExprNodes.py     [all...]

Completed in 391 milliseconds