OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:JSObjectsCluster
(Results
1 - 3
of
3
) sorted by null
/external/v8/src/
heap-profiler.h
108
//
JSObjectsCluster
describes a group of JS objects that are
110
class
JSObjectsCluster
BASE_EMBEDDED {
120
JSObjectsCluster
() : constructor_(NULL), instance_(NULL) {}
121
explicit
JSObjectsCluster
(String* constructor)
123
explicit
JSObjectsCluster
(SpecialCase special)
125
JSObjectsCluster
(String* constructor, Object* instance)
128
static int CompareConstructors(const
JSObjectsCluster
& a,
129
const
JSObjectsCluster
& b) {
134
static int Compare(const
JSObjectsCluster
& a, const
JSObjectsCluster
& b)
[
all
...]
heap-profiler.cc
47
static
JSObjectsCluster
Clusterize(HeapObject* obj) {
53
const
JSObjectsCluster
& cluster) {
58
static
JSObjectsCluster
Clusterize(HeapObject* obj, bool fine_grain);
65
const
JSObjectsCluster
& cluster, int size);
69
JSObjectsCluster
Clusterizer::Clusterize(HeapObject* obj, bool fine_grain) {
77
return
JSObjectsCluster
(constructor, obj);
79
return
JSObjectsCluster
(constructor);
82
return
JSObjectsCluster
(HEAP->String_symbol());
84
return
JSObjectsCluster
(
JSObjectsCluster
::GLOBAL_PROPERTY)
[
all
...]
/external/v8/test/cctest/
test-heap-profiler.cc
17
using i::
JSObjectsCluster
;
33
void Call(const
JSObjectsCluster
& cluster,
72
static
JSObjectsCluster
AddHeapObjectToTree(JSObjectsRetainerTree* tree,
75
JSObjectsCluster
* ref1 = NULL,
76
JSObjectsCluster
* ref2 = NULL,
77
JSObjectsCluster
* ref3 = NULL) {
78
JSObjectsCluster
o(constructor, reinterpret_cast<i::Object*>(instance));
92
JSObjectsCluster
* self_ref) {
103
const
JSObjectsCluster
& expected,
105
const
JSObjectsCluster
& value)
[
all
...]
Completed in 149 milliseconds