Home
last modified time | relevance | path

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

12

/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/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/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() 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[]()
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.hpp78 RegisterSavedWhere location; member
428 results->savedRegisters[reg].location = kRegisterInCFA; in parseInstructions()
455 results->savedRegisters[reg].location = kRegisterUnused; in parseInstructions()
470 results->savedRegisters[reg].location = kRegisterUnused; in parseInstructions()
489 results->savedRegisters[reg].location = kRegisterInRegister; in parseInstructions()
572 results->savedRegisters[reg].location = kRegisterAtExpression; in parseInstructions()
591 results->savedRegisters[reg].location = kRegisterInCFA; in parseInstructions()
626 results->savedRegisters[reg].location = kRegisterOffsetFromCFA; in parseInstructions()
642 results->savedRegisters[reg].location = kRegisterOffsetFromCFA; in parseInstructions()
656 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()
DUnwindRegistersRestore.S28 # set up eax and ret on new stack location
91 movq 56(%rdi), %rsp # cut back rsp to new location
/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/core/
Dbuild-local.mk44 $(info Android NDK: Please re-install to a different location to fix the issue !)
157 …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/tests/device/issue42891-boost-1_52/jni/boost/boost/test/impl/
Dxml_log_formatter.ipp115 execution_exception::location const& loc = ex.where();
Dcompiler_log_formatter.ipp127 execution_exception::location const& loc = ex.where();
Dexecution_monitor.ipp248 throw execution_exception( ec, buf, execution_exception::location( extract<throw_file>( be ),
1346 execution_exception::execution_exception( error_code ec_, const_string what_msg_, location const& l…
1354 execution_exception::location::location( char const* file_name, size_t line_num, char const* func )
1355 : m_file_name( file_name ? file_name : "unknown location" )
/ndk/sources/host-tools/make-3.81/po/
DMakevars23 # These two variables depend on the location of this directory.
/ndk/sources/host-tools/make-3.81/doc/
Dfdl.texi170 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

12