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

1 2 3 4 5 6 7 8

  /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...]
  /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;
361 return wrapped.isBoundary(offset);
376 return wrapped.preceding(offset);
391 wrapped.setText(newText);
489 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/core/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::Wrapper
67 return static_cast<Wrapper*>(found)->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.
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/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;
  /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) {
  /external/chromium_org/third_party/WebKit/Source/web/
ApplicationCacheHost.cpp 85 WrappedResourceRequest wrapped(request);
86 m_internal->m_outerHost->willStartMainResourceRequest(wrapped, WebFrameImpl::fromFrame(m_documentLoader->frame()));
121 WrappedResourceResponse wrapped(response);
122 m_internal->m_outerHost->didReceiveResponseForMainResource(wrapped);
148 WrappedResourceRequest wrapped(request);
149 m_internal->m_outerHost->willStartSubResourceRequest(wrapped);
156 WrappedResourceRequest wrapped(request);
157 m_internal->m_outerHost->willStartSubResourceRequest(wrapped);
  /external/smack/src/com/kenai/jbosh/
BodyQName.java 42 * @param wrapped QName instance to wrap
45 final QName wrapped) {
46 qname = wrapped;
  /packages/apps/Settings/src/com/android/settings/widget/
InvertedChartAxis.java 29 public InvertedChartAxis(ChartAxis wrapped) {
30 mWrapped = wrapped;
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
descrobject.h 20 void *wrapped);
23 void *wrapped, PyObject *kwds);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
descrobject.h 20 void *wrapped);
23 void *wrapped, PyObject *kwds);
  /dalvik/dexgen/src/com/android/dexgen/util/
ByteArray.java 348 * simply so that the cursor of a wrapped {@link #MyInputStream}
353 private final MyInputStream wrapped; field in class:ByteArray.MyDataInputStream
355 public MyDataInputStream(MyInputStream wrapped) {
356 super(wrapped);
358 this.wrapped = wrapped;
  /dalvik/dx/src/com/android/dx/util/
ByteArray.java 348 * simply so that the cursor of a wrapped {@link #MyInputStream}
353 private final MyInputStream wrapped; field in class:ByteArray.MyDataInputStream
355 public MyDataInputStream(MyInputStream wrapped) {
356 super(wrapped);
358 this.wrapped = wrapped;
  /external/dexmaker/src/dx/java/com/android/dx/util/
ByteArray.java 348 * simply so that the cursor of a wrapped {@link #MyInputStream}
353 private final MyInputStream wrapped; field in class:ByteArray.MyDataInputStream
355 public MyDataInputStream(MyInputStream wrapped) {
356 super(wrapped);
358 this.wrapped = wrapped;

Completed in 952 milliseconds

1 2 3 4 5 6 7 8