Searched refs:continuation (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/tools/scripts/
H A Djstyle.pl37 -c check continuation line indenting
161 # remember whether we expect to be inside a continuation line.
164 # check for proper continuation line. blank lines
166 # continuation do not count.
170 # continuation line must start with whitespace of
177 err("continuation line improperly indented");
291 err("continuation line not indented by 4 spaces");
396 err("improper boolean continuation");
H A Dcstyle.pl63 -c check continuation indentation inside functions
272 # (we assume that no-one will use backslash-continuation with character
284 # detect string continuation
409 err("continuation line should be indented by 4 spaces");
505 err("continuation line not indented by 4 spaces");
595 err("improper boolean continuation");
750 # The rest of this file contains the code for the continuation checking
759 my $cont_in; # currently inside of a continuation
765 my $cont_multiseg; # this continuation has multiple segments
834 err("non-continuation indente
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/ftp/
H A Dftp.c510 int originalcode = 0, continuation = 0; local
592 (is_base64 || continuation)) {
662 if (continuation)
664 continuation++;
688 if (continuation && code != originalcode) {
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/mdnsd/
H A DDNSCommon.c1215 // 10xxxxxx is a continuation byte of a multi-byte character
1237 // Check if the byte right after the chop point is a UTF-8 continuation byte,
1240 mDNSBool continuation = ((c1 & 0xC0) == 0x80); local
1242 if (!continuation && !secondsurrogate) break;
4229 // Now, back up until we find first non-continuation-char
4231 // Now s[i-1] is the first non-continuation-char
4232 // and (j-i) is the number of continuation-chars we found
4295 // allowed output. If s[i] is a UTF-8 continuation character, then we've cut a unicode character in half,
4296 // so back up 'i' until s[i] is no longer a UTF-8 continuation character. (if the input was proprly

Completed in 69 milliseconds