HomeSort by relevance Sort by last modified time
    Searched defs:erase (Results 1 - 25 of 680) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /development/gsi/gsi_util/gsi_util/utils/
fastboot_utils.py 33 def erase(partition_name=None, allow_error=False): function
34 """fastboot erase a partition."""
39 run_command(['fastboot', 'erase', partition_name],
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/cc_hash_table_map_/
erase_no_store_hash_fn_imps.hpp 38 * Contains implementations of cc_ht_map_'s erase related functions,
45 erase(key_const_reference r_key) function in class:PB_DS_CLASS_C_DEC
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/cc_hash_table_map_/
erase_no_store_hash_fn_imps.hpp 38 * Contains implementations of cc_ht_map_'s erase related functions,
45 erase(key_const_reference r_key) function in class:PB_DS_CLASS_C_DEC
  /external/tensorflow/tensorflow/core/graph/
edgeset.cc 53 EdgeSet::size_type EdgeSet::erase(key_type key) { function in class:tensorflow::EdgeSet
67 return s->erase(key);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/gp_hash_table_map_/
erase_fn_imps.hpp 38 * Contains implementations of gp_ht_map_'s erase related functions.
96 erase(key_const_reference r_key) function in class:PB_DS_CLASS_C_DEC
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/gp_hash_table_map_/
erase_fn_imps.hpp 38 * Contains implementations of gp_ht_map_'s erase related functions.
96 erase(key_const_reference r_key) function in class:PB_DS_CLASS_C_DEC
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
ThreadLocal.h 48 // erase - Removes the pointer associated with the current thread.
49 void erase() { removeInstance(); } function in class:llvm::sys::ThreadLocal
  /frameworks/compile/mclinker/lib/LD/
ELFSegmentFactory.cpp 89 void ELFSegmentFactory::erase(iterator pSegment) { function in class:mcld::ELFSegmentFactory
90 m_Segments.erase(pSegment);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/list_update_map_/
erase_fn_imps.hpp 44 erase(key_const_reference r_key) function in class:PB_DS_CLASS_C_DEC
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/rc_binomial_heap_/
erase_fn_imps.hpp 101 erase(point_iterator it) function in class:PB_DS_CLASS_C_DEC
104 base_type::erase(it);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/splay_tree_/
erase_fn_imps.hpp 44 erase(key_const_reference r_key) function in class:PB_DS_CLASS_C_DEC
49 erase(it);
56 erase(iterator it) function in class:PB_DS_CLASS_C_DEC
71 erase(reverse_iterator it) function in class:PB_DS_CLASS_C_DEC
97 it = erase(it);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/list_update_map_/
erase_fn_imps.hpp 44 erase(key_const_reference r_key) function in class:PB_DS_CLASS_C_DEC
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/rc_binomial_heap_/
erase_fn_imps.hpp 101 erase(point_iterator it) function in class:PB_DS_CLASS_C_DEC
104 base_type::erase(it);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/splay_tree_/
erase_fn_imps.hpp 44 erase(key_const_reference r_key) function in class:PB_DS_CLASS_C_DEC
49 erase(it);
56 erase(iterator it) function in class:PB_DS_CLASS_C_DEC
71 erase(reverse_iterator it) function in class:PB_DS_CLASS_C_DEC
97 it = erase(it);
  /art/libartbase/base/
dchecked_vector.h 30 // and for insert()/emplace()/erase() positions.
172 // Modifiers: erase(). Check position.
173 iterator erase(const_iterator position) { function in class:art::dchecked_vector
175 return Base::erase(position);
177 iterator erase(const_iterator first, const_iterator last) {
180 return Base::erase(first, last);
  /external/llvm/include/llvm/ADT/
SmallSet.h 102 bool erase(const T &V) { function in class:llvm::SmallSet
104 return Set.erase(V);
107 Vector.erase(I);
  /external/llvm/include/llvm/IR/
TypeFinder.h 58 iterator erase(iterator I, iterator E) { return StructTypes.erase(I, E); } function in class:llvm::TypeFinder
  /external/llvm/include/llvm/Support/
ThreadLocal.h 57 // erase - Removes the pointer associated with the current thread.
58 void erase() { removeInstance(); } function in class:llvm::sys::ThreadLocal
  /external/python/cpython2/Demo/curses/
life.py 6 # E : Erase the board
34 erase() -- clear the entire board
81 def erase(self): member in class:LifeBoard
193 board.erase()
  /external/python/cpython3/Tools/demo/
life.py 7 E : Erase the board
33 erase() -- clear the entire board
84 def erase(self): member in class:LifeBoard
224 board.erase()
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
SmallSet.h 85 bool erase(const T &V) { function in class:llvm::SmallSet
87 return Set.erase(V);
90 Vector.erase(I);
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
SmallSet.h 107 bool erase(const T &V) { function in class:llvm::SmallSet
109 return Set.erase(V);
112 Vector.erase(I);
  /external/turbine/java/com/google/turbine/types/
Erasure.java 28 public static Type erase(Type ty, Function<TyVarSymbol, SourceTypeBoundClass.TyVarInfo> tenv) { method in class:Erasure
48 return erase(info.superClassBound(), tenv);
51 return erase(info.interfaceBounds().get(0), tenv);
58 return new Type.ArrayTy(erase(ty.elementType(), tenv), ty.annos());
  /frameworks/av/media/libmedia/
StringArray.cpp 74 void StringArray::erase(int idx) { function in class:android::StringArray
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
SmallSet.h 107 bool erase(const T &V) { function in class:llvm::SmallSet
109 return Set.erase(V);
112 Vector.erase(I);

Completed in 1299 milliseconds

1 2 3 4 5 6 7 8 91011>>