HomeSort by relevance Sort by last modified time
    Searched defs:pointer (Results 1101 - 1125 of 1508) sorted by null

<<41424344454647484950>>

  /external/jmdns/src/javax/jmdns/impl/
DNSRecord.java 423 * Pointer record.
425 public static class Pointer extends DNSRecord {
426 // private static Logger logger = Logger.getLogger(Pointer.class.getName());
429 public Pointer(String name, DNSRecordClass recordClass, boolean unique, int ttl, String alias) {
440 return super.isSameEntry(entry) && (entry instanceof Pointer) && this.sameValue((Pointer) entry);
450 if (! (other instanceof Pointer) ) {
453 Pointer pointer = (Pointer) other local
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/objects/
Properties.java 8 import com.jme3.scene.plugins.blender.file.Pointer;
74 Pointer pointer = (Pointer) data.getFieldValue("pointer"); local
76 FileBlockHeader dataFileBlock = blenderContext.getFileBlock(pointer.getOldMemoryAddress());
90 Pointer pointer = (Pointer) data.getFieldValue("pointer"); local
142 Pointer pointer = (Pointer) data.getFieldValue("pointer"); local
    [all...]
  /external/libvncserver/VisualNaCro/
nacro.c 546 const char* pointer; local
551 for(line_count=1,pointer=message;*pointer;pointer++)
552 if(*pointer=='\n')
565 for(pointer=message,j=0;j<line_count;j++) {
569 for(width=0,eol=pointer;*eol && *eol!='\n';eol++)
575 for(;pointer!=eol;pointer++)
577 x_cur,y_cur,*pointer,
    [all...]
  /external/llvm/include/llvm/ADT/
SmallVector.h 108 typedef T *pointer; typedef in class:llvm::SmallVectorTemplateCommon
133 /// Return a pointer to the vector's buffer, even if empty().
134 pointer data() { return pointer(begin()); }
135 /// Return a pointer to the vector's buffer, even if empty().
  /external/llvm/include/llvm/Analysis/
RegionInfo.h 463 /// In case a NULL pointer is passed to this function the result
483 /// @param LI A pointer to a LoopInfo analysis.
570 typedef typename super::pointer pointer; typedef in class:llvm::RegionBase::block_iterator_wrapper
573 block_iterator_wrapper(pointer Entry, pointer Exit)
582 block_iterator_wrapper() : super(df_end<pointer>((BlockT *)nullptr)) {}
586 // FIXME: Even a const_iterator returns a non-const BasicBlock pointer.
    [all...]
  /external/opencv/cv/src/
cvconvhull.cpp 199 icvCalcAndWritePtIndices( CvPoint** pointer, int* stack, int start, int end,
211 CvPoint* ptr = (CvPoint*)pointer[stack[i]];
232 CvPoint** pointer = 0; local
332 CV_CALL( pointer = (CvPoint**)cvAlloc( ptseq->total*sizeof(pointer[0]) ));
334 pointerf = (CvPoint2D32f**)pointer;
340 pointer[i] = (CvPoint*)reader.ptr;
347 icvSortPointsByPointers_32s( pointer, total, 0 );
350 int y = pointer[i]->y;
351 if( pointer[miny_ind]->y > y
    [all...]
  /external/v8/src/
property-details.h 207 int pointer() const { return DescriptorPointer::decode(value_); } function in class:v8::internal::BASE_EMBEDDED
284 PropertyDetails(int value, int pointer) {
285 value_ = DescriptorPointer::update(value, pointer);
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_hashtable.h 68 //If pointer specialization is enabled vector<_Slist_node_base*> will use the void*
115 typedef typename _Traits::pointer pointer; typedef in struct:_Ht_iterator
240 typedef typename _NonConstTraits::pointer pointer; typedef in class:hashtable
_list.h 99 typedef typename _Traits::pointer pointer; typedef in struct:_List_iterator
264 typedef value_type* pointer; typedef in class:list
_slist.h 83 typedef typename _Traits::pointer pointer; typedef in class:_Slist_iterator
231 typedef value_type* pointer; typedef in class:slist
885 typedef void pointer; typedef in class:insert_iterator
_string.h 134 typedef value_type* pointer; typedef in class:basic_string
474 pointer __new_start = this->_M_start_of_storage.allocate(__len, __len);
475 pointer __new_finish = uninitialized_copy(this->_M_Start(), this->_M_Finish(), __new_start);
578 pointer __cur = this->_M_Start();
673 pointer _M_insert_aux(pointer, _CharT);
692 pointer __new_start = this->_M_start_of_storage.allocate(__len, __len);
693 pointer __new_finish = uninitialized_copy(this->_M_Start(), __pos, __new_start);
724 pointer __old_finish = this->_M_Finish();
755 void _M_copyT(_InputIterator __first, _InputIterator __last, pointer __result)
    [all...]
_tree.h 149 typedef typename _Traits::pointer pointer; typedef in struct:_Rb_tree_iterator
161 /* In STL debug mode we need this constructor implicit for the pointer
303 typedef typename _Traits::pointer pointer; typedef in class:_Rb_tree
_vector.h 63 typedef _Tp* pointer; typedef in class:_Vector_base
64 typedef _STLP_alloc_proxy<pointer, _Tp, allocator_type> _AllocProxy;
87 if (_M_start != _STLP_DEFAULT_CONSTRUCTED(pointer))
95 pointer _M_start;
96 pointer _M_finish;
122 typedef value_type* pointer; typedef in class:vector
144 void _M_insert_overflow_aux(pointer __pos, const _Tp& __x, const __false_type& /*_Movable*/,
146 void _M_insert_overflow_aux(pointer __pos, const _Tp& __x, const __true_type& /*_Movable*/,
157 void _M_insert_overflow(pointer __pos, const _Tp& __x, const __false_type& /*_TrivialCopy*/,
164 void _M_insert_overflow(pointer __pos, const _Tp& __x, const __true_type& /*_TrivialCopy*/
    [all...]
concept_checks.h 164 // the pointer type, then use the typedef name for the __type_var.
515 typedef typename __STD::iterator_traits<_Iter>::pointer pointer; typedef in struct:__pointer_type_definition_requirement_violation
777 _STLP_TYPEDEF_REQUIREMENT(pointer); variable
  /ndk/sources/host-tools/make-3.81/
alloca.c 71 typedef void *pointer; typedef
73 typedef char *pointer; typedef
93 extern pointer malloc ();
163 /* Return a pointer to at least SIZE bytes of storage,
170 pointer
197 free ((pointer) hp); /* Collect garbage. */
217 register pointer new = malloc (sizeof (header) + size);
230 return (pointer) ((char *) new + sizeof (header));
268 long sstcpt:32; /* Pointer to task common address block. */
274 long ssgvup; /* Pointer to multitasking thread giveup. *
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/backward/
hashtable.h 120 typedef _Val* pointer; typedef in struct:_Hashtable_iterator
134 pointer
172 typedef const _Val* pointer; typedef in struct:_Hashtable_const_iterator
189 pointer
277 typedef value_type* pointer; typedef in class:hashtable
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
forward_list.h 127 typedef _Tp* pointer; typedef in struct:_Fwd_list_iterator
143 pointer
195 typedef const _Tp* pointer; typedef in struct:_Fwd_list_const_iterator
214 pointer
422 typedef typename _Alloc_traits::pointer pointer; typedef in class:forward_list
936 * is itself a pointer, the pointed-to memory is not touched in
937 * any way. Managing the pointer is the user's responsibility.
959 * pointed-to memory is not touched in any way. Managing the pointer
    [all...]
hashtable.h 129 * node pointer in a bucket shall never be dereferenced, only its
156 * "this" pointer. _Hashtable_base is used in the base classes as a
194 typedef typename _Alloc::pointer pointer; typedef in class:_Hashtable
    [all...]
hashtable_policy.h 243 using pointer = typename std::conditional<__constant_iterators,
260 pointer
294 typedef const _Value* pointer; typedef in struct:__detail::_Node_const_iterator
312 pointer
1291 pointer; typedef in struct:__detail::_Local_iterator
1345 typedef const _Value* pointer; typedef in struct:__detail::_Local_const_iterator
    [all...]
stl_deque.h 116 typedef _Ptr pointer; typedef in struct:_Deque_iterator
143 pointer
684 * Not every pointer in the %map array will point to a node. If
699 * - i.cur is a pointer in the range [i.first, i.last). NOTE:
701 * pointer, even if i is a past-the-end iterator.
716 * - A pointer in the range [%map, %map + map_size) points to an allocated
717 * node if and only if the pointer is in the range
742 typedef typename _Tp_alloc_type::pointer pointer; typedef in class:deque
755 typedef pointer* _Map_pointer
    [all...]
stl_list.h 133 typedef _Tp* pointer; typedef in struct:_List_iterator
148 pointer
209 typedef const _Tp* pointer; typedef in struct:_List_const_iterator
228 pointer
451 typedef typename _Tp_alloc_type::pointer pointer; typedef in class:list
644 * memory is not touched in any way. Managing the pointer is
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/
mt_allocator.h 575 typedef _Tp* pointer; typedef in class:__mt_alloc_base
587 pointer
612 construct(pointer __p, const _Tp& __val)
616 destroy(pointer __p) { __p->~_Tp(); }
644 typedef _Tp* pointer; typedef in class:__mt_alloc
668 pointer
672 deallocate(pointer __p, size_type __n);
687 typename __mt_alloc<_Tp, _Poolp>::pointer
736 deallocate(pointer __p, size_type __n)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/ov_tree_map_/
ov_tree_map_.hpp 124 typedef typename value_allocator::pointer value_vector;
134 typedef typename traits_base::pointer mapped_pointer_;
140 typedef typename metadata_allocator::pointer metadata_pointer;
165 typedef typename traits_base::pointer pointer; typedef in class:__gnu_pbds::detail::PB_DS_OV_TREE_NAME
172 typedef pointer point_iterator;
293 pointer it = m_a_values;
294 pointer e_it = m_a_values + m_size;
297 pointer mid_it = it + ((e_it - it) >> 1);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/pat_trie_/
pat_trie_.hpp 121 typedef typename __rebind_n::other::pointer node_pointer;
126 typedef typename head_allocator::pointer head_pointer;
131 typedef typename leaf_allocator::pointer leaf_pointer;
139 typedef typename __rebind_ina::pointer inode_pointer;
254 typedef typename traits_base::pointer pointer; typedef in class:__gnu_pbds::detail::PB_DS_PAT_TRIE_NAME
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/tr1/
hashtable.h 137 typedef typename _Allocator::pointer pointer; typedef in class:tr1::_Hashtable
492 // non-null pointer. Iterator increment relies on this.
    [all...]

Completed in 1554 milliseconds

<<41424344454647484950>>