/external/guava/guava-tests/test/com/google/common/collect/ |
MapsTransformValuesTest.java | 64 Map<String, Integer> underlying = Maps.newHashMap(); local 65 underlying.put("a", 1); 66 underlying.put("b", 2); 67 underlying.put("c", 3); 68 return Maps.transformValues(underlying, Functions.toStringFunction()); 111 Map<String, Integer> underlying = ImmutableMap.of("a", 1); local 113 underlying, Functions.<Integer>identity()); 114 assertMapsEqual(underlying, map); 140 Map<String, Integer> underlying = Maps.newHashMap(); local 141 underlying.put("a", 1) 149 Map<String, String> underlying = Maps.newHashMap(); local 172 Map<String, Integer> underlying = Maps.newHashMap(); local 193 Map<String, Integer> underlying = Maps.newLinkedHashMap(); local 243 Map<String, Integer> underlying = ImmutableMap.of("a", 0, "b", 1, "c", 2); local 267 Map<String, Boolean> underlying = Maps.newHashMap(); local [all...] |
MapsTransformValuesUnmodifiableIteratorTest.java | 110 Map<String, Integer> underlying = Maps.newHashMap(); 112 new UnmodifiableIteratorMap<String, Integer>(underlying), Functions.toStringFunction()); 116 Map<String, Integer> underlying = Maps.newHashMap(); 117 underlying.put("a", 1); 118 underlying.put("b", 2); 119 underlying.put("c", 3); 121 new UnmodifiableIteratorMap<String, Integer>(underlying), Functions.toStringFunction()); 164 Map<String, Integer> underlying = ImmutableMap.of("a", 1); 166 underlying, Functions.<Integer>identity()); 167 assertMapsEqual(underlying, map) [all...] |
MapsSortedTransformValuesTest.java | 42 SortedMap<String, Integer> underlying = Maps.newTreeMap(); local 43 underlying.put("a", 1); 44 underlying.put("b", 2); 45 underlying.put("c", 3); 46 return Maps.transformValues(underlying, Functions.toStringFunction());
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/ |
CryptoException.java | 30 * Create a CryptoException with the given message and underlying cause. 33 * @param cause the throwable that was the underlying cause.
|
/libcore/luni/src/test/java/libcore/java/io/ |
OldPushbackReaderTest.java | 27 Support_ASimpleReader underlying = new Support_ASimpleReader(); field in class:OldPushbackReaderTest 61 tobj = new PushbackReader(underlying, 10000); 62 tobj = new PushbackReader(underlying, 1); 65 tobj = new PushbackReader(underlying, -1); 72 tobj = new PushbackReader(underlying, 0); 86 tobj = new PushbackReader(underlying); 89 tobj = new PushbackReader(underlying); 90 underlying.throwExceptionOnNextUse = true; 113 tobj = new PushbackReader(underlying); 115 underlying.throwExceptionOnNextUse = true [all...] |
OldPushbackInputStreamTest.java | 28 Support_ASimpleInputStream underlying = new Support_ASimpleInputStream(); field in class:OldPushbackInputStreamTest 75 tobj = new PushbackInputStream(underlying); 78 tobj = new PushbackInputStream(underlying); 79 underlying.throwExceptionOnNextUse = true; 91 tobj = new PushbackInputStream(underlying); 93 underlying.throwExceptionOnNextUse = true; 110 tobj = new PushbackInputStream(underlying); 112 underlying.throwExceptionOnNextUse = true; 128 tobj = new PushbackInputStream(underlying); 132 underlying.throwExceptionOnNextUse = true [all...] |
/external/clang/test/SemaCXX/ |
underlying_type.cpp | 19 "f has the wrong underlying type"); 23 "g has the wrong underlying type"); 35 "f has the wrong underlying type in the template"); 43 "foo has the wrong underlying type");
|
enum-scoped.cpp | 47 e2 // expected-error{{2147483648 is not representable in the underlying}} 52 e3 // expected-error{{2 is not representable in the underlying}} 57 e3 // expected-error{{2 is not representable in the underlying}} 64 e3 // expected-error{{2 is not representable in the underlying}} 86 enum Redeclare3; // expected-error{{previously declared with fixed underlying type}} 87 enum Redeclare3; // expected-error{{previously declared with fixed underlying type}} 93 enum Redeclare6 : short; // expected-error{{redeclared with different underlying type}} 94 enum Redeclare6 : short; // expected-error{{redeclared with different underlying type}} 97 enum class Redeclare7 : short; // expected-error{{redeclared with different underlying type}} 98 enum class Redeclare7 : short; // expected-error{{redeclared with different underlying type} [all...] |
/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.
|
/packages/apps/UnifiedEmail/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...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/ |
AEADParameters.java | 16 * @param key key to be used by underlying cipher 28 * @param key key to be used by underlying cipher
|
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/ |
PositionObserver.java | 13 * Called during predraw if the position of the underlying view has changed. 29 * Register a listener to be called when the position of the underlying view changes.
|
/external/chromium_org/net/quic/ |
quic_blocked_writer_interface.h | 6 // the underlying UDP socket is available for writing (not write blocked 20 // Called by the PacketWriter when the underlying socket becomes writable
|
/external/chromium_org/remoting/host/ |
pam_authorization_factory_posix.h | 13 // PAM-based authorization on top of some underlying authentication scheme. 20 scoped_ptr<protocol::AuthenticatorFactory> underlying);
|
/external/clang/test/Sema/ |
MicrosoftCompatibility.c | 10 ENUM2_b = 0x9FFFFFFF, // expected-warning {{enumerator value is not representable in the underlying type 'int'}} 11 ENUM2_c = 0x100000000 // expected-warning {{enumerator value is not representable in the underlying type 'int'}}
|
/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).
|
/external/chromium/chrome/browser/ui/cocoa/ |
browser_command_executor.h | 10 // context of some underlying browser object.
|
/external/chromium_org/chrome/browser/ui/app_list/search/ |
history_data_observer.h | 12 // Invoked when the data is loaded from underlying store.
|
/external/chromium_org/chrome/browser/ui/cocoa/ |
browser_command_executor.h | 9 // context of some underlying browser object.
|
/packages/apps/UnifiedEmail/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
|
/external/chromium_org/chrome/browser/extensions/ |
extension_action_icon_factory.h | 22 // asynchronously. The factory observes underlying IconImage and notifies its 29 // Called when the underlying icon image changes. 62 // Underlying icon image for the default icon.
|
/frameworks/base/core/java/android/content/pm/ |
LimitedLengthInputStream.java | 11 * underlying stream still has more data. 27 * @param in underlying stream to wrap 30 * @throws IOException if an error occurred with the underlying stream
|
/libcore/crypto/src/main/java/org/conscrypt/ |
SSLStreamedInput.java | 42 * @return the value read from the underlying stream. 44 * the underlying stream 45 * @throws org.conscrypt.EndOfSourceException if the end of the underlying
|