/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.nonmodifying/alg.search/ |
D | search.pass.cpp | 28 assert(std::search(Iter1(ia), Iter1(ia+sa), Iter2(ia), Iter2(ia)) == Iter1(ia)); in test() 29 assert(std::search(Iter1(ia), Iter1(ia+sa), Iter2(ia), Iter2(ia+1)) == Iter1(ia)); in test() 30 assert(std::search(Iter1(ia), Iter1(ia+sa), Iter2(ia+1), Iter2(ia+2)) == Iter1(ia+1)); in test() 31 assert(std::search(Iter1(ia), Iter1(ia+sa), Iter2(ia+2), Iter2(ia+2)) == Iter1(ia)); in test() 32 assert(std::search(Iter1(ia), Iter1(ia+sa), Iter2(ia+2), Iter2(ia+3)) == Iter1(ia+2)); in test() 33 assert(std::search(Iter1(ia), Iter1(ia+sa), Iter2(ia+2), Iter2(ia+3)) == Iter1(ia+2)); in test() 34 assert(std::search(Iter1(ia), Iter1(ia), Iter2(ia+2), Iter2(ia+3)) == Iter1(ia)); in test() 35 assert(std::search(Iter1(ia), Iter1(ia+sa), Iter2(ia+sa-1), Iter2(ia+sa)) == Iter1(ia+sa-1)); in test() 36 assert(std::search(Iter1(ia), Iter1(ia+sa), Iter2(ia+sa-3), Iter2(ia+sa)) == Iter1(ia+sa-3)); in test() 37 assert(std::search(Iter1(ia), Iter1(ia+sa), Iter2(ia), Iter2(ia+sa)) == Iter1(ia)); in test() [all …]
|
D | search_pred.pass.cpp | 39 assert(std::search(Iter1(ia), Iter1(ia+sa), Iter2(ia), Iter2(ia), count_equal()) == Iter1(ia)); in test() 42 … assert(std::search(Iter1(ia), Iter1(ia+sa), Iter2(ia), Iter2(ia+1), count_equal()) == Iter1(ia)); in test() 45 …assert(std::search(Iter1(ia), Iter1(ia+sa), Iter2(ia+1), Iter2(ia+2), count_equal()) == Iter1(ia+1… in test() 48 …assert(std::search(Iter1(ia), Iter1(ia+sa), Iter2(ia+2), Iter2(ia+2), count_equal()) == Iter1(ia)); in test() 51 …assert(std::search(Iter1(ia), Iter1(ia+sa), Iter2(ia+2), Iter2(ia+3), count_equal()) == Iter1(ia+2… in test() 54 …assert(std::search(Iter1(ia), Iter1(ia+sa), Iter2(ia+2), Iter2(ia+3), count_equal()) == Iter1(ia+2… in test() 57 assert(std::search(Iter1(ia), Iter1(ia), Iter2(ia+2), Iter2(ia+3), count_equal()) == Iter1(ia)); in test() 60 …assert(std::search(Iter1(ia), Iter1(ia+sa), Iter2(ia+sa-1), Iter2(ia+sa), count_equal()) == Iter1(… in test() 63 …assert(std::search(Iter1(ia), Iter1(ia+sa), Iter2(ia+sa-3), Iter2(ia+sa), count_equal()) == Iter1(… in test() 66 … assert(std::search(Iter1(ia), Iter1(ia+sa), Iter2(ia), Iter2(ia+sa), count_equal()) == Iter1(ia)); in test() [all …]
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | search_test.cpp | 46 location = search((int*)v1, (int*)v1 + 6, (int*)v3, (int*)v3 + 2); in search0() 49 location = search((int*)v2, (int*)v2 + 6, (int*)v3, (int*)v3 + 2); in search0() 62 location = search(v1.begin(), v1.end(), v2.begin(), v2.end()); in search1() 68 location = search(v1.begin(), v1.end(), v2.begin(), v2.end()); in search1() 79 …char const** location = search((char const**)grades, (char const**)grades + gradeCount, (char cons… in search2() 84 …location = search((char const**)grades, (char const**)grades + gradeCount, (char const**)letters, … in search2()
|
/ndk/tests/device/test-stlport/unit/ |
D | search_test.cpp | 46 location = search((int*)v1, (int*)v1 + 6, (int*)v3, (int*)v3 + 2); in search0() 49 location = search((int*)v2, (int*)v2 + 6, (int*)v3, (int*)v3 + 2); in search0() 62 location = search(v1.begin(), v1.end(), v2.begin(), v2.end()); in search1() 68 location = search(v1.begin(), v1.end(), v2.begin(), v2.end()); in search1() 79 …char const** location = search((char const**)grades, (char const**)grades + gradeCount, (char cons… in search2() 84 …location = search((char const**)grades, (char const**)grades + gradeCount, (char const**)letters, … in search2()
|
/ndk/sources/third_party/googletest/googletest/test/ |
D | gtest_help_test.py | 113 self.assert_(HELP_REGEX.search(output), output) 137 self.assert_(not HELP_REGEX.search(output), output)
|
/ndk/sources/cxx-stl/llvm-libc++/patches.android/ |
D | 0013-temp-collective-ndk-hackathon-fixes.patch | 31 test/re/re.alg/re.alg.search/awk.pass.cpp | 14 ++++++++ 32 test/re/re.alg/re.alg.search/basic.pass.cpp | 14 ++++++++ 33 test/re/re.alg/re.alg.search/ecma.pass.cpp | 14 ++++++++ 34 test/re/re.alg/re.alg.search/extended.pass.cpp | 14 ++++++++ 874 diff --git a/test/re/re.alg/re.alg.search/awk.pass.cpp b/test/re/re.alg/re.alg.search/awk.pass.cpp 876 --- a/test/re/re.alg/re.alg.search/awk.pass.cpp 877 +++ b/test/re/re.alg/re.alg.search/awk.pass.cpp 920 diff --git a/test/re/re.alg/re.alg.search/basic.pass.cpp b/test/re/re.alg/re.alg.search/basic.pass.… 922 --- a/test/re/re.alg/re.alg.search/basic.pass.cpp 923 +++ b/test/re/re.alg/re.alg.search/basic.pass.cpp [all …]
|
/ndk/sources/host-tools/make-3.81/tests/scripts/features/ |
D | vpath | 2 ."vpath directive which allows you to specify a search \n" 6 $details = "This tests the vpath directive by specifying search directories\n"
|
D | vpath2 | 7 $details = "This test simply adds many search paths using various vpath\n"
|
/ndk/sources/host-tools/sed-4.2.1/m4/ |
D | lib-prefix.m4 | 36 [ --with-lib-prefix[=DIR] search for libraries in DIR/include and DIR/lib 37 --without-lib-prefix don't search for libraries in includedir and libdir], 168 dnl the compiler's default mode by looking at the compiler's library search 202 …searchpath=`(LC_ALL=C $CC -print-search-dirs) 2>/dev/null | sed -n -e 's,^libraries: ,,p' | sed -e…
|
D | include_next.m4 | 21 dnl through the include search path specified with '-isystem' options (as 22 dnl opposed to the search path specified with '-I' options). Namely, gcc
|
/ndk/build/tools/ |
D | build-host-perl.sh | 94 LIBS_SEARCH=`$CC -print-search-dirs | grep libraries | sed ' s/^.*=// ' | sed ' s/:/ /g '`
|
/ndk/sources/host-tools/make-3.81/ |
D | filedef.h | 168 extern FILE_TIMESTAMP f_mtime PARAMS ((struct file *file, int search));
|
D | makefile.com | 95 $ if f$search("make.opt").nes."" then $ del make.opt;*
|
D | remake.c | 1144 f_mtime (struct file *file, int search) in f_mtime() argument 1171 mtime = f_mtime (arfile, search); in f_mtime() 1173 if (search && strcmp (arfile->hname, arname)) in f_mtime() 1229 if (mtime == NONEXISTENT_MTIME && search && !file->ignore_vpath) in f_mtime()
|
D | README.Amiga | 57 Copy make somewhere in your search path (eg. sc:c or sc:bin).
|
D | vmsfunctions.c | 92 if (!((i = sys$search (dfab)) & 1)) in readdir()
|
/ndk/sources/host-tools/make-3.81/po/ |
D | he.po | 205 msgid "Commands for file `%s' were found by implicit rule search," 270 msgid "# Implicit rule search has been done." 271 msgstr "# Implicit rule search has been done." 274 msgid "# Implicit rule search has not been done." 275 msgstr "# Implicit rule search has not been done." 914 msgid "find_and_set_shell path search set default_shell = %s\n" 915 msgstr "find_and_set_shell path search set default_shell = %s\n" 1240 msgid " (search path)" 1241 msgstr " (search path)" 1865 msgid "sys$search failed with %d\n" [all …]
|
D | make.pot | 201 msgid "Commands for file `%s' were found by implicit rule search," 263 msgid "# Implicit rule search has been done." 267 msgid "# Implicit rule search has not been done." 878 msgid "find_and_set_shell path search set default_shell = %s\n" 1181 msgid " (search path)" 1786 msgid "sys$search failed with %d\n" 1866 msgid "# No `vpath' search paths." 1873 "# %u `vpath' search paths.\n" 1879 "# No general (`VPATH' variable) search path." 1885 "# General (`VPATH' variable) search path:\n"
|
D | be.po | 202 msgid "Commands for file `%s' were found by implicit rule search," 264 msgid "# Implicit rule search has been done." 268 msgid "# Implicit rule search has not been done." 885 msgid "find_and_set_shell path search set default_shell = %s\n" 1200 msgid " (search path)" 1807 msgid "sys$search failed with %d\n" 1887 msgid "# No `vpath' search paths." 1894 "# %u `vpath' search paths.\n" 1900 "# No general (`VPATH' variable) search path." 1906 "# General (`VPATH' variable) search path:\n"
|
D | ja.po | 203 msgid "Commands for file `%s' were found by implicit rule search," 266 msgid "# Implicit rule search has been done." 270 msgid "# Implicit rule search has not been done." 930 msgid "find_and_set_shell path search set default_shell = %s\n" 1251 msgid " (search path)" 1875 msgid "sys$search failed with %d\n" 1876 msgstr "sys$search �� %d �Ǽ��Ԥ��ޤ���\n" 1958 msgid "# No `vpath' search paths." 1965 "# %u `vpath' search paths.\n" 1973 "# No general (`VPATH' variable) search path." [all …]
|
D | zh_CN.po | 202 msgid "Commands for file `%s' were found by implicit rule search," 265 msgid "# Implicit rule search has been done." 269 msgid "# Implicit rule search has not been done." 899 msgid "find_and_set_shell path search set default_shell = %s\n" 1206 msgid " (search path)" 1828 msgid "sys$search failed with %d\n" 1829 msgstr "sys$search ʧ�ܲ����� %d\n" 1910 msgid "# No `vpath' search paths." 1917 "# %u `vpath' search paths.\n" 1925 "# No general (`VPATH' variable) search path." [all …]
|
D | ko.po | 204 msgid "Commands for file `%s' were found by implicit rule search," 268 msgid "# Implicit rule search has been done." 272 msgid "# Implicit rule search has not been done." 914 msgid "find_and_set_shell path search set default_shell = %s\n" 1241 msgid " (search path)" 1866 msgid "sys$search failed with %d\n" 1867 msgstr "sys$search�� %d�� �����ϸ� �����߽��ϴ�\n" 1949 msgid "# No `vpath' search paths." 1956 "# %u `vpath' search paths.\n" 1964 "# No general (`VPATH' variable) search path." [all …]
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _algobase.c | 227 _ForwardIter1 search(_ForwardIter1 __first1, _ForwardIter1 __last1, in search() function 378 _ForwardIter1 __new_result = _STLP_STD::search(__first1, __last1, __first2, __last2, __comp); 415 _RevIter1 __rresult = _STLP_STD::search(_RevIter1(__last1), __rlast1,
|
/ndk/sources/host-tools/make-3.81/config/ |
D | lib-prefix.m4 | 37 [ --with-lib-prefix[=DIR] search for libraries in DIR/include and DIR/lib 38 --without-lib-prefix don't search for libraries in includedir and libdir],
|
/ndk/docs/text/ |
D | NDK-DEPENDS.text | 37 > Append 'some/other/path' to the search path for depending libraries
|