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

<<11121314151617181920>>

  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1OctetString.java 79 @Override public void encodeContent(BerOutputStream out) {
80 out.encodeOctetString();
83 @Override public void setEncodingContent(BerOutputStream out) {
84 out.length = ((byte[]) out.content).length;
  /ndk/sources/host-tools/sed-4.2.1/sed/
sed.c 66 /* If set, don't write out the line unless explicitly told to */
95 FILE *out = errmsg ? stderr : stdout; local
97 fprintf(out, _("GNU sed home page: <http://www.gnu.org/software/sed/>.\n\
104 fprintf(out, _("E-mail bug reports to: <%s>.\n\
114 FILE *out = status ? stderr : stdout; local
122 fprintf(out, _("\
126 fprintf(out, _(" -n, --quiet, --silent\n\
128 fprintf(out, _(" -e script, --expression=script\n\
130 fprintf(out, _(" -f script-file, --file=script-file\n\
133 fprintf(out, _(" --follow-symlinks\n
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/
DomainList.java 67 StringBuffer out = new StringBuffer(); local
69 out.append("@");
70 out.append(get(i));
72 out.append(",");
74 return out.toString();
  /sdk/testapps/basicProjectWithAidl/src/com/android/tests/basicprojectwithaidl/
Rect.java 29 public void writeToParcel(Parcel out) {
30 out.writeInt(left);
31 out.writeInt(top);
32 out.writeInt(right);
33 out.writeInt(bottom);
  /frameworks/base/core/java/android/util/
JsonWriter.java 71 * public void writeJsonStream(OutputStream out, List<Message> messages) throws IOException {
72 * JsonWriter writer = new JsonWriter(new OutputStreamWriter(out, "UTF-8"));
123 private final Writer out; field in class:JsonWriter
144 * Creates a new instance that writes a JSON-encoded stream to {@code out}.
148 public JsonWriter(Writer out) {
149 if (out == null) {
150 throw new NullPointerException("out == null");
152 this.out = out;
241 out.write(openBracket)
    [all...]
  /system/core/toolbox/
dd.c 32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
85 extern IO in, out;
107 IO in, out; /* input/output state */ variable
182 if (out.name == NULL) {
184 out.fd = STDOUT_FILENO;
185 out.name = "stdout";
189 out.fd = open(out.name, O_RDWR | OFLAGS, DEFFILEMODE);
195 if (out.fd < 0) {
196 out.fd = open(out.name, O_WRONLY | OFLAGS, DEFFILEMODE)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
Section.java 144 * @param out {@code non-null;} where to write to
146 public final void writeTo(AnnotatedOutput out) {
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) {
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
Section.java 144 * @param out {@code non-null;} where to write to
146 public final void writeTo(AnnotatedOutput out) {
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) {
    [all...]
  /dalvik/tests/084-class-init/src/
Main.java 33 System.out.println(PartialInit.FIELD0);
36 System.out.println("Got expected EIIE for FIELD0");
40 System.out.println(PartialInit.FIELD0);
43 System.out.println("Got expected NCDFE for FIELD0");
46 System.out.println(PartialInit.FIELD1);
49 System.out.println("Got expected NCDFE for FIELD1");
53 System.out.println(Exploder.FIELD);
56 System.out.println("Got expected '" + expected.getMessage() + "' from Exploder");
79 System.out.println("Fields (main thread): " +
98 System.out.println("Fields (child thread): "
    [all...]
  /external/chromium-trace/trace-viewer/build/
flatten.py 14 out = StringIO.StringIO()
18 out.write(" if (!window.FLATTENED) window.FLATTENED = {};\n")
20 out.write(" window.FLATTENED['%s'] = true;\n" % module.name);
23 out.write(module.contents)
25 out.write('\n')
26 return out.getvalue()
29 out = StringIO.StringIO()
32 # Stylesheets should be sourced from topmsot in, not inner-out.
37 out.write(style_sheet.contents)
39 out.write('\n'
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
Section.java 144 * @param out {@code non-null;} where to write to
146 public final void writeTo(AnnotatedOutput out) {
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) {
    [all...]
  /external/dropbear/libtomcrypt/testprof/
dsa_test.c 7 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, x, msg, sizeof(msg), &stat1, &key2))
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/app/
TestAppStateLifeCycle.java 29 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
67 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")
    [all...]
  /external/openssl/crypto/aes/
aes_ige.c 46 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
79 void AES_ige_encrypt(const unsigned char *in, unsigned char *out,
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 &
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/EncodedValue/
ArrayEncodedSubValue.java 25 * INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
68 public void writeValue(AnnotatedOutput out) {
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)
    [all...]
  /external/webkit/Source/WebCore/history/qt/
HistoryItemQt.cpp 93 QDataStream& WebCore::HistoryItem::saveState(QDataStream& out, int version) const
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_formData->flatten()
    [all...]
  /external/webkit/Source/WebKit/win/Interfaces/
IWebScriptObject.idl 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
71 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);
IWebEditingDelegate.idl 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
58 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)
    [all...]
  /external/webkit/Tools/WebKitTestRunner/
StringFunctions.h 23 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
82 inline std::ostream& operator<<(std::ostream& out, WKStringRef stringRef)
85 return out;
87 return out << toSTD(stringRef);
90 inline std::ostream& operator<<(std::ostream& out, const WKRetainPtr<WKStringRef>& stringRef)
92 return out << stringRef.get();
95 inline std::ostream& operator<<(std::ostream& out, WKURLRef urlRef)
98 return out;
100 return out << toSTD(adoptWK(WKURLCopyString(urlRef)));
103 inline std::ostream& operator<<(std::ostream& out, const WKRetainPtr<WKURLRef>& urlRef
    [all...]
  /libcore/support/src/test/java/libcore/javax/net/ssl/
TestTrustManager.java 35 private static final PrintStream out = LOG ? System.out : new NullPrintStream(); field in class:TestTrustManager
55 out.println("TestTrustManager.<init> trustManager=" + trustManager);
61 out.print("TestTrustManager.checkClientTrusted "
67 out.println("OK");
69 e.printStackTrace(out);
82 out.print("TestTrustManager.checkServerTrusted "
88 out.println("OK");
90 e.printStackTrace(out);
110 out.print("TestTrustManager.getAcceptedIssuers result=" + result.length)
    [all...]
  /external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/
CharsetDecoderTest.java 113 // Commented out since the comment is wrong since MAX_BYTES > 1
214 CharBuffer out = decoder.decode(ByteBuffer.allocate(0)); local
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); local
227 out = decoder.decode(in);
228 assertEquals(out.position(), 0)
231 assertCharBufferValue(getString(), out); local
236 CharBuffer out; local
256 assertCharBufferValue(getString(), out); local
280 assertCharBufferValue(getString(), out); local
309 CharBuffer out = CharBuffer.allocate(100); local
333 assertCharBufferValue(getString(), out); local
346 assertCharBufferValue(getString(), out); local
360 assertCharBufferValue(getString() + getString() + getString(), out); local
409 CharBuffer out = CharBuffer.allocate(50); local
422 assertCharBufferValue(getString(), out); local
429 assertCharBufferValue(decoder.replacement() + getString(), out); local
463 CharBuffer out = CharBuffer.allocate(getString().length() * 3); local
475 assertCharBufferValue(getString(), out); local
482 assertCharBufferValue(decoder.replacement() + getString(), out); local
512 CharBuffer out = CharBuffer.allocate(50); local
572 CharBuffer out = CharBuffer.allocate(10); local
602 CharBuffer out = CharBuffer.allocate(5); local
663 CharBuffer out = CharBuffer.allocate(100); local
703 CharBuffer out = CharBuffer.allocate(5); local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
Base64Encoder.java 59 OutputStream out)
72 out.write(encodingTable[(a1 >>> 2) & 0x3f]);
73 out.write(encodingTable[((a1 << 4) | (a2 >>> 4)) & 0x3f]);
74 out.write(encodingTable[((a2 << 2) | (a3 >>> 6)) & 0x3f]);
75 out.write(encodingTable[a3 & 0x3f]);
93 out.write(encodingTable[b1]);
94 out.write(encodingTable[b2]);
95 out.write(padding);
96 out.write(padding);
106 out.write(encodingTable[b1])
    [all...]
  /external/skia/bench/
RTreeBench.cpp 149 SkIRect out = {0, 0, GENERATE_EXTENTS, GENERATE_EXTENTS}; local
150 return out;
154 SkIRect out = {0, 0, index + 1, index + 1}; local
155 return out;
159 SkIRect out = {0, 0, numRects - index, numRects - index}; local
160 return out;
164 SkIRect out; local
165 out.fLeft = rand.nextU() % GENERATE_EXTENTS;
166 out.fTop = rand.nextU() % GENERATE_EXTENTS;
167 out.fRight = out.fLeft + (GENERATE_EXTENTS / 200)
173 SkIRect out; local
182 SkIRect out; local
    [all...]
  /external/webkit/Source/WebCore/platform/image-encoders/skia/
JPEGImageEncoder.cpp 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
54 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->buffer.size())
72 JPEGOutputBuffer* out = static_cast<JPEGOutputBuffer*>(cinfo->dest); local
    [all...]
  /frameworks/base/services/java/com/android/server/
EntropyMixer.java 144 PrintWriter out = null; local
146 out = new PrintWriter(new FileOutputStream(randomDevice));
147 out.println("Copyright (C) 2009 The Android Open Source Project");
148 out.println("All Your Randomness Are Belong To Us");
149 out.println(START_TIME);
150 out.println(START_NANOTIME);
151 out.println(SystemProperties.get("ro.serialno"));
152 out.println(SystemProperties.get("ro.bootmode"));
153 out.println(SystemProperties.get("ro.baseband"));
154 out.println(SystemProperties.get("ro.carrier"))
    [all...]

Completed in 1997 milliseconds

<<11121314151617181920>>