Searched refs:start (Results 76 - 100 of 4398) sorted by relevance

1234567891011>>

/macosx-10.10/ruby-106/ruby/sample/webrick/
H A Ddemo-urlencoded.cgi12 cgi.start
H A Dhello.cgi11 HelloCGI.new.start
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/smtpd/clients/
H A Dmail-test.rb14 Net::SMTP.start('localhost', 25) do |smtp|
/macosx-10.10/tcl-105/tcl_ext/tclxml/tclxml/win/
H A Dinstall.bat4 start wish83 ../install.tcl -builddir %BUILD% %1 %2 %3 %4 %5 %6 %7 %8 %9
/macosx-10.10/tcl-105/tcl_ext/tclxml/tclxslt/win/
H A Dinstall.bat4 start wish83 ../install.tcl -builddir %BUILD% %1 %2 %3 %4 %5 %6 %7 %8 %9
/macosx-10.10/xnu-2782.1.97/iokit/Families/IONVRAM/
H A DIONVRAMController.cpp41 bool IONVRAMController::start(IOService *provider) function in class:IONVRAMController
43 if(!super::start(provider)) return false;
/macosx-10.10/WebCore-7600.1.25/html/track/
H A DDataCue.h47 static PassRefPtr<DataCue> create(ScriptExecutionContext& context, double start, double end, ArrayBuffer* data, ExceptionCode& ec) argument
49 return adoptRef(new DataCue(context, start, end, data, emptyString(), ec));
52 static PassRefPtr<DataCue> create(ScriptExecutionContext& context, double start, double end, const void* data, unsigned length) argument
54 return adoptRef(new DataCue(context, start, end, data, length));
57 static PassRefPtr<DataCue> create(ScriptExecutionContext& context, double start, double end, ArrayBuffer* data, const String& type, ExceptionCode& ec) argument
59 return adoptRef(new DataCue(context, start, end, data, type, ec));
63 static PassRefPtr<DataCue> create(ScriptExecutionContext& context, double start, double end, PassRefPtr<SerializedPlatformRepresentation> platformValue, const String& type) argument
65 return adoptRef(new DataCue(context, start, end, platformValue, type));
68 static PassRefPtr<DataCue> create(ScriptExecutionContext& context, double start, double end, JSC::JSValue value, const String& type) argument
70 return adoptRef(new DataCue(context, start, en
[all...]
/macosx-10.10/groff-38/groff/src/preproc/refer/
H A Dref.cpp28 static int find_month(const char *start, const char *end);
54 reference::reference(const char *start, int len, reference_id *ridp) argument
63 if (start == 0)
67 const char *end = start + len;
68 const char *ptr = start;
495 const char *start = str.contents(); local
496 const char *end = start + str.length();
497 for (int i = 0; i < n && start < end; i++) {
498 const char *p = start;
499 while (start < en
546 find_last_name(const char *start, const char *end, const char **endp) argument
724 uppercase(const char *start, const char *end, string &result) argument
735 lowercase(const char *start, const char *end, string &result) argument
750 const char *start = ptr; local
883 find_year(const char *start, const char *end, const char **endp) argument
904 find_day(const char *start, const char *end, const char **endp) argument
929 find_month(const char *start, const char *end) argument
995 const char *start = date.contents(); local
1007 const char *start = f.contents(); local
1020 nth_field(int i, const char *start, const char **endp) argument
1037 const char *start = get_field(*f, endp); local
1053 const char *start = get_field(*f, endp); local
1116 const char *start = sort_key.contents(); local
[all...]
H A Dtoken.h39 void lower_case(const char *start, const char *end, string &result) const;
40 void upper_case(const char *start, const char *end, string &result) const;
41 void sortify(const char *start, const char *end, string &result) const;
42 int sortify_non_empty(const char *start, const char *end) const;
88 const token_info *lookup_token(const char *start, const char *end);
/macosx-10.10/vim-55/runtime/syntax/
H A Dmysql.vim54 syn region mysqlString start=+"+ skip=+\\\\\|\\"+ end=+"+
55 syn region mysqlString start=+'+ skip=+\\\\\|\\'+ end=+'+
68 syn region mysqlComment start="/\*" end="\*/"
93 syn region mysqlType start="float\W" end="."me=s-1
94 syn region mysqlType start="float$" end="."me=s-1
95 syn region mysqlType start="float(" end=")" contains=mysqlNumber,mysqlVariable
96 syn region mysqlType start="double\W" end="."me=s-1
97 syn region mysqlType start="double$" end="."me=s-1
98 syn region mysqlType start="double(" end=")" contains=mysqlNumber,mysqlVariable
99 syn region mysqlType start
[all...]
/macosx-10.10/ICU-531.30/icuSources/samples/translit/answers/
H A Dunaccent.cpp45 while (index.start < index.limit) {
46 UChar c = text.charAt(index.start);
50 text.handleReplaceBetween(index.start, index.start+1, str);
52 index.start++;
/macosx-10.10/ICU-531.30/icuSources/samples/translit/
H A Dunaccent.cpp47 while (index.start < index.limit) {
48 UChar c = text.charAt(index.start);
52 text.handleReplaceBetween(index.start, index.start+1, str);
54 index.start++;
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DSimpleLineLayout.h47 Run(unsigned start, float left) argument
48 : start(start)
49 , end(start)
55 unsigned start; member in struct:WebCore::SimpleLineLayout::Run
/macosx-10.10/emacs-93/emacs/lisp/
H A Dtabify.el33 (defun untabify (start end)
42 (goto-char start)
59 (defun tabify (start end)
71 (goto-char start)
74 (goto-char start)
H A Djit-lock.el316 (defun jit-lock-function (start)
323 (jit-lock-fontify-now start (+ start jit-lock-chunk-size))
330 (put-text-property start
332 start 'fontified nil
333 (min (point-max) (+ start jit-lock-chunk-size)))
336 (defun jit-lock-fontify-now (&optional start end)
341 (unless start (setq start (point-min)))
348 ;; from the end of a buffer to its start, ca
[all...]
/macosx-10.10/ncurses-44/ncurses/ncurses/base/
H A Dlib_hline.c49 NCURSES_SIZE_T start; local
58 start = win->_curx;
59 end = start + n - 1;
63 CHANGED_RANGE(line, start, end);
71 while (end >= start) {
/macosx-10.10/ncurses-44/ncurses/ncurses/widechar/
H A Dlib_hline_set.c48 NCURSES_SIZE_T start; local
57 start = win->_curx;
58 end = start + n - 1;
62 CHANGED_RANGE(line, start, end);
70 while (end >= start) {
/macosx-10.10/ICU-531.30/icuSources/test/cintltst/
H A Dtrietest.c39 UChar32 start, limit; member in struct:SetRange
56 _testFoldedValue32(UNewTrie *trie, UChar32 start, int32_t offset) { argument
63 limit=start+0x400;
64 while(start<limit) {
65 value=utrie_get32(trie, start, &inBlockZero);
67 start+=UTRIE_DATA_BLOCK_LENGTH;
70 ++start;
87 _testFoldedValue16(UNewTrie *trie, UChar32 start, int32_t offset) { argument
94 limit=start+0x400;
95 while(start<limi
127 _testEnumRange(const void *context, UChar32 start, UChar32 limit, uint32_t value) argument
265 UChar32 start, limit; local
459 UChar32 start, limit; local
[all...]
/macosx-10.10/ICU-531.30/icuSources/tools/ctestfw/unicode/
H A Dutimer.h78 * UTimer start;
107 * utimer_getTime(&start);
119 * return utimer_getElapsedSeconds(&start);
136 * UTimer start,timer1, timer2, timer3, timer4;
140 * utimer_getTime(start);
142 * NFDTimeTaken = utimer_getDeltaSeconds(start,timer1);
144 * timer_getTime(start);
146 * NFCTimeTaken = utimer_getDeltaSeconds(start,timer2);
166 LARGE_INTEGER start; member in struct:UTimer
176 QueryPerformanceCounter(&timer->start);
188 struct timeval start; member in struct:UTimer
[all...]
/macosx-10.10/cups-408/cups/filter/
H A Derror.c31 char *start, /* Start of buffer */ member in struct:_cups_raster_error_s
81 size = (size_t)(buf->end - buf->start + 2 * bytes + 1024);
83 if (buf->start)
84 temp = realloc(buf->start, size);
96 buf->current = temp + (buf->current - buf->start);
97 buf->start = temp;
120 buf->current = buf->start;
122 if (buf->start)
123 *(buf->start) = '\0';
142 if (buf->current == buf->start)
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/uri/
H A Durn-scheme.tcl85 # Before Tcl 8.3 we do not have 'regexp -start'. We simulate it by
90 set start 0
91 while {[regexp -indices {%[0-9a-fA-F]{2}} [string range $url $start end] match]} {
93 incr first $start ; # Make the indices relative to the true string.
94 incr last $start ; # I.e. undo the effect of the 'string range' on match results.
95 append result [string range $url $start [expr {$first - 1}]]
97 set start [incr last]
99 append result [string range $url $start end]
105 set start 0
106 while {[regexp -start
[all...]
/macosx-10.10/IOPCIFamily-239.1.2/tools/
H A Dpcirange.cpp15 IOPCIScalar start; member in struct:IOPCIRange
46 IOPCIScalar start, IOPCIScalar size, IOPCIScalar alignment = 0)
49 range->start = start;
51 range->end = start + size;
59 IOPCIScalar start,
70 end = start + size;
73 if (((start >= range->start) && (start < rang
45 pciRangeInit(IOPCIRange * range, IOPCIScalar start, IOPCIScalar size, IOPCIScalar alignment = 0) argument
58 pciRangeListAddRange(IOPCIRange ** rangeList, IOPCIScalar start, IOPCIScalar size, IOPCIScalar alignment) argument
[all...]
/macosx-10.10/ntp-92/libopts/compat/
H A Dpathfind.c208 int i, start; local
222 start = i++;
227 if (!result[start])
235 if ((start + 1) != i)
237 if ((start + 1) != i && (start != 0 || i != 2))
240 strcpy( result + start + 1, result + i );
241 i = start + 1;
245 if (start > 0 && result[start
[all...]
/macosx-10.10/ntp-92/sntp/libopts/compat/
H A Dpathfind.c208 int i, start; local
222 start = i++;
227 if (!result[start])
235 if ((start + 1) != i)
237 if ((start + 1) != i && (start != 0 || i != 2))
240 strcpy( result + start + 1, result + i );
241 i = start + 1;
245 if (start > 0 && result[start
[all...]
/macosx-10.10/text_cmds-88/colrm/
H A Dcolrm.c68 u_long column, start, stop; local
83 start = stop = 0;
91 if(argv[0]) start = strtol(argv[0], &p, 10);
92 if (start <= 0 || *p)
101 if (stop && start > stop)
102 errx(1, "illegal start and stop columns");
125 if ((!start || column < start || (stop && column > stop)) &&
143 (void)fprintf(stderr, "usage: colrm [start [stop]]\n");

Completed in 274 milliseconds

1234567891011>>