Searched refs:out (Results 226 - 250 of 3481) sorted by relevance

1234567891011>>

/external/guava/guava-tests/test/com/google/common/io/
H A DLittleEndianDataInputStreamTest.java44 DataOutputStream out = new DataOutputStream(baos);
46 initializeData(out);
51 private void initializeData(DataOutputStream out) throws IOException { argument
52 /* Write out various test values NORMALLY */
53 out.write(new byte[] { -100, 100 });
54 out.writeBoolean(true);
55 out.writeBoolean(false);
56 out.writeByte(100);
57 out.writeByte(-100);
58 out
[all...]
/external/jmonkeyengine/engine/src/test/jme3test/post/
H A DSSAOUI.java55 System.out.println("----------------- Water UI Debugger --------------------");
56 System.out.println("-- Sample Radius : press Y to increase, H to decrease");
57 System.out.println("-- AO Intensity : press U to increase, J to decrease");
58 System.out.println("-- AO scale : press I to increase, K to decrease");
59 System.out.println("-- AO bias : press O to increase, P to decrease");
60 System.out.println("-- Toggle AO on/off : press space bar");
61 System.out.println("-- Use only AO : press Num pad 0");
62 System.out.println("-- Output config declaration : press P");
63 System.out.println("-------------------------------------------------------");
84 System.out
[all...]
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
H A DHex.java37 char[] out = new char[(l << 1) + (group > 0 ? (l / group) : 0)];
41 out[j++] = '-';
44 out[j++] = DIGITS[(0xF0 & data[i]) >>> 4];
45 out[j++] = DIGITS[0x0F & data[i]];
47 return new String(out);
/external/openssh/regress/
H A Dbanner.sh7 rm -f $OBJ/banner.out $OBJ/banner.in $OBJ/empty.in
12 ( ${SSH} -2 -F $OBJ/ssh_proxy otherhost true 2>$OBJ/banner.out && \
13 cmp $OBJ/empty.in $OBJ/banner.out ) || \
25 cp $OBJ/banner.in $OBJ/banner.out
27 cat $OBJ/banner.out >> $OBJ/banner.in
33 ( ${SSH} -2 -F $OBJ/ssh_proxy otherhost true 2>$OBJ/banner.out && \
34 cmp $OBJ/banner.in $OBJ/banner.out ) || \
40 ( ${SSH} -q -2 -F $OBJ/ssh_proxy otherhost true 2>$OBJ/banner.out && \
41 cmp $OBJ/empty.in $OBJ/banner.out ) || \
44 rm -f $OBJ/banner.out
[all...]
/external/openssl/crypto/asn1/
H A Dt_bitst.c64 int ASN1_BIT_STRING_name_print(BIO *out, ASN1_BIT_STRING *bs, argument
69 BIO_printf(out, "%*s", indent, "");
72 if(!first) BIO_puts(out, ", ");
73 BIO_puts(out, bnam->lname);
77 BIO_puts(out, "\n");
/external/smali/dexlib/src/main/java/org/jf/dexlib/EncodedValue/
H A DAnnotationEncodedValue.java60 public void writeValue(AnnotatedOutput out) { argument
61 if (out.annotates()) {
62 out.annotate("value_type=" + ValueType.VALUE_ANNOTATION.name() + ",value_arg=0");
64 out.writeByte(ValueType.VALUE_ANNOTATION.value);
65 super.writeValue(out);
H A DArrayEncodedSubValue.java68 public void writeValue(AnnotatedOutput out) { argument
69 if (out.annotates())
71 out.annotate("array_size: 0x" + Integer.toHexString(values.length) + " (" + values.length + ")");
72 out.writeUnsignedLeb128(values.length);
75 out.annotate(0, "[" + index++ + "] array_element");
76 out.indent();
77 encodedValue.writeValue(out);
78 out.deindent();
81 out.writeUnsignedLeb128(values.length);
83 encodedValue.writeValue(out);
[all...]
/external/webkit/Source/WebKit/win/Interfaces/
H A DDOMRange.idl72 HRESULT startContainer([out, retval] IDOMNode** node);
77 HRESULT startOffset([out, retval] int* offset);
82 HRESULT endContainer([out, retval] IDOMNode** node);
87 HRESULT endOffset([out, retval] int* offset);
92 HRESULT collapsed([out, retval] BOOL* result);
97 HRESULT commonAncestorContainer([out, retval] IDOMNode** container);
157 HRESULT extractContents([out, retval] IDOMDocumentFragment** fragment);
162 HRESULT cloneContents([out, retval] IDOMDocumentFragment** fragment);
177 HRESULT cloneRange([out, retval] IDOMRange** range);
182 HRESULT toString([out, retva
[all...]
H A DIWebError.idl137 HRESULT code([out, retval] int* result);
142 HRESULT domain([out, retval] BSTR* result);
147 HRESULT localizedDescription([out, retval] BSTR* result);
152 HRESULT localizedFailureReason([out, retval] BSTR* result);
157 HRESULT localizedRecoveryOptions([out, retval] IEnumVARIANT** enumOptions);
162 HRESULT localizedRecoverySuggestion([out, retval] BSTR* result);
167 HRESULT recoverAttempter([out, retval] IUnknown** result);
172 HRESULT userInfo([out, retval] IPropertyBag** result);
174 HRESULT failingURL([out, retval] BSTR* result);
176 HRESULT isPolicyChangeError([out, retva
[all...]
H A DIWebHistory.idl74 HRESULT optionalSharedHistory([out, retval] IWebHistory** history);
91 HRESULT loadFromURL([in] BSTR url, [out] IWebError** error, [out, retval] BOOL* succeeded);
101 HRESULT saveToURL([in] BSTR url, [out] IWebError** error, [out, retval] BOOL* succeeded);
132 HRESULT orderedLastVisitedDays([in, out] int* count, [in] DATE* calendarDates);
144 HRESULT orderedItemsLastVisitedOnDay([in, out] int* count, [in] IWebHistoryItem** items, [in] DATE calendarDate);
153 HRESULT itemForURL([in] BSTR url, [out, retval] IWebHistoryItem** item);
168 HRESULT historyItemLimit([out, retval] int* limit);
184 HRESULT historyAgeInDaysLimit([out, retva
[all...]
H A DIWebPreferences.idl78 HRESULT standardPreferences([out, retval] IWebPreferences** standardPreferences);
80 HRESULT initWithIdentifier([in] BSTR anIdentifier, [out, retval] IWebPreferences** preferences);
81 HRESULT identifier([out, retval] BSTR* ident);
83 HRESULT standardFontFamily([out, retval] BSTR* family);
86 HRESULT fixedFontFamily([out, retval] BSTR* family);
89 HRESULT serifFontFamily([out, retval] BSTR* fontFamily);
92 HRESULT sansSerifFontFamily([out, retval] BSTR* family);
95 HRESULT cursiveFontFamily([out, retval] BSTR* family);
98 HRESULT fantasyFontFamily([out, retval] BSTR* family);
101 HRESULT defaultFontSize([out, retva
[all...]
H A DIWebScriptObject.idl71 HRESULT throwException([in] BSTR exceptionMessage, [out, retval] BOOL* result);
82 HRESULT callWebScriptMethod([in] BSTR name, [in, size_is(cArgs)] const VARIANT args[], [in] int cArgs, [out, retval] VARIANT* result);
92 HRESULT evaluateWebScript([in] BSTR script, [out, retval] VARIANT* result);
109 HRESULT stringRepresentation([out, retval] BSTR* stringRepresentation);
118 HRESULT webScriptValueAtIndex([in] unsigned int index, [out, retval] VARIANT* result);
H A DIWebEditingDelegate.idl58 HRESULT Next(ULONG celt, [out] BSTR* guess, [out] ULONG* pceltFetched);
61 HRESULT Clone([out, retval] IEnumSpellingGuesses** ppenum);
72 HRESULT location([out, retval] int* value);
73 HRESULT length([out, retval] int* value);
74 HRESULT userDescription([out, retval] BSTR* value);
75 HRESULT guesses([out, retval] IEnumSpellingGuesses** guesses);
86 HRESULT Next(ULONG celt, [out] IWebGrammarDetail** detail, [out] ULONG* pceltFetched);
89 HRESULT Clone([out, retva
[all...]
/external/webkit/Tools/Scripts/
H A DSpacingHeuristics.pm67 my ($out, $line) = @_;
69 printPendingEmptyLines($out, $line);
71 print $out $line;
82 my $out = shift;
91 print $out $pendingEmptyLines;
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DSection.java144 * @param out {@code non-null;} where to write to
146 public final void writeTo(AnnotatedOutput out) { argument
148 align(out);
150 int cursor = out.getCursor();
160 if (out.annotates()) {
162 out.annotate(0, "\n" + name + ":");
164 out.annotate(0, "\n");
168 writeTo0(out);
261 * @param out {@code non-null;} the output to align
263 protected final void align(AnnotatedOutput out) { argument
277 writeTo0(AnnotatedOutput out) argument
[all...]
/external/dropbear/libtomcrypt/testprof/
H A Ddsa_test.c7 unsigned char msg[16], out[1024], out2[1024]; local
21 x = sizeof(out);
22 DO(dsa_encrypt_key(msg, 16, out, &x, &yarrow_prng, find_prng("yarrow"), find_hash("sha1"), &key));
26 DO(dsa_decrypt_key(out, x, out2, &y, &key));
34 x = sizeof(out);
35 DO(dsa_sign_hash(msg, sizeof(msg), out, &x, &yarrow_prng, find_prng("yarrow"), &key));
38 DO(dsa_verify_hash(out, x, msg, sizeof(msg), &stat1, &key));
42 DO(dsa_verify_hash(out, x, msg, sizeof(msg), &stat2, &key));
52 DO(dsa_verify_hash(out, x, msg, sizeof(msg), &stat1, &key2));
62 DO(dsa_verify_hash(out,
[all...]
/external/jmonkeyengine/engine/src/test/jme3test/app/
H A DTestAppStateLifeCycle.java67 System.out.println("Attaching test state.");
75 System.out.println("Detaching test state.");
77 System.out.println("Done");
86 System.out.println("Initialized");
92 System.out.println("Attached");
98 System.out.println("update");
104 System.out.println("render");
110 System.out.println("postRender");
116 System.out.println("Detached");
122 System.out
[all...]
/external/openssl/crypto/aes/
H A Daes_ige.c79 void AES_ige_encrypt(const unsigned char *in, unsigned char *out, argument
86 OPENSSL_assert(in && out && key && ivec);
94 if (in != out &&
95 (UNALIGNED_MEMOPS_ARE_FAST || ((size_t)in|(size_t)out|(size_t)ivec)%sizeof(long)==0))
103 aes_block_t *outp = (aes_block_t *)out;
114 out += AES_BLOCK_SIZE;
136 store_block(out, tmp2);
141 out += AES_BLOCK_SIZE;
149 if (in != out &&
150 (UNALIGNED_MEMOPS_ARE_FAST || ((size_t)in|(size_t)out|(size_
213 AES_bi_ige_encrypt(const unsigned char *in, unsigned char *out, size_t length, const AES_KEY *key, const AES_KEY *key2, const unsigned char *ivec, const int enc) argument
[all...]
/external/webkit/Source/WebCore/history/qt/
H A DHistoryItemQt.cpp93 QDataStream& WebCore::HistoryItem::saveState(QDataStream& out, int version) const argument
97 return out;
99 out << urlString() << title() << alternateTitle() << lastVisitedTime();
100 out << originalURLString() << referrer() << target() << parent();
101 out << lastVisitWasHTTPNonGet() << lastVisitWasFailure() << isTargetItem();
102 out << visitCount() << documentState() << scrollPoint();
103 out << dailyVisitCounts() << weeklyVisitCounts();
105 out << true;
106 out << formContentType();
107 out << m_formDat
[all...]
/external/webkit/Tools/WebKitTestRunner/
H A DStringFunctions.h82 inline std::ostream& operator<<(std::ostream& out, WKStringRef stringRef) argument
85 return out;
87 return out << toSTD(stringRef);
90 inline std::ostream& operator<<(std::ostream& out, const WKRetainPtr<WKStringRef>& stringRef) argument
92 return out << stringRef.get();
95 inline std::ostream& operator<<(std::ostream& out, WKURLRef urlRef) argument
98 return out;
100 return out << toSTD(adoptWK(WKURLCopyString(urlRef)));
103 inline std::ostream& operator<<(std::ostream& out, const WKRetainPtr<WKURLRef>& urlRef) argument
105 return out << urlRe
[all...]
/external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/
H A DCharsetDecoderTest.java113 // Commented out since the comment is wrong since MAX_BYTES > 1
214 CharBuffer out = decoder.decode(ByteBuffer.allocate(0));
215 assertCharBufferValue("", out);
219 out = decoder.decode(in);
220 assertEquals(0, out.position());
221 assertEquals(getString().length(), out.limit());
222 assertEquals(getString().length(), out.remaining());
223 assertCharBufferValue(getString(), out);
227 out = decoder.decode(in);
228 assertEquals(out
560 assertCharBufferValue(String expected, CharBuffer out) argument
794 decodeLoop(ByteBuffer in, CharBuffer out) argument
835 implFlush(CharBuffer out) argument
848 pubImplFlush(CharBuffer out) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
H A DBase64Encoder.java54 OutputStream out)
67 out.write(encodingTable[(a1 >>> 2) & 0x3f]);
68 out.write(encodingTable[((a1 << 4) | (a2 >>> 4)) & 0x3f]);
69 out.write(encodingTable[((a2 << 2) | (a3 >>> 6)) & 0x3f]);
70 out.write(encodingTable[a3 & 0x3f]);
88 out.write(encodingTable[b1]);
89 out.write(encodingTable[b2]);
90 out.write(padding);
91 out.write(padding);
101 out
50 encode( byte[] data, int off, int length, OutputStream out) argument
123 decode( byte[] data, int off, int length, OutputStream out) argument
195 decode( String data, OutputStream out) argument
250 decodeLastBlock(OutputStream out, char c1, char c2, char c3, char c4) argument
[all...]
/external/webkit/Source/WebCore/platform/image-encoders/skia/
H A DJPEGImageEncoder.cpp54 JPEGOutputBuffer* out = static_cast<JPEGOutputBuffer*>(cinfo->dest); local
56 out->buffer.resize(internalBufferSize);
57 out->next_output_byte = out->buffer.data();
58 out->free_in_buffer = out->buffer.size();
63 JPEGOutputBuffer* out = static_cast<JPEGOutputBuffer*>(cinfo->dest); local
64 out->output->append(out->buffer.data(), out
72 JPEGOutputBuffer* out = static_cast<JPEGOutputBuffer*>(cinfo->dest); local
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DTraceDebugEventListener.java33 /** Print out (most of) the events... Useful for debugging, testing... */
41 public void enterRule(String ruleName) { System.out.println("enterRule "+ruleName); }
42 public void exitRule(String ruleName) { System.out.println("exitRule "+ruleName); }
43 public void enterSubRule(int decisionNumber) { System.out.println("enterSubRule"); }
44 public void exitSubRule(int decisionNumber) { System.out.println("exitSubRule"); }
45 public void location(int line, int pos) {System.out.println("location "+line+":"+pos);}
53 System.out.println("consumeNode "+ID+" "+text+" "+type);
60 System.out.println("LT "+i+" "+ID+" "+text+" "+type);
65 public void nilNode(Object t) {System.out.println("nilNode "+adaptor.getUniqueID(t));}
71 System.out
[all...]
/external/clang/tools/diagtool/
H A DTreeView.cpp34 static void printGroup(llvm::raw_ostream &out, const GroupRecord &Group, argument
36 out.indent(Indent * 2);
37 out << "-W" << Group.getName() << "\n";
43 printGroup(out, *I, FlagsOnly, Indent);
50 out.indent(Indent * 2);
51 out << I->getName() << "\n";
56 static int showGroup(llvm::raw_ostream &out, StringRef RootGroup, argument
69 printGroup(out, *Found, FlagsOnly);
74 static int showAll(llvm::raw_ostream &out, bool FlagsOnly) { argument
92 printGroup(out, AllGroup
98 run(unsigned int argc, char **argv, llvm::raw_ostream &out) argument
[all...]

Completed in 1961 milliseconds

1234567891011>>