/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/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"); 50 // expected-error@-1 {{cannot determine underlying type of incomplete enumeration type 'PR19966::Invalid'}} 54 // expected-error@-1 {{cannot determine underlying type of incomplete enumeration type 'PR19966::E'}}
|
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...] |
/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/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
ASN1SequenceParser.java | 12 * Read the next object from the underlying object representing a SEQUENCE.
|
ASN1SetParser.java | 12 * Read the next object from the underlying object representing a SET.
|
/frameworks/base/core/java/android/text/style/ |
MetricAffectingSpan.java | 34 * returns the underlying MetricAffectingSpan. 60 * Passes updateDrawState through to the underlying MetricAffectingSpan. 68 * Passes updateMeasureState through to the underlying MetricAffectingSpan. 76 * Returns the MetricAffectingSpan underlying this one, or the one 77 * underlying it if it too is a Passthrough.
|
/external/slf4j/slf4j-ext/src/main/java/org/slf4j/ext/ |
LoggerWrapper.java | 66 * Delegate to the appropriate method of the underlying logger. 73 * Delegate to the appropriate method of the underlying logger. 80 * Delegate to the appropriate method of the underlying logger. 94 * Delegate to the appropriate method of the underlying logger. 109 * Delegate to the appropriate method of the underlying logger. 124 * Delegate to the appropriate method of the underlying logger. 139 * Delegate to the appropriate method of the underlying logger. 153 * Delegate to the appropriate method of the underlying logger. 166 * Delegate to the appropriate method of the underlying logger. 180 * Delegate to the appropriate method of the underlying logger [all...] |
/external/clang/test/Sema/ |
format-strings-enum-fixed-type.cpp | 19 printf("%hhd", input); // expected-warning{{format specifies type 'char' but the argument has underlying type 'short'}} 29 printf("%lld", input); // expected-warning{{format specifies type 'long long' but the argument has underlying type 'short'}} 37 printf("%u", input); // expected-warning{{format specifies type 'unsigned int' but the argument has underlying type 'unsigned long'}} 49 printf("%hhd", input); // expected-warning{{format specifies type 'char' but the argument has underlying type 'short_t' (aka 'short')}} 59 printf("%lld", input); // expected-warning{{format specifies type 'long long' but the argument has underlying type 'short_t' (aka 'short')}} 67 printf("%hhd", input); // expected-warning{{format specifies type 'char' but the argument has underlying type 'short_t' (aka 'short')}} 70 printf("%lld", input); // expected-warning{{format specifies type 'long long' but the argument has underlying type 'short_t' (aka 'short')}} 83 printf("%hd", input); // expected-warning{{format specifies type 'short' but the argument has underlying type 'char'}} 90 printf("%lld", input); // expected-warning{{format specifies type 'long long' but the argument has underlying type 'char'}}
|
/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 give [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/ |
AESWrapEngine.java | 21 * Create an AESWrapEngine where the underlying cipher is set to decrypt for wrapping, encrypt for unwrapping. 23 * @param useReverseDirection true if underlying cipher should be used in decryption mode, false otherwise.
|
/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
|
/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/chromium-trace/trace-viewer/tracing/third_party/gl-matrix/ |
TESTING.md | 7 * Jasmine -- the underlying test suite which executes the test and reports feedback
|
/external/slf4j/slf4j-jcl/src/main/java/org/slf4j/impl/ |
JCLLoggerAdapter.java | 54 * Delegates to the {@link Log#isTraceEnabled} method of the underlying 64 * Delegates to the {@link Log#trace(java.lang.Object)} method of the underlying 74 * Delegates to the {@link Log#trace(java.lang.Object)} method of the underlying 95 * Delegates to the {@link Log#trace(java.lang.Object)} method of the underlying 118 * Delegates to the {@link Log#trace(java.lang.Object)} method of the underlying 138 * the underlying {@link Log} instance. 150 * Delegates to the {@link Log#isDebugEnabled} method of the underlying 160 * Delegates to the {@link Log#debug(java.lang.Object)} method of the underlying 170 * Delegates to the {@link Log#debug(java.lang.Object)} method of the underlying 191 * Delegates to the {@link Log#debug(java.lang.Object)} method of the underlying [all...] |
/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
|
/packages/services/Telephony/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/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/ |
Streams.java | 19 * @throws IOException in case of underlying IOException. 35 * @throws IOException in case of underlying IOException. 52 * @throws IOException in case of underlying IOException, or if limit is reached on inStr still has data in it. 68 * @throws IOException in case of underlying IOException. 84 * @throws IOException in case of underlying IOException. 107 * @throws IOException in case of underlying IOException. 126 * @throws IOException in case of underlying IOException, or if limit is reached on inStr still has data in it.
|
/external/libcxx/test/std/utilities/meta/meta.trans/meta.trans.other/ |
underlying_type.pass.cpp | 23 "E has the wrong underlying type"); 25 "F has the wrong underlying type"); 36 "G has the wrong underlying type");
|
/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/luni/src/main/java/java/nio/ |
NIOAccess.java | 25 * Returns the underlying native pointer to the data of the given 38 * Returns the underlying Java array containing the data of the 46 * Returns the offset in bytes from the start of the underlying
|