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

1 2 3 4 5 6 7

  /external/v8/test/mjsunit/
array-slice.js 32 var sliced = array.slice();
44 assertEquals(array, array.slice());
45 assertEquals(array, array.slice(0));
46 assertEquals(array, array.slice(undefined));
47 assertEquals(array, array.slice("foobar"));
48 assertEquals(array, array.slice(undefined, undefined));
58 assertEquals(7, array.slice(-100).length);
59 assertEquals(3, array.slice(-3).length);
60 assertEquals(3, array.slice(4).length);
61 assertEquals(1, array.slice(6).length)
    [all...]
regexp-string-methods.js 28 // Regexp shouldn't use String.prototype.slice()
30 assertEquals("f", s.slice(0,1));
31 String.prototype.slice = function() { return "x"; }
32 assertEquals("x", s.slice(0,1));
  /external/webkit/WebCore/html/canvas/
WebGLArray.idl 33 WebGLArray slice(in unsigned long offset, in unsigned long length);
WebGLArray.h 61 virtual PassRefPtr<WebGLArray> slice(unsigned offset, unsigned length) = 0;
  /libcore/luni/src/main/java/java/nio/
ReadOnlyHeapByteBuffer.java 154 public ByteBuffer slice() { method in class:ReadOnlyHeapByteBuffer
155 ReadOnlyHeapByteBuffer slice = new ReadOnlyHeapByteBuffer(backingArray, local
157 slice.order = order;
158 return slice;
DoubleToByteBufferAdapter.java 39 return new DoubleToByteBufferAdapter(byteBuffer.slice());
202 public DoubleBuffer slice() { method in class:DoubleToByteBufferAdapter
205 DoubleBuffer result = new DoubleToByteBufferAdapter(byteBuffer.slice());
LongToByteBufferAdapter.java 38 return new LongToByteBufferAdapter(byteBuffer.slice());
201 public LongBuffer slice() { method in class:LongToByteBufferAdapter
204 LongBuffer result = new LongToByteBufferAdapter(byteBuffer.slice());
ReadWriteHeapByteBuffer.java 216 public ByteBuffer slice() { method in class:ReadWriteHeapByteBuffer
217 ReadWriteHeapByteBuffer slice = new ReadWriteHeapByteBuffer( local
219 slice.order = order;
220 return slice;
  /libcore/luni/src/test/java/org/apache/harmony/nio/tests/java/nio/
SliceDirectByteBufferTest.java 28 buf = buf.slice();
SliceHeapByteBufferTest.java 28 buf = buf.slice();
SliceWrappedByteBufferTest.java 28 buf = buf.slice();
  /external/libvpx/examples/includes/ASCIIMathPHP-2.0/
htmlMathML.js 23 if (st==null || st.slice(0,1)!=" " && st.slice(0,1)!="\n")
60 str += (st.slice(0,1)=="/" ? "</m:"+st.slice(1) : "<m:"+st);
61 if (st.slice(0,1)!="/") {
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
ShortcutPromoterTest.java 20 import static com.android.quicksearchbox.SuggestionCursorUtil.slice;
87 assertSameSuggestions(slice(promoted, 0, count), slice(mShortcuts, 0, count)); method
97 assertSameSuggestions(slice(promoted, 0, count), slice(mShortcuts, 0, count)); method
  /external/webkit/WebCore/inspector/front-end/
TimelineGrid.js 61 var slice = calculator.boundarySpan / dividerCount; variable
62 if (!force && this._currentDividerSlice === slice)
67 this._currentDividerSlice = slice;
101 if (!isNaN(slice))
102 dividerLabelBar._labelElement.textContent = calculator.formatValue(slice * i);
Callback.js 47 var args = Array.prototype.slice.call(arguments, 1);
InjectedScriptAccess.js 52 var allArgs = Array.prototype.slice.call(arguments);
54 var argsString = JSON.stringify(Array.prototype.slice.call(allArgs, 0, allArgs.length - 1));
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
ChunkHandler.java 161 * Return the slice of the JDWP packet buffer that holds just the
165 ByteBuffer slice; local
170 slice = jdwpBuf.slice();
171 slice.order(CHUNK_ORDER);
174 return slice;
  /external/bluetooth/glib/tests/
makefile.msc.in 58 slice-color.exe \
59 slice-test.exe \
95 slice-test.exe : memchunks.obj slice-test.obj
96 $(CC) $(CFLAGS) -Fe$@ memchunks.obj slice-test.obj \
  /dalvik/dx/src/com/android/dx/cf/attrib/
RawAttribute.java 64 this(name, data.slice(offset, offset + length), pool);
  /external/webkit/JavaScriptCore/tests/mozilla/js1_2/Array/
general2.js 59 array3 = array1.slice(1,i);
72 testcases[count++] = new TestCase( SECTION, "Array.push,pop,shift,unshift,slice,splice", true,String(array1) == String(array2));
  /external/webkit/WebKit/chromium/src/js/
InjectDispatch.js 78 var args = Array.prototype.slice.call(arguments);
  /external/clearsilver/cs/
test_func.cs 26 oba: <?cs var:string.slice("foo" + "bar", 5-3, 2+3) ?>
  /frameworks/base/media/libstagefright/codecs/avc/dec/
Android.mk 13 src/slice.cpp \
  /frameworks/base/media/libstagefright/codecs/avc/enc/
Android.mk 19 src/slice.cpp \
  /external/skia/src/animator/
SkDisplayTypes.cpp 102 SK_FUNCTION(slice)
110 (SkFunctionParamType) SkType_Int, // slice
119 SK_MEMBER_FUNCTION(slice, String),
140 case SK_FUNCTION(slice):

Completed in 1418 milliseconds

1 2 3 4 5 6 7