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

<<11121314151617181920>>

  /dalvik/dx/src/com/android/dx/dex/file/
CodeItem.java 161 * @param out {@code non-null;} where to dump
165 public void debugPrint(PrintWriter out, String prefix, boolean verbose) {
166 out.println(ref.toHuman() + ":");
169 out.println("regs: " + Hex.u2(getRegistersSize()) +
173 insns.debugPrint(out, prefix, verbose);
178 out.print(prefix);
179 out.println("catches");
180 catches.debugPrint(out, prefix2);
184 out.print(prefix);
185 out.println("debug info")
    [all...]
EncodedArrayItem.java 95 ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput(); local
96 ValueEncoder encoder = new ValueEncoder(addedTo.getFile(), out);
99 encodedForm = out.toByteArray();
105 protected void writeTo0(DexFile file, AnnotatedOutput out) {
106 boolean annotates = out.annotates();
109 out.annotate(0, offsetString() + " encoded array");
116 ValueEncoder encoder = new ValueEncoder(file, out);
119 out.write(encodedForm);
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
CodeItem.java 161 * @param out {@code non-null;} where to dump
165 public void debugPrint(PrintWriter out, String prefix, boolean verbose) {
166 out.println(ref.toHuman() + ":");
169 out.println("regs: " + Hex.u2(getRegistersSize()) +
173 insns.debugPrint(out, prefix, verbose);
178 out.print(prefix);
179 out.println("catches");
180 catches.debugPrint(out, prefix2);
184 out.print(prefix);
185 out.println("debug info")
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/util/
TwoColumnOutput.java 32 private final Writer out; field in class:TwoColumnOutput
83 * @param out {@code non-null;} writer to send final output to
88 public TwoColumnOutput(Writer out, int leftWidth, int rightWidth,
90 if (out == null) {
91 throw new NullPointerException("out == null");
109 this.out = out;
121 * @param out {@code non-null;} stream to send final output to
126 public TwoColumnOutput(OutputStream out, int leftWidth, int rightWidth,
128 this(new OutputStreamWriter(out), leftWidth, rightWidth, spacer)
    [all...]
  /dalvik/dx/src/com/android/dx/util/
TwoColumnOutput.java 32 private final Writer out; field in class:TwoColumnOutput
83 * @param out {@code non-null;} writer to send final output to
88 public TwoColumnOutput(Writer out, int leftWidth, int rightWidth,
90 if (out == null) {
91 throw new NullPointerException("out == null");
109 this.out = out;
121 * @param out {@code non-null;} stream to send final output to
126 public TwoColumnOutput(OutputStream out, int leftWidth, int rightWidth,
128 this(new OutputStreamWriter(out), leftWidth, rightWidth, spacer)
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/util/
TwoColumnOutput.java 32 private final Writer out; field in class:TwoColumnOutput
83 * @param out {@code non-null;} writer to send final output to
88 public TwoColumnOutput(Writer out, int leftWidth, int rightWidth,
90 if (out == null) {
91 throw new NullPointerException("out == null");
109 this.out = out;
121 * @param out {@code non-null;} stream to send final output to
126 public TwoColumnOutput(OutputStream out, int leftWidth, int rightWidth,
128 this(new OutputStreamWriter(out), leftWidth, rightWidth, spacer)
    [all...]
  /external/openssl/crypto/pkcs12/
p12_decr.c 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
75 unsigned char *out; local
87 if(!(out = OPENSSL_malloc(inlen + EVP_CIPHER_CTX_block_size(&ctx)))) {
92 if (!EVP_CipherUpdate(&ctx, out, &i, in, inlen))
94 OPENSSL_free(out);
95 out = NULL;
101 if(!EVP_CipherFinal_ex(&ctx, out + i, &i)) {
102 OPENSSL_free(out);
103 out = NULL;
109 if (data) *data = out;
123 unsigned char *out; local
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
TwoColumnOutput.java 36 private final Writer out; field in class:TwoColumnOutput
87 * @param out non-null; writer to send final output to
92 public TwoColumnOutput(Writer out, int leftWidth, int rightWidth,
94 if (out == null) {
95 throw new NullPointerException("out == null");
113 this.out = out;
125 * @param out non-null; stream to send final output to
130 public TwoColumnOutput(OutputStream out, int leftWidth, int rightWidth,
132 this(new OutputStreamWriter(out), leftWidth, rightWidth, spacer)
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
IElement.java 47 public void emit (final HTMLWriter out)
51 out.write ('<');
52 out.write (tagName);
56 out.write (' ');
57 m_attrs.emit (out);
60 out.write ('>');
65 content.emit (out);
68 out.write ("</");
69 out.write (tagName);
70 out.write ('>')
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_stream.c 75 u32 out; local
80 out = h264bsdShowBits32(pStrmData) >> (32 - numBits);
84 return(out);
119 u32 out; local
137 out = ((u32)pStrm[0] << 24) | ((u32)pStrm[1] << 16) |
144 out <<= bitPosInWord;
145 out |= byte>>tmp;
147 return (out);
153 out = (u32)(*pStrm++) << shift;
158 out |= (u32)(*pStrm++) << shift
    [all...]
  /libcore/luni/src/main/java/java/util/prefs/
XMLParser.java 150 BufferedWriter out = new BufferedWriter(new OutputStreamWriter(stream, "UTF-8")); local
151 out.write(HEADER);
152 out.newLine();
153 out.newLine();
155 out.write(DOCTYPE);
156 out.write(" '");
157 out.write(PREFS_DTD_NAME);
158 out.write("'>");
159 out.newLine();
160 out.newLine()
480 BufferedWriter out = null; local
    [all...]
  /external/openssl/apps/
ecparam.c 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
93 * -out arg - output file - default stdout
130 BIO *in = NULL, *out = NULL; local
170 else if (strcmp(*argv,"-out") == 0)
258 BIO_printf(bio_err, " -out arg output file - "
303 out=BIO_new(BIO_s_file());
304 if ((in == NULL) || (out == NULL))
322 BIO_set_fp(out,stdout,BIO_NOCLOSE);
326 out = BIO_push(tmpbio, out);
    [all...]
  /external/webkit/Source/WebKit/win/Interfaces/
DOMEvents.idl 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
91 HRESULT type([out, retval] BSTR* result);
94 HRESULT target([out, retval] IDOMEventTarget** result);
97 HRESULT currentTarget([out, retval] IDOMEventTarget** result);
100 HRESULT eventPhase([out, retval] unsigned short* result);
103 HRESULT bubbles([out, retval] BOOL* result);
106 HRESULT cancelable([out, retval] BOOL* result);
109 HRESULT timeStamp([out, retval] DOMTimeStamp* result);
142 HRESULT dispatchEvent([in] IDOMEvent* event, [out, retval] BOOL* result);
155 HRESULT createEvent([in] BSTR eventType, [out, retval] IDOMEvent** result)
    [all...]
DOMCSS.idl 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
54 HRESULT getComputedStyle([in] IDOMElement* elt, [in] BSTR pseudoElt, [out, retval] IDOMCSSStyleDeclaration** result);
71 HRESULT length([out, retval] UINT* result);
76 HRESULT item([in] UINT index, [out, retval] IDOMCSSRule** result);
93 HRESULT type([out, retval] unsigned short* result);
98 HRESULT cssText([out, retval] BSTR* text);
108 HRESULT parentStyleSheet([out, retval] IDOMCSSStyleSheet** sheet);
113 HRESULT parentRule([out, retval] IDOMCSSRule** rule);
130 HRESULT cssText([out, retval] BSTR* result);
140 HRESULT getPropertyValue([in] BSTR propertyName, [out, retval] BSTR* result)
    [all...]
  /external/zlib/src/
inffast.c 33 Decode literal, length, and distance codes and write out the resulting
50 LEN -- ran out of enough output space or enough available input
74 unsigned char FAR *out; /* local strm->next_out */ local
76 unsigned char FAR *end; /* while out < end, enough space available */
101 out = strm->next_out - OFF;
102 beg = out - (start - strm->avail_out);
103 end = out + (strm->avail_out - 257);
137 PUP(out) = (unsigned char)(here.val);
186 op = (unsigned)(out - beg); /* max distance in output */
199 PUP(out) = 0
    [all...]
  /external/javassist/src/main/javassist/tools/web/
Webserver.java 51 * <code>ClassPool</code> are written out under the directory
142 System.out.println(msg);
149 System.out.print(msg1);
150 System.out.print(" ");
151 System.out.println(msg2);
158 System.out.print(msg1);
159 System.out.print(" ");
160 System.out.print(msg2);
161 System.out.print(" ");
162 System.out.println(msg3)
196 OutputStream out = new BufferedOutputStream(clnt.getOutputStream()); local
    [all...]
  /external/webkit/Source/WebCore/editing/
MarkupAccumulator.cpp 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
46 void appendCharactersReplacingEntities(Vector<UChar>& out, const UChar* content, size_t length, EntityMask entityMask)
66 out.append(content + positionAfterLastEntity, i - positionAfterLastEntity);
67 append(out, entityMaps[m].reference);
73 out.append(content + positionAfterLastEntity, length - positionAfterLastEntity);
89 Vector<UChar> out; local
91 out.reserveInitialCapacity(length());
92 concatenateMarkup(out);
93 return String::adopt(out);
149 void MarkupAccumulator::concatenateMarkup(Vector<UChar>& out)
    [all...]
  /cts/tools/vm-tests-tf/src/dot/
Main.java 28 System.out.println("Running all tests...");
31 System.out.println("Running selected tests...");
  /dalvik/tests/007-exceptions/src/
Main.java 25 System.out.print("Got an NPE: ");
26 System.out.println(npe.getMessage());
  /dalvik/tests/016-intern/src/
Main.java 29 System.out.println("good! " + a);
31 System.out.println("bad!");
  /dalvik/tests/018-stack-overflow/src/
Main.java 26 System.out.println("caught SOE");
28 System.out.println("SOE test done");
  /dalvik/tests/032-concrete-sub/src/
Main.java 31 System.out.println("Got expected failure");
33 System.out.println("Got expected failure");
  /dalvik/tests/034-call-null/src/
Main.java 7 System.out.println("mFoo is " + mFoo);
17 System.out.println("done");
  /dalvik/tests/073-mismatched-field/src/
Main.java 25 System.out.println("value=" + this.f);
28 System.out.println("Got expected failure");
  /dalvik/tests/302-float-conversion/src/
Main.java 38 System.out.println("Result is as expected");
40 System.out.println("Conversions failed over " + NUM_ITERATIONS + " iterations");

Completed in 788 milliseconds

<<11121314151617181920>>