HomeSort by relevance Sort by last modified time
    Searched full:underlying (Results 1 - 25 of 932) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/text/style/
MetricAffectingSpan.java 35 * returns the underlying MetricAffectingSpan.
61 * Passes updateDrawState through to the underlying MetricAffectingSpan.
69 * Passes updateMeasureState through to the underlying MetricAffectingSpan.
77 * Returns the MetricAffectingSpan underlying this one, or the one
78 * underlying it if it too is a Passthrough.
CharacterStyle.java 46 * that were generated by {@link #wrap}, returns the underlying
71 * Passes updateDrawState through to the underlying CharacterStyle.
79 * Returns the CharacterStyle underlying this one, or the one
80 * underlying it if it too is a Passthrough.
  /packages/apps/Email/src/org/apache/commons/io/input/
AutoCloseInputStream.java 23 * Proxy stream that closes and discards the underlying stream as soon as the
25 * Not even a reference to the underlying stream is kept after it has been
31 * closing the stream when no longer needed) or the underlying stream (by not
42 * @param in underlying input stream
49 * Closes the underlying input stream and replaces the reference to it
56 * underlying input stream is closed and discarded only once when this
59 * @throws IOException if the underlying input stream can not be closed
67 * Reads and returns a single byte from the underlying input stream.
68 * If the underlying stream returns -1, the {@link #close()} method is
83 * Reads and returns bytes from the underlying input stream to the given
    [all...]
CloseShieldInputStream.java 22 * Proxy stream that prevents the underlying input stream from being closed.
37 * @param in underlying input stream
44 * Replaces the underlying input stream with a {@link ClosedInputStream}
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
ICommitXml.java 21 * Interface for an object that can commit its changes to the underlying XML model
25 /** Commits pending data to the underlying XML model. */
  /external/apache-http/src/org/apache/commons/logging/
LogConfigurationException.java 58 * @param cause The underlying cause
71 * @param cause The underlying cause
82 * The underlying cause of this exception.
88 * Return the underlying cause of this exception (if any).
Log.java 35 * The mapping of these log levels to the concepts used by the underlying
54 * <p>Configuration of the underlying logging system will generally be done
75 * @return true if debug is enabled in the underlying logger.
87 * @return true if error is enabled in the underlying logger.
99 * @return true if fatal is enabled in the underlying logger.
111 * @return true if info is enabled in the underlying logger.
123 * @return true if trace is enabled in the underlying logger.
135 * @return true if warn is enabled in the underlying logger.
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/
BufferedAsymmetricBlockCipher.java 26 * return the underlying cipher for the buffer.
28 * @return the underlying cipher for the buffer.
46 * initialise the buffer and the underlying cipher.
132 * process the contents of the buffer using the underlying
150 * Reset the buffer and the underlying cipher.
StreamBlockCipher.java 33 * initialise the underlying cipher.
36 * @param params the necessary parameters for the underlying cipher to be initialised.
101 * reset the underlying cipher. This leaves it in the same state
  /packages/apps/Email/src/org/apache/james/mime4j/
CloseShieldInputStream.java 26 * InputStream that shields its underlying input stream from
35 * Underlying InputStream
65 * Set the underlying InputStream to null
121 * Check if the underlying InputStream is null. If so throw an Exception
123 * @throws IOException if the underlying InputStream is null
  /external/stlport/doc/
pointer_specialization.txt 24 underlying void* container instanciation. The bridge job is to
44 What would be the underlying container for such a partial
49 that will take care of all the cast work. The underlying container
56 instanciation will have a distinct underlying void* container and
66 is the Standard less struct. The underlying container would be:
75 the underlying cannot be a
  /dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
SSLStreamedInput.java 42 * @return the value read from the underlying stream.
44 * the underlying stream
45 * @throws org.apache.harmony.xnet.provider.jsse.EndOfSourceException if the end of the underlying
  /packages/apps/Email/src/org/apache/commons/io/output/
CloseShieldOutputStream.java 22 * Proxy stream that prevents the underlying output stream from being closed.
37 * @param out underlying output stream
44 * Replaces the underlying output stream with a {@link ClosedOutputStream}
  /dalvik/libcore/prefs/src/main/java/java/util/prefs/
package.html 8 configuration data. Since the underlying implementation is dependent
  /external/apache-http/src/org/apache/http/conn/
EofSensorInputStream.java 39 * Primarily used to auto-release an underlying
46 * different kinds of event, and does not always close the underlying stream
81 * the underlying stream. After closing this stream, read
94 * If no watcher is passed, the underlying stream will simply be
96 * Otherwise, the watcher decides whether the underlying stream
117 * Checks whether the underlying stream can be read from.
119 * @return <code>true</code> if the underlying stream is accessible,
121 * detached from the underlying stream
219 * This method should only be called while the underlying stream is
224 * is detached from the underlying stream. This prevents multipl
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/
ToUnknownStream.java 68 * true if the underlying handler (XML or HTML) is fully initialized
109 * true if startDocument() was called before the underlying handler
114 * true if setVersion() was called before the underlying handler
119 * true if setDoctypeSystem() was called before the underlying handler
124 * true if setDoctypePublic() was called before the underlying handler
129 * true if setMediaType() was called before the underlying handler
168 * @return the properties of the underlying handler
177 * @return the OutputStream of the underlying XML or HTML handler
186 * @return the Writer of the underlying XML or HTML handler
194 * passes the call on to the underlying HTML or XML handle
    [all...]
  /dalvik/libcore/luni/src/test/java/tests/api/java/io/
PushbackReaderTest.java 35 Support_ASimpleReader underlying = new Support_ASimpleReader(); field in class:PushbackReaderTest
80 tobj = new PushbackReader(underlying, 10000);
81 tobj = new PushbackReader(underlying, 1);
84 tobj = new PushbackReader(underlying, -1);
91 tobj = new PushbackReader(underlying, 0);
111 tobj = new PushbackReader(underlying);
114 tobj = new PushbackReader(underlying);
115 underlying.throwExceptionOnNextUse = true;
176 tobj = new PushbackReader(underlying);
178 underlying.throwExceptionOnNextUse = true
    [all...]
PushbackInputStreamTest.java 32 Support_ASimpleInputStream underlying = new Support_ASimpleInputStream(); field in class:PushbackInputStreamTest
103 tobj = new PushbackInputStream(underlying);
106 tobj = new PushbackInputStream(underlying);
107 underlying.throwExceptionOnNextUse = true;
129 tobj = new PushbackInputStream(underlying);
131 underlying.throwExceptionOnNextUse = true;
166 tobj = new PushbackInputStream(underlying);
168 underlying.throwExceptionOnNextUse = true;
193 tobj = new PushbackInputStream(underlying);
197 underlying.throwExceptionOnNextUse = true
    [all...]
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/
InputStreamHelper.java 34 * Provides access to a protected underlying buffer of
40 * Provides access to a protected position in the underlying buffer of
66 * underlying buffer.
103 * underlying buffer directly.
105 * @return an underlying buffer, if a current position is at the buffer
107 * the underlying buffer part.
133 * buffer. To speed up the access it works with an underlying buffer for a
161 * that this method may block if the underlying stream read blocks.
PositionedInputStream.java 29 private int currentPosition; // Current position on the underlying stream
69 * Makes the current position on the underlying stream be assigned relative
  /dalvik/dx/src/com/android/dx/rop/type/
TypeBearer.java 35 * {@code this}, except if {@link Type#isIntlike} on the underlying
36 * type returns {@code true} but the underlying type is not in
38 * whose underlying type <i>is</i> {@code INT}.
  /dalvik/libcore/nio/src/main/java/java/nio/
NIOAccess.java 23 * A class allowing native code to access the underlying data of
29 * Returns the underlying native pointer to the data of the given
63 * Returns the underlying Java array containing the data of the
75 * Returns the offset in bytes from the start of the underlying
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/params/
CCMParameters.java 16 * @param key key to be used by underlying cipher
  /external/iproute2/include/linux/
ip6_tunnel.h 22 int link; /* ifindex of underlying L2 interface */
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/x509/
DistributionPointName.java 72 * Return the tag number applying to the underlying choice.
84 * @return the underlying choice item.

Completed in 261 milliseconds

1 2 3 4 5 6 7 8 91011>>