HomeSort by relevance Sort by last modified time
    Searched refs:wrap (Results 176 - 200 of 360) sorted by null

1 2 3 4 5 6 78 91011>>

  /libcore/luni/src/main/java/java/nio/
ByteBuffer.java 32 * <li>{@link #wrap(byte[]) Wrap} an existing byte array to create a new
75 * {@code wrap(array, 0, array.length)}.
81 public static ByteBuffer wrap(byte[] array) { method in class:ByteBuffer
103 public static ByteBuffer wrap(byte[] array, int start, int byteCount) { method in class:ByteBuffer
    [all...]
SocketChannelImpl.java 279 ByteBuffer readBuffer = ByteBuffer.wrap(readArray);
603 ByteBuffer buf = ByteBuffer.wrap(buffer, offset, byteCount);
657 ByteBuffer buf = ByteBuffer.wrap(buffer, offset, byteCount);
  /system/media/mca/filterfw/java/android/filterfw/core/
GLFrame.java 171 return ByteBuffer.wrap(getNativeData());
222 return ByteBuffer.wrap(getNativeData());
  /frameworks/base/docs/html/reference/renderscript/
doxygen.css 149 word-wrap: break-word;
938 text-wrap: unrestricted;
939 white-space: -moz-pre-wrap; /* Moz */
940 white-space: -pre-wrap; /* Opera 4-6 */
941 white-space: -o-pre-wrap; /* Opera 7 */
942 white-space: pre-wrap; /* CSS3 */
943 word-wrap: break-word; /* IE 5.5+ */
  /external/qemu/distrib/zlib-1.2.3/
inflate.c 168 state->wrap = 0;
172 state->wrap = (windowBits >> 4) + 1;
590 if (state->wrap == 0) {
596 if ((state->wrap & 2) && hold == 0x8b1f) { /* gzip header */
606 if (!(state->wrap & 1) || /* check if zlib header allowed */
    [all...]
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
SinkChannelTest.java 55 buffer = ByteBuffer.wrap("bytes".getBytes(ISO8859_1));
56 positionedBuffer = ByteBuffer.wrap("12345bytes".getBytes(ISO8859_1));
114 sink.write(ByteBuffer.wrap(strbytes));
  /packages/apps/Launcher2/src/com/android/launcher2/
RocketLauncher.java 256 final ViewGroup.LayoutParams wrap = new ViewGroup.LayoutParams( local
268 addView(fixedStar, wrap);
278 addView(nv, wrap);
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
MessageDigest1Test.java 111 ByteBuffer byteBuffer = ByteBuffer.wrap(b);
  /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/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/
RFC3394WrapEngine.java 14 * an implementation of the AES Key Wrapper from the NIST Key Wrap
18 * and <a href="http://csrc.nist.gov/encryption/kms/key-wrap.pdf">http://csrc.nist.gov/encryption/kms/key-wrap.pdf</a>.
67 public byte[] wrap( method in class:RFC3394WrapEngine
81 throw new DataLengthException("wrap data must be a multiple of 8 bytes");
  /external/protobuf/java/src/main/java/com/google/protobuf/
ByteString.java 211 final ByteBuffer byteBuffer = ByteBuffer.wrap(bytes);
  /external/webkit/Source/WebCore/bindings/js/
JSDataViewCustom.cpp 47 return wrap<JSDataView>(exec, globalObject, object);
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8DOMStringMapCustom.cpp 102 v8::Handle<v8::Object> wrapper = V8DOMStringMap::wrap(impl);
V8DataViewCustom.cpp 53 return V8DataView::wrap(impl);
V8DocumentCustom.cpp 131 v8::Handle<v8::Object> wrapper = V8Document::wrap(impl, forceNewObject);
V8EventCustom.cpp 182 return V8Event::wrap(impl);
V8HTMLCollectionCustom.cpp 149 return V8HTMLCollection::wrap(impl);
  /frameworks/base/core/java/android/speech/tts/
FileSynthesisCallback.java 211 ByteBuffer header = ByteBuffer.wrap(headerBuf);
  /frameworks/base/core/java/android/util/
EventLog.java 78 mBuffer = ByteBuffer.wrap(data);
  /frameworks/base/core/java/android/widget/
AdapterViewAnimator.java 130 * Specifies if the animator should wrap from 0 to the end and vice versa
480 boolean wrap = false;
482 wrap = true;
491 if (!wrap && (index < rangeStart || index > rangeEnd)) {
493 } else if (wrap && (index > rangeEnd && index < rangeStart)) {
539 // We wrap the new view in a FrameLayout so as to respect the contract
    [all...]
  /frameworks/compile/libbcc/lib/ExecutionEngine/
bcc.cpp 52 return wrap(new bcc::Script());
  /libcore/luni/src/main/java/java/io/
InputStreamReader.java 223 CharBuffer out = CharBuffer.wrap(buffer, offset, length);
  /libcore/luni/src/test/java/libcore/java/nio/charset/
Charset_TestGenerator.java 240 // ByteBuffer inputBB = ByteBuffer.wrap(bytes);
257 genEncoded(Charset.forName("MacRoman"), CharBuffer.wrap(chars));
258 // genEncoded(Charset.forName(charsetNames[37]), CharBuffer.wrap(chars));
  /libcore/support/src/test/java/libcore/javax/net/ssl/
TestSSLEnginePair.java 156 SSLEngineResult wrapResult = engine.wrap(EMPTY_BYTE_BUFFER, output);
163 // only returned by wrap/unrap status, not getHandshakeStatus
  /packages/apps/Nfc/src/com/android/nfc/snep/
SnepMessage.java 79 ByteBuffer input = ByteBuffer.wrap(data);

Completed in 1098 milliseconds

1 2 3 4 5 6 78 91011>>