HomeSort by relevance Sort by last modified time
    Searched full:wrap (Results 1 - 25 of 970) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/LayoutTests/fast/js/resources/
js-test-style.css 10 white-space: pre-wrap;
  /external/webkit/WebCore/bindings/objc/
DOMUtility.mm 98 #define WRAP(className) \
102 WRAP(CSSRule)
103 WRAP(CSSRuleList)
104 WRAP(CSSStyleDeclaration)
105 WRAP(CSSValue)
106 WRAP(Counter)
107 WRAP(Event)
108 WRAP(HTMLOptionsCollection)
109 WRAP(MediaList)
110 WRAP(NamedNodeMap
    [all...]
  /dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/
WrappedDoubleBufferTest.java 28 buf = DoubleBuffer.wrap(new double[BUFFER_LENGTH]);
45 method = "wrap",
51 DoubleBuffer.wrap(array, -1, 0);
57 DoubleBuffer.wrap(array, 21, 0);
63 DoubleBuffer.wrap(array, 0, -1);
69 DoubleBuffer.wrap(array, 0, 21);
75 DoubleBuffer.wrap(array, Integer.MAX_VALUE, 1);
81 DoubleBuffer.wrap(array, 1, Integer.MAX_VALUE);
87 DoubleBuffer.wrap((double[])null, -1, 0);
92 DoubleBuffer buf = DoubleBuffer.wrap(array, 2, 16)
    [all...]
WrappedFloatBufferTest.java 28 buf = FloatBuffer.wrap(new float[BUFFER_LENGTH]);
45 method = "wrap",
51 FloatBuffer.wrap(array, -1, 0);
57 FloatBuffer.wrap(array, 21, 0);
63 FloatBuffer.wrap(array, 0, -1);
69 FloatBuffer.wrap(array, 0, 21);
75 FloatBuffer.wrap(array, Integer.MAX_VALUE, 1);
81 FloatBuffer.wrap(array, 1, Integer.MAX_VALUE);
87 FloatBuffer.wrap((float[])null, -1, 0);
92 FloatBuffer buf = FloatBuffer.wrap(array, 2, 16)
    [all...]
WrappedIntBufferTest.java 28 buf = IntBuffer.wrap(new int[BUFFER_LENGTH]);
45 method = "wrap",
51 IntBuffer.wrap(array, -1, 0);
57 IntBuffer.wrap(array, 21, 0);
63 IntBuffer.wrap(array, 0, -1);
69 IntBuffer.wrap(array, 0, 21);
75 IntBuffer.wrap(array, Integer.MAX_VALUE, 1);
81 IntBuffer.wrap(array, 1, Integer.MAX_VALUE);
87 IntBuffer.wrap((int[])null, -1, 0);
92 IntBuffer buf = IntBuffer.wrap(array, 2, 16)
    [all...]
WrappedLongBufferTest.java 28 buf = LongBuffer.wrap(new long[BUFFER_LENGTH]);
45 method = "wrap",
51 LongBuffer.wrap(array, -1, 0);
57 LongBuffer.wrap(array, 21, 0);
63 LongBuffer.wrap(array, 0, -1);
69 LongBuffer.wrap(array, 0, 21);
75 LongBuffer.wrap(array, Integer.MAX_VALUE, 1);
81 LongBuffer.wrap(array, 1, Integer.MAX_VALUE);
87 LongBuffer.wrap((long[])null, -1, 0);
92 LongBuffer buf = LongBuffer.wrap(array, 2, 16)
    [all...]
WrappedShortBufferTest.java 28 buf = ShortBuffer.wrap(new short[BUFFER_LENGTH]);
45 method = "wrap",
51 ShortBuffer.wrap(array, -1, 0);
57 ShortBuffer.wrap(array, 21, 0);
63 ShortBuffer.wrap(array, 0, -1);
69 ShortBuffer.wrap(array, 0, 21);
75 ShortBuffer.wrap(array, Integer.MAX_VALUE, 1);
81 ShortBuffer.wrap(array, 1, Integer.MAX_VALUE);
87 ShortBuffer.wrap((short[])null, -1, 0);
92 ShortBuffer buf = ShortBuffer.wrap(array, 2, 16)
    [all...]
WrappedByteBufferTest.java 30 buf = ByteBuffer.wrap(new byte[BUFFER_LENGTH]);
47 method = "wrap",
53 ByteBuffer.wrap(array, -1, 0);
59 ByteBuffer.wrap(array, BUFFER_LENGTH + 1, 0);
65 ByteBuffer.wrap(array, 0, -1);
71 ByteBuffer.wrap(array, 0, BUFFER_LENGTH + 1);
77 ByteBuffer.wrap(array, 1, Integer.MAX_VALUE);
83 ByteBuffer.wrap(array, Integer.MAX_VALUE, 1);
89 ByteBuffer.wrap((byte[])null, 1, Integer.MAX_VALUE);
WrappedCharBufferTest1.java 30 buf = CharBuffer.wrap(new char[BUFFER_LENGTH]);
47 method = "wrap",
53 CharBuffer.wrap(array, -1, 0);
59 CharBuffer.wrap(array, BUFFER_LENGTH + 1, 0);
65 CharBuffer.wrap(array, 0, -1);
71 CharBuffer.wrap(array, 0, BUFFER_LENGTH + 1);
77 CharBuffer.wrap(array, Integer.MAX_VALUE, 1);
83 CharBuffer.wrap(array, 1, Integer.MAX_VALUE);
89 CharBuffer.wrap((char[])null, -1, 0);
WrappedCharBufferTest2.java 35 buf = CharBuffer.wrap(TEST_STRING);
48 method = "wrap",
54 CharBuffer.wrap(str, -1, 0);
60 CharBuffer.wrap(str, 21, 21);
66 CharBuffer.wrap(str, 2, 1);
72 CharBuffer.wrap(str, 0, 21);
78 CharBuffer.wrap((String)null, -1, 21);
  /dalvik/libcore/nio/src/main/java/java/nio/
BaseByteBuffer.java 31 return CharToByteBufferAdapter.wrap(this);
36 return DoubleToByteBufferAdapter.wrap(this);
41 return FloatToByteBufferAdapter.wrap(this);
46 return IntToByteBufferAdapter.wrap(this);
51 return LongToByteBufferAdapter.wrap(this);
56 return ShortToByteBufferAdapter.wrap(this);
package.html 10 buffers, to compact, slice or duplicate them, or to wrap an existing
  /dalvik/libcore/nio_char/src/test/java/org/apache/harmony/nio_char/tests/java/nio/charset/
ASCIICharsetEncoderTest.java 139 encoder.encode(CharBuffer.wrap("\ud800\udc00"));
145 assertTrue(encoder.encode(CharBuffer.wrap("\ud800"), out, true)
151 .wrap("\ud800"), out, false));
152 assertTrue(encoder.encode(CharBuffer.wrap("\udc00"), out, true)
167 CharBuffer cb = CharBuffer.wrap(chars);
172 CharBuffer cb = CharBuffer.wrap("\u0080");
179 cb = CharBuffer.wrap("\ud800");
187 cb = CharBuffer.wrap("A");
218 CharBuffer in = CharBuffer.wrap("A");
224 in = CharBuffer.wrap("B")
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/
Wrapper.java 14 public byte[] wrap(byte[] in, int inOff, int inLen); method in interface:Wrapper
  /cts/tests/tests/text/src/android/text/style/cts/
CharacterStyleTest.java 34 notes = "Test {@link CharacterStyle#wrap(CharacterStyle)}",
35 method = "wrap",
42 CharacterStyle result = CharacterStyle.wrap(metricAffectingSpan);
49 result = CharacterStyle.wrap(characterStyle);
55 result = CharacterStyle.wrap((MetricAffectingSpan) null);
59 result = CharacterStyle.wrap((CharacterStyle) null);
75 CharacterStyle result = CharacterStyle.wrap(metricAffectingSpan);
  /external/e2fsprogs/
wordwrap.pl 3 # wordwrap.pl --- does word wrap
6 if (/^#/) { # don't word wrap comments
  /dalvik/libcore/nio_char/src/test/java/tests/api/java/nio/charset/
CharsetEncoderDecoderBufferTest.java 56 CharBuffer out = CharBuffer.wrap(cBuf);
58 decoder.decode(ByteBuffer.wrap(new byte[]{(byte)'a', (byte)'b', (byte)'c', (byte)'d'}),
66 out = ByteBuffer.wrap(bBuf).asCharBuffer();
68 decoder.decode(ByteBuffer.wrap(new byte[]{(byte)'x'}), out, true);
94 CharBuffer out = CharBuffer.wrap(new char[10]);
97 ByteBuffer inWithArray = ByteBuffer.wrap(inArray);
130 ByteBuffer out = ByteBuffer.wrap(buffer);
133 encoder.encode(CharBuffer.wrap("ab"), out, false);
141 encoder.encode(CharBuffer.wrap("x"), out, true);
164 ByteBuffer out = ByteBuffer.wrap(new byte[10])
    [all...]
UTF16CharsetDecoderTest.java 89 ByteBuffer.wrap(new byte[] { -1, -2, 32, 0, 98 }), out,
96 .wrap(new byte[] { -1, -2, 32, 0 }), out, false));
97 assertTrue(decoder.decode(ByteBuffer.wrap(new byte[] { 98 }), out,
104 .wrap(new byte[] { -1, -2, 32, 0, 98 }), out, false));
106 .decode(ByteBuffer.wrap(new byte[] {}), out, true)
113 ByteBuffer.wrap(new byte[] { -1, -2, 32, 0, 98, 0 }), out,
120 .wrap(new byte[] { -1, -2, 32, 0, 98 }), out, false));
121 assertTrue(decoder.decode(ByteBuffer.wrap(new byte[] { 0 }), out,
  /frameworks/base/graphics/java/android/renderscript/
Sampler.java 40 WRAP (3),
66 mWrapS = Value.WRAP;
67 mWrapT = Value.WRAP;
68 mWrapR = Value.WRAP;
90 if (v == Value.WRAP || v == Value.CLAMP) {
98 if (v == Value.WRAP || v == Value.CLAMP) {
106 if (v == Value.WRAP || v == Value.CLAMP) {
  /dalvik/libcore/x-net/src/test/java/tests/api/javax/net/ssl/
SSLEngineTest.java 566 ByteBuffer bbs = ByteBuffer.wrap(new byte[] {1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,31,2,3,1,2,3,1,2,3,1,2,3});
776 * @tests javax.net.ssl.SSLEngine#wrap(ByteBuffer[] srcs, int offset,
782 notes = "wrap cannot be forced to fail",
783 method = "wrap",
795 SSLEngineResult result = clientEngine.engine.wrap(new ByteBuffer[] { bbs }, 0, 1, bbd);
803 * @tests javax.net.ssl.SSLEngine#wrap(ByteBuffer[] srcs, int offset,
810 method = "wrap",
823 sse.wrap(bbA, -1, 3, bb);
829 sse.wrap(bbA, 0, -3, bb);
835 sse.wrap(bbA, bbA.length + 1, bbA.length, bb)
    [all...]
  /external/kernel-headers/original/asm-generic/
ipc.h 4 * These are used to wrap system calls.
  /dalvik/libcore/crypto/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
CipherWrapThread.java 32 KeyGenerator kg = KeyGenerator.getInstance(getAlgName().replace("Wrap", ""));
40 byte[] output = cip.wrap(key);
  /dalvik/libcore/logging/src/main/java/java/util/logging/
Formatter.java 25 * string representation. Head and tail strings are sometimes used to wrap a set
94 * Gets the head string used to wrap a set of log records. This base class
99 * @return the head string used to wrap a set of log records, empty in this
107 * Gets the tail string used to wrap a set of log records. This base class
112 * @return the tail string used to wrap a set of log records, empty in this
  /external/clearsilver/mod_ecs/
mod_ecs.c 8 with the cgi_wrap calls from that kit. Those calls wrap the standard CGI
194 WRAPPER_DATA *wrap = (WRAPPER_DATA *)data; local
201 if (!wrap->end_of_header)
203 wl = header_write (&(wrap->hbuf), buf, len);
208 wrap->end_of_header = 1;
209 wrap->hbuf.loc = 0;
211 fprintf (stderr, "ap_scan_script_header_err_core\n%s\n", wrap->hbuf.buf);
213 wrap->returns = ap_scan_script_header_err_core(wrap->r, NULL, h_getline,
214 (void *)&(wrap->hbuf))
277 WRAPPER_DATA *wrap = (WRAPPER_DATA *)data; local
299 WRAPPER_DATA *wrap = (WRAPPER_DATA *)data; local
309 WRAPPER_DATA *wrap = (WRAPPER_DATA *)data; local
318 WRAPPER_DATA *wrap = (WRAPPER_DATA *)data; local
    [all...]
  /external/webkit/WebCore/html/
HTMLPreElement.cpp 73 bool HTMLPreElement::wrap() const function in class:WebCore::HTMLPreElement
78 void HTMLPreElement::setWrap(bool wrap)
80 setAttribute(wrapAttr, wrap ? "" : 0);

Completed in 289 milliseconds

1 2 3 4 5 6 7 8 91011>>