/external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/ |
SpdyWriter.java | 31 final DataOutputStream out; field in class:SpdyWriter 35 SpdyWriter(OutputStream out) { 36 this.out = new DataOutputStream(out); 52 out.writeInt(0x80000000 | (SpdyConnection.VERSION & 0x7fff) << 16 | type & 0xffff); 53 out.writeInt((flags & 0xff) << 24 | length & 0xffffff); 54 out.writeInt(streamId & 0x7fffffff); 55 out.writeInt(associatedStreamId & 0x7fffffff); 56 out.writeShort((priority & 0x7) << 13 | (unused & 0x1f) << 8 | (slot & 0xff)); 57 nameValueBlockBuffer.writeTo(out); [all...] |
/external/openssl/crypto/lhash/ |
lh_stats.c | 35 * The word 'cryptographic' can be left out if the rouines from the library 50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 73 void lh_stats(LHASH *lh, FILE *out) 75 fprintf(out,"num_items = %lu\n",lh->num_items); 76 fprintf(out,"num_nodes = %u\n",lh->num_nodes); 77 fprintf(out,"num_alloc_nodes = %u\n",lh->num_alloc_nodes); 78 fprintf(out,"num_expands = %lu\n",lh->num_expands); 79 fprintf(out,"num_expand_reallocs = %lu\n",lh->num_expand_reallocs); 80 fprintf(out,"num_contracts = %lu\n",lh->num_contracts); 81 fprintf(out,"num_contract_reallocs = %lu\n",lh->num_contract_reallocs) [all...] |
/external/icu4c/samples/citer/ |
citer.cpp | 18 static UFILE *out; variable 22 u_fprintf(out, "%S", &s); 28 u_fprintf(out, "%C", (UChar) ch); 30 u_fprintf(out, "[CharacterIterator::DONE = 0xFFFF]"); 32 u_fprintf(out, "[%X]", ch); 53 u_fprintf(out, "testText = %s", testChars); 56 u_fprintf(out, "clone() or equals() failed: Two clones tested unequal\n"); 64 u_fprintf(out, "iter.getText() != clone.getText()\n"); 67 u_fprintf(out, "\n"); 70 u_fprintf(out, "Forward = ") [all...] |
/external/apache-http/src/org/apache/http/impl/io/ |
ChunkedOutputStream.java | 53 private final SessionOutputBuffer out; field in class:ChunkedOutputStream 67 * @param out the session output buffer to wrap 71 public ChunkedOutputStream(final SessionOutputBuffer out, int bufferSize) 75 this.out = out; 82 * @param out the output buffer to wrap 85 public ChunkedOutputStream(final SessionOutputBuffer out) 87 this(out, 2048); 92 * Writes the cache out onto the underlying stream 97 this.out.writeLine(Integer.toHexString(this.cachePosition)) [all...] |
/external/valgrind/main/none/tests/x86/ |
aad_aam.c | 19 unsigned short i,out; local 28 out=i; 35 :"=r"(out), "=r"(flags) /* outputs */ 36 :"r"(out) /* input */ 46 // printf("%d, %d, %d, ",i,(out>>8)&0xff,out&0xff); 50 if (zf && ((out&0xff)!=0)) { 53 if (pf != parity(out&0xff)) { 56 if (sf != !!(out&0x80)) { 61 if ( ((out>>8)&0xff) != ((i&0xff)/10)) [all...] |
/cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/ |
XmlReport.java | 36 PrintStream out = new PrintStream(outputStream); local 37 out.println("<?xml version=\"1.0\" encoding=\"UTF-8\"?>"); 38 out.println("<?xml-stylesheet type=\"text/xsl\" href=\"api-coverage.xsl\"?>"); 42 out.println("<api-coverage generatedTime=\"" + date + "\">"); 44 out.println("<debug>"); 45 out.println("<sources>"); 47 out.println("<apk path=\"" + testApk.getPath() + "\" />"); 49 out.println("</sources>"); 50 out.println("</debug>"); 52 out.println("<api>") [all...] |
/external/qemu/android/ |
help.c | 17 #define PRINTF(...) stralloc_add_format(out,__VA_ARGS__) 20 help_virtual_device( stralloc_t* out ) 59 help_sdk_images( stralloc_t* out ) 99 help_build_images( stralloc_t* out ) 116 " If the kernel image is not found in the out directory, then it is searched\n" 145 help_disk_images( stralloc_t* out ) 209 help_keys(stralloc_t* out) 213 stralloc_add_str( out, " When running the emulator, use the following keypresses:\n\n"); 251 help_environment(stralloc_t* out) 282 help_keyset_file(stralloc_t* out) [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/ |
JavaExpression.java | 91 public void write(PrintWriter out) { 92 stringExpr.write(out); 121 public void write(PrintWriter out) { 122 expression.write(out); 177 public abstract void write(PrintWriter out); 181 StringWriter out = new StringWriter(); 182 write(new PrintWriter(out)); 183 return out.toString(); 199 public void write(PrintWriter out) { 200 JavaSourceWriter.writeJavaSymbol(out, method) [all...] |
/libcore/support/src/test/java/libcore/javax/net/ssl/ |
TestKeyManager.java | 39 private static final PrintStream out = LOG ? System.out : new NullPrintStream(); field in class:TestKeyManager 59 out.println("TestKeyManager.<init> keyManager=" + keyManager); 64 out.print("TestKeyManager.chooseClientAlias"); 65 out.print(" | keyTypes: "); 67 out.print(keyType); 68 out.print(' '); 89 out.print("TestKeyManager.chooseServerAlias"); 90 out.print(" | keyType: "); 91 out.print(keyType) [all...] |
/dalvik/dx/src/com/android/dx/command/ |
DxConsole.java | 23 * By default the PrintStream objects link to {@code System.out} and 29 * Standard output stream. Links to {@code System.out} by default. 31 public static PrintStream out = System.out; field in class:DxConsole
|
/dalvik/tests/008-instanceof/src/ |
Main.java | 30 System.out.println("iface1.mFloaty = " + face1.mFloaty + " " + face1.mWahoo); 31 System.out.println("aa.mFloaty = " + aa.mFloaty + " " + aa.mWahoo); 32 System.out.println("bb.mWhoami = " + bb.mWhoami); 35 System.out.print("aaOkay (false) = "); 36 System.out.println(aaOkay); 38 System.out.print("bbOkay (true) = "); 39 System.out.println(bbOkay); 46 System.out.println("Caught a ClassCastException (expected)");
|
/dalvik/tests/012-math/src/ |
Main.java | 31 System.out.println("res:" +res); 33 System.out.println("res:" +res); 35 System.out.println("res:" +res); 37 System.out.println("res:" +res); 39 System.out.println("res:" +res); 41 System.out.println("res:" +res); 43 System.out.println("res:" +res); 45 System.out.println("res:" +res); 47 System.out.println("res:" +res); 49 System.out.println("res:" +res) [all...] |
/dalvik/tests/019-wrong-array-type/src/ |
Main.java | 28 System.out.println("Array store succeeded?!"); 30 System.out.println("Got correct array store exception");
|
/dalvik/tests/029-assert/src/ |
Main.java | 11 System.out.println("GLITCH: didn't assert (is '-ea' set?)"); 13 System.out.println("caught expected assert exception");
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
ASN1Generator.java | 9 public ASN1Generator(OutputStream out) 11 _out = out;
|
/external/clang/test/SemaCXX/ |
statements.cpp | 21 void a() { goto out; A x; out: return; }
|
/external/clang/tools/diagtool/ |
TreeView.cpp | 36 static bool showColors(llvm::raw_ostream &out) { 37 if (&out != &llvm::errs() && &out != &llvm::outs()) 42 static void setColor(bool ShowColors, llvm::raw_ostream &out, 45 out << llvm::sys::Process::OutputColor(Color, false, false); 48 static void resetColor(bool ShowColors, llvm::raw_ostream &out) { 50 out << llvm::sys::Process::ResetColor(); 60 static void printGroup(llvm::raw_ostream &out, const GroupRecord &Group, 62 out.indent(Indent * 2); 64 bool ShowColors = showColors(out); [all...] |
/external/e2fsprogs/lib/uuid/ |
unparse.c | 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE 51 static void uuid_unparse_x(const uuid_t uu, char *out, const char *fmt) 56 sprintf(out, fmt, 63 void uuid_unparse_lower(const uuid_t uu, char *out) 65 uuid_unparse_x(uu, out, fmt_lower); 68 void uuid_unparse_upper(const uuid_t uu, char *out) 70 uuid_unparse_x(uu, out, fmt_upper); 73 void uuid_unparse(const uuid_t uu, char *out) 75 uuid_unparse_x(uu, out, FMT_DEFAULT);
|
/external/icu4c/tools/gentest/ |
genres32.c | 54 FILE *out; local 61 out = fopen(file, "w"); 64 if(out == NULL) { 76 "testtable32 {", out 86 fprintf(out, "%s{\"\\U%08x\"}\n", key, i); 89 fprintf(out, "%s:int{%d}\n", key, i); 97 "}", out 100 fclose(out);
|
/external/junit/src/org/junit/internal/ |
RealSystem.java | 11 public PrintStream out() { method in class:RealSystem 12 return System.out;
|
/external/openssl/crypto/x509v3/ |
v3_pku.c | 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 65 static int i2r_PKEY_USAGE_PERIOD(X509V3_EXT_METHOD *method, PKEY_USAGE_PERIOD *usage, BIO *out, int indent); 85 PKEY_USAGE_PERIOD *usage, BIO *out, int indent) 87 BIO_printf(out, "%*s", indent, ""); 89 BIO_write(out, "Not Before: ", 12); 90 ASN1_GENERALIZEDTIME_print(out, usage->notBefore); 91 if(usage->notAfter) BIO_write(out, ", ", 2); 94 BIO_write(out, "Not After: ", 11); 95 ASN1_GENERALIZEDTIME_print(out, usage->notAfter);
|
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/ |
UnfoldSelect.cpp | 29 TInfoSinkBase &out = mOutputHLSL->getBodyStream(); local 35 out << mOutputHLSL->typeString(node->getType()) << " t" << i << ";\n"; 38 out << "if("; 40 out << ")\n" 43 out << " t" << i << " = "; 45 out << ";\n" 50 out << " t" << i << " = "; 52 out << ";\n"
|
/external/webkit/Source/WebKit/win/Interfaces/ |
IWebDataSource.idl | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 80 HRESULT data([out, retval] IStream** stream); 92 HRESULT representation([out, retval] IWebDocumentRepresentation** rep); 99 HRESULT webFrame([out, retval] IWebFrame** frame); 107 HRESULT initialRequest([out, retval] IWebURLRequest** request); 114 HRESULT request([out, retval] IWebMutableURLRequest** request); 121 HRESULT response([out, retval] IWebURLResponse** response); 129 HRESULT textEncodingName([out, retval] BSTR* name); 136 HRESULT isLoading([out, retval] BOOL* loading); 143 HRESULT pageTitle([out, retval] BSTR* title) [all...] |
IWebHTTPURLResponse.idl | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 40 HRESULT allHeaderFields([out, retval] IPropertyBag** headerFields); 41 HRESULT localizedStringForStatusCode([in] int statusCode, [out, retval] BSTR* statusString); 42 HRESULT statusCode([out, retval] int* statusCode); 43 HRESULT isAttachment([out, retval] BOOL* attachment);
|
IWebHistoryItemPrivate.idl | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 43 [local] HRESULT dictionaryRepresentation([out, retval] void** dictionary); 44 HRESULT visitCount([out, retval] int *count); 46 HRESULT hasURLString([out, retval] BOOL* hasURL); 50 HRESULT RSSFeedReferrer([out, retval] BSTR* url); 52 HRESULT hasPageCache([out, retval] BOOL* hasCache); 55 HRESULT target([out, retval] BSTR* target); 56 HRESULT isTargetItem([out, retval] BOOL* result); 57 [local] HRESULT children([out] unsigned* childCount, [out, retval] SAFEARRAY** children) [all...] |