/external/clang/test/Analysis/ |
D | dtor.cpp | 129 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()
|
D | inline.cpp | 313 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()
|
D | reinterpret-cast.cpp | 6 struct IntWrapper { struct 10 struct Child : public IntWrapper { argument 51 struct IntWrapperSubclass : public IntWrapper {}; 54 IntWrapper w;
|
D | properties.mm | 7 @interface IntWrapper interface 11 @implementation IntWrapper implementation 15 void testReferenceConsistency(IntWrapper *w) { 25 void testReferenceAssignment(IntWrapper *w) {
|
D | global_region_invalidation.mm | 24 struct IntWrapper { struct 27 extern struct IntWrapper globalStruct; argument
|
D | ctor.mm | 26 struct IntWrapper { 31 IntWrapper a; 34 IntWrapper b(a); 365 IntWrapper values[3]; 390 IntWrapper values[2][3];
|
D | properties.m | 548 @interface IntWrapper interface 552 @implementation IntWrapper implementation 556 void testConsistencyInt(IntWrapper *w) { 566 void testConsistencyInt2(IntWrapper *w) {
|
D | retain-release.mm | 375 struct IntWrapper { struct 379 int operator>> (const IntWrapper &W, int (*f)(int)) { argument 384 IntWrapper val = { 42 }; argument
|
/external/clang/test/Analysis/inlining/ |
D | eager-reclamation-path-notes.cpp | 7 } IntWrapper; typedef 9 IntWrapper *getNullWrapper() { in getNullWrapper() 24 IntWrapper *ptr = getNullWrapper(); in memberCallBaseDisappears()
|
/external/google-breakpad/src/testing/gtest/test/ |
D | gtest-param-test_test.cc | 303 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/ |
D | GrTRecorderTest.cpp | 19 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/ |
D | GrTRecorderTest.cpp | 19 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/ |
D | googletest-param-test-test.cc | 250 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/ |
D | any_internal_impl.h | 66 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/ |
D | constructor-initializer.cpp | 151 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()
|
D | type-traits.cpp | 1722 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/ |
D | diag-template-diffing.cpp | 810 struct IntWrapper { struct 818 virtual X<IntWrapper, 1> foo(); 823 virtual X<IntWrapper, 2> foo();
|