| /minix3/usr.bin/tail/ |
| H A D | tail.c | 67 enum STYLE style; in main() local 86 if (style) \ in main() 95 style = (forward); \ in main() 101 style = (backward); \ in main() 107 style = NOTSET; in main() 146 if (style == FBYTES) in main() 147 style = RBYTES; in main() 148 else if (style == FLINES) in main() 149 style = RLINES; in main() 156 if (style == NOTSET) { in main() [all …]
|
| H A D | reverse.c | 77 reverse(FILE *fp, enum STYLE style, off_t off, struct stat *sbp) in reverse() argument 79 if (style != REVERSE && off == 0) in reverse() 83 r_reg(fp, style, off, sbp); in reverse() 85 switch(style) { in reverse() 106 r_reg(FILE *fp, enum STYLE style, off_t off, struct stat *sbp) in r_reg() argument 130 if (style == RBYTES && off < size) in r_reg() 138 if (style == RLINES && !--off) { in r_reg()
|
| /minix3/external/bsd/tmux/dist/ |
| H A D | options-table.c | 199 .style = "message-style" 205 .style = "message-style" 211 .style = "message-command-style" 217 .style = "message-command-style" 223 .style = "message-command-style" 234 .style = "message-style" 272 .style = "pane-active-border-style" 278 .style = "pane-active-border-style" 289 .style = "pane-border-style" 295 .style = "pane-border-style" [all …]
|
| H A D | options.c | 112 memcpy(&o->style, &grid_default_cell, sizeof o->style); in options_set_string() 144 memcpy(&o->style, &grid_default_cell, sizeof o->style); in options_set_number() 179 memcpy(&o->style, &grid_default_cell, sizeof o->style); in options_set_style() 182 if (style_parse(&grid_default_cell, &o->style, value) == -1) in options_set_style() 196 return (&o->style); in options_get_style()
|
| /minix3/external/bsd/bind/dist/lib/dns/include/dns/ |
| H A D | masterdump.h | 228 const dns_master_style_t *style, FILE *f, 235 const dns_master_style_t *style, FILE *f); 240 const dns_master_style_t *style, 246 const dns_master_style_t *style, 281 const dns_master_style_t *style, const char *filename, 287 const dns_master_style_t *style, const char *filename, 292 const dns_master_style_t *style, const char *filename, 300 const dns_master_style_t *style, const char *filename); 305 const dns_master_style_t *style, const char *filename, 311 const dns_master_style_t *style, const char *filename, [all …]
|
| /minix3/external/bsd/bind/dist/unit/atf-src/admin/ |
| H A D | Makefile.am.inc | 30 dist-hook: check-style 31 PHONY_TARGETS += check-style 32 check-style: 33 $(srcdir)/admin/check-style.sh 35 EXTRA_DIST += admin/check-style-common.awk \ 36 admin/check-style-c.awk \ 37 admin/check-style-cpp.awk \ 38 admin/check-style-man.awk \ 39 admin/check-style-shell.awk \ 40 admin/check-style.sh
|
| /minix3/external/bsd/llvm/dist/clang/test/SemaObjCXX/ |
| H A D | objcbridge-static-cast.mm | 32 … // expected-note {{use __bridge with C-style cast to convert directly (no change in ownership)}} \ 33 …// expected-note {{use __bridge_transfer with C-style cast to transfer ownership of a +1 'CFTestin… 58 … // expected-note {{__bridge with C-style cast to convert directly (no change in ownership)}} \ 59 …// expected-note {{use __bridge_transfer with C-style cast to transfer ownership of a +1 'CFErrorR… 61 … // expected-note {{use __bridge with C-style cast to convert directly (no change in ownership)}} \ 62 …// expected-note {{use __bridge_transfer with C-style cast to transfer ownership of a +1 'CFErrorR… 64 … // expected-note {{use __bridge with C-style cast to convert directly (no change in ownership)}} \ 65 …// expected-note {{use __bridge_transfer with C-style cast to transfer ownership of a +1 'CFErrorR… 67 … // expected-note {{use __bridge with C-style cast to convert directly (no change in ownership)}} \ 68 …// expected-note {{use __bridge_transfer with C-style cast to transfer ownership of a +1 'CFUColor… [all …]
|
| H A D | arc-type-conversion.mm | 9 …(void)(__autoreleasing id*)arg; // expected-error{{C-style cast from 'id' to '__autoreleasing id *… 10 …(void)(id*)arg; // expected-error{{C-style cast from 'id' to '__strong id *' casts away qualifiers… 81 // C-style casts aren't allowed to change Objective-C ownership 84 …(void)(__strong id *)wip; // expected-error{{C-style cast from '__weak id *' to '__strong id *' ca… 85 …(void)(__strong id *)cwip; // expected-error{{C-style cast from '__weak id const *' to '__strong i… 86 …(void)(__weak id *)sip; // expected-error{{C-style cast from '__strong id *' to '__weak id *' cast… 87 …(void)(__weak id *)csip; // expected-error{{C-style cast from '__strong id const *' to '__weak id … 89 …(void)(__strong const id *)wip; // expected-error{{C-style cast from '__weak id *' to '__strong id… 90 …(void)(__strong const id *)cwip; // expected-error{{C-style cast from '__weak id const *' to '__st… 91 …(void)(__weak const id *)sip; // expected-error{{C-style cast from '__strong id *' to '__weak id c… [all …]
|
| /minix3/external/bsd/bind/dist/lib/dns/ |
| H A D | masterdump.c | 94 dns_master_style_t style; member 295 totext_ctx_init(const dns_master_style_t *style, dns_totext_ctx_t *ctx) { in totext_ctx_init() argument 298 REQUIRE(style->tab_width != 0); in totext_ctx_init() 300 ctx->style = *style; in totext_ctx_init() 308 if ((ctx->style.flags & DNS_STYLEFLAG_MULTILINE) != 0) { in totext_ctx_init() 322 if ((ctx->style.flags & DNS_STYLEFLAG_COMMENTDATA) != 0) { in totext_ctx_init() 330 result = indent(&col, ctx->style.rdata_column, in totext_ctx_init() 331 ctx->style.tab_width, &buf); in totext_ctx_init() 364 if ((result = indent(&column, ctx->style.col, \ 365 ctx->style.tab_width, target)) \ [all …]
|
| /minix3/external/bsd/llvm/dist/clang/docs/ |
| H A D | LibFormat.rst | 7 as some basic style discussions. 31 formatting. A list of options can be found under :ref:`style-options`. 39 The style options describe specific formatting options that can be used in 40 order to make `ClangFormat` comply with different style guides. Currently, 41 two style guides are hard-coded: 45 /// \brief Returns a format style complying with the LLVM coding standards: 49 /// \brief Returns a format style complying with Google's C++ style guide: 54 through the `-style` option.
|
| H A D | doxygen.css | 14 font-style: italic; 116 DIV.groupText { margin-left: 16px; font-style: italic; font-size: 90% } 138 font-style: italic; 172 font-style: italic; 183 font-style: italic; 202 border-top-style: solid; 203 border-right-style: none; 204 border-bottom-style: none; 205 border-left-style: none; 220 border-top-style: solid; [all …]
|
| H A D | ClangFormatStyleOptions.rst | 5 :doc:`ClangFormatStyleOptions` describes configurable formatting style options 11 custom style by configuring specific style options. 17 :program:`clang-format` supports two ways to provide custom style options: 18 directly specify style configuration in the ``-style=`` command line option or 19 use ``-style=file`` and put style configuration in the ``.clang-format`` or 22 When using ``-style=file``, :program:`clang-format` for each input file will 40 language set, it will set the default style options for all lanugages. 55 # We'll use defaults from the LLVM style, but with 4 columns indentation. 74 options of a certain predefined style is: 78 clang-format -style=llvm -dump-config > .clang-format [all …]
|
| H A D | ClangFormat.rst | 36 Can be used with -style option. 56 -style=<string> - Coding style, currently supports: 58 Use -style=file to load style configuration from 62 Use -style="{key: value, ...}" to set specific 64 -style="{BasedOnStyle: llvm, IndentWidth: 8}" 73 When the desired code formatting style is different from the available options, 74 the style can be customized using the ``-style="{key: value, ...}"`` option or 75 by putting your style configuration in the ``.clang-format`` or ``_clang-format`` 76 file in your project's directory and using ``clang-format -style=file``. 82 clang-format -style=llvm -dump-config > .clang-format [all …]
|
| /minix3/external/bsd/llvm/dist/llvm/docs/ |
| H A D | doxygen.css | 14 font-style: italic; 116 DIV.groupText { margin-left: 16px; font-style: italic; font-size: 90% } 138 font-style: italic; 172 font-style: italic; 183 font-style: italic; 202 border-top-style: solid; 203 border-right-style: none; 204 border-bottom-style: none; 205 border-left-style: none; 220 border-top-style: solid; [all …]
|
| H A D | CoverageMappingFormat.rst | 113 …-html:`<pre class='highlight' style='line-height:initial;'><span>int main(int argc, const char *ar… 114 <span style='background-color:#4A789C'> </span> 115 …<span style='background-color:#4A789C'> if (argc > 1) </span><span style='background-color:#85… 116 <span style='background-color:#85C1F5'> printf("%s\n", argv[1]); </span> 117 …<span style='background-color:#85C1F5'> }</span><span style='background-color:#4A789C'> else </sp… 118 <span style='background-color:#F6D55D'> printf("\n"); </span> 119 …<span style='background-color:#F6D55D'> }</span><span style='background-color:#4A789C'> … 120 <span style='background-color:#4A789C'> return 0; </span> 121 <span style='background-color:#4A789C'>}</span> 130 …:raw-html:`<pre class='highlight' style='line-height:initial;'><span>int main() </span><span style… [all …]
|
| /minix3/external/bsd/mdocml/dist/ |
| H A D | example.style.css | 1 /* Id: example.style.css,v 1.49 2011/12/15 12:18:57 kristaps Exp */ 3 * This is an example style-sheet provided for mandoc(1) and the -Thtml 33 div.mandoc .emph { font-style: italic; font-weight: normal; } /* Emphasis: Em, Bl -emphasis. */ 34 div.mandoc .symb { font-style: normal; font-weight: bold; } /* Symbolic: Sy, Ms, Bf -symbolic. */ 35 div.mandoc .lit { font-style: normal; font-weight: normal; font-family: monospace; } /* Literal: … 39 div.mandoc b.cmd { font-style: normal; } /* Command (Cm). */ 40 div.mandoc b.config { font-style: normal; } /* Config statement (Cd). */ 43 div.mandoc b.diag { font-style: normal; } /* Diagnostic (Bl -diag). */ 48 div.mandoc b.flag { font-style: normal; } /* Flag (Fl, Cm). */ 49 div.mandoc b.fname { font-style: normal; } /* Function name (Fa, Fn, Rv). */ [all …]
|
| /minix3/external/bsd/tmux/dist/examples/ |
| H A D | tmux.vim | 191 \ message-command-style 193 \ message-style 198 \ pane-active-border-style 199 \ pane-border-style 215 \ status-left-style 220 \ staus-right-style 237 \ clock-mode-style 244 \ mode-style 254 \ window-status-activity-style 255 \ window-status-bell-style [all …]
|
| /minix3/lib/libform/ |
| H A D | type_ipv4.c | 64 unsigned int vals[4], style, start, mask; in ipv4_check_field() local 77 style = FORMI_DOTTED_QUAD; in ipv4_check_field() 83 style = FORMI_CLASSLESS; in ipv4_check_field() 89 style = FORMI_HEX; in ipv4_check_field() 92 switch (style) { in ipv4_check_field() 132 switch (style) { in ipv4_check_field()
|
| /minix3/external/bsd/llvm/dist/clang/tools/clang-format/ |
| H A D | clang-format.el | 101 (defun clang-format-region (start end &optional style) 110 (unless style 111 (setq style clang-format-style)) 124 "-style" style 158 (defun clang-format-buffer (&optional style) 161 (clang-format-region (point-min) (point-max) style))
|
| /minix3/external/bsd/nvi/dist/gtk/ |
| H A D | gtkviscreen.c | 361 GtkStyle *style; in gtk_vi_screen_init() local 377 style = gtk_style_copy(GTK_WIDGET(vi)->style); in gtk_vi_screen_init() 378 gdk_font_unref(style->font); in gtk_vi_screen_init() 379 style->font = gdk_font_load("-*-fixed-*-*-*-*-16-*-*-*-*-*-iso8859-*"); in gtk_vi_screen_init() 380 GTK_WIDGET(vi)->style = style; in gtk_vi_screen_init() 485 attributes.x = (widget->style->xthickness + VI_SCREEN_BORDER_ROOM); in gtk_vi_screen_realize() 486 attributes.y = (widget->style->ythickness + VI_SCREEN_BORDER_ROOM); in gtk_vi_screen_realize() 493 widget->style = gtk_style_attach (widget->style, widget->window); in gtk_vi_screen_realize() 496 gdk_window_set_background (widget->window, &widget->style->base[GTK_STATE_NORMAL]); in gtk_vi_screen_realize() 497 gdk_window_set_background (vi->text_area, &widget->style->base[GTK_STATE_NORMAL]); in gtk_vi_screen_realize() [all …]
|
| /minix3/external/bsd/llvm/dist/clang/www/analyzer/scripts/ |
| H A D | expandcollapse.js | 72 with (data.style) { height = (CLIP_HEIGHT - EXPANDER_HEIGHT) + "px"; 76 with (expander.style) { display = "block"; paddingTop = "5px"; } 103 expandableDiv.style.height = CLIP_HEIGHT + "px"; 163 expandableDiv.style.height = newHeight + "px"; 170 data.style.height = (newHeight - EXPANDER_HEIGHT) + "px"; 175 data.style.height = "";
|
| /minix3/minix/lib/libblockdriver/ |
| H A D | drvlib.c | 15 int style, int atapi, u8_t *tmp_buf); 31 int style, /* partitioning style: floppy, primary, sub. */ in partition() argument 50 parse_part_table(bdp, device, style, atapi, tmp_buf); in partition() 61 int style, /* partitioning style: floppy, primary, sub. */ in parse_part_table() argument 90 switch (style) { in parse_part_table() 120 if (style == P_PRIMARY) { in parse_part_table()
|
| /minix3/external/bsd/llvm/dist/clang/www/analyzer/ |
| H A D | menu.css | 20 list-style: none inside; 27 list-style-position: inside; 28 list-style:none;
|
| /minix3/external/bsd/llvm/dist/llvm/test/YAMLParser/ |
| H A D | construct-map.data | 4 Block style: !!map 8 Flow style: !!map { Clark: Evans, Brian: Ingerson, Oren: Ben-Kiki }
|
| /minix3/external/bsd/llvm/dist/clang/tools/clang-format-vs/ClangFormat/ |
| H A D | ClangFormatPackage.cs | 35 private string style = "File"; field in LLVM.ClangFormat.OptionPageGrid 53 get { return style; } 54 set { style = value; } 140 string style = GetStyle().Replace("\"", "\\\""); in RunClangFormat() 144 " -style \"" + style + "\""; in RunClangFormat()
|