Searched refs:start (Results 176 - 200 of 4477) sorted by relevance

1234567891011>>

/macosx-10.9.5/emacs-92/emacs/src/
H A Dcomposite.c397 POS, set *START and *END to the start and end of the sequence,
411 find_composition (pos, limit, start, end, prop, object)
412 int pos, limit, *start, *end;
417 if (get_property_and_range (pos, Qcomposition, prop, start, end, object))
433 if (get_property_and_range (pos - 1, Qcomposition, prop, start, end,
443 get_property_and_range (pos, Qcomposition, prop, start, end, object);
456 int start, end;
462 && find_composition (from - 1, -1, &start, &end, &prop, Qnil)
463 && !COMPOSITION_VALID_P (start, end, prop))
464 from = start;
454 int start, end; local
486 int start, end; local
605 Lisp_Object start, end, components, modification_func; variable
626 Lisp_Object string, start, end, components, modification_func; variable
629 CHECK_NUMBER (start); variable
651 int start, end; variable
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/
H A Dpgg.el50 (defmacro pgg-save-coding-system (start end &rest body)
55 (insert-buffer-substring buffer ,start ,end)
62 (narrow-to-region ,start ,end)
73 (defun pgg-display-output-buffer (start end status)
79 (pgg-situate-output start end)
82 (defun pgg-situate-output (start end)
84 (delete-region start end)
86 (decode-coding-region start (point) buffer-file-coding-system))
185 (itimer-driver-start 'itimer-driver-start)
[all...]
/macosx-10.9.5/groff-38/groff/src/preproc/refer/
H A Dtoken.cpp94 void token_info::sortify(const char *start, const char *end, string &result) argument
100 for (; start < end; start++)
101 if (csalpha(*start))
102 result += cmlower(*start);
106 int token_info::sortify_non_empty(const char *start, const char *end) const argument
112 for (; start < end; start++)
113 if (csalpha(*start))
119 void token_info::lower_case(const char *start, cons argument
134 upper_case(const char *start, const char *end, string &result) const argument
178 lookup_token(const char *start, const char *end) argument
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tdom/tdom/generic/
H A Ddomhtml.c724 register char *x, *start, *piSep; local
742 start = x;
769 tnode->valueLength = (x - start);
770 tnode->nodeValue = (char*)MALLOC((x - start)+1);
771 memmove(tnode->nodeValue, start, (x - start));
772 *(tnode->nodeValue + (x - start)) = 0;
798 RetError("Missing \">\"",(start-html) );
800 if ( (x-start)==2) {
801 RetError("Null markup name",(start
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/emacs-lisp/
H A Dsregex.el554 (defun sregex--char-range (start end)
555 (let ((startc (char-to-string start))
558 ((> end (+ start 2)) (concat startc "-" endc))
559 ((> end (+ start 1)) (concat startc (char-to-string (1+ start)) endc))
560 ((> end start) (concat startc endc))
570 (let ((start (car arg))
572 (when (> start end)
573 (let ((tmp start)) (setq start en
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/mail/
H A Dundigest.el58 returns a list of cons pairs containing the start and end positions of
72 (let ((start (make-marker))
77 (move-marker start (match-beginning 0))
79 (add-to-list 'result (cons (copy-marker start) (copy-marker end t))))
103 (let ((start (make-marker))
106 (move-marker start (match-beginning 0))
108 (setq result (cons (copy-marker start) (copy-marker end t)))
117 (move-marker start (match-beginning 0))
120 (cons (copy-marker start) (copy-marker end t))))
133 (let ((start (mak
[all...]
/macosx-10.9.5/libxml2-26/libxml2/
H A DgenUnicode.py58 (start, end) = string.split(range, "..")
64 start = "0x" + start variable
67 BlockNames[name].append((start, end))
69 BlockNames[name] = [(start, end)]
155 start = -1 variable
160 if start == -1:
161 start = val variable
167 elif prev == start:
169 start variable
174 start = val variable
426 start = 1 variable
431 start = 0 variable
[all...]
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/libxml2-src/
H A DgenUnicode.py58 (start, end) = string.split(range, "..")
64 start = "0x" + start variable
67 BlockNames[name].append((start, end))
69 BlockNames[name] = [(start, end)]
155 start = -1 variable
160 if start == -1:
161 start = val variable
167 elif prev == start:
169 start variable
174 start = val variable
426 start = 1 variable
431 start = 0 variable
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/test/
H A Drep025.tcl120 set start 0
121 eval rep_test $method $masterenv NULL $niter $start $start 0 0 $largs
122 incr start $niter
139 $method $masterenv NULL $niter $start $start 0 0 $largs
140 incr start $niter
168 eval rep_test $method $masterenv NULL $entries $start $start 0 0 $largs
169 incr start
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/test/intltest/
H A Dtzrulets.h43 void verifyTransitions(BasicTimeZone& icutz, UDate start, UDate end);
45 UDate start, UDate end, UBool inclusive);
47 UDate start, UDate end, UBool inclusive);
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DRegExpMatchesArray.cpp81 int position = m_regExp->match(exec->vm(), m_input->value(exec), m_result.start, subpatternResults);
82 ASSERT_UNUSED(position, position >= 0 && static_cast<size_t>(position) == m_result.start);
83 ASSERT(m_result.start == static_cast<size_t>(subpatternResults[0]));
87 int start = subpatternResults[2 * i]; local
88 if (start >= 0)
89 putDirectIndex(exec, i, jsSubstring(exec, m_input.get(), start, subpatternResults[2 * i + 1] - start));
96 JSArray::put(this, exec, exec->propertyNames().index, jsNumber(m_result.start), slot);
106 putDirectIndex(exec, 0, jsSubstring(exec, m_input.get(), m_result.start, m_result.end - m_result.start));
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/libraries/liblunicode/ucdata/
H A Ducpgba.h81 unsigned long start; /* Beginning offset in the source string. */ member in struct:_ucrun_t
103 unsigned long start; /* The beginning offset in the source. */ member in struct:_ucstring_t
121 unsigned long start,
/macosx-10.9.5/WebCore-7537.78.1/platform/blackberry/
H A DSharedTimerBlackBerry.cpp33 void start(double);
58 void SharedTimerBlackBerry::start(double interval) function in class:WebCore::SharedTimerBlackBerry
79 SharedTimerBlackBerry::instance()->start(interval);
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGTransformList.cpp79 const UChar* start = transform.characters(); local
80 if (!SVGTransformable::parseTransformAttribute(*this, start, start + transform.length()))
H A DSVGZoomAndPan.cpp43 bool SVGZoomAndPan::parseZoomAndPan(const UChar*& start, const UChar* end, SVGZoomAndPanType& zoomAndPan) argument
45 if (skipString(start, end, disable, WTF_ARRAY_LENGTH(disable))) {
49 if (skipString(start, end, magnify, WTF_ARRAY_LENGTH(magnify))) {
/macosx-10.9.5/apache-786.1/httpd/srclib/apr-util/buckets/
H A Dapr_buckets_refcount.c52 apr_off_t start,
58 b->start = start;
51 apr_bucket_shared_make(apr_bucket *b, void *data, apr_off_t start, apr_size_t length) argument
/macosx-10.9.5/apr-30/apr-util/apr-util/buckets/
H A Dapr_buckets_refcount.c52 apr_off_t start,
58 b->start = start;
51 apr_bucket_shared_make(apr_bucket *b, void *data, apr_off_t start, apr_size_t length) argument
/macosx-10.9.5/bash-92/bash-3.2/
H A Dbracecomp.c66 int start, end, gcd; local
82 for (start = real_start; start < real_end; start = end + 1)
84 gcd = strlen (array[start]);
85 for (end = start + 1; end < real_end; end++)
89 temp = string_gcd (array[start], array[end]);
98 if (gcd_zero == 0 && start == real_start && end != (real_end - 1))
111 if (start == end)
113 x = savestring (array[start]
[all...]
/macosx-10.9.5/cups-372.4/cups/vcnet/regex/
H A Dengine.ih8 static char *dissect(register struct match *m, char *start, char *stop, sopno startst, sopno stopst);
9 static char *backref(register struct match *m, char *start, char *stop, sopno startst, sopno stopst, sopno lev);
10 static char *fast(register struct match *m, char *start, char *stop, sopno startst, sopno stopst);
11 static char *slow(register struct match *m, char *start, char *stop, sopno startst, sopno stopst);
12 static states step(register struct re_guts *g, sopno start, sopno stop, register states bef, int ch, register states aft);
26 static void at(struct match *m, char *title, char *start, char *stop, sopno startst, sopno stopst);
/macosx-10.9.5/dtrace-118.1/test/tst/common/buffering/
H A Dtst.cputime.ksh40 start = timestamp;
76 /((total * 100) / (timestamp - start)) > thresh/
79 \$\$1, ((total * 100) / (timestamp - start)));
/macosx-10.9.5/libiconv-41/libiconv/extras/
H A Diconv_string.c14 const char* start, const char* end,
29 ret = iconv_string(tocode,"UTF-8",start,end,resultp,lengthp);
32 ret = iconv_string(tocode,"ISO-8859-1",start,end,resultp,lengthp);
39 ret = iconv_string(tocode,"ISO-2022-JP-2",start,end,resultp,lengthp);
47 ret = iconv_string(tocode,"EUC-JP",start,end,resultp,lengthp);
51 ret = iconv_string(tocode,"SHIFT_JIS",start,end,resultp,lengthp);
58 ret = iconv_string(tocode,"ISO-2022-KR",start,end,resultp,lengthp);
62 ret = iconv_string(tocode,"EUC-KR",start,end,resultp,lengthp);
72 const char* inptr = start;
73 size_t insize = end-start;
13 iconv_string(const char* tocode, const char* fromcode, const char* start, const char* end, char** resultp, size_t* lengthp) argument
[all...]
/macosx-10.9.5/lukemftp-13.92.1/tnftp/libnetbsd/
H A Dmkstemp.c38 char *start, *trv; local
85 for (start = trv + 1;; --trv) {
108 for (trv = start;;) {
/macosx-10.9.5/ruby-104/ruby/ext/json/lib/json/add/
H A Ddate_time.rb24 alias start sg unless method_defined?(:start)
38 'sg' => start,
/macosx-10.9.5/ruby-104/ruby/ext/psych/yaml/
H A Dwriter.c41 emitter->buffer.pointer = emitter->buffer.start;
45 if (emitter->buffer.start == emitter->buffer.last) {
54 emitter->buffer.start,
55 emitter->buffer.last - emitter->buffer.start)) {
56 emitter->buffer.last = emitter->buffer.start;
57 emitter->buffer.pointer = emitter->buffer.start;
129 emitter->raw_buffer.start,
130 emitter->raw_buffer.last - emitter->raw_buffer.start)) {
131 emitter->buffer.last = emitter->buffer.start;
132 emitter->buffer.pointer = emitter->buffer.start;
[all...]
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dcvsrc.vim13 syn region cvsrcString display oneline start=+"+ skip=+\\\\\|\\\\"+ end=+"+
14 syn region cvsrcString display oneline start=+'+ skip=+\\\\\|\\\\'+ end=+'+
21 \ start='add\|admin\|checkout\|commit\|cvs\|diff'
22 \ start='export\|history\|import\|init\|log'
23 \ start='rdiff\|release\|remove\|rtag\|status\|tag'
24 \ start='update'

Completed in 158 milliseconds

1234567891011>>