HomeSort by relevance Sort by last modified time
    Searched defs:remove (Results 101 - 125 of 3610) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
IntStringHashtable.java 27 table.remove(new Integer(key));
LongHashtable.java 26 table.remove(new Long(key));
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/processors/
RemoveJavaDocTags.java 29 * Remove the specified JavaDoc tags from the AST. Assumes the Javadoc is well-formed.
51 rewrite.remove(tagElement, null /* editGroup */);
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/validator/
Validators.java 23 public Validators remove(Validator validator) { method in class:Validators
24 if (!validators.remove(validator)) {
25 throw new AssertionError("Trying to remove a validator that isn't there.");
31 remove(oldValidator);
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/version/
PostProcessors.java 27 public PostProcessors remove(PostProcessor postProcessor) { method in class:PostProcessors
28 if (!postProcessors.remove(postProcessor)) {
29 throw new AssertionError("Trying to remove a post processor that isn't there.");
35 remove(oldProcessor);
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/remove/
NodeRemovalTest.java 22 package com.github.javaparser.remove;
43 boolean remove = testClass.remove();
44 assertEquals(true, remove);
54 boolean remove = addField.remove();
55 assertEquals(true, remove);
67 boolean remove = addStatement.remove();
68 assertEquals(true, remove);
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
InMemoryResourceLoader.java 59 public void remove(String name) { method in class:InMemoryResourceLoader
60 items.remove(name);
  /external/jsr330/tck/org/atinject/tck/
Tck.java 125 Convertible.localConvertible.remove();
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
InternalCache.java 34 * Remove any cache entries for the supplied {@code request}. This is invoked
37 void remove(Request request) throws IOException; method in interface:InternalCache
  /external/parameter-framework/upstream/test/tmpfile/
TmpFile.hpp 68 remove();
74 ~TmpFile() { remove(); }
94 void remove() function in class:parameterFramework::utility::TmpFile
97 if (std::remove(mPath.c_str()) != 0) {
  /external/pdfium/fxjs/xfa/
cjx_list.cpp 22 {"remove", remove_static}};
61 CJS_Return CJX_List::remove(CJS_V8* runtime, function in class:CJX_List
70 GetXFAList()->Remove(pNode);
  /external/proguard/src/proguard/
ClassPath.java 80 public ClassPathEntry remove(int index) method in class:ClassPath
82 return (ClassPathEntry)classPathEntries.remove(index);
  /external/python/cpython2/Demo/pdist/
rrcs.py 139 def remove(fn): function
  /external/python/cpython2/Demo/scripts/
queens.py 36 self.remove(x, y)
47 def remove(self, x, y): member in class:Queens
  /external/python/cpython3/Tools/demo/
queens.py 36 self.remove(x, y)
47 def remove(self, x, y): member in class:Queens
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowValueAnimator.java 36 animatorHandlerTL.remove();
41 animatorHandlerTL.remove();
  /external/slf4j/slf4j-api/src/main/java/org/slf4j/
Marker.java 72 * Remove a marker reference.
75 * the marker reference to remove
78 public boolean remove(Marker reference); method in interface:Marker
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/util/
TypeProtoUtils.java 76 @Override public void remove() { method
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
FixedSizeSet.java 50 @Override public void remove() { throw new UnsupportedOperationException(); } method
VariableSizeIterator.java 83 @Override public void remove() { throw new UnsupportedOperationException(); } method in class:VariableSizeIterator
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/util/
ParamUtil.java 83 @Override public void remove() { method
  /external/smali/util/src/main/java/org/jf/util/
AbstractListIterator.java 68 public void remove() { method in class:AbstractListIterator
StringWrapper.java 113 public void remove() { method
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
ilist_base.h 83 template <class T> static void remove(T &N) { removeImpl(N); } function in class:llvm::ilist_base
  /external/tensorflow/tensorflow/python/ops/
script_ops.py 89 def remove(self, token): member in class:FuncRegistry
174 """A helper class to remove a registered function from _py_funcs."""
183 _py_funcs.remove(self._token)
200 # i.e., when the current graph is destroyed, we remove its py funcs.
217 # will be destroyed and their __del__ will remove the 'token' from

Completed in 451 milliseconds

1 2 3 45 6 7 8 91011>>