Home
last modified time | relevance | path

Searched refs:location (Results 1 – 25 of 54) sorted by relevance

123

/ndk/tests/device/test-gnustl-full/unit/
Dsearch_test.cpp45 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 …]
Dbound_test.cpp46 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()
Dadj_test.cpp46 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 …]
Dadvance_test.cpp34 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()
Dfind_test.cpp42 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/
Dsearch_test.cpp45 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 …]
Dbound_test.cpp46 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()
Dadj_test.cpp46 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 …]
Dadvance_test.cpp34 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()
Dfind_test.cpp42 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/
Dinteraction_based.hpp60 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() argument
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[]()
Dexecution_monitor.hpp116 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/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
DDwarfParser.hpp77 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 …]
DDwarfInstructions.hpp84 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/
DREADME2 are properly installed to the target location, i.e. libs/<abi>/
/ndk/
DGNUmakefile33 $(error,Please fix the problem by reinstalling to a different location.)
/ndk/build/tools/toolchain-patches/gcc/
D0003-gcc-prevent-crash-on-Eclair-and-older-platforms.patch38 + * but I couldn't find the right location. The point of the macro
62 + * but I couldn't find the right location. The point of the macro
86 + * but I couldn't find the right location. The point of the macro
/ndk/docs/text/
DHOWTO.text25 How to store your native sources in a location other than $PROJECT/jni:
45 How to store your Application.mk in a location other than $PROJECT/jni:
51 If you want to use 'ndk-build' but place the file to a different location,
DAPPLICATION-MK.text43 > specific location known to the APK-generating tools.
66 > libraries will be placed at the usual location under `obj/` or
261 > randomization the location of the code.
/ndk/build/core/
Dbuild-local.mk36 $(info Android NDK: Please re-install to a different location to fix the issue !)
154 …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/
DREADME42 described above the location there will be used. Otherwise, test/.gdbinit will
/ndk/sources/third_party/googletest/googletest/src/
Dgtest.cc1998 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/sources/host-tools/sed-4.2.1/po/
DMakevars8 # These two variables depend on the location of this directory.
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/impl/
Dxml_log_formatter.ipp115 execution_exception::location const& loc = ex.where();
/ndk/sources/host-tools/make-3.81/po/
DMakevars23 # These two variables depend on the location of this directory.

123