OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ListNode
(Results
1 - 2
of
2
) sorted by null
/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
...]
/external/gtest/src/
gtest-internal-inl.h
215
//
ListNode
is a node in a singly-linked list. It consists of an
219
class
ListNode
{
225
ListNode
* next_;
227
// The c'tor is private s.t. only in the
ListNode
class and in its
228
// friend class List we can create a
ListNode
object.
233
//
ListNode
does NOT have a default constructor. Always use this
234
// constructor (with parameter) to create a
ListNode
object.
235
explicit
ListNode
(const E & element) : element_(element), next_(NULL) {}
237
// We disallow copying
ListNode
238
GTEST_DISALLOW_COPY_AND_ASSIGN_(
ListNode
);
[
all
...]
Completed in 1220 milliseconds