Home
last modified time | relevance | path

Searched refs:IntWrapper (Results 1 – 17 of 17) sorted by relevance

/external/clang/test/Analysis/
Ddtor.cpp129 struct IntWrapper { struct
130 IntWrapper() : x(0) {} in IntWrapper() argument
131 ~IntWrapper();
140 IntWrapper arr[2]; in testArrayInvalidation() argument
312 IntWrapper arr[2][2]; in testArrayInvalidation()
333 struct IntWrapper { struct
335 IntWrapper(int y) : x(y) {} in IntWrapper() function
336 IntWrapper() { in IntWrapper() function
342 struct DerivedWrapper : public IntWrapper {
343 DerivedWrapper(int y) : IntWrapper(y) {} in DerivedWrapper()
Dinline.cpp313 class IntWrapper { class
317 IntWrapper(int input) : value(input) { in IntWrapper() function in OperatorNew::IntWrapper
326 IntWrapper *obj = new IntWrapper(42); in test()
333 IntWrapper *obj = static_cast<IntWrapper *>(malloc(sizeof(IntWrapper))); in testPlacement()
334 IntWrapper *alias = new (obj) IntWrapper(42); in testPlacement()
Dreinterpret-cast.cpp6 struct IntWrapper { struct
10 struct Child : public IntWrapper { argument
51 struct IntWrapperSubclass : public IntWrapper {};
54 IntWrapper w;
Dproperties.mm7 @interface IntWrapper interface
11 @implementation IntWrapper implementation
15 void testReferenceConsistency(IntWrapper *w) {
25 void testReferenceAssignment(IntWrapper *w) {
Dglobal_region_invalidation.mm24 struct IntWrapper { struct
27 extern struct IntWrapper globalStruct; argument
Dctor.mm26 struct IntWrapper {
31 IntWrapper a;
34 IntWrapper b(a);
365 IntWrapper values[3];
390 IntWrapper values[2][3];
Dproperties.m548 @interface IntWrapper interface
552 @implementation IntWrapper implementation
556 void testConsistencyInt(IntWrapper *w) {
566 void testConsistencyInt2(IntWrapper *w) {
Dretain-release.mm375 struct IntWrapper { struct
379 int operator>> (const IntWrapper &W, int (*f)(int)) { argument
384 IntWrapper val = { 42 }; argument
/external/clang/test/Analysis/inlining/
Deager-reclamation-path-notes.cpp7 } IntWrapper; typedef
9 IntWrapper *getNullWrapper() { in getNullWrapper()
24 IntWrapper *ptr = getNullWrapper(); in memberCallBaseDisappears()
/external/google-breakpad/src/testing/gtest/test/
Dgtest-param-test_test.cc303 class IntWrapper { class
305 explicit IntWrapper(int a_value) : value_(a_value) {} in IntWrapper() function in IntWrapper
306 IntWrapper(const IntWrapper& other) : value_(other.value_) {} in IntWrapper() function in IntWrapper
308 IntWrapper operator=(const IntWrapper& other) { in operator =()
313 IntWrapper operator+(int other) const { return IntWrapper(value_ + other); } in operator +()
314 bool operator<(const IntWrapper& other) const { in operator <()
324 const ParamGenerator<IntWrapper> gen = Range(IntWrapper(0), IntWrapper(2)); in TEST()
325 ParamGenerator<IntWrapper>::iterator it = gen.begin(); in TEST()
/external/skia/tests/
DGrTRecorderTest.cpp19 class IntWrapper { class
21 IntWrapper() {} in IntWrapper() function in IntWrapper
22 IntWrapper(int value) : fValue(value) {} in IntWrapper() function in IntWrapper
35 GrTRecorder<IntWrapper, int> recorder(j); in test_empty_back_and_pop()
42 IntWrapper, (i))); in test_empty_back_and_pop()
46 IntWrapper, (i), in test_empty_back_and_pop()
/external/skqp/tests/
DGrTRecorderTest.cpp19 class IntWrapper { class
21 IntWrapper() {} in IntWrapper() function in IntWrapper
22 IntWrapper(int value) : fValue(value) {} in IntWrapper() function in IntWrapper
35 GrTRecorder<IntWrapper, int> recorder(j); in test_empty_back_and_pop()
42 IntWrapper, (i))); in test_empty_back_and_pop()
46 IntWrapper, (i), in test_empty_back_and_pop()
/external/googletest/googletest/test/
Dgoogletest-param-test-test.cc250 class IntWrapper { class
252 explicit IntWrapper(int a_value) : value_(a_value) {} in IntWrapper() function in IntWrapper
253 IntWrapper(const IntWrapper& other) : value_(other.value_) {} in IntWrapper() function in IntWrapper
255 IntWrapper operator=(const IntWrapper& other) { in operator =()
260 IntWrapper operator+(int other) const { return IntWrapper(value_ + other); } in operator +()
261 bool operator<(const IntWrapper& other) const { in operator <()
271 const ParamGenerator<IntWrapper> gen = Range(IntWrapper(0), IntWrapper(2)); in TEST()
272 ParamGenerator<IntWrapper>::iterator it = gen.begin(); in TEST()
/external/libbrillo/brillo/
Dany_internal_impl.h66 struct IntWrapper { struct
73 IntWrapper(int /* dummy */) {} // do nothing, NOLINT in IntWrapper() argument
81 static std::false_type TriggerFunction(IntWrapper dummy);
/external/clang/test/SemaCXX/
Dconstructor-initializer.cpp151 int IntWrapper(int &i) { return 0; }; in IntWrapper() function
158 …: A(IntWrapper(A)), // Due to a conservative implementation, we do not report warnings inside fun… in InitializeUsingSelfExceptions()
Dtype-traits.cpp1722 struct IntWrapper struct
1725 IntWrapper(int _value) : value(_value) {} in IntWrapper() argument
1735 FloatWrapper(const IntWrapper& obj) in FloatWrapper() argument
1740 operator IntWrapper() const { in operator IntWrapper()
1741 return IntWrapper(static_cast<int>(value)); in operator IntWrapper()
1747 int t01[T(__is_convertible(IntWrapper, IntWrapper))]; in is_convertible()
1748 int t02[T(__is_convertible(IntWrapper, const IntWrapper))]; in is_convertible()
1749 int t03[T(__is_convertible(IntWrapper, int))]; in is_convertible()
1750 int t04[T(__is_convertible(int, IntWrapper))]; in is_convertible()
1751 int t05[T(__is_convertible(IntWrapper, FloatWrapper))]; in is_convertible()
[all …]
/external/clang/test/Misc/
Ddiag-template-diffing.cpp810 struct IntWrapper { struct
818 virtual X<IntWrapper, 1> foo();
823 virtual X<IntWrapper, 2> foo();