Searched refs:IntWrapper (Results 1 - 11 of 11) sorted by relevance

/external/clang/test/Analysis/inlining/
H A Deager-reclamation-path-notes.cpp7 } IntWrapper; typedef in typeref:struct:__anon18332
9 IntWrapper *getNullWrapper() {
24 IntWrapper *ptr = getNullWrapper();
/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DHeapTest.cpp48 class IntWrapper : public GarbageCollectedFinalized<IntWrapper> { class in namespace:blink
50 static IntWrapper* create(int x)
52 return new IntWrapper(x);
55 virtual ~IntWrapper()
65 bool operator==(const IntWrapper& other) const { return other.value() == value(); }
69 IntWrapper(int x) : m_x(x) { } function in class:blink::IntWrapper
72 IntWrapper();
76 USED_FROM_MULTIPLE_THREADS(IntWrapper);
109 typedef std::pair<Member<IntWrapper>, WeakMembe
[all...]
/external/clang/test/Analysis/
H A Dreinterpret-cast.cpp6 struct IntWrapper { struct
10 struct Child : public IntWrapper {
51 struct IntWrapperSubclass : public IntWrapper {};
54 IntWrapper w;
H A Ddtor.cpp129 struct IntWrapper { struct
130 IntWrapper() : x(0) {} function in struct:IntWrapper
131 ~IntWrapper();
140 IntWrapper arr[2];
312 IntWrapper arr[2][2];
333 struct IntWrapper { struct in namespace:LifetimeExtension
335 IntWrapper(int y) : x(y) {} function in struct:LifetimeExtension::IntWrapper
336 IntWrapper() { function in struct:LifetimeExtension::IntWrapper
342 struct DerivedWrapper : public IntWrapper {
343 DerivedWrapper(int y) : IntWrapper(
[all...]
H A Dinline.cpp306 class IntWrapper { class in namespace:OperatorNew
310 IntWrapper(int input) : value(input) { function in class:OperatorNew::IntWrapper
319 IntWrapper *obj = new IntWrapper(42);
326 IntWrapper *obj = static_cast<IntWrapper *>(malloc(sizeof(IntWrapper)));
327 IntWrapper *alias = new (obj) IntWrapper(42);
/external/chromium_org/testing/gtest/test/
H A Dgtest-param-test_test.cc303 class IntWrapper { class
305 explicit IntWrapper(int a_value) : value_(a_value) {} function in class:IntWrapper
306 IntWrapper(const IntWrapper& other) : value_(other.value_) {} function in class:IntWrapper
308 IntWrapper operator=(const IntWrapper& other) {
313 IntWrapper operator+(int other) const { return IntWrapper(value_ + other); }
314 bool operator<(const IntWrapper& other) const {
324 const ParamGenerator<IntWrapper> ge
[all...]
/external/gtest/test/
H A Dgtest-param-test_test.cc303 class IntWrapper { class
305 explicit IntWrapper(int a_value) : value_(a_value) {} function in class:IntWrapper
306 IntWrapper(const IntWrapper& other) : value_(other.value_) {} function in class:IntWrapper
308 IntWrapper operator=(const IntWrapper& other) {
313 IntWrapper operator+(int other) const { return IntWrapper(value_ + other); }
314 bool operator<(const IntWrapper& other) const {
324 const ParamGenerator<IntWrapper> ge
[all...]
/external/protobuf/gtest/test/
H A Dgtest-param-test_test.cc244 class IntWrapper { class
246 explicit IntWrapper(int value) : value_(value) {} function in class:IntWrapper
247 IntWrapper(const IntWrapper& other) : value_(other.value_) {} function in class:IntWrapper
249 IntWrapper operator=(const IntWrapper& other) {
254 IntWrapper operator+(int other) const { return IntWrapper(value_ + other); }
255 bool operator<(const IntWrapper& other) const {
265 const ParamGenerator<IntWrapper> ge
[all...]
/external/clang/test/SemaCXX/
H A Dconstructor-initializer.cpp146 int IntWrapper(int &i) { return 0; }; function
153 : A(IntWrapper(A)), // Due to a conservative implementation, we do not report warnings inside function/ctor calls even though it is possible to do so.
H A Dtype-traits.cpp1692 struct IntWrapper struct
1695 IntWrapper(int _value) : value(_value) {} function in struct:IntWrapper
1705 FloatWrapper(const IntWrapper& obj)
1710 operator IntWrapper() const {
1711 return IntWrapper(static_cast<int>(value));
1717 int t01[T(__is_convertible(IntWrapper, IntWrapper))];
1718 int t02[T(__is_convertible(IntWrapper, const IntWrapper))];
1719 int t03[T(__is_convertible(IntWrapper, in
[all...]
/external/clang/test/Misc/
H A Ddiag-template-diffing.cpp816 struct IntWrapper { struct in namespace:rdar12456626
824 virtual X<IntWrapper, 1> foo();
829 virtual X<IntWrapper, 2> foo();

Completed in 445 milliseconds