| /third_party/notofonts/docs/ |
| D | reporter.html | 4 <meta charset="utf-8"> 6 <meta name="viewport" content="width=device-width, initial-scale=1"> 11 integrity="sha384-zCbKRCUGaJDkqS1kPbPd7TveP5iyJE0EjAuZQTgFLD2ylzuqKfdKlfG/eSrtxUkn" 16 integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" 21 integrity="sha384-fQybjgWLrvvRgtW6bFlB7jaZrFsaBXjsOMm/tB9LTS58ONXgqbR9W8oWht/amnpF" 26 href="https://cdn.jsdelivr.net/npm/bootstrap-select@1.13.18/dist/css/bootstrap-select.min.css" 30 src="https://cdn.jsdelivr.net/npm/bootstrap-select@1.13.18/dist/js/bootstrap-select.min.js" 39 z-index: 999; 43 .bootstrap-select .dropdown-toggle, 44 .bootstrap-select .dropdown-toggle:hover, [all …]
|
| /third_party/lame/misc/ |
| D | lameGUI.html | 4 <meta http-equiv="Content-Type" 5 content="text/html; charset=iso-8859-1"> 8 <!-- LAME HTML GUI V0.2 for LAME.VBS by Ralf Kempkens (ralf.kempkens@epost.de) 9 -- $ID$ 10 -- 11 -- purpose of this page is being a frontend for lame.vbs v0.3 or later 12 -- it is launched from lame.vbs if useGUI in lame.vbs is set to 'True' 13 -- automatically 14 -- lame will then use the options chosen 15 -- [all …]
|
| /third_party/vk-gl-cts/android/cts/ |
| D | AndroidTest.xml | 1 <?xml version="1.0" encoding="utf-8"?> 3 <!-- 10 http://www.apache.org/licenses/LICENSE-2.0 17 --> 18 <!-- 20 --> 22 <option name="cleanup-apks" value="true"/> 23 <option name="test-file-name" value="com.drawelements.deqp.apk"/> 26 <option name="cleanup" value="true"/> 27 <option name="disable" value="true"/> [all …]
|
| /third_party/mesa3d/src/util/ |
| D | 00-mesa-defaults.conf | 2 <!-- 22 built-ins (specifically gl_VertexID), which causes the vertex shaders to fail 29 --> 36 <!ELEMENT application (option+)> 43 <!ELEMENT engine (option+)> 45 <!-- engine_name_match: A regexp matching the engine name --> 46 <!-- engine_versions: A version in range format 47 (version 1 to 4 : "1:4") --> 52 <!ELEMENT option EMPTY> 53 <!ATTLIST option name CDATA #REQUIRED [all …]
|
| D | 00-radv-defaults.conf | 2 <!-- 8 --> 15 <!ELEMENT application (option+)> 22 <!ELEMENT engine (option+)> 24 <!-- engine_name_match: A regexp matching the engine name --> 25 <!-- engine_versions: A version in range format 26 (version 1 to 4 : "1:4") --> 31 <!ELEMENT option EMPTY> 32 <!ATTLIST option name CDATA #REQUIRED 36 <!-- NOTE: `executable` shouldn't be used for shader based drirc workarounds [all …]
|
| /third_party/pulseaudio/src/modules/alsa/mixer/paths/ |
| D | analog-input.conf.common | 6 # License, or (at your option) any later version. 23 ; input -- If we don't know the exact kind of input 24 ; input-microphone 25 ; input-microphone-internal 26 ; input-microphone-external 27 ; input-linein 28 ; input-video 29 ; input-radio 30 ; input-docking-microphone 31 ; input-docking-linein [all …]
|
| /third_party/nghttp2/lib/ |
| D | nghttp2_option.c | 2 * nghttp2 - HTTP/2 C Library 39 void nghttp2_option_del(nghttp2_option *option) { free(option); } in nghttp2_option_del() argument 41 void nghttp2_option_set_no_auto_window_update(nghttp2_option *option, int val) { in nghttp2_option_set_no_auto_window_update() argument 42 option->opt_set_mask |= NGHTTP2_OPT_NO_AUTO_WINDOW_UPDATE; in nghttp2_option_set_no_auto_window_update() 43 option->no_auto_window_update = val; in nghttp2_option_set_no_auto_window_update() 46 void nghttp2_option_set_peer_max_concurrent_streams(nghttp2_option *option, in nghttp2_option_set_peer_max_concurrent_streams() argument 48 option->opt_set_mask |= NGHTTP2_OPT_PEER_MAX_CONCURRENT_STREAMS; in nghttp2_option_set_peer_max_concurrent_streams() 49 option->peer_max_concurrent_streams = val; in nghttp2_option_set_peer_max_concurrent_streams() 52 void nghttp2_option_set_no_recv_client_magic(nghttp2_option *option, int val) { in nghttp2_option_set_no_recv_client_magic() argument 53 option->opt_set_mask |= NGHTTP2_OPT_NO_RECV_CLIENT_MAGIC; in nghttp2_option_set_no_recv_client_magic() [all …]
|
| /third_party/backends/doc/ |
| D | sane-test.man | 1 .TH sane\-test 5 "14 Jul 2008" "@PACKAGEVERSION@" "SANE Scanner Access Now Easy" 2 .IX sane\-test 4 sane\-test \- SANE backend for testing frontends 7 .B sane\-test 16 .B sane\-test 24 .I scanimage \-d test 30 Option 34 Option 40 color mode. The combination of color and 1-bit mode is quite obscure (8 44 Setting option [all …]
|
| /third_party/rust/rust/tests/ui/let-else/ |
| D | let-else-ref-bindings.stderr | 2 --> $DIR/let-else-ref-bindings.rs:16:38 4 LL | let Some(ref a): Option<&[u8]> = some else { return }; 5 | ^^^^ expected `Option<&[u8]>`, found `Option<Vec<u8>>` 7 = note: expected enum `Option<&[u8]>` 8 found enum `Option<Vec<u8>>` 9 help: try using `.as_deref()` to convert `Option<Vec<u8>>` to `Option<&[u8]>` 11 LL | let Some(ref a): Option<&[u8]> = some.as_deref() else { return }; 15 --> $DIR/let-else-ref-bindings.rs:20:38 17 LL | let Some(ref a): Option<&[u8]> = &some else { return }; 18 | ^^^^^ expected `Option<&[u8]>`, found `&Option<Vec<u8>>` [all …]
|
| /third_party/rust/rust/src/tools/clippy/tests/ui/ |
| D | option_option.stderr | 1 error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to di… 2 --> $DIR/option_option.rs:4:10 4 LL | const C: Option<Option<i32>> = None; 8 --> $DIR/option_option.rs:1:9 13 error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to di… 14 --> $DIR/option_option.rs:5:11 16 LL | static S: Option<Option<i32>> = None; 19 error: consider using `Option<T>` instead of `Option<Option<T>>` or a custom enum if you need to di… 20 --> $DIR/option_option.rs:7:13 22 LL | fn input(_: Option<Option<u8>>) {} [all …]
|
| D | ref_option_ref.stderr | 1 error: since `&` implements the `Copy` trait, `&Option<&T>` can be simplified to `Option<&T>` 2 --> $DIR/ref_option_ref.rs:10:23 4 LL | static REF_THRESHOLD: &Option<&i32> = &Some(&THRESHOLD); 5 | ^^^^^^^^^^^^^ help: try: `Option<&i32>` 7 = note: `-D clippy::ref-option-ref` implied by `-D warnings` 9 error: since `&` implements the `Copy` trait, `&Option<&T>` can be simplified to `Option<&T>` 10 --> $DIR/ref_option_ref.rs:12:18 12 LL | const REF_CONST: &Option<&i32> = &Some(CONST_THRESHOLD); 13 | ^^^^^^^^^^^^^ help: try: `Option<&i32>` 15 error: since `&` implements the `Copy` trait, `&Option<&T>` can be simplified to `Option<&T>` [all …]
|
| /third_party/python/Doc/library/ |
| D | optparse.rst | 1 :mod:`optparse` --- Parser for command line options 5 :synopsis: Command-line option parsing library. 17 -------------- 20 command-line options than the old :mod:`getopt` module. :mod:`optparse` uses a 21 more declarative style of command-line parsing: you create an instance of 31 parser.add_option("-f", "--file", dest="filename", 33 parser.add_option("-q", "--quiet", 40 on the command-line, for example:: 42 <yourscript> --file=outfile -q 45 ``options`` object returned by :meth:`parse_args` based on user-supplied [all …]
|
| /third_party/protobuf/src/google/protobuf/ |
| D | unittest_custom_options.proto | 1 // Protocol Buffers - Google's data interchange format 4 // Use of this source code is governed by a BSD-style 6 // https://developers.google.com/open-source/licenses/bsd 16 // Some generic_services option(s) added automatically. 17 // See: http://go/proto2-generic-services-default 18 option cc_generic_services = true; // auto-added 19 option java_generic_services = true; // auto-added 20 option py_generic_services = true; 22 // A custom file option (defined below). 23 option (file_opt1) = 9876543210; [all …]
|
| /third_party/nghttp2/doc/ |
| D | nghttp.1.rst | 10 -------- 15 ----------- 24 ------- 26 .. option:: -v, --verbose 30 this option multiple times increases verbosity. 32 .. option:: -n, --null-out 36 .. option:: -O, --remote-name 43 .. option:: -t, --timeout=<DURATION> 48 .. option:: -w, --window-bits=<N> 50 Sets the stream level initial window size to 2\*\*<N>-1. [all …]
|
| D | nghttpd.1.rst | 10 -------- 12 **nghttpd** [OPTION]... <PORT> [<PRIVATE_KEY> <CERT>] 15 ----------- 27 :option:`--no-tls` is specified. 32 :option:`--no-tls` is specified. 35 ------- 37 .. option:: -a, --address=<ADDR> 42 .. option:: -D, --daemon 44 Run in a background. If :option:`-D` is used, the current working 45 directory is changed to '*/*'. Therefore if this option [all …]
|
| /third_party/skia/m133/third_party/externals/expat/expat/doc/ |
| D | xmlwf.xml | 1 <!-- 10 Copyright (c) 2002-2003 Fred L. Drake, Jr. <fdrake@users.sourceforge.net> 12 Copyright (c) 2016-2024 Sebastian Pipping <sebastian@pipping.org> 19 --> 20 <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" 21 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [ 25 <!-- Please adjust this^^ date whenever cutting a new release. --> 59 <refpurpose>Determines if an XML document is well-formed</refpurpose> 70 <arg><option>-h</option></arg> 71 <arg><option>--help</option></arg> [all …]
|
| /third_party/protobuf/csharp/protos/ |
| D | unittest_custom_options_proto3.proto | 1 // Protocol Buffers - Google's data interchange format 4 // Use of this source code is governed by a BSD-style 6 // https://developers.google.com/open-source/licenses/bsd 23 // A custom file option (defined below). 24 option (file_opt1) = 9876543210; 31 option csharp_namespace = "UnitTest.Issues.TestProtos"; 76 option message_set_wire_format = false; 77 option (message_opt1) = -56; 82 option (oneof_opt1) = -99; 88 option (enum_opt1) = -789; [all …]
|
| /third_party/mesa3d/ |
| D | meson_options.txt | 1 # Copyright © 2017-2019 Intel Corporation 2 # SPDX-License-Identifier: MIT 4 option( 5 'split-debug', 8 …ription : 'split debug information (-gsplit-dwarf compile flag) and debug information in the gdb i… 10 option( 21 option( 22 'egl-native-platform', 32 option( 33 'android-stub', [all …]
|
| /third_party/pulseaudio/ |
| D | meson_options.txt | 1 option('daemon', 4 option('client', 7 option('doxygen', 10 option('gcov', 13 option('man', 16 option('tests', 20 option('system_user', 22 description : 'User for running the PulseAudio daemon as a system-wide instance (pulse)') 23 option('system_group', 25 description : 'Group for running the PulseAudio daemon as a system-wide instance (pulse)') [all …]
|
| /third_party/backends/backend/ |
| D | artec_eplus48u.conf.in | 1 # artec_eplus48u - SANE Backend configuration file 6 # This sections contains verbose description of each option. 11 # usb vendor-ID and product-ID 18 option artecFirmwareFile @DATADIR@/sane/artec_eplus48u/Artec48.usb 21 option ePlusPro 0 24 option redGamma 1.0 25 option greenGamma 1.0 26 option blueGamma 1.0 27 option masterGamma 1.9 30 option redOffset 0x28 [all …]
|
| /third_party/pulseaudio/man/ |
| D | pulse-daemon.conf.5.xml.in | 1 <?xml version="1.0"?><!--*-nxml-*--> 3 <?xml-stylesheet type="text/xsl" href="xmltoman.xsl" ?> 5 <!-- 11 License, or (at your option) any later version. 20 --> 22 <manpage name="pulse-daemon.conf" section="5" desc="PulseAudio daemon configuration file"> 33 a configuration file on startup. If the per-user file 42 order. In case the same option is set in multiple files, the last file to 43 set an option overrides earlier files. The main daemon.conf file is 63 <option> [all …]
|
| /third_party/skia/third_party/externals/expat/expat/doc/ |
| D | xmlwf.xml | 1 <!-- 10 Copyright (c) 2002-2003 Fred L. Drake, Jr. <fdrake@users.sourceforge.net> 12 Copyright (c) 2016-2021 Sebastian Pipping <sebastian@pipping.org> 19 --> 20 <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" 21 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [ 24 <!-- Please adjust the date whenever revising the manpage. --> 59 <refpurpose>Determines if an XML document is well-formed</refpurpose> 69 <arg choice="plain"><option>-h</option></arg> 73 <arg choice="plain"><option>-v</option></arg> [all …]
|
| /third_party/skia/third_party/externals/libpng/scripts/ |
| D | pnglibconf.dfa | 1 # scripts/pnglibconf.dfa - library build configuration control 3 @/*- pnglibconf.dfn intermediate file 7 com pnglibconf.h - library build configuration 11 com Copyright (c) 2018-2019 Cosmin Truta 12 com Copyright (c) 1998-2002,2004,2006-2018 Glenn Randers-Pehrson 22 # C compiler to generate 'pnglibconf.h' - a list of all the 33 # option <name> [requires ...] [if ...] [enables ...] [disabled] 43 # "," may be used to separate options on an 'option' line and is ignored; it 45 # part of the setting!) A comma at the end of an option line causes a 46 # continuation (the next line is included in the option too.) [all …]
|
| /third_party/cups/cups/ |
| D | ppd-conflicts.c | 2 * Option conflict management routines for CUPS. 4 * Copyright © 2020-2024 by OpenPrinting. 5 * Copyright 2007-2018 by Apple Inc. 6 * Copyright 1997-2007 by Easy Software Products, all rights reserved. 18 #include "cups-private.h" 19 #include "ppd-private.h" 20 #include "debug-internal.h" 40 const char *option); 43 const char *option, 51 * 'cupsGetConflicts()' - Get a list of conflicting options in a marked PPD. [all …]
|
| /third_party/rust/rust/src/tools/rustfmt/tests/source/ |
| D | issue-2164.rs | 4 …option :: Option < unsafe extern "C" fn ( env : * mut emacs_env , any_reference : emacs_value ) ->…
|