/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/boringssl/src/crypto/asn1/ |
asn1_par.c | 261 int i,printable=1; local 269 * printable */ 278 printable=0; 282 if (printable) 283 /* printable string */ 292 /* not printable => print octet string
|
/external/curl/tests/server/ |
fake_ntlm.c | 47 * Returns an allocated buffer with printable representation of input 50 static char *printable(char *inbuf, size_t inlength) function 266 msgbuf = printable(buf, 0);
|
/external/v8/test/unittests/compiler/ |
move-optimizer-unittest.cc | 48 PrintableInstructionSequence printable = {config(), sequence()}; local 50 << printable; local 56 PrintableInstructionSequence printable = {config(), sequence()}; local 58 << printable; local
|
instruction-selector-unittest.cc | 48 PrintableInstructionSequence printable = { local 52 << printable; local
|
/external/webrtc/webrtc/base/ |
macutils.cc | 53 bool printable = true; local 59 printable = false; 63 if (printable) {
|
/frameworks/base/tools/fonts/ |
fontchain_lint.py | 64 def printable(inp): function 66 return '{' + ', '.join([printable(seq) for seq in inp]) + '}' 68 return '<' + (', '.join([printable(ch) for ch in inp])) + '>' 275 '%s is not supported in the emoji font.' % printable(sequence)) 284 'Emoji font should not support %s.' % printable(sequence)) 290 printable(first), 291 printable(second))) 308 printable(equivalent_seqs),
|
/libcore/ojluni/src/main/java/java/security/ |
Identity.java | 414 String printable = name; local 416 printable += "[" + scope.getName() + "]"; 418 return printable;
|
/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/jetty/src/java/org/eclipse/jetty/util/ |
StringUtil.java | 342 public static String printable(String name) method in class:StringUtil 357 public static String printable(byte[] b) method in class:StringUtil
|
/external/v8/src/regexp/ |
interpreter-irregexp.cc | 75 bool printable = (current_char < 127 && current_char >= 32); local 77 printable ? 85 printable ? current_char : '.',
|
/bionic/libc/dns/nameser/ |
ns_name.c | 75 static int printable(int); 89 * Convert an encoded domain name to printable ascii as per RFC1035. 156 } else if (!printable(c)) { 907 printable(int ch) { function
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
string.py | 18 printable -- a string containing all characters considered printable 34 printable = digits + letters + punctuation + whitespace variable
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
string.py | 18 printable -- a string containing all characters considered printable 34 printable = digits + letters + punctuation + whitespace variable
|
/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
|
/prebuilts/python/linux-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
|
/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)
|
/external/opencv3/3rdparty/libjasper/ |
jpc_cs.c | 1439 int printable; local [all...] |
/external/v8/src/compiler/ |
graph-visualizer.cc | 493 PrintableInstruction printable = { local 496 os_ << j << " " << printable << " <|@\n"; local
|
pipeline.cc | 1423 PrintableInstructionSequence printable = {config, data->sequence()}; local 1425 << printable; local 1466 PrintableInstructionSequence printable = {config, data->sequence()}; local 1468 << printable; local [all...] |
/external/autotest/frontend/tko/ |
models.py | 141 printable = dbmodels.CharField(max_length=300) variable in class:Kernel
|
/packages/apps/Bluetooth/src/com/android/bluetooth/map/ |
BluetoothMapUtils.java | 430 * Method for converting quoted printable og base64 encoded string from headers. 450 //quoted printable 451 Log.d(TAG,"StripEncoding: Quoted Printable string : " + encodedText); 478 * Convert a quoted-printable encoded string to a UTF-8 string: 481 * @param text quoted-printable encoded UTF-8 text 529 Log.w(TAG, "Received wrongly quoted printable encoded text. " + 576 * Encodes an array of bytes into an array of quoted-printable 7-bit characters. 582 * @return UTF-8 string containing quoted-printable characters 594 BitSet printable = new BitSet(256); local 597 printable.set(i) [all...] |
/external/e2fsprogs/debugfs/ |
debugfs.c | 510 int printable = 0; local 513 /* check: is string "printable enough?" */ 516 printable++; 518 if (printable <= len*7/8) 519 printable = 0; 522 if (printable) [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/ |
UCharacterTest.java | 565 * Tests for printable characters 569 int printable[] = {0x0042, 0x00005f, 0x002014}; local 572 int size = printable.length; 575 if (!UCharacter.isPrintable(printable[i])) 577 errln("FAIL \\u" + hex(printable[i]) + 578 " expected to be a printable character"); 584 " expected not to be a printable character"); 587 logln("Ok \\u" + hex(printable[i]) + " and \\u" + 599 " is a ISO 8 control character hence not printable\n"); [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/ |
UCharacterTest.java | 561 * Tests for printable characters 565 int printable[] = {0x0042, 0x00005f, 0x002014}; local 568 int size = printable.length; 571 if (!UCharacter.isPrintable(printable[i])) 573 errln("FAIL \\u" + hex(printable[i]) + 574 " expected to be a printable character"); 580 " expected not to be a printable character"); 583 logln("Ok \\u" + hex(printable[i]) + " and \\u" + 595 " is a ISO 8 control character hence not printable\n"); [all...] |