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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium-trace/trace-viewer/src/tracing/tracks/
slice_track.css 6 .slice-track {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_slice.py 1 # tests for slice objects; in particular the indices method.
12 self.assertRaises(TypeError, slice)
13 self.assertRaises(TypeError, slice, 1, 2, 3, 4)
16 self.assertEqual(repr(slice(1, 2, 3)), "slice(1, 2, 3)")
20 self.assertRaises(TypeError, hash, slice(5))
21 self.assertRaises(TypeError, slice(5).__hash__)
24 s1 = slice(1, 2, 3)
25 s2 = slice(1, 2, 3)
26 s3 = slice(1, 2, 4
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_slice.py 1 # tests for slice objects; in particular the indices method.
12 self.assertRaises(TypeError, slice)
13 self.assertRaises(TypeError, slice, 1, 2, 3, 4)
16 self.assertEqual(repr(slice(1, 2, 3)), "slice(1, 2, 3)")
20 self.assertRaises(TypeError, hash, slice(5))
21 self.assertRaises(TypeError, slice(5).__hash__)
24 s1 = slice(1, 2, 3)
25 s2 = slice(1, 2, 3)
26 s3 = slice(1, 2, 4
    [all...]
  /external/chromium-trace/trace-viewer/src/cc/
raster_task_slice_view.css 5 .raster-task-slice-view {
10 .raster-task-slice-view > object-snapshot-view {
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
UIString.js 39 return String.vsprintf(string, Array.prototype.slice.call(arguments, 1));
HeapSnapshotWorker.js 57 this._postMessage("log", Array.prototype.slice.call(arguments));
63 this._postMessage("error", Array.prototype.slice.call(arguments));
69 this._postMessage("info", Array.prototype.slice.call(arguments));
  /libcore/luni/src/main/java/java/util/concurrent/
CopyOnWriteArrayList.java 472 * single snapshot object representing the current slice. This permits reads
482 private volatile Slice slice; field in class:CopyOnWriteArrayList.CowSubList
485 this.slice = new Slice(expectedElements, from, to);
489 Slice slice = this.slice; local
490 return slice.to - slice.from
494 Slice slice = this.slice; local
500 Slice slice = this.slice; local
516 Slice slice = this.slice; local
526 Slice slice = this.slice; local
534 Slice slice = this.slice; local
546 Slice slice = this.slice; local
553 Slice slice = this.slice; local
    [all...]
  /packages/apps/Settings/src/com/android/settings/widget/
PieChartView.java 48 private ArrayList<Slice> mSlices = Lists.newArrayList();
62 public class Slice {
71 public Slice(long value, int color) {
118 mSlices.add(new Slice(value, color));
141 for (Slice slice : mSlices) {
142 slice.path.reset();
143 slice.pathSide.reset();
144 slice.pathOutline.reset();
145 total += slice.value
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/class.slice/cons.slice/
default.pass.cpp 12 // class slice;
14 // slice();
21 std::slice s;
start_size_stride.pass.cpp 12 // class slice;
14 // slice(size_t start, size_t size, size_t stride);
21 std::slice s(1, 3, 2);
  /external/chromium_org/content/browser/indexed_db/
indexed_db_leveldb_coding.cc 356 bool DecodeByte(StringPiece* slice, unsigned char* value) {
357 if (slice->empty())
360 *value = (*slice)[0];
361 slice->remove_prefix(1);
365 bool DecodeBool(StringPiece* slice, bool* value) {
366 if (slice->empty())
369 *value = !!(*slice)[0];
370 slice->remove_prefix(1);
374 bool DecodeInt(StringPiece* slice, int64* value) {
375 if (slice->empty()
    [all...]
  /external/chromium_org/v8/test/mjsunit/
array-slice.js 32 var sliced = array.slice();
42 assertEquals([], [].slice(0, 0));
43 assertEquals([], [].slice(1, 0));
44 assertEquals([], [].slice(0, 1));
45 assertEquals([], [].slice(-1, 0));
55 assertEquals(array, array.slice());
56 assertEquals(array, array.slice(0));
57 assertEquals(array, array.slice(undefined));
58 assertEquals(array, array.slice("foobar"));
59 assertEquals(array, array.slice(undefined, undefined))
    [all...]
  /external/v8/test/mjsunit/
array-slice.js 32 var sliced = array.slice();
42 assertEquals([], [].slice(0, 0));
43 assertEquals([], [].slice(1, 0));
44 assertEquals([], [].slice(0, 1));
45 assertEquals([], [].slice(-1, 0));
55 assertEquals(array, array.slice());
56 assertEquals(array, array.slice(0));
57 assertEquals(array, array.slice(undefined));
58 assertEquals(array, array.slice("foobar"));
59 assertEquals(array, array.slice(undefined, undefined))
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
slice_array.h 48 * The slice class represents a one-dimensional subset of an array,
55 * For example, with an array of size 10, and a slice with offset 1, size 3
58 class slice class
61 /// Construct an empty slice.
62 slice();
65 * @brief Construct a slice.
68 * @param d Number of elements in slice.
71 slice(size_t, size_t, size_t);
73 /// Return array offset of first slice element.
75 /// Return size of slice
89 slice::slice() function in class:slice
93 slice::slice(size_t __o, size_t __d, size_t __s) function in class:slice
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
slice_array.h 50 * The slice class represents a one-dimensional subset of an array,
57 * For example, with an array of size 10, and a slice with offset 1, size 3
60 class slice class
63 /// Construct an empty slice.
64 slice();
67 * @brief Construct a slice.
70 * @param d Number of elements in slice.
73 slice(size_t, size_t, size_t);
75 /// Return array offset of first slice element.
77 /// Return size of slice
91 slice::slice() function in class:slice
95 slice::slice(size_t __o, size_t __d, size_t __s) function in class:slice
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
slice_array.h 50 * The slice class represents a one-dimensional subset of an array,
57 * For example, with an array of size 10, and a slice with offset 1, size 3
60 class slice class
63 /// Construct an empty slice.
64 slice();
67 * @brief Construct a slice.
70 * @param d Number of elements in slice.
73 slice(size_t, size_t, size_t);
75 /// Return array offset of first slice element.
77 /// Return size of slice
91 slice::slice() function in class:slice
95 slice::slice(size_t __o, size_t __d, size_t __s) function in class:slice
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
slice_array.h 48 * The slice class represents a one-dimensional subset of an array,
55 * For example, with an array of size 10, and a slice with offset 1, size 3
58 class slice class
61 /// Construct an empty slice.
62 slice();
65 * @brief Construct a slice.
68 * @param d Number of elements in slice.
71 slice(size_t, size_t, size_t);
73 /// Return array offset of first slice element.
75 /// Return size of slice
89 slice::slice() function in class:slice
93 slice::slice(size_t __o, size_t __d, size_t __s) function in class:slice
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
slice_array.h 48 * The slice class represents a one-dimensional subset of an array,
55 * For example, with an array of size 10, and a slice with offset 1, size 3
58 class slice class
61 /// Construct an empty slice.
62 slice();
65 * @brief Construct a slice.
68 * @param d Number of elements in slice.
71 slice(size_t, size_t, size_t);
73 /// Return array offset of first slice element.
75 /// Return size of slice
89 slice::slice() function in class:slice
93 slice::slice(size_t __o, size_t __d, size_t __s) function in class:slice
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
slice_array.h 48 * The slice class represents a one-dimensional subset of an array,
55 * For example, with an array of size 10, and a slice with offset 1, size 3
58 class slice class
61 /// Construct an empty slice.
62 slice();
65 * @brief Construct a slice.
68 * @param d Number of elements in slice.
71 slice(size_t, size_t, size_t);
73 /// Return array offset of first slice element.
75 /// Return size of slice
89 slice::slice() function in class:slice
93 slice::slice(size_t __o, size_t __d, size_t __s) function in class:slice
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
slice_array.h 48 * The slice class represents a one-dimensional subset of an array,
55 * For example, with an array of size 10, and a slice with offset 1, size 3
58 class slice class
61 /// Construct an empty slice.
62 slice();
65 * @brief Construct a slice.
68 * @param d Number of elements in slice.
71 slice(size_t, size_t, size_t);
73 /// Return array offset of first slice element.
75 /// Return size of slice
89 slice::slice() function in class:slice
93 slice::slice(size_t __o, size_t __d, size_t __s) function in class:slice
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
slice_array.h 50 * The slice class represents a one-dimensional subset of an array,
57 * For example, with an array of size 10, and a slice with offset 1, size 3
60 class slice class
63 /// Construct an empty slice.
64 slice();
67 * @brief Construct a slice.
70 * @param d Number of elements in slice.
73 slice(size_t, size_t, size_t);
75 /// Return array offset of first slice element.
77 /// Return size of slice
91 slice::slice() function in class:slice
95 slice::slice(size_t __o, size_t __d, size_t __s) function in class:slice
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
slice_array.h 50 * The slice class represents a one-dimensional subset of an array,
57 * For example, with an array of size 10, and a slice with offset 1, size 3
60 class slice class
63 /// Construct an empty slice.
64 slice();
67 * @brief Construct a slice.
70 * @param __d Number of elements in slice.
73 slice(size_t __o, size_t __d, size_t __s);
75 /// Return array offset of first slice element.
77 /// Return size of slice
91 slice::slice() function in class:slice
95 slice::slice(size_t __o, size_t __d, size_t __s) function in class:slice
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
slice_array.h 50 * The slice class represents a one-dimensional subset of an array,
57 * For example, with an array of size 10, and a slice with offset 1, size 3
60 class slice class
63 /// Construct an empty slice.
64 slice();
67 * @brief Construct a slice.
70 * @param d Number of elements in slice.
73 slice(size_t, size_t, size_t);
75 /// Return array offset of first slice element.
77 /// Return size of slice
91 slice::slice() function in class:slice
95 slice::slice(size_t __o, size_t __d, size_t __s) function in class:slice
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
slice_array.h 50 * The slice class represents a one-dimensional subset of an array,
57 * For example, with an array of size 10, and a slice with offset 1, size 3
60 class slice class
63 /// Construct an empty slice.
64 slice();
67 * @brief Construct a slice.
70 * @param __d Number of elements in slice.
73 slice(size_t __o, size_t __d, size_t __s);
75 /// Return array offset of first slice element.
77 /// Return size of slice
91 slice::slice() function in class:slice
95 slice::slice(size_t __o, size_t __d, size_t __s) function in class:slice
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
slice_array.h 49 * The slice class represents a one-dimensional subset of an array,
56 * For example, with an array of size 10, and a slice with offset 1, size 3
59 class slice class
62 /// Construct an empty slice.
63 slice();
66 * @brief Construct a slice.
69 * @param __d Number of elements in slice.
72 slice(size_t __o, size_t __d, size_t __s);
74 /// Return array offset of first slice element.
76 /// Return size of slice
90 slice::slice() function in class:slice
94 slice::slice(size_t __o, size_t __d, size_t __s) function in class:slice
    [all...]

Completed in 784 milliseconds

1 2 3 4 5 6 7 8 91011>>