Searched refs:wrapped (Results 1 - 25 of 123) sorted by relevance

12345

/external/protobuf/csharp/src/Google.Protobuf/Collections/
H A DReadOnlyDictionary.cs44 private readonly IDictionary<TKey, TValue> wrapped; field in class:Google.Protobuf.Collections.ReadOnlyDictionary
46 public ReadOnlyDictionary(IDictionary<TKey, TValue> wrapped) argument
48 this.wrapped = wrapped;
58 return wrapped.ContainsKey(key);
63 get { return wrapped.Keys; }
73 return wrapped.TryGetValue(key, out value);
78 get { return wrapped.Values; }
83 get { return wrapped[key]; }
99 return wrapped
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/request/target/
H A DSquaringDrawable.java14 * A wrapper drawable to square the wrapped drawable so that it expands to fill a square with exactly the given side
20 private final GlideDrawable wrapped; field in class:SquaringDrawable
23 public SquaringDrawable(GlideDrawable wrapped, int side) { argument
24 this.wrapped = wrapped;
31 wrapped.setBounds(left, top, right, bottom);
37 wrapped.setBounds(bounds);
42 wrapped.setChangingConfigurations(configs);
47 return wrapped.getChangingConfigurations();
52 wrapped
[all...]
/external/apache-http/src/org/apache/http/conn/
H A DEofSensorWatcher.java59 * @param wrapped the underlying stream which has reached EOF
61 * @return <code>true</code> if <code>wrapped</code> should be closed,
67 * wrapped stream alone, as if <code>false</code> was returned.
69 boolean eofDetected(InputStream wrapped) argument
79 * @param wrapped the underlying stream which has not reached EOF
81 * @return <code>true</code> if <code>wrapped</code> should be closed,
87 * wrapped stream alone, as if <code>false</code> was returned.
89 boolean streamClosed(InputStream wrapped) argument
102 * @param wrapped the underlying stream which has not reached EOF
104 * @return <code>true</code> if <code>wrapped</cod
112 streamAbort(InputStream wrapped) argument
[all...]
H A DBasicEofSensorWatcher.java83 public boolean eofDetected(InputStream wrapped) argument
90 wrapped.close();
101 public boolean streamClosed(InputStream wrapped) argument
108 wrapped.close();
119 public boolean streamAbort(InputStream wrapped) argument
H A DBasicManagedEntity.java159 public boolean eofDetected(InputStream wrapped) argument
166 wrapped.close();
177 public boolean streamClosed(InputStream wrapped) argument
184 wrapped.close();
195 public boolean streamAbort(InputStream wrapped) argument
/external/boringssl/src/decrepit/obj/
H A Dobj_decrepit.c32 const struct wrapped_callback *wrapped = (struct wrapped_callback *)arg; local
40 wrapped->callback(&obj_name, wrapped->arg);
45 const struct wrapped_callback *wrapped = (struct wrapped_callback*) arg; local
53 wrapped->callback(&obj_name, wrapped->arg);
59 struct wrapped_callback wrapped; local
60 wrapped.callback = callback;
61 wrapped.arg = arg;
64 EVP_CIPHER_do_all_sorted(cipher_callback, &wrapped);
[all...]
/external/boringssl/src/decrepit/dh/
H A Ddh_decrepit.c65 struct wrapped_callback *wrapped = (struct wrapped_callback *) gencb->arg; local
66 wrapped->callback(event, n, wrapped->arg);
84 struct wrapped_callback wrapped; local
87 wrapped.callback = callback;
88 wrapped.arg = cb_arg;
91 BN_GENCB_set(cb, callback_wrapper, &wrapped);
/external/boringssl/src/decrepit/dsa/
H A Ddsa_decrepit.c65 struct wrapped_callback *wrapped = (struct wrapped_callback *) gencb->arg; local
66 wrapped->callback(event, n, wrapped->arg);
85 struct wrapped_callback wrapped; local
88 wrapped.callback = callback;
89 wrapped.arg = cb_arg;
92 BN_GENCB_set(cb, callback_wrapper, &wrapped);
/external/glide/library/src/main/java/com/bumptech/glide/util/
H A DExceptionCatchingInputStream.java20 private RecyclableBufferedInputStream wrapped; field in class:ExceptionCatchingInputStream
47 wrapped = toWrap;
52 return wrapped.available();
57 wrapped.close();
62 wrapped.mark(readlimit);
67 return wrapped.markSupported();
74 read = wrapped.read(buffer);
86 read = wrapped.read(buffer, byteOffset, byteCount);
96 wrapped.reset();
103 skipped = wrapped
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
H A DGifDrawableTransformation.java15 private final Transformation<Bitmap> wrapped; field in class:GifDrawableTransformation
18 public GifDrawableTransformation(Transformation<Bitmap> wrapped, BitmapPool bitmapPool) { argument
19 this.wrapped = wrapped;
33 Resource<Bitmap> transformed = wrapped.transform(bitmapResource, outWidth, outHeight);
39 drawable.setFrameTransformation(wrapped, transformedFrame);
45 return wrapped.getId();
/external/parameter-framework/upstream/parameter/
H A DCommandHandlerWrapper.cpp34 CommandHandlerWrapper::CommandHandlerWrapper(std::unique_ptr<IRemoteCommandHandler> &&wrapped) argument
35 : mWrapped(std::move(wrapped))
H A DCommandHandlerWrapper.h39 CommandHandlerWrapper(std::unique_ptr<IRemoteCommandHandler> &&wrapped);
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
H A DOptimizingTemplateFactory.java31 private final TemplateFactory wrapped; field in class:OptimizingTemplateFactory
37 * @param wrapped the template factory instance to be wrapped.
40 public OptimizingTemplateFactory(TemplateFactory wrapped, OptimizerProvider... optimizers) { argument
41 this.wrapped = wrapped;
59 TemplateSyntaxTree result = wrapped.createTemp(content, escapeMode);
67 TemplateSyntaxTree result = wrapped.find(templateName, resourceLoader, escapeMode);
/external/conscrypt/testing/src/main/java/org/conscrypt/
H A DChannelType.java35 * The type of socket to be wrapped by the Conscrypt socket.
60 Socket wrapped = new Socket(address, port);
61 assertNull(wrapped.getChannel());
63 return clientMode(factory.createSocket(wrapped, address.getHostName(), port, true));
75 Socket wrapped = serverSocket.accept();
76 assertNull(wrapped.getChannel());
79 wrapped, wrapped.getInetAddress().getHostAddress(), wrapped.getPort(), true));
86 Socket wrapped
[all...]
/external/apache-http/src/org/apache/http/entity/
H A DHttpEntityWrapper.java46 * should not be delegated to the wrapped entity.
59 /** The wrapped entity. */
65 * @param wrapped the entity to wrap
67 public HttpEntityWrapper(HttpEntity wrapped) { argument
70 if (wrapped == null) {
72 ("wrapped entity must not be null");
74 wrappedEntity = wrapped;
/external/llvm/bindings/python/llvm/
H A Dcommon.py78 def __init__(self, wrapped):
79 self.wrapped = wrapped
81 self.__doc__ = wrapped.__doc__
89 value = self.wrapped(instance)
90 setattr(instance, self.wrapped.__name__, value)
/external/smali/util/src/main/java/org/jf/util/
H A DWrappedIndentingWriter.java80 List<String> wrapped = Lists.newArrayList(StringWrapper.wrapStringOnBreaks(line.toString(), maxWidth));
81 out.write(wrapped.get(0), 0, wrapped.get(0).length());
86 for (int i=1; i<wrapped.size(); i++) {
90 write(wrapped.get(i));
/external/skia/src/gpu/vk/
H A DGrVkTextureRenderTarget.cpp58 GrVkImage::Wrapped wrapped)
60 , GrVkImage(info, wrapped)
61 , GrVkTexture(gpu, desc, info, texView, wrapped)
63 resolveAttachmentView, wrapped) {
72 GrVkImage::Wrapped wrapped)
74 , GrVkImage(info, wrapped)
75 , GrVkTexture(gpu, desc, info, texView, wrapped)
76 , GrVkRenderTarget(gpu, desc, info, colorAttachmentView, wrapped) {
85 GrVkImage::Wrapped wrapped) {
152 if (GrVkImage::kNot_Wrapped == wrapped) {
51 GrVkTextureRenderTarget(GrVkGpu* gpu, const GrSurfaceDesc& desc, const GrVkImageInfo& info, const GrVkImageView* texView, const GrVkImageInfo& msaaInfo, const GrVkImageView* colorAttachmentView, const GrVkImageView* resolveAttachmentView, GrVkImage::Wrapped wrapped) argument
67 GrVkTextureRenderTarget(GrVkGpu* gpu, const GrSurfaceDesc& desc, const GrVkImageInfo& info, const GrVkImageView* texView, const GrVkImageView* colorAttachmentView, GrVkImage::Wrapped wrapped) argument
81 Make(GrVkGpu* gpu, const GrSurfaceDesc& desc, const GrVkImageInfo& info, SkBudgeted budgeted, GrVkImage::Wrapped wrapped) argument
211 GrVkImage::Wrapped wrapped = kBorrow_GrWrapOwnership == ownership ? GrVkImage::kBorrowed_Wrapped local
[all...]
H A DGrVkRenderTarget.h86 GrVkImage::Wrapped wrapped);
92 GrVkImage::Wrapped wrapped);
122 GrVkImage::Wrapped wrapped);
129 GrVkImage::Wrapped wrapped);
132 const GrVkImageInfo&, GrVkImage::Wrapped wrapped);
H A DGrVkTextureRenderTarget.h74 GrVkImage::Wrapped wrapped);
81 GrVkImage::Wrapped wrapped);
87 GrVkImage::Wrapped wrapped);
H A DGrVkRenderTarget.cpp31 GrVkImage::Wrapped wrapped)
33 , GrVkImage(info, wrapped)
54 GrVkImage::Wrapped wrapped)
56 , GrVkImage(info, wrapped)
75 GrVkImage::Wrapped wrapped)
77 , GrVkImage(info, wrapped)
95 GrVkImage::Wrapped wrapped)
97 , GrVkImage(info, wrapped)
113 GrVkImage::Wrapped wrapped) {
170 colorAttachmentView, resolveAttachmentView, wrapped);
24 GrVkRenderTarget(GrVkGpu* gpu, SkBudgeted budgeted, const GrSurfaceDesc& desc, const GrVkImageInfo& info, const GrVkImageInfo& msaaInfo, const GrVkImageView* colorAttachmentView, const GrVkImageView* resolveAttachmentView, GrVkImage::Wrapped wrapped) argument
48 GrVkRenderTarget(GrVkGpu* gpu, const GrSurfaceDesc& desc, const GrVkImageInfo& info, const GrVkImageInfo& msaaInfo, const GrVkImageView* colorAttachmentView, const GrVkImageView* resolveAttachmentView, GrVkImage::Wrapped wrapped) argument
70 GrVkRenderTarget(GrVkGpu* gpu, SkBudgeted budgeted, const GrSurfaceDesc& desc, const GrVkImageInfo& info, const GrVkImageView* colorAttachmentView, GrVkImage::Wrapped wrapped) argument
91 GrVkRenderTarget(GrVkGpu* gpu, const GrSurfaceDesc& desc, const GrVkImageInfo& info, const GrVkImageView* colorAttachmentView, GrVkImage::Wrapped wrapped) argument
109 Create(GrVkGpu* gpu, SkBudgeted budgeted, const GrSurfaceDesc& desc, const GrVkImageInfo& info, GrVkImage::Wrapped wrapped) argument
[all...]
H A DGrVkTexture.h45 GrVkImage::Wrapped wrapped);
57 const GrVkImageInfo&, const GrVkImageView* imageView, GrVkImage::Wrapped wrapped);
/external/python/cpython2/Lib/
H A Dfunctools.py18 wrapped,
21 """Update a wrapper function to look like the wrapped function
24 wrapped is the original function
26 from the wrapped function to the wrapper function (defaults to
29 are updated with the corresponding attribute from the wrapped
33 setattr(wrapper, attr, getattr(wrapped, attr))
35 getattr(wrapper, attr).update(getattr(wrapped, attr, {}))
39 def wraps(wrapped,
50 return partial(update_wrapper, wrapped=wrapped,
[all...]
/external/python/cpython2/Include/
H A Ddescrobject.h20 void *wrapped);
23 void *wrapped, PyObject *kwds);
/external/guava/guava/src/com/google/common/primitives/
H A DPrimitives.java113 Class<T> wrapped = (Class<T>) PRIMITIVE_TO_WRAPPER_TYPE.get(type);
114 return (wrapped == null) ? type : wrapped;

Completed in 2353 milliseconds

12345