Home
last modified time | relevance | path

Searched refs:includes (Results 1 – 25 of 65) sorted by relevance

123

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.set.operations/includes/
Dincludes.pass.cpp36 assert(std::includes(Iter1(ia), Iter1(ia), Iter2(ib), Iter2(ib))); in test()
37 assert(!std::includes(Iter1(ia), Iter1(ia), Iter2(ib), Iter2(ib+1))); in test()
38 assert(std::includes(Iter1(ia), Iter1(ia+1), Iter2(ib), Iter2(ib))); in test()
39 assert(std::includes(Iter1(ia), Iter1(ia+sa), Iter2(ia), Iter2(ia+sa))); in test()
41 assert(std::includes(Iter1(ia), Iter1(ia+sa), Iter2(ib), Iter2(ib+sb))); in test()
42 assert(!std::includes(Iter1(ib), Iter1(ib+sb), Iter2(ia), Iter2(ia+sa))); in test()
44 assert(std::includes(Iter1(ia), Iter1(ia+2), Iter2(ic), Iter2(ic+2))); in test()
45 assert(!std::includes(Iter1(ia), Iter1(ia+2), Iter2(ib), Iter2(ib+2))); in test()
47 assert(std::includes(Iter1(ia), Iter1(ia+sa), Iter2(id), Iter2(id+1))); in test()
48 assert(std::includes(Iter1(ia), Iter1(ia+sa), Iter2(id), Iter2(id+2))); in test()
[all …]
Dincludes_comp.pass.cpp37 assert(std::includes(Iter1(ia), Iter1(ia), Iter2(ib), Iter2(ib), std::less<int>())); in test()
38 assert(!std::includes(Iter1(ia), Iter1(ia), Iter2(ib), Iter2(ib+1), std::less<int>())); in test()
39 assert(std::includes(Iter1(ia), Iter1(ia+1), Iter2(ib), Iter2(ib), std::less<int>())); in test()
40 assert(std::includes(Iter1(ia), Iter1(ia+sa), Iter2(ia), Iter2(ia+sa), std::less<int>())); in test()
42 assert(std::includes(Iter1(ia), Iter1(ia+sa), Iter2(ib), Iter2(ib+sb), std::less<int>())); in test()
43 assert(!std::includes(Iter1(ib), Iter1(ib+sb), Iter2(ia), Iter2(ia+sa), std::less<int>())); in test()
45 assert(std::includes(Iter1(ia), Iter1(ia+2), Iter2(ic), Iter2(ic+2), std::less<int>())); in test()
46 assert(!std::includes(Iter1(ia), Iter1(ia+2), Iter2(ib), Iter2(ib+2), std::less<int>())); in test()
48 assert(std::includes(Iter1(ia), Iter1(ia+sa), Iter2(id), Iter2(id+1), std::less<int>())); in test()
49 assert(std::includes(Iter1(ia), Iter1(ia+sa), Iter2(id), Iter2(id+2), std::less<int>())); in test()
[all …]
/ndk/tests/device/test-gnustl-full/unit/
Dincludes_test.cpp43 bool r1=includes(numbers1, numbers1 + 5, numbers3, numbers3 + 2); in incl0()
55 bool r1=includes(v1.begin(), v1.end(), v2.begin(), v2.end()); in incl1()
61 bool r2=includes(v1.begin(), v1.end(), v2.begin(), v2.end()); in incl1()
80 bool r1 = includes(v1.begin(), v1.end(), v2.begin(), v2.end(), compare_strings); in incl2()
85 bool r2 = includes(v1.begin(), v1.end(), v2.begin(), v2.end(), compare_strings); in incl2()
/ndk/tests/device/test-stlport/unit/
Dincludes_test.cpp43 bool r1=includes(numbers1, numbers1 + 5, numbers3, numbers3 + 2); in incl0()
55 bool r1=includes(v1.begin(), v1.end(), v2.begin(), v2.end()); in incl1()
61 bool r2=includes(v1.begin(), v1.end(), v2.begin(), v2.end()); in incl1()
80 bool r1 = includes(v1.begin(), v1.end(), v2.begin(), v2.end(), compare_strings); in incl2()
85 bool r2 = includes(v1.begin(), v1.end(), v2.begin(), v2.end(), compare_strings); in incl2()
/ndk/sources/cxx-stl/stlport/stlport/
Dfunctional106 #ifndef BOOST_FUNCTION_NUM_ARGS // avoid recursive includes
118 #ifndef BOOST_FUNCTION_BASE_HEADER // avoid recursive includes
Dcstdlib25 /* Native cstdlib includes stdlib.h using an include_next so STLport stdlib.h
Dexception18 // This header exists solely for portability. Normally it just includes
/ndk/build/core/
Ddefinitions-host.mk142 host-c-includes = $(patsubst %,-I%,$(call host-path,$1))
144 host-c-includes = $(1:%=-I%)
Ddefinitions.mk1596 $$(call host-c-includes,$$(LOCAL_C_INCLUDES) $$(LOCAL_PATH)) \
1601 $$(call host-c-includes,$$($(my)C_INCLUDES)) \
1622 _FLAGS := $$(call host-c-includes,$$(LOCAL_C_INCLUDES) $$(LOCAL_PATH)) \
1625 $$(call host-c-includes,$$($(my)C_INCLUDES)) \
1696 $$(call host-c-includes, $$(LOCAL_C_INCLUDES) $$(LOCAL_PATH)) \
1703 $$(call host-c-includes,$$($(my)C_INCLUDES)) \
1744 $$(call host-c-includes, $$(LOCAL_C_INCLUDES) $$(LOCAL_PATH)) \
1751 $$(call host-c-includes,$$($(my)C_INCLUDES)) \
1755 _RS_FLAGS := $$(call host-c-includes, $$(LOCAL_RENDERSCRIPT_INCLUDES) $$(LOCAL_PATH)) \
1758 $$(call host-c-includes,$$($(my)RENDERSCRIPT_INCLUDES)) \
/ndk/build/tools/
Dgen-system-symbols.sh100 SYMBOL_INCLUDES=/tmp/ndk-$USER/ndk-symbol-includes.txt
Ddev-system-import.sh247 SYMBOL_INCLUDES=/tmp/ndk-$USER/ndk-symbol-includes.txt
/ndk/sources/host-tools/make-3.81/tests/scripts/features/
Dreinvoke6 If the makefile or one it includes can be rebuilt then it is, and make
Dinclude7 Test extra whitespace at the end of the include, multiple -includes and
/ndk/sources/host-tools/sed-4.2.1/
DBUGS20 A stand-alone test case includes all the data necessary to perform the
98 write `1,/abc/d' and the first line includes the word `abc', then
122 includes invalid multibyte sequences. POSIX mandates that such
/ndk/sources/host-tools/make-3.81/tests/scripts/functions/
Dsort7 ."and includes some duplicates. Make should sort all of the elements\n"
/ndk/sources/third_party/googletest/
DREADME.NDK10 includes many needed bugfixes.
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcinttypes19 #include <cstdint> // <cinttypes> includes <cstdint>
/ndk/sources/cxx-stl/llvm-libc++/
DREADME.NDK12 It also includes Android-specific support code, providing missing C
/ndk/docs/text/
DOVERVIEW.text113 Android system image includes many native shared libraries, these should
220 to do. This includes, among others:
232 it includes) and target the default CPU ABI (armeabi).
/ndk/sources/host-tools/make-3.81/
DREADME.customs85 The customs/sprite.h header file #includes the <malloc.h> header
DREADME.W3293 (Consensys). Also MinGW includes sh (http://mingw.org/).
171 on Windows NT). All tests pass in an environment that includes
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_algo.h606 bool includes(_InputIter1 __first1, _InputIter1 __last1,
610 bool includes(_InputIter1 __first1, _InputIter1 __last1,
/ndk/sources/third_party/googletest/googletest/
DCHANGES12 * Improvement: failure summary in XML reports now includes file and
/ndk/sources/android/crazy_linker/
DDESIGN.TXT178 This also includes a few "hidden" dynamic linker symbols which are used for
/ndk/sources/host-tools/make-3.81/glob/
DChangeLog95 filename parts of the pattern correctly when it includes a drive

123