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

1 23 4 5 6 7 8 91011

  /external/webkit/WebCore/bindings/v8/custom/
V8WebGLUnsignedIntArrayCustom.cpp 69 v8::Handle<v8::Object> wrapper = V8WebGLUnsignedIntArray::wrap(impl);
V8WebGLUnsignedShortArrayCustom.cpp 69 v8::Handle<v8::Object> wrapper = V8WebGLUnsignedShortArray::wrap(impl);
  /external/zlib/
inflate.h 84 int wrap; /* bit 0 true for zlib, bit 1 true for gzip */ member in struct:inflate_state
  /libcore/luni/src/test/java/org/apache/harmony/nio_char/tests/java/nio/charset/
CharsetEncoderTest.java 142 cs.encode(CharBuffer.wrap("AB"));
196 CharBuffer in1 = CharBuffer.wrap("\ud800");
197 CharBuffer in2 = CharBuffer.wrap("\udc00");
217 Charset.forName("UTF-8").encode(CharBuffer.wrap(s));
CharsetDecoderTest.java 97 // ByteBuffer buf = ByteBuffer.wrap(b);
111 ByteBuffer in = ByteBuffer.wrap(new byte[] { 109, 97, 109 });
135 ByteBuffer.wrap(new byte[] { 0x00, 0x11 }));
144 cs2.decode(ByteBuffer.wrap(new byte[] { 0x00, 0x11 }));
234 ByteBuffer in = ByteBuffer.wrap(new byte[] { 0x45, 0x38, 0x45, 0x45 });
301 decoder.decode(ByteBuffer.wrap(bytes));
  /external/guava/src/com/google/common/collect/
MutableClassToInstanceMap.java 73 // TODO: this should eventually use common.primitives.Primitives.wrap()
74 return wrap(type).cast(value);
79 private static <T> Class<T> wrap(Class<T> c) { method in class:MutableClassToInstanceMap
  /external/webkit/WebKit/mac/WebView/
WebDocumentPrivate.h 69 @method searchFor:direction:caseSensitive:wrap:startInSelection:
74 @param wrapFlag YES to wrap around, NO to avoid wrapping.
78 - (BOOL)searchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOOL)wrapFlag startInSelection:(BOOL)startInSelection;
WebDocument.h 91 @method searchFor:direction:caseSensitive:wrap:
96 @param wrapFlag YES to wrap around, NO to avoid wrapping.
99 - (BOOL)searchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOOL)wrapFlag;
  /packages/apps/Mms/tests/src/com/android/mms/util/
SmileyParserUnitTests.java 85 IntBuffer intBuf1 = IntBuffer.wrap(intArray1);
86 IntBuffer intBuf2 = IntBuffer.wrap(intArray2);
  /cts/tools/host/src/res/
cts_result.css 228 white-space: pre-wrap; /* css-3 */
229 white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
230 white-space: -pre-wrap; /* Opera 4-6 */
231 white-space: -o-pre-wrap; /* Opera 7 */
232 word-wrap: break-word; /* Internet Explorer 5.5+ */
  /cts/tools/tradefed-host/res/result/
cts_result.css 228 white-space: pre-wrap; /* css-3 */
229 white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
230 white-space: -pre-wrap; /* Opera 4-6 */
231 white-space: -o-pre-wrap; /* Opera 7 */
232 word-wrap: break-word; /* Internet Explorer 5.5+ */
  /libcore/luni/src/main/java/java/nio/
CharBuffer.java 29 * <li>{@link #wrap(char[]) Wrap} an existing char array to create a new
31 * <li>{@link #wrap(CharSequence) Wrap} an existing char sequence to create a
60 * {@code wrap(array, 0, array.length)}.
66 public static CharBuffer wrap(char[] array) { method in class:CharBuffer
67 return wrap(array, 0, array.length);
88 public static CharBuffer wrap(char[] array, int start, int len) { method in class:CharBuffer
105 * {@code wrap(chseq, 0, chseq.length())}.
111 public static CharBuffer wrap(CharSequence chseq) method in class:CharBuffer
134 public static CharBuffer wrap(CharSequence chseq, int start, int end) { method in class:CharBuffer
    [all...]
DoubleBuffer.java 27 * <li>{@link #wrap(double[]) Wrap} an existing double array to create a new
57 * {@code wrap(array, 0, array.length)}.
63 public static DoubleBuffer wrap(double[] array) { method in class:DoubleBuffer
64 return wrap(array, 0, array.length);
85 public static DoubleBuffer wrap(double[] array, int start, int len) { method in class:DoubleBuffer
FloatBuffer.java 27 * <li>{@link #wrap(float[]) Wrap} an existing float array to create a new
56 * {@code wrap(array, 0, array.length)}.
62 public static FloatBuffer wrap(float[] array) { method in class:FloatBuffer
63 return wrap(array, 0, array.length);
86 public static FloatBuffer wrap(float[] array, int start, int len) { method in class:FloatBuffer
IntBuffer.java 27 * <li>{@link #wrap(int[]) Wrap} an existing int array to create a new buffer;</li>
54 * {@code wrap(array, 0, array.length)}.
60 public static IntBuffer wrap(int[] array) { method in class:IntBuffer
61 return wrap(array, 0, array.length);
82 public static IntBuffer wrap(int[] array, int start, int len) { method in class:IntBuffer
LongBuffer.java 27 * <li>{@link #wrap(long[]) Wrap} an existing long array to create a new
56 * {@code wrap(array, 0, array.length)}.
62 public static LongBuffer wrap(long[] array) { method in class:LongBuffer
63 return wrap(array, 0, array.length);
84 public static LongBuffer wrap(long[] array, int start, int len) { method in class:LongBuffer
ShortBuffer.java 27 * <li>{@link #wrap(short[]) Wrap} an existing short array to create a new
56 * {@code wrap(array, 0, array.length)}.
62 public static ShortBuffer wrap(short[] array) { method in class:ShortBuffer
63 return wrap(array, 0, array.length);
84 public static ShortBuffer wrap(short[] array, int start, int len) { method in class:ShortBuffer
  /libcore/luni/src/main/java/java/io/
OutputStreamWriter.java 224 CharBuffer chars = CharBuffer.wrap(buffer, offset, count);
259 CharBuffer chars = CharBuffer.wrap(new char[] { (char) oneChar });
297 CharBuffer chars = CharBuffer.wrap(str, offset, count + offset);
  /libcore/luni/src/test/java/tests/api/java/nio/charset/
Charset_SingleByteAbstractTest.java 55 ByteBuffer inputBB = ByteBuffer.wrap(allBytes);
71 ByteBuffer inputBB = ByteBuffer.wrap(input);
100 // ByteBuffer inputBB = ByteBuffer.wrap(allBytes);
120 CharBuffer inputCB = CharBuffer.wrap(allChars);
AbstractCharsetDecoderTestCase.java 240 ByteBuffer in = ByteBuffer.wrap(getUnibytes());
331 ByteBuffer in = ByteBuffer.wrap(gb);
374 in = ByteBuffer.wrap(unibytes);
387 in = ByteBuffer.wrap(getUnibytes());
497 .wrap(new byte[] { 114, 117, 110, 116, 105, 109, 101 });
504 return ByteBuffer.wrap(ba);
511 return ByteBuffer.wrap(ba);
531 ByteBuffer in = ByteBuffer.wrap(new byte[] { 12, 12 });
558 decoder.decode(ByteBuffer.wrap(gb));
560 decoder.decode(ByteBuffer.wrap(gb), CharBuffer.allocate(3), false)
    [all...]
  /external/webkit/WebCore/html/
HTMLTextAreaElement.cpp 131 WrapMethod wrap; local
133 wrap = HardWrap;
135 wrap = NoWrap;
137 wrap = SoftWrap;
138 if (wrap != m_wrap) {
139 m_wrap = wrap;
  /cts/tools/dex-tools/src/dex/reader/
DexBuffer.java 45 initialize(ByteBuffer.wrap(bytes));
54 initialize(ByteBuffer.wrap(bytes));
  /external/emma/ant/ant14/com/vladium/emma/ant/
GenericCfg.java 78 fileSettings = EMMAProperties.wrap (Property.getPropertiesFromFile (m_settingsFile));
99 genericSettings = EMMAProperties.wrap (new Properties ());
  /external/webkit/WebCore/bindings/objc/
ObjCEventListener.mm 50 PassRefPtr<ObjCEventListener> ObjCEventListener::wrap(id <DOMEventListener> listener)
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
SSLSocketImpl.java 520 output.write(alertProtocol.wrap());
638 // warning alert occured during wrap or unwrap
641 output.write(alertProtocol.wrap());
678 output.write(recordProtocol.wrap(ContentType.APPLICATION_DATA,
682 output.write(recordProtocol.wrap(
690 recordProtocol.wrap(ContentType.APPLICATION_DATA,
706 * message from another peer. Each of this stages (wrap/unwrap) change
730 output.write(handshakeProtocol.wrap());
769 // warning alert uccured during wrap or unwrap
772 output.write(alertProtocol.wrap());
    [all...]

Completed in 1219 milliseconds

1 23 4 5 6 7 8 91011