OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SkTLList
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/skia/src/core/
SkTLList.h
14
template <typename T> class
SkTLList
;
16
inline void* operator new(size_t,
SkTLList
<T>* list,
17
typename
SkTLList
<T>::Placement placement,
18
const typename
SkTLList
<T>::Iter& location);
27
where list is a
SkTLList
<type_name>*, location is an iterator, and args is the paren-surrounded
31
class
SkTLList
: public SkNoncopyable {
47
SkTLList
(int allocCnt = 1) : fCount(0), fAllocCnt(allocCnt) {
52
~
SkTLList
() {
150
bool operator== (const
SkTLList
& list) const {
167
bool operator!= (const
SkTLList
& list) const { return !(*this == list);
[
all
...]
/external/skia/src/core/
SkTLList.h
14
template <typename T> class
SkTLList
;
16
inline void* operator new(size_t,
SkTLList
<T>* list,
17
typename
SkTLList
<T>::Placement placement,
18
const typename
SkTLList
<T>::Iter& location);
27
where list is a
SkTLList
<type_name>*, location is an iterator, and args is the paren-surrounded
31
class
SkTLList
: public SkNoncopyable {
47
SkTLList
(int allocCnt = 1) : fCount(0), fAllocCnt(allocCnt) {
52
~
SkTLList
() {
150
bool operator== (const
SkTLList
& list) const {
167
bool operator!= (const
SkTLList
& list) const { return !(*this == list);
[
all
...]
Completed in 641 milliseconds