Searched refs:colon (Results 101 - 125 of 148) sorted by relevance

123456

/macosx-10.9.5/cxxfilt-11/cxxfilt/binutils/
H A Dstabs.c628 const char *colon; local
630 colon = strchr (string, ':');
631 if (colon != NULL
632 && (colon[1] == 'f' || colon[1] == 'F'))
/macosx-10.9.5/emacs-92/emacs/lisp/gnus/
H A Dgnus.el2976 (instead of after first colon).
3031 (defalias 'gnus-summary-position-point 'gnus-goto-colon)
3032 (defalias 'gnus-group-position-point 'gnus-goto-colon)
3930 (let* ((colon (string-match ":" group))
3931 (server (and colon (substring group 0 colon)))
3937 group (substring group (+ 1 colon)))
3939 group (substring group (+ 1 colon))))
/macosx-10.9.5/CPANInternal-140/URI/
H A DURI.pm648 a colon. This practice is not recommended. Embedding passwords in
658 If the $new_host string ends with a colon and a number, then this
679 colon: ":".
/macosx-10.9.5/curl-78.94.1/curl/lib/
H A Dhttp.c190 /* Skip over colon */
1243 * Pass headers WITH the colon.
1247 const char *header, /* header keyword _with_ colon */
1251 * by a colon (":") and the field value. Field names are case-insensitive.
1510 /* we require a colon for this to be a true header */
1512 ptr++; /* pass the colon */
1847 char *colon = strchr(cookiehost + startsearch, ':'); local
1848 if(colon)
1849 *colon = 0; /* The host must not include an embedded port number */
/macosx-10.9.5/cctools-845/ld/
H A Dpass1.c3606 char *colon, *file_name, *dylib_name, *file_addr; local
3620 colon = strchr(dylib_files[i], ':');
3621 *colon = '\0';
3624 p->file_name = colon + 1;
3625 *colon = ':';
3628 *colon = ':';
/macosx-10.9.5/CPANInternal-140/Config-Std-0.900/lib/Config/
H A DStd.pm614 The key/value separator can be either a colon (as above) or an equals sign,
628 is written back with a colon as its default separator,
/macosx-10.9.5/emacs-92/emacs/lisp/progmodes/
H A Dpython.el201 (define-key map ":" 'python-electric-colon)
518 (colon (eq ?: (char-before (1- (line-beginning-position))))))
534 (if (or backslash colon)
1070 (defun python-electric-colon (arg)
1071 "Insert a colon and maybe outdent the line if it is a statement like `else'.
1073 just insert a single colon."
1082 (put 'python-electric-colon 'delete-selection t)
/macosx-10.9.5/zsh-60/zsh/Src/Modules/
H A Dzutil.c859 int nbc = 0, colon = 0, pre = 0, suf = 0; local
868 colon++;
/macosx-10.9.5/OpenSSH-186/openssh/
H A Dmisc.c427 colon(char *cp) function
431 if (*cp == ':') /* Leading colon is part of file name. */
H A Dsftp.c2243 if ((cp = colon(host)) != NULL) {
/macosx-10.9.5/adv_cmds-153/localedef/
H A Dlocaledef.pl100 <colon> \\072
/macosx-10.9.5/apache-786.1/httpd/modules/mappers/
H A Dmod_rewrite.c2967 const char *colon = ap_strchr_c(a2 + 4, ':'); local
2969 if (colon) {
2971 colon - (a2 + 3) - 1);
2972 fname = colon + 1;
/macosx-10.9.5/cxxfilt-11/cxxfilt/bfd/
H A Dpdp11.c2357 char *colon;
2371 colon = strchr (buf, ':');
2372 if (colon != NULL)
2373 *colon = '\0';
2350 char *colon; local
H A Daoutx.h2767 char *colon;
2780 colon = strchr (buf, ':');
2781 if (colon != NULL)
2782 *colon = '\0';
/macosx-10.9.5/ruby-104/ruby/test/rdoc/
H A Dtest_rdoc_parser_c.rb405 /* TEST\:TEST: Checking to see if escaped colon works */
469 'Checking to see if escaped colon works '],
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/ipentry/
H A Dipentry.tcl39 bind IPEntrybindtag6 <colon> {::ipentry::dot %W}
/macosx-10.9.5/vim-53/runtime/
H A Dmakemenu.vim26 " isolate submenu name: until the colon
29 " after the colon is the syntax name
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dprogress.vim63 syn keyword ProgressReserved center[ed] character check chr clear clipboard col colon color col[umn] column-lab[el] col[umns] compiler connected control count-of
136 syn keyword ProgressOperator checked choose clear-select[ion] close code codepage codepage-convert col-of colon-align[ed] color-table column-bgc[olor] column-dcolor column-fgc[olor] column-font
H A Dfvwm.vim548 \ slash colon semicolon less equal greater
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/
H A Dsyncrepl.c1773 char *colon; local
1787 colon = ber_bvchr( &bv, ':' );
1788 if ( !colon ) {
1793 bv.bv_len = colon - bv.bv_val;
1817 switch(colon[1]) {
1839 if ( colon[2] == ' ' ) {
1840 bv.bv_val = colon + 3;
/macosx-10.9.5/cctools-845/as/
H A Dread.c841 * zero or more lables (a name or a digit followed by a colon)
1076 colon(s, 0);
1210 * The label identifier in the Label field must end with a space or a colon (and
1272 * without a trailing colon from the operation field.
1300 colon(s, 0);
1303 * A colon after the name is optional and may have a spaces
4864 * inline asm is checked for in colon().
/macosx-10.9.5/CPANInternal-140/DateTime-TimeZone/lib/DateTime/
H A DTimeZone.pm788 each element of the offset must be separated by a colon (:).
/macosx-10.9.5/CPANInternal-140/XML-Writer/
H A DWriter.pm1018 croak "PI target '$target' contains a colon.";
1091 "' contains a colon.");
1094 croak("Element name '$name' contains a colon.");
1103 croak "Local part of attribute name '$local' contains a colon.";
1588 colon.
/macosx-10.9.5/postfix-252/postfix/src/smtpd/
H A Dsmtpd.c2121 char *colon; local
2152 if (*text == '@' && (colon = strchr(text, ':')) != 0)
2153 text = colon + 1;
/macosx-10.9.5/vim-53/src/
H A Dmisc1.c3192 get_number(colon, mouse_used)
3193 int colon; /* allow colon to abort */
3240 else if (n == 0 && c == ':' && colon)
4011 /* With MacOS path (with colons) the final colon is required */
5761 /* skip double colon. It can't be a constructor

Completed in 351 milliseconds

123456