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

1 2 3 4 5 6 7 8 91011>>

  /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/chromium_org/chromecast/media/cma/ipc/
media_memory_chunk.h 14 // about the type of memory (e.g. shared memory) nor about the underlying
17 // class does not own the underlying memory),
29 // Returns whether the underlying block of memory is valid.
31 // the underlying block of memory might be invalidated by a third party.
  /external/chromium_org/mojo/public/java/system/src/org/chromium/mojo/system/
UntypedHandle.java 24 * Returns the underlying handle, as a {@link MessagePipeHandle}, invalidating this
30 * Returns the underlying handle, as a {@link ConsumerHandle}, invalidating this representation.
35 * Returns the underlying handle, as a {@link ProducerHandle}, invalidating this representation.
40 * Returns the underlying handle, as a {@link SharedBufferHandle}, invalidating this
  /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/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/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);
  /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_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.
  /external/libcxx/test/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

Completed in 767 milliseconds

1 2 3 4 5 6 7 8 91011>>