Searched refs:range (Results 251 - 275 of 1504) sorted by relevance

<<11121314151617181920>>

/macosx-10.10/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Modules/objc/
H A DOC_PythonArray.h96 * @abstract Fetch objects in the specified range
98 * requested objects, the range must be valid.
105 * @param range The range of objects to fetch.
107 -(void)getObjects:(id*)buffer inRange:(NSRange)range;
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/Examples/OpenGL/OpenGLDemo/
H A DOpenGLDemo.py20 ClearColors = redIndex, greenIndex, blueIndex, alphaIndex = range(4)
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/PyObjCTest/
H A Dtest_cfbitvector.py12 for i in range(7, -1, -1):
57 for i in range(8):
95 for i in range(5):
98 for i in range(5):
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Quartz-2.5.1/Examples/PathDemo/
H A DDemoView.py72 for k in range(20):
85 for k in range(20):
111 for k in range(20):
116 for j in range(numberOfSegments):
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Quartz-2.5.1/Examples/Programming with Quartz/CocoaDrawingShell/
H A DMyView.py20 for i in range(numRects):
/macosx-10.10/smb-759.0/lib/smb/
H A Dcharsets.c209 CFRange range; local
228 range.location = 0;
229 range.length = maxlen;
230 CFStringGetCharacters(s, range, result);
/macosx-10.10/tcl-105/tcl84/tcl/library/
H A DldAout.tcl94 lappend libdirs [string range $a 2 end]
110 set lname [string range $lib 2 end]
142 set modName [string range $modName 3 end]
145 set modName [string range $modName 0 [expr {[string length $modName]-[string length $match]-1}]]
/macosx-10.10/tcl-105/tcl_ext/memchan/memchan/generic/
H A DbufRange.c4 * Implementations of a range into a buffer.
35 int size; /* The size of the range. */
42 static Buf_BufferType range = { variable
45 NULL, /* Writing to a range not allowed */
188 Buf_Buffer new = Buf_Create (&range, (ClientData) newBuf);
254 /* Check for a range as underlying buffer and use its original
255 * as our base. The location is computed relative to the range
264 /* Not enough data in the buffer for the range */
269 new = Buf_Create (&range, (ClientData) newBuf);
272 if (Buf_GetType (buf) == &range) {
[all...]
/macosx-10.10/tcl-105/tcl_ext/mk4tcl/metakit/examples/
H A Dselfref.py26 for i in range(3):
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/examples/ftp/
H A Dmirror.tcl25 set type [string range $perm 0 0]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/base32/
H A Dbase32core.tcl45 set b [string range $b 0 end-1]
51 set b [string range $b 0 end-1]
57 set b [string range $b 0 end-1]
63 set b [string range $b 0 end-1]
104 set badp "=\[[string range $pattern 3 end-1]\]"
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/doctools/
H A Dchangelog.tcl65 set date [string trim [string range $line 0 $pos]]
66 set author [string trim [string range $line $pos end]]
86 set line [string range $line [string length $full] end]
92 set line [string range $line 2 end] ; # Get rid of "* ".
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/textutil/
H A Dtrim.tcl53 return [string range $text [string length $prefix] end]
/macosx-10.10/tcl-105/tcl_ext/tclvfs/tclvfs/library/
H A DvfsUrl.tcl56 set newRelative [string range $wholepath [string length $newRoot] end]
58 set newRelative [string range $newRelative 1 end]
113 if {[string equal [string range $m 0 [expr {$len -1}]] $root]} {
114 set rest [string range $m $len end]
/macosx-10.10/xnu-2782.1.97/libkern/kxld/tests/
H A Dloadtest.py50 for i in range(20):
/macosx-10.10/xnu-2782.1.97/osfmk/i386/
H A Dpanic_hooks.c171 panic_phys_range_t *range)
198 range->type = closest->Type;
199 range->phys_start = closest->PhysicalStart;
200 range->len = closest->NumberOfPages * PAGE_SIZE;
170 panic_phys_range_before(const void *addr, uint64_t *pphys, panic_phys_range_t *range) argument
/macosx-10.10/ICU-531.30/icuSources/test/intltest/
H A Ducdtest.cpp243 int32_t rangeCount, range; local
250 for(range=0; range<rangeCount && numErrors[i]<MAX_ERRORS; ++range) {
251 start=derivedProps[i].getRangeStart(range);
252 end=derivedProps[i].getRangeEnd(range);
273 for(range=0; range<rangeCount && numErrors[i]<MAX_ERRORS; ++range) {
274 start=derivedProps[i].getRangeStart(range);
[all...]
/macosx-10.10/apache-793/httpd/docs/manual/style/scripts/
H A Dprettify.js334 // If the range might intersect letters, then expand it.
355 var range = ranges[i];
356 if (range[0] <= lastRange[1] + 1) {
357 lastRange[1] = Math.max(lastRange[1], range[1]);
359 consolidatedRanges.push(lastRange = range);
364 var range = consolidatedRanges[i];
365 out.push(encodeEscape(range[0]));
366 if (range[1] > range[0]) {
367 if (range[
[all...]
H A Dprettify.min.js18 ranges.sort(function(a,b){return(a[0]-b[0])||(b[1]-a[1]);});var consolidatedRanges=[];var lastRange=[];for(var i=0;i<ranges.length;++i){var range=ranges[i];if(range[0]<=lastRange[1]+1){lastRange[1]=Math.max(lastRange[1],range[1]);}else{consolidatedRanges.push(lastRange=range);}}
19 for(var i=0;i<consolidatedRanges.length;++i){var range=consolidatedRanges[i];out.push(encodeEscape(range[0]));if(range[1]>range[0]){if(range[1]+1>range[
[all...]
/macosx-10.10/apache-793/httpd/modules/http/
H A Dbyterange_filter.c84 const char *range; local
114 if (!(range = apr_table_get(r->headers_in, "Range"))) {
115 range = apr_table_get(r->headers_in, "Request-Range");
118 if (!range || strncasecmp(range, "bytes=", 6) || r->status != HTTP_OK) {
122 /* is content already a single range? */
127 /* is content already a multiple range? */
141 range += 6;
142 it = range;
148 it = range;
[all...]
/macosx-10.10/ruby-106/ruby/lib/webrick/httpservlet/
H A Dfilehandler.rb52 elsif req['range']
65 if ir = req['if-range']
91 unless ranges = HTTPUtils::parse_range_header(req['range'])
93 "Unrecognized range-spec: \"#{req['range']}\""
100 ranges.each{|range|
101 first, last = prepare_range(range, filesize)
116 elsif range = ranges[0]
117 first, last = prepare_range(range, filesize)
127 res['content-range']
[all...]
/macosx-10.10/objc4-646/runtime/
H A Dobjc-sel-set.mm43 #define CONSTRAIN(val, range) ((val) & ((range)-1))
61 #define CONSTRAIN(val, range) ((val) % (range))
/macosx-10.10/WebCore-7600.1.25/css/
H A DCSSPropertySourceData.h55 CSSPropertySourceData(const String& name, const String& value, bool important, bool parsedOk, const SourceRange& range);
66 SourceRange range; member in struct:WebCore::CSSPropertySourceData
/macosx-10.10/WebCore-7600.1.25/editing/mac/
H A DEditorMac.mm87 RefPtr<Range> range = selectedRange();
93 RefPtr<DocumentFragment> fragment = webContentFromPasteboard(*pasteboard, *range, allowPlainText, chosePlainText);
95 if (fragment && shouldInsertFragment(fragment, range, EditorInsertActionPasted))
128 RefPtr<Range> range = m_frame.selection().toNormalizedRange();
130 if (range && startNode) {
131 Node* pastEnd = range->pastLastNode();
272 RefPtr<Range> range = Range::create(node->document(), Position(node, Position::PositionIsBeforeAnchor), Position(node, Position::PositionIsAfterAnchor));
273 m_frame.selection().setSelection(VisibleSelection(range.get()), FrameSelection::DoNotSetFocus);
286 if (RefPtr<DocumentFragment> fragment = webContentFromPasteboard(pasteboard, *range, true, chosePlainText)) {
288 if (shouldInsertFragment(fragment, range, EditorInsertActionPaste
[all...]
/macosx-10.10/WebCore-7600.1.25/editing/
H A Dmarkup.cpp170 inline StyledMarkupAccumulator::StyledMarkupAccumulator(Vector<Node*>* nodes, EAbsoluteURLs shouldResolveURLs, EAnnotateForInterchange shouldAnnotate, const Range* range, bool needsPositionStyleConversion, Node* highestNodeToBeSerialized) argument
171 : MarkupAccumulator(nodes, shouldResolveURLs, range)
263 String StyledMarkupAccumulator::renderedText(const Node& node, const Range* range) argument
273 if (range && &node == range->startContainer())
274 startOffset = range->startOffset();
275 if (range && &node == range->endContainer())
276 endOffset = range->endOffset();
277 else if (range)
285 stringValueForRange(const Node& node, const Range* range) argument
511 highestAncestorToWrapMarkup(const Range* range, EAnnotateForInterchange shouldAnnotate) argument
558 createMarkupInternal(Document& document, const Range& range, const Range& updatedRange, Vector<Node*>* nodes, EAnnotateForInterchange shouldAnnotate, bool convertBlocksToInlines, EAbsoluteURLs shouldResolveURLs) argument
651 createMarkup(const Range& range, Vector<Node*>* nodes, EAnnotateForInterchange shouldAnnotate, bool convertBlocksToInlines, EAbsoluteURLs shouldResolveURLs) argument
848 createFullMarkup(const Range& range) argument
[all...]

Completed in 332 milliseconds

<<11121314151617181920>>