Home
last modified time | relevance | path

Searched refs:Z (Results 1 – 25 of 34) sorted by relevance

12

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.object/optional.object.assign/
Demplace_initializer_list.pass.cpp54 class Z class
60 constexpr Z() : i_(0) {} in Z() function in Z
61 constexpr Z(int i) : i_(i) {} in Z() function in Z
62 constexpr Z(std::initializer_list<int> il) : i_(il.begin()[0]), j_(il.begin()[1]) in Z() function in Z
64 ~Z() {dtor_called = true;} in ~Z()
66 friend constexpr bool operator==(const Z& x, const Z& y) in operator ==()
70 bool Z::dtor_called = false;
100 Z z; in main()
101 optional<Z> opt(z); in main()
105 assert(Z::dtor_called == false); in main()
[all …]
Demplace.pass.cpp46 class Z class
50 Z() = default;
51 Z(int) {throw 6;} in Z() function in Z
52 ~Z() {dtor_called = true;} in ~Z()
55 bool Z::dtor_called = false;
132 Z z; in main()
133 optional<Z> opt(z); in main()
137 assert(Z::dtor_called == false); in main()
144 assert(Z::dtor_called == true); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.object/optional.object.ctor/
Dcopy.pass.cpp63 class Z class
67 Z(int i) : i_(i) {} in Z() function in Z
68 Z(const Z&) in Z() argument
74 friend constexpr bool operator==(const Z& x, const Z& y) {return x.i_ == y.i_;} in operator ==()
114 typedef Z T; in main()
119 typedef Z T; in main()
120 optional<T> rhs(Z(3)); in main()
Dmove.pass.cpp63 class Z class
67 Z(int i) : i_(i) {} in Z() function in Z
68 Z(Z&&) in Z() argument
74 friend constexpr bool operator==(const Z& x, const Z& y) {return x.i_ == y.i_;} in operator ==()
114 typedef Z T; in main()
119 typedef Z T; in main()
120 optional<T> rhs(Z(3)); in main()
Dinitializer_list.pass.cpp55 class Z class
60 constexpr Z() : i_(0) {} in Z() function in Z
61 constexpr Z(int i) : i_(i) {} in Z() function in Z
62 constexpr Z(std::initializer_list<int> il) : i_(il.begin()[0]), j_(il.begin()[1]) in Z() function in Z
65 friend constexpr bool operator==(const Z& x, const Z& y) in operator ==()
106 static_assert(std::is_constructible<optional<Z>, std::initializer_list<int>&>::value, ""); in main()
109 optional<Z> opt(in_place, {3, 1}); in main()
118 : public optional<Z> in main()
121 : optional<Z>(in_place, i) {} in main()
Dconst_T.pass.cpp40 class Z class
44 Z(int i) : i_(i) {} in Z() function in Z
45 Z(const Z&) {throw 6;} in Z() function in Z
104 typedef Z T; in main()
Drvalue_T.pass.cpp42 class Z class
46 Z(int i) : i_(i) {} in Z() function in Z
47 Z(Z&&) {throw 6;} in Z() function in Z
98 typedef Z T; in main()
Din_place_t.pass.cpp53 class Z class
57 Z(int i) : i_(i) {throw 6;} in Z() function in Z
136 const optional<Z> opt(in_place, 1); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.object/optional.object.observe/
Dop_arrow_const.pass.cpp36 struct Z struct
38 const Z* operator&() const {return this;} in operator &() argument
56 constexpr optional<Z> opt(Z{}); in main() argument
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.specalg/
Dswap.pass.cpp53 class Z class
57 Z(int i) : i_(i) {} in Z() function in Z
58 Z(Z&&) {throw 7;} in Z() argument
60 friend constexpr bool operator==(const Z& x, const Z& y) {return x.i_ == y.i_;} in operator ==()
61 friend void swap(Z& x, Z& y) {throw 6;} in swap()
229 optional<Z> opt1; in main()
230 optional<Z> opt2; in main()
239 optional<Z> opt1; in main()
241 optional<Z> opt2; in main()
260 optional<Z> opt1; in main()
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.object/optional.object.swap/
Dswap.pass.cpp54 class Z class
58 Z(int i) : i_(i) {} in Z() function in Z
59 Z(Z&&) {throw 7;} in Z() argument
61 friend constexpr bool operator==(const Z& x, const Z& y) {return x.i_ == y.i_;} in operator ==()
62 friend void swap(Z& x, Z& y) {throw 6;} in swap()
230 optional<Z> opt1; in main()
231 optional<Z> opt2; in main()
240 optional<Z> opt1; in main()
242 optional<Z> opt2; in main()
261 optional<Z> opt1; in main()
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.enab/
Denable_shared_from_this.pass.cpp33 struct Z : Y {}; struct
38 std::shared_ptr<Y> p(new Z); in main()
44 std::shared_ptr<Y> p = std::make_shared<Z>(); in main()
/ndk/tests/device/test-stlport_static-exception/jni/
Darraynew.cpp100 struct Z { ~Z () {} }; in ~Z() struct
128 check_no_placement_cookie<Z> (6); in main()
131 check_cookie<Z> (7); in main()
/ndk/tests/device/test-stlport_shared-exception/jni/
Darraynew.cpp100 struct Z { ~Z () {} }; in ~Z() argument
128 check_no_placement_cookie<Z> (6); in main()
131 check_cookie<Z> (7); in main()
/ndk/tests/device/test-stlport/unit/cppunit/
Dcppunit_mini.h217 #define CPPUNIT_ASSERT_DOUBLES_EQUAL(X, Y, Z) \ argument
218 if (!equalDoubles((X), (Y), (Z))) { \
219 Base::error("CPPUNIT_ASSERT_DOUBLES_EQUAL", #X","#Y","#Z, __FILE__, __LINE__); \
/ndk/tests/device/test-gnustl-full/unit/cppunit/
Dcppunit_mini.h217 #define CPPUNIT_ASSERT_DOUBLES_EQUAL(X, Y, Z) \ argument
218 if (!equalDoubles((X), (Y), (Z))) { \
219 Base::error("CPPUNIT_ASSERT_DOUBLES_EQUAL", #X","#Y","#Z, __FILE__, __LINE__); \
/ndk/docs/Additional_library_docs/renderscript/
Djquery.js20Z=[],W,af,ai,T,ad,V,X=true;R.lastIndex=0;while((W=R.exec(Y))!==null){Z.push(W[1]);if(W[2]){V=RegEx… argument
21 …ttpData(J,M.dataType,M)}catch(Z){R="parsererror"}}if(R=="success"){var Y;try{Y=J.getResponseHeader…
/ndk/sources/host-tools/make-3.81/glob/
DMakefile.ami65 glob.tar glob.tar.Z:
DSMakefile65 glob.tar glob.tar.Z:
/ndk/sources/host-tools/make-3.81/tests/scripts/features/
Dtargetvars215 foo:: ; @echo $(W) $(X) $(Y) $(Z)
216 foo:: ; @echo $(W) $(X) $(Y) $(Z)
223 Z = nopat
225 fo% : Z = pat
/ndk/build/core/
Ddefinitions-host.mk182 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
/ndk/build/gmsl/
D__gmsl342 [A-Z] := A B C D E F G H I J K L M N O P Q R S T U V W X Y Z #
352 uc = $(__gmsl_tr1)$(call assert_no_dollar,$0,$1)$(call tr,$([a-z]),$([A-Z]),$1)
359 lc = $(__gmsl_tr1)$(call assert_no_dollar,$0,$1)$(call tr,$([A-Z]),$([a-z]),$1)
366 __gmsl_characters := A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
/ndk/sources/third_party/googletest/googletest/
DREADME92 name "gtest-X.Y.Z" which contains all of the source code. Here are
95 tar -xvzf gtest-X.Y.Z.tar.gz
96 tar -xvjf gtest-X.Y.Z.tar.bz2
97 unzip gtest-X.Y.Z.zip
/ndk/sources/host-tools/make-3.81/
Dacinclude.m4102 $1=`echo $2 | tr '[a-z]' '[A-Z]'`
/ndk/sources/host-tools/make-3.81/po/
Dtr.po720 msgstr " -C DİZİN, --directory=DIZIN Birşey yapmadan önce DİZİNe geçilir.\n"
760 " -I DİZİN, --include-dir=DİZİN\n"
761 " Eklenecek makefile'ları DİZİNde arar.\n"
2029 #~ msgstr "DİZİN"
2032 #~ msgstr "Hiç bir şey yapmadan DİZİNe geçer"
2050 #~ msgstr "İçerilmiş makefile'lar için DİZİNi araştırır"

12