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

1 2 3 4 5 6 7 8 91011

  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
GifDrawableResource.java 6 private Resource<GifData> wrapped; field in class:GifDrawableResource
8 public GifDrawableResource(Resource<GifData> wrapped) {
9 this.wrapped = wrapped;
14 return wrapped.get().getDrawable();
19 return wrapped.getSize();
24 wrapped.recycle();
GifDataTransformation.java 9 private Transformation<Bitmap> wrapped; field in class:GifDataTransformation
11 public GifDataTransformation(Transformation<Bitmap> wrapped) {
12 this.wrapped = wrapped;
19 new MultiTransformation<Bitmap>(data.getFrameTransformation(), wrapped);
26 return wrapped.getId();
  /external/chromium_org/third_party/sqlite/src/src/
test_init.c 32 static struct Wrapped {
43 } wrapped; variable in typeref:struct:Wrapped
47 if( wrapped.mem_fail ){
50 rc = wrapped.mem.xInit(wrapped.mem.pAppData);
53 wrapped.mem_init = 1;
58 wrapped.mem.xShutdown(wrapped.mem.pAppData);
59 wrapped.mem_init = 0;
61 static void *wrMemMalloc(int n) {return wrapped.mem.xMalloc(n);
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/request/target/
SquaringDrawable.java 11 * A wrapper drawable to square the wrapped drawable so that it expands to fill a square with exactly the given side
17 private final Drawable wrapped; field in class:SquaringDrawable
20 public SquaringDrawable(Drawable wrapped, int side) {
21 this.wrapped = wrapped;
28 wrapped.setBounds(left, top, right, bottom);
34 wrapped.setBounds(bounds);
37 wrapped.setChangingConfigurations(configs);
42 return wrapped.getChangingConfigurations();
47 wrapped.setDither(dither)
    [all...]
  /libcore/luni/src/main/java/java/text/
RuleBasedBreakIterator.java 26 * forward to the wrapped NativeBreakIterator).
35 return wrapped.current();
39 return wrapped.first();
44 return wrapped.following(offset);
48 if (!wrapped.hasText()) {
51 CharacterIterator it = wrapped.getText();
59 return wrapped.getText();
63 return wrapped.last();
67 return wrapped.next();
71 return wrapped.next(n)
    [all...]
BreakIterator.java 233 // the wrapped ICU implementation
234 NativeBreakIterator wrapped; field in class:BreakIterator
246 wrapped = iterator;
342 return wrapped.isBoundary(offset);
357 return wrapped.preceding(offset);
372 wrapped.setText(newText);
470 cloned.wrapped = (NativeBreakIterator) wrapped.clone();
  /external/apache-http/src/org/apache/http/conn/
EofSensorWatcher.java 54 * @param wrapped the underlying stream which has reached EOF
56 * @return <code>true</code> if <code>wrapped</code> should be closed,
62 * wrapped stream alone, as if <code>false</code> was returned.
64 boolean eofDetected(InputStream wrapped)
74 * @param wrapped the underlying stream which has not reached EOF
76 * @return <code>true</code> if <code>wrapped</code> should be closed,
82 * wrapped stream alone, as if <code>false</code> was returned.
84 boolean streamClosed(InputStream wrapped)
97 * @param wrapped the underlying stream which has not reached EOF
99 * @return <code>true</code> if <code>wrapped</code> should be closed
    [all...]
BasicEofSensorWatcher.java 78 public boolean eofDetected(InputStream wrapped)
85 wrapped.close();
96 public boolean streamClosed(InputStream wrapped)
103 wrapped.close();
114 public boolean streamAbort(InputStream wrapped)
BasicManagedEntity.java 154 public boolean eofDetected(InputStream wrapped)
161 wrapped.close();
172 public boolean streamClosed(InputStream wrapped)
179 wrapped.close();
190 public boolean streamAbort(InputStream wrapped)
  /external/chromium_org/third_party/WebKit/Source/platform/
RefCountedSupplement.h 45 explicit Wrapper(PassRefPtr<ThisType> wrapped) : m_wrapped(wrapped) { }
50 ThisType* wrapped() const { return m_wrapped.get(); } function in class:WebCore::RefCountedSupplement::FINAL
70 return static_cast<Wrapper*>(found)->wrapped();
  /external/chromium_org/sync/api/
sync_change_processor_wrapper_for_test.cc 10 syncer::SyncChangeProcessor* wrapped)
11 : wrapped_(wrapped) {
sync_change_processor_wrapper_for_test.h 17 // All method calls are forwarded to |wrapped|. Caller maintains ownership
18 // of |wrapped| and is responsible for ensuring it outlives this object.
20 syncer::SyncChangeProcessor* wrapped);
  /external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
OptimizingTemplateFactory.java 31 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) {
41 this.wrapped = wrapped;
59 TemplateSyntaxTree result = wrapped.createTemp(content, escapeMode);
67 TemplateSyntaxTree result = wrapped.find(templateName, resourceLoader, escapeMode);
  /external/chromium_org/sync/api/attachments/
attachment_service_proxy_for_test.cc 14 scoped_ptr<AttachmentService> wrapped,
17 wrapped_(wrapped.Pass()),
27 scoped_ptr<AttachmentService> wrapped(AttachmentServiceImpl::CreateForTest());
36 new base::WeakPtrFactory<AttachmentService>(wrapped.get()));
39 new OwningCore(wrapped.Pass(), weak_ptr_factory.Pass()));
  /external/apache-http/src/org/apache/http/entity/
HttpEntityWrapper.java 46 * should not be delegated to the wrapped entity.
54 /** The wrapped entity. */
60 * @param wrapped the entity to wrap
62 public HttpEntityWrapper(HttpEntity wrapped) {
65 if (wrapped == null) {
67 ("wrapped entity must not be null");
69 wrappedEntity = wrapped;
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
NowOrLaterWrapper.java 25 public NowOrLaterWrapper(NowOrLater<A> wrapped) {
26 mWrapped = wrapped;
47 * on the behaviour of the wrapped object and the caller.
  /external/llvm/bindings/python/llvm/
common.py 78 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)
  /frameworks/base/core/java/com/android/internal/util/
SizedInputStream.java 25 * Reads exact number of bytes from wrapped stream, returning EOF once those
32 public SizedInputStream(InputStream wrapped, long length) {
33 mWrapped = wrapped;
  /frameworks/ex/variablespeed/jni/
ring_buffer.cc 107 int wrapped = size_ - pos; local
109 num_channels_ * wrapped * sizeof(destination[0]));
110 int remaining = num_frames - wrapped;
111 memcpy(destination + wrapped * num_channels_, samples_,
142 int wrapped = size_ - pos; local
144 num_channels_ * wrapped * sizeof(source[0]));
145 int remaining = num_frames - wrapped;
146 memcpy(samples_, source + (wrapped * num_channels_),
  /frameworks/support/v4/ics/android/support/v4/view/
MenuItemCompatIcs.java 54 public OnActionExpandListenerWrapper(SupportActionExpandProxy wrapped) {
55 mWrapped = wrapped;
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
WindowCallbackWrapper.java 27 * to the wrapped instance as a base implementation. Call super.foo() to call into
28 * the wrapped callback for any subclasses.
35 public WindowCallbackWrapper(WindowCallback wrapped) {
36 if (wrapped == null) {
39 mWrapped = wrapped;
  /libcore/benchmarks/src/benchmarks/
DeepArrayOpsBenchmark.java 127 private final int wrapped; field in class:DeepArrayOpsBenchmark.IntWrapper
130 wrapped = wrap;
135 return wrapped;
144 return ((IntWrapper) o).wrapped == this.wrapped;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
functools.py 18 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...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
functools.py 18 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...]
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
ColumnAdapter.java 43 public ColumnAdapter(ListAdapter wrapped, OnItemClickListener listener) {
44 mWrapped = Preconditions.checkNotNull(wrapped);
47 if (!wrapped.areAllItemsEnabled()) {
50 if (wrapped.getViewTypeCount() > 1) {

Completed in 690 milliseconds

1 2 3 4 5 6 7 8 91011