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

1 2 3 4 5 6

  /external/llvm/lib/CodeGen/
MachinePassRegistry.cpp 45 /// Remove - Removes a function pass from the registration list.
47 void MachinePassRegistry::Remove(MachinePassRegistryNode *Node) {
  /prebuilts/go/darwin-x86/src/container/heap/
heap.go 28 // implementation to call. To add and remove things from the heap,
33 Pop() interface{} // remove and return element Len() - 1.
59 // It is equivalent to Remove(h, 0).
68 // Remove removes the element at index i from the heap.
71 func Remove(h Interface, i int) interface{} {
83 // but less expensive than, calling Remove(h, i) followed by a Push of the new value.
  /prebuilts/go/linux-x86/src/container/heap/
heap.go 28 // implementation to call. To add and remove things from the heap,
33 Pop() interface{} // remove and return element Len() - 1.
59 // It is equivalent to Remove(h, 0).
68 // Remove removes the element at index i from the heap.
71 func Remove(h Interface, i int) interface{} {
83 // but less expensive than, calling Remove(h, i) followed by a Push of the new value.
  /bionic/libc/malloc_debug/
TrackData.cpp 72 void TrackData::Remove(const Header* header, bool backtrace_found) {
  /external/compiler-rt/lib/tsan/rtl/
tsan_mutexset.cc 65 void MutexSet::Remove(u64 id) {
tsan_mutexset.h 37 void Remove(u64 id); // Removes the mutex completely (if it's destroyed).
62 void MutexSet::Remove(u64 id) {}
  /external/libchrome/base/
scoped_observer.h 35 // Remove the object passed to the constructor as an observer from |source|.
36 void Remove(Source* source) {
  /external/libweave/third_party/chromium/base/
scoped_observer.h 34 // Remove the object passed to the constructor as an observer from |source|.
35 void Remove(Source* source) {
  /external/sfntly/cpp/src/sfntly/port/
java_iterator.h 51 virtual void Remove() {
78 virtual void Remove() {
  /external/v8/src/profiler/
circular-queue-inl.h 36 void SamplingCircularQueue<T, L>::Remove() {
  /external/webrtc/webrtc/base/
scopedptrcollection.h 46 // Remove |t| from the collection without deleting it.
47 void Remove(T* t) {
48 collection_.erase(std::remove(collection_.begin(), collection_.end(), t),
  /system/connectivity/shill/
ip_address_store.cc 45 void IPAddressStore::Remove(const IPAddress& ip) {
hook_table.cc 48 Remove(name);
56 void HookTable::Remove(const std::string& name) {
92 // An action that completes inline could call HookTable::Remove(), which
  /system/core/libbacktrace/
ThreadEntry.cpp 71 void ThreadEntry::Remove(ThreadEntry* entry) {
  /system/extras/memory_replay/
Pointers.cpp 61 void* Pointers::Remove(uintptr_t key_pointer) {
63 err(1, "Illegal zero value passed to Remove\n");
  /external/libweave/src/commands/
command_queue.cc 106 bool CommandQueue::Remove(const std::string& id) {
120 Remove(remove_queue_.top().second);
  /external/llvm/include/llvm/Transforms/InstCombine/
InstCombineWorklist.h 75 // Remove - remove I from the worklist if it exists.
76 void Remove(Instruction *I) {
  /system/connectivity/shill/dbus/
chromeos_ipconfig_dbus_adaptor.cc 123 bool ChromeosIPConfigDBusAdaptor::Remove(brillo::ErrorPtr* error) {
  /system/connectivity/shill/ethernet/
ethernet_service.cc 123 void EthernetService::Remove(Error* error) {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BitSet.cs 240 // remove this element from this set
241 public void Remove(int el) {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BitSet.cs 282 // remove this element from this set
283 public void Remove( int el )
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Collections.pas 109 procedure Remove(const Key: TKey);
237 procedure THashList<TKey, TValue>.Remove(const Key: TKey);
239 FDictionary.Remove(Key);
240 FInsertionOrderList.Remove(Key);
  /external/autotest/client/cros/cellular/pseudomodem/
dbus_std_ifaces.py 356 def Remove(self, device):
361 @param device: Device to remove.
367 self.devices.remove(device)
415 @param object_path: Path of the remove object.
  /external/ceres-solver/include/ceres/
ordered_groups.h 89 // Remove the element, no matter what group it is in. Return value
91 bool Remove(const T element) {
108 // Bulk remove elements. The return value indicates the number of
110 int Remove(const vector<T>& elements) {
117 num_removed += Remove(elements[i]);
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ProgramStateTrait.h 80 static data_type Remove(data_type B, key_type K, context_type F) {
81 return F.remove(B, K);
128 static data_type Remove(data_type B, key_type K, context_type F) {
129 return F.remove(B, K);

Completed in 2452 milliseconds

1 2 3 4 5 6