HomeSort by relevance Sort by last modified time
    Searched refs:CpuProfileNode (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/v8/include/
v8-profiler.h 21 * CpuProfileNode represents a node in a call graph.
23 class V8_EXPORT CpuProfileNode {
66 const CpuProfileNode* GetChild(int index) const;
83 const CpuProfileNode* GetTopDownRoot() const;
95 const CpuProfileNode* GetSample(int index) const;
  /external/chromium_org/v8/test/cctest/
test-cpu-profiler.cc 438 static void CheckChildrenNames(const v8::CpuProfileNode* node,
453 static const v8::CpuProfileNode* FindChild(v8::Isolate* isolate,
454 const v8::CpuProfileNode* node,
459 const v8::CpuProfileNode* child = node->GetChild(i);
466 static const v8::CpuProfileNode* GetChild(v8::Isolate* isolate,
467 const v8::CpuProfileNode* node,
469 const v8::CpuProfileNode* result = FindChild(isolate, node, name);
481 const v8::CpuProfileNode* node,
558 const v8::CpuProfileNode* root = profile->GetTopDownRoot();
568 const v8::CpuProfileNode* startNode
    [all...]
test-profile-generator.cc 615 static const v8::CpuProfileNode* PickChild(const v8::CpuProfileNode* parent,
618 const v8::CpuProfileNode* child = parent->GetChild(i);
649 const v8::CpuProfileNode* current = profile->GetTopDownRoot();
651 const_cast<v8::CpuProfileNode*>(current))->Print(0);
661 CHECK_NE(NULL, const_cast<v8::CpuProfileNode*>(current));
664 CHECK_NE(NULL, const_cast<v8::CpuProfileNode*>(current));
668 CHECK_NE(NULL, const_cast<v8::CpuProfileNode*>(current));
758 const v8::CpuProfileNode* current = profile->GetTopDownRoot();
760 const_cast<v8::CpuProfileNode*>(current))->Print(0)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
ScriptProfile.cpp 67 static PassRefPtr<TypeBuilder::Profiler::CPUProfileNode> buildInspectorObjectFor(const v8::CpuProfileNode* node)
71 RefPtr<TypeBuilder::Array<TypeBuilder::Profiler::CPUProfileNode> > children = TypeBuilder::Array<TypeBuilder::Profiler::CPUProfileNode>::create();
74 const v8::CpuProfileNode* child = node->GetChild(i);
78 RefPtr<TypeBuilder::Profiler::CPUProfileNode> result = TypeBuilder::Profiler::CPUProfileNode::create()
92 PassRefPtr<TypeBuilder::Profiler::CPUProfileNode> ScriptProfile::buildInspectorObjectForHead() const
  /external/chromium_org/v8/src/
profile-generator.h 54 int line_number = v8::CpuProfileNode::kNoLineNumberInfo,
55 int column_number = v8::CpuProfileNode::kNoColumnNumberInfo);
284 int line_number = v8::CpuProfileNode::kNoLineNumberInfo,
285 int column_number = v8::CpuProfileNode::kNoColumnNumberInfo);
api.cc     [all...]

Completed in 2410 milliseconds