HomeSort by relevance Sort by last modified time
    Searched full:print (Results 101 - 125 of 3470) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/base/services/java/com/android/server/
DiskStatsService.java 69 pw.print("Test-Error: ");
72 pw.print("Latency: ");
73 pw.print(after - before);
96 pw.print(name);
97 pw.print("-Free: ");
98 pw.print(avail * bsize / 1024);
99 pw.print("K / ");
100 pw.print(total * bsize / 1024);
101 pw.print("K total = ");
102 pw.print(avail * 100 / total)
    [all...]
  /external/clearsilver/python/examples/base/
CSPage.py 62 print "<PRE>"
63 print neo_cgi.htmlEscape(ncgi.hdf.dump())
64 print "</PRE>"
139 print "Content-Type: text/html\n\n"
141 # print the page
143 print "<H1> Error in Page </H1>"
144 print "A copy of this error report has been submitted to the developers. "
145 print "The details of the error report are below."
148 print "<PRE>"
149 print neo_cgi.htmlEscape(ERROR_MESSAGE
    [all...]
  /external/icu4c/extra/uconv/unicode/
uwmsg.h 8 and print it to stderr
23 /* Format a message and print it's output to a given file stream */
  /external/iproute2/examples/diffserv/
afcbq 52 print "\n# --- General setup ---\n";
53 print "$TC qdisc add $DEV handle 1:0 root dsmark indices 64 set_tc_index\n";
54 print "$TC filter add $DEV parent 1:0 protocol ip prio 1 tcindex mask 0xfc " .
57 print "$TC qdisc add $DEV parent 1:0 handle 2:0 cbq bandwidth $linerate ".
59 print "$TC filter add $DEV parent 2:0 protocol ip prio 1 tcindex ".
62 print "\n# --- AF Class $class specific setup---\n";
64 print "$TC class add $DEV parent 2:0 classid 2:$class cbq ".
67 print "$TC filter add $DEV parent 2:0 protocol ip prio 1 handle $class ".
69 print "$TC qdisc add $DEV parent 2:$class gred setup DPs 3 default 2 ".
75 print "\n# --- AF Class $class DP $drop---\n"
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/
mkhtml.pl 31 print "Generating html files for the tests in $js_test_dir\n";
40 print ( "js_test_dir is $js_test_dir\n" );
49 print ("The js_test_dir_items are: " . join( ",", @js_test_dir_items ) . "\n");
58 print "Just chdir'd to $js_test_subdir \n";
69 print $_ ."\n";
72 print HTML_TEST
74 print HTML_TEST
76 print HTML_TEST
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/
driver_test.py 48 print "uri: " + uri
51 print "crash: " + str(crash)
52 print "timeout: " + str(timeout)
53 print "checksum: " + str(checksum)
54 print 'stdout: """'
55 print ''.join(output)
56 print '"""'
57 print 'stderr: """'
58 print ''.join(err)
59 print '"""'
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-96526-003.js 56 print("You must enter a valid battery #")
    [all...]
  /dalvik/libcore/luni/src/main/java/java/io/
PrintStream.java 63 * stream. By default, the new print stream does not automatically flush its
80 * stream. The parameter {@code autoflush} determines if the print stream
103 * parameter {@code autoflush} determines if the print stream automatically
245 * Closes this print stream. Flushes this stream and then closes the target
383 * Put the line separator String onto the print stream.
386 print(lineSeparator);
394 * the character array to print to the target stream.
395 * @see #print(String)
397 public void print(char[] charArray) { method in class:PrintStream
398 print(new String(charArray, 0, charArray.length)) method
409 public void print(char ch) { method in class:PrintStream
421 public void print(double dnum) { method in class:PrintStream
433 public void print(float fnum) { method in class:PrintStream
445 public void print(int inum) { method in class:PrintStream
457 public void print(long lnum) { method in class:PrintStream
469 public void print(Object obj) { method in class:PrintStream
485 public synchronized void print(String str) { method in class:PrintStream
514 public void print(boolean bool) { method in class:PrintStream
    [all...]
PrintWriter.java 37 * The writer to print data to.
57 * stream. By default, the new print writer does not automatically flush its
71 * stream. The parameter {@code autoflush} determines if the print writer
89 * writer. By default, the new print writer does not automatically flush its
103 * writer. The parameter {@code autoflush} determines if the print writer
124 * The print writer does not automatically flush its contents to the target
148 * The print writer does not automatically flush its contents to the target
179 * used for character encoding. The print writer does not automatically
204 * character encoding. The print writer does not automatically flush its
252 * Closes this print writer. Flushes this writer and then closes the target
402 public void print(char[] charArray) { method in class:PrintWriter
403 print(new String(charArray, 0, charArray.length)); method
414 public void print(char ch) { method in class:PrintWriter
425 public void print(double dnum) { method in class:PrintWriter
436 public void print(float fnum) { method in class:PrintWriter
447 public void print(int inum) { method in class:PrintWriter
458 public void print(long lnum) { method in class:PrintWriter
469 public void print(Object obj) { method in class:PrintWriter
484 public void print(String str) { method in class:PrintWriter
495 public void print(boolean bool) { method in class:PrintWriter
    [all...]
  /external/bluetooth/bluez/test/
test-telephony 15 print """Usage: %s <command>
36 print "Need device address parameter"
46 print "Need device address parameter"
56 print "Need device address parameter"
65 print props['SpeakerGain']
71 print "Need device address parameter"
80 print props['MicrophoneGain']
86 print "Need device address parameter"
97 print "Need device address parameter"
110 print "Need number parameter
    [all...]
  /external/qemu/
gen-charmap.py 85 print "bad bad line: " + line
91 print "character expected in: " + line
97 print "character expected in: " + line
103 print "character expected in: " + line
109 print "character expected in: " + line
115 print "character expected in: " + line
121 print "character expected in: " + line
153 print kmap_header % t
155 print " { %-22s, %5s, %5s, %5s, %6s, %5s }," % item
156 print kmap_footer %
    [all...]
  /external/webkit/WebKitTools/Scripts/
run-javascriptcore-tests 83 print STDERR $usage;
94 print "Running: build-jsc " . join(" ", @buildArgs) . "\n";
97 print STDERR "Compiling jsc failed!\n";
161 print "\n** Danger, Will Robinson! Danger! The following failures have been introduced:\n";
163 print "\t$failure\n";
169 print "\nYou fixed the following test";
170 print "s" if $numOldFailures != 1;
171 print ":\n";
173 print "\t$failure\n";
177 print "\n"
    [all...]
  /frameworks/base/services/java/com/android/server/am/
TaskRecord.java 90 pw.print(prefix); pw.print("clearOnBackground="); pw.print(clearOnBackground);
91 pw.print(" numActivities="); pw.print(numActivities);
92 pw.print(" rootWasReset="); pw.println(rootWasReset);
95 pw.print(prefix); pw.print("affinity="); pw.println(affinity);
112 pw.print(prefix); pw.print("origActivity=")
    [all...]
PendingIntentRecord.java 287 pw.print(prefix); pw.print("uid="); pw.print(uid);
288 pw.print(" packageName="); pw.print(key.packageName);
289 pw.print(" type="); pw.print(key.typeName());
290 pw.print(" flags=0x"); pw.println(Integer.toHexString(key.flags));
292 pw.print(prefix); pw.print("activity="); pw.print(key.activity)
    [all...]
  /external/dnsmasq/contrib/webmin/
dnsmasq.wbm 93 print "<hr>\n";
96 print "<h3>WARNING: found ";
97 print $config{errors};
98 print "errors in config file!</h3><br>\n";
100 print &ui_form_start( 'basic_apply.cgi', "post" );
101 print "<br>\n";
102 print "<h2>$text{'DNS_settings'}</h2>";
103 print "<br><br>\n";
104 print $text{'local_domain'};
105 print &ui_textbox( "local_domain", $config{domain}{domain}, 32 )
    [all...]
  /external/clearsilver/ruby/test/
hdftest.rb 17 print h.dump
23 print q.dump
26 print "party.2 attr (#{k}=#{v})\n"
38 print c.render
  /external/e2fsprogs/e2fsck/
problemP.h 30 #define PR_MSG_ONLY 0x000008 /* Print message only */
37 #define PR_PREEN_NOMSG 0x004000 /* Don't print a message if we're preening */
39 #define PR_NO_NOMSG 0x010000 /* Don't print a message if e2fsck -n */
41 #define PR_PREEN_NOHDR 0x040000 /* Don't print the preen header */
  /external/proguard/src/proguard/shrink/
ShortestUsagePrinter.java 75 * @param printStream the stream to which to print.
91 // Print the name of this class.
94 // Print the reason for keeping this class.
101 // Print the name of this class.
104 // Print the reason for keeping this class.
113 // Print the name of this field.
123 // Print the reason for keeping this method.
130 // Print the name of this method.
140 // Print the reason for keeping this method.
147 // Print the name of this field
    [all...]
  /external/webkit/LayoutTests/http/tests/appcache/
update-cache-expected.txt 1 Test a simple offline application self-update process. Should print a series of messages followed with DONE:
  /hardware/msm7k/librpc/
debug.h 26 #define PRINT(x...) do { \
31 #define PRINT(x...) do { \
39 #define D PRINT
45 #define V PRINT
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/tests/
PERF.awk 67 print "Must specify component to observe";
92 print "who = ", who
93 print "how = ", how
94 print "what = ", what
95 print "from = ", (from ? from : "UNDEFINED")
96 print "to = ", (to ? to : "UNDEFINED")
97 print "min = ", min
98 print "max = ", max
108 print "ERROR: non-CSV file encountered. Please use csv = 1 in ./perf.ini";
123 if (debug) { print $0
    [all...]
  /hardware/ti/wlan/wl1271/Test/
TxDbg.c 57 DESCRIPTION: Call the requested Tx or Rx debug print function.
155 WLAN_OS_REPORT(("RX DBG - Print Rx Block \n\n"));
160 WLAN_OS_REPORT(("RX DBG - Print Rx counters \n\n"));
190 WLAN_OS_REPORT(("301 - Print TxCtrl info.\n"));
191 WLAN_OS_REPORT(("302 - Print TxCtrl Statistics.\n"));
192 WLAN_OS_REPORT(("303 - Print TxDataQueue info.\n"));
193 WLAN_OS_REPORT(("304 - Print TxDataQueue Statistics.\n"));
194 WLAN_OS_REPORT(("305 - Print TxMgmtQueue info.\n"));
195 WLAN_OS_REPORT(("306 - Print TxMgmtQueue Statistics.\n"));
196 WLAN_OS_REPORT(("307 - Print TxCtrlBlk table.\n"))
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/console/
IDdmConsole.java 26 * @param message the message to print
32 * @param messages the messages to print
38 * @param message the message to print
44 * @param messages the messages to print
  /system/wlan/ti/wilink_6_1/Test/
TxDbg.c 57 DESCRIPTION: Call the requested Tx or Rx debug print function.
147 WLAN_OS_REPORT(("RX DBG - Print Rx Block \n\n"));
152 WLAN_OS_REPORT(("RX DBG - Print Rx counters \n\n"));
182 WLAN_OS_REPORT(("301 - Print TxCtrl info.\n"));
183 WLAN_OS_REPORT(("302 - Print TxCtrl Statistics.\n"));
184 WLAN_OS_REPORT(("303 - Print TxDataQueue info.\n"));
185 WLAN_OS_REPORT(("304 - Print TxDataQueue Statistics.\n"));
186 WLAN_OS_REPORT(("305 - Print TxMgmtQueue info.\n"));
187 WLAN_OS_REPORT(("306 - Print TxMgmtQueue Statistics.\n"));
188 WLAN_OS_REPORT(("307 - Print Tx control-block table.\n"))
    [all...]
  /external/icu4c/tools/memcheck/
ICUMemCheck.pl 46 $fileNames = `find common i18n layout io -name "*.o" -print`;
50 print "$f $&\n";
53 print "$f $&\n";
56 print "$f $&\n";
59 print "$f $&\n";
62 print "$f $&\n";
65 print "$f $&\n";

Completed in 198 milliseconds

1 2 3 45 6 7 8 91011>>