HomeSort by: relevance | last modified time | path
    Searched refs:style (Results 1 - 25 of 944) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/gdb/dist/gdb/unittests/
style-selftests.c 21 #include "ui-style.h"
24 namespace style {
32 ui_file_style style; local
36 SELF_CHECK (style.parse ("\033[m", &n_read));
38 SELF_CHECK (style.get_foreground ().is_none ());
39 SELF_CHECK (style.get_background ().is_none ());
40 SELF_CHECK (style.get_intensity () == ui_file_style::NORMAL);
41 SELF_CHECK (!style.is_italic ());
42 SELF_CHECK (!style.is_underline ());
43 SELF_CHECK (!style.is_reverse ())
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/unittests/
style-selftests.c 21 #include "ui-style.h"
24 namespace style {
32 ui_file_style style; local
36 SELF_CHECK (style.parse ("\033[m", &n_read));
38 SELF_CHECK (style.get_foreground ().is_none ());
39 SELF_CHECK (style.get_background ().is_none ());
40 SELF_CHECK (style.get_intensity () == ui_file_style::NORMAL);
41 SELF_CHECK (!style.is_reverse ());
42 SELF_CHECK (style.to_ansi () == "\033[m");
44 style = ui_file_style ()
    [all...]
  /src/crypto/external/apache2/openssl/dist/util/
markdownlint.rb 1 # markdownlint style rules for OpenSSL
7 rule 'MD003', :style => :setext_with_atx
10 rule 'MD046', :style => :consistent
19 exclude_rule 'MD004' # Unordered list style TODO(fix?)
  /src/crypto/external/bsd/openssl/dist/util/
markdownlint.rb 1 # markdownlint style rules for OpenSSL
7 rule 'MD003', :style => :setext_with_atx
10 rule 'MD046', :style => :consistent
15 exclude_rule 'MD004' # Unordered list style TODO(fix?)
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
style-logging.exp 16 # Test that logging does not style.
23 standard_testfile style.c
34 gdb_test_no_output "set style enabled on"
42 set main_expr [style main function]
43 set base_file_expr [style ".*style\\.c" file]
44 set line_expr [style $decimal line-number]
46 set arg_expr [style "arg." variable]
style-interp-exec-mi.exp 36 gdb_test_no_output "set style enabled on"
37 set main_expr [style main function]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
style-logging.exp 16 # Test that logging does not style.
23 standard_testfile style.c
34 gdb_test_no_output "set style enabled on"
42 set main_expr [style main function]
43 set base_file_expr [style ".*style\\.c" file]
44 set line_expr [style $decimal line-number]
46 set arg_expr [style "arg." variable]
style-interp-exec-mi.exp 36 gdb_test_no_output "set style enabled on"
37 set main_expr [style main function]
  /src/external/mit/libcbor/dist/
clang-format.sh 6 clang-format-8 --verbose -style=file -i **/*.c **/*.h **/*.cpp
8 clang-format --verbose -style=file -i **/*.c **/*.h **/*.cpp
refresh_templates.sh 4 clang-format -style=file -i $(dirname $0)/test/stream_expectations.c
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
Path.h 28 enum class Style { windows, posix, native };
58 Style S = Style::native; ///< The path style to use.
61 friend const_iterator begin(StringRef path, Style style);
84 Style S = Style::native; ///< The path style to use.
86 friend reverse_iterator rbegin(StringRef path, Style style)
    [all...]
  /src/external/gpl3/binutils/dist/ld/
ldbuildid.c 39 validate_build_id_style (const char *style)
41 if ((streq (style, "md5")) || (streq (style, "sha1"))
43 || (streq (style, "xx"))
45 || (streq (style, "uuid")) || (startswith (style, "0x")))
52 compute_build_id_size (const char *style)
54 if (streq (style, "md5") || streq (style, "uuid"))
58 if (streq (style, "xx")
    [all...]
  /src/external/gpl3/binutils.old/dist/ld/
ldbuildid.c 39 validate_build_id_style (const char *style)
41 if ((streq (style, "md5")) || (streq (style, "sha1"))
43 || (streq (style, "xx"))
45 || (streq (style, "uuid")) || (startswith (style, "0x")))
52 compute_build_id_size (const char *style)
54 if (streq (style, "md5") || streq (style, "uuid"))
58 if (streq (style, "xx")
    [all...]
  /src/external/gpl3/gcc/dist/gcc/text-art/
style.cc 38 /* class text_art::style. */
40 style &
41 style::set_style_url (const char *url)
49 /* class text_art::style::color. */
52 style::color::operator== (const style::color &other) const
81 style::color::print_sgr (pretty_printer *pp,
170 /* class text_art::style. */
180 style::print_changes (pretty_printer *pp,
181 const style &old_style
    [all...]
styled-string.cc 51 m_cur_style_id (style::id_plain),
197 set_style_fg_color (style::named_color::BLACK);
200 set_style_fg_color (style::named_color::RED);
203 set_style_fg_color (style::named_color::GREEN);
206 set_style_fg_color (style::named_color::YELLOW);
209 set_style_fg_color (style::named_color::BLUE);
212 set_style_fg_color (style::named_color::MAGENTA);
215 set_style_fg_color (style::named_color::CYAN);
218 set_style_fg_color (style::named_color::WHITE);
238 set_style_fg_color (style::color (col))
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
pager.h 52 void emit_style_escape (const ui_file_style &style) override;
71 /* Set the style of m_stream to STYLE. */
72 void set_stream_style (const ui_file_style &style)
74 if (m_stream->can_emit_style_escape () && m_stream_style != style)
76 m_stream->puts (style.to_ansi ().c_str ());
77 m_stream_style = style;
92 /* The style applied at the time that wrap_here was called. */
95 /* The style currently applied to m_stream. While m_applied_style is the
96 style that is applied to new content added to m_wrap_buffer, th
    [all...]
split-name.h 29 /* No splitting - C style. */
31 /* C++ style, with "::" and template parameter intelligence. */
38 /* Split NAME into components at module boundaries. STYLE indicates
39 which style of splitting to use. */
42 split_style style);
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/lib/
gdb-utils.exp 62 # style to STYLE, and one to reset the style to the default. The
65 # STYLE can either be the payload part of an ANSI terminal sequence,
69 proc style {str style} {
70 switch -exact -- $style {
71 title { set style 1 }
72 command { set style 1 }
73 file { set style 32
    [all...]
  /src/usr.bin/tail/
tail.c 67 enum STYLE style; local
88 if (style) \
97 style = (forward); \
103 style = (backward); \
109 style = NOTSET;
159 * style values.
164 if (style == FBYTES)
165 style = RBYTES;
166 else if (style == FLINES
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
split-name.h 29 /* No splitting - C style. */
31 /* C++ style, with "::" and template parameter intelligence. */
38 /* Split NAME into components at module boundaries. STYLE indicates
39 which style of splitting to use. */
42 split_style style);
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.rust/
rust-style.exp 35 set vfield [style value variable]
36 set v2field [style value2 variable]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.rust/
rust-style.exp 35 set vfield [style value variable]
36 set v2field [style value2 variable]
  /src/external/bsd/openpam/dist/lib/libpam/
pam_prompt.c 60 int style,
69 r = pam_vprompt(pamh, style, resp, fmt, ap);
  /src/external/apache2/llvm/dist/llvm/lib/Support/
Path.cpp 37 using llvm::sys::path::Style;
39 inline Style real_style(Style style) {
41 return (style == Style::posix) ? Style::posix : Style::windows;
43 return (style == Style::windows) ? Style::windows : Style::posix
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
demangle.exp 20 ### The demangling style we last sent to GDB.
23 ### Set GDB's current demangling style to STYLE. Subsequent calls to
24 ### test_demangle will include STYLE in the test name when reporting
26 proc set_demangling_style {style} {
30 gdb_test_multiple "set demangle-style $style" \
31 "$style: set demangle-style" {
32 -re "set demangle-style $style\[\r\n\]+$gdb_prompt $"
    [all...]

Completed in 32 milliseconds

1 2 3 4 5 6 7 8 91011>>