Home
last modified time | relevance | path

Searched refs:pretty (Results 1 – 25 of 673) sorted by relevance

12345678910>>...27

/external/rust/crates/protobuf/src/text_format/
Dprint.rs17 fn do_indent(buf: &mut String, pretty: bool, indent: usize) { in do_indent()
18 if pretty && indent > 0 { in do_indent()
31 pretty: bool, in print_start_field()
36 if !*first && !pretty { in print_start_field()
39 do_indent(buf, pretty, indent); in print_start_field()
44 fn print_end_field(buf: &mut String, pretty: bool) { in print_end_field()
45 if pretty { in print_end_field()
52 pretty: bool, in print_field()
58 print_start_field(buf, pretty, indent, first, field_name); in print_field()
63 if pretty { in print_field()
[all …]
/external/openthread/third_party/nlbuild-autotools/repo/automake/post/rules/
Dpretty.am22 # The recursive target 'pretty', invoked against '$(PRETTY_SUBDIRS)',
27 # The recursive target 'pretty-check' (and its alias 'lint'),
34 # (automake inparticular) such that 'make pretty' and 'make
35 # pretty-check' may be invoked at the top of the tree and all
41 # nl-make-pretty <TERSE OUTPUT COMMAND> <COMMAND> <COMMAND ARGUMENTS> <PATHS>
47 define nl-make-pretty
56 .PHONY: pretty pretty-recursive pretty-check pretty-check-recursive lint
58 pretty: pretty-recursive target
60 pretty pretty-check: $(BUILT_SOURCES) target
62 # Map the build action 'lint' to the more vernacular 'pretty-check'.
[all …]
/external/rust/crates/protobuf/2.27.1/src/text_format/
Dmod.rs114 fn do_indent(buf: &mut String, pretty: bool, indent: usize) { in do_indent()
115 if pretty && indent > 0 { in do_indent()
124 pretty: bool, in print_start_field()
129 if !*first && !pretty { in print_start_field()
132 do_indent(buf, pretty, indent); in print_start_field()
137 fn print_end_field(buf: &mut String, pretty: bool) { in print_end_field()
138 if pretty { in print_end_field()
145 pretty: bool, in print_field()
151 print_start_field(buf, pretty, indent, first, field_name); in print_field()
156 if pretty { in print_field()
[all …]
/external/llvm/tools/llvm-pdbdump/
DLinePrinter.cpp47 SetFilters(ExcludeTypeFilters, opts::pretty::ExcludeTypes.begin(), in LinePrinter()
48 opts::pretty::ExcludeTypes.end()); in LinePrinter()
49 SetFilters(ExcludeSymbolFilters, opts::pretty::ExcludeSymbols.begin(), in LinePrinter()
50 opts::pretty::ExcludeSymbols.end()); in LinePrinter()
51 SetFilters(ExcludeCompilandFilters, opts::pretty::ExcludeCompilands.begin(), in LinePrinter()
52 opts::pretty::ExcludeCompilands.end()); in LinePrinter()
54 SetFilters(IncludeTypeFilters, opts::pretty::IncludeTypes.begin(), in LinePrinter()
55 opts::pretty::IncludeTypes.end()); in LinePrinter()
56 SetFilters(IncludeSymbolFilters, opts::pretty::IncludeSymbols.begin(), in LinePrinter()
57 opts::pretty::IncludeSymbols.end()); in LinePrinter()
[all …]
Dllvm-pdbdump.cpp108 namespace pretty { namespace
397 if (opts::pretty::LoadAddress) in dumpPretty()
398 Session->setLoadAddress(opts::pretty::LoadAddress); in dumpPretty()
435 if (opts::pretty::Compilands) { in dumpPretty()
443 if (opts::pretty::Lines) in dumpPretty()
450 if (opts::pretty::Types) { in dumpPretty()
459 if (opts::pretty::Symbols) { in dumpPretty()
470 if (opts::pretty::Globals) { in dumpPretty()
496 if (opts::pretty::Externals) { in dumpPretty()
503 if (opts::pretty::Lines) { in dumpPretty()
[all …]
/external/mesa3d/bin/
Dget-pick-list.sh16 git show --pretty=medium --summary "$1" | grep -q -i -o "CC:.*mesa-stable"
21 git show --pretty=medium --summary "$1" | grep -q -i -o "CC:.*mesa-dev"
33 fixes=`git show --pretty=medium -s $1 | tr -d "\n" | \
98 git log --reverse --pretty=%H $latest_branchpoint > already_landed
101 git log --reverse --pretty=medium --grep="cherry picked from commit" $latest_branchpoint..HEAD |\
106 git log --reverse --pretty=%H -i --grep='^CC:.*mesa-stable\|^CC:.*mesa-dev\|\<fixes\>\|\<broken by\…
146 git --no-pager show --no-patch --pretty=oneline $sha
/external/llvm/test/tools/llvm-pdbdump/
Dregex-filter.test1 ; RUN: llvm-pdbdump pretty -symbols -globals -types %p/Inputs/FilterTest.pdb \
3 ; RUN: llvm-pdbdump pretty -types -exclude-types="GlobalTypedef|NestedTypedef" \
5 ; RUN: llvm-pdbdump pretty -types -exclude-types="GlobalEnum|NestedEnum" \
7 ; RUN: llvm-pdbdump pretty -types -symbols -globals -exclude-symbols="MemberVar|GlobalVar" \
9 ; RUN: llvm-pdbdump pretty -types -exclude-types="FilterTestClass" \
11 ; RUN: llvm-pdbdump pretty -symbols -globals -exclude-compilands="FilterTest.obj" \
13 ; RUN: llvm-pdbdump pretty -types -include-types="FilterTestClass" \
15 ; RUN: llvm-pdbdump pretty -types -symbols -globals -include-symbols="[[:<:]](IntGlobalVar|DoubleGl…
/external/cronet/buildtools/third_party/libc++/trunk/utils/libcxx/test/
Dconfig.py31 action.pretty(config, lit_config.params),
32 param.pretty(config, lit_config.params)))
41 action.pretty(config, lit_config.params),
42 feature.pretty(config)))
Ddsl.py338 def pretty(self, config, litParams): member in ConfigAction
367 def pretty(self, config, litParams): member in AddFeature
386 def pretty(self, config, litParams): member in AddFlag
406 def pretty(self, config, litParams): member in AddFlagIfSupported
425 def pretty(self, config, litParams): member in AddCompileFlag
444 def pretty(self, config, litParams): member in AddLinkFlag
463 def pretty(self, config, litParams): member in PrependLinkFlag
484 def pretty(self, config, litParams): member in AddOptionalWarningFlag
504 def pretty(self, config, litParams): member in AddSubstitution
568 def pretty(self, config): member in Feature
[all …]
/external/swiftshader/third_party/
Dupdate-llvm-10.sh44 LLVM_HEAD=`git log HEAD -n 1 --pretty=format:'%h'`
49 …LAST_TARGET_UPDATE=`git log --grep="^llvm-10-update: [0-9a-f]\{9\}$" -n 1 --pretty=format:'%h' ${T…
60 LLVM_CHANGE_LOG=`git log $LAST_SOURCE_UPDATE..$LLVM_HEAD --pretty=format:' %h %s'`
80 MERGE_SOURCE=`git log HEAD -n 1 --pretty=format:'%h'`
/external/elfutils/src/
Daddr2line.c141 static bool pretty; variable
272 pretty = true; in parse_opt()
335 printf ("%s%c", symname (name), pretty ? ' ' : '\n'); in print_dwarf_function()
348 if (pretty) in print_dwarf_function()
432 printf ("??%c", pretty ? ' ': '\n'); in print_addrsym()
434 printf ("(%s)+%#" PRIx64 "%c", name, addr, pretty ? ' ' : '\n'); in print_addrsym()
463 printf ("%c", pretty ? ' ' : '\n'); in print_addrsym()
685 printf ("0x%.*" PRIx64 "%s", width, addr, pretty ? ": " : "\n"); in handle_address()
696 printf ("%s%c", name, pretty ? ' ' : '\n'); in handle_address()
703 if ((show_functions || show_symbols) && pretty) in handle_address()
[all …]
/external/rust/crates/ryu/tests/
Df2s_test.rs34 fn pretty(f: f32) -> String { in pretty() function
78 assert_eq!(pretty(f32::NAN), "NaN"); in test_basic()
79 assert_eq!(pretty(f32::INFINITY), "inf"); in test_basic()
80 assert_eq!(pretty(f32::NEG_INFINITY), "-inf"); in test_basic()
Dd2s_test.rs36 fn pretty(f: f64) -> String { in pretty() function
85 assert_eq!(pretty(f64::NAN), "NaN"); in test_basic()
86 assert_eq!(pretty(f64::INFINITY), "inf"); in test_basic()
87 assert_eq!(pretty(f64::NEG_INFINITY), "-inf"); in test_basic()
/external/tensorflow/tensorflow/compiler/xla/mlir_hlo/tests/Dialect/mhlo/
Dmhlo_reduce_pretty_print.mlir10 // The lit-tests below tests the printing and parsing of the "pretty-printed"
13 // The test case is eligible for pretty-printing reduce-op.
28 // The test case is not eligible for pretty-printing reduce-op. The location of
50 // The test case is not eligible for pretty-printing reduce-op. The location of
67 // The test case is not eligible for pretty-printing reduce-op. More than two
84 // The test case is not eligible for pretty-printing reduce-op because of
100 // The test case is not eligible for pretty-printing reduce-op because of
116 // The test case is not eligible for pretty-printing reduce-op. More than one
135 // The test case is eligible for pretty-printing reduce-op with complex types.
150 // The test case is not eligible for pretty-printing reduce-op. During parsing
[all …]
/external/tensorflow/tensorflow/compiler/xla/mlir_hlo/stablehlo/tests/
Dprint_reduce.mlir10 // The lit-tests below tests the printing and parsing of the "pretty-printed"
13 // The test case is eligible for pretty-printing reduce-op.
28 // The test case is not eligible for pretty-printing reduce-op. The location of
50 // The test case is not eligible for pretty-printing reduce-op. The location of
67 // The test case is not eligible for pretty-printing reduce-op. More than two
84 // The test case is not eligible for pretty-printing reduce-op because of
100 // The test case is not eligible for pretty-printing reduce-op because of
116 // The test case is not eligible for pretty-printing reduce-op. More than one
135 // The test case is eligible for pretty-printing reduce-op with complex types.
150 // The test case is not eligible for pretty-printing reduce-op. During parsing
[all …]
/external/openthread/third_party/nlbuild-autotools/repo/automake/pre/macros/
Dpretty.am36 # PRETTY_CHECK profiles will be invoked for the 'pretty' and
37 # 'pretty-check' targets, respectively.
46 # This defines the subdirectories for which the recursive 'pretty' and
47 # 'pretty-check' targets will run against.
/external/llvm/test/DebugInfo/PDB/DIA/
Dpdbdump-flags.test1 ; RUN: llvm-pdbdump pretty %p/../Inputs/empty.pdb | FileCheck %s -check-prefix=NO_ARGS
2 ; RUN: llvm-pdbdump pretty -types %p/../Inputs/empty.pdb | FileCheck %s -check-prefix=TYPES
3 ; RUN: llvm-pdbdump pretty -compilands %p/../Inputs/empty.pdb | FileCheck %s -check-prefix=COMPILAN…
4 ; RUN: llvm-pdbdump pretty -types -compilands %p/../Inputs/empty.pdb | FileCheck %s -check-prefix=M…
/external/libxml2/os400/
Dxmllintcl.c52 vary2 * pretty; /* Pretty-print style. */ member
194 if (args->pretty && args->pretty->len && in main()
195 args->pretty->string[0] != '0') { in main()
197 vary4varg(&cmd, args->pretty); in main()
/external/google-styleguide/include/
Djsguide.js52 var pretty = document.createElement('script');
53 pretty.src = 'https://cdn.rawgit.com/google/code-prettify/master/loader/' +
55 document.body.appendChild(pretty);
/external/wpa_supplicant_8/wpa_supplicant/examples/
Dp2p-nfc.py171 print(message.pretty())
183 print(message.pretty())
222 print(message.pretty())
229 print(message.pretty())
288 print("Parsed handover request: " + request.pretty())
304 print(carrier.record.pretty())
334 print(carrier.record.pretty())
357 print(sel.pretty())
445 print(p2p_sel_data.pretty())
461 print(tag.ndef.message.pretty())
/external/drm_hwcomposer/.ci/
D.gitlab-ci-checkcommit.sh32 git log --pretty='%h' FETCH_HEAD..HEAD | while read h; do
33 subject=$(git show -s --pretty='%s' "$h")
39 commit_body=$(git show -s --pretty=%b "$h")
/external/ethtool/
Dconfigure.ac34 AC_ARG_ENABLE(pretty-dump,
35 … [ --enable-pretty-dump enable registers, EEPROM and SFP pretty dumps (enabled by default)],
40 [Define this to enable register, EEPROM and SFP pretty dumps.])
/external/rust/crates/ryu/tests/macros/
Dmod.rs3 assert_eq!(pretty($f), stringify!($f));
6 assert_eq!(pretty(-$f), concat!("-", stringify!($f)));
/external/iproute2/lib/
Djson_writer.c28 bool pretty; /* optional whitepace */ member
43 if (!self->pretty) in jsonw_eol()
103 self->pretty = false; in jsonw_new()
123 self->pretty = on; in jsonw_pretty()
155 if (self->pretty) in jsonw_name()
/external/python/google-api-python-client/googleapiclient/
Dschema.py83 self.pretty = {}
106 if name not in self.pretty:
107 self.pretty[name] = _SchemaToStruct(
113 return self.pretty[name]

12345678910>>...27