Searched defs:slice (Results 1 - 25 of 81) sorted by path

1234

/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dstreams.py878 def slice(self, start, stop): member in class:CommonTokenStream
/external/bison/examples/calc++/
H A Dstack.hh106 /// 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-trace/trace-viewer/tracing/third_party/components/webcomponentsjs/
H A DShadowDOM.js487 var copies = callbacks.slice(0);
622 var slice = Array.prototype.slice; variable
642 this.attributeFilter = slice.call(options.attributeFilter);
1048 var copy = listeners.slice();
1101 return eventPath.slice();
1347 if (idx == -1) return null; else path = path.slice(0, idx);
1357 var eventType = name.slice(2);
2306 var head = s.slice(0, offset);
2307 var tail = s.slice(offse
[all...]
H A Dwebcomponents.js18 location.search.slice(1).split("&").forEach(function(o) {
527 var copies = callbacks.slice(0);
661 var slice = Array.prototype.slice; variable
681 this.attributeFilter = slice.call(options.attributeFilter);
1085 var copy = listeners.slice();
1138 return eventPath.slice();
1384 if (idx == -1) return null; else path = path.slice(0, idx);
1394 var eventType = name.slice(2);
2335 var head = s.slice(
[all...]
/external/chromium-trace/trace-viewer/tracing/third_party/css-element-queries/test/
H A Dmootools-core-full-nocompat.js125 var slice = Array.prototype.slice; variable
135 return (Type.isEnumerable(item) && typeof item != 'string') ? (typeOf(item) == 'array') ? item : slice.call(item) : [item];
218 return method.apply(item, slice.call(arguments, 1));
279 'slice', 'split', 'substr', 'substring', 'trim', 'toLowerCase', 'toUpperCase'
281 'pop', 'push', 'reverse', 'shift', 'sort', 'splice', 'unshift', 'concat', 'join', 'slice',
483 var args = Array.slice(arguments, 1);
610 return (index ? String(this).slice(index) : String(this)).indexOf(string) > -1;
658 return (hex) ? hex.slice(1).hexToRgb(array) : null;
668 if (match.charAt(0) == '\\') return match.slice(
[all...]
/external/clang/include/clang/AST/
H A DDeclBase.h1059 DeclContextLookupResult slice(size_t N) const { function in class:clang::DeclContextLookupResult
1060 DeclContextLookupResult Sliced = Result.slice(N);
/external/deqp/modules/gles31/functional/
H A Des31fShaderImageLoadStoreTests.cpp579 PixelBufferAccess getSliceAccess (int slice) { return getSliceAccessInternal(slice); } argument
583 ConstPixelBufferAccess getSliceAccess (int slice) const { return getSliceAccessInternal(slice); }
592 PixelBufferAccess getSliceAccessInternal (int slice) const;
672 PixelBufferAccess LayeredImage::getSliceAccessInternal (int slice) const
675 return tcu::getSubregion(srcAccess, 0, 0, slice, srcAccess.getWidth(), srcAccess.getHeight(), 1);
792 //! Base for a functor for verifying and logging a 2d texture layer (2d image, cube face, 3d slice, 2d layer).
1058 //! An ImageLayerVerifier that simply compares the result slice to a slice i
[all...]
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DByteArray.java25 * 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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.director_2.0.3.R36x_v20101117-1018.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.repository.tools_2.0.1.R36x_v20100823.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.mortbay.jetty.server_6.1.23.v201004211559.jar ... int n public org.mortbay.io.Buffer slice () public org.mortbay.io.Buffer sliceFromMark () public ...
/external/fio/profiles/
H A Dact.c298 struct act_slice *slice; local
312 slice = &apd->slices[apd->cur_slice];
313 slice->total_ios++;
317 slice->lat_buckets[i]++;
327 perm = (1000.0 * slice->lat_buckets[i]) / slice->total_ios;
348 static int show_slice(struct act_slice *slice, unsigned int slice_num) argument
357 if (slice->total_ios)
358 perc = 100.0 * (double) slice->lat_buckets[i] / (double) slice
400 unsigned int i, slice; local
[all...]
/external/guava/guava-tests/test/com/google/common/io/
H A DByteSourceTester.java44 * {@code slice()} views in the same way.
85 String name, String desc, boolean slice) {
91 if (slice && bytes.length > 0) {
92 // test a random slice() of the ByteSource
99 suite.addTest(suiteForBytes(sliced, bytes, name + ".slice[int, int]",
205 source.slice(-1, 0);
206 fail("expected IllegalArgumentException for call to slice with offset -1: " + source);
211 source.slice(0, -1);
212 fail("expected IllegalArgumentException for call to slice with length -1: " + source);
84 suiteForBytes(ByteSourceFactory factory, byte[] bytes, String name, String desc, boolean slice) argument
/external/guava/guava/src/com/google/common/io/
H A DByteSource.java121 * Returns a view of a slice of this byte source that is at most {@code length} bytes long
126 public ByteSource slice(long offset, long length) { method in class:ByteSource
404 * in the array, use {@code ByteSource.wrap(b).slice(offset, length)}.
487 public ByteSource slice(long offset, long length) { method in class:ByteSource.SlicedByteSource
491 return ByteSource.this.slice(this.offset + offset, Math.min(length, maxLength));
501 return ByteSource.this.toString() + ".slice(" + offset + ", " + length + ")";
555 // TODO(user): Possibly override slice()
H A DByteStreams.java82 * @deprecated Use {@code ByteSource.wrap(b).slice(off, len)} instead. This
88 return asInputSupplier(ByteSource.wrap(b).slice(off, len));
995 * @deprecated Use {@link ByteSource#slice(int, int)} instead. This method is
999 public static InputSupplier<InputStream> slice( method in class:ByteStreams
1003 return asInputSupplier(asByteSource(supplier).slice(offset, length));
/external/jetty/src/java/org/eclipse/jetty/io/
H A DAbstractBuffer.java551 public Buffer slice() method in class:AbstractBuffer
H A DBuffer.java328 Buffer slice(); method in interface:Buffer
/external/jsilver/src/com/google/streamhtmlparser/util/
H A DJavascriptTokenBuffer.java206 return slice(position + 1, end);
210 * Returns a slice of the buffer delimited by the given indices.
213 * slice to copy. If the start argument extends beyond the beginning
214 * of the buffer, the slice will only contain characters
222 public String slice(int start, int end) { method in class:JavascriptTokenBuffer
/external/libvncserver/libvncserver/
H A Drfbserver.c2697 sraRegionPtr slice; local
2700 slice=sraRgnCreateRect(0,y,cl->screen->width,y+height);
2701 sraRgnAnd(updateRegion,slice);
2702 sraRgnDestroy(slice);
/external/llvm/include/llvm/ADT/
H A DArrayRef.h145 /// slice(n) - Chop off the first N elements of the array.
146 ArrayRef<T> slice(unsigned N) const { function in class:llvm::ArrayRef
151 /// slice(n, m) - Chop off the first N elements of the array, and keep M
153 ArrayRef<T> slice(unsigned N, unsigned M) const { function in class:llvm::ArrayRef
161 return slice(0, size() - N);
257 /// slice(n) - Chop off the first N elements of the array.
258 MutableArrayRef<T> slice(unsigned N) const { function in class:llvm::ArrayRef
263 /// slice(n, m) - Chop off the first N elements of the array, and keep M
265 MutableArrayRef<T> slice(unsigned N, unsigned M) const { function in class:llvm::ArrayRef
H A DSmallString.h260 StringRef slice(size_t Start, size_t End) const { function in class:llvm::SmallString
261 return str().slice(Start, End);
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_texture.c788 * for just one cube face or one 3D texture slice
891 * Return pointer to a 2D texture image/face/slice.
1015 * for a particular cube face or 3D texture slice.
1017 * \param face_slice the cube face or 3D slice of interest
1169 int slice; local
1174 for (slice = slices - 1; slice >= 0; slice--) {
1175 map = llvmpipe_get_texture_image(lpr, slice, level, usage, layout);
1209 /* compute address of the slice/fac
[all...]
/external/mesa3d/src/gallium/drivers/r600/
H A Devergreen_state.c1246 unsigned pitch, slice; local
1267 slice = (rtex->surface.level[level].nblk_x * rtex->surface.level[level].nblk_y) / 64;
1268 if (slice) {
1269 slice = slice - 1;
1412 surf->cb_color_slice = S_028C68_SLICE_TILE_MAX(slice);
1427 surf->cb_color_fmask_slice = S_028C88_TILE_MAX(slice);
1440 unsigned level, pitch, slice, format, array_mode; local
1450 slice = (rtex->surface.level[level].nblk_x * rtex->surface.level[level].nblk_y) / 64;
1451 if (slice) {
[all...]
H A Dr600_state.c1261 unsigned pitch, slice; local
1281 slice = (rtex->surface.level[level].nblk_x * rtex->surface.level[level].nblk_y) / 64;
1282 if (slice) {
1283 slice = slice - 1;
1393 S_028060_SLICE_TILE_MAX(slice);
1410 surf->cb_color_mask |= S_028100_FMASK_TILE_MAX(slice);
1461 S_028100_FMASK_TILE_MAX(slice);
1480 unsigned level, pitch, slice, format, offset, array_mode; local
1485 slice
[all...]

Completed in 867 milliseconds

1234