/external/bison/src/ |
gram.c | 68 rule_lhs_print (rule *r, symbol *previous_lhs, FILE *out) 70 fprintf (out, " %3d ", r->number); 73 fprintf (out, "%s:", r->lhs->tag); 79 fputc (' ', out); 80 fputc ('|', out); 85 rule_lhs_print_xml (rule *r, FILE *out, int level) 87 xml_printf (out, level, "<lhs>%s</lhs>", r->lhs->tag); 101 rule_rhs_print (rule *r, FILE *out) 107 fprintf (out, " %s", symbols[*rp]->tag); 108 fputc ('\n', out); [all...] |
/external/openssl/crypto/ecdh/ |
ecdhtest.c | 60 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 109 static void *KDF1_SHA1(const void *in, size_t inlen, void *out, size_t *outlen) 116 return SHA1(in, inlen, out); 123 static int test_ecdh_curve(int nid, const char *text, BN_CTX *ctx, BIO *out) 146 BIO_puts(out,"Testing key generation with "); 147 BIO_puts(out,text); 149 BIO_puts(out,"\n"); 151 (void)BIO_flush(out); 169 BIO_puts(out," pri 1="); 170 BN_print(out,a->priv_key) 307 BIO *out; local [all...] |
/external/openssl/crypto/asn1/ |
t_x509a.c | 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 68 int X509_CERT_AUX_print(BIO *out, X509_CERT_AUX *aux, int indent) 75 BIO_printf(out, "%*sTrusted Uses:\n%*s", 78 if(!first) BIO_puts(out, ", "); 82 BIO_puts(out, oidstr); 84 BIO_puts(out, "\n"); 85 } else BIO_printf(out, "%*sNo Trusted Uses.\n", indent, ""); 88 BIO_printf(out, "%*sRejected Uses:\n%*s", 91 if(!first) BIO_puts(out, ", "); 95 BIO_puts(out, oidstr) [all...] |
/dalvik/tests/041-narrowing/src/ |
Main.java | 8 System.out.println(); 9 System.out.println("Double.POSITIVE_INFINITY = " 11 System.out.println("Double.NEGATIVE_INFINITY = " 13 System.out.println("Float.POSITIVE_INFINITY = " 15 System.out.println("Float.NEGATIVE_INFINITY = " 17 System.out.println("Double.NaN = " 19 System.out.println("Float.NaN = " 22 System.out.println(); 23 System.out.println("(byte) Double.NaN = " 26 System.out.println("(short) Double.NaN = [all...] |
/frameworks/base/core/tests/coretests/src/com/android/internal/os/ |
LoggingPrintStreamTest.java | 34 TestPrintStream out = new TestPrintStream(); field in class:LoggingPrintStreamTest 43 t.printStackTrace(out); 47 assertEquals(Arrays.asList(lines), out.lines); 52 out.print(4); 53 out.print(o); 54 out.print(2); 55 out.flush(); 56 assertEquals(Arrays.asList("4" + o + "2"), out.lines); 61 out.print(4); 62 out.println(o) [all...] |
/frameworks/base/tools/preload/ |
PrintHtmlDiff.java | 71 PrintStream out = System.out; local 73 out.println("<html><body>"); 74 out.println("<style>"); 75 out.println("a, th, td, h2 { font-family: arial }"); 76 out.println("th, td { font-size: small }"); 77 out.println("</style>"); 78 out.println("<script src=\"sorttable.js\"></script>"); 79 out.println("<p><a href=\"#removed\">Removed</a>"); 80 out.println("<a name=\"added\"/><h2>Added</h2>") [all...] |
/external/smali/dexlib/src/main/java/org/jf/dexlib/ |
MapItem.java | 25 * INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 83 protected void writeItem(AnnotatedOutput out) { 87 out.annotate("map_size: 0x" + Integer.toHexString(sections.length + 2) + " (" + 89 out.writeInt(sections.length + 2); 92 out.annotate(0, "[" + index++ + "]"); 93 out.indent(); 94 writeSectionInfo(out, ItemType.TYPE_HEADER_ITEM, 1, 0); 95 out.deindent(); 98 out.annotate(0, "[" + index++ + "]"); 99 out.indent() [all...] |
/dalvik/tests/033-class-init-deadlock/src/ |
Main.java | 15 System.out.println("Deadlock test starting."); 25 System.out.println("Deadlock test interrupting threads."); 28 System.out.println("Deadlock test main thread bailing."); 29 System.out.println("A initialized: " + aInitialized); 30 System.out.println("B initialized: " + bInitialized); 37 System.out.println("A initializing..."); 40 System.out.println("A initialized"); 47 System.out.println("B initializing..."); 50 System.out.println("B initialized");
|
/external/apache-http/src/org/apache/http/impl/io/ |
IdentityOutputStream.java | 53 private final SessionOutputBuffer out; field in class:IdentityOutputStream 58 public IdentityOutputStream(final SessionOutputBuffer out) { 60 if (out == null) { 63 this.out = out; 74 this.out.flush(); 79 this.out.flush(); 86 this.out.write(b, off, len); 97 this.out.write(b);
|
/external/openssl/crypto/modes/ |
cbc128.c | 45 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 66 void CRYPTO_cbc128_encrypt(const unsigned char *in, unsigned char *out, 73 assert(in && out && key && ivec); 77 ((size_t)in|(size_t)out|(size_t)ivec)%sizeof(size_t) != 0) { 80 out[n] = in[n] ^ iv[n]; 81 (*block)(out, out, key); 82 iv = out; 85 out += 16; 90 *(size_t*)(out+n) [all...] |
/frameworks/rs/driver/linkloader/include/impl/ |
ELFSectionBits.hxx | 38 out() << '\n' << fillformat('=', 79) << '\n'; 39 out().changeColor(raw_ostream::WHITE, true); 40 out() << "ELF " << section_type_str << ": " << sh->getName() << '\n'; 41 out().resetColor(); 42 out() << fillformat('-', 79) << '\n'; 44 out() << " Size : " << sh->getSize() << '\n'; 45 out() << " Start Address: " << (void *)chunk.getBuffer() << '\n'; 46 out() << fillformat('-', 79) << '\n'; 50 out() << fillformat('=', 79) << '\n';
|
/hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Device/ |
NotificationQueue.cpp | 29 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 42 ) : in(i), out(o) 45 out->hdr.queueSize = size; 55 if ((out->hdr.writeCnt - out->hdr.readCnt) < out->hdr.queueSize) { 56 out->notification[out->hdr.writeCnt & (out->hdr.queueSize - 1)] 58 out->hdr.writeCnt++ [all...] |
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
ASN1Any.java | 96 public void encodeASN(BerOutputStream out) { 97 out.encodeANY(); 100 public void encodeContent(BerOutputStream out) { 101 out.encodeANY(); 104 public void setEncodingContent(BerOutputStream out) { 105 out.length = ((byte[]) out.content).length; 108 public int getEncodedLength(BerOutputStream out) { 109 return out.length;
|
/external/dropbear/libtomcrypt/src/pk/asn1/der/ia5/ |
der_encode_ia5_string.c | 24 @param out [out] The destination for the DER encoded IA5 STRING 25 @param outlen [in/out] The max size and resulting size of the DER IA5 STRING 29 unsigned char *out, unsigned long *outlen) 35 LTC_ARGCHK(out != NULL); 51 out[x++] = 0x16; 53 out[x++] = (unsigned char)inlen; 55 out[x++] = 0x81; 56 out[x++] = (unsigned char)inlen; 58 out[x++] = 0x82 [all...] |
/external/dropbear/libtomcrypt/src/pk/asn1/der/octet/ |
der_encode_octet_string.c | 25 @param out [out] The destination for the DER encoded OCTET STRING 26 @param outlen [in/out] The max size and resulting size of the DER OCTET STRING 30 unsigned char *out, unsigned long *outlen) 36 LTC_ARGCHK(out != NULL); 52 out[x++] = 0x04; 54 out[x++] = (unsigned char)inlen; 56 out[x++] = 0x81; 57 out[x++] = (unsigned char)inlen; 59 out[x++] = 0x82 [all...] |
/external/dropbear/libtomcrypt/src/pk/asn1/der/printable_string/ |
der_encode_printable_string.c | 24 @param out [out] The destination for the DER encoded printable STRING 25 @param outlen [in/out] The max size and resulting size of the DER printable STRING 29 unsigned char *out, unsigned long *outlen) 35 LTC_ARGCHK(out != NULL); 51 out[x++] = 0x13; 53 out[x++] = (unsigned char)inlen; 55 out[x++] = 0x81; 56 out[x++] = (unsigned char)inlen; 58 out[x++] = 0x82 [all...] |
/external/webkit/Source/WebKit/win/Interfaces/ |
IWebKitStatistics.idl | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 40 HRESULT webViewCount([out, retval] int* count); 41 HRESULT frameCount([out, retval] int* count); 42 HRESULT dataSourceCount([out, retval] int* count); 43 HRESULT viewCount([out, retval] int* count); 44 HRESULT HTMLRepresentationCount([out, retval] int* count); 45 HRESULT comClassCount([out, retval] int* classCount); 46 HRESULT comClassNameCounts([out, retval] BSTR *output);
|
IWebCoreStatistics.idl | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 40 HRESULT javaScriptObjectsCount([out, retval] UINT* count); 41 HRESULT javaScriptGlobalObjectsCount([out, retval] UINT* count); 42 HRESULT javaScriptProtectedObjectsCount([out, retval] UINT* count); 43 HRESULT javaScriptProtectedGlobalObjectsCount([out, retval] UINT* count); 45 HRESULT iconPageURLMappingCount([out, retval] UINT* count); 46 HRESULT iconRetainedPageURLCount([out, retval] UINT* count); 47 HRESULT iconRecordCount([out, retval] UINT* count); 48 HRESULT iconsWithDataCount([out, retval] UINT* count); 50 HRESULT cachedFontDataCount([out, retval] UINT* count) [all...] |
/external/javassist/src/main/javassist/bytecode/ |
ClassFilePrinter.java | 32 print(cf, new PrintWriter(System.out, true)); 38 public static void print(ClassFile cf, PrintWriter out) { 48 out.println("major: " + cf.major + ", minor: " + cf.minor 50 out.println(Modifier.toString(mod) + " class " 55 out.print(" implements "); 56 out.print(infs[0]); 58 out.print(", " + infs[i]); 60 out.println(); 63 out.println(); 69 out.println(Modifier.toString(AccessFlag.toModifier(acc) 72 printAttributes(finfo.getAttributes(), out, 'f'); local 84 printAttributes(minfo.getAttributes(), out, 'm'); local 89 printAttributes(cf.getAttributes(), out, 'c'); local 108 printAttributes(ca.getAttributes(), out, kind); local [all...] |
/frameworks/native/opengl/tools/glgen/src/ |
JniCodeEmitter.java | 130 public void emitNativeDeclaration(JFunc jfunc, PrintStream out) { 132 out.println(" /* @hide C function " + jfunc.getCFunc().getOriginal() + " */"); 133 out.println(); 135 out.println(" // C function " + jfunc.getCFunc().getOriginal()); 136 out.println(); 139 emitFunction(jfunc, out, true, false); 142 public void emitJavaInterfaceCode(JFunc jfunc, PrintStream out) { 143 emitFunction(jfunc, out, false, true); 146 public void emitJavaCode(JFunc jfunc, PrintStream out) { 147 emitFunction(jfunc, out, false, false) [all...] |
/dalvik/tests/039-join-main/src/ |
Main.java | 11 System.out.print("Starting thread '" + t.getName() + "'\n"); 17 System.out.print("JoinMain starter returning\n"); 29 System.out.print("@ JoinMainSub running\n"); 33 System.out.print("@ JoinMainSub successfully joined main\n"); 35 System.out.print("@ JoinMainSub interrupted!\n"); 38 System.out.print("@ JoinMainSub bailing\n");
|
/dalvik/tests/075-verification-error/src/ |
Main.java | 41 System.out.println("Got expected InstantationError"); 42 if (VERBOSE) System.out.println("--- " + ie); 57 System.out.println("Got expected NoSuchFieldError"); 58 if (VERBOSE) System.out.println("--- " + nsfe); 64 System.out.println("Got expected NoSuchFieldError"); 65 if (VERBOSE) System.out.println("--- " + nsfe); 71 System.out.println("Got expected NoSuchMethodError"); 72 if (VERBOSE) System.out.println("--- " + nsme); 78 System.out.println("Got expected NoSuchMethodError"); 79 if (VERBOSE) System.out.println("--- " + nsme) [all...] |
/external/chromium/net/base/ |
platform_mime_util_linux.cc | 23 std::string out = mime_util::GetFileMimeType(dummy_path); local 27 if (out == "application/octet-stream" || out.empty()) 35 if (out == "image/x-ico") 36 out = "image/x-icon"; 38 *result = out;
|
/libcore/luni/src/test/java/tests/support/ |
MockCallback.java | 25 System.out.println("<TH><TR>"); 27 System.out.println("<TD>" + cols[i] + "</TD>"); 29 System.out.println("</TR></TH>"); 33 System.out.println("<TR>"); 35 System.out.println("<TD>" + cols[i] + "</TD>"); 37 System.out.println("</TR>");
|
/ndk/sources/cxx-stl/llvm-libc++/test/re/re.results/re.results.form/ |
form2.pass.cpp | 16 // format(OutputIter out, const basic_string<char_type, ST, SA>& fmt, 36 char out[100] = {0}; local 38 char* r = m.format(output_iterator<char*>(out), fmt).base(); 39 assert(r == out + 58); 40 assert(std::string(out) == "prefix: ab, match: cdefghi, suffix: jk, m[1]: efg, m[2]: e"); 47 char out[100] = {0}; local 49 char* r = m.format(output_iterator<char*>(out), 51 assert(r == out + 59); 52 assert(std::string(out) == "prefix: $`, match: $cdefghi, suffix: $', m[1]: $1, m[2]: $2"); 59 char out[100] = {0} local 72 wchar_t out[100] = {0}; local 83 wchar_t out[100] = {0}; local 95 wchar_t out[100] = {0}; local [all...] |