Searched refs:newline (Results 1 - 25 of 322) sorted by relevance

1234567891011>>

/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DTextInsertionBaseCommand.h50 // lienLength doesn't include the newline character. So the value of lineLength could be 0.
55 size_t newline; local
56 while ((newline = string.find('\n', offset)) != notFound) {
57 operation(offset, newline - offset, false);
58 offset = newline + 1;
/macosx-10.9.5/ncurses-42/ncurses/include/
H A Dcapdefaults.c57 if (VALID_STRING(newline) && (capval = EXTRACT_DELAY(newline)))
78 linefeed_is_newline = (char) (VALID_STRING(newline)
79 && (strcmp("\n", newline) == 0));
/macosx-10.9.5/ruby-104/ruby/sample/
H A Dfib.scm7 (newline)
/macosx-10.9.5/mail_cmds-29/from/
H A Dfrom.c66 int ch, count, newline; local
121 for (newline = 1; fgets(buf, sizeof(buf), mbox);) {
123 newline = 1;
126 if (newline && !strncmp(buf, "From ", 5) &&
133 newline = 0;
/macosx-10.9.5/ICU-511.35/icuSources/tools/tzcode/
H A Dtzselect.ksh59 newline='
61 IFS=$newline
163 *"$newline"*)
201 *"$newline"*)
272 ?*+?*) echo >&2 " $country$newline $region";;
/macosx-10.9.5/ruby-104/ruby/lib/
H A Dprettyprint.rb7 # * newline object and space generation block for PrettyPrint.new
35 # q = PrettyPrint.new(output, maxwidth, newline, &genspace)
41 def PrettyPrint.format(output='', maxwidth=79, newline="\n", genspace=lambda {|n| ' ' * n})
42 q = PrettyPrint.new(output, maxwidth, newline, &genspace)
50 # +maxwidth+, +newline+ and +genspace+ are ignored.
55 def PrettyPrint.singleline_format(output='', maxwidth=nil, newline=nil, genspace=nil)
66 # first argument +newline+ of PrettyPrint.new, and the result of a given
73 # +newline+ is used for line breaks. "\n" is used if it is not specified.
78 def initialize(output='', maxwidth=79, newline="\n", &genspace)
81 @newline
[all...]
/macosx-10.9.5/apache-786.1/httpd/build/
H A Dbuildinfo.sh47 newline=no
50 newline=yes
151 if [ "x$newline" = "xyes" ]; then
/macosx-10.9.5/Libc-997.90.3/stdio/FreeBSD/
H A Dgetdelim.c67 char *newline; local
79 newline = realloc(*linep, newcap);
80 if (newline == NULL)
83 *linep = newline;
/macosx-10.9.5/WebCore-7537.78.1/inspector/
H A DCodeGeneratorInspector.py746 writer.newline("// Type originally was named '%s'.\n" % json_name)
764 def newline(self, str): member in class:Writer
774 self.newline(parts[0])
778 self.newline(p)
786 self.newline(p)
842 writer.newline("/* ")
906 writer.newline("struct ")
909 writer.newline(" enum Enum {\n")
917 writer.newline(" ")
922 writer.newline(" };\
[all...]
/macosx-10.9.5/network_cmds-433/kdumpd.tproj/
H A Dkdumpsubs.c76 int newline = 0; /* fillbuf: in middle of newline expansion */ variable
92 newline = 0; /* init crlf flag */
153 if (newline) {
157 newline = 0;
165 newline = 1;
/macosx-10.9.5/remote_cmds-41.90.1/tftp.tproj/
H A Dtftpsubs.c87 int newline = 0; /* fillbuf: in middle of newline expansion */ variable
99 newline = 0; /* init crlf flag */
162 if (newline) {
166 newline = 0;
174 newline = 1;
/macosx-10.9.5/remote_cmds-41.90.1/tftpd.tproj/
H A Dtftpsubs.c77 int newline = 0; /* fillbuf: in middle of newline expansion */ variable
98 newline = 0; /* init crlf flag */
160 if (newline) {
164 newline = 0;
172 newline = 1;
/macosx-10.9.5/CPANInternal-140/Log-Dispatch-2.34/lib/Log/Dispatch/
H A DScreen.pm75 newline => 1
87 Note that a newline will I<not> be added automatically at the end of a
88 message by default. To do that, pass C<newline =E<gt> 1>.
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/
H A Dslappasswd.c52 " -n\t\tomit trailing newline\n"
78 char *newline = "\n"; local
117 newline = "";
207 printf( "%s%s" , hash.bv_val, newline );
/macosx-10.9.5/bc-21/bc/dc/
H A Dstring.c93 * Add a trailing newline if "newline" is set.
97 dc_out_str DC_DECLARG((value, newline, discard_flag))
99 dc_newline newline DC_DECLSEP
103 if (newline == DC_WITHNL)
/macosx-10.9.5/emacs-92/emacs/lisp/mail/
H A Dvms-pmail.el114 (newline)
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/doctools2base/
H A Dtext.tcl73 newline
75 newline
87 proc ::doctools::text::newline {{increment 1}} {
94 proc ::doctools::text::newline? {} {
210 prefix indent dedent indented indenting newline newlines \
211 field right left newline?
/macosx-10.9.5/zsh-60/zsh/Functions/Misc/
H A Drun-help37 local what places noalias newline='
116 [[ $what != $newline ]] && echo
/macosx-10.9.5/shell_cmds-175/echo/
H A Decho.c74 int nflag; /* if not set, output a trailing newline. */
78 char newline[] = "\n"; local
109 /* chop it and set the no-newline flag. */
123 vp->iov_base = newline;
/macosx-10.9.5/ruby-104/ruby/misc/
H A Druby-electric.el90 (defcustom ruby-electric-newline-before-closing-bracket nil
91 "*Controls whether a newline should be inserted before the
130 (newline)
170 (if ruby-electric-newline-before-closing-bracket
172 (newline)
/macosx-10.9.5/tcl-102/tcl/tcl/library/
H A Dhistory.tcl253 set newline ""
260 append result $newline[format "%6d %s" $i $cmd]
261 set newline \n
/macosx-10.9.5/tcl-102/tcl84/tcl/library/
H A Dhistory.tcl253 set newline ""
260 append result $newline[format "%6d %s" $i $cmd]
261 set newline \n
/macosx-10.9.5/Security-55471.14.18/include/security_keychain/
H A DSecImportExportPem.cpp80 const char *newline = NULL; // if we found a newline, this points to the first one local
85 if(newline == NULL) {
86 /* first newline */
87 newline = cp;
90 else if(newline != NULL) {
91 /* non newline after newline, done */
99 if(newline) {
100 linelen = (unsigned)(newline
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_apple_x509_tp/lib/
H A DcuEnc64.c103 * newline and NULL. Its length (including the trailing newline and NULL)
144 * Total output size = encoded text size plus one newline per
176 * last trailing newline added below
441 const char *newline = NULL; // if we found a newline, this points to the first one local
446 if(newline == NULL) {
447 /* first newline */
448 newline = cp;
451 else if(newline !
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/Security/
H A DSecImportExportPem.cpp80 const char *newline = NULL; // if we found a newline, this points to the first one local
85 if(newline == NULL) {
86 /* first newline */
87 newline = cp;
90 else if(newline != NULL) {
91 /* non newline after newline, done */
99 if(newline) {
100 linelen = (unsigned)(newline
[all...]

Completed in 262 milliseconds

1234567891011>>