/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...] |
/external/proguard/src/proguard/io/ |
package.html | 2 This package contains classes to read and write files, optionally wrapped in
|
/external/chromium_org/content/browser/indexed_db/ |
list_set_unittest.cc | 96 class Wrapped { 98 explicit Wrapped(const T& value) : value_(value) {} 99 explicit Wrapped(const Wrapped<T>& other) : value_(other.value_) {} 100 Wrapped& operator=(const Wrapped<T>& rhs) { 105 bool operator<(const Wrapped<T>& rhs) const { return value_ < rhs.value_; } 106 bool operator==(const Wrapped<T>& rhs) const { return value_ == rhs.value_; } 113 list_set<Wrapped<int> > set; 116 list_set<Wrapped<int> >::iterator it = set.begin() [all...] |
/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/valgrind/main/memcheck/tests/ |
wrap7.c | 5 /* The simplest possible wrapping test: just call a wrapped function 6 and check we run the wrapper instead. Except: the wrapped 12 /* The wrapper. The function being wrapped is in a .so with soname
|
/frameworks/base/core/java/android/widget/ |
WrapperListAdapter.java | 20 * List adapter that wraps another list adapter. The wrapped adapter can be retrieved 27 * Returns the adapter wrapped by this list adapter. 29 * @return The {@link android.widget.ListAdapter} wrapped by this adapter.
|
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/ |
kernel_proxy_mock.cc | 11 // Uninitialize the kernel proxy so wrapped functions passthrough to their
|
/external/markdown/MarkdownTest/Tests_2004/ |
Hard-wrapped paragraphs with list-like lines.html | 3 Because a hard-wrapped line in the
|
Hard-wrapped paragraphs with list-like lines.text | 3 Because a hard-wrapped line in the
|
/external/markdown/MarkdownTest/Tests_2007/ |
Hard-wrapped paragraphs with list-like lines.html | 3 Because a hard-wrapped line in the
|
Hard-wrapped paragraphs with list-like lines.text | 3 Because a hard-wrapped line in the
|
/external/markdown/tests/markdown-test/ |
hard-wrapped.html | 3 Because a hard-wrapped line in the
|
hard-wrapped.txt | 3 Because a hard-wrapped line in the
|
/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...] |
/external/chromium_org/third_party/libaddressinput/chromium/cpp/src/ |
validating_util.cc | 93 std::string wrapped; local 94 wrapped.append(kTimestampPrefix, kTimestampPrefixLength); 95 wrapped.append(timestamp_string); 96 wrapped.push_back(kSeparator); 98 wrapped.append(kChecksumPrefix, kChecksumPrefixLength); 99 wrapped.append(MD5String(data)); 100 wrapped.push_back(kSeparator); 101 wrapped.append(data); 103 return wrapped;
|
/external/chromium/chrome/browser/policy/proto/ |
device_management_local.proto | 15 // The DevicePolicyResponse wrapped by this message. 23 // The PolicyFetchResponse wrapped by this message.
|
/external/chromium_org/chrome/browser/policy/proto/cloud/ |
device_management_local.proto | 15 // The DevicePolicyResponse wrapped by this message. 23 // The PolicyFetchResponse wrapped by this message.
|
/external/chromium_org/components/policy/proto/ |
device_management_local.proto | 15 // The DevicePolicyResponse wrapped by this message. 23 // The PolicyFetchResponse wrapped by this message.
|
/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_),
|
/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...] |
/frameworks/base/opengl/java/android/opengl/ |
EGLObjectHandle.java | 21 * Base class for wrapped EGL objects. 32 * Returns the native handle of the wrapped EGL object. This handle can be 37 * @return the native handle of the wrapped EGL object.
|
/frameworks/native/opengl/tools/glgen/static/egl/ |
EGLObjectHandle.java | 21 * Base class for wrapped EGL objects. 32 * Returns the native handle of the wrapped EGL object. This handle can be 37 * @return the native handle of the wrapped EGL object.
|
/libcore/luni/src/main/java/java/util/ |
EventListenerProxy.java | 32 * the listener wrapped by this proxy. 39 * Returns the wrapped {@code EventListener}. 41 * @return the wrapped {@code EventListener}.
|