Home
last modified time | relevance | path

Searched refs:set (Results 1 – 25 of 190) sorted by relevance

12345678

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/set/
Dtypes.pass.cpp40 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 …]
Diterator.pass.cpp65 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 …]
Dmax_size.pass.cpp24 typedef std::set<int> M; in main()
30 typedef std::set<int, std::less<int>, min_allocator<int>> M; in main()
/ndk/
Dfind-win-host.cmd3 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/
Dstamp-vti1 @set UPDATED 13 October 2011
2 @set UPDATED-MONTH October 2011
3 @set EDITION 3.81
4 @set VERSION 3.81
Dversion.texi1 @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.h23 # 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/
Dvariable.c164 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 …]
Dvariable.h94 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/
Dset_test.cpp58 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/
Dset_test.cpp58 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/
Dmove_noexcept.pass.cpp35 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()
Ddtor_noexcept.pass.cpp35 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()
Ddefault_noexcept.pass.cpp37 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()
Dmove_assign_noexcept.pass.cpp37 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()
Ddefault.pass.cpp24 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()
Dcopy_assign.pass.cpp40 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()
Dmove.pass.cpp30 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/
Dthread_db.h107 #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/
Dset2 //===---------------------------- 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/
Dswap_noexcept.pass.cpp40 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/
Dthread_db.h125 #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/
Dthread_db.h113 #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/
Dmessages.cpp139 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.h46 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 …]

12345678