Home
last modified time | relevance | path

Searched refs:character (Results 1 – 25 of 128) sorted by relevance

123456

/titanic_50/usr/src/lib/libast/common/features/
H A Dccode24 printf("#define CC_NATIVE CC_EBCDIC_E /* native character code */\n");
27 printf("#define CC_NATIVE CC_ASCII /* native character code */\n");
33 printf("#define CC_NATIVE CC_EBCDIC_O /* native character code */\n");
39 printf("#define CC_NATIVE CC_EBCDIC_H /* native character code */\n");
42 printf("#define CC_NATIVE CC_EBCDIC_I /* native character code */\n");
49 printf("#define CC_NATIVE CC_EBCDIC_S /* native character code */\n");
55 printf("#define CC_NATIVE CC_EBCDIC_O /* native character code */\n");
58 printf("#define CC_NATIVE CC_ASCII /* native character code */\n");
65 printf("#define CC_ALIEN CC_EBCDIC /* alien character code */\n\n");
66 printf("#define CC_bel 0007 /* bel character */\n");
[all …]
/titanic_50/usr/src/lib/libast/amd64/src/lib/libast/FEATURE/
H A Dccode22 #define CC_NATIVE CC_ASCII /* native character code */
23 #define CC_ALIEN CC_EBCDIC /* alien character code */
25 #define CC_bel 0007 /* bel character */
26 #define CC_esc 0033 /* esc character */
27 #define CC_sub 0032 /* sub character */
28 #define CC_vt 0013 /* vt character */
/titanic_50/usr/src/lib/libast/sparcv9/src/lib/libast/FEATURE/
H A Dccode22 #define CC_NATIVE CC_ASCII /* native character code */
23 #define CC_ALIEN CC_EBCDIC /* alien character code */
25 #define CC_bel 0007 /* bel character */
26 #define CC_esc 0033 /* esc character */
27 #define CC_sub 0032 /* sub character */
28 #define CC_vt 0013 /* vt character */
/titanic_50/usr/src/lib/libast/sparc/src/lib/libast/FEATURE/
H A Dccode22 #define CC_NATIVE CC_ASCII /* native character code */
23 #define CC_ALIEN CC_EBCDIC /* alien character code */
25 #define CC_bel 0007 /* bel character */
26 #define CC_esc 0033 /* esc character */
27 #define CC_sub 0032 /* sub character */
28 #define CC_vt 0013 /* vt character */
/titanic_50/usr/src/lib/libast/i386/src/lib/libast/FEATURE/
H A Dccode22 #define CC_NATIVE CC_ASCII /* native character code */
23 #define CC_ALIEN CC_EBCDIC /* alien character code */
25 #define CC_bel 0007 /* bel character */
26 #define CC_esc 0033 /* esc character */
27 #define CC_sub 0032 /* sub character */
28 #define CC_vt 0013 /* vt character */
/titanic_50/usr/src/cmd/loadkeys/
H A Ddumpkeys.c65 static void printchar(int character, int delim);
398 printchar(character, delim) in printchar() argument
399 int character; in printchar()
402 switch (character) {
429 if (isprint(character)) {
430 if (character == delim)
432 (void) printf("%c", character);
434 if (character < 040)
435 (void) printf("^%c", character + 0100);
437 (void) printf("'\\%.3o'", character);
/titanic_50/usr/src/cmd/lp/filter/postscript/font/devpost/charlib/
H A DREADME34 is named by its two character troff name and is copied to the output file,
35 as is, when the character is first used. Each procedure is called with a
36 single argument, namely the width of the character. The name of the PostScript
37 procedure that builds the character must begin with the prefix build_ and
38 end with the character's name.
41 a new character:
H A DBRACKETS_NOTE25 and bottom bracket pieces used by eqn. The files are only used if the character
27 than 32 means a character from Adobe's Symbol font will be used. Think the real
31 Adobe's Symbol font. eqn extends all the pieces with the \(bv character, while
39 problem. Each builds the troff character by using the \(bv character from the
51 of the \(bv character, and using the corners of that box to locate the top and
55 a tight bounding box around the \(bv character independent of the rotation of
/titanic_50/usr/src/cmd/lp/filter/postscript/font/
H A DREADME31 The mapping from troff's one or two character font names to PostScript fonts is
36 of 1 implies the character definition comes in one piece, while anything else
37 means the character may come in two pieces. The first part is downloaded once,
39 time the character is printed.
44 1: Pick a one or two character font name for troff and dpost - no longer a
45 trivial task! To find out what two character font names are taken type,
50 Any unused one or two character font name can be chosen. I've tried to choose
51 two character font names with the first character representing the font family
68 720 dpi. As an example if you wanted to find the width of character A in
74 The fourth column in the width tables is the character code field and is only
[all …]
/titanic_50/usr/src/lib/fm/libfmd_msg/common/
H A Dfmd_msg_test.out28 code TEST-8000-08 item 3 = <<This entry tests the percent character escape sequence: %>>
37 AUTO-RESPONSE: This entry tests the percent character escape sequence: %
44 code TEST-8000-08 item 3 = <<This entry tests the percent character escape sequence: %>>
53 AUTO-RESPONSE: This entry tests the percent character escape sequence: %
62 AUTO-RESPONSE: This entry tests the percent character escape sequence: %
69 code TEST-8000-08 item 3 = <<This entry tests the percent character escape sequence: %>>
78 AUTO-RESPONSE: This entry tests the percent character escape sequence: %
85 code TEST-8000-08 item 3 = <<This entry tests the percent character escape sequence: %>>
94 AUTO-RESPONSE: This entry tests the percent character escape sequence: %
103 AUTO-RESPONSE: This entry tests the percent character escape sequence: %
/titanic_50/usr/src/cmd/troff/nroff.d/terms.d/
H A DREADME27 Char [integer] /*size of character horizontally*/
64 \ followed by 3 octal digits specifies the ascii character
69 knows by 2-character names, e.g. \(hy and \(ga. The entries in this
73 (defining one special character) is: the (2-character) name of the
74 special character, followed by white space, followed by the width of
75 the character (in ems), followed by white space, followed by the
76 sequence needed to produce the character. This sequence may be
/titanic_50/usr/src/lib/pam_modules/authtok_check/
H A Drules.c349 Char2Int(char character) in Char2Int() argument
351 if (isdigit(character)) { in Char2Int()
352 return (character - '0'); in Char2Int()
353 } else if (islower(character)) { in Char2Int()
354 return (character - 'a' + 10); in Char2Int()
355 } else if (isupper(character)) { in Char2Int()
356 return (character - 'A' + 10); in Char2Int()
/titanic_50/usr/src/lib/libc/i386/gen/
H A Dstrchr.s32 mov 8(%esp), %edx / character to find
61 mov %edx, %ebx / copy character across all bytes in wd
90 test $0x000000ff, %ecx / look for character's position in word
H A Dstrrchr.s31 / Returns the pointer in sp at which the character c last
/titanic_50/usr/src/lib/libslp/javalib/com/sun/slp/
H A DClientLib_en.properties80 illegal_utf8 = Illegal UTF8 character ``{0}''''.
112 char_not_reserved_attr = Escaped character ``{0}'''' is not reserved in attribute tag or string ``{…
113 char_not_reserved_scope = Escaped character ``{0}'''' is not reserved in scope string ``{1}''''
114 reserved_not_escaped = Reserved character ``{0}'''' is not escaped
115 not_a_character = The escaped character string ``{0}'''' is not a UTF8 character
116 more_than_one = The escaped character string ``{0}'''' codes for more than one UTF8 character
138 …ar_error = The character ``{0}'''' is illegal in URLs. Use the %## escape syntax convention. Spac…
165 bad_id_char = Prohibited character ``{0}'''' in attribute id
/titanic_50/usr/src/cmd/tip/
H A Dtip.c369 if ((gch == character(value(ESCAPE))) && bol) { in tipin()
372 } else if (!cumode && gch == character(value(RAISECHAR))) { in tipin()
381 } else if (!cumode && gch == character(value(FORCE))) in tipin()
402 char c = character(value(ESCAPE)); in escape()
492 (void) printf("%2s", ctrl(character(value(ESCAPE)))); in help()
H A Dvalue.c112 if (character(p->v_value) == *v) in vassign()
114 character(p->v_value) = *v; in vassign()
224 cp = ctrl(character(p->v_value)); in vprint()
/titanic_50/usr/src/lib/libcurses/screen/
H A Dcaps62 transparent_underline, "ul" "ul" underline character overstrikes
68 no_pad_char, "npc" "NP" Pad character doesn't exist.
78 has_print_wheel, "daisy" "YC" Printer needs operator to change character set
117 output_res_char, "orc" "Yi" Horizontal resolution in units per character
157 delete_character, "dch1" "dc" Delete character (*)
161 enter_alt_charset_mode, "smacs" "as" Start alternate character set
174 exit_alt_charset_mode, "rmacs" "ae" End alternate character set
188 insert_character, "ich1" "ic" Insert character
190 insert_padding, "ip" "ip" Insert pad after character inserted (*)
195 key_dc, "kdch1" "kD" KEY_DC, 0512, Sent by delete character key.
[all …]
/titanic_50/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dcaps86 transparent_underline ul ul bool underline character overstrikes
92 no_pad_char npc NP bool Pad character doesn't exist
99 has_print_wheel daisy YC bool Printer needs operator to change character set
102 cpi_changes_res cpix YF bool Changing character pitch changes resolution
130 output_res_char orc Yi number Horz. res. in units per character
162 delete_character dch1 dc str Delete character (P*)
166 enter_alt_charset_mode smacs as str Start alternate character set (P)
179 exit_alt_charset_mode rmacs ae str End alternate character set (P)
193 insert_character ich1 ic str Insert character (P)
195 insert_padding ip ip str Insert pad after character inserted (P*)
[all …]
/titanic_50/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dcaps86 transparent_underline ul ul bool underline character overstrikes
92 no_pad_char npc NP bool Pad character doesn't exist
99 has_print_wheel daisy YC bool Printer needs operator to change character set
102 cpi_changes_res cpix YF bool Changing character pitch changes resolution
130 output_res_char orc Yi number Horz. res. in units per character
162 delete_character dch1 dc str Delete character (P*)
166 enter_alt_charset_mode smacs as str Start alternate character set (P)
179 exit_alt_charset_mode rmacs ae str End alternate character set (P)
193 insert_character ich1 ic str Insert character (P)
195 insert_padding ip ip str Insert pad after character inserted (P*)
[all …]
/titanic_50/usr/src/cmd/acpi/acpidump/
H A DReadme18 the first character on a line is not a space (' '). The acpidump code will
19 overflow the offset into the first character after 1MB. Until this is fixed
/titanic_50/usr/src/cmd/sgs/lex/common/
H A Dparser.y639 if(prev != '\n') goto character;
655 goto character;
669 goto character;
675 if(prev != '\n' && scon != TRUE) goto character;
742 goto character;
757 goto character;
902 character:
/titanic_50/usr/src/lib/libc/amd64/gen/
H A Dstrrchr.s31 / Returns the pointer in sp at which the character c last
/titanic_50/usr/src/lib/libpp/common/
H A DBUGS4 06/11/92 gsf spurious empty character constant warning for shipproto.c
/titanic_50/usr/src/cmd/lp/lib/printers/
H A Dllib-llpprt40 SCALED cpi; /* default character pitch */
57 short daisy; /* 1/0 - printwheels/character-sets */

123456