Searched refs:ListNode (Results 1 - 17 of 17) sorted by relevance

/external/cmockery/cmockery_0_1_2/src/
H A Dcmockery.c51 typedef struct ListNode { struct
54 struct ListNode *next;
55 struct ListNode *prev;
56 } ListNode; typedef in typeref:struct: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_ad
[all...]
/external/clang/test/ASTMerge/Inputs/
H A Dstruct1.c48 struct ListNode { struct
50 struct ListNode *Next;
H A Dstruct2.c45 struct ListNode { struct
47 struct ListNode *Next;
/external/chromium_org/tools/gn/
H A Dfunctions_unittest.cc19 ListNode args_list_identifier_undefined;
35 ListNode args_list_identifier_defined;
49 ListNode args_list_accessor_defined;
H A Doperators_unittest.cc28 scoped_ptr<ListNode> ListWithLiteral(const Token& token) {
29 scoped_ptr<ListNode> list(new ListNode);
81 ListNode list;
118 scoped_ptr<ListNode> outer_list(new ListNode);
H A Dparse_tree.cc47 const ListNode* ParseNode::AsList() const { return NULL; }
445 // ListNode -------------------------------------------------------------------
447 ListNode::ListNode() { function in class:ListNode
450 ListNode::~ListNode() {
454 const ListNode* ListNode::AsList() const {
458 Value ListNode::Execute(Scope* scope, Err* err) const {
480 LocationRange ListNode
[all...]
H A Dparse_tree.h23 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 { class in inherits:ParseNode
358 ListNode();
359 virtual ~ListNode();
361 virtual const ListNode* AsLis
[all...]
H A Dparser.cc286 scoped_ptr<ListNode> list(new ListNode);
381 scoped_ptr<ListNode> Parser::ParseList(Token start_token,
384 scoped_ptr<ListNode> list(new ListNode);
393 return scoped_ptr<ListNode>();
403 return scoped_ptr<ListNode>();
407 return scoped_ptr<ListNode>();
419 return scoped_ptr<ListNode>();
538 } else if (const ListNode* lis
[all...]
H A Dfunction_foreach.cc51 const ListNode* args_list,
H A Dfunctions.h18 class ListNode;
33 const ListNode* args_list,
113 const ListNode* args_list,
138 const ListNode* args_list,
360 const ListNode* args_list,
H A Dparser.h69 scoped_ptr<ListNode> ParseList(Token start_token,
H A Dfunctions.cc344 const ListNode* args_list,
722 const ListNode* args_list,
H A Dcommand_format.cc256 } else if (const ListNode* list = root->AsList()) {
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DParsing.py909 return ExprNodes.ListNode(pos, args = [])
926 return ExprNodes.ListNode(pos, args = exprs)
1297 name_list = ExprNodes.ListNode(pos, args = [
1391 import_list = ExprNodes.ListNode(
H A DOptimize.py1051 ExprNodes.ListNode,
1608 elif isinstance(pos_args[0], ExprNodes.ListNode):
1614 return ExprNodes.ListNode(node.pos, args=[], constant_result=[])
3596 return ExprNodes.ListNode(
3617 if isinstance(sequence, ExprNodes.ListNode):
H A DParseTreeTransforms.py554 target, ExprNodes.ListNode(pos=pos, args=starred_rhs)])
2586 return ExprNodes.ListNode(pos, args=items)
H A DExprNodes.py1934 if (self.entry.type.is_ptr and isinstance(rhs, ListNode)
2166 # name_list ListNode or None list of names to be imported
6266 class ListNode(SequenceNode): class in inherits:SequenceNode
9781 if isinstance(self.operand2, (ListNode, TupleNode, SetNode)):
9785 elif isinstance(self.operand2, ListNode) and not self.cascade:

Completed in 781 milliseconds