Home
last modified time | relevance | path

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

12345678910

/ndk/sources/cxx-stl/llvm-libc++/cmake/Modules/
DGetTriple.cmake5 set(arch ${CMAKE_HOST_SYSTEM_PROCESSOR})
7 set(arch "i686")
11 set(vendor "apple")
13 set(vendor "pc")
17 set(os "win32")
21 set(triple "${arch}-${vendor}-${os}")
22 set(${out} ${triple} PARENT_SCOPE)
23 set(${out_arch} ${arch} PARENT_SCOPE)
24 set(${out_vendor} ${vendor} PARENT_SCOPE)
25 set(${out_os} ${os} PARENT_SCOPE)
[all …]
/ndk/sources/cxx-stl/llvm-libc++/test/containers/associative/set/
Dtypes.pass.cpp37 static_assert((std::is_same<std::set<int>::key_type, int>::value), ""); in main()
38 static_assert((std::is_same<std::set<int>::value_type, int>::value), ""); in main()
39 static_assert((std::is_same<std::set<int>::key_compare, std::less<int> >::value), ""); in main()
40 static_assert((std::is_same<std::set<int>::value_compare, std::less<int> >::value), ""); in main()
41 static_assert((std::is_same<std::set<int>::allocator_type, std::allocator<int> >::value), ""); in main()
42 static_assert((std::is_same<std::set<int>::reference, int&>::value), ""); in main()
43 static_assert((std::is_same<std::set<int>::const_reference, const int&>::value), ""); in main()
44 static_assert((std::is_same<std::set<int>::pointer, int*>::value), ""); in main()
45 static_assert((std::is_same<std::set<int>::const_pointer, const int*>::value), ""); in main()
46 static_assert((std::is_same<std::set<int>::size_type, std::size_t>::value), ""); in main()
[all …]
Diterator.pass.cpp63 std::set<int> m(ar, ar+sizeof(ar)/sizeof(ar[0])); in main()
66 std::set<int>::iterator i; in main()
68 std::set<int>::const_iterator k = i; in main()
102 const std::set<int> m(ar, ar+sizeof(ar)/sizeof(ar[0])); in main()
107 std::set<int, double>::const_iterator i; in main()
/ndk/sources/cxx-stl/llvm-libc++/test/
DCMakeLists.txt3 set(${var} True)
5 set(${var} False)
11 set(LIT_EXECUTABLE "" CACHE FILEPATH "Path to LLVM's lit.py.")
12 set(LIT_ARGS_DEFAULT "-sv")
14 set(LIT_ARGS_DEFAULT "${LIT_ARGS_DEFAULT} --no-progress-bar")
16 set(LLVM_LIT_ARGS "${LIT_ARGS_DEFAULT}"
18 set(LIT_ARGS "${LLVM_LIT_ARGS}")
21 set(LIBCXX_COMPILER ${CMAKE_CXX_COMPILER})
22 set(LIBCXX_SOURCE_DIR ${CMAKE_SOURCE_DIR})
23 set(LIBCXX_BINARY_DIR ${CMAKE_BINARY_DIR})
[all …]
/ndk/
Dndk-build.cmd3 set NDK_ROOT=%~dp0
4 set NDK_MAKE=%NDK_ROOT%\prebuilt\windows-x86_64\bin\make.exe
17 rem Check if NDK_HOST_32BIT is not set to 1/true, Windows is 64-bit, and 64-bit make exists
18 if "%NDK_HOST_32BIT%"=="1" set NDK_MAKE=
19 if "%NDK_HOST_32BIT%"=="true" set NDK_MAKE=
20 if not exist "%NDK_MAKE%" set NDK_MAKE=
21 if "%ProgramW6432%"=="" set NDK_MAKE=
24 if "%NDK_MAKE%"=="" set NDK_MAKE=%NDK_ROOT%\prebuilt\windows\bin\make.exe
/ndk/sources/host-tools/sed-4.2.1/doc/
Dversion.texi1 @set UPDATED 25 June 2009
2 @set UPDATED-MONTH June 2009
3 @set EDITION 4.2.1
4 @set VERSION 4.2.1
Dstamp-vti1 @set UPDATED 25 June 2009
2 @set UPDATED-MONTH June 2009
3 @set EDITION 4.2.1
4 @set VERSION 4.2.1
/ndk/sources/host-tools/make-3.81/doc/
Dversion.texi1 @set UPDATED 13 October 2011
2 @set UPDATED-MONTH October 2011
3 @set EDITION 3.81
4 @set VERSION 3.81
Dstamp-vti1 @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/llvm-libc++/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/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 …]
/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++/test/containers/associative/set/set.cons/
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()
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()
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()
/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++/
DCMakeLists.txt10 set(PACKAGE_NAME libcxx)
11 set(PACKAGE_VERSION trunk-svn)
12 set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
13 set(PACKAGE_BUGREPORT "llvmbugs@cs.uiuc.edu")
16 set(CMAKE_MODULE_PATH
42 set(CXXABIS none libcxxabi libcxxrt libsupc++)
44 set(LIBCXX_CXX_ABI "none")
46 set(LIBCXX_CXX_ABI "${LIBCXX_CXX_ABI}" CACHE STRING
61 set(LIBCXX_HOST_TRIPLE ${LIBCXX_HOST_TRIPLE} CACHE STRING "Host triple.")
67 set(LIBCXX_TARGET_TRIPLE ${LIBCXX_TARGET_TRIPLE} CACHE STRING "Target triple.")
[all …]
/ndk/sources/cxx-stl/llvm-libc++/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/host-tools/sed-4.2.1/lib/
Dregex_internal.c970 re_node_set_alloc (re_node_set *set, Idx size) in re_node_set_alloc() argument
972 set->alloc = size; in re_node_set_alloc()
973 set->nelem = 0; in re_node_set_alloc()
974 set->elems = re_malloc (Idx, size); in re_node_set_alloc()
975 if (BE (set->elems == NULL, 0)) in re_node_set_alloc()
982 re_node_set_init_1 (re_node_set *set, Idx elem) in re_node_set_init_1() argument
984 set->alloc = 1; in re_node_set_init_1()
985 set->nelem = 1; in re_node_set_init_1()
986 set->elems = re_malloc (Idx, 1); in re_node_set_init_1()
987 if (BE (set->elems == NULL, 0)) in re_node_set_init_1()
[all …]
Dregex_internal.h708 #define re_node_set_init_empty(set) memset (set, '\0', sizeof (re_node_set)) argument
709 #define re_node_set_remove(set,id) \ argument
710 (re_node_set_remove_at (set, re_node_set_contains (set, id) - 1))
712 #define re_node_set_free(set) re_free ((set)->elems) argument
739 bitset_set (bitset_t set, Idx i) in bitset_set() argument
741 set[i / BITSET_WORD_BITS] |= (bitset_word_t) 1 << i % BITSET_WORD_BITS; in bitset_set()
745 bitset_clear (bitset_t set, Idx i) in bitset_clear() argument
747 set[i / BITSET_WORD_BITS] &= ~ ((bitset_word_t) 1 << i % BITSET_WORD_BITS); in bitset_clear()
751 bitset_contain (const bitset_t set, Idx i) in bitset_contain() argument
753 return (set[i / BITSET_WORD_BITS] >> i % BITSET_WORD_BITS) & 1; in bitset_contain()
[all …]
/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()

12345678910