Searched defs:IntWrapper (Results 1 - 13 of 13) sorted by relevance

/external/clang/test/Analysis/inlining/
H A Deager-reclamation-path-notes.cpp7 } IntWrapper; typedef in typeref:struct:__anon1656
9 IntWrapper *getNullWrapper() {
24 IntWrapper *ptr = getNullWrapper();
/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 Dinline.cpp313 class IntWrapper { class in namespace:OperatorNew
317 IntWrapper(int input) : value(input) { function in class:OperatorNew::IntWrapper
326 IntWrapper *obj = new IntWrapper(42);
333 IntWrapper *obj = static_cast<IntWrapper *>(malloc(sizeof(IntWrapper)));
334 IntWrapper *alias = new (obj) IntWrapper(42);
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...]
/external/libbrillo/brillo/
H A Dany_internal_impl.h66 struct IntWrapper { struct in struct:brillo::internal_details::IsEqualityComparableHelper
69 // IntWrapper when both overloads are provided.
72 IntWrapper(int /* dummy */) {} // do nothing function in struct:brillo::internal_details::IsEqualityComparableHelper::IntWrapper
77 // takes an argument of type IntWrapper (which is implicitly convertible from
80 static std::false_type TriggerFunction(IntWrapper dummy);
/external/skia/tests/
H A DGrTRecorderTest.cpp21 class IntWrapper { class
23 IntWrapper() {} function in class:IntWrapper
24 IntWrapper(int value) : fValue(value) {} function in class:IntWrapper
37 GrTRecorder<IntWrapper, int> recorder(j);
44 IntWrapper, (i)));
48 IntWrapper, (i),
/external/clang/test/SemaCXX/
H A Dconstructor-initializer.cpp151 int IntWrapper(int &i) { return 0; }; function
158 : 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.cpp1719 struct IntWrapper struct
1722 IntWrapper(int _value) : value(_value) {} function in struct:IntWrapper
1732 FloatWrapper(const IntWrapper& obj)
1737 operator IntWrapper() const {
1738 return IntWrapper(static_cast<int>(value));
1744 int t01[T(__is_convertible(IntWrapper, IntWrapper))];
1745 int t02[T(__is_convertible(IntWrapper, const IntWrapper))];
1746 int t03[T(__is_convertible(IntWrapper, in
[all...]
/external/google-breakpad/src/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.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/vulkan-validation-layers/tests/gtest-1.7.0/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/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 449 milliseconds