HomeSort by relevance Sort by last modified time
    Searched full:_node (Results 1 - 25 of 233) sorted by null

1 2 3 4 5 6 7 8 910

  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pgen.h 12 struct _node;
13 extern grammar *pgen(struct _node *);
compile.h 12 struct _node; /* Declare the existence of this type */
13 PyAPI_FUNC(PyCodeObject *) PyNode_Compile(struct _node *, const char *);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pgen.h 12 struct _node;
13 extern grammar *pgen(struct _node *);
compile.h 12 struct _node; /* Declare the existence of this type */
13 PyAPI_FUNC(PyCodeObject *) PyNode_Compile(struct _node *, const char *);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/rc_binomial_heap_/
rc.hpp 49 template<typename _Node, typename _Alloc>
55 typedef _Node node;
120 template<typename _Node, typename _Alloc>
121 rc<_Node, _Alloc>::
125 template<typename _Node, typename _Alloc>
126 rc<_Node, _Alloc>::
127 rc(const rc<_Node, _Alloc>& other) : m_over_top(0)
130 template<typename _Node, typename _Alloc>
132 rc<_Node, _Alloc>::
133 swap(rc<_Node, _Alloc>& other
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/rc_binomial_heap_/
rc.hpp 49 template<typename _Node, typename _Alloc>
55 typedef _Node node;
120 template<typename _Node, typename _Alloc>
121 rc<_Node, _Alloc>::
125 template<typename _Node, typename _Alloc>
126 rc<_Node, _Alloc>::
127 rc(const rc<_Node, _Alloc>& other) : m_over_top(0)
130 template<typename _Node, typename _Alloc>
132 rc<_Node, _Alloc>::
133 swap(rc<_Node, _Alloc>& other
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/pb_ds/detail/rc_binomial_heap_/
rc.hpp 49 template<typename _Node, typename _Alloc>
55 typedef _Node node;
120 template<typename _Node, typename _Alloc>
121 rc<_Node, _Alloc>::
125 template<typename _Node, typename _Alloc>
126 rc<_Node, _Alloc>::
127 rc(const rc<_Node, _Alloc>& other) : m_over_top(0)
130 template<typename _Node, typename _Alloc>
132 rc<_Node, _Alloc>::
133 swap(rc<_Node, _Alloc>& other
    [all...]
  /external/chromium_org/third_party/bintrees/bintrees/
walker.py 13 __slots__ = ['_node', '_stack', '_tree']
17 self._node = tree.root
22 self._node = self._tree.root
26 return self._node.key
30 return self._node.value
34 return (self._node.key, self._node.value)
38 return self._node is not None
41 self._node = self._tree.root
42 while self._node is not None
    [all...]
  /external/freetype/src/cache/
ftccache.h 212 FTC_Node *_bucket, *_pnode, _node; \
229 _node = *_pnode; \
230 if ( _node == NULL ) \
233 if ( _node->hash == _hash && \
234 _nodcomp( _node, query, _cache, &_list_changed ) ) \
237 _pnode = &_node->link; \
246 while ( *_pnode != _node ) \
259 if ( _node != *_bucket ) \
261 *_pnode = _node->link; \
262 _node->link = *_bucket;
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
forward_list.tcc 51 _Node* __curr = static_cast<_Node*>(__lst._M_impl._M_head._M_next);
58 __curr = static_cast<_Node*>(__curr->_M_next);
71 _Node* __thing = _M_create_node(std::forward<_Args>(__args)...);
82 _Node* __curr = static_cast<_Node*>(__pos->_M_next);
86 __curr->~_Node();
97 _Node* __curr = static_cast<_Node*>(__pos->_M_next);
100 _Node* __temp = __curr
    [all...]
  /system/core/include/sysutils/
List.h 49 class _Node {
51 explicit _Node(const T& val) : mVal(val) {}
52 ~_Node() {}
55 inline _Node* getPrev() const { return mpPrev; }
56 inline _Node* getNext() const { return mpNext; }
58 inline void setPrev(_Node* ptr) { mpPrev = ptr; }
59 inline void setNext(_Node* ptr) { mpNext = ptr; }
64 _Node* mpPrev;
65 _Node* mpNext;
74 typedef _Node const * NodePtr
    [all...]
  /system/core/include/utils/
List.h 48 class _Node {
50 explicit _Node(const T& val) : mVal(val) {}
51 ~_Node() {}
54 inline _Node* getPrev() const { return mpPrev; }
55 inline _Node* getNext() const { return mpNext; }
57 inline void setPrev(_Node* ptr) { mpPrev = ptr; }
58 inline void setNext(_Node* ptr) { mpNext = ptr; }
63 _Node* mpPrev;
64 _Node* mpNext;
73 typedef _Node const * NodePtr
    [all...]
  /system/netd/
List.h 49 class _Node {
51 explicit _Node(const T& val) : mVal(val) {}
52 ~_Node() {}
55 inline _Node* getPrev() const { return mpPrev; }
56 inline _Node* getNext() const { return mpNext; }
58 inline void setPrev(_Node* ptr) { mpPrev = ptr; }
59 inline void setNext(_Node* ptr) { mpNext = ptr; }
64 _Node* mpPrev;
65 _Node* mpNext;
74 typedef _Node const * NodePtr
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
forward_list.tcc 44 _Node* __curr = static_cast<_Node*>(__lst._M_impl._M_head._M_next);
50 __curr = static_cast<_Node*>(__curr->_M_next);
62 _Node* __thing = _M_create_node(std::forward<_Args>(__args)...);
73 _Node* __curr = static_cast<_Node*>(__pos->_M_next);
86 _Node* __curr = static_cast<_Node*>(__pos->_M_next);
89 _Node* __temp = __curr;
90 __curr = static_cast<_Node*>(__curr->_M_next)
    [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.tcc 44 _Node* __curr = static_cast<_Node*>(__lst._M_impl._M_head._M_next);
50 __curr = static_cast<_Node*>(__curr->_M_next);
62 _Node* __thing = _M_create_node(std::forward<_Args>(__args)...);
73 _Node* __curr = static_cast<_Node*>(__pos->_M_next);
86 _Node* __curr = static_cast<_Node*>(__pos->_M_next);
89 _Node* __temp = __curr;
90 __curr = static_cast<_Node*>(__curr->_M_next)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
forward_list.tcc 44 _Node* __curr = static_cast<_Node*>(__lst._M_impl._M_head._M_next);
50 __curr = static_cast<_Node*>(__curr->_M_next);
62 _Node* __thing = _M_create_node(std::forward<_Args>(__args)...);
73 _Node* __curr = static_cast<_Node*>(__pos->_M_next);
86 _Node* __curr = static_cast<_Node*>(__pos->_M_next);
89 _Node* __temp = __curr;
90 __curr = static_cast<_Node*>(__curr->_M_next)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
forward_list.tcc 44 _Node* __curr = static_cast<_Node*>(__lst._M_impl._M_head._M_next);
50 __curr = static_cast<_Node*>(__curr->_M_next);
62 _Node* __thing = _M_create_node(std::forward<_Args>(__args)...);
73 _Node* __curr = static_cast<_Node*>(__pos->_M_next);
86 _Node* __curr = static_cast<_Node*>(__pos->_M_next);
89 _Node* __temp = __curr;
90 __curr = static_cast<_Node*>(__curr->_M_next)
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
forward_list.tcc 44 _Node* __curr = static_cast<_Node*>(__lst._M_impl._M_head._M_next);
50 __curr = static_cast<_Node*>(__curr->_M_next);
62 _Node* __thing = _M_create_node(std::forward<_Args>(__args)...);
73 _Node* __curr = static_cast<_Node*>(__pos->_M_next);
86 _Node* __curr = static_cast<_Node*>(__pos->_M_next);
89 _Node* __temp = __curr;
90 __curr = static_cast<_Node*>(__curr->_M_next)
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
forward_list.tcc 44 _Node* __curr = static_cast<_Node*>(__lst._M_impl._M_head._M_next);
50 __curr = static_cast<_Node*>(__curr->_M_next);
62 _Node* __thing = _M_create_node(std::forward<_Args>(__args)...);
73 _Node* __curr = static_cast<_Node*>(__pos->_M_next);
86 _Node* __curr = static_cast<_Node*>(__pos->_M_next);
89 _Node* __temp = __curr;
90 __curr = static_cast<_Node*>(__curr->_M_next)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/backward/
hashtable.h 113 typedef _Hashtable_node<_Val> _Node;
121 _Node* _M_cur;
124 _Hashtable_iterator(_Node* __n, _Hashtable* __tab)
165 typedef _Hashtable_node<_Val> _Node;
174 const _Node* _M_cur;
177 _Hashtable_const_iterator(const _Node* __n, const _Hashtable* __tab)
275 typedef _Hashtable_node<_Val> _Node;
284 typedef typename _Alloc::template rebind<_Node>::other _Node_Alloc;
285 typedef typename _Alloc::template rebind<_Node*>::other _Nodeptr_Alloc;
286 typedef vector<_Node*, _Nodeptr_Alloc> _Vector_type
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/backward/
hashtable.h 115 typedef _Hashtable_node<_Val> _Node;
123 _Node* _M_cur;
126 _Hashtable_iterator(_Node* __n, _Hashtable* __tab)
167 typedef _Hashtable_node<_Val> _Node;
176 const _Node* _M_cur;
179 _Hashtable_const_iterator(const _Node* __n, const _Hashtable* __tab)
293 typedef _Hashtable_node<_Val> _Node;
302 typedef typename _Alloc::template rebind<_Node>::other _Node_Alloc;
303 typedef typename _Alloc::template rebind<_Node*>::other _Nodeptr_Alloc;
304 typedef vector<_Node*, _Nodeptr_Alloc> _Vector_type
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/backward/
hashtable.h 115 typedef _Hashtable_node<_Val> _Node;
123 _Node* _M_cur;
126 _Hashtable_iterator(_Node* __n, _Hashtable* __tab)
167 typedef _Hashtable_node<_Val> _Node;
176 const _Node* _M_cur;
179 _Hashtable_const_iterator(const _Node* __n, const _Hashtable* __tab)
293 typedef _Hashtable_node<_Val> _Node;
302 typedef typename _Alloc::template rebind<_Node>::other _Node_Alloc;
303 typedef typename _Alloc::template rebind<_Node*>::other _Nodeptr_Alloc;
304 typedef vector<_Node*, _Nodeptr_Alloc> _Vector_type
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/backward/
hashtable.h 113 typedef _Hashtable_node<_Val> _Node;
121 _Node* _M_cur;
124 _Hashtable_iterator(_Node* __n, _Hashtable* __tab)
165 typedef _Hashtable_node<_Val> _Node;
174 const _Node* _M_cur;
177 _Hashtable_const_iterator(const _Node* __n, const _Hashtable* __tab)
275 typedef _Hashtable_node<_Val> _Node;
284 typedef typename _Alloc::template rebind<_Node>::other _Node_Alloc;
285 typedef typename _Alloc::template rebind<_Node*>::other _Nodeptr_Alloc;
286 typedef vector<_Node*, _Nodeptr_Alloc> _Vector_type
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/backward/
hashtable.h 113 typedef _Hashtable_node<_Val> _Node;
121 _Node* _M_cur;
124 _Hashtable_iterator(_Node* __n, _Hashtable* __tab)
165 typedef _Hashtable_node<_Val> _Node;
174 const _Node* _M_cur;
177 _Hashtable_const_iterator(const _Node* __n, const _Hashtable* __tab)
275 typedef _Hashtable_node<_Val> _Node;
284 typedef typename _Alloc::template rebind<_Node>::other _Node_Alloc;
285 typedef typename _Alloc::template rebind<_Node*>::other _Nodeptr_Alloc;
286 typedef vector<_Node*, _Nodeptr_Alloc> _Vector_type
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/backward/
hashtable.h 113 typedef _Hashtable_node<_Val> _Node;
121 _Node* _M_cur;
124 _Hashtable_iterator(_Node* __n, _Hashtable* __tab)
165 typedef _Hashtable_node<_Val> _Node;
174 const _Node* _M_cur;
177 _Hashtable_const_iterator(const _Node* __n, const _Hashtable* __tab)
275 typedef _Hashtable_node<_Val> _Node;
284 typedef typename _Alloc::template rebind<_Node>::other _Node_Alloc;
285 typedef typename _Alloc::template rebind<_Node*>::other _Nodeptr_Alloc;
286 typedef vector<_Node*, _Nodeptr_Alloc> _Vector_type
    [all...]

Completed in 1082 milliseconds

1 2 3 4 5 6 7 8 910