/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 | 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 | 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 | 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()
|
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()
|
/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 | 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 | 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 | 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()
|
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()
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/ |
D | interaction_based.hpp | 60 new ( ::boost::itest::location( BOOST_TEST_L(__FILE__), __LINE__ ) ) type_name 178 struct location { struct 179 location( const_string file, std::size_t line ) in location() function 209 operator new( std::size_t s, ::boost::itest::location const& l ) in operator new() 224 operator new[]( std::size_t s, ::boost::itest::location const& l ) in operator new[]() 239 operator delete( void* p, ::boost::itest::location const& ) in operator delete() 249 operator delete[]( void* p, ::boost::itest::location const& ) in operator delete[]()
|
D | execution_monitor.hpp | 116 struct BOOST_TEST_DECL location { struct in boost::execution_exception 117 … explicit location( char const* file_name = 0, size_t line_num = 0, char const* func = 0 ); 125 …execution_exception( error_code ec_, const_string what_msg_, location const& location_ ); // max l… 130 location const& where() const { return m_location; } in where() 136 location m_location;
|
/ndk/docs/Programmers_Guide/html/ |
D | navtree.js | 183 if (updateLocation) window.location.href=aname; 228 var srcPage = stripPath($(location).attr('pathname')); 322 var aname = $(location).attr('hash'); 326 window.location.hash.substring(1)+'"]'); 344 var link=stripPath($(location).attr('pathname'))+':'+hash.substring(1); 494 storeLink(stripPath2($(location).attr('pathname'))+$(location).attr('hash')); 534 navTo(o,toroot,window.location.hash,relpath); 539 if (window.location.hash && window.location.hash.length>1){ 541 if ($(location).attr('hash')){ 542 var clslink=stripPath($(location).attr('pathname'))+':'+ [all …]
|
D | resize.js | 74 var url = location.href; 76 if (i>=0) window.location.hash=url.substr(i);
|
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/ |
D | DwarfParser.hpp | 77 RegisterSavedWhere location; member 427 results->savedRegisters[reg].location = kRegisterInCFA; in parseInstructions() 453 results->savedRegisters[reg].location = kRegisterUnused; in parseInstructions() 468 results->savedRegisters[reg].location = kRegisterUnused; in parseInstructions() 487 results->savedRegisters[reg].location = kRegisterInRegister; in parseInstructions() 568 results->savedRegisters[reg].location = kRegisterAtExpression; in parseInstructions() 587 results->savedRegisters[reg].location = kRegisterInCFA; in parseInstructions() 620 results->savedRegisters[reg].location = kRegisterOffsetFromCFA; in parseInstructions() 635 results->savedRegisters[reg].location = kRegisterOffsetFromCFA; in parseInstructions() 648 results->savedRegisters[reg].location = kRegisterIsExpression; in parseInstructions() [all …]
|
D | DwarfInstructions.hpp | 84 switch (savedReg.location) { in getSavedRegister() 112 switch (savedReg.location) { in getSavedFloatRegister() 135 switch (savedReg.location) { in getSavedVectorRegister() 176 if (prolog.savedRegisters[i].location != in stepWithDwarf()
|
/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/tools/toolchain-patches/gcc/ |
D | 0003-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/build/core/ |
D | build-local.mk | 36 $(info Android NDK: Please re-install to a different location to fix the issue !) 170 …ndk_info,The Android NDK build cannot work here. Please move your project to a different location.)
|
/ndk/sources/host-tools/gdb-pretty-printers/stlport/gppfs-0.2/ |
D | README | 42 described above the location there will be used. Otherwise, test/.gdbinit will
|
/ndk/sources/third_party/googletest/googletest/src/ |
D | gtest.cc | 1998 const char* location) { in FormatSehExceptionMessage() argument 2001 exception_code << std::setbase(10) << " thrown in " << location << "."; in FormatSehExceptionMessage() 2014 const char* location) { in FormatCxxExceptionMessage() argument 2021 message << " thrown in " << location << "."; in FormatCxxExceptionMessage() 2045 T* object, Result (T::*method)(), const char* location) { in HandleSehExceptionsInMethodIfSupported() argument 2055 GetExceptionCode(), location); in HandleSehExceptionsInMethodIfSupported() 2062 (void)location; in HandleSehExceptionsInMethodIfSupported() 2072 T* object, Result (T::*method)(), const char* location) { in HandleExceptionsInMethodIfSupported() argument 2099 return HandleSehExceptionsInMethodIfSupported(object, method, location); in HandleExceptionsInMethodIfSupported() 2108 FormatCxxExceptionMessage(e.what(), location)); in HandleExceptionsInMethodIfSupported() [all …]
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/impl/ |
D | xml_log_formatter.ipp | 115 execution_exception::location const& loc = ex.where();
|
D | compiler_log_formatter.ipp | 127 execution_exception::location const& loc = ex.where();
|
/ndk/sources/host-tools/make-3.81/po/ |
D | Makevars | 23 # These two variables depend on the location of this directory.
|