/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ |
valarray | 81 class slice; // BLAS-like slice out of an array 83 class gslice; // generalized slice out of an array 208 * @param __sa Array slice to get values from. 218 * @param __ga Array slice to get values from. 228 * @param __ma Array slice to get values from. 238 * @param __ia Array slice to get values from. 275 * indicated by the slice argument. The new valarray has the same size 276 * as the input slice. @see slice [all...] |
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ |
valarray | 79 class slice; // BLAS-like slice out of an array 81 class gslice; // generalized slice out of an array 206 * @param __sa Array slice to get values from. 216 * @param __ga Array slice to get values from. 226 * @param __ma Array slice to get values from. 236 * @param __ia Array slice to get values from. 273 * indicated by the slice argument. The new valarray has the same size 274 * as the input slice. @see slice [all...] |
/external/opencv/cxcore/src/ |
cxdatastructs.cpp | 609 cvSliceLength( CvSlice slice, const CvSeq* seq ) 612 int length = slice.end_index - slice.start_index; 616 if( slice.start_index < 0 ) 617 slice.start_index += total; 618 if( slice.end_index <= 0 ) 619 slice.end_index += total; 621 length = slice.end_index - slice.start_index; 639 cvCvtSeqToArray( const CvSeq *seq, void *array, CvSlice slice ) [all...] |
/external/chromium_org/chrome/browser/resources/standalone/ |
standalone_hack.js | 73 getUsersCallback(users.slice(0)); 349 var slice = [].slice, 350 args = slice.call(arguments, 1), 356 args.concat(slice.call(arguments)));
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/domui/js/cr/ui/ |
array_data_model.js | 105 slice: function(opt_from, opt_to) { 106 return this.array_.slice.apply(this.array_, arguments); 147 spliceEvent.removed = arr.slice(index, index + deleteCount); 148 spliceEvent.added = Array.prototype.slice.call(arguments, 2); 186 var args = Array.prototype.slice.call(arguments);
|
/external/chromium_org/third_party/leveldatabase/src/db/ |
corruption_test.cc | 77 Slice key = Key(i, &key_space); 94 Slice in(iter->key()); 180 Slice Key(int i, std::string* storage) { 184 return Slice(*storage); 188 Slice Value(int k, std::string* storage) {
|
db_impl.cc | 400 Slice record; 481 const Slice min_user_key = meta.smallest.user_key(); 482 const Slice max_user_key = meta.largest.user_key(); 530 void DBImpl::CompactRange(const Slice* begin, const Slice* end) { 547 void DBImpl::TEST_CompactRange(int level, const Slice* begin,const Slice* end) { 894 Slice key = input->key(); 913 Slice(current_user_key)) != 0) { 1069 const Slice& key [all...] |
/external/kernel-headers/original/linux/ |
genhd.h | 273 v_slice[SOLARIS_X86_NUMSLICE]; /* slice headers */ 344 #define UNIXWARE_DISKMAGIC2 (0x600DDEEEUL) /* The slice table magic nr */ 346 #define UNIXWARE_FS_UNUSED 0 /* Unused slice entry ID */ 352 __le32 nr_sects; /* number of sectors in slice */ 384 v_slice[UNIXWARE_NUMSLICE]; /* slice headers */
|
/external/chromium_org/chrome/browser/web_resource/ |
promo_resource_service_unittest.cc | 296 const double slice = 60; local 301 notification_promo_.time_slice_ = slice; 304 notification_promo_.end_ = now + slice; 313 notification_promo_.start_ -= slice; 320 notification_promo_.start_ -= slice; 327 notification_promo_.start_ -= 2 * slice; 334 notification_promo_.start_ -= slice;
|
/external/chromium_org/content/browser/indexed_db/leveldb/ |
leveldb_database.cc | 27 #include "third_party/leveldatabase/src/include/leveldb/slice.h" 33 static leveldb::Slice MakeSlice(const StringPiece& s) { 34 return leveldb::Slice(s.begin(), s.size()); 37 static StringPiece MakeStringPiece(const leveldb::Slice& s) { 46 virtual int Compare(const leveldb::Slice& a, const leveldb::Slice& b) const 55 const leveldb::Slice& limit) const
|
/external/llvm/unittests/ADT/ |
StringRefTest.cpp | 110 TEST(StringRefTest, Slice) { 112 EXPECT_EQ("l", Str.slice(2, 3)); 113 EXPECT_EQ("ell", Str.slice(1, 4)); 114 EXPECT_EQ("llo", Str.slice(2, 100)); 115 EXPECT_EQ("", Str.slice(2, 1)); 116 EXPECT_EQ("", Str.slice(10, 20)); 338 hash_value(StringRef("hello world").slice(1, -1)));
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
seq_tests.py | 147 self.assertRaises(ValueError, u.__getitem__, slice(0,10,0)) 325 self.assertEqual(a.__getitem__(slice(0,1)), self.type2test([10])) 326 self.assertEqual(a.__getitem__(slice(1,2)), self.type2test([11])) 327 self.assertEqual(a.__getitem__(slice(0,2)), self.type2test([10, 11])) 328 self.assertEqual(a.__getitem__(slice(0,3)), self.type2test([10, 11])) 329 self.assertEqual(a.__getitem__(slice(3,5)), self.type2test([])) 330 self.assertRaises(ValueError, a.__getitem__, slice(0, 10, 0))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
seq_tests.py | 147 self.assertRaises(ValueError, u.__getitem__, slice(0,10,0)) 325 self.assertEqual(a.__getitem__(slice(0,1)), self.type2test([10])) 326 self.assertEqual(a.__getitem__(slice(1,2)), self.type2test([11])) 327 self.assertEqual(a.__getitem__(slice(0,2)), self.type2test([10, 11])) 328 self.assertEqual(a.__getitem__(slice(0,3)), self.type2test([10, 11])) 329 self.assertEqual(a.__getitem__(slice(3,5)), self.type2test([])) 330 self.assertRaises(ValueError, a.__getitem__, slice(0, 10, 0))
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/ |
CharBufferTest.java | 627 CharBuffer slice = buf.slice(); local 628 assertEquals(buf.isReadOnly(), slice.isReadOnly()); 629 assertEquals(buf.isDirect(), slice.isDirect()); 630 assertEquals(buf.order(), slice.order()); 631 assertEquals(slice.position(), 0); 632 assertEquals(slice.limit(), buf.remaining()); 633 assertEquals(slice.capacity(), buf.remaining()); 635 slice.reset(); 641 // slice share the same content with bu [all...] |
/external/chromium_org/v8/src/ |
messages.js | 483 * Get a slice of source code from the script. The boundaries for the slice is 485 * @param {number} opt_from_line The first line (zero bound) in the slice. 487 * @param {number} opt_to_column The last line (zero bound) in the slice (non 489 * @return {SourceSlice} The source slice or null of the parameters where 515 // Return a source slice with line numbers re-adjusted to the resource. 652 * Restrict source location start and end positions to make the source slice 724 * Class for a source slice. A source slice is a part of a script source with 727 * from_line : line number for the first line in the slice [all...] |
/external/v8/src/ |
messages.js | 452 * Get a slice of source code from the script. The boundaries for the slice is 454 * @param {number} opt_from_line The first line (zero bound) in the slice. 456 * @param {number} opt_to_column The last line (zero bound) in the slice (non 458 * @return {SourceSlice} The source slice or null of the parameters where 484 // Return a source slice with line numbers re-adjusted to the resource. 620 * Restrict source location start and end positions to make the source slice 692 * Class for a source slice. A source slice is a part of a script source with 695 * from_line : line number for the first line in the slice [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/ |
lp_texture.c | 788 * 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 [all...] |
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_texture.c | 788 * 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 [all...] |
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/hosted/ |
json2.js | 134 value.slice(0, 5) === 'Date(' && 135 value.slice(-1) === ')') { 136 d = new Date(value.slice(5, -1)); 154 lastIndex, length, parse, prototype, push, replace, slice, stringify, 221 '\\u' + ('0000' + a.charCodeAt(0).toString(16)).slice(-4); 440 ('0000' + a.charCodeAt(0).toString(16)).slice(-4);
|
/external/chromium_org/tools/telemetry/telemetry/core/timeline/ |
trace_event_importer.py | 93 open slice. 186 # Treat an Instant event as a duration 0 slice. 277 'At ' + event['ts'] + ', a slice of the same id ' + event_id + 287 'At ' + str(event['ts']) + ', no slice named ' + name + 292 'At ' + str(event['ts']) + ', no slice named ' + name + 299 # Create a slice from start to end.
|
/frameworks/av/media/libstagefright/codecs/avc/enc/src/ |
avcenc_api.h | 113 int num_slice_group; /* number of slice group */ 122 AVCFlag change_dir_flag; /* slice group change direction flag */ 128 int disable_db_idc; /* 0: filter everywhere, 1: no filter, 2: no filter across slice boundary */ 144 AVCFlag bidir_pred; /* enable bi-directional for B-slice, this flag forces the encoder to encode 233 a VCL (video coding layer) NAL which contains one slice of data. It could be a 244 \return "AVCENC_SUCCESS for success of encoding one slice,
|
/external/chromium_org/content/common/gpu/media/ |
h264_parser.h | 99 // TODO(posciak): Slice groups not implemented, could be added at some point. 292 // Slice headers and SEI messages are not used across NALUs by the parser 297 // Parse a slice header, returning it in |*shdr|. |*nalu| must be set to
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/ |
layout_test_finder.py | 135 # Get the start offset of the slice. 157 # Get the end offset of the slice. 162 _log.debug('chunk slice [%d:%d] of %d is %d tests' % (slice_start, slice_end, num_tests, (slice_end - slice_start)))
|
/external/jmonkeyengine/engine/src/test/jme3test/bullet/ |
TestRagdollCharacter.java | 132 inputManager.addMapping("Slice", 138 inputManager.addListener(this, "Slice"); 208 } else if (binding.equals("Slice")) {
|
/external/llvm/test/CodeGen/ARM/ |
2008-05-19-LiveIntervalsBug.ll | 8 %struct.ImageParameters = type { i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, float, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i8**, i8**, i32, i32***, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, [9 x [16 x [16 x i16]]], [5 x [16 x [16 x i16]]], [9 x [8 x [8 x i16]]], [2 x [4 x [16 x [16 x i16]]]], [16 x [16 x i16]], [16 x [16 x i32]], i32****, i32***, i32***, i32***, i32****, i32****, %struct.Picture*, %struct.Slice*, %struct.Macroblock*, i32*, i32*, i32, i32, i32, i32, [4 x [4 x i32]], i32, i32, i32, i32, i32, double, i32, i32, i32, i32, i16******, i16******, i16******, i16******, [15 x i16], i32, i32, i32, i32, i32, i32, i32, i32, [6 x [32 x i32]], i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, [1 x i32], i32, i32, [2 x i32], i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, %struct.DecRefPicMarking_t*, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, double**, double***, i32***, double**, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, [3 x [2 x i32]], [2 x i32], i32, i32, i16, i32, i32, i32, i32, i32 } 11 %struct.Picture = type { i32, i32, [100 x %struct.Slice*], i32, float, float, float } 12 %struct.Slice = type { i32, i32, i32, i32, i32, i32, %struct.DataPartition*, %struct.MotionInfoContexts*, %struct.TextureInfoContexts*, i32, i32*, i32*, i32*, i32, i32*, i32*, i32*, i32 (i32)*, [3 x [2 x i32]] }
|