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
49
//
JSObjectsCluster
describes a group of JS objects that are
51
class
JSObjectsCluster
BASE_EMBEDDED {
61
JSObjectsCluster
() : constructor_(NULL), instance_(NULL) {}
62
explicit
JSObjectsCluster
(String* constructor)
64
explicit
JSObjectsCluster
(SpecialCase special)
66
JSObjectsCluster
(String* constructor, Object* instance)
69
static int CompareConstructors(const
JSObjectsCluster
& a,
70
const
JSObjectsCluster
& b) {
75
static int Compare(const
JSObjectsCluster
& a, const
JSObjectsCluster
& b)
[
all
...]
heap-profiler.cc
46
static
JSObjectsCluster
Clusterize(HeapObject* obj) {
52
const
JSObjectsCluster
& cluster) {
57
static
JSObjectsCluster
Clusterize(HeapObject* obj, bool fine_grain);
64
const
JSObjectsCluster
& cluster, int size);
68
JSObjectsCluster
Clusterizer::Clusterize(HeapObject* obj, bool fine_grain) {
75
return
JSObjectsCluster
(constructor, obj);
77
return
JSObjectsCluster
(constructor);
80
return
JSObjectsCluster
(Heap::String_symbol());
82
return
JSObjectsCluster
(
JSObjectsCluster
::GLOBAL_PROPERTY)
[
all
...]
/external/v8/test/cctest/
test-heap-profiler.cc
14
using i::
JSObjectsCluster
;
35
void Call(const
JSObjectsCluster
& cluster,
75
static
JSObjectsCluster
AddHeapObjectToTree(JSObjectsRetainerTree* tree,
78
JSObjectsCluster
* ref1 = NULL,
79
JSObjectsCluster
* ref2 = NULL,
80
JSObjectsCluster
* ref3 = NULL) {
81
JSObjectsCluster
o(constructor, reinterpret_cast<i::Object*>(instance));
95
JSObjectsCluster
* self_ref) {
106
const
JSObjectsCluster
& expected,
108
const
JSObjectsCluster
& value)
[
all
...]
Completed in 4262 milliseconds