Searched defs:remove (Results 26 - 50 of 593) sorted by relevance

1234567891011>>

/external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
H A DInMemoryResourceLoader.java59 public void remove(String name) { method in class:InMemoryResourceLoader
60 items.remove(name);
/external/mockito/src/main/java/org/mockito/internal/matchers/text/
H A DArrayIterator.java39 public void remove() { method in class:ArrayIterator
40 throw new UnsupportedOperationException("cannot remove items from an array");
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
H A DInternalCache.java37 void remove(Request request) throws IOException; method in interface:InternalCache
/external/parameter-framework/upstream/test/tmpfile/
H A DTmpFile.hpp68 remove();
74 ~TmpFile() { remove(); }
94 void remove() function in class:parameterFramework::utility::TmpFile
97 if (std::remove(mPath.c_str()) != 0) {
/external/proguard/src/proguard/
H A DClassPath.java80 public ClassPathEntry remove(int index) method in class:ClassPath
82 return (ClassPathEntry)classPathEntries.remove(index);
/external/protobuf/java/core/src/main/java/com/google/protobuf/
H A DProtobufArrayList.java86 public E remove(int index) { method in class:ProtobufArrayList
88 E toReturn = list.remove(index);
/external/skia/infra/bots/assets/
H A Dassets.py32 def remove(args): function
35 asset_utils.MultiStore(gsutil=args.gsutil)).remove()
61 prs_remove = subs.add_parser('remove', help='Remove an asset.')
62 prs_remove.set_defaults(func=remove)
/external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/
H A DMDC.java40 public static void remove(String key) { method in class:MDC
41 org.slf4j.MDC.remove(key);
/external/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/
H A DNOPMDCAdapter.java52 public void remove(String key) { method in class:NOPMDCAdapter
/external/slf4j/slf4j-api/src/main/java/org/slf4j/spi/
H A DMDCAdapter.java65 public void remove(String key); method in interface:MDCAdapter
/external/slf4j/slf4j-log4j12/src/main/java/org/slf4j/impl/
H A DLog4jMDCAdapter.java63 public void remove(String key) { method in class:Log4jMDCAdapter
64 org.apache.log4j.MDC.remove(key);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
H A DParameterIterator.java86 @Override public void remove() { method in class:ParameterIterator
H A DVariableSizeIterator.java83 @Override public void remove() { throw new UnsupportedOperationException(); } method in class:VariableSizeIterator
/external/smali/util/src/main/java/org/jf/util/
H A DAbstractListIterator.java68 public void remove() { method in class:AbstractListIterator
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/representer/
H A DRepresentIterableTest.java69 public void remove() { method in class:RepresentIterableTest.Counter
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DSDNodeOrdering.h39 void remove(const SDNode *Node) { function in class:llvm::SDNodeOrdering
/external/testng/src/test/java/test/dataprovider/
H A DMyIterator.java25 public void remove() { method in class:MyIterator
/external/volley/src/main/java/com/android/volley/toolbox/
H A DNoCache.java43 public void remove(String key) { method in class:NoCache
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
H A DSeriesAndFormatterList.java65 public boolean remove(SeriesType series) { method in class:SeriesAndFormatterList
70 seriesList.remove(index);
71 formatterList.remove(index);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DListExtensions.cs142 public static object remove( this IList list, int index ) method in class:Antlr.Runtime.JavaExtensions.ListExtensions
150 public static void remove<T>( this IList<T> list, T item ) method in class:Antlr.Runtime.JavaExtensions.ListExtensions
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
H A DFastQueue.java54 /** Get and remove first element in queue */
55 public T remove() { method in class:FastQueue
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DTreeIterator.java37 * know what child index they are. No remove() is supported.
95 if ( nodes!=null && nodes.size()>0 ) return nodes.remove();
120 return nodes.remove();
128 return nodes.remove();
131 public void remove() { throw new UnsupportedOperationException(); } method in class:TreeIterator
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DLookaheadSet.java86 public void remove(int a) { method in class:LookaheadSet
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DOrderedHashSet.java54 super.remove(oldElement); // now update the set: remove/add
71 public boolean remove(Object o) { method in class:OrderedHashSet
74 elements.remove(o);
75 return super.remove(o);
/external/apache-http/src/org/apache/http/message/
H A DBasicHeaderElementIterator.java162 public void remove() throws UnsupportedOperationException { method in class:BasicHeaderElementIterator

Completed in 611 milliseconds

1234567891011>>