Searched defs:remove (Results 1 - 25 of 552) sorted by last modified time

1234567891011>>

/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPIteratorImpl.java160 * @see java.util.Iterator#remove()
162 public void remove() method in class:XMPIteratorImpl
164 throw new UnsupportedOperationException("The XMPIterator does not support remove().");
385 * @see Iterator#remove()
387 public void remove() method in class:XMPIteratorImpl.NodeIterator
/external/stlport/stlport/stl/
H A D_algo.h50 // remove() conflict
235 // remove, remove_if, remove_copy, remove_copy_if
265 remove(_ForwardIter __first, _ForwardIter __last, const _Tp& __val) { function
H A D_list.h634 void remove(const_reference __val) { function in class:list
H A D_slist.c119 void slist<_Tp,_Alloc>::remove(const _Tp& __val) { function in class:_Alloc
/external/stlport/stlport/stl/debug/
H A D_list.h339 void remove(const _Tp& __x) { function in class:list
H A D_slist.h502 void remove(const value_type& __val) { function in class:slist
/external/stlport/stlport/stl/pointers/
H A D_list.h301 void remove(const_reference __val) function in class:list
302 { _M_impl.remove(cast_traits::to_storage_type_cref(__val)); }
H A D_slist.h383 void remove(const value_type& __val) { _M_impl.remove(cast_traits::to_storage_type_cref(__val)); } function in class:slist
/external/srec/portable/include/
H A DArrayList.h73 ESR_ReturnCode(*remove)(struct ArrayList_t* self, const void* element); member in struct:ArrayList_t
/external/srec/shared/include/
H A DHashMap.h61 ESR_ReturnCode(*remove)(struct HashMap_t* self, const LCHAR* key); member in struct:HashMap_t
H A DInt8ArrayList.h56 ESR_ReturnCode(*remove)(struct Int8ArrayList_t* self, asr_int8_t element); member in struct:Int8ArrayList_t
H A DIntArrayList.h56 ESR_ReturnCode(*remove)(struct IntArrayList_t* self, int element); member in struct:IntArrayList_t
/external/srec/srec/Nametag/include/
H A DSR_Nametags.h75 ESR_ReturnCode(*remove)(struct SR_Nametags_t* self, const LCHAR* id); member in struct:SR_Nametags_t
/external/srec/tools/grxmlcompile/
H A Dhashmap.cpp63 bool HashMap<T1,T2>::remove( T1 const & index ) function in class:HashMap
/external/skia/platform_tools/android/gyp_gen/
H A Dvars_dict_lib.py51 def remove(self, item): member in class:OrderedSet
61 self.__ordered_set.remove(item)
140 modified in place, to remove the common elements!
155 # If item is in all lists, add to intersection, and remove from all.
164 var_dict[key].remove(item)
/external/skia/src/animator/
H A DSkDisplayList.cpp126 void SkDisplayList::remove(SkActive* active) { function in class:SkDisplayList
129 fActiveList.remove(index); // !!! could use shuffle instead
H A DSkTDArray_Experimental.h56 void remove(U16CPU index, U16CPU count = 1) function in class:SkDS32Array
/external/skia/src/core/
H A DSkImageFilter.cpp386 void remove(const SkImageFilter* key) SK_OVERRIDE;
416 void CacheImpl::remove(const SkImageFilter* key) { function in class:CacheImpl
419 fData.remove(key);
H A DSkMetaData.cpp117 (void)this->remove(name, type);
245 bool SkMetaData::remove(const char name[], Type type) { function in class:SkMetaData
274 return this->remove(name, kS32_Type);
279 return this->remove(name, kScalar_Type);
284 return this->remove(name, kString_Type);
289 return this->remove(name, kPtr_Type);
294 return this->remove(name, kBool_Type);
298 return this->remove(name, kData_Type);
H A DSkRefDict.h31 * If data is NULL, remove (if present) the entry matching name and call
42 void remove(const char name[]) { this->set(name, NULL); } function in class:SkRefDict
H A DSkString.cpp588 void SkString::remove(size_t offset, size_t length) { function in class:SkString
H A DSkTDynamicHash.h88 void remove(const Key& key) { function in class:SkTDynamicHash
H A DSkTLList.h144 void remove(T* t) { function in class:SkTLList
158 this->remove(iter.get());
247 fFreeList.remove(node);
267 fList.remove(node);
273 fFreeList.remove(block->fNodes + i);
/external/skia/src/gpu/
H A DGrOrderedSet.h49 * @param iter iterator of item to remove. Must be valid (not end()).
51 void remove(const Iter& iter);
148 void GrOrderedSet<T,C>::remove(const typename GrOrderedSet<T,C>::Iter& iter) { function in class:GrOrderedSet
150 fRBTree.remove(iter.getTreeIter());
H A DGrRedBlackTree.h33 * is called on insert and remove. Useful for debugging but very slow.
129 * @param iter iterator of item to remove. Must be valid (not end()).
131 void remove(const Iter& iter) { deleteAtNode(iter.fN); } function in class:GrRedBlackTree

Completed in 1942 milliseconds

1234567891011>>