/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.auto.ptr/auto.ptr/auto.ptr.conv/ |
H A D | convert_to_auto_ptr.pass.cpp | 22 source() function 30 std::auto_ptr<A> ap2(source());
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/refwrap/refwrap.helpers/ |
H A D | ref_1.fail.cpp | 22 const A source() {return A();} function 26 std::reference_wrapper<const A> r = std::ref(source());
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/forward/ |
H A D | forward1.fail.cpp | 18 A source() {return A();} function 23 std::forward<A&>(source()); // error
|
H A D | forward3.fail.cpp | 18 A source() {return A();} function
|
H A D | forward2.fail.cpp | 18 A source() {return A();} function
|
H A D | forward4.fail.cpp | 18 A source() {return A();} function
|
H A D | forward5.fail.cpp | 18 A source() {return A();} function
|
H A D | forward.pass.cpp | 19 A source() {return A();} function 45 static_assert(sizeof(test(std::forward<A>(source()))) == 4, ""); 48 // static_assert(sizeof(test(std::forward<const A&>(source()))) == 2, ""); 50 static_assert(sizeof(test(std::forward<const A>(source()))) == 8, ""); 61 // static_assert(sizeof(test(std::forward<A>(source()))) == 2, ""); 64 static_assert(sizeof(test(std::forward<const A&>(source()))) == 2, ""); 66 static_assert(sizeof(test(std::forward<const A>(source()))) == 2, "");
|
H A D | move_copy.pass.cpp | 43 A source() {return A();} function
|
H A D | move_only.pass.cpp | 38 move_only source() {return move_only();} function 48 test(source());
|
H A D | move_only1.fail.cpp | 41 move_only source() {return move_only();} function
|
H A D | move_only2.fail.cpp | 41 move_only source() {return move_only();} function
|
H A D | move_only3.fail.cpp | 38 move_only source() {return move_only();} function
|
H A D | move_only4.fail.cpp | 41 move_only source() {return move_only();} function
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/ |
H A D | interpret_argument_value.hpp | 41 // returns true if source is used false otherwise 46 static bool _( cstring source, boost::optional<T>& res ) argument 50 res = lexical_cast<T>( source ); 52 BOOST_RT_PARAM_TRACE( "String " << source << " is interpreted as " << *res ); 63 static bool _( cstring source, boost::optional<dstring>& res ) argument 68 assign_op( *res, source, 0 ); 79 static bool _( cstring source, boost::optional<cstring>& res ) argument 83 res = source; 94 static bool _( cstring source, boost::optional<bool>& res ) argument 105 source 126 interpret_argument_value( cstring source, boost::optional<T>& res, long ) argument 136 interpret_argument_value( cstring source, boost::optional<std::list<T> >& res, int ) argument [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.const/ |
H A D | weak_ptr.pass.cpp | 56 std::weak_ptr<T> source (std::shared_ptr<T> p) { return std::weak_ptr<T>(p); } function 103 std::weak_ptr<A> pA = source(ps);
|
H A D | weak_ptr_Y.pass.cpp | 56 std::weak_ptr<T> source (std::shared_ptr<T> p) { return std::weak_ptr<T>(p); } function 105 std::weak_ptr<A> pA = source(ps);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.fill/ |
H A D | fill_n.pass.cpp | 60 struct source { struct 61 source() : i(0) { } function in struct:source 72 assert(std::fill_n(ia, n, source()) == std::next(ia, n));
|
/ndk/build/core/ |
H A D | definitions.mk | 1067 local-prebuilt-path = $(call local-source-file-path,$1) 1108 # Each source file listed in LOCAL_SRC_FILES can have any number of 1121 # LOCAL_SRC_FILES contains the list of all source files. 1122 # LOCAL_SRC_TAG.<tagname> contains the set of source file names tagged 1125 # source file name 1128 # which will call various functions to compute source-file specific settings. 1133 # source file. This is set by the function TARGET-set-cflags 1151 # Returns : remove all source file tags and associated data. 1167 # Arguments: 1: list of source files to tag 1169 # Usage : $(call tag-src-files,<list-of-source [all...] |
/ndk/sources/host-tools/make-3.81/ |
H A D | rule.c | 158 TARGET is the target suffix; SOURCE is the source suffix. 164 convert_suffix_rule (char *target, char *source, struct commands *cmds) 198 if (source == 0) 203 len = strlen (source); 206 bcopy (source, depname + 1, len + 1); 161 convert_suffix_rule(char *target, char *source, struct commands *cmds) argument
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/ |
H A D | lexical_cast.hpp | 92 source(&typeid(void)), target(&typeid(void)) 94 source(0), target(0) // this breaks getters 102 source(&source_type_arg), target(&target_type_arg) 108 return *source; 122 "source type value could not be interpreted as target"; 132 const std::type_info *source; member in class:boost::bad_lexical_cast 2108 ::boost::detail::is_char_or_wchar<src_char_type>::value, // source is lexical type 2110 ::boost::is_same<char, src_char_type>::value, // source is not a wide character based type
|