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

1 23 4 5 6 7 8 91011>>

  /dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/
ReadOnlyWrappedCharBufferTest1.java 28 buf = CharBuffer.wrap(new char[BUFFER_LENGTH]);
ReadOnlyWrappedDoubleBufferTest.java 27 buf = DoubleBuffer.wrap(new double[BUFFER_LENGTH]);
ReadOnlyWrappedFloatBufferTest.java 27 buf = FloatBuffer.wrap(new float[BUFFER_LENGTH]);
ReadOnlyWrappedIntBufferTest.java 27 buf = IntBuffer.wrap(new int[BUFFER_LENGTH]);
ReadOnlyWrappedLongBufferTest.java 27 buf = LongBuffer.wrap(new long[BUFFER_LENGTH]);
ReadOnlyWrappedShortBufferTest.java 27 buf = ShortBuffer.wrap(new short[BUFFER_LENGTH]);
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...]
  /dalvik/libcore/nio_char/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));
  /dalvik/libcore/xml/src/main/java/org/apache/xml/utils/res/
CharArrayWrapper.java 25 * It is a mutable object to wrap the char[] used in
IntArrayWrapper.java 25 * It is a mutable object to wrap the int[] used in
LongArrayWrapper.java 25 * It is a mutable object to wrap the long[] used in
StringArrayWrapper.java 25 * It is a mutable object to wrap the String[] used in
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
SpriteTextActivity.java 32 public GL wrap(GL gl) {
  /development/simulator/wrapsim/
README.txt 1 This shared library is used with LD_PRELOAD to wrap the Android runtime
  /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/skia/include/xml/
SkBML_WXMLParser.h 49 // important that these are U8, so we get automatic wrap-around
  /external/webkit/WebCore/html/
HTMLPreElement.h 42 bool wrap() const;
HTMLPreElement.idl 29 attribute boolean wrap;
HTMLTextAreaElement.cpp 131 WrapMethod wrap; local
133 wrap = HardWrap;
135 wrap = NoWrap;
137 wrap = SoftWrap;
138 if (wrap != m_wrap) {
139 m_wrap = wrap;
  /external/webkit/WebCore/manual-tests/
keep_spelling_markers.html 7 <li>confirm that you can wrap back to the first misspelling without hanging</li>
  /frameworks/base/core/java/android/view/
FocusFinderHelper.java 30 * Wrap the FocusFinder object
  /sdk/eclipse/sites/external/web/
site.css 11 #indent {word-wrap : break-word;width :300px;text-indent:10px;}
  /sdk/eclipse/sites/internal/web/
site.css 11 #indent {word-wrap : break-word;width :300px;text-indent:10px;}
  /external/webkit/WebCore/page/
FrameTree.cpp 263 Frame* FrameTree::traverseNextWithWrap(bool wrap) const
268 if (wrap)
274 Frame* FrameTree::traversePreviousWithWrap(bool wrap) const
276 // FIXME: besides the wrap feature, this is just the traversePreviousNode algorithm
284 if (wrap)
287 // top view is always the last one in this ordering, so prev is nil without wrap

Completed in 50 milliseconds

1 23 4 5 6 7 8 91011>>