HomeSort by relevance Sort by last modified time
    Searched refs:reset (Results 401 - 425 of 8196) sorted by null

<<11121314151617181920>>

  /libcore/luni/src/main/java/java/io/
FilterInputStream.java 70 * Sending {@code reset()} will reposition this stream back to the marked
79 * @see #reset()
87 * Indicates whether this stream supports {@code mark()} and {@code reset()}.
91 * @return {@code true} if {@code mark()} and {@code reset()} are supported,
94 * @see #reset()
133 public synchronized void reset() throws IOException { method in class:FilterInputStream
134 in.reset();
139 * calls to {@code read} will not return these bytes unless {@code reset} is
147 * @see #reset()
FilterReader.java 64 * Sending {@code reset()} will reposition this reader back to the marked
75 * @see #reset()
85 * Indicates whether this reader supports {@code mark()} and {@code reset()}.
88 * @return {@code true} if {@code mark()} and {@code reset()} are supported
91 * @see #reset()
156 * {@code reset()} in the Reader subclass that is filtered by this reader.
161 * {@code mark()} and {@code reset()}.
166 public void reset() throws IOException { method in class:FilterReader
168 in.reset();
174 * will not return these characters unless {@code reset} is used. Th
    [all...]
  /libcore/luni/src/main/java/java/text/
CollationElementIterator.java 144 * attributes changed, calling {@code reset()} reinitializes the iterator to
147 public void reset() { method in class:CollationElementIterator
148 this.icuIterator.reset();
  /libcore/luni/src/main/java/libcore/net/url/
FtpURLInputStream.java 51 public synchronized void reset() throws IOException { method in class:FtpURLInputStream
52 is.reset();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.modifiers/
reset1.pass.cpp 14 // test reset
35 p.reset();
44 p.reset(new A[5]);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.modifiers/
reset1.pass.cpp 14 // test reset
35 p.reset();
44 p.reset(new A);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.mod/
reset.pass.cpp 14 // void reset();
46 p.reset();
55 p.reset();
reset_pointer.pass.cpp 14 // template<class Y> void reset(Y* p);
47 p.reset(ptr);
57 p.reset(ptr);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/utility.swap/
swap_array.pass.cpp 44 i[k].reset(new int(k+1));
47 j[k].reset(new int(k+4));
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
ProxyInputStream.java 114 * Invokes the delegate's <code>reset()</code> method.
117 public synchronized void reset() throws IOException { method in class:ProxyInputStream
118 in.reset();
ProxyReader.java 115 * Invokes the delegate's <code>reset()</code> method.
118 public synchronized void reset() throws IOException { method in class:ProxyReader
119 in.reset();
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
utf_16.py 33 def reset(self): member in class:IncrementalEncoder
34 codecs.IncrementalEncoder.reset(self)
71 def reset(self): member in class:IncrementalDecoder
72 codecs.BufferedIncrementalDecoder.reset(self)
80 def reset(self): member in class:StreamWriter
81 codecs.StreamWriter.reset(self)
97 def reset(self): member in class:StreamReader
98 codecs.StreamReader.reset(self)
utf_8_sig.py 37 def reset(self): member in class:IncrementalEncoder
38 codecs.IncrementalEncoder.reset(self)
68 def reset(self): member in class:IncrementalDecoder
69 codecs.BufferedIncrementalDecoder.reset(self)
73 def reset(self): member in class:StreamWriter
74 codecs.StreamWriter.reset(self)
85 def reset(self): member in class:StreamReader
86 codecs.StreamReader.reset(self)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
utf_16.py 33 def reset(self): member in class:IncrementalEncoder
34 codecs.IncrementalEncoder.reset(self)
71 def reset(self): member in class:IncrementalDecoder
72 codecs.BufferedIncrementalDecoder.reset(self)
80 def reset(self): member in class:StreamWriter
81 codecs.StreamWriter.reset(self)
97 def reset(self): member in class:StreamReader
98 codecs.StreamReader.reset(self)
utf_8_sig.py 37 def reset(self): member in class:IncrementalEncoder
38 codecs.IncrementalEncoder.reset(self)
68 def reset(self): member in class:IncrementalDecoder
69 codecs.BufferedIncrementalDecoder.reset(self)
73 def reset(self): member in class:StreamWriter
74 codecs.StreamWriter.reset(self)
85 def reset(self): member in class:StreamReader
86 codecs.StreamReader.reset(self)
  /external/chromium_org/url/third_party/mozilla/
url_parse.cc 99 hostname->reset();
100 port_num->reset();
129 hostname->reset();
134 port_num->reset();
151 username->reset();
152 password->reset();
153 hostname->reset();
154 port_num->reset();
172 username->reset();
173 password->reset();
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
LineNumberInputStreamTest.java 77 lnis.reset();
110 * @tests java.io.LineNumberInputStream#reset()
115 lnis.reset();
116 assertEquals("Failed to reset", 0, lnis.getLineNumber());
117 assertEquals("Failed to reset", '0', lnis.read());
118 lnis.reset();
124 lnis.reset();
155 * In order for IOException to be thrown in reset(),the inputStream to
156 * the constructor cannot be a byteArrayInputstream because the reset()
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
ContextNodeList.java 56 * Reset the iterator.
58 public void reset(); method in interface:ContextNodeList
102 * Get a cloned Iterator that is reset to the start of the iteration.
104 * @return A clone of this iteration that has been reset.
  /external/ceres-solver/internal/ceres/
covariance.cc 42 impl_.reset(new internal::CovarianceImpl(options));
  /external/chromium/chrome/browser/status_icons/
status_icon.cc 33 context_menu_contents_.reset(menu);
  /external/chromium_org/ash/shell/content_client/
shell_main_delegate.cc 36 browser_client_.reset(new ShellContentBrowserClient);
  /external/chromium_org/ash/wm/
window_cycle_controller.cc 115 windows_.reset(new WindowCycleList(ash::Shell::GetInstance()->
126 windows_.reset();
130 event_handler_.reset();
135 event_handler_.reset(new WindowCycleEventFilter());
  /external/chromium_org/base/android/
jni_helper.h 14 // This class is not thread-safe w.r.t. get() and reset(). Multiple threads may
15 // safely use get() concurrently, but if the user calls reset() (or of course,
28 void reset();
  /external/chromium_org/chrome/browser/chromeos/login/
wallpaper_manager_unittest.cc 55 local_state_.reset(new TestingPrefServiceSimple);
80 // Reset the UserManager singleton.
81 user_manager_enabler_.reset();
83 user_manager_enabler_.reset(
127 test_api.reset(new WallpaperManager::TestApi(WallpaperManager::Get()));
  /external/chromium_org/chrome/browser/policy/cloud/
policy_builder.h 48 policy_data_.reset(new enterprise_management::PolicyData());
52 policy_data_.reset();
115 payload_.reset(new PayloadProto());
119 payload_.reset();

Completed in 2016 milliseconds

<<11121314151617181920>>