OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ResourcePtrBase
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/fetch/
ResourcePtr.h
33
class
ResourcePtrBase
{
35
~
ResourcePtrBase
();
42
typedef Resource*
ResourcePtrBase
::*UnspecifiedBoolType;
43
operator UnspecifiedBoolType() const { return m_resource ? &
ResourcePtrBase
::m_resource : 0; }
46
ResourcePtrBase
() : m_resource(0) { }
47
ResourcePtrBase
(Resource*);
48
ResourcePtrBase
(const
ResourcePtrBase
&);
53
ResourcePtrBase
& operator=(const
ResourcePtrBase
&) { return *this;
[
all
...]
ResourcePtr.cpp
31
void
ResourcePtrBase
::setResource(Resource* resource)
Resource.h
46
class
ResourcePtrBase
;
231
void registerHandle(
ResourcePtrBase
* h);
232
void unregisterHandle(
ResourcePtrBase
* h);
406
HashSet<
ResourcePtrBase
*> m_handlesToRevalidate;
Resource.cpp
698
HashSet<
ResourcePtrBase
*>::iterator end = m_handlesToRevalidate.end();
699
for (HashSet<
ResourcePtrBase
*>::iterator it = m_handlesToRevalidate.begin(); it != end; ++it) {
700
ResourcePtrBase
* handle = *it;
785
void Resource::registerHandle(
ResourcePtrBase
* h)
793
void Resource::unregisterHandle(
ResourcePtrBase
* h)
[
all
...]
Completed in 259 milliseconds