/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/set/ |
D | types.pass.cpp | 40 static_assert((std::is_same<std::set<int>::key_type, int>::value), ""); in main() 41 static_assert((std::is_same<std::set<int>::value_type, int>::value), ""); in main() 42 static_assert((std::is_same<std::set<int>::key_compare, std::less<int> >::value), ""); in main() 43 static_assert((std::is_same<std::set<int>::value_compare, std::less<int> >::value), ""); in main() 44 static_assert((std::is_same<std::set<int>::allocator_type, std::allocator<int> >::value), ""); in main() 45 static_assert((std::is_same<std::set<int>::reference, int&>::value), ""); in main() 46 static_assert((std::is_same<std::set<int>::const_reference, const int&>::value), ""); in main() 47 static_assert((std::is_same<std::set<int>::pointer, int*>::value), ""); in main() 48 static_assert((std::is_same<std::set<int>::const_pointer, const int*>::value), ""); in main() 49 static_assert((std::is_same<std::set<int>::size_type, std::size_t>::value), ""); in main() [all …]
|
D | iterator.pass.cpp | 65 std::set<int> m(ar, ar+sizeof(ar)/sizeof(ar[0])); in main() 68 std::set<int>::iterator i; in main() 70 std::set<int>::const_iterator k = i; in main() 104 const std::set<int> m(ar, ar+sizeof(ar)/sizeof(ar[0])); in main() 109 std::set<int>::const_iterator i; in main() 144 std::set<int, std::less<int>, min_allocator<int>> m(ar, ar+sizeof(ar)/sizeof(ar[0])); in main() 147 std::set<int, std::less<int>, min_allocator<int>>::iterator i; in main() 149 std::set<int, std::less<int>, min_allocator<int>>::const_iterator k = i; in main() 183 const std::set<int, std::less<int>, min_allocator<int>> m(ar, ar+sizeof(ar)/sizeof(ar[0])); in main() 188 std::set<int, std::less<int>, min_allocator<int>>::const_iterator i; in main() [all …]
|
D | max_size.pass.cpp | 24 typedef std::set<int> M; in main() 30 typedef std::set<int, std::less<int>, min_allocator<int>> M; in main()
|
/ndk/ |
D | find-win-host.cmd | 3 rem %1 is the env. var to set to the windows host name. 6 set NDK_ROOT=%~dp0 19 set TEMP=windows-x86_64 21 rem Check if NDK_HOST_32BIT is not set to 1/true, Windows is 64-bit, and 64-bit make exists 22 if "%NDK_HOST_32BIT%"=="1" set TEMP= 23 if "%NDK_HOST_32BIT%"=="true" set TEMP= 24 if not exist "%NDK_ROOT%prebuilt\%TEMP%" set TEMP= 25 if "%ProgramW6432%"=="" if "%ProgramFiles(x86)%"=="" set TEMP= 28 if "%TEMP%"=="" set TEMP=windows 31 endlocal && set "%1=%TEMP%"
|
/ndk/sources/host-tools/make-3.81/doc/ |
D | stamp-vti | 1 @set UPDATED 13 October 2011 2 @set UPDATED-MONTH October 2011 3 @set EDITION 3.81 4 @set VERSION 3.81
|
D | version.texi | 1 @set UPDATED 13 October 2011 2 @set UPDATED-MONTH October 2011 3 @set EDITION 3.81 4 @set VERSION 3.81
|
/ndk/sources/cxx-stl/stlport/stlport/stl/config/ |
D | _prolog.h | 23 # pragma set woff 1209 24 # pragma set woff 1174 25 # pragma set woff 1375 27 # pragma set woff 1183
|
/ndk/sources/host-tools/make-3.81/ |
D | variable.c | 164 int recursive, struct variable_set *set, in define_variable_in_set() argument 171 if (set == NULL) in define_variable_in_set() 172 set = &global_variable_set; in define_variable_in_set() 176 var_slot = (struct variable **) hash_find_slot (&set->table, &var_key); in define_variable_in_set() 212 hash_insert_at (&set->table, v, var_slot); in define_variable_in_set() 351 const struct variable_set *set = setlist->set; in lookup_variable() local 354 v = (struct variable *) hash_find_item ((struct hash_table *) &set->table, &var_key); in lookup_variable() 425 const struct variable_set *set) in lookup_variable_in_set() argument 432 return (struct variable *) hash_find_item ((struct hash_table *) &set->table, &var_key); in lookup_variable_in_set() 453 l->set = (struct variable_set *) xmalloc (sizeof (struct variable_set)); in initialize_file_variables() [all …]
|
D | variable.h | 94 struct variable_set *set; /* Variable set. */ member 145 extern void print_variable_set PARAMS ((struct variable_set *set, char *prefix)); 155 const struct variable_set *set)); 160 struct variable_set *set, const struct floc *flocp)); 166 current_variable_set_list->set,NILF) 172 current_variable_set_list->set,(f)) 182 define_variable_in_set((n),(l),(v),(o),(r),(f)->variables->set,NILF)
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | set_test.cpp | 58 set<int, less<int> > s; in set1() 70 typedef set<int, less<int> > int_set; in set2() 96 set<int, less<int> > s; in erase() 107 set<int> s; in insert() 108 set<int>::iterator i = s.insert( s.end(), 0 ); in insert() 114 set<int> s; in find() 118 set<int> const& crs = s; in find() 126 set<int> s(array1, array1 + sizeof(array1) / sizeof(array1[0])); in bounds() 127 set<int> const& crs = s; in bounds() 129 set<int>::iterator sit; in bounds() [all …]
|
/ndk/tests/device/test-stlport/unit/ |
D | set_test.cpp | 58 set<int, less<int> > s; in set1() 70 typedef set<int, less<int> > int_set; in set2() 96 set<int, less<int> > s; in erase() 107 set<int> s; in insert() 108 set<int>::iterator i = s.insert( s.end(), 0 ); in insert() 114 set<int> s; in find() 118 set<int> const& crs = s; in find() 126 set<int> s(array1, array1 + sizeof(array1) / sizeof(array1[0])); in bounds() 127 set<int> const& crs = s; in bounds() 129 set<int>::iterator sit; in bounds() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/set/set.cons/ |
D | move_noexcept.pass.cpp | 35 typedef std::set<MoveOnly> C; in main() 39 typedef std::set<MoveOnly, std::less<MoveOnly>, test_allocator<MoveOnly>> C; in main() 43 typedef std::set<MoveOnly, std::less<MoveOnly>, other_allocator<MoveOnly>> C; in main() 47 typedef std::set<MoveOnly, some_comp<MoveOnly>> C; in main()
|
D | dtor_noexcept.pass.cpp | 35 typedef std::set<MoveOnly> C; in main() 39 typedef std::set<MoveOnly, std::less<MoveOnly>, test_allocator<MoveOnly>> C; in main() 43 typedef std::set<MoveOnly, std::less<MoveOnly>, other_allocator<MoveOnly>> C; in main() 47 typedef std::set<MoveOnly, some_comp<MoveOnly>> C; in main()
|
D | default_noexcept.pass.cpp | 37 typedef std::set<MoveOnly> C; in main() 41 typedef std::set<MoveOnly, std::less<MoveOnly>, test_allocator<MoveOnly>> C; in main() 45 typedef std::set<MoveOnly, std::less<MoveOnly>, other_allocator<MoveOnly>> C; in main() 49 typedef std::set<MoveOnly, some_comp<MoveOnly>> C; in main()
|
D | move_assign_noexcept.pass.cpp | 37 typedef std::set<MoveOnly> C; in main() 41 typedef std::set<MoveOnly, std::less<MoveOnly>, test_allocator<MoveOnly>> C; in main() 45 typedef std::set<MoveOnly, std::less<MoveOnly>, other_allocator<MoveOnly>> C; in main() 49 typedef std::set<MoveOnly, some_comp<MoveOnly>> C; in main()
|
D | default.pass.cpp | 24 std::set<int> m; in main() 30 std::set<int, std::less<int>, min_allocator<int>> m; in main() 35 std::set<int> m = {}; in main()
|
D | copy_assign.pass.cpp | 40 std::set<int, C, A> mo(ar, ar+sizeof(ar)/sizeof(ar[0]), C(5), A(2)); in main() 41 std::set<int, C, A> m(ar, ar+sizeof(ar)/sizeof(ar[0])/2, C(3), A(7)); in main() 67 std::set<int> m(ar, ar+sizeof(ar)/sizeof(ar[0])); in main() 68 std::set<int> *p = &m; in main() 90 std::set<int, C, A> mo(ar, ar+sizeof(ar)/sizeof(ar[0]), C(5), A(2)); in main() 91 std::set<int, C, A> m(ar, ar+sizeof(ar)/sizeof(ar[0])/2, C(3), A(7)); in main()
|
D | move.pass.cpp | 30 std::set<int, C, A> mo(C(5), A(7)); in main() 31 std::set<int, C, A> m = std::move(mo); in main() 58 std::set<int, C, A> mo(ar, ar+sizeof(ar)/sizeof(ar[0]), C(5), A(7)); in main() 59 std::set<int, C, A> m = std::move(mo); in main() 90 std::set<int, C, A> mo(ar, ar+sizeof(ar)/sizeof(ar[0]), C(5), A()); in main() 91 std::set<int, C, A> m = std::move(mo); in main()
|
/ndk/sources/android/libthread_db/gdb-6.6/ |
D | thread_db.h | 107 #define td_event_emptyset(set) \ argument 108 (set)->events = 0 110 #define td_event_fillset(set) \ argument 111 (set)->events = 0xffffffff 113 #define td_event_addset(set, n) \ argument 114 (set)->events |= (1 << n)
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | set | 2 //===---------------------------- set -------------------------------------===// 16 set synopsis 23 class set 45 set() 50 explicit set(const value_compare& comp); 51 set(const value_compare& comp, const allocator_type& a); 53 set(InputIterator first, InputIterator last, 56 set(InputIterator first, InputIterator last, const value_compare& comp, 58 set(const set& s); 59 set(set&& s) [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/set/set.special/ |
D | swap_noexcept.pass.cpp | 40 typedef std::set<MoveOnly> C; in main() 45 typedef std::set<MoveOnly, std::less<MoveOnly>, test_allocator<MoveOnly>> C; in main() 50 typedef std::set<MoveOnly, std::less<MoveOnly>, other_allocator<MoveOnly>> C; in main() 55 typedef std::set<MoveOnly, some_comp<MoveOnly>> C; in main()
|
/ndk/sources/android/libthread_db/gdb-7.6/ |
D | thread_db.h | 125 #define td_event_emptyset(set) \ argument 126 (set)->events = 0 128 #define td_event_fillset(set) \ argument 129 (set)->events = 0xffffffff 131 #define td_event_addset(set, n) \ argument 132 (set)->events |= (1 << n)
|
/ndk/sources/android/libthread_db/gdb-7.3.x/ |
D | thread_db.h | 113 #define td_event_emptyset(set) \ argument 114 (set)->events = 0 116 #define td_event_fillset(set) \ argument 117 (set)->events = 0xffffffff 119 #define td_event_addset(set, n) \ argument 120 (set)->events |= (1 << n)
|
/ndk/sources/cxx-stl/stlport/src/ |
D | messages.cpp | 139 int set, int p_id, const string& dfault) const { in do_get() argument 142 set, p_id, dfault.c_str())) in do_get() 150 int set, int p_id, const wstring& dfault) const { in do_get() argument 154 …tr = _Locale_catgets(_M_message_obj, _STLP_MUTABLE(_Messages_impl, _M_cat)[thecat], set, p_id, ""); in do_get() 160 …2 = _Locale_catgets(_M_message_obj, _STLP_MUTABLE(_Messages_impl, _M_cat)[thecat], set, p_id, "*"); in do_get() 205 messages_byname<char>::do_get(catalog cat, int set, int p_id, in do_get() argument 207 { return _M_impl->do_get(cat, set, p_id, dfault); } in do_get() 235 int set, int p_id, const wstring& dfault) const in do_get() argument 236 { return _M_impl->do_get(thecat, set, p_id, dfault); } in do_get()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _set.h | 46 class set in _STLP_CREATE_ITERATOR_TRAITS() 48 : public __stlport_class<set<_Key, _Compare, _Alloc> > in _STLP_CREATE_ITERATOR_TRAITS() 51 typedef set<_Key, _Compare, _Alloc> _Self; in _STLP_CREATE_ITERATOR_TRAITS() 89 explicit set(const _Compare& __comp = _Compare(), in _STLP_CREATE_ITERATOR_TRAITS() 92 set() in _STLP_CREATE_ITERATOR_TRAITS() 94 explicit set(const _Compare& __comp) in _STLP_CREATE_ITERATOR_TRAITS() 96 set(const _Compare& __comp, const allocator_type& __a) in _STLP_CREATE_ITERATOR_TRAITS() 102 set(_InputIterator __first, _InputIterator __last) in _STLP_CREATE_ITERATOR_TRAITS() 108 set(_InputIterator __first, _InputIterator __last, const _Compare& __comp) in _STLP_CREATE_ITERATOR_TRAITS() 112 set(_InputIterator __first, _InputIterator __last, const _Compare& __comp, in _STLP_CREATE_ITERATOR_TRAITS() [all …]
|