HomeSort by relevance Sort by last modified time
    Searched refs:writer (Results 226 - 250 of 908) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/javassist/src/main/javassist/bytecode/annotation/
IntegerMemberValue.java 99 public void write(AnnotationsWriter writer) throws IOException {
100 writer.constValueIndex(getValue());
LongMemberValue.java 93 public void write(AnnotationsWriter writer) throws IOException {
94 writer.constValueIndex(getValue());
ShortMemberValue.java 93 public void write(AnnotationsWriter writer) throws IOException {
94 writer.constValueIndex(getValue());
StringMemberValue.java 93 public void write(AnnotationsWriter writer) throws IOException {
94 writer.constValueIndex(getValue());
  /external/junit/src/junit/framework/
TestFailure.java 47 PrintWriter writer= new PrintWriter(stringWriter); local
48 thrownException().printStackTrace(writer);
  /external/junit/src/org/junit/runner/notification/
Failure.java 66 PrintWriter writer= new PrintWriter(stringWriter); local
67 getException().printStackTrace(writer);
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
FileWriterBase.h 59 AsyncFileWriter* writer() function in class:WebCore::FileWriterBase
  /external/chromium_org/third_party/skia/include/xml/
SkBML_WXMLParser.h 21 BML_WXMLParser(SkWStream& writer);
  /external/guava/guava-gwt/src/com/google/common/collect/
EmptyImmutableListMultimap_CustomFieldSerializer.java 39 public static void serialize(SerializationStreamWriter writer,
EmptyImmutableList_CustomFieldSerializer.java 38 public static void serialize(SerializationStreamWriter writer,
EmptyImmutableMap_CustomFieldSerializer.java 39 public static void serialize(SerializationStreamWriter writer,
EmptyImmutableMultiset_CustomFieldSerializer.java 39 public static void serialize(SerializationStreamWriter writer,
EmptyImmutableSetMultimap_CustomFieldSerializer.java 39 public static void serialize(SerializationStreamWriter writer,
EmptyImmutableSet_CustomFieldSerializer.java 38 public static void serialize(SerializationStreamWriter writer,
NaturalOrdering_CustomFieldSerializer.java 38 public static void serialize(SerializationStreamWriter writer,
ReverseNaturalOrdering_CustomFieldSerializer.java 39 public static void serialize(SerializationStreamWriter writer,
UsingToStringOrdering_CustomFieldSerializer.java 38 public static void serialize(SerializationStreamWriter writer,
  /external/proguard/src/proguard/io/
ManifestRewriter.java 49 Writer writer)
53 new SplitLineWriter(writer));
162 * This Writer writes manifest files, splitting any long lines.
169 public SplitLineWriter(Writer writer)
171 super(writer);
  /external/skia/include/xml/
SkBML_WXMLParser.h 21 BML_WXMLParser(SkWStream& writer);
  /frameworks/base/core/java/com/android/internal/util/
IndentingPrintWriter.java 20 import java.io.Writer;
47 public IndentingPrintWriter(Writer writer, String singleIndent) {
48 this(writer, singleIndent, -1);
51 public IndentingPrintWriter(Writer writer, String singleIndent, int wrapLength) {
52 super(writer);
  /frameworks/base/core/tests/coretests/src/android/os/
PerformanceCollectorTest.java 104 MockPerformanceResultsWriter writer = new MockPerformanceResultsWriter(); local
105 mPerfCollector.setPerformanceResultsWriter(writer);
108 assertEquals("testBeginSnapshot", writer.snapshotLabel);
118 MockPerformanceResultsWriter writer = new MockPerformanceResultsWriter(); local
119 mPerfCollector.setPerformanceResultsWriter(writer);
123 Bundle snapshot2 = writer.snapshotResults;
131 MockPerformanceResultsWriter writer = new MockPerformanceResultsWriter(); local
132 mPerfCollector.setPerformanceResultsWriter(writer);
135 assertEquals("testStartTiming", writer.timingLabel);
171 MockPerformanceResultsWriter writer = new MockPerformanceResultsWriter() local
192 MockPerformanceResultsWriter writer = new MockPerformanceResultsWriter(); local
213 MockPerformanceResultsWriter writer = new MockPerformanceResultsWriter(); local
234 MockPerformanceResultsWriter writer = new MockPerformanceResultsWriter(); local
266 MockPerformanceResultsWriter writer = new MockPerformanceResultsWriter(); local
352 MockPerformanceResultsWriter writer = new MockPerformanceResultsWriter(); local
    [all...]
  /frameworks/support/v4/java/android/support/v4/app/
FragmentActivity.java 663 * @param writer The PrintWriter to which you should dump your state. This will be
667 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
670 //ActivityCompatHoneycomb.dump(this, prefix, fd, writer, args);
672 writer.print(prefix); writer.print("Local FragmentActivity ");
673 writer.print(Integer.toHexString(System.identityHashCode(this)));
674 writer.println(" State:");
676 writer.print(innerPrefix); writer.print("mCreated=");
677 writer.print(mCreated); writer.print("mResumed=")
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
ExceptionExtensions.cs 73 public static void PrintStackTrace(Exception e, System.IO.TextWriter writer) {
74 writer.WriteLine(e.ToString());
78 writer.WriteLine(" " + line);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
ExceptionExtensions.cs 81 public static void PrintStackTrace( this Exception e, System.IO.TextWriter writer )
83 writer.WriteLine( e.ToString() );
88 writer.WriteLine( " " + line );
  /external/chromium_org/chromeos/dbus/
shill_profile_client_unittest.cc 24 void AppendVariantOfArrayOfStrings(dbus::MessageWriter* writer,
27 writer->OpenVariant("as", &variant_writer);
29 writer->CloseContainer(&variant_writer);
62 dbus::MessageWriter writer(&signal);
63 writer.AppendString(flimflam::kEntriesProperty);
64 AppendVariantOfArrayOfStrings(&writer,
98 dbus::MessageWriter writer(response.get());
100 writer.OpenArray("{sv}", &array_writer);
107 writer.CloseContainer(&array_writer);
133 dbus::MessageWriter writer(response.get())
    [all...]

Completed in 358 milliseconds

1 2 3 4 5 6 7 8 91011>>