/external/autotest/tko/ |
D | machine_aggr.cgi | 71 kernels.add(test.kernel().printable) 75 if not re.match(released_kernel, test.kernel().printable)\ 76 and not re.match(rc_kernel, test.kernel().printable): 77 kernels.add(test.kernel().printable) 80 if re.match(kernel, test.kernel().printable): 81 kernels.add(test.kernel().printable) 99 if not data.has_key(test.kernel().printable): 100 data[test.kernel().printable] = list() 106 data[test.kernel().printable].extend(results)
|
D | frontend.py | 192 def __init__(self, db, idx, hash, base, printable): argument 197 self.printable = printable
|
D | db.py | 654 printable = kernel.base 665 'printable':printable}, 670 printable += ' p%d' % (kver) 672 {'printable':printable},
|
D | machine_test_attribute_graph.cgi | 28 data[test.kernel().printable] = iterations[key]
|
/external/v8/src/regexp/ |
D | regexp-macro-assembler-tracer.cc | 209 PrintablePrinter printable(limit); in CheckCharacterLT() local 212 *printable, in CheckCharacterLT() 220 PrintablePrinter printable(limit); in CheckCharacterGT() local 223 *printable, in CheckCharacterGT() 230 PrintablePrinter printable(c); in CheckCharacter() local 233 *printable, in CheckCharacter() 255 PrintablePrinter printable(c); in CheckNotCharacter() local 258 *printable, in CheckNotCharacter() 268 PrintablePrinter printable(c); in CheckCharacterAfterAnd() local 271 *printable, in CheckCharacterAfterAnd() [all …]
|
D | interpreter-irregexp.cc | 72 bool printable = (current_char < 127 && current_char >= 32); in TraceInterpreter() local 74 printable ? in TraceInterpreter() 82 printable ? current_char : '.', in TraceInterpreter()
|
/external/python/cpython2/Doc/library/ |
D | quopri.rst | 1 :mod:`quopri` --- Encode and decode MIME quoted-printable data 5 :synopsis: Encode and decode files using the MIME quoted-printable encoding. 9 pair: quoted-printable; encoding 10 single: MIME; quoted-printable encoding 16 This module performs quoted-printable transport encoding and decoding, as 19 The quoted-printable encoding is designed for data where there are relatively 37 Encode the contents of the *input* file and write the resulting quoted-printable
|
D | mimify.rst | 17 of) a message entails encoding the message as quoted-printable if it contains 19 part of) a message entails undoing the quoted-printable encoding. Mimify and 34 Copy the message in *infile* to *outfile*, converting parts to quoted-printable 43 Copy the message in *infile* to *outfile*, decoding all quoted-printable parts. 65 By default, a part will be encoded as quoted-printable when it contains any 95 Encode and decode MIME quoted-printable files.
|
D | email.encoders.rst | 30 Encodes the payload into quoted-printable form and sets the 31 :mailheader:`Content-Transfer-Encoding` header to ``quoted-printable`` [#]_. 32 This is a good encoding to use when most of your payload is normal printable 41 compact form than quoted-printable. The drawback of base64 encoding is that it
|
D | email.charset.rst | 29 Certain character sets must be encoded with quoted-printable or base64 when used 38 quoted-printable and no output conversion codec is necessary. If 57 quoted-printable), ``Charset.BASE64`` (for base64 encoding), or 97 This is either the string ``quoted-printable`` or ``base64`` depending on 103 Returns the string ``quoted-printable`` if *body_encoding* is ``QP``, 155 quoted-printable or base64 encoding. 169 The type of encoding (base64 or quoted-printable) will be based on the 182 The type of encoding (base64 or quoted-printable) will be based on the 218 quoted-printable, ``Charset.BASE64`` for base64 encoding, 219 ``Charset.SHORTEST`` for the shortest of quoted-printable or base64 encoding,
|
D | curses.ascii.rst | 135 Checks for ASCII any printable character except space. 145 Checks for any ASCII printable character including space. 150 Checks for any printable ASCII character which is not a space or an alphanumeric 215 Return a string representation of the ASCII character *c*. If *c* is printable,
|
D | binascii.rst | 56 Convert a block of quoted-printable data back to binary and return the binary 63 Convert binary data to a line(s) of ASCII characters in quoted-printable 179 Support for quoted-printable encoding used in MIME email messages.
|
/external/e2fsprogs/debugfs/ |
D | xattrs.c | 23 int printable = 0; in dump_xattr_string() local 29 printable++; in dump_xattr_string() 31 if (printable <= len*7/8) in dump_xattr_string() 32 printable = 0; in dump_xattr_string() 35 if (printable) in dump_xattr_string()
|
/external/apache-http/src/org/apache/commons/codec/net/ |
D | QuotedPrintableCodec.java | 141 public static final byte[] encodeQuotedPrintable(BitSet printable, byte[] bytes) { in encodeQuotedPrintable() argument 145 if (printable == null) { in encodeQuotedPrintable() 146 printable = PRINTABLE_CHARS; in encodeQuotedPrintable() 154 if (printable.get(b)) { in encodeQuotedPrintable()
|
/external/v8/src/compiler/ |
D | instruction.cc | 112 const PrintableInstructionOperand& printable) { in operator <<() argument 113 const InstructionOperand& op = printable.op_; in operator <<() 114 const RegisterConfiguration* conf = printable.register_configuration_; in operator <<() 254 const PrintableMoveOperands& printable) { in operator <<() argument 255 const MoveOperands& mo = *printable.move_operands_; in operator <<() 256 PrintableInstructionOperand printable_op = {printable.register_configuration_, in operator <<() 370 const PrintableParallelMove& printable) { in operator <<() argument 371 const ParallelMove& pm = *printable.parallel_move_; in operator <<() 377 PrintableMoveOperands pmo = {printable.register_configuration_, move}; in operator <<() 512 const PrintableInstruction& printable) { in operator <<() argument [all …]
|
/external/bison/lib/ |
D | quotearg.c | 523 bool printable; in quotearg_buffer_restyled() local 528 printable = isprint (c) != 0; in quotearg_buffer_restyled() 536 printable = true; in quotearg_buffer_restyled() 549 printable = false; in quotearg_buffer_restyled() 554 printable = false; in quotearg_buffer_restyled() 582 printable = false; in quotearg_buffer_restyled() 589 if (1 < m || (backslash_escapes && ! printable)) in quotearg_buffer_restyled() 597 if (backslash_escapes && ! printable) in quotearg_buffer_restyled()
|
/external/swiftshader/third_party/subzero/src/ |
D | IceInst.def | 35 /* enum value, printable string, commutative */ \ 57 /* enum value, printable string */ \ 71 /* enum value, printable string */ \ 91 /* enum value, reverse, printable string */ \
|
D | IceTypes.def | 27 /* enum value, printable string, is_elf64, e_machine, e_flags */ \ 37 /* printable string (size and alignment in bytes), */ \
|
/external/libcups/filter/ |
D | Makefile | 181 --css ../doc/cups-printable.css \ 190 --css ../doc/cups-printable.css \ 196 --css ../doc/cups-printable.css \ 202 --css ../doc/cups-printable.css \ 208 --css ../doc/cups-printable.css \
|
/external/webrtc/webrtc/base/ |
D | macutils.cc | 53 bool printable = true; in DecodeFourChar() local 59 printable = false; in DecodeFourChar() 63 if (printable) { in DecodeFourChar()
|
/external/python/cpython2/Lib/email/test/data/ |
D | msg_15.txt | 21 Content-transfer-encoding: quoted-printable 27 Content-transfer-encoding: quoted-printable
|
D | msg_33.txt | 19 Content-Transfer-Encoding: quoted-printable
|
/external/curl/tests/server/ |
D | fake_ntlm.c | 50 static char *printable(char *inbuf, size_t inlength) in printable() function 269 msgbuf = printable(buf, 0); in main()
|
/external/libunwind/doc/ |
D | unw_regname.tex | 19 The \Func{unw\_regname}() routine returns a printable name for
|
/external/antlr/antlr-3.4/runtime/C/include/ |
D | antlr3string.h | 258 …pANTLR3_STRING (*printable)(struct ANTLR3_STRING_FACTORY_struct * factory, pANTLR3_STRING string); member
|