| /src/external/gpl2/groff/dist/src/libs/libgroff/ |
| change_lf.cpp | 24 extern char *strsave(const char *); 33 current_filename = strsave(f);
|
| strsave.cpp | 1 /* $NetBSD: strsave.cpp,v 1.1.1.1 2016/01/13 18:41:48 christos Exp $ */ 25 char *strsave(const char *s) function
|
| relocate.cpp | 134 char *tmpathext = strsave(pathext); // strtok modifies this string, 181 pathextstr = strsave(getenv("PATHEXT")); 183 pathextstr = strsave(PATH_EXT); 215 return strsave(path); 235 p = strsave(path);
|
| searchpath.cpp | 36 # define relocate(path) strsave(path) 106 *pathp = strsave(name); 156 *pathp = strsave(reading ? "stdin" : "stdout"); 163 *pathp = strsave(name);
|
| /src/external/gpl2/groff/dist/src/preproc/refer/ |
| token.cpp | 204 store_token(strsave(buf), TOKEN_LOWER); 206 store_token(strsave(buf), TOKEN_UPPER); 212 const char *s = strsave(buf); 219 store_token(strsave(buf), TOKEN_PUNCT); 240 store_letter(strsave(lbuf), strsave(ubuf), sort_key); 290 const char *p = strsave(buf); 293 store_letter(p, strsave(buf), sk); 297 p = strsave(buf); 300 store_letter(strsave(buf), p, sk) [all...] |
| /src/external/gpl2/groff/dist/src/libs/libbib/ |
| search.cpp | 86 : list(p), ptr(p->list), iter(0), query(strsave(q)), 114 : name(strsave(nm)), filename_id(fid), next(0)
|
| /src/external/gpl2/groff/dist/src/preproc/eqn/ |
| eqn.y | 234 { $$ = new font_box(strsave(get_grfont()), $2); } 236 { $$ = new font_box(strsave(get_gbfont()), $2); } 238 { $$ = new font_box(strsave(get_gfont()), $2); } 327 { $$ = strsave("{"); } 329 { $$ = strsave("}"); }
|
| lex.cpp | 273 def->contents = strsave(def_table[i].def); 279 def->contents = strsave("1"); 364 filename = strsave(fn); 428 p = s = strsave(str); 455 filename = strsave(fn); 488 p = s = strsave(body); 717 argv[argc] = strsave(token_buffer.contents()); 930 def->contents = strsave(token_buffer.contents()); 1058 set_char_type(type.contents(), strsave(token_buffer.contents())); 1143 yylval.str = strsave(token_buffer.contents()) [all...] |
| box.cpp | 211 gfont = strsave(s); 217 grfont = strsave(s); 223 gbfont = strsave(s); 291 b = new size_box(strsave(buf), b);
|
| text.cpp | 231 s = strsave(t); 490 b = new quoted_text_box(strsave(buf)); 495 b = new quoted_text_box(strsave(s - 2));
|
| /src/external/gpl2/groff/dist/src/preproc/pic/ |
| lex.cpp | 135 p = s = strsave(str); 164 char *s = strsave(body); 383 argv[argc] = strsave(token_buffer.contents()); 1316 macro_table.define(name, strsave(token_buffer.contents())); 1518 until = strsave(u); 1721 return strsave(def); 1729 return strsave(token_buffer.contents()); 1759 yylval.str = strsave(token_buffer.contents()); 1799 yylval.lstr.str = strsave(token_buffer.contents()); 1804 yylval.str = strsave(token_buffer.contents()) [all...] |
| main.cpp | 228 graphname = strsave("graph"); // default picture name in TeX mode 253 do_file(strsave(filename.contents()));
|
| object.cpp | 56 args = strsave(s); 600 color_fill = strsave(c); 605 outline_color = strsave(c); 724 color_fill = strsave(f);
|
| /src/external/gpl2/groff/dist/src/include/ |
| lib.h | 46 char *strsave(const char *s);
|
| /src/external/gpl2/groff/lib/libgroff/ |
| Makefile | 19 strsave.cpp symbol.cpp tmpfile.cpp tmpname.cpp \
|
| /src/external/gpl2/groff/dist/src/roff/groff/ |
| groff.cpp | 397 if (putenv(strsave(e.contents()))) 409 if (putenv(strsave(e.contents()))) 423 if (putenv(strsave(f.contents()))) 461 spooler = strsave(arg); 475 predriver = strsave(arg); 490 postdriver = strsave(arg); 532 name = strsave(s);
|
| /src/bin/csh/ |
| err.c | 301 seterr = strsave(berr); 384 set(STRstatus, Strsave(STR1));
|
| csh.h | 68 #define SAVE(a) (Strsave(str2short(a))) 72 #define SAVE(a) (strsave(a)) 494 #define Strsave(a) strsave(a) 514 #define Strsave(a) s_strsave(a)
|
| misc.c | 66 strsave(const char *s) function 153 *newv++ = Strsave(*v++);
|
| extern.h | 225 char *strsave(const char *);
|
| str.c | 91 *dst++ = strsave(short2str(*src));
|
| /src/external/gpl2/groff/dist/src/devices/grohtml/ |
| post-html.cpp | 1838 val_sp = replace_str(val_sp, strsave(v)); 1839 file_sp = replace_str(file_sp, strsave(f)); 1840 line_sp = replace_str(line_sp, strsave(l)); 1843 val_br = replace_str(val_br, strsave(v)); 1844 file_br = replace_str(file_br, strsave(f)); 1845 line_br = replace_str(line_br, strsave(l)); 1848 val_fi = replace_str(val_fi, strsave(v)); 1849 file_fi = replace_str(file_fi, strsave(f)); 1850 line_fi = replace_str(line_fi, strsave(l)); 1853 val_fi = replace_negate_str(val_fi, strsave(v)) [all...] |
| /src/external/gpl2/groff/dist/src/utils/indxbib/ |
| indxbib.cpp | 219 char *dir = strsave(base_name); 236 temp_index_file = strsave(TEMP_INDEX_TEMPLATE);
|
| /src/external/gpl2/groff/dist/src/devices/grolbp/ |
| lbp.cpp | 645 program_name = strsave(argv[0]);
|
| /src/external/gpl2/groff/dist/src/devices/grops/ |
| psrm.cpp | 316 if (putenv(strsave(e.contents()))) 1093 lookup_font(p)->filename = strsave(q);
|