HomeSort by relevance Sort by last modified time
    Searched refs:__list (Results 1 - 25 of 86) sorted by null

1 2 3 4

  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
forward_list.h 441 * @param __list Input list to copy.
444 forward_list(const forward_list& __list, const _Alloc& __al)
445 : _Base(__list, _Node_alloc_type(__al))
450 * @param __list Input list to move.
453 forward_list(forward_list&& __list, const _Alloc& __al)
454 : _Base(std::move(__list), _Node_alloc_type(__al))
505 * @param __list A %forward_list of identical element and allocator
509 * object used by @a __list.
511 forward_list(const forward_list& __list)
512 : _Base(__list._M_get_Node_allocator()
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
forward_list.h 441 * @param __list Input list to copy.
444 forward_list(const forward_list& __list, const _Alloc& __al)
445 : _Base(__list, _Node_alloc_type(__al))
450 * @param __list Input list to move.
453 forward_list(forward_list&& __list, const _Alloc& __al)
454 : _Base(std::move(__list), _Node_alloc_type(__al))
505 * @param __list A %forward_list of identical element and allocator
509 * object used by @a __list.
511 forward_list(const forward_list& __list)
512 : _Base(__list._M_get_Node_allocator()
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
xattr.h 75 extern ssize_t listxattr (__const char *__path, char *__list, size_t __size)
81 extern ssize_t llistxattr (__const char *__path, char *__list, size_t __size)
86 extern ssize_t flistxattr (int __fd, char *__list, size_t __size)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/
xattr.h 75 extern ssize_t listxattr (__const char *__path, char *__list, size_t __size)
81 extern ssize_t llistxattr (__const char *__path, char *__list, size_t __size)
86 extern ssize_t flistxattr (int __fd, char *__list, size_t __size)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/
xattr.h 75 extern ssize_t listxattr (__const char *__path, char *__list, size_t __size)
81 extern ssize_t llistxattr (__const char *__path, char *__list, size_t __size)
86 extern ssize_t flistxattr (int __fd, char *__list, size_t __size)
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_double_list.h 97 #define LIST_ADD(__item, __list) list_add(__item, __list)
98 #define LIST_ADDTAIL(__item, __list) list_addtail(__item, __list)
106 #define LIST_IS_EMPTY(__list) \
107 ((__list)->next == (__list))
  /external/mesa3d/src/gallium/auxiliary/util/
u_double_list.h 97 #define LIST_ADD(__item, __list) list_add(__item, __list)
98 #define LIST_ADDTAIL(__item, __list) list_addtail(__item, __list)
106 #define LIST_IS_EMPTY(__list) \
107 ((__list)->next == (__list))
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
forward_list.h 446 * @param __list Input list to copy.
449 forward_list(const forward_list& __list, const _Alloc& __al)
451 { _M_range_initialize(__list.begin(), __list.end()); }
455 * @param __list Input list to move.
458 forward_list(forward_list&& __list, const _Alloc& __al)
460 : _Base(std::move(__list), _Node_alloc_type(__al))
508 * @param __list A %forward_list of identical element and allocator
511 forward_list(const forward_list& __list)
513 __list._M_get_Node_allocator())
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
list.h 474 #define foreach_list_safe(__node, __list) \
475 for (exec_node * __node = (__list)->head, * __next = __node->next \
479 #define foreach_list(__node, __list) \
480 for (exec_node * __node = (__list)->head \
484 #define foreach_list_const(__node, __list) \
485 for (const exec_node * __node = (__list)->head \
489 #define foreach_list_typed(__type, __node, __field, __list) \
491 exec_node_data(__type, (__list)->head, __field); \
495 #define foreach_list_typed_const(__type, __node, __field, __list) \
497 exec_node_data(__type, (__list)->head, __field);
    [all...]
  /external/mesa3d/src/glsl/
list.h 474 #define foreach_list_safe(__node, __list) \
475 for (exec_node * __node = (__list)->head, * __next = __node->next \
479 #define foreach_list(__node, __list) \
480 for (exec_node * __node = (__list)->head \
484 #define foreach_list_const(__node, __list) \
485 for (const exec_node * __node = (__list)->head \
489 #define foreach_list_typed(__type, __node, __field, __list) \
491 exec_node_data(__type, (__list)->head, __field); \
495 #define foreach_list_typed_const(__type, __node, __field, __list) \
497 exec_node_data(__type, (__list)->head, __field);
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
forward_list.h 446 forward_list(const forward_list& __list, const _Alloc& __al)
447 : _Base(__list, __al)
455 forward_list(forward_list&& __list, const _Alloc& __al)
456 : _Base(std::move(__list), __al)
513 forward_list(const forward_list& __list)
514 : _Base(__list._M_get_Node_allocator())
515 { _M_initialize_dispatch(__list.begin(), __list.end(), __false_type()); }
526 forward_list(forward_list&& __list)
527 : _Base(std::move(__list)) { }
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
forward_list.h 446 forward_list(const forward_list& __list, const _Alloc& __al)
447 : _Base(__list, __al)
455 forward_list(forward_list&& __list, const _Alloc& __al)
456 : _Base(std::move(__list), __al)
513 forward_list(const forward_list& __list)
514 : _Base(__list._M_get_Node_allocator())
515 { _M_initialize_dispatch(__list.begin(), __list.end(), __false_type()); }
526 forward_list(forward_list&& __list)
527 : _Base(std::move(__list)) { }
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
forward_list.h 446 forward_list(const forward_list& __list, const _Alloc& __al)
447 : _Base(__list, __al)
455 forward_list(forward_list&& __list, const _Alloc& __al)
456 : _Base(std::move(__list), __al)
513 forward_list(const forward_list& __list)
514 : _Base(__list._M_get_Node_allocator())
515 { _M_initialize_dispatch(__list.begin(), __list.end(), __false_type()); }
526 forward_list(forward_list&& __list)
527 : _Base(std::move(__list)) { }
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
forward_list.h 446 forward_list(const forward_list& __list, const _Alloc& __al)
447 : _Base(__list, __al)
455 forward_list(forward_list&& __list, const _Alloc& __al)
456 : _Base(std::move(__list), __al)
513 forward_list(const forward_list& __list)
514 : _Base(__list._M_get_Node_allocator())
515 { _M_initialize_dispatch(__list.begin(), __list.end(), __false_type()); }
526 forward_list(forward_list&& __list)
527 : _Base(std::move(__list)) { }
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
aio.h 151 struct aiocb *__const __list[__restrict_arr],
169 extern int aio_suspend (__const struct aiocb *__const __list[], int __nent,
186 struct aiocb *__const __list[__restrict_arr],
200 (__const struct aiocb *__const __list[], int __nent,
225 struct aiocb64 *__const __list[__restrict_arr],
236 extern int aio_suspend64 (__const struct aiocb64 *__const __list[], int __nent,
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
aio.h 151 struct aiocb *__const __list[__restrict_arr],
169 extern int aio_suspend (__const struct aiocb *__const __list[], int __nent,
186 struct aiocb *__const __list[__restrict_arr],
200 (__const struct aiocb *__const __list[], int __nent,
225 struct aiocb64 *__const __list[__restrict_arr],
236 extern int aio_suspend64 (__const struct aiocb64 *__const __list[], int __nent,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
aio.h 151 struct aiocb *__const __list[__restrict_arr],
169 extern int aio_suspend (__const struct aiocb *__const __list[], int __nent,
186 struct aiocb *__const __list[__restrict_arr],
200 (__const struct aiocb *__const __list[], int __nent,
225 struct aiocb64 *__const __list[__restrict_arr],
236 extern int aio_suspend64 (__const struct aiocb64 *__const __list[], int __nent,
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
forward_list.h 435 forward_list(const forward_list& __list, const _Alloc& __al)
436 : _Base(__list, __al)
444 forward_list(forward_list&& __list, const _Alloc& __al)
445 : _Base(std::forward<_Base>(__list), __al)
503 forward_list(const forward_list& __list)
504 : _Base(__list.get_allocator())
505 { _M_initialize_dispatch(__list.begin(), __list.end(), __false_type()); }
516 forward_list(forward_list&& __list)
517 : _Base(std::forward<_Base>(__list)) { }
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
forward_list.h 435 forward_list(const forward_list& __list, const _Alloc& __al)
436 : _Base(__list, __al)
444 forward_list(forward_list&& __list, const _Alloc& __al)
445 : _Base(std::forward<_Base>(__list), __al)
503 forward_list(const forward_list& __list)
504 : _Base(__list.get_allocator())
505 { _M_initialize_dispatch(__list.begin(), __list.end(), __false_type()); }
516 forward_list(forward_list&& __list)
517 : _Base(std::forward<_Base>(__list)) { }
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
forward_list.h 435 forward_list(const forward_list& __list, const _Alloc& __al)
436 : _Base(__list, __al)
444 forward_list(forward_list&& __list, const _Alloc& __al)
445 : _Base(std::forward<_Base>(__list), __al)
503 forward_list(const forward_list& __list)
504 : _Base(__list.get_allocator())
505 { _M_initialize_dispatch(__list.begin(), __list.end(), __false_type()); }
516 forward_list(forward_list&& __list)
517 : _Base(std::forward<_Base>(__list)) { }
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
forward_list.h 435 forward_list(const forward_list& __list, const _Alloc& __al)
436 : _Base(__list, __al)
444 forward_list(forward_list&& __list, const _Alloc& __al)
445 : _Base(std::forward<_Base>(__list), __al)
503 forward_list(const forward_list& __list)
504 : _Base(__list.get_allocator())
505 { _M_initialize_dispatch(__list.begin(), __list.end(), __false_type()); }
516 forward_list(forward_list&& __list)
517 : _Base(std::forward<_Base>(__list)) { }
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
forward_list.h 435 forward_list(const forward_list& __list, const _Alloc& __al)
436 : _Base(__list, __al)
444 forward_list(forward_list&& __list, const _Alloc& __al)
445 : _Base(std::forward<_Base>(__list), __al)
503 forward_list(const forward_list& __list)
504 : _Base(__list.get_allocator())
505 { _M_initialize_dispatch(__list.begin(), __list.end(), __false_type()); }
516 forward_list(forward_list&& __list)
517 : _Base(std::forward<_Base>(__list)) { }
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
unistd.h 255 extern int __getgroups_chk (int __size, __gid_t __list[], size_t __listlen)
257 extern int __REDIRECT_NTH (__getgroups_alias, (int __size, __gid_t __list[]),
260 (int __size, __gid_t __list[], size_t __listlen),
266 __NTH (getgroups (int __size, __gid_t __list[]))
268 if (__bos (__list) != (size_t) -1)
271 return __getgroups_chk (__size, __list, __bos (__list));
273 if (__size * sizeof (__gid_t) > __bos (__list))
274 return __getgroups_chk_warn (__size, __list, __bos (__list));
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/
unistd.h 255 extern int __getgroups_chk (int __size, __gid_t __list[], size_t __listlen)
257 extern int __REDIRECT_NTH (__getgroups_alias, (int __size, __gid_t __list[]),
260 (int __size, __gid_t __list[], size_t __listlen),
266 __NTH (getgroups (int __size, __gid_t __list[]))
268 if (__bos (__list) != (size_t) -1)
271 return __getgroups_chk (__size, __list, __bos (__list));
273 if (__size * sizeof (__gid_t) > __bos (__list))
274 return __getgroups_chk_warn (__size, __list, __bos (__list));
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/
unistd.h 255 extern int __getgroups_chk (int __size, __gid_t __list[], size_t __listlen)
257 extern int __REDIRECT_NTH (__getgroups_alias, (int __size, __gid_t __list[]),
260 (int __size, __gid_t __list[], size_t __listlen),
266 __NTH (getgroups (int __size, __gid_t __list[]))
268 if (__bos (__list) != (size_t) -1)
271 return __getgroups_chk (__size, __list, __bos (__list));
273 if (__size * sizeof (__gid_t) > __bos (__list))
274 return __getgroups_chk_warn (__size, __list, __bos (__list));
    [all...]

Completed in 1305 milliseconds

1 2 3 4