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

  /external/llvm/unittests/IR/
LeakDetectorTest.cpp 10 #include "llvm/IR/LeakDetector.h"
19 TEST(LeakDetector, Death1) {
20 LeakDetector::addGarbageObject((void*) 1);
21 LeakDetector::addGarbageObject((void*) 2);
23 EXPECT_DEATH(LeakDetector::addGarbageObject((void*) 1),
25 EXPECT_DEATH(LeakDetector::addGarbageObject((void*) 2),
  /external/chromium_org/content/shell/renderer/
leak_detector.h 20 // LeakDetector counts DOM objects and compare them between two pages.
21 class LeakDetector : public blink::WebLeakDetectorClient {
23 explicit LeakDetector(WebKitTestRunner* test_runner);
24 virtual ~LeakDetector();
41 DISALLOW_COPY_AND_ASSIGN(LeakDetector);
leak_detector.cc 23 // tests actually and initialize LeakDetector by the got values.
30 LeakDetector::LeakDetector(WebKitTestRunner* test_runner)
41 LeakDetector::~LeakDetector() {
44 void LeakDetector::TryLeakDetection(blink::WebLocalFrame* frame) {
48 void LeakDetector::onLeakDetectionComplete(
webkit_test_runner.h 33 class LeakDetector;
158 scoped_ptr<LeakDetector> leak_detector_;
webkit_test_runner.cc 189 leak_detector_(new LeakDetector(this)) {
  /external/llvm/lib/IR/
LeakDetector.cpp 1 //===-- LeakDetector.cpp - Implement LeakDetector interface ---------------===//
10 // This file implements the LeakDetector class.
14 #include "llvm/IR/LeakDetector.h"
32 void LeakDetector::addGarbageObjectImpl(void *Object) {
37 void LeakDetector::addGarbageObjectImpl(const Value *Object) {
42 void LeakDetector::removeGarbageObjectImpl(void *Object) {
47 void LeakDetector::removeGarbageObjectImpl(const Value *Object) {
52 void LeakDetector::checkForGarbageImpl(LLVMContext &Context,
Globals.cpp 21 #include "llvm/IR/LeakDetector.h"
147 LeakDetector::addGarbageObject(this);
167 LeakDetector::addGarbageObject(this);
177 LeakDetector::addGarbageObject(this);
180 LeakDetector::removeGarbageObject(this);
245 LeakDetector::addGarbageObject(this);
283 LeakDetector::addGarbageObject(this);
286 LeakDetector::removeGarbageObject(this);
Android.mk 32 LeakDetector.cpp \
BasicBlock.cpp 22 #include "llvm/IR/LeakDetector.h"
51 LeakDetector::addGarbageObject(this);
91 LeakDetector::addGarbageObject(this);
97 LeakDetector::removeGarbageObject(this);
Instruction.cpp 18 #include "llvm/IR/LeakDetector.h"
28 LeakDetector::addGarbageObject(this);
46 LeakDetector::addGarbageObject(this);
64 if (!P) LeakDetector::addGarbageObject(this);
66 if (P) LeakDetector::removeGarbageObject(this);
Function.cpp 26 #include "llvm/IR/LeakDetector.h"
50 LeakDetector::addGarbageObject(this);
59 LeakDetector::addGarbageObject(this);
62 LeakDetector::removeGarbageObject(this);
231 LeakDetector::addGarbageObject(this);
280 LeakDetector::addGarbageObject(this);
283 LeakDetector::removeGarbageObject(this);
Metadata.cpp 25 #include "llvm/IR/LeakDetector.h"
289 LeakDetector::addGarbageObject(N);
303 LeakDetector::removeGarbageObject(N);
Value.cpp 25 #include "llvm/IR/LeakDetector.h"
87 LeakDetector::removeGarbageObject(this);
  /external/llvm/include/llvm/IR/
LeakDetector.h 1 //===- LeakDetector.h - Provide leak detection ------------------*- C++ -*-===//
32 struct LeakDetector {
  /external/llvm/lib/CodeGen/
MachineBasicBlock.cpp 27 #include "llvm/IR/LeakDetector.h"
47 LeakDetector::removeGarbageObject(this);
89 LeakDetector::removeGarbageObject(N);
95 LeakDetector::addGarbageObject(N);
111 LeakDetector::removeGarbageObject(N);
126 LeakDetector::addGarbageObject(N);
    [all...]

Completed in 380 milliseconds