HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 1976 - 2000 of 5424) sorted by null

<<71727374757677787980>>

  /tools/tradefederation/core/src/com/android/tradefed/command/
Console.java 509 mScheduler.displayInvocationsInfo(new PrintWriter(System.out, true));
517 manager.displayDevicesInfo(new PrintWriter(System.out, true));
523 mScheduler.displayCommandsInfo(new PrintWriter(System.out, true), null);
531 mScheduler.displayCommandsInfo(new PrintWriter(System.out, true), pattern);
544 getConfigurationFactory().printHelp(System.out);
582 dumpStacks(System.out);
608 getConfigurationFactory().dumpConfig(configArg, System.out);
616 mScheduler.displayCommandQueue(new PrintWriter(System.out, true));
623 mScheduler.dumpCommandsXml(new PrintWriter(System.out, true), null);
631 mScheduler.dumpCommandsXml(new PrintWriter(System.out, true), pattern)
    [all...]
  /tools/tradefederation/core/tests/src/com/android/tradefed/config/
ConfigurationTest.java 431 // ensure help prints out options from default config types
634 PrintWriter out = new PrintWriter(test); local
635 mConfig.dumpXml(out);
636 out.flush();
653 PrintWriter out = new PrintWriter(test); local
656 mConfig.dumpXml(out, filters);
657 out.flush();
678 PrintWriter out = new PrintWriter(test); local
679 mConfig.dumpXml(out);
680 out.flush()
    [all...]
  /art/runtime/
class_loader_context.cc 320 std::ostringstream out; local
324 out << GetClassLoaderTypeName(kPathClassLoader)
327 return out.str();
333 out << kClassLoaderSeparator;
335 out << GetClassLoaderTypeName(info.type);
336 out << kClassLoaderOpeningMark;
350 out << kClasspathSeparator;
354 out << location.substr(base_dir.length() + 1).c_str();
356 out << dex_file->GetLocation().c_str();
360 out << kDexFileChecksumSeparator
    [all...]
  /bionic/libc/kernel/uapi/linux/
auto_dev-ioctl.h 67 } out; member in union:args_ismountpoint::__anon425
  /bionic/libc/kernel/uapi/linux/netfilter_bridge/
ebtables.h 116 char out[IFNAMSIZ]; member in struct:ebt_entry
  /build/make/tools/signtos/
SignTos.java 78 System.out.print("Enter password for " + keyFile + " (password will not be hidden): ");
79 System.out.flush();
312 System.out.println("Successfully signed: " + outputFilename);
  /cts/hostsidetests/appsecurity/src/android/appsecurity/cts/
PkgInstallSignatureVerificationTest.java 331 // leaf certificate. Obtained by modifying APK signer to write out a modified leaf
588 OutputStream out = new BufferedOutputStream(new FileOutputStream(apkFile))) {
595 out.write(buf, 0, chunkSize);
  /cts/hostsidetests/theme/src/android/theme/cts/
ThemeHostTest.java 115 try (FileOutputStream out = new FileOutputStream(tmp)) {
117 out.write(buffer, 0, count);
  /cts/tests/tests/location/src/android/location/cts/asn1/base/
Asn1IA5String.java 302 protected CoderResult encodeLoop(CharBuffer in, ByteBuffer out) {
303 while (in.hasRemaining() && out.hasRemaining()) {
309 out.put((byte) encodedValue);
324 protected CoderResult decodeLoop(ByteBuffer in, CharBuffer out) {
325 while (in.hasRemaining() && out.hasRemaining()) {
332 out.put(decodedValue);
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
NdkApiXmlReport.java 77 System.out.println("Usage: ndk-api-xml-report [OPTION]... [APK]...");
78 System.out.println();
79 System.out.println("Generates a report about what Android NDK methods.");
80 System.out.println();
81 System.out.println("this must be used from the $ANDROID_BUILD_TOP");
82 System.out.println("make cts-test-coverage");
83 System.out.println("unzip the target ndk_platform.tar.bz2 to a folder.");
84 System.out.println(
88 System.out.println();
89 System.out.println("Options:")
    [all...]
  /cts/tools/dasm/src/java_cup/
lalr_state.java 138 /** List of transitions out of this state. */
141 /** List of transitions out of this state. */
157 * onto System.out.
167 System.out.println("NULL lalr_state");
171 System.out.println("lalr_state [" + st.index() + "] {");
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} ")
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/back/
SsaToRop.java 107 System.out.println("Printing reg map");
108 System.out.println(((BasicRegisterMapper)mapper).toHuman());
231 System.out.printf("Moving %d registers from 0 to %d\n",
301 // Filter out any reference to the SSA form's exit block.
  /development/ndk/platforms/android-21/include/linux/netfilter_bridge/
ebtables.h 140 char out[IFNAMSIZ]; member in struct:ebt_entry
  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
ImageDownloader.java 68 // Entries push-out of hard reference cache are transferred to soft reference cache
77 // Soft cache for bitmap kicked out of hard cache
338 public void copy(InputStream in, OutputStream out) throws IOException {
342 out.write(b, 0, read);
  /device/asus/fugu/libaudio/
audio_hal_thunks.cpp 520 struct atv_stream_out *out = NULL; local
524 out = reinterpret_cast<struct atv_stream_out*>(
526 if (!out) {
531 out->stream.common.get_sample_rate = out_get_sample_rate;
532 out->stream.common.set_sample_rate = out_set_sample_rate;
533 out->stream.common.get_buffer_size = out_get_buffer_size;
534 out->stream.common.get_channels = out_get_channels;
535 out->stream.common.get_format = out_get_format;
536 out->stream.common.set_format = out_set_format;
537 out->stream.common.standby = out_standby
    [all...]
  /device/google/contexthub/util/common/
JSONObject.cpp 35 static ssize_t parseInt32(const char *data, size_t numDigits, int32_t *out) {
50 *out = x;
55 ssize_t JSONValue::Parse(const char *data, size_t size, JSONValue *out) {
109 out->setArray(array);
182 out->setObject(obj);
236 out->setString(s);
314 out->setInt32(negate ? -x : x);
338 out->setFloat(negate ? -x : x);
343 out->unset();
346 out->setBoolean(true)
566 AString out; local
689 AString out; local
739 AString out; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
gzio.c 70 z_off_t out; /* bytes out of deflate or inflate */ member in struct:gz_stream
121 s->out = 0;
417 s->out++;
445 s->out += len;
463 s->out += s->stream.avail_out;
466 s->out -= s->stream.avail_out;
478 * different from s->out in case of concatenated .gz files.
523 s->out--;
583 s->out += s->stream.avail_out;
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
gUnitBaseTest.java 25 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
60 private PrintStream console = System.out;
95 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
97 ps = new PrintStream(out);
118 if ( out.toString().length()>0 ) {
119 this.stdout = out.toString();
121 if ( err.toString().length()==0 && out.toString().length()==0 ) {
145 System.setErr(consoleErr); // Reset standard err out
175 ByteArrayOutputStream out = null; local
204 out = new ByteArrayOutputStream()
351 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
    [all...]
  /external/antlr/antlr-3.4/gunit-maven-plugin/src/main/java/org/antlr/mojo/antlr3/
GUnitExecuteMojo.java 286 System.out.println();
287 System.out.println( "-----------------------------------------------------------" );
288 System.out.println( " G U N I T R E S U L T S" );
289 System.out.println( "-----------------------------------------------------------" );
293 System.out.println( "Executing script " + scriptPath );
313 System.out.println( testResult.render() );
328 System.out.println();
329 System.out.println( "Summary :" );
331 System.out.println( " Found " + failureNames.size() + " failures" );
333 System.out.println( " - " + name )
    [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3string.c 31 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
529 pANTLR3_UINT16 out; local
532 out = (pANTLR3_UINT16)(string->chars);
537 *out++ = (ANTLR3_UINT16)(*ptr++);
658 // The one that follows the one we just deleted is also out
686 /* Assume we need as much as twice as much space to parse out the control characters
735 /* Assume we need as much as twice as much space to parse out the control characters
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
BufferedTreeNodeStream.java 25 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
37 * This node stream sucks all nodes out of the tree specified in
144 //System.out.println("revIndex="+tokenTypeToStreamIndexesMap);
227 //System.out.print("LT(p="+p+","+k+")=");
242 System.out.println("start last node: "+i+" size=="+nodes.size());
250 System.out.println("stop at node: "+i+" "+nodes.get(i));
419 System.out.println("toString");
426 //System.out.println("stop: "+stop);
428 System.out.print("toString: "+((CommonTree)start).getToken()+", ");
430 System.out.println(start)
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
Array2DRowRealMatrix.java 421 final double[] out = new double[nRows]; local
428 out[row] = sum;
430 return out;
445 final double[] out = new double[nCols]; local
451 out[col] = sum;
454 return out;
599 final double[][] out = new double[nRows][this.getColumnDimension()]; local
602 System.arraycopy(data[i], 0, out[i], 0, data[i].length);
604 return out;
RealMatrixImpl.java 428 final double[] out = new double[nRows]; local
435 out[row] = sum;
437 return out;
453 final double[] out = new double[nCols]; local
459 out[col] = sum;
462 return out;
607 final double[][] out = new double[nRows][this.getColumnDimension()]; local
610 System.arraycopy(data[i], 0, out[i], 0, data[i].length);
612 return out;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/random/
EmpiricalDistributionImpl.java 466 double[] out = new double[len]; local
467 System.arraycopy(upperBounds, 0, out, 0, len);
468 return out;
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
PredicatedNodeTest.java 199 // System.out.println("getProximityPosition - m_predicateIndex: "+m_predicateIndex);
326 // System.out.println("nPredicates: "+nPredicates);
341 // System.out.println("Executing predicate expression - waiting count: "+m_lpi.getWaitingCount());
343 // System.out.println("\nBack from executing predicate expression - waiting count: "+m_lpi.getWaitingCount());
344 // System.out.println("pred.getType(): "+pred.getType());
349 System.out.flush();
350 System.out.println("\n===== start predicate count ========");
351 System.out.println("m_predicateIndex: " + m_predicateIndex);
352 // System.out.println("getProximityPosition(m_predicateIndex): "
354 System.out.println("pred.num(): " + pred.num())
    [all...]

Completed in 2073 milliseconds

<<71727374757677787980>>