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

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/org/apache/harmony/security/utils/
WrappedX509Certificate.java 35 private final X509Certificate wrapped; field in class:WrappedX509Certificate
37 public WrappedX509Certificate(X509Certificate wrapped) {
38 this.wrapped = wrapped;
43 return wrapped.getCriticalExtensionOIDs();
48 return wrapped.getExtensionValue(oid);
53 return wrapped.getNonCriticalExtensionOIDs();
58 return wrapped.hasUnsupportedCriticalExtension();
64 wrapped.checkValidity();
70 wrapped.checkValidity(date)
    [all...]
  /libcore/luni/src/main/java/java/text/
IcuIteratorWrapper.java 25 * forward to the wrapped NativeBreakIterator).
29 /* The wrapped ICU implementation. Non-final for #clone() */
30 private com.ibm.icu.text.BreakIterator wrapped; field in class:IcuIteratorWrapper
33 wrapped = iterator;
37 return wrapped.current();
41 return wrapped.first();
46 return wrapped.following(offset);
50 return wrapped.getText();
54 return wrapped.last();
58 return wrapped.next()
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/zip/
ZipFileTest.java 25 protected ZipOutputStream createZipOutputStream(OutputStream wrapped) {
26 return new ZipOutputStream(wrapped);
  /external/glide/library/src/main/java/com/bumptech/glide/request/target/
SquaringDrawable.java 14 * 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) {
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.setDither(dither)
    [all...]
  /external/apache-http/src/org/apache/http/conn/
EofSensorWatcher.java 59 * @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)
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)
102 * @param wrapped the underlying stream which has not reached EOF
104 * @return <code>true</code> if <code>wrapped</code> should be closed
    [all...]
BasicEofSensorWatcher.java 83 public boolean eofDetected(InputStream wrapped)
90 wrapped.close();
101 public boolean streamClosed(InputStream wrapped)
108 wrapped.close();
119 public boolean streamAbort(InputStream wrapped)
BasicManagedEntity.java 159 public boolean eofDetected(InputStream wrapped)
166 wrapped.close();
177 public boolean streamClosed(InputStream wrapped)
184 wrapped.close();
195 public boolean streamAbort(InputStream wrapped)
  /external/glide/library/src/main/java/com/bumptech/glide/util/
ExceptionCatchingInputStream.java 20 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.skip(byteCount)
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
GifDrawableTransformation.java 15 private final Transformation<Bitmap> wrapped; field in class:GifDrawableTransformation
18 public GifDrawableTransformation(Transformation<Bitmap> wrapped, BitmapPool bitmapPool) {
19 this.wrapped = wrapped;
33 Resource<Bitmap> transformed = wrapped.transform(bitmapResource, outWidth, outHeight);
39 drawable.setFrameTransformation(wrapped, transformedFrame);
45 return wrapped.getId();
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
GroupExpr.java 25 public GroupExpr(Expr wrapped) {
26 super(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/apache-http/src/org/apache/http/entity/
HttpEntityWrapper.java 46 * should not be delegated to the wrapped entity.
59 /** The wrapped entity. */
65 * @param wrapped the entity to wrap
67 public HttpEntityWrapper(HttpEntity wrapped) {
70 if (wrapped == null) {
72 ("wrapped entity must not be null");
74 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/support/v4/ics/android/support/v4/view/
MenuItemCompatIcs.java 54 public OnActionExpandListenerWrapper(SupportActionExpandProxy wrapped) {
55 mWrapped = wrapped;
  /frameworks/support/v4/honeycomb_mr1/android/support/v4/animation/
HoneycombMr1AnimatorCompatProvider.java 46 public HoneycombValueAnimatorCompat(Animator wrapped) {
47 mWrapped = wrapped;
102 AnimatorListenerCompat wrapped, ValueAnimatorCompat valueAnimatorCompat) {
103 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;
  /external/openfst/src/include/fst/
edit-fst.h 34 // The EditFst class enables non-destructive edit operations on a wrapped
41 // added, and one may add transitions from existing nodes of the wrapped fst to
61 // WrappedFstT the type of fst wrapped by the EditFst instance that
125 Weight Final(StateId s, const WrappedFstT *wrapped) const {
130 wrapped->Final(s) : edits_.Final(it->second);
137 size_t NumArcs(StateId s, const WrappedFstT *wrapped) const {
140 wrapped->NumArcs(s) : edits_.NumArcs(it->second);
143 size_t NumInputEpsilons(StateId s, const WrappedFstT *wrapped) const {
146 wrapped->NumInputEpsilons(s) :
150 size_t NumOutputEpsilons(StateId s, const WrappedFstT *wrapped) const
    [all...]
  /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) {
  /frameworks/opt/photoviewer/activity/src/com/android/ex/photo/
ActionBarWrapper.java 17 public MenuVisiblityListenerWrapper(ActionBarInterface.OnMenuVisibilityListener wrapped) {
18 mWrapped = wrapped;
  /frameworks/opt/photoviewer/appcompat/src/com/android/ex/photo/
ActionBarWrapper.java 18 public MenuVisiblityListenerWrapper(ActionBarInterface.OnMenuVisibilityListener wrapped) {
19 mWrapped = wrapped;
  /packages/apps/Settings/src/com/android/settings/widget/
InvertedChartAxis.java 29 public InvertedChartAxis(ChartAxis wrapped) {
30 mWrapped = wrapped;

Completed in 513 milliseconds

1 2 3 4 5 6 7 8 91011>>