Searched defs:source (Results 1 - 21 of 21) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.auto.ptr/auto.ptr/auto.ptr.conv/
H A Dconvert_to_auto_ptr.pass.cpp22 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 Dref_1.fail.cpp22 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 Dforward1.fail.cpp18 A source() {return A();} function
23 std::forward<A&>(source()); // error
H A Dforward3.fail.cpp18 A source() {return A();} function
H A Dforward2.fail.cpp18 A source() {return A();} function
H A Dforward4.fail.cpp18 A source() {return A();} function
H A Dforward5.fail.cpp18 A source() {return A();} function
H A Dforward.pass.cpp19 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 Dmove_copy.pass.cpp43 A source() {return A();} function
H A Dmove_only.pass.cpp38 move_only source() {return move_only();} function
48 test(source());
H A Dmove_only1.fail.cpp41 move_only source() {return move_only();} function
H A Dmove_only2.fail.cpp41 move_only source() {return move_only();} function
H A Dmove_only3.fail.cpp38 move_only source() {return move_only();} function
H A Dmove_only4.fail.cpp41 move_only source() {return move_only();} function
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/
H A Dinterpret_argument_value.hpp41 // 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 Dweak_ptr.pass.cpp56 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 Dweak_ptr_Y.pass.cpp56 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 Dfill_n.pass.cpp60 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 Ddefinitions.mk1067 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 Drule.c158 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 Dlexical_cast.hpp92 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

Completed in 413 milliseconds