Searched refs:slice (Results 26 - 50 of 200) sorted by relevance

12345678

/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Protocol/
H A DMessageDispatcher.js49 WebInspector.messagesToDispatch = WebInspector.messagesToDispatch.slice(i);
/macosx-10.10.1/ruby-106/ruby/benchmark/
H A Dbm_so_fannkuch.rb26 perml = perml.slice!(0, k).reverse + perml
H A Dbm_so_fasta.rb50 s.slice!(n, l)
/macosx-10.10.1/ruby-106/ruby/ext/pty/lib/
H A Dexpect.rb45 c = @unusedBuf.slice!(0).chr
/macosx-10.10.1/tcl-105/tcl_ext/tklib/tklib/modules/tkpiechart/
H A Dpielabel.tcl17 ::stooop::virtual proc new {this slice args} ;# must return a canvasLabel
H A Dtkpiechart.tcl4 {slice.tcl source {::slice::_copy ::slice::complete ::slice::data ::slice::normalizedAngle ::slice::options ::slice::rotate ::slice::set-bottomcolor ::slice::set-deletecommand ::slice
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/runtime/
H A DJSArrayBufferPrototype.cpp44 return throwVMError(exec, createTypeError(exec, "Receiver of slice must be an array buffer."));
61 RefPtr<ArrayBuffer> newBuffer = thisObject->impl()->slice(begin, end);
85 JSC_NATIVE_FUNCTION(vm.propertyNames->slice, arrayBufferProtoFuncSlice, DontEnum, 2);
H A DArrayBuffer.h108 inline PassRefPtr<ArrayBuffer> slice(int begin, int end) const;
109 inline PassRefPtr<ArrayBuffer> slice(int begin) const;
219 PassRefPtr<ArrayBuffer> ArrayBuffer::slice(int begin, int end) const function in class:JSC::ArrayBuffer
224 PassRefPtr<ArrayBuffer> ArrayBuffer::slice(int begin) const function in class:JSC::ArrayBuffer
/macosx-10.10.1/ruby-106/ruby/test/ruby/
H A Dtest_string.rb1169 assert_equal(?A, S("AooBar").slice(0))
1170 assert_equal(?B, S("FooBaB").slice(-1))
1171 assert_nil(S("FooBar").slice(6))
1172 assert_nil(S("FooBar").slice(-7))
1174 assert_equal(S("Foo"), S("FooBar").slice(0,3))
1175 assert_equal(S(S("Bar")), S("FooBar").slice(-3,3))
1176 assert_nil(S("FooBar").slice(7,2)) # Maybe should be six?
1177 assert_nil(S("FooBar").slice(-7,10))
1179 assert_equal(S("Foo"), S("FooBar").slice(0..2))
1180 assert_equal(S("Bar"), S("FooBar").slice(
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/ADT/
H A DStringRef.h416 StringRef slice(size_t Start, size_t End) const {
436 return std::make_pair(slice(0, Idx), slice(Idx+1, npos));
453 return std::make_pair(slice(0, Idx), slice(Idx + Separator.size(), npos));
488 return std::make_pair(slice(0, Idx), slice(Idx+1, npos));
H A DArrayRef.h117 /// slice(n) - Chop off the first N elements of the array.
118 ArrayRef<T> slice(unsigned N) const { function in class:llvm::ArrayRef
123 /// slice(n, m) - Chop off the first N elements of the array, and keep M
125 ArrayRef<T> slice(unsigned N, unsigned M) const { function in class:llvm::ArrayRef
215 /// slice(n) - Chop off the first N elements of the array.
216 MutableArrayRef<T> slice(unsigned N) const { function in class:llvm::ArrayRef
221 /// slice(n, m) - Chop off the first N elements of the array, and keep M
223 MutableArrayRef<T> slice(unsigned N, unsigned M) const { function in class:llvm::ArrayRef
/macosx-10.10.1/llvmCore-3425.0.34/unittests/ADT/
H A DSmallStringTest.cpp110 EXPECT_EQ("l", theString.slice(2, 3));
111 EXPECT_EQ("ell", theString.slice(1, 4));
112 EXPECT_EQ("llo", theString.slice(2, 100));
113 EXPECT_EQ("", theString.slice(2, 1));
114 EXPECT_EQ("", theString.slice(10, 20));
/macosx-10.10.1/ruby-106/ruby/ext/tk/lib/tkextlib/tcllib/
H A Dchatwidget.rb58 opts.slice(2){|k, v| h_opt[k[1..-1]] = tk_tcl2ruby(v)}
76 opts.slice(2){|k, v| h_opt[k[1..-1]] = tk_tcl2ruby(v)}
/macosx-10.10.1/tcl-105/tcl_ext/mk4tcl/metakit/python/scxx/
H A DPWOMSequence.h68 Fail(PyExc_RuntimeError, "cannot delete slice");
96 void setSlice(int lo, int hi, const PWOSequence &slice) { argument
97 int rslt = PySequence_SetSlice(_obj, lo, hi, slice);
99 Fail(PyExc_RuntimeError, "Error setting slice");
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/External/CodeMirror/
H A Drunmode.js36 content += text.slice(pos);
41 content += text.slice(pos, idx);
H A Dhtmlmixed.js36 var scriptType = stream.string.slice(Math.max(0, stream.pos - 100), stream.pos).match(/\btype\s*=\s*("[^"]+"|'[^']+'|\S+)[^<]*$/i);
38 if (scriptType && /[\"\']/.test(scriptType.charAt(0))) scriptType = scriptType.slice(1, scriptType.length - 1);
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DProbe.js90 return this._samples.slice();
H A DReplaySession.js54 return this._segments.slice();
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DLegacyProfileDataGridTree.js232 this._savedChildren = this.children.slice();
266 var children = this.children.slice();
277 children = child.children.slice();
343 this._savedChildren = this.children.slice();
/macosx-10.10.1/llvmCore-3425.0.34/lib/Support/
H A DStringExtras.cpp46 return std::make_pair(Source.slice(Start, End), Source.substr(End));
/macosx-10.10.1/pdisk-9/
H A Dpartition_map.h119 void bzb_init_slice(BZB *bp, int slice);
/macosx-10.10.1/ruby-106/ruby/lib/
H A Dtsort.rb217 component = stack.slice!(stack_length .. -1)
/macosx-10.10.1/ruby-106/ruby/test/openssl/
H A Dtest_buffering.rb27 str = @io.slice!(0, size)
/macosx-10.10.1/Security-57031.1.35/codesign_wrapper/
H A Dcodesign.c251 uint32_t slice, slices = htonl(fat.nfat_arch); local
254 for (slice = 0; slice < slices; slice++) {
255 uint32_t slice_offset = htonl(archs[slice].offset);
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma_2/String/
H A Dsplit-002.js193 T = S.slice(p, q); // 16
214 T = S.slice(p, q);

Completed in 153 milliseconds

12345678