Home
last modified time | relevance | path

Searched refs:printable (Results 1 – 25 of 101) sorted by relevance

12345

/external/autotest/tko/
Dmachine_aggr.cgi71 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)
Dfrontend.py192 def __init__(self, db, idx, hash, base, printable): argument
197 self.printable = printable
Ddb.py654 printable = kernel.base
665 'printable':printable},
670 printable += ' p%d' % (kver)
672 {'printable':printable},
Dmachine_test_attribute_graph.cgi28 data[test.kernel().printable] = iterations[key]
/external/v8/src/regexp/
Dregexp-macro-assembler-tracer.cc209 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 …]
Dinterpreter-irregexp.cc72 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/
Dquopri.rst1 :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
Dmimify.rst17 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.
Demail.encoders.rst30 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
Demail.charset.rst29 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,
Dcurses.ascii.rst135 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,
Dbinascii.rst56 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/
Dxattrs.c23 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/
DQuotedPrintableCodec.java141 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/
Dinstruction.cc112 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/
Dquotearg.c523 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/
DIceInst.def35 /* enum value, printable string, commutative */ \
57 /* enum value, printable string */ \
71 /* enum value, printable string */ \
91 /* enum value, reverse, printable string */ \
DIceTypes.def27 /* enum value, printable string, is_elf64, e_machine, e_flags */ \
37 /* printable string (size and alignment in bytes), */ \
/external/libcups/filter/
DMakefile181 --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/
Dmacutils.cc53 bool printable = true; in DecodeFourChar() local
59 printable = false; in DecodeFourChar()
63 if (printable) { in DecodeFourChar()
/external/python/cpython2/Lib/email/test/data/
Dmsg_15.txt21 Content-transfer-encoding: quoted-printable
27 Content-transfer-encoding: quoted-printable
Dmsg_33.txt19 Content-Transfer-Encoding: quoted-printable
/external/curl/tests/server/
Dfake_ntlm.c50 static char *printable(char *inbuf, size_t inlength) in printable() function
269 msgbuf = printable(buf, 0); in main()
/external/libunwind/doc/
Dunw_regname.tex19 The \Func{unw\_regname}() routine returns a printable name for
/external/antlr/antlr-3.4/runtime/C/include/
Dantlr3string.h258 …pANTLR3_STRING (*printable)(struct ANTLR3_STRING_FACTORY_struct * factory, pANTLR3_STRING string); member

12345