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

  /external/clang/test/Analysis/inlining/
eager-reclamation-path-notes.cpp 7 } IntWrapper;
9 IntWrapper *getNullWrapper() {
24 IntWrapper *ptr = getNullWrapper();
  /external/chromium_org/third_party/WebKit/Source/platform/heap/
HeapTest.cpp 48 class IntWrapper : public GarbageCollectedFinalized<IntWrapper> {
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) { }
72 IntWrapper();
76 USED_FROM_MULTIPLE_THREADS(IntWrapper);
109 typedef std::pair<Member<IntWrapper>, WeakMember<IntWrapper> > StrongWeakPair
    [all...]
  /external/clang/test/Analysis/
reinterpret-cast.cpp 6 struct IntWrapper {
10 struct Child : public IntWrapper {
51 struct IntWrapperSubclass : public IntWrapper {};
54 IntWrapper w;
dtor.cpp 129 struct IntWrapper {
130 IntWrapper() : x(0) {}
131 ~IntWrapper();
140 IntWrapper arr[2];
312 IntWrapper arr[2][2];
333 struct IntWrapper {
335 IntWrapper(int y) : x(y) {}
336 IntWrapper() {
342 struct DerivedWrapper : public IntWrapper {
343 DerivedWrapper(int y) : IntWrapper(y) {
    [all...]
inline.cpp 306 class IntWrapper {
310 IntWrapper(int input) : value(input) {
319 IntWrapper *obj = new IntWrapper(42);
326 IntWrapper *obj = static_cast<IntWrapper *>(malloc(sizeof(IntWrapper)));
327 IntWrapper *alias = new (obj) IntWrapper(42);
  /libcore/benchmarks/src/benchmarks/
DeepArrayOpsBenchmark.java 39 array[i] = new IntWrapper(i);
40 array2[i] = new IntWrapper(i);
97 array[i] = new IntWrapper(i);
126 public static final class IntWrapper {
129 public IntWrapper(int wrap) {
140 if (!(o instanceof IntWrapper)) {
144 return ((IntWrapper) o).wrapped == this.wrapped;
  /external/chromium_org/testing/gtest/test/
gtest-param-test_test.cc 303 class IntWrapper {
305 explicit IntWrapper(int a_value) : value_(a_value) {}
306 IntWrapper(const IntWrapper& other) : value_(other.value_) {}
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> gen = Range(IntWrapper(0), IntWrapper(2))
    [all...]
  /external/gtest/test/
gtest-param-test_test.cc 303 class IntWrapper {
305 explicit IntWrapper(int a_value) : value_(a_value) {}
306 IntWrapper(const IntWrapper& other) : value_(other.value_) {}
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> gen = Range(IntWrapper(0), IntWrapper(2))
    [all...]
  /external/protobuf/gtest/test/
gtest-param-test_test.cc 244 class IntWrapper {
246 explicit IntWrapper(int value) : value_(value) {}
247 IntWrapper(const IntWrapper& other) : value_(other.value_) {}
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> gen = Range(IntWrapper(0), IntWrapper(2))
    [all...]
  /ndk/sources/third_party/googletest/googletest/test/
gtest-param-test_test.cc 303 class IntWrapper {
305 explicit IntWrapper(int a_value) : value_(a_value) {}
306 IntWrapper(const IntWrapper& other) : value_(other.value_) {}
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> gen = Range(IntWrapper(0), IntWrapper(2))
    [all...]
  /external/clang/test/SemaCXX/
constructor-initializer.cpp 146 int IntWrapper(int &i) { return 0; };
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.
type-traits.cpp     [all...]
  /external/clang/test/Misc/
diag-template-diffing.cpp     [all...]

Completed in 486 milliseconds