HomeSort by relevance Sort by last modified time
    Searched refs:printable (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/chromium_org/printing/android/java/src/org/chromium/printing/
PrintingController.java 50 * @param printable An object capable of starting native side PDF generation, i.e. typically
54 void startPrint(final Printable printable, PrintManagerDelegate printManager);
PrintingControllerImpl.java 74 private Printable mPrintable;
171 public void startPrint(final Printable printable, PrintManagerDelegate printManager) {
174 mPrintable = printable;
175 mPrintDocumentAdapterWrapper.print(printManager, printable.getTitle());
  /external/chromium_org/v8/src/
regexp-macro-assembler-tracer.cc 205 PrintablePrinter printable(limit);
208 *printable,
216 PrintablePrinter printable(limit);
219 *printable,
226 PrintablePrinter printable(c);
229 *printable,
249 PrintablePrinter printable(c);
252 *printable,
262 PrintablePrinter printable(c);
265 *printable,
    [all...]
interpreter-irregexp.cc 77 bool printable = (current_char < 127 && current_char >= 32); local
79 printable ?
87 printable ? current_char : '.',
  /device/sample/frameworks/PlatformLibrary/jni/
PlatformLibrary.cpp 124 const char* printable = env->GetStringUTFChars(str, NULL); local
125 if (printable != NULL) {
126 ALOGD("Reversing string '%s'\n", printable);
127 env->ReleaseStringUTFChars(str, printable);
  /external/apache-http/src/org/apache/commons/codec/net/
QuotedPrintableCodec.java 31 * Codec for the Quoted-Printable section of <a href="http://www.ietf.org/rfc/rfc1521.txt">RFC 1521 </a>.
34 * The Quoted-Printable encoding is intended to represent data that largely consists of octets that correspond to
35 * printable characters in the ASCII character set. It encodes the data in such a way that the resulting octets are
37 * data remains largely recognizable by humans. A body which is entirely ASCII may also be encoded in Quoted-Printable
46 * Rules #3, #4, and #5 of the quoted-printable spec are not implemented yet because the complete quoted-printable spec
49 * for those applications that do not require quoted-printable line formatting (rules #3, #4, #5), for instance Q codec.
71 * BitSet of printable characters as defined in RFC 1521.
80 // Static initializer for printable chars collection
112 * Encodes byte into its quoted-printable representation
    [all...]
  /external/bison/lib/
quotearg.c 523 bool printable; local
528 printable = isprint (c) != 0;
536 printable = true;
549 printable = false;
554 printable = false;
582 printable = false;
589 if (1 < m || (backslash_escapes && ! printable))
597 if (backslash_escapes && ! printable)
  /ndk/sources/host-tools/sed-4.2.1/lib/
quotearg.c 441 bool printable; local
446 printable = isprint (c) != 0;
454 printable = true;
467 printable = false;
472 printable = false;
500 printable = false;
507 if (1 < m || (backslash_escapes && ! printable))
515 if (backslash_escapes && ! printable)
  /external/libunwind/doc/
unw_regname.tex 19 The \Func{unw\_regname}() routine returns a printable name for
  /external/chromium_org/third_party/boringssl/src/crypto/asn1/
asn1_par.c 252 int i,printable=1; local
260 * printable */
269 printable=0;
273 if (printable)
274 /* printable string */
283 /* not printable => print octet string
  /external/openssl/crypto/asn1/
asn1_par.c 253 int i,printable=1; local
261 * printable */
270 printable=0;
274 if (printable)
275 /* printable string */
284 /* not printable => print octet string
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3string.h 255 /** Pointer to function that returns a copy of the string in printable form without any control
258 pANTLR3_STRING (*printable)(struct ANTLR3_STRING_FACTORY_struct * factory, pANTLR3_STRING string); member in struct:ANTLR3_STRING_FACTORY_struct
  /external/chromium_org/net/third_party/nss/ssl/
ssltrace.c 17 static const char printable[257] = { variable
57 *ap++ = printable[ch];
  /external/chromium_org/tools/gyp/pylib/gyp/
xcodeproj_file.py 545 # Some characters below the printable ASCII range are encoded specially:
580 made printable by returning their id property), and list and dict objects
590 printable = ''
603 printable += value.id
606 printable += self._EncodeString(value)
608 printable += self._EncodeString(value.encode('utf-8'))
610 printable += str(value)
614 printable += self._EncodeString('')
616 printable += self._EncodeString(value[0])
618 printable = '(' + se
    [all...]
  /bionic/libc/dns/nameser/
ns_name.c 81 static int printable(int);
95 * Convert an encoded domain name to printable ascii as per RFC1035.
162 } else if (!printable(c)) {
913 printable(int ch) { function
  /external/chromium_org/third_party/mesa/src/src/gallium/tools/trace/
model.py 159 if len(node.value) >= 4096 or node.value.strip(string.printable):
  /external/mesa3d/src/gallium/tools/trace/
model.py 159 if len(node.value) >= 4096 or node.value.strip(string.printable):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
charset.py 23 QP = 1 # Quoted-Printable
118 quoted-printable, Charset.BASE64 for base64 encoding, Charset.SHORTEST for
170 Certain character sets must be encoded with quoted-printable or base64
181 Charset.QP (for quoted-printable), Charset.BASE64 (for
256 This is either the string `quoted-printable' or `base64' depending on
262 Returns "quoted-printable" if self.body_encoding is QP.
268 return 'quoted-printable'
361 The type of encoding (base64 or quoted-printable) will be based on
390 The type of encoding (base64 or quoted-printable) will be based on
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_string.py 78 string.printable
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
charset.py 23 QP = 1 # Quoted-Printable
118 quoted-printable, Charset.BASE64 for base64 encoding, Charset.SHORTEST for
170 Certain character sets must be encoded with quoted-printable or base64
181 Charset.QP (for quoted-printable), Charset.BASE64 (for
256 This is either the string `quoted-printable' or `base64' depending on
262 Returns "quoted-printable" if self.body_encoding is QP.
268 return 'quoted-printable'
361 The type of encoding (base64 or quoted-printable) will be based on
390 The type of encoding (base64 or quoted-printable) will be based on
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_string.py 78 string.printable
  /external/lldb/test/pexpect-2.4/
ANSI.py 283 if ch not in string.printable:
  /external/tcpdump/
print-snmp.c 781 register int printable = 1, first = 1; local
784 for (i = asnlen; printable && i-- > 0; p++)
785 printable = ND_ISPRINT(*p);
787 if (printable) {
    [all...]
  /external/chromium_org/third_party/pexpect/
ANSI.py 317 if ch not in string.printable:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
string.py 18 printable -- a string containing all characters considered printable
34 printable = digits + letters + punctuation + whitespace variable

Completed in 950 milliseconds

1 2 3