HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 476 - 500 of 4560) sorted by null

<<11121314151617181920>>

  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
SimpleBITest.java 215 StringBuffer out = new StringBuffer(); local
219 out.append(c);
221 out.append("\\u");
223 out.append(zeros.substring(0, 4 - temp.length()));
224 out.append(temp);
227 logln(out.toString());
231 StringBuffer out = new StringBuffer();
235 out.append("<" + ((int)c - 0x100) + ">");
237 out.append(c);
239 logln(out.toString())
    [all...]
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/data/
ExecutionDataWriter.java 42 protected final CompactDataOutput out; field in class:ExecutionDataWriter
55 this.out = new CompactDataOutput(output);
66 out.writeByte(BLOCK_HEADER);
67 out.writeChar(MAGIC_NUMBER);
68 out.writeChar(FORMAT_VERSION);
78 out.flush();
83 out.writeByte(BLOCK_SESSIONINFO);
84 out.writeUTF(info.getId());
85 out.writeLong(info.getStartTimeStamp());
86 out.writeLong(info.getDumpTimeStamp())
    [all...]
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/data/
CompactDataInputOutputTest.java 29 private CompactDataOutput out; field in class:CompactDataInputOutputTest
36 out = new CompactDataOutput(pipe);
81 out.writeVarInt(value);
82 out.close();
109 out.writeBooleanArray(values);
110 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/jetty/src/java/org/eclipse/jetty/server/
HttpWriter.java 51 public HttpWriter(HttpOutput out)
53 _out=out;
119 HttpOutput out = _out; local
123 out._bytes.reset();
138 byte[] buffer=out._bytes.getBuf();
139 int bytes=out._bytes.getCount();
150 out._bytes.setCount(bytes);
157 byte[] buffer=out._bytes.getBuf();
158 int bytes=out._bytes.getCount();
281 out._bytes.setCount(bytes)
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/util/
IO.java 73 OutputStream out; field in class:IO.Job
77 Job(InputStream in,OutputStream out)
80 this.out=out;
87 this.out=null;
100 copy(in,out,-1);
108 if (out!=null)
109 out.close();
122 /** Copy Stream in to Stream out until EOF or exception.
125 public static void copyThread(InputStream in, OutputStream out)
    [all...]
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
AbstractStoreFileCommandHandler.java 78 OutputStream out = file.createOutputStream(appendToOutputFile()); local
80 out.write(contents);
88 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/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/framed/
Spdy3ConnectionTest.java 81 BufferedSink out = Okio.buffer(stream.getSink()); local
82 out.writeUtf8("c3po");
83 out.close();
387 BufferedSink out = Okio.buffer(stream.getSink());
388 out.writeUtf8("square");
389 out.flush();
391 out.close();
393 out.writeUtf8("round");
430 BufferedSink out = Okio.buffer(stream.getSink());
433 out.writeUtf8("square")
    [all...]
  /external/okhttp/okio/okio/src/test/java/okio/
SocketTimeoutTest.java 123 private static void writeFully(OutputStream out, int byteCount) throws IOException {
124 out.write(new byte[byteCount]);
125 out.flush();
  /external/sl4a/Common/src/com/googlecode/android_scripting/event/
EventServer.java 98 if (!listener.out.checkError()) {
99 listener.out.write(result + "\n");
100 listener.out.flush();
111 private PrintWriter out; field in class:EventServer.Listener
116 out = new PrintWriter(l.getOutputStream(), true);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
ClassDataItem.java 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
49 @Override public void annotateSection(@Nonnull AnnotatedBytes out) {
51 super.annotateSection(out);
60 protected void annotateItem(@Nonnull AnnotatedBytes out, int itemIndex, @Nullable String itemIdentity) {
61 DexReader reader = dexFile.readerAt(out.getCursor());
64 out.annotateTo(reader.getOffset(), "static_fields_size = %d", staticFieldsSize);
67 out.annotateTo(reader.getOffset(), "instance_fields_size = %d", instanceFieldsSize);
70 out.annotateTo(reader.getOffset(), "direct_methods_size = %d", directMethodsSize);
73 out.annotateTo(reader.getOffset(), "virtual_methods_size = %d", virtualMethodsSize);
77 out.annotate(0, "static_fields:")
    [all...]
DebugInfoItem.java 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
52 public void annotateItem(@Nonnull AnnotatedBytes out, int itemIndex, @Nullable String itemIdentity) {
53 DexReader reader = dexFile.readerAt(out.getCursor());
56 out.annotateTo(reader.getOffset(), "line_start = %d", lineStart);
59 out.annotateTo(reader.getOffset(), "parameters_size = %d", parametersSize);
62 out.annotate(0, "parameters:");
63 out.indent();
66 out.annotateTo(reader.getOffset(), "%s",
69 out.deindent();
72 out.annotate(0, "debug opcodes:")
    [all...]
EncodedValue.java 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
41 public static void annotateEncodedValue(@Nonnull AnnotatedBytes out, @Nonnull DexReader reader) {
49 out.annotate(1, "valueArg = %d, valueType = 0x%x: byte", valueArg, valueType);
51 out.annotate(1, "value = 0x%x", intValue);
54 out.annotate(1, "valueArg = %d, valueType = 0x%x: short", valueArg, valueType);
56 out.annotate(valueArg + 1, "value = 0x%x", intValue);
59 out.annotate(1, "valueArg = %d, valueType = 0x%x: char", valueArg, valueType);
61 out.annotate(valueArg+1, "value = 0x%x", intValue);
64 out.annotate(1, "valueArg = %d, valueType = 0x%x: int", valueArg, valueType);
66 out.annotate(valueArg+1, "value = 0x%x", intValue)
    [all...]
SectionAnnotator.java 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
62 protected abstract void annotateItem(@Nonnull AnnotatedBytes out, int itemIndex, @Nullable String itemIdentity);
65 * Write out annotations for this section
67 * @param out The AnnotatedBytes object to annotate to
69 public void annotateSection(@Nonnull AnnotatedBytes out) {
70 out.moveTo(sectionOffset);
71 annotateSectionInner(out, itemCount);
74 protected void annotateSectionInner(@Nonnull AnnotatedBytes out, int itemCount) {
78 out.annotate(0, "");
79 out.annotate(0, "-----------------------------")
    [all...]
  /external/vogar/src/vogar/android/
AndroidProfiler.java 100 FileOutputStream out = new FileOutputStream(file); local
101 write.invoke(null, getHprofData.invoke(profiler), out);
102 out.close();
  /frameworks/base/core/java/android/hardware/camera2/utils/
TypeReference.java 369 private static void toString(Type type, StringBuilder out) {
374 out.append(((TypeVariable<?>)type).getName());
378 out.append(klass.getName());
379 toString(klass.getTypeParameters(), out); local
384 out.append(((Class<?>)p.getRawType()).getName());
385 toString(p.getActualTypeArguments(), out); local
389 toString(gat.getGenericComponentType(), out); local
390 out.append("[]");
393 out.append(type.toString());
397 private static void toString(Type[] types, StringBuilder out) {
    [all...]
  /frameworks/base/core/java/android/print/
PrintFileDocumentAdapter.java 118 OutputStream out = new FileOutputStream(mDestination.getFileDescriptor()); local
130 out.write(buffer, 0, readByteCount);
138 IoUtils.closeQuietly(out);
  /frameworks/base/core/tests/coretests/src/android/content/
MemoryFileProvider.java 103 OutputStream out = getContext().openFileOutput(DATA_FILE, Context.MODE_PRIVATE); local
104 out.write(TEST_BLOB);
105 out.close();
  /frameworks/base/core/tests/coretests/src/android/os/
FileObserverTest.java 80 FileOutputStream out = new FileOutputStream(mTestFile); local
82 out.write(0x20);
95 out.close();
  /frameworks/base/core/tests/utiltests/src/com/android/internal/util/
MessageUtilsTest.java 57 SparseArray<String> out = new SparseArray<>(); local
59 out.put(keys[i], values[i]);
61 return out;

Completed in 5073 milliseconds

<<11121314151617181920>>