HomeSort by relevance Sort by last modified time
    Searched defs:i_ (Results 1 - 25 of 177) sorted by null

1 2 3 4 5 6 7 8

  /external/libcxx/test/std/atomics/atomics.types.generic/
trivially_copyable.fail.cpp 57 NotTriviallyCopyable ( int i ) : i_(i) {}
58 NotTriviallyCopyable ( const NotTriviallyCopyable &rhs) : i_(rhs.i_) {}
59 int i_; member in struct:NotTriviallyCopyable
trivially_copyable.pass.cpp 63 TriviallyCopyable ( int i ) : i_(i) {}
64 int i_; member in struct:TriviallyCopyable
  /external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.observers/
op_arrow.fail.cpp 21 int i_; member in struct:A
23 A() : i_(7) {}
29 assert(p->i_ == 7);
  /external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.observers/
op_arrow.pass.cpp 21 int i_; member in struct:A
23 A() : i_(7) {}
29 assert(p->i_ == 7);
  /external/libmojo/base/android/
jni_int_wrapper.h 32 JniIntWrapper() : i_(0) {}
33 JniIntWrapper(int i) : i_(i) {}
34 JniIntWrapper(const JniIntWrapper& ji) : i_(ji.i_) {}
35 template <class T> JniIntWrapper(const T& t) : i_(t) {}
36 jint as_jint() const { return i_; }
47 jint i_; member in class:JniIntWrapper
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.observers/
op_arrow.fail.cpp 21 int i_; member in struct:A
23 A() : i_(7) {}
29 assert(p->i_ == 7);
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.observers/
op_arrow.pass.cpp 21 int i_; member in struct:A
23 A() : i_(7) {}
29 assert(p->i_ == 7);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/atomics/atomics.types.generic/
trivially_copyable.fail.cpp 57 NotTriviallyCopyable ( int i ) : i_(i) {}
58 NotTriviallyCopyable ( const NotTriviallyCopyable &rhs) : i_(rhs.i_) {}
59 int i_; member in struct:NotTriviallyCopyable
trivially_copyable.pass.cpp 63 TriviallyCopyable ( int i ) : i_(i) {}
64 int i_; member in struct:TriviallyCopyable
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.observers/
op_arrow.fail.cpp 21 int i_; member in struct:A
23 A() : i_(7) {}
29 assert(p->i_ == 7);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.observers/
op_arrow.pass.cpp 21 int i_; member in struct:A
23 A() : i_(7) {}
29 assert(p->i_ == 7);
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/istream.iterator/istream.iterator.ops/
arrow.pass.cpp 23 int i_; member in struct:A
28 return is >> a.d_ >> a.i_;
36 assert(i->i_ == 23);
  /external/libcxx/test/std/containers/sequences/list/list.modifiers/
emplace.pass.cpp 25 int i_; member in class:A
32 : i_(i), d_(d) {}
34 int geti() const {return i_;}
  /external/libcxx/test/std/containers/sequences/vector/vector.data/
data.pass.cpp 21 Nasty() : i_(0) {}
22 Nasty(int i) : i_(i) {}
26 int i_; member in struct:Nasty
data_const.pass.cpp 21 Nasty() : i_(0) {}
22 Nasty(int i) : i_(i) {}
26 int i_; member in struct:Nasty
  /external/libcxx/test/std/experimental/optional/optional.comp_with_t/
equal.pass.cpp 22 int i_; member in struct:X
24 constexpr X(int i) : i_(i) {}
28 { return lhs.i_ == rhs.i_ ; }
greater.pass.cpp 22 int i_; member in struct:X
24 constexpr X(int i) : i_(i) {}
28 { return lhs.i_ < rhs.i_ ; }
greater_equal.pass.cpp 22 int i_; member in struct:X
24 constexpr X(int i) : i_(i) {}
28 { return lhs.i_ < rhs.i_ ; }
less_equal.pass.cpp 22 int i_; member in struct:X
24 constexpr X(int i) : i_(i) {}
28 { return lhs.i_ < rhs.i_ ; }
less_than.pass.cpp 22 int i_; member in struct:X
24 constexpr X(int i) : i_(i) {}
28 { return lhs.i_ < rhs.i_ ; }
not_equal.pass.cpp 22 int i_; member in struct:X
24 constexpr X(int i) : i_(i) {}
28 { return lhs.i_ == rhs.i_ ; }
  /external/libcxx/test/std/experimental/optional/optional.object/optional.object.observe/
value_or.pass.cpp 25 int i_; member in struct:Y
27 Y(int i) : i_(i) {}
32 int i_; member in struct:X
34 X(int i) : i_(i) {}
35 X(X&& x) : i_(x.i_) {x.i_ = 0;}
36 X(const Y& y) : i_(y.i_) {}
37 X(Y&& y) : i_(y.i_+1) {
    [all...]
value_or_const.pass.cpp 23 int i_; member in struct:Y
25 constexpr Y(int i) : i_(i) {}
30 int i_; member in struct:X
32 constexpr X(int i) : i_(i) {}
33 constexpr X(const Y& y) : i_(y.i_) {}
34 constexpr X(Y&& y) : i_(y.i_+1) {}
36 {return x.i_ == y.i_;}
    [all...]
  /external/libcxx/test/std/experimental/optional/optional.relops/
greater_equal.pass.cpp 21 int i_; member in struct:X
23 constexpr X(int i) : i_(i) {}
27 { return lhs.i_ < rhs.i_ ; }
greater_than.pass.cpp 21 int i_; member in struct:X
23 constexpr X(int i) : i_(i) {}
27 { return lhs.i_ < rhs.i_ ; }

Completed in 495 milliseconds

1 2 3 4 5 6 7 8