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

1 2 3 4 5

  /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...]
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());
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...]
  /device/generic/goldfish-opengl/system/vulkan_enc/
Resources.cpp 32 type new_from_host_##type(type underlying) { \
40 res->underlying = (uint64_t)underlying; \
45 type new_from_host_##type(type underlying) { \
48 res->underlying = (uint64_t)underlying; \
61 return (type)(as_goldfish->underlying); \
76 type new_from_host_u64_##type(uint64_t underlying) { \
84 res->underlying = underlying; \
    [all...]
Resources.h 28 uint64_t underlying; \
33 uint64_t underlying; \
  /external/tensorflow/tensorflow/core/common_runtime/
renamed_device.cc 23 const string& new_base, Device* underlying, bool owns_underlying,
28 underlying->parsed_name();
36 DeviceAttributes attributes(underlying->attributes());
40 underlying, attributes, owns_underlying, isolate_session_state));
43 RenamedDevice::RenamedDevice(Device* underlying,
46 : Device(underlying->env(), attributes),
47 underlying_(underlying),
renamed_device.h 32 Device* underlying,
134 RenamedDevice(Device* underlying, const DeviceAttributes& attributes,
  /external/libevent/
bufferevent_filter.c 84 struct bufferevent *underlying; member in struct:bufferevent_filtered
89 /** True iff we have received an EOF callback from the underlying
131 /** Return 1 iff bevf's underlying bufferevent's output buffer is at or
138 struct bufferevent *u = bevf->underlying;
170 bufferevent_filter_new(struct bufferevent *underlying,
180 if (!underlying)
192 if (bufferevent_init_common_(&bufev_f->bev, underlying->ev_base,
201 bufev_f->underlying = underlying;
208 bufferevent_setcb(bufev_f->underlying,
    [all...]
bufferevent_openssl.c 271 to an underlying bufferevent using a BIO_bufferevent, and one that has the
287 If we were set up with an underlying bufferevent, we use the
292 /* An underlying bufferevent that we're directing our output to.
294 struct bufferevent *underlying; member in struct:bufferevent_openssl
378 /* Have the base communications channel (either the underlying bufferevent or
384 if (bev_ssl->underlying) {
385 bufferevent_unsuspend_read_(bev_ssl->underlying,
399 /* Have the base communications channel (either the underlying bufferevent or
406 if (bev_ssl->underlying) {
408 bufferevent_unsuspend_read_(bev_ssl->underlying,
    [all...]
bufferevent.c 729 struct bufferevent *underlying; local
734 underlying = bufferevent_get_underlying(bufev);
764 /* Release the reference to underlying now that we no longer need the
766 * shared with underlying.
768 * The 'destruct' function will also drop a reference to underlying
774 if (underlying)
775 bufferevent_decref_(underlying);
815 struct bufferevent *underlying;
819 underlying = bufferevent_get_underlying(bufev);
821 if (!lock && underlying && BEV_UPCAST(underlying)->lock)
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/examples/
UrlTextExample.java 52 final HtmlStreamEventReceiver underlying; field in class:UrlTextExample.AppendDomainAfterText
55 AppendDomainAfterText(HtmlStreamEventReceiver underlying) {
56 this.underlying = underlying;
60 underlying.openDocument();
63 underlying.closeDocument();
66 underlying.openTag(elementName, attribs);
105 underlying.closeTag(elementName);
116 underlying.text(text);
  /external/curl/docs/cmdline-opts/
tlsauthtype.d 9 only if the underlying libcurl is built with TLS-SRP support, which requires
  /external/libevent/include/event2/
bufferevent_ssl.h 60 must also be the base for the underlying bufferevent.
61 @param underlying A socket to use for this SSL
70 struct bufferevent *underlying,
115 /** Return the underlying openssl SSL * object for an SSL bufferevent. */
  /external/syzkaller/vendor/google.golang.org/api/googleapi/transport/
apikey.go 14 // APIKey is an HTTP Transport which wraps an underlying transport and
20 // Transport is the underlying HTTP transport.
  /external/tensorflow/tensorflow/contrib/cloud/kernels/
gcs_config_ops.cc 111 gcs->underlying()->SetAuthProvider(std::move(provider));
190 if (gcs->underlying()->block_size() == block_size &&
191 gcs->underlying()->max_bytes() == max_cache_size &&
192 gcs->underlying()->max_staleness() == max_staleness) {
196 gcs->underlying()->ResetFileBlockCache(block_size, max_cache_size,
  /cts/tests/tests/net/src/android/net/cts/
SSLCertificateSocketFactoryTest.java 125 Socket underlying = new Socket(TEST_CREATE_SOCKET_HOST, TEST_CREATE_SOCKET_PORT); local
127 underlying, TEST_CREATE_SOCKET_HOST, TEST_CREATE_SOCKET_PORT, true);
  /external/owasp/sanitizer/src/main/org/owasp/html/
TagBalancingHtmlStreamEventReceiver.java 49 private final HtmlStreamEventReceiver underlying; field in class:TagBalancingHtmlStreamEventReceiver
55 HtmlStreamEventReceiver underlying) {
56 this.underlying = underlying;
67 underlying.openDocument();
72 underlying.closeTag(openElements.get(i).elementName);
75 underlying.closeDocument();
85 underlying.openTag(elementName, attrs);
93 underlying.openTag(elInfo.elementName, attrs);
109 underlying.openTag
    [all...]
  /external/flatbuffers/src/
idl_gen_fbs.cpp 26 static std::string GenType(const Type &type, bool underlying = false) {
33 if (type.enum_def && !underlying) {
  /external/conscrypt/openjdk/src/test/java/org/conscrypt/
ConscryptSocketTest.java 85 * Factories for underlying sockets.
168 Socket underlying = underlyingSocketType.newClientSocket(context, server, factory); local
169 if (underlying != null) {
170 return newClientSocket(context, server, underlying);
176 Socket underlying) throws IOException {
178 return init(factory.createSocket(underlying, server.getInetAddress().getHostName(),
186 Socket underlying = underlyingSocketType.newServerSocket(context, server, factory); local
187 return init(socketFactory(context).createSocket(underlying, null, -1, true), false);
567 Socket underlying = new Socket(listening.getInetAddress(), listening.getLocalPort());
569 new ClientHooks().createContext(), listening, underlying);
    [all...]
  /external/conscrypt/repackaged/openjdk/src/test/java/com/android/org/conscrypt/
ConscryptSocketTest.java 89 * Factories for underlying sockets.
174 Socket underlying = underlyingSocketType.newClientSocket(context, server, factory); local
175 if (underlying != null) {
176 return newClientSocket(context, server, underlying);
182 Socket underlying) throws IOException {
184 return init(factory.createSocket(underlying, server.getInetAddress().getHostName(),
192 Socket underlying = underlyingSocketType.newServerSocket(context, server, factory); local
193 return init(socketFactory(context).createSocket(underlying, null, -1, true), false);
573 Socket underlying = new Socket(listening.getInetAddress(), listening.getLocalPort());
575 new ClientHooks().createContext(), listening, underlying);
    [all...]
  /external/grpc-grpc/src/csharp/Grpc.Core/Interceptors/
InterceptingCallInvoker.cs 25 /// Decorates an underlying <see cref="Grpc.Core.CallInvoker" /> to
35 /// with the given underlying invoker and interceptor instances.
ServerServiceDefinitionExtensions.cs 32 /// intercepts incoming calls to the underlying service handler through the given interceptor.
52 /// intercepts incoming calls to the underlying service handler through the given interceptors.
  /external/syzkaller/vendor/google.golang.org/api/gensupport/
buffer.go 21 // The absolute position of chunk in the underlying media.
29 // Chunk returns the current buffered chunk, the offset in the underlying media
  /external/grpc-grpc/src/csharp/Grpc.Core/Internal/
ClientRequestStream.cs 23 /// Writes requests asynchronously to an underlying AsyncCall object.
ServerResponseStream.cs 24 /// Writes responses asynchronously to an underlying AsyncCallServer object.

Completed in 352 milliseconds

1 2 3 4 5