Home
last modified time | relevance | path

Searched +full:- +full:- +full:banner (Results 1 – 25 of 192) sorted by relevance

12345678

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DIRPrintingPasses.cpp1 //===--- IRPrintingPasses.cpp - Module and Function printing passes -------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
24 PrintModulePass::PrintModulePass(raw_ostream &OS, const std::string &Banner, in PrintModulePass() argument
26 : OS(OS), Banner(Banner), in PrintModulePass()
31 if (!Banner.empty()) in run()
32 OS << Banner << "\n"; in run()
39 if (!BannerPrinted && !Banner.empty()) { in run()
40 OS << Banner << "\n"; in run()
[all …]
/third_party/cups-filters/filter/
Dbanner.c17 #include "banner.h"
54 while (isspace(*--p)) in parse_line()
67 if (!strcasecmp(tok, "imageable-area")) in parse_show()
69 else if (!strcasecmp(tok, "job-billing")) in parse_show()
71 else if (!strcasecmp(tok, "job-id")) in parse_show()
73 else if (!strcasecmp(tok, "job-name")) in parse_show()
75 else if (!strcasecmp(tok, "job-originating-host-name")) in parse_show()
77 else if (!strcasecmp(tok, "job-originating-user-name")) in parse_show()
79 else if (!strcasecmp(tok, "job-uuid")) in parse_show()
83 else if (!strcasecmp(tok, "paper-name")) in parse_show()
[all …]
Dbannertopdf.c40 #include "banner.h"
92 *width = pagesize->width; in get_pagesize()
93 *length = pagesize->length; in get_pagesize()
95 media_limits[0] = get_float_option("page-left", in get_pagesize()
97 pagesize->left); in get_pagesize()
98 media_limits[1] = get_float_option("page-bottom", in get_pagesize()
100 pagesize->bottom); in get_pagesize()
101 media_limits[2] = get_float_option("page-right", in get_pagesize()
103 fabs(pagesize->right)); in get_pagesize()
104 media_limits[3] = get_float_option("page-top", in get_pagesize()
[all …]
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/
Dbanner.dart2 // Use of this source code is governed by a BSD-style license that can be
14 const double _kOffset = 40.0; // distance to bottom of banner, at a 45 degree angle inwards
15 const double _kHeight = 12.0; // height of banner
16 const double _kBottomOffset = _kOffset + 0.707 * _kHeight; // offset plus sqrt(2)/2 * banner height
17 const Rect _kRect = Rect.fromLTWH(-_kOffset, _kOffset - _kHeight, _kOffset * 2.0, _kHeight);
27 /// Where to show a [Banner].
30 /// (which can be overridden by [Banner.layoutDirection]).
32 /// Show the banner in the top-right corner when the ambient [Directionality]
33 /// (or [Banner.layoutDirection]) is [TextDirection.rtl] and in the top-left
37 /// Show the banner in the top-left corner when the ambient [Directionality]
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Passes/
DStandardInstrumentations.cpp1 //===- Standard pass instrumentations handling ----------------*- C++ -*--===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
10 /// This file defines IR-printing pass instrumentation callbacks as well as
13 //===----------------------------------------------------------------------===//
40 if (!llvm::isFunctionInPrintList(F->getName())) in unwrapModule()
42 const Module *M = F->getParent(); in unwrapModule()
43 return std::make_pair(M, formatv(" (function: {0})", F->getName()).str()); in unwrapModule()
52 return std::make_pair(M, formatv(" (scc: {0})", C->getName()).str()); in unwrapModule()
60 const Function *F = L->getHeader()->getParent(); in unwrapModule()
[all …]
/third_party/openssl/.github/workflows/
Dci.yml1 # Copyright 2021-2022 The OpenSSL Project Authors. All Rights Reserved.
14 # BUILDOPTS: "-j4"
15 # HARNESS_JOBS: "${HARNESS_JOBS:-4}"
19 # - make="make -s"
26 runs-on: ubuntu-latest
28 - name: install unifdef
30 sudo apt-get update
31 sudo apt-get -yq --no-install-suggests --no-install-recommends --force-yes install unifdef
32 - uses: actions/checkout@v2
34 fetch-depth: 0
[all …]
Dwindows.yml1 # Copyright 2021-2022 The OpenSSL Project Authors. All Rights Reserved.
21 - windows-2019
22 - windows-2022
24 - arch: win64
25 config: enable-fips
26 - arch: win32
27 config: --strict-warnings no-fips
28 runs-on: ${{matrix.os}}
30 - uses: actions/checkout@v2
31 - uses: ilammy/msvc-dev-cmd@v1
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DMachineFunctionPrinterPass.cpp1 //===-- MachineFunctionPrinterPass.cpp ------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
25 /// MachineFunctionPrinterPass - This is a pass to dump the IR of a
32 const std::string Banner; member
35 MachineFunctionPrinterPass(raw_ostream &os, const std::string &banner) in MachineFunctionPrinterPass()
36 : MachineFunctionPass(ID), OS(os), Banner(banner) {} in MachineFunctionPrinterPass()
49 OS << "# " << Banner << ":\n"; in runOnMachineFunction()
59 INITIALIZE_PASS(MachineFunctionPrinterPass, "machineinstr-printer",
[all …]
/third_party/python/Lib/
Dcode.py54 also handles run-time exceptions, except for SystemExit).
188 def interact(self, banner=None, exitmsg=None): argument
191 The optional banner argument specifies the banner to print
192 before the first interaction; by default it prints a banner
195 to confuse this with the real interpreter -- since it's so
213 if banner is None:
217 elif banner:
218 self.write("%s\n" % str(banner))
269 The base implementation uses the built-in function
278 def interact(banner=None, readfunc=None, local=None, exitmsg=None): argument
[all …]
/third_party/flutter/flutter/packages/flutter/test/widgets/
Dbanner_test.dart2 // Use of this source code is governed by a BSD-style license that can be
26 test('A Banner with a location of topStart paints in the top left (LTR)', () {
51 expect(rotateCommand.positionalArguments[0], equals(-math.pi / 4.0));
54 test('A Banner with a location of topStart paints in the top right (RTL)', () {
82 test('A Banner with a location of topEnd paints in the top right (LTR)', () {
110 test('A Banner with a location of topEnd paints in the top left (RTL)', () {
135 expect(rotateCommand.positionalArguments[0], equals(-math.pi / 4.0));
138 test('A Banner with a location of bottomStart paints in the bottom left (LTR)', () {
166 test('A Banner with a location of bottomStart paints in the bottom right (RTL)', () {
191 expect(rotateCommand.positionalArguments[0], equals(-math.pi / 4.0));
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DIRPrintingPasses.h1 //===- IRPrintingPasses.h - Passes to print out IR constructs ---*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
16 //===----------------------------------------------------------------------===//
37 const std::string &Banner = "",
43 const std::string &Banner = "");
48 /// non-printable characters in it.
54 /// isFunctionInPrintList - returns true if a function should be printed via
55 // debugging options like -print-after-all/-print-before-all.
59 /// forcePrintModuleIR - returns true if IR printing passes should
[all …]
/third_party/python/Doc/library/
Dcode.rst1 :mod:`code` --- Interpreter base classes
5 :synopsis: Facilities to implement read-eval-print loops.
9 --------------
11 The ``code`` module provides facilities to implement read-eval-print loops in
33 .. function:: interact(banner=None, readfunc=None, local=None, exitmsg=None)
35 Convenience function to run a read-eval-print loop. This creates a new
40 method of the instance is then run with *banner* and *exitmsg* passed as the
41 banner and exit message to use, if provided. The console object is discarded
51 main loop (a.k.a. the read-eval-print loop). The tricky part is to determine
69 .. _interpreter-objects:
[all …]
/third_party/flutter/flutter/packages/flutter/lib/src/scheduler/
Ddebug.dart2 // Use of this source code is governed by a BSD-style license that can be
10 /// Print a banner at the beginning of each frame.
13 /// have a banner giving the frame number and the time stamp of the frame.
16 /// [runApp]) will have a label saying "warm-up frame" instead of the time stamp
20 /// To include a banner at the end of each frame as well, to distinguish
21 /// intra-frame output from inter-frame output, set [debugPrintEndFrameBanner]
34 /// Print a banner at the end of each frame.
56 /// See [the scheduler library](scheduler/scheduler-library.html) for a complete
/third_party/flutter/flutter/examples/flutter_gallery/lib/demo/material/
Dbanner_demo.dart2 // Use of this source code is governed by a BSD-style license that can be
18 static const String routeName = '/material/banner';
50 final Widget banner = MaterialBanner(
76 title: const Text('Banner'),
84 child: Text('Reset the banner'),
103 return banner;
/third_party/node/tools/node-lint-md-cli-rollup/
Drollup.config.js3 const { nodeResolve } = require('@rollup/plugin-node-resolve');
4 const commonjs = require('@rollup/plugin-commonjs');
5 const json = require('@rollup/plugin-json');
8 input: 'src/cli-entry.mjs',
25 name: 'brute-replace',
28 if (normID === '/node_modules/concat-stream/index.js') {
29 return code.replace('\'readable-stream\'', '\'stream\'');
31 if (normID === '/node_modules/unified-args/lib/options.js') {
34 if (normID === '/node_modules/chokidar/lib/fsevents-handler.js') {
49 name: 'banner',
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DLoopPassManager.cpp1 //===- LoopPassManager.cpp - Loop pass management -------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
37 dbgs() << "Running pass: " << Pass->name() << " on " << L; in run()
44 PreservedAnalyses PassPA = Pass->run(L, AM, AR, U); in run()
97 PrintLoopPass::PrintLoopPass(raw_ostream &OS, const std::string &Banner) in PrintLoopPass() argument
98 : OS(OS), Banner(Banner) {} in PrintLoopPass()
103 printLoop(L, OS, Banner); in run()
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/
Dgypsh.py2 # Use of this source code is governed by a BSD-style license that can be
13 The expected usage is "gyp -f gypsh -D OS=desired_os".
50 # Use a banner that looks like the stock Python one and like what
53 banner='Python %s on %s\nlocals.keys() = %s\ngypsh' % \
56 code.interact(banner, local=locals)
/third_party/node/tools/gyp/pylib/gyp/generator/
Dgypsh.py2 # Use of this source code is governed by a BSD-style license that can be
13 The expected usage is "gyp -f gypsh -D OS=desired_os".
49 # Use a banner that looks like the stock Python one and like what
52 banner = "Python %s on %s\nlocals.keys() = %s\ngypsh" % (
58 code.interact(banner, local=locals)
/third_party/skia/site/
Dconfig.toml43 id = "UA-18058-16"
72 # images = ["images/project-illustration.png"]
78 # Flag used in the "version-banner" partial to decide whether to display a
79 # banner on every page indicating that this is an archived version of the docs.
80 # Set this flag to "true" if you want to display the banner.
84 # Used in the "version-banner" partial to display a version number for the
88 # A link to latest version of the docs. Used in the "version-banner" partial to
92 # Repository configuration (URLs for in-page links to opening issues and suggesting changes)
105 gcs_engine_id = "009791159600898516779:8-nlv0iznho"
149 url = "https://groups.google.com/g/skia-discuss"
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
Dcircular_raw_ostream.h1 //===-- llvm/Support/circular_raw_ostream.h - Buffered streams --*- C++ -*-===//
8 //===----------------------------------------------------------------------===//
13 //===----------------------------------------------------------------------===//
21 /// circular_raw_ostream - A raw_ostream which *can* save its data
27 /// TAKE_OWNERSHIP - Tell this stream that it owns the underlying
33 /// REFERENCE_ONLY - Tell this stream it should not manage the
39 /// TheStream - The real stream we output to. We set it to be
44 /// OwnsStream - Are we responsible for managing the underlying
49 /// BufferSize - The size of the buffer in bytes.
53 /// BufferArray - The actual buffer storage.
[all …]
/third_party/flutter/skia/experimental/tools/
Dandroid_skp_capture.sh5 # Use of this source code is governed by a BSD-style license that can be
8 if [ -z "$1" ]; then
13 if ! command -v adb > /dev/null 2>&1; then
14 if [ -x "${ANDROID_SDK_ROOT}/platform-tools/adb" ]; then
16 "${ANDROID_SDK_ROOT}/platform-tools/adb" "$@"
28 local_path="$(date '+%Y-%m-%d_%H%M%S')_${package}.skp"
35 3) printf '\b-';;
38 spin=$(( ( ${spin:-0} + 1 ) % 4 ))
42 banner() { function
47 banner '...WAITING...'
[all …]
/third_party/skia/experimental/tools/
Dandroid_skp_capture.sh5 # Use of this source code is governed by a BSD-style license that can be
8 if [ -z "$1" ]; then
13 if ! command -v adb > /dev/null 2>&1; then
14 if [ -x "${ANDROID_SDK_ROOT}/platform-tools/adb" ]; then
16 "${ANDROID_SDK_ROOT}/platform-tools/adb" "$@"
28 local_path="$(date '+%Y-%m-%d_%H%M%S')_${package}.skp"
35 3) printf '\b-';;
38 spin=$(( ( ${spin:-0} + 1 ) % 4 ))
42 banner() { function
47 banner '...WAITING...'
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
Dcircular_raw_ostream.h1 //===-- llvm/Support/circular_raw_ostream.h - Buffered streams --*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
20 /// circular_raw_ostream - A raw_ostream which *can* save its data
26 /// TAKE_OWNERSHIP - Tell this stream that it owns the underlying
32 /// REFERENCE_ONLY - Tell this stream it should not manage the
38 /// TheStream - The real stream we output to. We set it to be
43 /// OwnsStream - Are we responsible for managing the underlying
48 /// BufferSize - The size of the buffer in bytes.
[all …]
/third_party/flutter/flutter/packages/flutter/lib/src/material/
Dbanner.dart2 // Use of this source code is governed by a BSD-style license that can be
13 /// A Material Design banner.
15 /// A banner displays an important, succinct message, and provides actions for
16 /// users to address (or dismiss the banner). A user action is required for it
29 /// [backgroundColor] can be provided to customize the banner.
31 /// This widget is unrelated to the widgets library [Banner] widget.
35 /// The [actions], [content], and [forceActionsBelow] must be non-null.
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DLoopPass.cpp1 //===- LoopPass.cpp - Loop Pass and Loop Pass Manager ---------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
13 //===----------------------------------------------------------------------===//
30 #define DEBUG_TYPE "loop-pass-manager"
34 /// PrintLoopPass - Print a Function corresponding to a Loop.
38 std::string Banner; member in __anon00aabdde0111::PrintLoopPassWrapper
43 PrintLoopPassWrapper(raw_ostream &OS, const std::string &Banner) in PrintLoopPassWrapper() argument
44 : LoopPass(ID), OS(OS), Banner(Banner) {} in PrintLoopPassWrapper()
51 auto BBI = llvm::find_if(L->blocks(), [](BasicBlock *BB) { return BB; }); in runOnLoop()
[all …]

12345678