/ndk/tests/device/test-stlport/unit/ |
D | list_test.cpp | 60 list<int> l1(array1, array1 + 3); in list1() 61 list<int> l2(array2, array2 + 2); in list1() 62 list<int>::iterator i1 = l1.begin(); in list1() 63 list<int>::iterator i2 = l2.begin(); in list1() 64 list<int>::const_iterator ci(i1); in list1() 65 list<int>::const_iterator ci1(ci); in list1() 80 list<int> l(2); in list1() 88 list<char>::iterator l_char_ite; in list1() 89 list<int>::iterator l_int_ite; in list1() 100 list<int> l1(array1, array1 + 2); in list2() [all …]
|
D | mvctor_declaration_test.cpp | 132 struct __move_traits<list<specially_allocated_struct> > { 235 CPPUNIT_ASSERT( is_movable(list<char>()) ); in movable_declaration() 236 CPPUNIT_ASSERT( is_movable(list<specially_allocated_struct>()) ); in movable_declaration() 238 CPPUNIT_ASSERT( is_move_complete(list<char>()) ); in movable_declaration() 239 CPPUNIT_ASSERT( !is_move_complete(list<specially_allocated_struct>()) ); in movable_declaration() 241 CPPUNIT_ASSERT( !is_move_complete(list<char>()) ); in movable_declaration()
|
D | ptrspec_test.cpp | 56 TEST_INSTANCIATE_CONTAINER(list); 85 list<void*> void_list; in ptr_specialization_test() 108 list<int*> pint_list; in ptr_specialization_test() 109 list<int*> pint_list2; in ptr_specialization_test() 110 list<int const*> pcint_list; in ptr_specialization_test() 165 list<int*> pint_list_from_vect(pint_vect.begin(), pint_vect.end()); in ptr_specialization_test()
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | list_test.cpp | 60 list<int> l1(array1, array1 + 3); in list1() 61 list<int> l2(array2, array2 + 2); in list1() 62 list<int>::iterator i1 = l1.begin(); in list1() 63 list<int>::iterator i2 = l2.begin(); in list1() 64 list<int>::const_iterator ci(i1); in list1() 65 list<int>::const_iterator ci1(ci); in list1() 80 list<int> l(2); in list1() 88 list<char>::iterator l_char_ite; in list1() 89 list<int>::iterator l_int_ite; in list1() 100 list<int> l1(array1, array1 + 2); in list2() [all …]
|
D | mvctor_declaration_test.cpp | 132 struct __move_traits<list<specially_allocated_struct> > { 235 CPPUNIT_ASSERT( is_movable(list<char>()) ); in movable_declaration() 236 CPPUNIT_ASSERT( is_movable(list<specially_allocated_struct>()) ); in movable_declaration() 238 CPPUNIT_ASSERT( is_move_complete(list<char>()) ); in movable_declaration() 239 CPPUNIT_ASSERT( !is_move_complete(list<specially_allocated_struct>()) ); in movable_declaration() 241 CPPUNIT_ASSERT( !is_move_complete(list<char>()) ); in movable_declaration()
|
D | ptrspec_test.cpp | 56 TEST_INSTANCIATE_CONTAINER(list); 85 list<void*> void_list; in ptr_specialization_test() 108 list<int*> pint_list; in ptr_specialization_test() 109 list<int*> pint_list2; in ptr_specialization_test() 110 list<int const*> pcint_list; in ptr_specialization_test() 165 list<int*> pint_list_from_vect(pint_vect.begin(), pint_vect.end()); in ptr_specialization_test()
|
D | reviter_test.cpp | 65 list<int> v(array, array + 4); in revbit1() 66 list<int>::reverse_iterator r(v.rbegin()); in revbit1()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _list.c | 87 # define list _STLP_PTR_IMPL_NAME(list) macro 89 # define list _STLP_NON_DBG_NAME(list) macro 95 void list<_Tp, _Alloc>::resize(size_type __new_size, const _Tp& __x) { in resize() 107 list<_Tp, _Alloc>& list<_Tp, _Alloc>::operator=(const list<_Tp, _Alloc>& __x) { 124 void list<_Tp, _Alloc>::_M_fill_assign(size_type __n, const _Tp& __val) { in _M_fill_assign() 134 #if !defined (list) 139 void _S_remove_if(list<_Tp, _Alloc>& __that, _Predicate __pred) { in _S_remove_if() 140 typedef typename list<_Tp, _Alloc>::iterator _Literator; in _S_remove_if() 152 void _S_unique(list<_Tp, _Alloc>& __that, _BinaryPredicate __binary_pred) { in _S_unique() 153 typedef typename list<_Tp, _Alloc>::iterator _Literator; in _S_unique() [all …]
|
D | _list.h | 220 # define list _STLP_PTR_IMPL_NAME(list) 222 # define list _STLP_NON_DBG_NAME(list) 228 class list; 230 #if !defined (list) 236 void _S_remove_if(list<_Tp, _Alloc>& __that, _Predicate __pred); 239 void _S_unique(list<_Tp, _Alloc>& __that, _BinaryPredicate __binary_pred); 242 void _S_merge(list<_Tp, _Alloc>& __that, list<_Tp, _Alloc>& __x, 246 void _S_sort(list<_Tp, _Alloc>& __that, _StrictWeakOrdering __comp); 248 #if !defined (list) 253 class list : public _STLP_PRIV _List_base<_Tp, _Alloc> [all …]
|
/ndk/sources/android/cpufeatures/ |
D | cpu-features.c | 188 has_list_item(const char* list, const char* item) in has_list_item() argument 190 const char* p = list; in has_list_item() 193 if (list == NULL) in has_list_item() 257 cpulist_init(CpuList* list) { in cpulist_init() argument 258 list->mask = 0; in cpulist_init() 267 cpulist_set(CpuList* list, int index) { in cpulist_set() argument 269 list->mask |= (uint32_t)(1U << index); in cpulist_set() 274 cpulist_count(CpuList* list) { in cpulist_count() argument 275 return __builtin_popcount(list->mask); in cpulist_count() 289 cpulist_parse(CpuList* list, const char* line, int line_len) in cpulist_parse() argument [all …]
|
/ndk/sources/cxx-stl/stlport/stlport/stl/pointers/ |
D | _list.h | 29 #define LIST_IMPL _STLP_PTR_IMPL_NAME(list) 54 # define list _STLP_NON_DBG_NAME(list) macro 59 class list 60 #if defined (_STLP_USE_PARTIAL_SPEC_WORKAROUND) && !defined (list) 61 : public __stlport_class<list<_Tp, _Alloc> > 70 typedef list<_Tp, _Alloc> _Self; 92 explicit list(const allocator_type& __a = allocator_type()) 96 explicit list(size_type __n, const value_type& __val = _STLP_DEFAULT_CONSTRUCTED(value_type), 98 list(size_type __n, const value_type& __val, 105 explicit list(size_type __n) in list() function [all …]
|
/ndk/sources/host-tools/make-3.81/ |
D | Makefile.in | 383 @list='$(bin_PROGRAMS)'; for p in $$list; do \ 395 @list='$(bin_PROGRAMS)'; for p in $$list; do \ 557 *.1*) list="$$list $$i" ;; \ 560 for i in $$list; do \ 580 *.1*) list="$$list $$i" ;; \ 583 for i in $$list; do \ 612 list='$(SUBDIRS)'; for subdir in $$list; do \ 641 rev=''; for subdir in $$list; do \ 659 list='$(SUBDIRS)'; for subdir in $$list; do \ 663 list='$(SUBDIRS)'; for subdir in $$list; do \ [all …]
|
D | Makefile.DOS | 161 …@list='$(bin_PROGRAMS)'; for p in $$list; do if test -f $$p; then echo " $(INSTALL_PROGRA… 165 …list='$(bin_PROGRAMS)'; for p in $$list; do rm -f $(DESTDIR)$(bindir)/`echo $$p|sed '$(transfor… 244 *.1*) list="$$list $$i" ;; \ 247 for i in $$list; do \ 261 *.1*) list="$$list $$i" ;; \ 264 for i in $$list; do \
|
D | main.c | 131 char **list; /* Nil-terminated list of strings. */ member 603 for (pp=db_flags->list; *pp; ++pp) in decode_debug_flags() 1361 for (i = 0; directories->list[i] != 0; ++i) in main() 1363 char *dir = directories->list[i]; in main() 1424 : include_directories->list); in main() 1457 if (makefiles->list[i][0] == '-' && makefiles->list[i][1] == '\0') in main() 1517 makefiles->list[i] = xstrdup (stdin_nm); in main() 1596 = read_all_makefiles (makefiles == 0 ? (char **) 0 : makefiles->list); in main() 1655 if (!streq (jobserver_fds->list[0], jobserver_fds->list[ui])) in main() 1660 cp = jobserver_fds->list[0]; in main() [all …]
|
/ndk/sources/host-tools/sed-4.2.1/doc/ |
D | Makefile.in | 685 @list='$(DVIS)'; for p in $$list; do \ 693 @list='$(HTMLS)'; for p in $$list; do \ 704 list='$(INFO_DEPS)'; \ 705 for file in $$list; do \ 712 @list='$(INFO_DEPS)'; \ 713 for file in $$list; do \ 724 @list='$(PDFS)'; for p in $$list; do \ 732 @list='$(PSS)'; for p in $$list; do \ 740 list='$(INFO_DEPS)'; \ 741 for base in $$list; do \ [all …]
|
/ndk/build/core/ |
D | definitions.mk | 267 define generate-list-file-slice 273 define generate-list-file-ev 281 $(call generate-list-file-slice,100,199,$1) 282 $(call generate-list-file-slice,200,299,$1) 283 $(call generate-list-file-slice,300,399,$1) 284 $(call generate-list-file-slice,400,499,$1) 285 $(call generate-list-file-slice,500,599,$1) 286 $(call generate-list-file-slice,600,699,$1) 287 $(call generate-list-file-slice,700,799,$1) 288 $(call generate-list-file-slice,800,899,$1) [all …]
|
D | build-binary.mk | 307 $(call ndk_log,Building static library module '$(LOCAL_MODULE)' with linker list file) 309 ar_list_file := $(LOCAL_OBJS_DIR)/archiver.list 311 $(call generate-list-file,$(ar_options),$(ar_list_file)) 318 $(call ndk_log,Building ELF binary module '$(LOCAL_MODULE)' with linker list file) 320 linker_list_file := $(LOCAL_OBJS_DIR)/linker.list 323 $(call generate-list-file,$(linker_options),$(linker_list_file))
|
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/ |
D | _list.h | 41 #define _STLP_NON_DBG_LIST _STLP_PRIV _STLP_NON_DBG_NAME(list) <_Tp, _Alloc> 57 class list : 63 , public __stlport_class<list<_Tp, _Alloc> > 67 typedef list<_Tp, _Alloc> _Self; 91 explicit list(const allocator_type& __a = allocator_type()) : 95 explicit list(size_type __n, const _Tp& __x = _Tp(), 97 list(size_type __n, const _Tp& __x, 103 explicit list(size_type __n) in list() function 108 list(__move_source<_Self> src) in list() function 121 list(_InputIterator __first, _InputIterator __last, in list() function [all …]
|
/ndk/build/gmsl/ |
D | __gmsl | 17 # notice, this list of conditions and the following disclaimer. 20 # notice, this list of conditions and the following disclaimer in the 42 # This is the GNU Make Standard Library version number as a list with 180 # Arguments: 1: A list 181 # Returns: Returns the first element of a list 187 # Arguments: 1: A list 188 # Returns: Returns the last element of a list 198 # Arguments: 1: A list 199 # Returns: Returns the list with the first element removed 205 # Arguments: 1: A list [all …]
|
/ndk/sources/host-tools/make-3.81/tests/scripts/functions/ |
D | word | 135 list := $(void) foo bar baz # 137 a := $(word 1,$(list)) 138 b := $(firstword $(list)) 153 list := $(void) foo bar baz # 155 a := $(word $(words $(list)),$(list)) 156 b := $(lastword $(list))
|
/ndk/sources/host-tools/make-3.81/doc/ |
D | Makefile.in | 314 list='$(INFO_DEPS)'; \ 315 for file in $$list; do \ 322 @list='$(INFO_DEPS)'; \ 323 for file in $$list; do \ 334 list='$(INFO_DEPS)'; \ 335 for base in $$list; do \ 353 @list='$(INFO_DEPS)'; for i in $$list; do \ 368 list='$(DISTFILES)'; for file in $$list; do \ 455 list='$(INFO_DEPS)'; \ 456 for file in $$list; do \ [all …]
|
/ndk/sources/host-tools/sed-4.2.1/ |
D | Makefile.in | 660 list='$(SUBDIRS)'; for subdir in $$list; do \ 685 distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ 686 *) list='$(SUBDIRS)' ;; \ 688 rev=''; for subdir in $$list; do \ 706 list='$(SUBDIRS)'; for subdir in $$list; do \ 710 list='$(SUBDIRS)'; for subdir in $$list; do \ 715 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ 716 unique=`for i in $$list; do \ 735 list='$(SUBDIRS)'; for subdir in $$list; do \ 741 list='$(SOURCES) $(HEADERS) config_h.in $(LISP) $(TAGS_FILES)'; \ [all …]
|
/ndk/sources/host-tools/make-3.81/glob/ |
D | Makefile.in | 274 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ 275 unique=`for i in $$list; do \ 287 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ 288 unique=`for i in $$list; do \ 303 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ 304 unique=`for i in $$list; do \ 324 list='$(DISTFILES)'; for file in $$list; do \
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
D | Makefile.in | 698 @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ 789 list='$(SUBDIRS)'; for subdir in $$list; do \ 814 distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ 815 *) list='$(SUBDIRS)' ;; \ 817 rev=''; for subdir in $$list; do \ 835 list='$(SUBDIRS)'; for subdir in $$list; do \ 839 list='$(SUBDIRS)'; for subdir in $$list; do \ 844 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ 845 unique=`for i in $$list; do \ 864 list='$(SUBDIRS)'; for subdir in $$list; do \ [all …]
|
/ndk/ |
D | README.TXT | 8 See docs/CHANGES.html for a list of changes since the previous release. 14 See docs/STABLE-APIS.html for the list of frozen binary APIs exposed by 28 See docs/SYSTEM-ISSUES.html for a list of important issues related to
|