/ndk/tests/device/test-gnustl-full/unit/ |
D | search_test.cpp | 45 int* location; in search0() local 46 location = search((int*)v1, (int*)v1 + 6, (int*)v3, (int*)v3 + 2); in search0() 47 CPPUNIT_ASSERT(location == v1 + 6); in search0() 49 location = search((int*)v2, (int*)v2 + 6, (int*)v3, (int*)v3 + 2); in search0() 50 CPPUNIT_ASSERT(location != v2 + 6); in search0() 51 CPPUNIT_ASSERT(location - v2 == 3); in search0() 61 IntVec::iterator location; in search1() local 62 location = search(v1.begin(), v1.end(), v2.begin(), v2.end()); in search1() 64 CPPUNIT_ASSERT(location == v1.end()); in search1() 68 location = search(v1.begin(), v1.end(), v2.begin(), v2.end()); in search1() [all …]
|
D | adj_test.cpp | 46 int* location = adjacent_find((int*)numbers1, (int*)numbers1 + 5); in adjfind0() local 47 CPPUNIT_ASSERT(location == numbers1 + 5); // no adj so loc should be _last in adjfind0() 49 location = adjacent_find((int*)numbers2, (int*)numbers2 + 5); in adjfind0() 50 CPPUNIT_ASSERT(location != numbers2 + 5); // adj location off should be 3 (first 1) in adjfind0() 51 CPPUNIT_ASSERT((location - numbers2)==3); in adjfind0() 59 IntVector::iterator location; in adjfind1() local 60 location = adjacent_find(v.begin(), v.end()); in adjfind1() 61 CPPUNIT_ASSERT(location == v.end()); in adjfind1() 63 location = adjacent_find(v.begin(), v.end()); in adjfind1() 64 CPPUNIT_ASSERT(location != v.end()); in adjfind1() [all …]
|
D | bound_test.cpp | 46 int location = upper_bound((int*)arr, (int*)arr + 20, 3) - arr; in uprbnd1() local 47 CPPUNIT_ASSERT(location==16); in uprbnd1() 56 …int location = (upper_bound((char const**)str, (char const**)str + strCt, (const char *)"d", char… in uprbnd2() local 57 CPPUNIT_ASSERT(location==4); in uprbnd2() 67 vector<int>::iterator location = lower_bound(v1.begin(), v1.end(), 3); in lwrbnd1() local 69 CPPUNIT_ASSERT((location - v1.begin())==12); in lwrbnd1() 77 …char const** location = lower_bound((char const**)str, (char const**)str + strCt, (const char *)"… in lwrbnd2() local 79 CPPUNIT_ASSERT((location - str) == 4); in lwrbnd2()
|
D | find_test.cpp | 42 int *location = find((int*)numbers, (int*)numbers + 10, 25); in find0() local 44 CPPUNIT_ASSERT((location - numbers)==5); in find0() 69 int* location = find((int*)years, (int*)years + yearCount, 1972); in find1() local 71 CPPUNIT_ASSERT((location - years)==3); in find1() 78 int *location = find_if((int*)numbers, (int*)numbers + 6, odd); in findif0() local 80 CPPUNIT_ASSERT((location - numbers)==3); in findif0()
|
D | advance_test.cpp | 34 IntVector::iterator location = v.begin(); in adv() local 35 CPPUNIT_ASSERT(*location==0); in adv() 36 advance(location, 5); in adv() 37 CPPUNIT_ASSERT(*location==5); in adv()
|
/ndk/tests/device/test-stlport/unit/ |
D | search_test.cpp | 45 int* location; in search0() local 46 location = search((int*)v1, (int*)v1 + 6, (int*)v3, (int*)v3 + 2); in search0() 47 CPPUNIT_ASSERT(location == v1 + 6); in search0() 49 location = search((int*)v2, (int*)v2 + 6, (int*)v3, (int*)v3 + 2); in search0() 50 CPPUNIT_ASSERT(location != v2 + 6); in search0() 51 CPPUNIT_ASSERT(location - v2 == 3); in search0() 61 IntVec::iterator location; in search1() local 62 location = search(v1.begin(), v1.end(), v2.begin(), v2.end()); in search1() 64 CPPUNIT_ASSERT(location == v1.end()); in search1() 68 location = search(v1.begin(), v1.end(), v2.begin(), v2.end()); in search1() [all …]
|
D | adj_test.cpp | 46 int* location = adjacent_find((int*)numbers1, (int*)numbers1 + 5); in adjfind0() local 47 CPPUNIT_ASSERT(location == numbers1 + 5); // no adj so loc should be _last in adjfind0() 49 location = adjacent_find((int*)numbers2, (int*)numbers2 + 5); in adjfind0() 50 CPPUNIT_ASSERT(location != numbers2 + 5); // adj location off should be 3 (first 1) in adjfind0() 51 CPPUNIT_ASSERT((location - numbers2)==3); in adjfind0() 59 IntVector::iterator location; in adjfind1() local 60 location = adjacent_find(v.begin(), v.end()); in adjfind1() 61 CPPUNIT_ASSERT(location == v.end()); in adjfind1() 63 location = adjacent_find(v.begin(), v.end()); in adjfind1() 64 CPPUNIT_ASSERT(location != v.end()); in adjfind1() [all …]
|
D | bound_test.cpp | 46 int location = upper_bound((int*)arr, (int*)arr + 20, 3) - arr; in uprbnd1() local 47 CPPUNIT_ASSERT(location==16); in uprbnd1() 56 …int location = (upper_bound((char const**)str, (char const**)str + strCt, (const char *)"d", char… in uprbnd2() local 57 CPPUNIT_ASSERT(location==4); in uprbnd2() 67 vector<int>::iterator location = lower_bound(v1.begin(), v1.end(), 3); in lwrbnd1() local 69 CPPUNIT_ASSERT((location - v1.begin())==12); in lwrbnd1() 77 …char const** location = lower_bound((char const**)str, (char const**)str + strCt, (const char *)"… in lwrbnd2() local 79 CPPUNIT_ASSERT((location - str) == 4); in lwrbnd2()
|
D | find_test.cpp | 42 int *location = find((int*)numbers, (int*)numbers + 10, 25); in find0() local 44 CPPUNIT_ASSERT((location - numbers)==5); in find0() 69 int* location = find((int*)years, (int*)years + yearCount, 1972); in find1() local 71 CPPUNIT_ASSERT((location - years)==3); in find1() 78 int *location = find_if((int*)numbers, (int*)numbers + 6, odd); in findif0() local 80 CPPUNIT_ASSERT((location - numbers)==3); in findif0()
|
D | advance_test.cpp | 34 IntVector::iterator location = v.begin(); in adv() local 35 CPPUNIT_ASSERT(*location==0); in adv() 36 advance(location, 5); in adv() 37 CPPUNIT_ASSERT(*location==5); in adv()
|
/ndk/tests/build/import-install/ |
D | README | 2 are properly installed to the target location, i.e. libs/<abi>/
|
/ndk/ |
D | GNUmakefile | 33 $(error,Please fix the problem by reinstalling to a different location.)
|
/ndk/build/core/ |
D | build-local.mk | 36 $(info Android NDK: Please re-install to a different location to fix the issue !) 136 …ndk_info,The Android NDK build cannot work here. Please move your project to a different location.)
|
D | init.mk | 59 $(error,Please fix the problem by reinstalling to a different location.)
|
/ndk/build/tools/toolchain-patches/gcc/ |
D | 0002-gcc-prevent-crash-on-Eclair-and-older-platforms.patch | 37 + * but I couldn't find the right location. The point of the macro 61 + * but I couldn't find the right location. The point of the macro
|
/ndk/sources/host-tools/sed-4.2.1/po/ |
D | Makevars | 8 # These two variables depend on the location of this directory.
|
/ndk/sources/host-tools/make-3.81/po/ |
D | Makevars | 23 # These two variables depend on the location of this directory.
|
/ndk/sources/host-tools/make-3.81/doc/ |
D | fdl.texi | 170 a computer-network location from which the general network-using 176 location until at least one year after the last time you distribute an 242 Preserve the network location, if any, given in the Document for 246 You may omit a network location for a work that was published at
|
D | make.info-2 | 1502 files without altering the location for Info files, man pages, etc. 3005 state in or with each Opaque copy a computer-network location from 3012 location until at least one year after the last time you 3073 J. Preserve the network location, if any, given in the Document 3077 the "History" section. You may omit a network location for a
|
D | make-stds.texi | 412 altering the location for Info files, man pages, etc.
|
/ndk/sources/host-tools/sed-4.2.1/ |
D | COPYING.DOC | 163 a computer-network location from which the general network-using 169 location until at least one year after the last time you distribute an 216 J. Preserve the network location, if any, given in the Document for 220 You may omit a network location for a work that was published at
|
D | INSTALL | 178 `CONFIG_SITE' environment variable to the location of the site script.
|
/ndk/sources/host-tools/make-3.81/ |
D | INSTALL | 178 `CONFIG_SITE' environment variable to the location of the site script.
|
D | configure.in | 317 AC_CACHE_CHECK(for location of SCCS get command, make_cv_path_sccs_get, [
|
/ndk/build/tools/ |
D | DEV-SCRIPTS-USAGE.TXT | 389 rebuild their binaries. The scripts place them to their respective location
|