Searched refs:slice (Results 76 - 100 of 200) sorted by relevance

12345678

/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DConsolePrompt.js113 this._history = history instanceof Array ? history.slice(0, WebInspector.ConsolePrompt.MaximumHistorySize) : [{}];
255 this._history = this._history.slice(0, WebInspector.ConsolePrompt.MaximumHistorySize);
H A DHierarchicalPathNavigationItem.js57 // Make a shallow copy of the newComponents array using slice.
58 this._components = newComponents.slice(0);
H A DTextEditor.css61 border-image-slice: 3 7 3 3 fill;
/macosx-10.10.1/apr-32/apr/apr/misc/unix/
H A Drandbyte_os2.inc18 * running at around 1.1MHz. The amount this changes in a time slice is
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/ADT/
H A DSmallString.h263 StringRef slice(size_t Start, size_t End) const { function in class:llvm::SmallString
264 return str().slice(Start, End);
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/CodeGen/
H A DLiveIntervalAnalysis.h293 return getRegMaskSlots().slice(P.first, P.second);
304 return getRegMaskBits().slice(P.first, P.second);
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_nsgeometry.py81 slice, rem = NSDivideRect(r2, None, None, 1.5, NSMaxYEdge)
82 self.assertEquals(slice, NSRect(NSPoint(4.5, 12.5), NSSize(7.5, 1.5)))
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_nsgeometry.py76 slice, rem = NSDivideRect(r2, None, None, 1.5, NSMaxYEdge)
77 self.assertEqual(slice, NSRect(NSPoint(4.5, 12.5), NSSize(7.5, 1.5)))
/macosx-10.10.1/ruby-106/ruby/lib/net/
H A Dprotocol.rb172 s = @rbuf.slice!(0, len)
325 while line = @wbuf.slice!(/\A[^\r\n]*(?:\n|\r(?:\n|(?!\z)))/)
/macosx-10.10.1/ruby-106/ruby/lib/rdoc/markup/
H A Dto_rdoc.rb315 text.slice!(0, $&.length)
317 @res << text.slice!(0, text_len)
/macosx-10.10.1/ruby-106/ruby/test/net/ftp/
H A Dtest_ftp.rb324 port_args = line.slice(/\APORT (.*)/, 1).split(/,/)
390 port_args = line.slice(/\APORT (.*)/, 1).split(/,/)
448 port_args = line.slice(/\APORT (.*)/, 1).split(/,/)
493 port_args = line.slice(/\APORT (.*)/, 1).split(/,/)
548 port_args = line.slice(/\APORT (.*)/, 1).split(/,/)
603 port_args = line.slice(/\APORT (.*)/, 1).split(/,/)
645 port_args = line.slice(/\APORT (.*)/, 1).split(/,/)
692 port_args = line.slice(/\APORT (.*)/, 1).split(/,/)
/macosx-10.10.1/swig-12/Lib/python/
H A Dpythonkw.swg105 PYTHONBN(slice);
/macosx-10.10.1/libstdcxx-104.1/include/c++/4.2.1/bits/
H A Dvalarray_before.h673 _SBase (const _Dom& __e, const slice& __s)
686 const slice& _M_slice;
695 _SBase (_Array<_Tp> __a, const slice& __s)
720 _SClos (const _Dom& __e, const slice& __s) : _Base (__e, __s) {}
730 _SClos (_Array<_Tp> __a, const slice& __s) : _Base (__a, __s) {}
/macosx-10.10.1/pdisk-9/
H A Dpartition_map.c785 bzb_init_slice(BZB *bp, int slice) argument
788 if ((slice >= 'A') && (slice <= 'Z')) {
789 slice += 'a' - 'A';
791 if ((slice != 0) && ((slice < 'a') || (slice > 'z'))) {
792 error(-1,"Bad bzb slice");
793 slice = 0;
795 switch (slice) {
[all...]
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/PyObjCTest/
H A Dtest_ivar.py141 self.assertEqual(getter(obj, 'pyValue'), slice(1, 10, 4))
142 self.assertIsInstance(getter(obj, 'pyValue'), slice)
187 self.assertEqual(getter(obj, 'pyValue'), slice(1, 10, 4))
/macosx-10.10.1/ruby-106/ruby/ext/tk/lib/tkextlib/blt/
H A Dtable.rb290 opt = inf.slice!(0..1)
307 opt = inf.slice!(0..1)
360 ret << inf.slice!(0..4) until inf.empty?
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/js1_6/Array/
H A Dregress-304828.js169 // slice
174 actual = Array.prototype.slice.call(value, 1, 2) + '';
180 reportCompare(expect, actual, summary + ': slice');
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Base/
H A DObject.js136 // Make a copy with slice so mutations during the loop doesn't affect us.
137 var listenersForThisEvent = object._listeners[eventType].slice(0);
H A DTest.js231 InspectorTest.addResult(logType.toUpperCase() + ": " + Array.prototype.slice.call(arguments).toString());
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DProbeSet.js69 return this._probes.slice();
/macosx-10.10.1/llvmCore-3425.0.34/lib/Support/
H A DRegex.cpp150 StringRef Ref = Repl.slice(0, Repl.find_first_not_of("0123456789"));
/macosx-10.10.1/ruby-106/ruby/ext/ripper/lib/ripper/
H A Dlexer.rb78 # p Ripper.slice('def m(a) nil end', 'ident') #=> "m"
79 # p Ripper.slice('def m(a) nil end', '[ident lparen rparen]+') #=> "m(a)"
80 # p Ripper.slice("<<EOS\nstring\nEOS",
84 def Ripper.slice(src, pattern, n = 0) singleton method in class:Ripper
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Protocol/
H A DInspectorBackend.js386 var promiseArguments = Array.prototype.slice.call(arguments);
409 var commandArguments = Array.prototype.slice.call(arguments);
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-Quartz/PyObjCTest/
H A Dtest_cggeometry.py128 slice, remainder = CGRectDivide(rect, None, None, 10, CGRectMinYEdge)
129 self.failUnlessIsInstance(slice, CGRect)
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-Quartz/PyObjCTest/
H A Dtest_cggeometry.py128 slice, remainder = CGRectDivide(rect, None, None, 10, CGRectMinYEdge)
129 self.assertIsInstance(slice, CGRect)

Completed in 387 milliseconds

12345678