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

<<11121314151617181920>>

  /external/chromium_org/third_party/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/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);
  /external/smack/src/org/xbill/DNS/
EDNSOption.java 98 DNSOutput out = new DNSOutput(); local
99 optionToWire(out);
100 return out.toByteArray();
114 * @param out The input stream.
156 * @param out The output stream.
159 optionToWire(DNSOutput out);
163 * @param out The output stream.
166 toWire(DNSOutput out) {
167 out.writeU16(code);
168 int lengthPosition = out.current()
181 DNSOutput out = new DNSOutput(); local
    [all...]
  /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...]
  /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/sax/tests/saxtests/src/android/sax/
ExpatPerformanceTest.java 46 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
50 out.write(buffer, 0, length);
52 mXmlBytes = out.toByteArray();
  /frameworks/base/wifi/java/android/net/wifi/
WifiSsid.java 174 CharBuffer out = CharBuffer.allocate(32); local
176 CoderResult result = decoder.decode(ByteBuffer.wrap(ssidBytes), out, true);
177 out.flip();
181 return out.toString();
203 String out = "0x"; local
206 out += String.format(Locale.US, "%02x", ssidbytes[i]);
208 return out;
  /frameworks/testing/support/tests/src/android/support/test/runner/
AndroidJUnitRunnerTest.java 141 BufferedWriter out = new BufferedWriter(new FileWriter(file)); local
142 out.write("ClassName3\n");
143 out.write("ClassName4#method2\n");
144 out.close();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
AttributedCharacterIteratorAttributeTest.java 72 ObjectOutputStream out = null; local
76 out = new ObjectOutputStream(bytes);
87 out.writeObject(dattribute);
89 out.writeObject(attribute);
109 if (out != null)
110 out.close();

Completed in 66 milliseconds

<<11121314151617181920>>