OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RetainedObjectInfo
(Results
1 - 16
of
16
) sorted by null
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
RetainedObjectInfo.h
38
class
RetainedObjectInfo
: public v8::
RetainedObjectInfo
{
RetainedDOMInfo.h
34
#include "bindings/v8/
RetainedObjectInfo
.h"
41
// Implements v8::
RetainedObjectInfo
.
42
class RetainedDOMInfo FINAL : public
RetainedObjectInfo
{
47
virtual bool IsEquivalent(v8::
RetainedObjectInfo
* other) OVERRIDE;
RetainedDOMInfo.cpp
54
bool RetainedDOMInfo::IsEquivalent(v8::
RetainedObjectInfo
* other)
61
return static_cast<WebCore::
RetainedObjectInfo
*>(other)->GetEquivalenceClass() == this->GetEquivalenceClass();
ScriptProfiler.cpp
245
static v8::
RetainedObjectInfo
* retainedDOMInfo(uint16_t classId, v8::Handle<v8::Value> wrapper)
/external/chromium_org/v8/include/
v8-profiler.h
393
* Callback function invoked for obtaining
RetainedObjectInfo
for
398
typedef
RetainedObjectInfo
* (*WrapperInfoCallback)
509
* Sets a
RetainedObjectInfo
for an object group (see V8::SetObjectGroupId).
511
void SetRetainedObjectInfo(UniqueId id,
RetainedObjectInfo
* info);
526
*
RetainedObjectInfo
instance describing the group. To collect
541
* V8 takes ownership of
RetainedObjectInfo
instances passed to it and
545
class V8_EXPORT
RetainedObjectInfo
{ // NOLINT
551
virtual bool IsEquivalent(
RetainedObjectInfo
* other) = 0;
586
RetainedObjectInfo
() {}
587
virtual ~
RetainedObjectInfo
() {}
[
all
...]
v8.h
545
* Assigns a wrapper class ID to the handle. See
RetainedObjectInfo
interface
[
all
...]
/external/chromium_org/v8/src/
heap-profiler.h
57
v8::
RetainedObjectInfo
* ExecuteWrapperClassCallback(uint16_t class_id,
59
void SetRetainedObjectInfo(UniqueId id,
RetainedObjectInfo
* info);
global-handles.h
46
v8::
RetainedObjectInfo
* info;
85
ObjectGroupRetainerInfo(UniqueId id,
RetainedObjectInfo
* info)
97
RetainedObjectInfo
* info;
208
v8::
RetainedObjectInfo
* info);
215
// Set
RetainedObjectInfo
for an object group. Should not be called more than
218
void SetRetainedObjectInfo(UniqueId id,
RetainedObjectInfo
* info);
heap-snapshot-generator.h
225
SnapshotObjectId GenerateId(v8::
RetainedObjectInfo
* info);
494
List<HeapObject*>* GetListMaybeDisposeInfo(v8::
RetainedObjectInfo
* info);
495
void SetNativeRootReference(v8::
RetainedObjectInfo
* info);
498
v8::
RetainedObjectInfo
* info);
501
static uint32_t InfoHash(v8::
RetainedObjectInfo
* info) {
507
(reinterpret_cast<v8::
RetainedObjectInfo
*>(key1))->IsEquivalent(
508
reinterpret_cast<v8::
RetainedObjectInfo
*>(key2));
523
//
RetainedObjectInfo
* -> List<HeapObject*>*
heap-profiler.cc
57
v8::
RetainedObjectInfo
* HeapProfiler::ExecuteWrapperClassCallback(
169
RetainedObjectInfo
* info) {
heap-snapshot-generator.cc
689
SnapshotObjectId HeapObjectsMap::GenerateId(v8::
RetainedObjectInfo
* info) {
[
all
...]
global-handles.cc
818
v8::
RetainedObjectInfo
* info) {
843
RetainedObjectInfo
* info) {
969
// Find a
RetainedObjectInfo
for the group.
970
RetainedObjectInfo
* info = NULL;
api.cc
[
all
...]
/external/chromium_org/v8/test/cctest/
test-global-handles.cc
52
class TestRetainedObjectInfo : public v8::
RetainedObjectInfo
{
63
virtual bool IsEquivalent(v8::
RetainedObjectInfo
* other) {
test-mark-compact.cc
357
class TestRetainedObjectInfo : public v8::
RetainedObjectInfo
{
368
virtual bool IsEquivalent(v8::
RetainedObjectInfo
* other) {
test-heap-profiler.cc
[
all
...]
Completed in 409 milliseconds