/external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Date/ |
shell.js | 88 // print out bugnumber 152 * Begin printing functions. These functions use the shell's print function. 175 print( string ); 181 print( string ); 209 print( testcases[i].description + " = " + testcases[i].actual + " expected: " + testcases[i].expect ); 456 print( new Date( UTC(dst_start + LocalTZA())) ); 656 for ( p in o ) {print( p + ": " + o[p] );}
|
/external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/ |
run_chromium_webkit_tests.py | 234 print str(err) 666 print 717 """Display detailed progress output where we print the directory name [all...] |
/external/wpa_supplicant/ |
common.h | 297 * wpa_debug_printf_timestamp - Print timestamp for debug output 310 * This function is used to print conditional debugging and error messages. The 326 * This function is used to print conditional debugging and error messages. The 339 * This function is used to print conditional debugging and error messages. The 354 * This function is used to print conditional debugging and error messages. The 370 * This function is used to print conditional debugging and error messages. The 395 * This function is used to print conditional debugging and error messages. The
|
/hardware/ti/wlan/wl1271/platforms/os/linux/ |
Makefile | 306 @find ../../../. -type f -print | grep .o.cmd | xargs rm -f 308 @find ../../../. -type f -print | grep .order | xargs rm -f 309 @find ../../../. -type f -print | grep .symvers | xargs rm -f 311 @find ../../../. -type f -print | grep Module.markers | xargs rm -f 411 { find ${DK_ROOT}/common -name '*.h' -print ; \ 412 find . -name '*.h' -print ; } | etags - 416 find ${DK_ROOT} -iname '*.[ch]' -print | ctags --c++-types=+px --excmd=pattern -L -
|
/cts/tools/dasm/src/java_cup/ |
lalr_state.java | 176 System.out.print(" ["); 177 System.out.print(itm.the_production().lhs().the_symbol().name()); 178 System.out.print(" ::= "); 181 if (i == itm.dot_pos()) System.out.print("(*) "); 184 System.out.print("{action} "); 186 System.out.print(((symbol_part)part).the_symbol().name() + " "); 188 if (itm.dot_at_end()) System.out.print("(*) "); 628 System.err.print (" between "); 630 System.err.print (" and "); 632 System.err.print(" under symbols: {" ) [all...] |
/external/opencore/extern_tools_v2/bin/linux/ |
make | |
/build/tools/dexpreopt/ |
dexpreopt.py | 133 # if it is, the emulator will print the log to stdout. 164 print >>sys.stderr, 'Could not start emulator:', e 272 print 'read [%c] 0x%02x' % (c, ci) 284 print '/%s/ ? "%s"' % (pattern, buf.tostring()) 294 """Waits for the emulator to start up and print the first prompt. 304 print >>ep.stdin, '' 346 print 'WaitForPrompt saw """\n%s"""' % s 371 print >>ep.stdin, 'PS1="%s\n"' % prompt 403 print >>ep.stdin, '%s' % cmd 463 print >>ep.stdin, '%s' % cm [all...] |
/external/webkit/JavaScriptCore/tests/mozilla/ |
jsDriver.pl | 198 print ($shell_command . $file_param . $path . "\n"); 301 print OUTPUT 320 print OUTPUT <JAVAOUTPUT>; 321 print OUTPUT "<BR>"; 325 print OUTPUT 330 print OUTPUT 354 print OUTPUT 358 #print OUTPUT "</body>"; 482 # print the arguments that this script expects 485 print STDERR [all...] |
/dalvik/libcore/luni/src/main/java/java/util/ |
Properties.java | 729 printStream.print("<?xml version=\"1.0\" encoding=\""); 730 printStream.print(encodingCanonicalName); 733 printStream.print("<!DOCTYPE properties SYSTEM \""); 734 printStream.print(PROP_DTD_NAME); 740 printStream.print("<comment>"); 741 printStream.print(substitutePredefinedEntries(comment)); 748 printStream.print("<entry key=\""); 749 printStream.print(substitutePredefinedEntries(keyValue)); 750 printStream.print("\">"); 751 printStream.print(substitutePredefinedEntries(entryValue)) [all...] |
/development/tools/monkeyrunner/src/com/android/monkeyrunner/ |
MonkeyRunner.java | 148 // if we already found a valid target, we print an error and return. 312 * @param print whether to send output to user 314 private static boolean press(String key, boolean print) throws IOException { 316 boolean result = sendMonkeyEvent(command, print, true); 384 * @param print whether to print out the responses to the user 387 private static boolean sendMonkeyEvent(String command, Boolean print, Boolean record) throws IOException { 389 if (print) 402 if (print) 420 if (print) [all...] |
/external/v8/src/ |
heap-profiler.cc | 174 cluster.Print(&stream); 187 Print(stream_, cluster, number_and_size); 189 static void Print(StringStream* stream, 198 void ClusterTreePrinter::Print(StringStream* stream, 202 cluster.Print(stream); 329 cluster.Print(&stream); 351 void JSObjectsCluster::Print(StringStream* accumulator) const { 374 Print(accumulator); 567 // Print clusters that have no equivalents, aggregating their retainers. 573 // ...and print them [all...] |
/external/webkit/WebCore/icu/unicode/ |
ubrk.h | 89 * Print each element in order: 101 * Print each element in reverse order: 113 * Print first element 124 * Print last element 135 * Print the element at a specified position 156 * //print each sentence in forward and reverse order 164 * //print each word in order 170 * //print first element 173 * //print last element 176 * //print word at charpos 1 [all...] |
/frameworks/base/graphics/java/android/graphics/ |
Rect.java | 152 * Print short representation to given writer. 156 pw.print('['); pw.print(left); pw.print(','); 157 pw.print(top); pw.print("]["); pw.print(right); 158 pw.print(','); pw.print(bottom); pw.print(']'); [all...] |
/external/openssl/apps/ |
x509.c | 100 " -serial - print serial number value\n", 101 " -subject_hash - print subject hash value\n", 102 " -issuer_hash - print issuer hash value\n", 104 " -subject - print subject DN\n", 105 " -issuer - print issuer DN\n", 106 " -email - print email address(es)\n", 109 " -purpose - print out certificate purposes\n", 111 " -modulus - print the RSA key modulus\n", 113 " -fingerprint - print the certificate fingerprint\n", 116 " -ocspid - print OCSP hash values for the subject name and public key\n" [all...] |
/hardware/ti/omap3/omx/image/src/openmax_il/jpeg_enc/test/ |
JPEGTestEnc.c | 682 PRINT("Inside Test Application WaitForState function\n"); 700 PRINT("Error: Couldn't get state for component or sent to invalid state because of an error.\n"); 719 PRINT("Inside Test Application EventHandler function\n"); 723 PRINT("Error: From JPEGENC_GetState\n"); 728 PRINT ("Component State Changed\n"); 742 PRINT("APP:: OMX_ErrorResourcesPreempted !\n\n"); 777 PRINT("Event Buffer Flag detected\n"); 783 PRINT("ErrorNotification received: Error Num %p: String :%s\n", (OMX_PTR)nData1, (OMX_STRING)pEventData); 793 PRINT("Inside Test Application FillBufferDone function\n"); 801 PRINT("Inside Test Application EmptyBufferDone function\n") [all...] |
/external/e2fsprogs/e2fsck/ |
e2fsck.8.in | 99 option to print out where the superblocks were created. The 144 will print a completion bar as it goes about its business. This requires 148 Print debugging output (useless unless you are debugging 265 will print a description of the problem and then exit with the value 4 290 Print timing statistics for 299 Print version information and exit.
|
/external/proguard/src/proguard/classfile/util/ |
DynamicMemberReferenceInitializer.java | 393 // Did we find a match to print out a note? 396 // Print out a note about the dynamic invocation. 459 // Print out a note about the dynamic invocation. 498 // Print out the actual note. 499 notePrinter.print(clazz.getName(), 509 // Print out notes about potential candidates.
|
/external/tcpdump/ |
util.c | 48 * Print out a null-terminated filename (or other ascii string). 80 * Print out a counted filename (or other ascii string). 108 * Print out a null-padded filename (or other ascii string). 142 * Print the timestamp 206 * Print a relative number of seconds (e.g. hold time, prune timer) 335 /* bummer - lets print the "unknown" message as advised in the fmt string if we got one */
|
/external/tinyxml/docs/ |
classTiXmlAttribute.html | 88 <tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classTiXmlAttribute.html#a23">Print</a> (FILE *cfile, int depth) const </td></tr> 90 <tr><td class="mdescLeft"> </td><td class="mdescRight">All TinyXml classes can print themselves to a filestream. <a href="#a23"></a><br></td></tr> 100 <a class="anchor" name="a23"></a><!-- doxytag: member="TiXmlAttribute::Print" ref="a23" args="(FILE *cfile, int depth) const " --><p> 106 <td class="md" nowrap valign="top">virtual void TiXmlAttribute::Print </td> 134 All TinyXml classes can print themselves to a filestream. 136 This is a formatted print, and will insert tabs and newlines.<p>
|
classTiXmlBase.html | 28 <tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classTiXmlBase.html#a2">Print</a> (FILE *cfile, int depth) const =0</td></tr> 30 <tr><td class="mdescLeft"> </td><td class="mdescRight">All TinyXml classes can print themselves to a filestream. <a href="#a2"></a><br></td></tr> 82 <a class="anchor" name="a2"></a><!-- doxytag: member="TiXmlBase::Print" ref="a2" args="(FILE *cfile, int depth) const =0" --><p> 88 <td class="md" nowrap valign="top">virtual void TiXmlBase::Print </td> 116 All TinyXml classes can print themselves to a filestream. 118 This is a formatted print, and will insert tabs and newlines.<p>
|
/prebuilt/darwin-x86/toolchain/arm-eabi-4.2.1/libexec/gcc/arm-eabi/4.2.1/install-tools/ |
fixinc.sh | 210 all_dirs="$all_dirs `find $d/. -type d -print | \ 219 theselinks=`find $d/. -type l -print | sed -e 's@/./@/@g'` 408 find ${FIND_BASE}/. -name '*.h' \( -type f -o -type l \) -print 410 find ${FIND_BASE}/. -name '*.h' -type f -print 463 all_dirs=`find . -type d \! -name '.' -print | sort -r` 477 all_dirs=`find . -type l -print`
|
/prebuilt/darwin-x86/toolchain/arm-eabi-4.3.1/libexec/gcc/arm-eabi/4.3.1/install-tools/ |
fixinc.sh | 210 all_dirs="$all_dirs `find $d/. -type d -print | \ 219 theselinks=`find $d/. -type l -print | sed -e 's@/./@/@g'` 408 find ${FIND_BASE}/. -name '*.h' \( -type f -o -type l \) -print 410 find ${FIND_BASE}/. -name '*.h' -type f -print 463 all_dirs=`find . -type d \! -name '.' -print | sort -r` 477 all_dirs=`find . -type l -print`
|
/prebuilt/darwin-x86/toolchain/arm-eabi-4.4.0/libexec/gcc/arm-eabi/4.4.0/install-tools/ |
fixinc.sh | 208 all_dirs="$all_dirs `find $d/. -type d -print | \ 217 theselinks=`find $d/. -type l -print | sed -e 's@/./@/@g'` 406 find ${FIND_BASE}/. -name '*.h' \( -type f -o -type l \) -print 408 find ${FIND_BASE}/. -name '*.h' -type f -print 461 all_dirs=`find . -type d \! -name '.' -print | sort -r` 475 all_dirs=`find . -type l -print`
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.2.1/libexec/gcc/arm-eabi/4.2.1/install-tools/ |
fixinc.sh | 210 all_dirs="$all_dirs `find $d/. -type d -print | \ 219 theselinks=`find $d/. -type l -print | sed -e 's@/./@/@g'` 408 find ${FIND_BASE}/. -name '*.h' \( -type f -o -type l \) -print 410 find ${FIND_BASE}/. -name '*.h' -type f -print 463 all_dirs=`find . -type d \! -name '.' -print | sort -r` 477 all_dirs=`find . -type l -print`
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.3.1/libexec/gcc/arm-eabi/4.3.1/install-tools/ |
fixinc.sh | 210 all_dirs="$all_dirs `find $d/. -type d -print | \ 219 theselinks=`find $d/. -type l -print | sed -e 's@/./@/@g'` 408 find ${FIND_BASE}/. -name '*.h' \( -type f -o -type l \) -print 410 find ${FIND_BASE}/. -name '*.h' -type f -print 463 all_dirs=`find . -type d \! -name '.' -print | sort -r` 477 all_dirs=`find . -type l -print`
|