/external/chromium_org/v8/test/webkit/fast/js/ |
Object-getOwnPropertyNames.js | 79 "Array.prototype": "['concat', 'constructor', 'every', 'filter', 'forEach', 'indexOf', 'join', 'lastIndexOf', 'length', 'map', 'pop', 'push', 'reduce', 'reduceRight', 'reverse', 'shift', 'slice', 'some', 'sort', 'splice', 'toLocaleString', 'toString', 'unshift']", 81 "String.prototype": "['anchor', 'big', 'blink', 'bold', 'charAt', 'charCodeAt', 'concat', 'constructor', 'fixed', 'fontcolor', 'fontsize', 'indexOf', 'italics', 'lastIndexOf', 'length', 'link', 'localeCompare', 'match', 'replace', 'search', 'slice', 'small', 'split', 'strike', 'sub', 'substr', 'substring', 'sup', 'toLocaleLowerCase', 'toLocaleUpperCase', 'toLowerCase', 'toString', 'toUpperCase', 'trim', 'trimLeft', 'trimRight', 'valueOf']",
|
array-prototype-properties-expected.txt | 37 PASS Array.prototype.slice.call(undefined, 0, 1) threw exception TypeError: Array.prototype.slice called on null or undefined.
|
/external/clang/lib/Basic/ |
Version.cpp | 41 URL = SVNRepository.slice(SVNRepository.find(':'), 46 URL = URL.slice(0, URL.find("/src/tools/clang"));
|
/external/compiler-rt/make/ |
AppleBI.mk | 53 # Rule to make each dylib slice 97 # rule to make each archive slice for dyld (which removes a few archive members)
|
/external/grub/stage2/ |
pc_slice.h | 160 * This is a subdivided slice of type 'PC_SLICE_TYPE_BSD', so all of 161 * these, except where noted, are relative to the slice in question.
|
/external/llvm/test/Transforms/IndVarSimplify/ |
lftr-other-uses.ll | 8 %struct.img_par = type { i32, i32, i32, i32, i32*, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, [16 x [16 x i16]], [6 x [32 x i32]], [16 x [16 x i32]], [4 x [12 x [4 x [4 x i32]]]], [16 x i32], i32**, i32*, i32***, i32**, i32, i32, i32, i32, %typedef.Slice*, %struct.macroblock*, i32, i32, i32, i32, i32, i32, i32**, %struct.DecRefPicMarking_s*, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, [3 x i32], i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32***, i32***, i32****, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, %struct.timeb, %struct.timeb, i32, i32, i32, i32, i32, i32, i32, i32 } 17 %typedef.Slice = type { i32, i32, i32, i32, i32, i32, i32, i32, i32, %struct.datapartition*, %typedef.MotionInfoContexts*, %typedef.TextureInfoContexts*, i32, i32*, i32*, i32*, i32, i32*, i32*, i32*, i32 (%struct.img_par*, %struct.inp_par*)*, i32, i32, i32, i32 }
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/piff/ |
PlayReadyHeader.java | 133 record.parse((ByteBuffer) byteBuffer.slice().limit(length)); 166 byte[] str = new byte[bytes.slice().limit()];
|
/external/v8/test/mjsunit/ |
array-elements-from-array-prototype.js | 92 var sliced = a.slice(3, 10) 93 // Slice must keep intact a and reify holes at indices 0--2 and 4--6.
|
array-elements-from-object-prototype.js | 92 var sliced = a.slice(3, 10) 93 // Slice must keep intact a and reify holes at indices 0--2 and 4--6.
|
undeletable-functions.js | 35 "shift", "unshift", "slice", "splice", "sort", "filter", "forEach", "some", 109 "lastIndexOf", "localeCompare", "match", "replace", "search", "slice",
|
/external/v8/test/mjsunit/compiler/ |
expression-trees.js | 44 var leftTrees = makeTrees(op, leaves.slice(0, i)); 45 var rightTrees = makeTrees(op, leaves.slice(i, len));
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
combined_encode.cpp | 132 video->sliceNo[mbnum] = curr_slice_counter; /* Update MB slice number */ 144 slice_counter++; /* Increment slice counter */ 145 video->sliceNo[mbnum] = slice_counter; /* Update MB slice number*/ 255 /* Purpose : Encode a slice of MPEG4 bitstream in Combined mode and save */ 321 /* Re-assign fast functions on every slice, don't have to put it in the memory */ 399 video->sliceNo[mbnum] = slice_counter; /* Update MB slice number */ 411 slice_counter++; /* Increment slice counter */ 412 video->sliceNo[mbnum] = slice_counter; /* Update MB slice number*/
|
/libcore/luni/src/test/java/libcore/java/nio/charset/ |
CharsetDecoderTest.java | 43 ByteBuffer inBuffer = ByteBuffer.wrap(arr, 0, arr.length).slice(); 59 ByteBuffer inBuffer = ByteBuffer.wrap(arr, offset, arr.length - offset).slice();
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_compile.py | 426 # Simple slice 432 self.assertNotIn(slice(1, 2), d) 439 self.assertNotIn((slice(1, 2), slice(1, 2)), d) 440 # Extended slice 446 self.assertNotIn(slice(1, 2, 3), d) 453 self.assertNotIn((slice(1, 2, 3), slice(1, 2, 3)), d)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_compile.py | 426 # Simple slice 432 self.assertNotIn(slice(1, 2), d) 439 self.assertNotIn((slice(1, 2), slice(1, 2)), d) 440 # Extended slice 446 self.assertNotIn(slice(1, 2, 3), d) 453 self.assertNotIn((slice(1, 2, 3), slice(1, 2, 3)), d)
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
h264bsd_slice_header.c | 78 Decode slice header data from the stream. 133 /* slice type has to be either I or P slice. P slice is not allowed when 309 /* decode sliceQpDelta and check that initial QP for the slice will be on 455 current slice 713 Peek value of pic_parameter_set_id from the slice header. Function 772 Peek value of frame_num from the slice header. Function does not 846 Peek value of idr_pic_id from the slice header. Function does not 931 Peek value of pic_order_cnt_lsb from the slice header. Functio [all...] |
h264bsd_pic_param_set.c | 66 - run lengths if slice group map type is 0 68 - for slice group ids if map type is 6 70 Validity of some of the slice group mapping information depends 149 /* decode slice group mapping information if more than one slice groups */
|
/external/chromium/chrome/browser/resources/gpu_internals/ |
timeline.js | 388 this.selection_[i].slice.selected = false; 392 function addHit(type, track, slice) { 393 selection.push({track: track, slice: slice}); 409 this.selection_[i].slice.selected = true;
|
/external/chromium_org/chrome/renderer/resources/extensions/ |
event.js | 361 var listeners = $Array.slice( 388 return this.dispatch_($Array.slice(arguments), undefined); 448 $Array.slice(ruleFunctionSchemas.addRules.parameters), 1)); 461 $Array.slice(ruleFunctionSchemas.removeRules.parameters), 1)); 475 $Array.slice(ruleFunctionSchemas.getRules.parameters), 1));
|
/external/chromium_org/third_party/WebKit/Source/core/scripts/templates/ |
StyleBuilderFunctions.cpp.tmpl | 184 {%- elif modifier_type == "Slice" %} 202 {%- elif modifier_type == "Slice" %} 217 {%- elif modifier_type == "Slice" %} 228 {{ apply_border_image_modifier("CSSPropertyBorderImageSlice", "Slice") }} 232 {{ apply_border_image_modifier("CSSPropertyWebkitMaskBoxImageSlice", "Slice") }}
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
HeapSnapshotProxy.js | 221 var methodArguments = Array.prototype.slice.call(arguments, 4); 240 var methodArguments = Array.prototype.slice.call(arguments, 3); 335 return this._callWorker("callFactoryMethod", Array.prototype.slice.call(arguments, 0)); 340 return this._callWorker("callGetter", Array.prototype.slice.call(arguments, 0)); 348 return this._callWorker("callMethod", Array.prototype.slice.call(arguments, 0));
|
/external/chromium_org/third_party/leveldatabase/src/include/leveldb/ |
env.h | 28 class Slice; 168 virtual Status Read(size_t n, Slice* result, char* scratch) = 0; 200 virtual Status Read(uint64_t offset, size_t n, Slice* result, 217 virtual Status Append(const Slice& data) = 0; 263 extern Status WriteStringToFile(Env* env, const Slice& data,
|
/external/chromium_org/v8/test/mjsunit/harmony/ |
typedarrays.js | 74 var slice = ab.slice(start, end); 75 assertSame(expectedResultLen, slice.byteLength); 76 var a2 = new Uint8Array(slice); 84 var ab1 = ab.slice(512, 1024);
|
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/ |
Sphere.java | 116 * Slice sphere evenly along the Z axis
167 // points on a sphere slice.
195 // compute center of slice
199 // compute radius of slice
203 // compute slice vertices with duplication at end point
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/ |
valarray_before.h | 668 _SBase (const _Dom& __e, const slice& __s) 681 const slice& _M_slice; 690 _SBase (_Array<_Tp> __a, const slice& __s) 715 _SClos (const _Dom& __e, const slice& __s) : _Base (__e, __s) {} 725 _SClos (_Array<_Tp> __a, const slice& __s) : _Base (__a, __s) {}
|