Home
last modified time | relevance | path

Searched refs:maOut (Results 1 – 6 of 6) sorted by relevance

/trunk/main/accessibility/workben/org/openoffice/accessibility/misc/
H A DInformationWriter.java73 maOut = aOut; in InformationWriter()
100 maOut.println (prefix + in printProperty()
105 maOut.println ("caught exception while getting property " in printProperty()
119 maOut.println ("There are " + xShapeList.getCount() in showShapes()
130 maOut.println (" shape " + i + " : " + sName); in showShapes()
137 maOut.println (" zorder = " + nZOrder); in showShapes()
142 maOut.println ("caught exception in showShapes: " + e); in showShapes()
156 maOut.println ("Services:"); in showServices()
162 maOut.println (" object does not support interface XMultiServiceFactory"); in showServices()
166 maOut.println (" object can create " in showServices()
[all …]
H A DOfficeConnection.java127 if (maOut != null) in Connect()
129 maOut.println ("Could not connect with " in Connect()
131 maOut.println ("Please start OpenOffice/StarOffice with " in Connect()
166 maOut = aOut; in OfficeConnection()
187 private PrintStream maOut; field in OfficeConnection
/trunk/main/ooxml/source/framework/SchemaParser/src/org/apache/openoffice/ooxml/schema/generator/
H A DLogGenerator.java85 maOut = aOut; in LogGenerator()
93 maOut.printf("// "+sFormat+"\n", aArgumentList); in WriteComment()
105 maOut.printf(" %s -> %s\n", in WriteNamespaces()
121 maOut.printf(" \"%s\" -> %s\n", in WriteTopLevelElements()
195 maOut.printf("%s%s", sIndentation, aType.toString()); in WriteType()
200 maOut.printf(" defined at %s", in WriteType()
205 maOut.printf(" {}\n"); in WriteType()
209 maOut.printf(" {\n"); in WriteType()
235 maOut.printf("%s}\n", sIndentation); in WriteType()
249 maOut.printf( in WriteAttribute()
[all …]
/trunk/main/ooxml/source/framework/SchemaParser/src/org/apache/openoffice/ooxml/schema/misc/
H A DLog.java44 maOut = aOut; in Log()
45 mbIsActive = maOut!=null; in Log()
58 maOut.print(msIndentation); in AddComment()
59 maOut.print("// "); in AddComment()
60 maOut.printf(sFormat, aArgumentList); in AddComment()
61 maOut.print("\n"); in AddComment()
92 maOut.print(msIndentation); in printf()
93 maOut.print(sMessage); in printf()
105 maOut.print(msIndentation); in println()
106 maOut.print(sMessage); in println()
[all …]
/trunk/main/ooxml/source/framework/SchemaParser/src/org/apache/openoffice/ooxml/schema/generator/html/
H A DHtmlGenerator.java84 maOut = new PrintStream(new FileOutputStream(aOutputFile)); in HtmlGenerator()
100 maOut.close(); in Generate()
131 maOut.println(aMatcher.group(1)); in CopyFile()
144 maOut.printf("%s\n", aMatcher.group(3)); in CopyFile()
147 maOut.printf("%s\n", sLine); in CopyFile()
150 maOut.printf("%s\n", sLine); in CopyFile()
165 maOut.printf("Data={\n"); in WriteJsonData()
172 maOut.printf("}\n"); in WriteJsonData()
182 maOut.printf(" \"%s\" : {\n", aNode.GetName().GetDisplayName()); in WriteTopLevelNodes()
189 maOut.printf(" }, \n"); in WriteTopLevelNodes()
[all …]
/trunk/main/ooxml/source/framework/JavaOOXMLParser/src/org/apache/openoffice/ooxml/parser/
H A DLog.java39 maOut = aOut; in Log()
82 maOut.write(msIndentation.getBytes()); in printf()
83 maOut.write(String.format(sFormat, aArgumentList).getBytes()); in printf()
128 private final OutputStream maOut; field in Log