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

1 2 3 4

  /external/chromium_org/v8/test/mjsunit/regress/
regress-crbug-229923.js 30 var slice = "slow path of JSON.stringify for sliced string".substring(1); variable
31 assertEquals('"' + slice + '"', JSON.stringify(slice, null, 0));
regress-builtinbust-6.js 14 Array.prototype.slice.call(v);
38 test_receiver(77, "Array.prototype.slice.call(77, 1)");
  /external/chromium_org/v8/test/mjsunit/
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));
typed-array-slice.js 44 return Array.prototype.slice.call(a, 4, 8);
array-functions-prototype-misc.js 29 * @fileoverview Test splice, shift, unshift, slice and join on small
71 return array.slice(start, len);
105 return Array.prototype.slice.call(array, start, len);
261 // Slice.
  /external/bison/examples/calc++/
stack.hh 106 /// Present a slice of the top of a stack.
108 class slice class in namespace:yy
111 slice (const S& stack, unsigned int range) function in class:yy::slice
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
Blob.h 64 virtual PassRefPtrWillBeRawPtr<Blob> slice(long long start, long long end, const String& contentType, ExceptionState&) const;
67 PassRefPtrWillBeRawPtr<Blob> slice(ExceptionState& exceptionState) const function in class:blink::Blob
69 return slice(0, std::numeric_limits<long long>::max(), String(), exceptionState);
71 PassRefPtrWillBeRawPtr<Blob> slice(long long start, ExceptionState& exceptionState) const function in class:blink::Blob
73 return slice(start, std::numeric_limits<long long>::max(), String(), exceptionState);
75 PassRefPtrWillBeRawPtr<Blob> slice(long long start, long long end, ExceptionState& exceptionState) const function in class:blink::Blob
77 return slice(start, end, String(), exceptionState);
Blob.cpp 108 PassRefPtrWillBeRawPtr<Blob> Blob::slice(long long start, long long end, const String& contentType, ExceptionState& exceptionState) const function in class:blink::Blob
File.cpp 213 PassRefPtrWillBeRawPtr<Blob> File::slice(long long start, long long end, const String& contentType, ExceptionState& exceptionState) const function in class:blink::File
221 return Blob::slice(start, end, contentType, exceptionState);
249 // Obtains a snapshot of the file by capturing its current size and modification time. This is used when we slice a file for the first time.
  /external/chromium_org/third_party/WebKit/Source/wtf/
ArrayBuffer.h 56 inline PassRefPtr<ArrayBuffer> slice(int begin, int end) const;
57 inline PassRefPtr<ArrayBuffer> slice(int begin) const;
151 PassRefPtr<ArrayBuffer> ArrayBuffer::slice(int begin, int end) const function in class:WTF::ArrayBuffer
156 PassRefPtr<ArrayBuffer> ArrayBuffer::slice(int begin) const function in class:WTF::ArrayBuffer
  /external/chromium_org/third_party/smhasher/src/
Bitslice.cpp 7 typedef std::vector<uint32_t> slice; typedef
8 typedef std::vector<slice> slice_vec;
10 int countbits ( slice & v )
24 int countxor ( slice & a, slice & b )
40 void xoreq ( slice & a, slice & b )
123 slice a;
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/
writable_font_data.cc 168 CALLER_ATTACH FontData* WritableFontData::Slice(int32_t offset,
177 FontDataPtr slice = new WritableFontData(this, offset, length); local
178 return slice.Detach();
181 CALLER_ATTACH FontData* WritableFontData::Slice(int32_t offset) {
189 FontDataPtr slice = new WritableFontData(this, offset); local
190 return slice.Detach();
  /external/chromium_org/v8/src/x64/
regexp-macro-assembler-x64.cc 1233 SlicedString* slice = SlicedString::cast(*subject_tmp); local
    [all...]
  /external/llvm/include/llvm/ADT/
SmallString.h 260 StringRef slice(size_t Start, size_t End) const { function in class:llvm::SmallString
261 return str().slice(Start, End);
ArrayRef.h 137 /// slice(n) - Chop off the first N elements of the array.
138 ArrayRef<T> slice(unsigned N) const { function in class:llvm::ArrayRef
143 /// slice(n, m) - Chop off the first N elements of the array, and keep M
145 ArrayRef<T> slice(unsigned N, unsigned M) const { function in class:llvm::ArrayRef
153 return slice(0, size() - N);
249 /// slice(n) - Chop off the first N elements of the array.
250 MutableArrayRef<T> slice(unsigned N) const { function in class:llvm::ArrayRef
255 /// slice(n, m) - Chop off the first N elements of the array, and keep M
257 MutableArrayRef<T> slice(unsigned N, unsigned M) const { function in class:llvm::ArrayRef
  /dalvik/dexgen/src/com/android/dexgen/util/
ByteArray.java 25 * can "reveal" a partial slice of the underlying array.
33 /** {@code >= 0}; start index of the slice (inclusive) */
44 * @param start {@code >= 0;} start index of the slice (inclusive)
46 * the slice (exclusive)
89 * Returns a slice (that is, a sub-array) of this instance.
91 * @param start {@code >= 0;} start index of the slice (inclusive)
93 * the slice (exclusive)
94 * @return {@code non-null;} the slice
96 public ByteArray slice(int start, int end) { method in class:ByteArray
  /dalvik/dx/src/com/android/dx/util/
ByteArray.java 25 * can "reveal" a partial slice of the underlying array.
33 /** {@code >= 0}; start index of the slice (inclusive) */
44 * @param start {@code >= 0;} start index of the slice (inclusive)
46 * the slice (exclusive)
89 * Returns a slice (that is, a sub-array) of this instance.
91 * @param start {@code >= 0;} start index of the slice (inclusive)
93 * the slice (exclusive)
94 * @return {@code non-null;} the slice
96 public ByteArray slice(int start, int end) { method in class:ByteArray
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_renderbuffer.c 569 const GLuint slice = fb->Attachment[buffer].Zoffset; local
572 ctx->Driver.MapTextureImage(ctx, texImage, slice,
603 const GLuint slice = fb->Attachment[buffer].Zoffset; local
606 ctx->Driver.UnmapTextureImage(ctx, texImage, slice);
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/bitmap/
ebdt_table.cc 38 glyph_data.Attach(down_cast<ReadableFontData*>(data_->Slice(offset, length)));
110 WritableFontDataPtr slice; local
111 slice.Attach(down_cast<WritableFontData*>(new_data->Slice(size)));
112 size += glyph_entry->second->SubSerialize(slice);
223 ReadableFontDataPtr slice; local
224 slice.Attach(down_cast<ReadableFontData*>(data->Slice(
228 slice, info->format()));
index_sub_table_format2.cc 33 ReadableFontDataPtr slice; local
34 slice.Attach(down_cast<ReadableFontData*>(
35 data_->Slice(EblcTable::Offset::kIndexSubTable2_bigGlyphMetrics,
37 BigGlyphMetricsPtr output = new BigGlyphMetrics(slice);
114 data.Attach(down_cast<WritableFontData*>(InternalWriteData()->Slice(
141 data->Slice(index_sub_table_offset, length)));
164 data->Slice(index_sub_table_offset, length)));
198 InternalReadData()->Slice(size)));
199 target.Attach(down_cast<WritableFontData*>(new_data->Slice(size)));
202 WritableFontDataPtr slice; local
    [all...]
  /external/chromium_org/v8/src/arm/
regexp-macro-assembler-arm.cc 1095 SlicedString* slice = SlicedString::cast(*subject_tmp); local
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/util/
ByteArray.java 25 * can "reveal" a partial slice of the underlying array.
33 /** {@code >= 0}; start index of the slice (inclusive) */
44 * @param start {@code >= 0;} start index of the slice (inclusive)
46 * the slice (exclusive)
89 * Returns a slice (that is, a sub-array) of this instance.
91 * @param start {@code >= 0;} start index of the slice (inclusive)
93 * the slice (exclusive)
94 * @return {@code non-null;} the slice
96 public ByteArray slice(int start, int end) { method in class:ByteArray
  /external/mesa3d/src/mesa/swrast/
s_renderbuffer.c 569 const GLuint slice = fb->Attachment[buffer].Zoffset; local
572 ctx->Driver.MapTextureImage(ctx, texImage, slice,
603 const GLuint slice = fb->Attachment[buffer].Zoffset; local
606 ctx->Driver.UnmapTextureImage(ctx, texImage, slice);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/
AbstractContainerBox.java 151 setDeadBytes(content.slice());
FullContainerBox.java 113 setDeadBytes(content.slice());

Completed in 492 milliseconds

1 2 3 4