HomeSort by relevance Sort by last modified time
    Searched defs:wrap (Results 126 - 150 of 340) sorted by null

1 2 3 4 56 7 8 91011>>

  /libcore/luni/src/test/java/libcore/java/nio/charset/
OldCharsetEncoderDecoderBufferTest.java 41 CharBuffer out = CharBuffer.wrap(cBuf);
43 decoder.decode(ByteBuffer.wrap(new byte[]{(byte)'a', (byte)'b', (byte)'c', (byte)'d'}),
51 out = ByteBuffer.wrap(bBuf).asCharBuffer();
53 decoder.decode(ByteBuffer.wrap(new byte[]{(byte)'x'}), out, true);
71 CharBuffer out = CharBuffer.wrap(new char[10]);
74 ByteBuffer inWithArray = ByteBuffer.wrap(inArray);
81 ByteBuffer inWithoutArray = ByteBuffer.wrap(new byte[] { (byte) 'x' }).asReadOnlyBuffer();
99 ByteBuffer out = ByteBuffer.wrap(buffer);
102 encoder.encode(CharBuffer.wrap("ab"), out, false);
114 encoder.encode(CharBuffer.wrap("x"), out, true)
    [all...]
  /libcore/support/src/test/java/libcore/javax/net/ssl/
TestKeyManager.java 43 public static KeyManager[] wrap(KeyManager[] keyManagers) { method in class:TestKeyManager
46 result[i] = wrap(result[i]);
51 public static KeyManager wrap(KeyManager keyManager) { method in class:TestKeyManager
  /packages/apps/Camera2/jni/
tinyplanet.cc 87 // Wrap circular coordinates around the globe
88 inline float wrap(float value, float dimension) { function
122 // Wrap around the globe
123 px = wrap(px, input_width);
124 py = wrap(py, input_height);
  /packages/apps/Gallery2/jni/filters/
tinyplanet.cc 86 // Wrap circular coordinates around the globe
87 inline float wrap(float value, float dimension) { function
121 // Wrap around the globe
122 px = wrap(px, input_width);
123 py = wrap(py, input_height);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_as_parameter.py 18 def wrap(self, param): member in class:BasicWrapTestCase
28 result = f(self.wrap(1), self.wrap(u"x"), self.wrap(3), self.wrap(4), self.wrap(5.0), self.wrap(6.0))
44 result = f(self.wrap(pointer(v)))
49 result = f(self.wrap(pointer(v)))
53 result = f(self.wrap(p)
215 wrap = AsParamWrapper variable in class:AsParamWrapperTestCase
228 wrap = AsParamPropertyWrapper variable in class:AsParamPropertyWrapperTestCase
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
inspect_fodder2.py 2 def wrap(foo=None): function
14 @wrap()
15 @wrap(wrap)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_as_parameter.py 18 def wrap(self, param): member in class:BasicWrapTestCase
28 result = f(self.wrap(1), self.wrap(u"x"), self.wrap(3), self.wrap(4), self.wrap(5.0), self.wrap(6.0))
44 result = f(self.wrap(pointer(v)))
49 result = f(self.wrap(pointer(v)))
53 result = f(self.wrap(p)
215 wrap = AsParamWrapper variable in class:AsParamWrapperTestCase
228 wrap = AsParamPropertyWrapper variable in class:AsParamPropertyWrapperTestCase
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
inspect_fodder2.py 2 def wrap(foo=None): function
14 @wrap()
15 @wrap(wrap)
  /external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
SSLEngineTest.java 83 * Test for <code>wrap(ByteBuffer src, ByteBuffer dst)</code> method
99 e.wrap(bbN, bb);
100 e.wrap(bb, bbN);
104 e.wrap(bb, roBb);
109 * Test for <code>wrap(ByteBuffer[] srcs, ByteBuffer dst)</code> method
130 e.wrap(bbNA, bb);
135 e.wrap(bbA, bb);
136 e.wrap(bbA, bbN);
143 e.wrap(bbA, roBb);
148 * Test for <code>wrap(ByteBuffer src, ByteBuffer dst)</code> an
491 public SSLEngineResult wrap(ByteBuffer[] srcs, int offset, int length, method in class:mySSLEngine
538 public SSLEngineResult wrap(ByteBuffer[] srcs, ByteBuffer dst) method in class:mySSLEngine1
547 public SSLEngineResult wrap(ByteBuffer src, ByteBuffer dst) method in class:mySSLEngine1
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
debug.rb 167 @input = Debug::TokenStream.wrap( @input, @debug_listener )
295 def self.wrap( stream, debug_listener = nil ) singleton method in class:ANTLR3.Debug.TokenStream
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/sasl/
Sasl4Test.java 356 public byte[] wrap(byte[] outgoing, int offset, int len) method in class:Sasl4Test.mySaslServerFactory.mySaslServer
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
ServerHandshakeImplTest.java 84 server.wrap(); // modelling of server respond sending
114 server.wrap(); // modelling of server respond sending
  /external/apache-harmony/x-net/src/test/java/javax/net/ssl/
MySSLContextSpi.java 166 public SSLEngineResult wrap(ByteBuffer[] srcs, int offset, method in class:MySSLContextSpi.tmpSSLEngine
  /external/apache-harmony/x-net/src/test/support/common/java/org/apache/harmony/xnet/tests/support/
MySSLContextSpi.java 174 public SSLEngineResult wrap(ByteBuffer[] srcs, int offset, method in class:MySSLContextSpi.tmpSSLEngine
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/managed_bookmarks/
background.js 36 * A CallbackChain can be used to wrap other callbacks and perform a list of
48 CallbackChain.prototype.wrap = function(callback) {
143 }, callbackChain.wrap((function(wantedChild, newChild, createdNode) {
154 var chainCounter = callbackChain.wrap();
175 }, callbackChain.wrap(function(newNode) {
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xa/
xa_composite.h 98 enum xa_composite_wrap wrap; member in struct:xa_picture
  /external/chromium_org/third_party/zlib/
inflate.c 134 int wrap; local
141 /* extract wrap request from windowBits parameter */
143 wrap = 0;
147 wrap = (windowBits >> 4) + 1;
163 state->wrap = wrap;
625 if (state->wrap == 0) {
631 if ((state->wrap & 2) && hold == 0x8b1f) { /* gzip header */
641 if (!(state->wrap & 1) || /* check if zlib header allowed */
    [all...]
  /external/chromium_org/v8/test/mjsunit/harmony/
proxies-example-membrane.js 116 function wrap(obj) {
118 print("wrap enter", str(obj));
122 print("wrap exit", str(obj), "as", str(x));
125 print("wrap exception", str(e));
151 return wrap(fun.apply(that, Array.prototype.map.call(args, wrap)));
153 throw wrap(e);
175 var x = wrapCall(obj, wrap(this), arguments);
183 return wrap(new forward(Array.prototype.map.call(arguments, wrap)));
    [all...]
  /external/clang/test/Analysis/
idempotent-operations.c 207 int xy, wrap, pred, a, b, c; local
210 wrap = s->RDar8431728_A;
213 b = s->RDar8431728_B[xy - 1 - wrap];
214 c = s->RDar8431728_B[xy - wrap];
  /external/clang/test/CXX/temp/temp.param/
p15-cxx0x.cpp 74 template<typename T> struct wrap { struct in namespace:ParameterPackExpansions
90 template inner<wrap<Ts>::template inner...>::take; // expected-error {{too few template arguments}}
94 template inner<wrap<Ts>::template inner...>::drop; // expected-error {{too few template arguments}}
  /external/e2fsprogs/e2fsck/
recovery.c 206 /* Make sure we wrap around the log correctly! */
207 #define wrap(journal, var) \ macro
338 wrap(journal, *next_log_block);
425 wrap(journal, next_log_block);
475 wrap(journal, next_log_block);
493 wrap(journal, next_log_block);
  /external/emma/core/java12/com/vladium/emma/
EMMAProperties.java 104 public static IProperties wrap (final Properties properties) method in class:EMMAProperties
108 return IProperties.Factory.wrap (properties, ReportProperties.REPORT_PROPERTY_MAPPER);
138 final IProperties systemRedirects = wrap (Property.getSystemPropertyRedirects (EMMAProperties.SYSTEM_PROPERTY_REDIRECTS));
139 final IProperties appDefaults = wrap (Property.getProperties (appName + "_default.properties", loader));
147 systemFile = wrap (Property.getLazyPropertiesFromFile (file));
149 final IProperties system = wrap (Property.getSystemProperties (appName));
150 final IProperties userOverrides = wrap (Property.getProperties (appName + ".properties", loader));
  /external/emma/core/java12/com/vladium/util/
IProperties.java 85 public static IProperties wrap (final Properties properties, final IMapper mapper) method in class:IProperties.Factory
  /external/jmonkeyengine/engine/src/android/jme3tools/android/
Fixed.java 386 public static int wrap(int n, int limit) { method in class:Fixed
  /external/llvm/include/llvm/Support/
ErrorOr.h 167 typedef ReferenceStorage<typename remove_reference<T>::type> wrap; typedef in class:llvm::ErrorOr
172 , wrap
370 pointer toPointer(wrap *Val) {

Completed in 769 milliseconds

1 2 3 4 56 7 8 91011>>