HomeSort by relevance Sort by last modified time
    Searched refs:out (Results 76 - 100 of 5986) sorted by null

1 2 34 5 6 7 8 91011>>

  /dalvik/tests/032-concrete-sub/src2/
AbstractBase.java 22 System.out.println("In AbstractBase.doStuff (src2)");
  /dalvik/tests/052-verifier-fun/src/
BlahOne.java 3 System.out.println("BlahOne");
BlahTwo.java 3 System.out.println("BlahTwo");
  /dalvik/tests/056-const-string-jumbo/src/
Main.java 19 System.out.println("zorch");
  /dalvik/tests/065-mismatched-implements/src/
Base.java 5 System.out.println("whee");
  /dalvik/tests/068-classloader/src-ex/
Inaccessible1.java 9 System.out.println("--- inaccessible1");
Inaccessible2.java 8 System.out.println("--- inaccessible2");
Inaccessible3.java 8 System.out.println("--- inaccessible3");
  /dalvik/tests/069-field-type/src/
Blah.java 7 System.out.println("run");
  /dalvik/tests/069-field-type/src2/
Blah.java 7 System.out.println("In compareTo");
  /dalvik/tests/075-verification-error/src/other/
Mutant.java 27 System.out.println("bye");
30 System.out.println("kthxbai");
37 System.out.println("no");
41 System.out.println("nay");
  /dalvik/tests/300-package-override/src/p1/
BaseClass.java 21 void foo() { System.out.println("passed"); } // It should not be possible to override this.
  /dalvik/tests/300-package-override/src/p2/
DerivedClass.java 20 void foo() { System.out.println("DerivedClass overrode package-private method!"); } // This should not override BaseClass.foo.
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/
depend.stg 5 * dependencies and generated files. in and out
9 dependencies(grammarFileName,in,out) ::= <<
11 <out:{f | <f> : <grammarFileName>}; separator="\n">
  /external/speex/libspeex/
fftwrap.h 30 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
47 void spx_fft(void *table, spx_word16_t *in, spx_word16_t *out);
50 void spx_ifft(void *table, spx_word16_t *in, spx_word16_t *out);
53 void spx_fft_float(void *table, float *in, float *out);
56 void spx_ifft_float(void *table, float *in, float *out);
  /external/hamcrest/src/org/hamcrest/
StringDescription.java 9 private final Appendable out; field in class:StringDescription
15 public StringDescription(Appendable out) {
16 this.out = out;
40 out.append(str);
48 out.append(c);
58 return out.toString();
  /external/javassist/src/main/javassist/tools/
Dump.java 50 PrintWriter out = new PrintWriter(System.out, true); local
51 out.println("*** constant pool ***");
52 w.getConstPool().print(out);
53 out.println();
54 out.println("*** members ***");
55 ClassFilePrinter.print(w, out);
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
CountOutputStream.java 24 private final OutputStream out; field in class:CountOutputStream
31 * @param out an <code>OutputStream</code>
33 CountOutputStream(OutputStream out)
35 this.out = out;
45 out.write(buf, off, len);
56 out.write(buf);
67 out.write(b);
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
JavaSourceWriter.java 32 * java = new JavaSourceWriter(out);
40 * java.writeStatement(call("System.out.println", string("hello")));
48 private final PrintWriter out; field in class:JavaSourceWriter
51 public JavaSourceWriter(Writer out) {
52 this.out = new PrintWriter(out);
59 out.append("package ").append(packageName).append(';');
68 out.append("import ").append(javaClass.getName()).append(';');
79 out.append("// ").append(comment);
85 out.append("public class ")
    [all...]
  /build/tools/signapk/test/
run 5 all: out/signed-$(package)
8 rm -rf out
12 DSAPARAM := out/dsaparam
15 umask 0077 && openssl dsaparam -out $@ 1024
19 umask 0077 && openssl gendsa -out $@.pk~ $(DSAPARAM)
21 -in $@.pk~ -out $@.pk
22 umask 0077 && openssl req -new -x509 -key $@.pk -out $@ -days 1095 \
25 cert := out/key1.pem
26 out/signed-$(package): $(package) $(cert)
30 -key $(cert).pk -cert $(cert) -tempdir out
    [all...]
  /dalvik/tests/009-instanceof2/src/
Main.java 30 System.out.print("instanceof Serializable = ");
31 System.out.println((Object)aaArray instanceof java.io.Serializable);
32 System.out.print("instanceof Cloneable = ");
33 System.out.println((Object)aaArray instanceof java.lang.Cloneable);
34 System.out.print("instanceof Runnable = ");
35 System.out.println((Object)aaArray instanceof java.lang.Runnable);
38 System.out.print("aaOkay (false) = ");
39 System.out.println(aaOkay);
41 System.out.print("bbOkay (true) = ");
42 System.out.println(bbOkay)
    [all...]
  /dalvik/tests/047-returns/src/
Main.java 9 System.out.println("pick 1");
11 System.out.println(((CommonInterface)pickOne(1)).doStuff());
13 System.out.println("pick 2");
15 System.out.println(((CommonInterface)pickOne(2)).doStuff());
17 System.out.println("pick 3");
39 System.out.println("one running");
42 System.out.println("one");
49 System.out.println("two running");
52 System.out.println("two");
59 System.out.println("three running")
    [all...]
  /dalvik/vm/alloc/TEST/HeapBitmapTest/
Makefile 4 $(shell mkdir -p out)
10 out/main.o: main.c ../../HeapBitmap.h
13 out/HeapBitmap.o: ../../HeapBitmap.c ../../HeapBitmap.h include/cutils/ashmem.h include/Dalvik.h
16 out/hbtest: out/main.o out/HeapBitmap.o out/clz.o
20 runtest: out/hbtest
21 out/hbtest
25 rm -rf out
    [all...]
  /libcore/luni/src/main/java/java/io/
FilterWriter.java 35 protected Writer out; field in class:FilterWriter
38 * Constructs a new FilterWriter on the Writer {@code out}. All writes are
41 * @param out
44 protected FilterWriter(Writer out) {
45 super(out);
46 this.out = out;
58 out.close();
63 * Flushes this writer to ensure all pending data is sent out to the target
72 out.flush()
    [all...]
  /system/core/libsparse/
output_file.c 78 int (*write_data_chunk)(struct output_file *out, unsigned int len,
80 int (*write_fill_chunk)(struct output_file *out, unsigned int len,
82 int (*write_skip_chunk)(struct output_file *out, int64_t len);
83 int (*write_end_chunk)(struct output_file *out);
101 struct output_file out; member in struct:output_file_gz
106 container_of((_o), struct output_file_gz, out)
109 struct output_file out; member in struct:output_file_normal
114 container_of((_o), struct output_file_normal, out)
117 struct output_file out; member in struct:output_file_callback
123 container_of((_o), struct output_file_callback, out)
671 struct output_file *out; local
    [all...]

Completed in 715 milliseconds

1 2 34 5 6 7 8 91011>>