HomeSort by relevance Sort by last modified time
    Searched refs:wrap (Results 101 - 125 of 257) sorted by null

1 2 3 45 6 7 8 91011

  /external/webkit/WebCore/inspector/front-end/
InjectedScriptAccess.js 63 var callId = WebInspector.Callback.wrap(myCallback);
  /libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/
ChunkHandler.java 75 * Utility function to wrap a ByteBuffer around a Chunk.
80 in = ByteBuffer.wrap(request.data, request.offset, request.length);
  /libcore/luni/src/main/java/java/nio/channels/
Channels.java 194 * wrap a byte array to a ByteBuffer
197 ByteBuffer buffer = ByteBuffer.wrap(bytes);
255 ByteBuffer buffer = ByteBuffer.wrap(target, offset, length);
280 ByteBuffer buffer = ByteBuffer.wrap(target, offset, length);
319 ByteBuffer buffer = ByteBuffer.wrap(source, offset, length);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/voice/
WaveformImage.java 48 .wrap(waveBuffer.toByteArray())
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audioquality/
Utils.java 104 ByteBuffer bb = ByteBuffer.wrap(data, start, len);
122 ByteBuffer bb = ByteBuffer.wrap(data);
140 ByteBuffer bb = ByteBuffer.wrap(data);
  /libcore/luni/src/main/java/java/nio/charset/
CharsetEncoder.java 197 return implCanEncode(CharBuffer.wrap(new char[] { c }));
246 cb = CharBuffer.wrap(sequence);
621 ByteBuffer in = ByteBuffer.wrap(replacement);
  /libcore/luni/src/main/java/org/apache/harmony/nio/internal/
IOUtil.java 151 CharBuffer chars = CharBuffer.wrap(str, offset, count + offset);
169 CharBuffer chars = CharBuffer.wrap(new char[] { (char) oneChar });
181 CharBuffer chars = CharBuffer.wrap(buf, offset, count);
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
SSLRecordProtocol.java 184 protected byte[] wrap(byte content_type, DataStream dataStream) { method in class:SSLRecordProtocol
186 return wrap(content_type, fragment, 0, fragment.length);
196 protected byte[] wrap(byte content_type, method in class:SSLRecordProtocol
199 logger.println("SSLRecordProtocol.wrap: TLSPlaintext.fragment["
221 logger.println("SSLRecordProtocol.wrap: TLSCiphertext.fragment["
HandshakeProtocol.java 266 public byte[] wrap() { method in class:HandshakeProtocol
275 return recordProtocol.wrap(ContentType.HANDSHAKE, io_stream);
282 return recordProtocol.wrap(ContentType.HANDSHAKE,
SSLEngineImpl.java 544 // to another peer (by wrap method)
553 // to another peer (by wrap method)
570 * @see javax.net.ssl.SSLEngine#wrap(ByteBuffer[],int,int,ByteBuffer) method
574 public SSLEngineResult wrap(ByteBuffer[] srcs, int offset, method in class:SSLEngineImpl
614 byte[] alert_data = alertProtocol.wrap();
674 recordProtocol.wrap(ContentType.APPLICATION_DATA,
695 remaining_hsh_data = handshakeProtocol.wrap();
728 // to another peer (by wrap method)
  /packages/apps/Mms/src/com/android/mms/ui/
RecipientsAdapter.java 205 ArrayList<ArrayList> wrap = new ArrayList<ArrayList>(); local
206 wrap.add(result);
208 ArrayListCursor translated = new ArrayListCursor(PROJECTION_PHONE, wrap);
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
HandleNativeHeap.java 131 ByteBuffer buffer = ByteBuffer.wrap(copy);
187 data = ByteBuffer.wrap(dataCopy);
202 ByteBuffer buffer = ByteBuffer.wrap(copy);
  /libcore/luni/src/test/java/org/apache/harmony/nio/tests/java/nio/
DoubleBufferTest.java 161 DoubleBuffer wrapped = DoubleBuffer.wrap(array, 3, array.length - 3);
201 DoubleBuffer dbuffer1 = DoubleBuffer.wrap(new double[] { Double.NaN });
202 DoubleBuffer dbuffer2 = DoubleBuffer.wrap(new double[] { Double.NaN });
203 DoubleBuffer dbuffer3 = DoubleBuffer.wrap(new double[] { 42d });
297 DoubleBuffer dbuffer1 = DoubleBuffer.wrap(new double[] { Double.NaN });
298 DoubleBuffer dbuffer2 = DoubleBuffer.wrap(new double[] { Double.NaN });
299 DoubleBuffer dbuffer3 = DoubleBuffer.wrap(new double[] { 42d });
849 * test for method static DoubleBuffer wrap(double[] array) test covers
857 method = "wrap",
863 DoubleBuffer buf2 = DoubleBuffer.wrap(array)
    [all...]
  /external/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...]
  /libcore/luni/src/test/java/tests/api/java/nio/charset/
Charset_AbstractTest.java 130 CharBuffer inputCB = CharBuffer.wrap(testChars);
145 ByteBuffer inputBB = ByteBuffer.wrap(input);
187 CharBuffer inputCB = CharBuffer.wrap(testChars);
  /external/dnsmasq/
Makefile 75 echo -n msgmerge $$f && $(MSGMERGE) --no-wrap -U $$f ../$(SRC)/dnsmasq.pot; \
  /external/guava/src/com/google/common/primitives/
Primitives.java 90 * wrap(int.class) == Integer.class
91 * wrap(Integer.class) == Integer.class
92 * wrap(String.class) == String.class
95 public static <T> Class<T> wrap(Class<T> type) { method in class:Primitives
  /external/v8/test/mjsunit/regress/
regress-crbug-3184.js 35 wrap : function (wrapper) {
57 String.prototype.cap = String.prototype.cap.wrap(
  /external/webkit/WebCore/bindings/v8/custom/
V8ElementCustom.cpp 129 return V8Element::wrap(impl, forceNewObject);
V8EventCustom.cpp 143 return V8Event::wrap(impl);
V8HistoryCustom.cpp 108 wrapper = V8History::wrap(impl);
  /external/zlib/contrib/infback9/
infback9.c 182 wrap = 1; \
231 int wrap; /* true if the window has wrapped */ local
263 wrap = 0;
555 if (offset > WSIZE - (wrap ? 0: left)) {
  /libcore/luni/src/main/java/java/net/
URLDecoder.java 129 CharBuffer cb = charset.decode(ByteBuffer.wrap(buf, 0, len));
  /libcore/luni/src/main/java/java/nio/
DoubleToByteBufferAdapter.java 38 static DoubleBuffer wrap(ByteBuffer byteBuffer) { method in class:DoubleToByteBufferAdapter
LongToByteBufferAdapter.java 37 static LongBuffer wrap(ByteBuffer byteBuffer) { method in class:LongToByteBufferAdapter

Completed in 493 milliseconds

1 2 3 45 6 7 8 91011