HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 351 - 375 of 3019) sorted by null

<<11121314151617181920>>

  /packages/apps/UnifiedEmail/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/hierarchyviewer/src/com/android/hierarchyviewer/scene/
CaptureLoader.java 44 BufferedWriter out = null; local
52 out = new BufferedWriter(new OutputStreamWriter(socket.getOutputStream()));
55 out.write("CAPTURE_LAYERS " + window.encode());
56 out.newLine();
57 out.flush();
74 if (out != null) {
75 out.close();
94 System.out.println("Found end of layers list");
98 System.out.println("name = " + name);
132 BufferedWriter out = null local
    [all...]
ViewHierarchyLoader.java 44 BufferedWriter out = null; local
49 System.out.println("==> Starting client");
55 out = new BufferedWriter(new OutputStreamWriter(socket.getOutputStream()));
58 System.out.println("==> DUMP");
60 out.write("DUMP " + window.encode());
61 out.newLine();
62 out.flush();
119 if (out != null) {
120 out.close();
131 System.out.println("==> DONE")
    [all...]
  /system/core/libsparse/
img2simg.c 49 int out; local
80 out = STDOUT_FILENO;
82 out = open(argv[2], O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0664);
83 if (out < 0) {
105 ret = sparse_file_write(s, out, false, true, false);
112 close(out);
simg2simg.c 45 int out; local
98 out = open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0664);
99 if (out < 0) {
104 ret = sparse_file_write(out_s[i], out, false, true, false);
109 close(out);
  /system/media/audio_utils/
channels.c 48 uint8x3_t out; local
50 out.c[2] = in;
51 out.c[1] = in >> 8;
52 out.c[0] = in >> 16;
54 out.c[0] = in;
55 out.c[1] = in >> 8;
56 out.c[2] = in >> 16;
58 return out;
224 * The out and sums buffers must either be completely separate (non-overlapping), or
295 * The out and sums buffers must either be completely separate (non-overlapping), o
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
CompatModePackages.java 362 XmlSerializer out = new FastXmlSerializer(); local
363 out.setOutput(fos, "utf-8");
364 out.startDocument(null, true);
365 out.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
366 out.startTag(null, "compat-packages");
395 out.startTag(null, "pkg");
396 out.attribute(null, "name", pkg);
397 out.attribute(null, "mode", Integer.toString(mode));
398 out.endTag(null, "pkg");
401 out.endTag(null, "compat-packages")
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
JarURLConnectionTest.java 145 JarOutputStream out = new JarOutputStream(new FileOutputStream(jarFile)); local
146 out.putNextEntry(new ZipEntry("test"));
147 out.closeEntry();
148 out.close();
212 JarOutputStream out = new JarOutputStream(new BufferedOutputStream( local
215 out.putNextEntry(jarEntry);
216 out.write(new byte[] { 'a', 'b', 'c' });
217 out.close();
  /libcore/luni/src/test/java/libcore/java/util/zip/
ZipFileTest.java 91 FileOutputStream out = new FileOutputStream(f); local
92 out.write(bytes);
93 out.close();
106 ZipOutputStream out = new ZipOutputStream(baos); local
107 out.putNextEntry(new ZipEntry(name2));
108 out.closeEntry();
109 out.putNextEntry(new ZipEntry(name1));
110 out.closeEntry();
111 out.close();
135 ZipOutputStream out = new ZipOutputStream(baos) local
229 ZipOutputStream out = createZipOutputStream(result); local
260 ZipOutputStream out = createZipOutputStream(createTemporaryZipFile()); local
379 ZipOutputStream out = createZipOutputStream(file); local
426 ZipOutputStream out = createZipOutputStream(file); local
442 ZipOutputStream out = createZipOutputStream(file); local
472 ZipOutputStream out = createZipOutputStream(createTemporaryZipFile()); local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/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
668 CharBuffer out = CharBuffer.allocate(100); local
708 CharBuffer out = CharBuffer.allocate(5); local
    [all...]
CharsetEncoderTest.java 139 // Commented out since the comment is wrong since MAX_BYTES > 1
213 // Commented out since the comment is wrong since MAX_BYTES > 1
283 ByteBuffer out = ByteBuffer.allocate(5); local
288 encoder.flush(out);
295 encoder.encode(in, out, true);
296 out.rewind();
297 CoderResult result = encoder.flush(out);
300 encoder.flush(out);
304 encoder.encode(in, out, false);
306 encoder.flush(out);
313 ByteBuffer out = ByteBuffer.allocate(5); local
373 ByteBuffer out = ByteBuffer.allocate(5); local
423 ByteBuffer out = ByteBuffer.allocate(5); local
575 ByteBuffer out = encoder.encode(CharBuffer.wrap("")); local
627 ByteBuffer out; local
707 ByteBuffer out = ByteBuffer.allocate(200); local
830 ByteBuffer out = ByteBuffer.allocate(100); local
916 ByteBuffer out = ByteBuffer.allocate(6); local
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
CodeItem.java 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
73 @Override public void annotateSection(@Nonnull AnnotatedBytes out) {
75 super.annotateSection(out);
87 public void annotateItem(@Nonnull AnnotatedBytes out, int itemIndex, @Nullable String itemIdentity) {
89 DexReader reader = dexFile.readerAt(out.getCursor());
92 out.annotate(2, "registers_size = %d", registers);
95 out.annotate(2, "ins_size = %d", inSize);
98 out.annotate(2, "outs_size = %d", outSize);
101 out.annotate(2, "tries_size = %d", triesCount);
104 out.annotate(4, "debug_info_off = 0x%x", debugInfoOffset)
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
TestNan.java 39 public Target.Floaty out; field in class:TestNan.ArgumentsUintFloat
45 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); local
46 script.forEach_testNanUintFloat(in, out);
47 verifyResultsNanUintFloat(in, out, false);
52 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); local
53 scriptRelaxed.forEach_testNanUintFloat(in, out);
54 verifyResultsNanUintFloat(in, out, true);
60 private void verifyResultsNanUintFloat(Allocation in, Allocation out, boolean relaxed) {
64 out.copyTo(arrayOut);
70 // Figure out what the outputs should have been
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarSerializerFoo.java 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
46 protected DataOutputStream out; field in class:GrammarSerializerFoo
62 out = new DataOutputStream(bos);
63 writeString(out, SerializedGrammar.COOKIE);
64 out.writeByte(SerializedGrammar.FORMAT_VERSION);
68 if ( out!=null ) out.close();
69 out = null;
79 case ANTLRParser.LEXER_GRAMMAR : out.writeByte('l'); break;
80 case ANTLRParser.PARSER_GRAMMAR : out.writeByte('p'); break
    [all...]
  /external/doclava/src/com/google/doclava/
Proofread.java 27 static Writer out = null; field in class:Proofread
34 out = new BufferedWriter(new FileWriter(filename));
35 out.write("javadoc proofread file: " + filename + "\n");
37 if (out != null) {
39 out.close();
41 out = null;
48 if (out == null) {
53 out.close();
58 if (out == null) {
62 out.write(s)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
GenerateExcludeListTask.java 122 BufferedWriter out = new BufferedWriter(new FileWriter(outputFile)); local
126 out.write("plugins/" + s + ",");
128 out.write("plugins/" + s);
131 out.close();
  /external/javassist/src/main/javassist/
SerialVersionUID.java 78 DataOutputStream out = new DataOutputStream(bout); local
83 out.writeUTF(javaName);
95 out.writeInt(classMods);
104 out.writeUTF(interfaces[i]);
121 out.writeUTF(field.getName());
122 out.writeInt(mods);
123 out.writeUTF(field.getFieldInfo2().getDescriptor());
129 out.writeUTF("<clinit>");
130 out.writeInt(Modifier.STATIC);
131 out.writeUTF("()V")
    [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...]
  /external/javassist/src/main/javassist/util/proxy/
FactoryHelper.java 188 DataOutputStream out = new DataOutputStream(barray); local
190 cf.write(out);
193 out.close();
224 DataOutputStream out = new DataOutputStream(new BufferedOutputStream( local
227 cf.write(out);
233 out.close();
  /external/javassist/src/test/test/javassist/proxy/
ProxySerializationTest.java 37 ObjectOutputStream out = new ObjectOutputStream(bos); local
38 out.writeObject(proxy);
39 out.close();
64 ProxyObjectOutputStream out = new ProxyObjectOutputStream(bos); local
65 out.writeObject(proxy);
66 out.close();
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
DebuggingClassWriter.java 83 OutputStream out = new BufferedOutputStream(new FileOutputStream(file)); local
85 out.write(b);
87 out.close();
92 out = new BufferedOutputStream(new FileOutputStream(file));
95 PrintWriter pw = new PrintWriter(new OutputStreamWriter(out));
100 out.close();
  /external/mockito/src/org/mockito/internal/invocation/
InvocationMatcher.java 149 LinkedList<InvocationMatcher> out = new LinkedList<InvocationMatcher>(); local
152 out.add(new InvocationMatcher(i));
155 return out;
  /external/protobuf/java/src/main/java/com/google/protobuf/
AbstractMessageLite.java 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
49 final ByteString.CodedBuilder out = local
51 writeTo(out.getCodedOutput());
52 return out.build();
  /external/smack/src/org/jivesoftware/smack/proxy/
Socks4ProxySocketFactory.java 76 OutputStream out = null; local
86 out=socket.getOutputStream();
138 out.write(buf, 0, index);
Socks5ProxySocketFactory.java 80 OutputStream out = null; local
90 out=socket.getOutputStream();
124 out.write(buf, 0, index);
181 out.write(buf, 0, index);
260 out.write(buf, 0, index);

Completed in 116 milliseconds

<<11121314151617181920>>