HomeSort by relevance Sort by last modified time
    Searched defs:ListNode (Results 1 - 3 of 3) 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/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 38 milliseconds