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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/jdk/jdk8/darwin-x86/sample/scripting/scriptpad/src/scripts/
linewrap.js 41 * This script adds "Line Wrap" mode menu item to "Tools" menu.
42 * When selected, this menu toggles the current word wrap mode
47 var wrap = application.editor.lineWrap;
48 application.editor.lineWrap = !wrap;
51 application.addTool("Line Wrap", toggleLineWrap);
  /prebuilts/jdk/jdk8/linux-x86/sample/scripting/scriptpad/src/scripts/
linewrap.js 41 * This script adds "Line Wrap" mode menu item to "Tools" menu.
42 * When selected, this menu toggles the current word wrap mode
47 var wrap = application.editor.lineWrap;
48 application.editor.lineWrap = !wrap;
51 application.addTool("Line Wrap", toggleLineWrap);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/
WrappedCharBufferTest1.java 25 buf = CharBuffer.wrap(new char[BUFFER_LENGTH]);
43 CharBuffer.wrap(array, -1, 0);
49 CharBuffer.wrap(array, BUFFER_LENGTH + 1, 0);
55 CharBuffer.wrap(array, 0, -1);
61 CharBuffer.wrap(array, 0, BUFFER_LENGTH + 1);
67 CharBuffer.wrap(array, Integer.MAX_VALUE, 1);
73 CharBuffer.wrap(array, 1, Integer.MAX_VALUE);
79 CharBuffer.wrap((char[])null, -1, 0);
WrappedDoubleBufferTest.java 23 buf = DoubleBuffer.wrap(new double[BUFFER_LENGTH]);
41 DoubleBuffer.wrap(array, -1, 0);
47 DoubleBuffer.wrap(array, 21, 0);
53 DoubleBuffer.wrap(array, 0, -1);
59 DoubleBuffer.wrap(array, 0, 21);
65 DoubleBuffer.wrap(array, Integer.MAX_VALUE, 1);
71 DoubleBuffer.wrap(array, 1, Integer.MAX_VALUE);
77 DoubleBuffer.wrap((double[])null, -1, 0);
82 DoubleBuffer buf = DoubleBuffer.wrap(array, 2, 16);
WrappedFloatBufferTest.java 23 buf = FloatBuffer.wrap(new float[BUFFER_LENGTH]);
41 FloatBuffer.wrap(array, -1, 0);
47 FloatBuffer.wrap(array, 21, 0);
53 FloatBuffer.wrap(array, 0, -1);
59 FloatBuffer.wrap(array, 0, 21);
65 FloatBuffer.wrap(array, Integer.MAX_VALUE, 1);
71 FloatBuffer.wrap(array, 1, Integer.MAX_VALUE);
77 FloatBuffer.wrap((float[])null, -1, 0);
82 FloatBuffer buf = FloatBuffer.wrap(array, 2, 16);
WrappedIntBufferTest.java 23 buf = IntBuffer.wrap(new int[BUFFER_LENGTH]);
41 IntBuffer.wrap(array, -1, 0);
47 IntBuffer.wrap(array, 21, 0);
53 IntBuffer.wrap(array, 0, -1);
59 IntBuffer.wrap(array, 0, 21);
65 IntBuffer.wrap(array, Integer.MAX_VALUE, 1);
71 IntBuffer.wrap(array, 1, Integer.MAX_VALUE);
77 IntBuffer.wrap((int[])null, -1, 0);
82 IntBuffer buf = IntBuffer.wrap(array, 2, 16);
WrappedLongBufferTest.java 23 buf = LongBuffer.wrap(new long[BUFFER_LENGTH]);
41 LongBuffer.wrap(array, -1, 0);
47 LongBuffer.wrap(array, 21, 0);
53 LongBuffer.wrap(array, 0, -1);
59 LongBuffer.wrap(array, 0, 21);
65 LongBuffer.wrap(array, Integer.MAX_VALUE, 1);
71 LongBuffer.wrap(array, 1, Integer.MAX_VALUE);
77 LongBuffer.wrap((long[])null, -1, 0);
82 LongBuffer buf = LongBuffer.wrap(array, 2, 16);
WrappedShortBufferTest.java 23 buf = ShortBuffer.wrap(new short[BUFFER_LENGTH]);
41 ShortBuffer.wrap(array, -1, 0);
47 ShortBuffer.wrap(array, 21, 0);
53 ShortBuffer.wrap(array, 0, -1);
59 ShortBuffer.wrap(array, 0, 21);
65 ShortBuffer.wrap(array, Integer.MAX_VALUE, 1);
71 ShortBuffer.wrap(array, 1, Integer.MAX_VALUE);
77 ShortBuffer.wrap((short[])null, -1, 0);
82 ShortBuffer buf = ShortBuffer.wrap(array, 2, 16);
WrappedByteBufferTest.java 25 buf = ByteBuffer.wrap(new byte[BUFFER_LENGTH]);
42 ByteBuffer.wrap(array, -1, 0);
48 ByteBuffer.wrap(array, BUFFER_LENGTH + 1, 0);
54 ByteBuffer.wrap(array, 0, -1);
60 ByteBuffer.wrap(array, 0, BUFFER_LENGTH + 1);
66 ByteBuffer.wrap(array, 1, Integer.MAX_VALUE);
72 ByteBuffer.wrap(array, Integer.MAX_VALUE, 1);
78 ByteBuffer.wrap((byte[])null, 1, Integer.MAX_VALUE);
  /external/syslinux/gpxe/src/hci/mucurses/
mucurses.h 12 #define WRAP 0
17 extern void _wputch ( WINDOW *win, chtype ch, int wrap ) __nonnull;
18 extern void _wputc ( WINDOW *win, char c, int wrap ) __nonnull;
19 extern void _wputchstr ( WINDOW *win, const chtype *chstr, int wrap, int n ) __nonnull;
20 extern void _wputstr ( WINDOW *win, const char *str, int wrap, int n ) __nonnull;
mucurses.c 14 void _wputch ( WINDOW *win, chtype ch, int wrap ) __nonnull;
15 void _wputc ( WINDOW *win, char c, int wrap ) __nonnull;
17 void _wputchstr ( WINDOW *win, const chtype *chstr, int wrap, int n ) __nonnull;
18 void _wputstr ( WINDOW *win, const char *str, int wrap, int n ) __nonnull;
49 * @v wrap wrap "switch"
51 void _wputch ( WINDOW *win, chtype ch, int wrap ) {
57 if ( wrap == WRAP ) {
76 * @v wrap wrap "switch
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p6-0x.cpp 23 template<typename T = func_type_lvalue> struct wrap { struct
29 using func_type_lvalue = wrap<>::val; // expected-note{{in instantiation of}}
30 using func_type_lvalue = wrap<func_type_lvalue>::val;
31 using func_type_rvalue = wrap<func_type_rvalue>::val; // expected-note{{in instantiation of}}
33 using func_type_lvalue_ptr = wrap<>::ptr;
34 using func_type_lvalue_ptr = wrap<func_type_lvalue>::ptr;
35 using func_type_rvalue_ptr = wrap<func_type_rvalue>::ptr;
37 using func_type_lvalue_ref = wrap<>::ref;
38 using func_type_lvalue_ref = wrap<func_type_lvalue>::ref;
39 using func_type_rvalue_ref = wrap<func_type_rvalue>::ref
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/classes/
Rev.py 76 wrap = '[]'
79 wrap = '()'
82 wrap = ''
85 wrap = '<>'
88 return wrap[:1] + sep.join(outstrs) + wrap[-1:]
  /external/python/cpython2/Demo/classes/
Rev.py 76 wrap = '[]'
79 wrap = '()'
82 wrap = ''
85 wrap = '<>'
88 return wrap[:1] + sep.join(outstrs) + wrap[-1:]
  /libcore/luni/src/test/java/libcore/java/nio/charset/
OldCharsetEncoderDecoderBufferTest.java 41 CharBuffer out = CharBuffer.wrap(cBuf);
43 decoder.decode(ByteBuffer.wrap(new byte[]{(byte)'a', (byte)'b', (byte)'c', (byte)'d'}),
51 out = ByteBuffer.wrap(bBuf).asCharBuffer();
53 decoder.decode(ByteBuffer.wrap(new byte[]{(byte)'x'}), out, true);
71 CharBuffer out = CharBuffer.wrap(new char[10]);
74 ByteBuffer inWithArray = ByteBuffer.wrap(inArray);
81 ByteBuffer inWithoutArray = ByteBuffer.wrap(new byte[] { (byte) 'x' }).asReadOnlyBuffer();
99 ByteBuffer out = ByteBuffer.wrap(buffer);
102 encoder.encode(CharBuffer.wrap("ab"), out, false);
114 encoder.encode(CharBuffer.wrap("x"), out, true)
    [all...]
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
NotificationCustomViewWrapperTest.java 51 NotificationViewWrapper wrap = NotificationCustomViewWrapper.wrap(mContext, v, mRow); local
52 wrap.onContentUpdated(mRow);
54 wrap.getCustomBackgroundColor() != 0);
56 wrap.onReinflated();
57 wrap.onContentUpdated(mRow);
59 wrap.getCustomBackgroundColor() != 0);
  /external/libopus/doc/
opus_in_isobmff.css 15 white-space: pre-wrap; /* CSS 2.1 */
16 white-space: -pre-wrap; /* Opera 4-6 */
17 white-space: -o-pre-wrap; /* Opera 7 */
18 white-space: -moz-pre-wrap; /* Mozilla */
19 white-space: -hp-pre-wrap; /* HP Printers */
20 word-wrap : break-word; /* IE 5+ */
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
ASCIICharsetEncoderTest.java 80 encoder.encode(CharBuffer.wrap("\ud800\udc00"));
87 encoder.encode(CharBuffer.wrap("\ud800"), out, true));
92 CharBuffer buffer1 = CharBuffer.wrap("\ud800");
93 CharBuffer buffer2 = CharBuffer.wrap("\udc00");
108 CharBuffer cb = CharBuffer.wrap(chars);
113 CharBuffer cb = CharBuffer.wrap("\u0080");
120 cb = CharBuffer.wrap("\ud800");
128 cb = CharBuffer.wrap("A");
139 CharBuffer in = CharBuffer.wrap("A");
145 in = CharBuffer.wrap("B")
    [all...]
  /cts/tests/tests/wrap/src/android/wrap/
WrapActivity.java 17 package android.wrap;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
Wrapper.java 14 public byte[] wrap(byte[] in, int inOff, int inLen); method in interface:Wrapper
  /external/clang/test/SemaTemplate/
dependent-class-member-operator.cpp 7 void wrap() { function
  /frameworks/base/packages/SystemUI/src/com/android/systemui/util/wakelock/
WakeLock.java 32 /** @see android.os.PowerManager.WakeLock#wrap(Runnable) */
33 Runnable wrap(Runnable r); method in interface:WakeLock
36 return wrap(createPartialInner(context, tag));
56 static WakeLock wrap(final PowerManager.WakeLock inner) {
68 /** @see PowerManager.WakeLock#wrap(Runnable) */
69 public Runnable wrap(Runnable runnable) {
  /system/chre/build/arch/
hexagon.mk 63 TARGET_SO_LDFLAGS += --wrap=malloc
64 TARGET_SO_LDFLAGS += --wrap=calloc
65 TARGET_SO_LDFLAGS += --wrap=free
66 TARGET_SO_LDFLAGS += --wrap=realloc
67 TARGET_SO_LDFLAGS += --wrap=memalign
68 TARGET_SO_LDFLAGS += --wrap=__stack_chk_fail
  /external/python/cpython2/Lib/ctypes/test/
test_as_parameter.py 18 def wrap(self, param): member in class:BasicWrapTestCase
25 result = f(self.wrap(1), self.wrap(u"x"), self.wrap(3), self.wrap(4), self.wrap(5.0), self.wrap(6.0))
41 result = f(self.wrap(pointer(v)))
46 result = f(self.wrap(pointer(v)))
50 result = f(self.wrap(p)
208 wrap = AsParamWrapper variable in class:AsParamWrapperTestCase
221 wrap = AsParamPropertyWrapper variable in class:AsParamPropertyWrapperTestCase
    [all...]
  /external/python/cpython3/Lib/ctypes/test/
test_as_parameter.py 18 def wrap(self, param): member in class:BasicWrapTestCase
25 result = f(self.wrap(1), self.wrap("x"), self.wrap(3), self.wrap(4), self.wrap(5.0), self.wrap(6.0))
41 result = f(self.wrap(pointer(v)))
46 result = f(self.wrap(pointer(v)))
50 result = f(self.wrap(p)
208 wrap = AsParamWrapper variable in class:AsParamWrapperTestCase
221 wrap = AsParamPropertyWrapper variable in class:AsParamPropertyWrapperTestCase
    [all...]

Completed in 939 milliseconds

1 2 3 4 5 6 7 8 91011>>