/external/libcups/systemv/ |
D | cupstestppd.c | 6 * Copyright © 2007-2018 by Apple Inc. 7 * Copyright © 1997-2007 by Easy Software Products, all rights reserved. 19 #include <cups/cups-private.h> 21 #include <cups/ppd-private.h> 114 * 'main()' - Main entry for test program. 117 int /* O - Exit status */ 118 main(int argc, /* I - Number of command-line args */ in main() 119 char *argv[]) /* I - Command-line arguments */ in main() 145 ppd_choice_t *choice; /* Standard UI option choice */ in main() local 156 * Display PPD files for each file listed on the command-line... in main() [all …]
|
/external/libxml2/test/relaxng/OASIS/ |
D | spectest.xml | 9 <section>3</section> 13 <section>3</section> 19 <section>3</section> 34 <section>3</section> 45 <section>3</section> 54 <section>3</section> 64 <section>3</section> 80 <section>3</section> 96 <section>3</section> 111 <section>3</section> [all …]
|
/external/llvm-project/lld/test/mach-o/ |
D | cstring-sections.yaml | 1 # RUN: ld64.lld -arch x86_64 -r %s -o %t -print_atoms | FileCheck %s 3 # Test -keep_private_externs in -r mode. 6 --- !mach-o 8 file-type: MH_OBJECT 11 - segment: __TEXT 12 section: __objc_methname 17 - segment: __TEXT 18 section: __objc_classname 23 - segment: __TEXT 24 section: __cstring [all …]
|
D | exe-segment-overlap.yaml | 1 # RUN: ld64.lld -arch x86_64 %s -o %t %p/Inputs/x86_64/libSystem.yaml 2 # RUN: llvm-readobj --sections --section-data %t | FileCheck %s 4 --- !native 5 defined-atoms: 6 - name: _main 10 - name: _s2 14 - name: _kustom 18 section-choice: custom-required 19 section-name: __CUST/__custom 22 # CHECK-LABEL: Section { [all …]
|
D | sectcreate.yaml | 1 # RUN: ld64.lld -r -arch x86_64 -o %t -sectcreate __DATA __data \ 2 # RUN: %p/Inputs/hw.raw_bytes -print_atoms | FileCheck %s 4 # CHECK: --- !native 5 # CHECK: path: '<linker-internal>' 6 # CHECK: defined-atoms: 7 # CHECK: - scope: global 10 # CHECK: section-choice: custom-required 11 # CHECK: section-name: '__DATA/__data' 12 # CHECK: dead-strip: never
|
/external/libcups/ppdc/ |
D | ppdc-option.cxx | 4 // Copyright 2007-2011 by Apple Inc. 5 // Copyright 2002-2005 by Easy Software Products. 14 #include "ppdc-private.h" 18 // 'ppdcOption::ppdcOption()' - Create a new option. 21 ppdcOption::ppdcOption(ppdcOptType ot, // I - Option type in ppdcOption() 22 const char *n, // I - Option name in ppdcOption() 23 const char *t, // I - Option text in ppdcOption() 24 ppdcOptSection s, // I - Section in ppdcOption() 25 float o) // I - Ordering number in ppdcOption() 33 section = s; in ppdcOption() [all …]
|
D | ppdc.h | 4 // Copyright 2007-2019 by Apple Inc. 5 // Copyright 2002-2007 by Easy Software Products. 50 enum ppdcOptSection //// Option section 63 PPDC_PICKONE, // Single choice from list 219 class ppdcChoice //// Option Choice 224 ppdcString *name, // Name of choice 225 *text, // Human-readable text of choice 226 *code; // PS code of choice 241 *text; // Human-readable text of option 242 ppdcOptSection section; // Section for option code variable [all …]
|
D | ppdc-source.cxx | 4 // Copyright 2007-2018 by Apple Inc. 5 // Copyright 2002-2007 by Easy Software Products. 15 #include "ppdc-private.h" 46 // 'ppdcSource::ppdcSource()' - Load a driver source file. 49 ppdcSource::ppdcSource(const char *f, // I - File to read in ppdcSource() 50 cups_file_t *ffp)// I - File pointer to use in ppdcSource() 68 vars->add(new ppdcVariable("CUPS_VERSION", MAKE_STRING(CUPS_VERSION))); in ppdcSource() 69 vars->add(new ppdcVariable("CUPS_VERSION_MAJOR", MAKE_STRING(CUPS_VERSION_MAJOR))); in ppdcSource() 70 vars->add(new ppdcVariable("CUPS_VERSION_MINOR", MAKE_STRING(CUPS_VERSION_MINOR))); in ppdcSource() 71 vars->add(new ppdcVariable("CUPS_VERSION_PATCH", MAKE_STRING(CUPS_VERSION_PATCH))); in ppdcSource() [all …]
|
/external/libcups/cups/ |
D | ppd-emit.c | 4 * Copyright 2007-2019 by Apple Inc. 5 * Copyright 1997-2007 by Easy Software Products, all rights reserved. 17 #include "cups-private.h" 18 #include "debug-internal.h" 41 "<</PageSize[5 -2 roll]/ImagingBBox null>>setpagedevice\n"; 45 * 'ppdCollect()' - Collect all marked options that reside in the specified 46 * section. 52 int /* O - Number of options marked */ 53 ppdCollect(ppd_file_t *ppd, /* I - PPD file data */ in ppdCollect() 54 ppd_section_t section, /* I - Section to collect */ in ppdCollect() argument [all …]
|
D | ppd.c | 4 * Copyright © 2007-2019 by Apple Inc. 5 * Copyright © 1997-2007 by Easy Software Products, all rights reserved. 17 #include "cups-private.h" 18 #include "ppd-private.h" 19 #include "debug-internal.h" 28 #define PPD_TEXT 4 /* Line contained human-readable text */ 53 /* One-time initialization object */ 100 * 'ppdClose()' - Free all memory used by the PPD file. 104 ppdClose(ppd_file_t *ppd) /* I - PPD file record */ in ppdClose() 125 free(ppd->lang_encoding); in ppdClose() [all …]
|
D | ppd.h | 7 * Copyright © 2007-2019 by Apple Inc. 8 * Copyright © 1997-2007 by Easy Software Products, all rights reserved. 83 PPD_ORDER_DOCUMENT, /* ... must be in the DocumentSetup section */ 86 PPD_ORDER_PAGE, /* ... must be in the PageSetup section */ 87 PPD_ORDER_PROLOG /* ... must be in the Prolog section */ 92 PPD_CS_CMYK = -4, /* CMYK colorspace */ 106 PPD_MISSING_PPDADOBE4, /* Missing PPD-Adobe-4.x header */ 144 char text[PPD_MAX_TEXT]; /* Human-readable text, if any */ 154 char choice[PPD_MAX_NAME]; /* Computer-readable option name */ member 155 char text[PPD_MAX_TEXT]; /* Human-readable option name */ [all …]
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | VettingViewer.java | 65 private static final String TH_AND_STYLES = "<th class='tv-th' style='text-align:left'>"; 77 public enum Choice { enum in VettingViewer 79 * There is a console-check error 83 * My choice is not the winning item 101 * There is a console-check warning 123 // * There is a console-check error 133 Choice(char abbreviation, String buttonLabel, String description, int order) { in Choice() method in VettingViewer.Choice 141 …public static <T extends Appendable> T appendDisplay(Set<Choice> choices, String htmlMessage, T ta… in appendDisplay() 144 for (Choice item : choices) { in appendDisplay() 171 public static Choice fromString(String i) { in fromString() [all …]
|
/external/libxml2/test/relaxng/ |
D | spec_0.xml | 1 <?xml version="1.0" encoding="iso-8859-1"?> 3 <!-- ELEMENT declarations work around MSXML bug. --> 4 <!ELEMENT section ANY> 5 <!ATTLIST section id ID #IMPLIED> 26 <address><email>EB2M-MRT@asahi-net.or.jp</email></address> 74 url="mailto:relax-ng-comment@lists.oasis-open.org" 75 >relax-ng-comment@lists.oasis-open.org</ulink>.</para> 78 url="http://www.oasis-open.org/committees/relax-ng/spec-20011203-errata.html" 79 >http://www.oasis-open.org/committees/relax-ng/spec-20011203-errata.html</ulink 105 <section> [all …]
|
D | OpenDocumentSub.rng | 1 <?xml version="1.0" encoding="UTF-8"?> 2 <!-- 4 Relax-NG Schema 6 …** It's only a very small sub-set of the schema, meant for debugging text-notes-configuration elem… 7 --> 13 datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes" 35 xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" 36 xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 37 xmlns:smil="urn:oasis:names:tc:opendocument:xmlns:smil-compatible:1.0" 39 <define name="office-process-content"> [all …]
|
/external/autotest/ |
D | MODULE_LICENSE_LGPL | 42 1. Exception to Section 3 of the GNU GPL. 45 without being bound by section 3 of the GNU GPL. 67 code under terms of your choice, provided that, if the incorporated 81 You may convey a Combined Work under terms of your choice that, 106 manner specified by section 6 of the GNU GPL for conveying 113 of the Library that is interface-compatible with the Linked 117 be required to provide such information under section 6 of the 125 Information in the manner specified by section 6 of the GNU GPL 134 choice, if you do both of the following:
|
D | LGPL_LICENSE | 42 1. Exception to Section 3 of the GNU GPL. 45 without being bound by section 3 of the GNU GPL. 67 code under terms of your choice, provided that, if the incorporated 81 You may convey a Combined Work under terms of your choice that, 106 manner specified by section 6 of the GNU GPL for conveying 113 of the Library that is interface-compatible with the Linked 117 be required to provide such information under section 6 of the 125 Information in the manner specified by section 6 of the GNU GPL 134 choice, if you do both of the following:
|
/external/javaparser/ |
D | LICENSE.LGPL | 42 1. Exception to Section 3 of the GNU GPL. 45 without being bound by section 3 of the GNU GPL. 67 code under terms of your choice, provided that, if the incorporated 81 You may convey a Combined Work under terms of your choice that, 106 manner specified by section 6 of the GNU GPL for conveying 113 of the Library that is interface-compatible with the Linked 117 be required to provide such information under section 6 of the 125 Information in the manner specified by section 6 of the GNU GPL 134 choice, if you do both of the following:
|
/external/elfutils/ |
D | COPYING-LGPLV3 | 42 1. Exception to Section 3 of the GNU GPL. 45 without being bound by section 3 of the GNU GPL. 67 code under terms of your choice, provided that, if the incorporated 81 You may convey a Combined Work under terms of your choice that, 106 manner specified by section 6 of the GNU GPL for conveying 113 of the Library that is interface-compatible with the Linked 117 be required to provide such information under section 6 of the 125 Information in the manner specified by section 6 of the GNU GPL 134 choice, if you do both of the following:
|
/external/libusb/.private/ |
D | wbs.txt | 1 libusb 1.0 Windows binary snapshot - README 9 - Open existing or create a new project for your application 10 - Copy libusb.h, from the include\libusb-1.0\ directory, into your project and 12 Include Directories' section (Configuration Properties -> C/C++ -> General). 13 - Copy the relevant .lib file from MS32\ or MS64\ and add 'libusb-1.0.lib' to 14 your 'Additional Dependencies' (Configuration Properties -> Linker -> Input) 15 Also make sure that the directory where libusb-1.0.lib resides is added to 16 'Additional Library Directories' (Configuration Properties -> Linker 17 -> General) 18 - If you use the static version of the libusb library, make sure that [all …]
|
/external/libcups/man/ |
D | ppdcfile.5 | 4 .\" Copyright © 2007-2019 by Apple Inc. 5 .\" Copyright © 1997-2007 by Easy Software Products. 12 ppdcfile \- cups ppd compiler source file format (deprecated) 20 …ng curly braces ({ ... }); PPD files are written when a close brace or end-of-file is seen and a P… 52 \fBChoice \fIname \fB"\fIcode\fB"\fR 54 \fBChoice \fB"\fIname\fB/\fItext\fB" "\fIcode\fB"\fR 56 \fBColorDevice \fIboolean-value\fR 66 \fBCustomMedia \fIname width length left bottom right top \fB"\fIsize-code\fB" "\fIregion-code\fB"\… 68 …me\fB/\fItext\fB" \fIwidth length left bottom right top \fB"\fIsize-code\fB" "\fIregion-code\fB"\fR 70 \fBCutter \fIboolean-value\fR [all …]
|
/external/llvm-project/lld/test/ELF/ |
D | aarch64-feature-pac.s | 2 # RUN: llvm-mc -filetype=obj -triple=aarch64-linux-gnu %s -o %t.o 3 # RUN: llvm-mc -filetype=obj -triple=aarch64-linux-gnu %p/Inputs/aarch64-pac1.s -o %t1.o 4 # RUN: llvm-mc -filetype=obj -triple=aarch64-linux-gnu %p/Inputs/aarch64-func3.s -o %t2.o 5 # RUN: llvm-mc -filetype=obj -triple=aarch64-linux-gnu %p/Inputs/aarch64-func3-pac.s -o %t3.o 6 # RUN: llvm-mc -filetype=obj -triple=aarch64-linux-gnu %p/Inputs/aarch64-func2.s -o %tno.o 11 # RUN: ld.lld %tno.o %t3.o --shared -o %tno.so 12 # RUN: llvm-objdump -d --mattr=+v8.3a --no-show-raw-insn %tno.so | FileCheck --check-prefix=NOPAC %s 13 # RUN: llvm-readelf -x .got.plt %tno.so | FileCheck --check-prefix SOGOTPLT %s 14 # RUN: llvm-readelf --dynamic-table %tno.so | FileCheck --check-prefix NOPACDYN %s 17 # NOPAC-NEXT: 102b8: bl 0x102f0 <func3@plt> [all …]
|
/external/ImageMagick/m4/ |
D | framework.m4 | 44 # 1. Exception to Section 3 of the GNU GPL. 47 # without being bound by section 3 of the GNU GPL. 69 # code under terms of your choice, provided that, if the incorporated 83 # You may convey a Combined Work under terms of your choice that, 108 # manner specified by section 6 of the GNU GPL for conveying 115 # of the Library that is interface-compatible with the Linked 119 # be required to provide such information under section 6 of the 127 # Information in the manner specified by section 6 of the GNU GPL 136 # choice, if you do both of the following: 170 # [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND], [all …]
|
/external/libcups/doc/help/ |
D | api-ppd.html | 3 <!-- SECTION: Programming --> 7 <meta http-equiv="Content-Type" content="text/html;charset=utf-8"> 12 <style type="text/css"><!-- 14 font-family: lucida grande, geneva, helvetica, arial, sans-serif; 18 font-family: lucida grande, geneva, helvetica, arial, sans-serif; 21 H1 { font-size: 2em; } 22 H2 { font-size: 1.75em; } 23 H3 { font-size: 1.5em; } 24 H4 { font-size: 1.25em; } 27 font-family: monaco, courier, monospace; [all …]
|
/external/python/cpython3/Lib/distutils/command/ |
D | register.py | 21 ('list-classifiers', None, 24 'Will stop the registering if the meta-data are not fully compliant') 27 'verify', 'list-classifiers', 'strict'] 107 which is a ConfigParser-formatted file with a section 112 index-servers = 127 # see if we can short-cut and get the username/password from the 130 choice = '1' 134 choice = 'x' 139 while choice not in choices: 147 choice = input() [all …]
|
/external/python/cpython2/Lib/distutils/command/ |
D | register.py | 22 ('list-classifiers', None, 25 'Will stop the registering if the meta-data are not fully compliant') 28 'verify', 'list-classifiers', 'strict'] 108 which is a ConfigParser-formatted file with a section 113 index-servers = 128 # see if we can short-cut and get the username/password from the 131 choice = '1' 135 choice = 'x' 140 while choice not in choices: 149 choice = raw_input() [all …]
|