/dalvik/tests/042-new-instance/src/otherpackage/ |
PackageAccess.java | 21 System.out.println("created PackageAccess"); 27 System.out.println("created PackageAccess2");
|
/dalvik/tests/068-classloader/src/ |
DoubledImplement.java | 8 System.out.println("Ctor: doubled implement, type 1"); 16 System.out.println("DoubledImplement one");
|
DoubledImplement2.java | 22 System.out.println("Ctor: doubled implement, type 1"); 30 System.out.println("DoubledImplement2 one");
|
/dalvik/tests/068-classloader/src-ex/ |
DoubledImplement.java | 8 System.out.println("Ctor: doubled implement, type 2"); 16 System.out.println("DoubledImplement two");
|
DoubledImplement2.java | 22 System.out.println("Ctor: doubled implement, type 2"); 30 System.out.println("DoubledImplement2 two");
|
/dalvik/tests/071-dexfile/src-ex/ |
Another.java | 19 System.out.println("Constructing another"); 25 System.out.println("Got expected ULE");
|
/dalvik/tests/075-verification-error/src2/other/ |
Mutant.java | 27 // System.out.println("bye"); 30 // System.out.println("kthxbai"); 37 System.out.println("no"); 41 System.out.println("nay");
|
/external/bison/lib/ |
bitsetv-print.c | 30 bitsetv_matrix_dump (FILE * out, const char *title, bitsetv bset) 36 fprintf (out, "%s BEGIN\n", title); 39 fputs (" ", out); 41 putc (i / 10 ? '0' + i / 10 : ' ', out); 42 putc ('\n', out); 43 fputs (" ", out); 45 fprintf (out, "%d", (int) (i % 10)); 46 putc ('\n', out); 49 fputs (" .", out); 51 putc ('-', out); [all...] |
/external/dropbear/libtomcrypt/src/pk/asn1/der/utctime/ |
der_decode_utctime.c | 46 @param out [out] Destination of UTC time structure 50 ltc_utctime *out) 58 LTC_ARGCHK(out != NULL); 88 DECODE_V(out->YY, 100); 89 DECODE_V(out->MM, 13); 90 DECODE_V(out->DD, 32); 91 DECODE_V(out->hh, 24); 92 DECODE_V(out->mm, 60); 95 out->off_dir = out->off_hh = out->off_mm = out->ss = 0 [all...] |
/external/mockito/src/org/mockito/internal/debugging/ |
MockitoDebuggerImpl.java | 22 String out = "";
local 24 out += line("********************************");
25 out += line("*** Mockito interactions log ***");
26 out += line("********************************");
28 out += line(i.toString());
29 out += line(" invoked: " + i.getLocation());
31 out += line(" stubbed: " + i.stubInfo().stubbedAt().toString());
37 return print(out);
39 out += line("********************************");
40 out += line("*** Unused stubs ***"); [all...] |
/external/oprofile/libutil++/ |
xml_output.cpp | 24 ostringstream out; local 25 out << xml_tag_name(tag); 26 return out.str(); 32 ostringstream out; local 36 out << buf; 37 return out.str(); 43 ostringstream out; local 47 out << buf; 48 return out.str(); 54 ostringstream out; local 65 ostringstream out; local 76 ostringstream out; local [all...] |
/external/dropbear/libtomcrypt/src/pk/asn1/der/utf8/ |
der_encode_utf8_string.c | 25 @param out [out] The destination for the DER encoded UTF8 STRING 26 @param outlen [in/out] The max size and resulting size of the DER UTF8 STRING 30 unsigned char *out, unsigned long *outlen) 35 LTC_ARGCHK(out != NULL); 66 out[x++] = 0x0C; 68 out[x++] = len; 70 out[x++] = 0x81; 71 out[x++] = len; 73 out[x++] = 0x82 [all...] |
/external/emma/core/java12/com/vladium/jcd/compiler/ |
CodeGen.java | 26 public static void load_local_object_var (final ByteArrayOStream out, final int index) 30 out.write (_aload_0 + index); // aload_n 34 out.write2 (_aload, 39 out.write4 (_wide, 46 public static void store_local_object_var (final ByteArrayOStream out, final int index) 50 out.write (_astore_0 + index); // astore_n 54 out.write2 (_astore, 59 out.write4 (_wide, 68 public static void push_int_value (final ByteArrayOStream out, final ClassDef cls, final int value) 72 out.write (_iconst_0 + value) [all...] |
/dalvik/tests/010-instance/src/ |
InstanceTest.java | 10 System.out.println("instance begin"); 25 System.out.println("x instanceof X (true): " + (test instanceof X)); 26 System.out.println("x instanceof Y (false): " + (test instanceof Y)); 28 System.out.println("y instanceof X (true): " + (test instanceof X)); 29 System.out.println("y instanceof Y (true): " + (test instanceof Y)); 32 System.out.println("xar instanceof Object (true): " 34 System.out.println("xar instanceof X (false): " 36 System.out.println("xar instanceof X[] (true): " 38 System.out.println("xar instanceof Y[] (false): " 40 System.out.println("xar instanceof Object[] (true): [all...] |
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/ |
ANTLRTreePrinter.g | 29 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 33 /** Print out a grammar (no pretty printing). 75 public void out(String s) { 96 /** Normalize a grammar print out by removing all double spaces 117 /** Call this to figure out how to print */ 149 : id=ID {out(gtype+"grammar "+$id.text);} 150 (cmt=DOC_COMMENT {out($cmt.text+"\n");} )? 151 (optionsSpec)? {out(";\n");} 178 out("@"+(scope!=null?scope+"::":"")+name+action); 184 : ^( OPTIONS {out(" options {"); [all...] |
/libcore/luni/src/test/java/libcore/java/io/ |
OldPipedOutputStreamTest.java | 33 public PReader(PipedOutputStream out) { 35 reader = new PipedInputStream(out); 37 System.out.println("Exception setting up reader: " 66 System.out.println("Exception reading (" 83 PipedOutputStream out; field in class:OldPipedOutputStreamTest 86 out = new PipedOutputStream(); 87 assertNotNull(out); 89 out.close(); 99 out = new PipedOutputStream(new PipedInputStream()); 100 out.write('b') [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
HeaderItem.java | 66 public void writeTo(DexFile file, AnnotatedOutput out) { 74 if (out.annotates()) { 75 out.annotate(8, "magic: " + new CstUtf8(MAGIC).toQuoted()); 76 out.annotate(4, "checksum"); 77 out.annotate(20, "signature"); 78 out.annotate(4, "file_size: " + 80 out.annotate(4, "header_size: " + Hex.u4(HEADER_SIZE)); 81 out.annotate(4, "endian_tag: " + Hex.u4(ENDIAN_TAG)); 82 out.annotate(4, "link_size: 0"); 83 out.annotate(4, "link_off: 0") [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
HeaderItem.java | 56 public void writeTo(DexFile file, AnnotatedOutput out) { 66 if (out.annotates()) { 67 out.annotate(8, "magic: " + new CstString(magic).toQuoted()); 68 out.annotate(4, "checksum"); 69 out.annotate(20, "signature"); 70 out.annotate(4, "file_size: " + 72 out.annotate(4, "header_size: " + Hex.u4(SizeOf.HEADER_ITEM)); 73 out.annotate(4, "endian_tag: " + Hex.u4(DexFormat.ENDIAN_TAG)); 74 out.annotate(4, "link_size: 0"); 75 out.annotate(4, "link_off: 0") [all...] |
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
HeaderItem.java | 56 public void writeTo(DexFile file, AnnotatedOutput out) { 66 if (out.annotates()) { 67 out.annotate(8, "magic: " + new CstString(magic).toQuoted()); 68 out.annotate(4, "checksum"); 69 out.annotate(20, "signature"); 70 out.annotate(4, "file_size: " + 72 out.annotate(4, "header_size: " + Hex.u4(SizeOf.HEADER_ITEM)); 73 out.annotate(4, "endian_tag: " + Hex.u4(DexFormat.ENDIAN_TAG)); 74 out.annotate(4, "link_size: 0"); 75 out.annotate(4, "link_off: 0") [all...] |
/external/openssl/crypto/asn1/ |
t_crl.c | 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 85 int X509_CRL_print(BIO *out, X509_CRL *x) 93 BIO_printf(out, "Certificate Revocation List (CRL):\n"); 95 BIO_printf(out, "%8sVersion %lu (0x%lx)\n", "", l+1, l); 97 X509_signature_print(out, x->sig_alg, NULL); 99 BIO_printf(out,"%8sIssuer: %s\n","",p); 101 BIO_printf(out,"%8sLast Update: ",""); 102 ASN1_TIME_print(out,X509_CRL_get_lastUpdate(x)); 103 BIO_printf(out,"\n%8sNext Update: ",""); 105 ASN1_TIME_print(out,X509_CRL_get_nextUpdate(x)) [all...] |
/dalvik/dx/tests/029-unit-Bits/ |
run | 17 dx --junit com.android.dx.util._tests._Bits > unit-out.txt 22 cat unit-out.txt
|
/dalvik/dx/tests/033-unit-IntList/ |
run | 17 dx --junit com.android.dx.util._tests._IntList > unit-out.txt 22 cat unit-out.txt
|
/dalvik/tests/026-access/src/otherpackage/ |
PublicAccess.java | 5 System.out.println("Blort.");
|
/dalvik/tests/030-bad-finalizer/src/ |
Main.java | 10 System.out.println("Constructed object."); 13 System.out.println("Nulled. Requestion gc."); 18 System.out.println("Requesting another GC."); 22 System.out.println("Done waiting.");
|
/dalvik/tests/032-concrete-sub/src/ |
AbstractBase.java | 22 System.out.println("In AbstractBase.doStuff");
|