Searched refs:slice (Results 1 - 25 of 200) sorted by relevance

12345678

/macosx-10.10.1/tcl-105/tcl_ext/tklib/tklib/modules/tkpiechart/
H A Dpie.tcl76 # size is first converted to pixels, then 1 pixel is subtracted since slice size
111 set slice [::stooop::new slice\
117 $canvas addtag pie($this) withtag slice($slice)
118 $canvas addtag pieSlices($this) withtag slice($slice)
119 set ($this,backgroundSlice) $slice
138 # calculate start radian for new slice
141 foreach slice
[all...]
H A Dperilabel.tcl62 proc new {this slice args} {
81 ::set ($this,slice,$label) $slice
100 position $this $text $($this,slice,$label)
128 proc position {this text slice} {
130 # corresponding slice
133 # retrieve current slice position and dimensions
134 slice::data $slice data
165 ($this,textItem,$label) ($this,slice,
[all...]
H A Dslice.tcl7 ::stooop::class slice {
11 proc slice::slice {this canvas xRadius yRadius args} switched {$args} {
13 # note: all slice elements are tagged with slice($this)
23 proc slice::~slice {this} {
28 $($this,canvas) delete slice($this)
31 proc slice::options {this} {
42 proc slice
[all...]
/macosx-10.10.1/bless-103/test/
H A Dtestgetparentdev.c46 unsigned long slice = 0; local
59 &slice,
65 printf("Slice: %lu\n", slice);
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/stress/
H A Darguments-copy-register-array-backing-store.js6 var a = Array.prototype.slice.call(arguments);
14 var expectedArgs = Array.prototype.slice.call(args);
H A Ddfg-create-arguments-inline-alloc.js2 var a = Array.prototype.slice.call(arguments);
/macosx-10.10.1/Libc-1044.1.2/util/
H A Dopendev.c83 char *slice; local
84 while ((slice = strrchr(namebuf, 's')) &&
85 isdigit(*(slice-1))) *slice = '\0';
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/Lib/Foundation/
H A D_nsindexset.py8 if isinstance(idx, slice):
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/Lib/Foundation/
H A D_nsindexset.py8 if isinstance(idx, slice):
/macosx-10.10.1/ruby-106/ruby/ext/tk/lib/tkextlib/tcllib/
H A Dtkpiechart.rb119 def _entry_slice(slice)
120 @slice_tbl[slice.to_eval] = slice
122 def _delete_slice(slice)
123 @slice_tbl.delete(slice.to_eval)
138 def delete_slice(slice)
139 unless slice.kind_of?(Slice)
140 unless (slice = @slice_tbl[slice])
141 return tk_call_without_enc('pie::deleteSlice', @tag_key, slice)
[all...]
/macosx-10.10.1/CPANInternal-159.1/Class-DBI-v3.0.17/lib/Class/DBI/
H A DIterator.pm16 my @slice = $it->slice(10,19);
17 my $slice = $it->slice(10,19);
89 sub slice { subroutine
99 my $slice = $self->new($self->class, \@return, $self->mapper,);
100 return $slice;
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Support/
H A DGCOV.h48 StringRef Magic = Buffer->getBuffer().slice(0, 12);
66 StringRef Tag = Buffer->getBuffer().slice(Cursor, Cursor+4);
79 StringRef Tag = Buffer->getBuffer().slice(Cursor, Cursor+4);
92 StringRef Tag = Buffer->getBuffer().slice(Cursor, Cursor+4);
105 StringRef Tag = Buffer->getBuffer().slice(Cursor, Cursor+4);
118 StringRef Tag = Buffer->getBuffer().slice(Cursor, Cursor+4);
130 StringRef Str = Buffer->getBuffer().slice(Cursor, Cursor+4);
146 StringRef Str = Buffer->getBuffer().slice(Cursor, Cursor+Len);
/macosx-10.10.1/ruby-106/ruby/test/uri/
H A Dtest_common.rb36 assert_equal 'http://', 'x http:// x'.slice(URI.regexp)
37 assert_equal 'http://', 'x http:// x'.slice(URI.regexp(['http']))
38 assert_equal 'http://', 'x http:// x ftp://'.slice(URI.regexp(['http']))
39 assert_equal nil, 'http://'.slice(URI.regexp([]))
40 assert_equal nil, ''.slice(URI.regexp)
41 assert_equal nil, 'xxxx'.slice(URI.regexp)
42 assert_equal nil, ':'.slice(URI.regexp)
43 assert_equal 'From:', 'From:'.slice(URI.regexp)
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/Lib/Foundation/
H A D_nsindexset.py8 if isinstance(idx, slice):
/macosx-10.10.1/libstdcxx-104.1/include/c++/4.2.1/bits/
H A Dslice_array.h48 * 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
92 slice::slice(size_t __o, size_t __d, size_t __s) function in class:slice
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/tk/lib/tkextlib/vu/
H A Dpie.rb66 def explode(slice, *args)
67 tk_call(@path, 'explode', slice, *args)
71 def explode_value(slice)
72 num_or_str(tk_call(@path, 'explode', slice))
75 def lower(slice, below=None)
76 tk_call(@path, 'lower', slice, below)
90 def raise(slice, above=None)
91 tk_call(@path, 'raise', slice, above)
100 def set(slice, *args)
101 num_or_str(tk_call(@path, 'set', slice, *arg
[all...]
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_globals.py48 slice, rem = Foundation.NSDivideRect(rect1, None, None, 0.5, Foundation.NSMinXEdge)
49 self.assertEquals(slice, ((1.0, 2.0), (0.5, 4.0)))
52 slice, rem = Foundation.NSDivideRect(rect1, None, None, 0.5, Foundation.NSMinYEdge)
53 self.assertEquals(slice, ((1.0, 2.0), (3.0, 0.5)))
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_globals.py48 slice, rem = Foundation.NSDivideRect(rect1, None, None, 0.5, Foundation.NSMinXEdge)
49 self.assertEqual(slice, ((1.0, 2.0), (0.5, 4.0)))
52 slice, rem = Foundation.NSDivideRect(rect1, None, None, 0.5, Foundation.NSMinYEdge)
53 self.assertEqual(slice, ((1.0, 2.0), (3.0, 0.5)))
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/PyObjCTest/
H A Dtest_globals.py60 slice, rem = Foundation.NSDivideRect(rect1, None, None, 0.5, Foundation.NSMinXEdge)
61 self.assertEqual(slice, ((1.0, 2.0), (0.5, 4.0)))
64 slice, rem = Foundation.NSDivideRect(rect1, None, None, 0.5, Foundation.NSMinYEdge)
65 self.assertEqual(slice, ((1.0, 2.0), (3.0, 0.5)))
/macosx-10.10.1/ruby-106/ruby/benchmark/
H A Dbm_so_reverse_complement.rb13 0.step(stringlen-1,60) {|x| print seq.slice(x,60) , "\n"}
/macosx-10.10.1/ruby-106/ruby/lib/rubygems/
H A Dtext.rb19 work.slice!(0, $&.length)
21 result << work.slice!(0, wrap)
/macosx-10.10.1/ruby-106/ruby/lib/rexml/parsers/
H A Dpullparser.rb100 @contents.slice( start.begin+1 .. start.end )
103 @contents.slice( start+1 )
105 @contents.slice( start+1, endd )
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/js1_2/Array/
H A Dgeneral2.js59 array3 = array1.slice(1,i);
72 testcases[count++] = new TestCase( SECTION, "Array.push,pop,shift,unshift,slice,splice", true,String(array1) == String(array2));
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/External/CodeMirror/
H A Dcomment.js60 var baseString = firstLine.slice(0, firstNonWS(firstLine));
64 if (line.slice(0, cut) != baseString) cut = firstNonWS(line);
124 if (found > -1 && nonWS.test(line.slice(0, found))) break lineComment;
132 if (line.slice(endPos, endPos + pad.length) == pad) endPos += pad.length;
157 self.replaceRange("", Pos(end, close - (pad && endLine.slice(close - pad.length, close) == pad ? pad.length : 0)),
160 if (pad && startLine.slice(openEnd, openEnd + pad.length) == pad) openEnd += pad.length;
164 if (found == -1 || nonWS.test(line.slice(0, found))) continue;
166 if (pad && line.slice(foundEnd, foundEnd + pad.length) == pad) foundEnd += pad.length;
H A Dsearchcursor.js31 var line = doc.getLine(pos.line).slice(0, pos.ch), cutOff = 0, match, start;
74 var orig = doc.getLine(pos.line).slice(0, pos.ch), line = fold(orig);
81 var orig = doc.getLine(pos.line).slice(pos.ch), line = fold(orig);
96 if (fold(doc.getLine(pos.line).slice(0, origTarget[last].length)) != target[target.length - 1]) return;
101 if (fold(line.slice(cut)) != target[0]) return;
106 if (fold(line.slice(cut)) != target[0]) return;
110 if (doc.getLine(ln).slice(0, origTarget[last].length) != target[last]) return;
165 var len1 = orig.slice(0, pos1).toLowerCase().length;

Completed in 196 milliseconds

12345678