OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RefVector
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/wtf/
RefVector.h
15
class
RefVector
: public RefCounted<
RefVector
<T> > {
17
static PassRefPtr<
RefVector
> create() { return adoptRef(new
RefVector
<T>); }
18
PassRefPtr<
RefVector
> copy() { return adoptRef(new
RefVector
<T>(*this)); }
25
bool operator==(const
RefVector
& o) const { return m_vector == o.m_vector; }
26
bool operator!=(const
RefVector
& o) const { return m_vector != o.m_vector; }
34
RefVector
() { }
35
RefVector
(const RefVector& o) : m_vector(o.m_vector) {
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleRareInheritedData.h
34
#include "wtf/
RefVector
.h"
45
typedef
RefVector
<AppliedTextDecoration> AppliedTextDecorationList;
46
typedef
RefVector
<CursorData> CursorList;
Completed in 121 milliseconds