/external/dexmaker/src/dx/java/com/android/dx/util/ |
TwoColumnOutput.java | 32 private final Writer out; field in class:TwoColumnOutput 83 * @param out {@code non-null;} writer to send final output to 88 public TwoColumnOutput(Writer out, int leftWidth, int rightWidth, 90 if (out == null) { 91 throw new NullPointerException("out == null"); 109 this.out = out; 121 * @param out {@code non-null;} stream to send final output to 126 public TwoColumnOutput(OutputStream out, int leftWidth, int rightWidth, 128 this(new OutputStreamWriter(out), leftWidth, rightWidth, spacer) [all...] |
/external/e2fsprogs/util/ |
subst.c | 74 * check to see if it is valid, and pull it out if it is. 305 FILE *in, *out; local 354 out = fopen(newfn, "w"); 355 if (!out) { 360 out = stdout; 368 fputs(line, out); 371 fclose(out);
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/generators/rss/ |
RSSFeedCreateFeedTask.java | 79 System.out.println(Messages.getString("RSSFeedCreateFeedTask.Creating") + project + SP + Messages.getString("RSSFeedCommon.RSSFeedFile") + SP + file.toString() + ", " + Messages.getString("RSSFeedCommon.ToBePublishedAt") + feedURL); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ //$NON-NLS-6$ 83 writeFeedXML(createFeedXML(),System.out); 109 System.out.println(Messages.getString("RSSFeedCreateFeedTask.UnableToWriteToFile")+file); //$NON-NLS-1$
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/util/rss/ |
RSSFeedUtil.java | 72 System.out.println(Messages.getString("RSSFeedPublisherTask.Execute") + SP + executable + (commandline==null?"":SP + commandline)); //$NON-NLS-1$ //$NON-NLS-2$ 90 String out = null; local 92 out = project.getProperty(RUN_EXEC_TASK_RESULT); 94 if (!isNullString(out) && !EXPECTED_RESULT.equals(out)) { 95 System.err.println(Messages.getString("RSSFeedPublisherTask.Result") + SP + out); //$NON-NLS-1$ local 99 out = project.getProperty(RUN_EXEC_TASK_OUTPUT); 100 if (!isNullString(out)) { 101 System.out.println(out); 109 System.err.println(Messages.getString("RSSFeedPublisherTask.Error") + SP + out); \/\/$NON-NLS-1\$ local [all...] |
/external/eigen/unsupported/Eigen/src/SparseExtra/ |
MarketIO.h | 85 inline void PutMatrixElt(Scalar value, int row, int col, std::ofstream& out) 87 out << row << " "<< col << " " << value << "\n"; 90 inline void PutMatrixElt(std::complex<Scalar> value, int row, int col, std::ofstream& out) 92 out << row << " " << col << " " << value.real() << " " << value.imag() << "\n"; 97 inline void putVectorElt(Scalar value, std::ofstream& out) 99 out << value << "\n"; 102 inline void putVectorElt(std::complex<Scalar> value, std::ofstream& out) 104 out << value.real << " " << value.imag()<< "\n"; 227 std::ofstream out(filename.c_str(),std::ios::out); 265 internal::putVectorElt(vec(i), out); local [all...] |
/external/emma/core/java12/com/vladium/jcd/cls/ |
ConstantCollection.java | 114 public void writeInClassFormat (final UDataOutputStream out) throws IOException 117 out.writeU2 (constant_pool_count + /* !!! */1); 122 entry.writeInClassFormat (out); 156 final int [] out = new int [1]; local 158 if (m_CONSTANT_Utf8_index.get (mapKey, out) && (out [0] == zindex))
|
/external/emma/core/java12/com/vladium/jcd/cls/attribute/ |
CodeAttribute_info.java | 181 public void writeInClassFormat (final UDataOutputStream out) throws IOException 183 super.writeInClassFormat (out); 185 out.writeU2 (m_max_stack); 186 out.writeU2 (m_max_locals); 188 out.writeU4 (m_codeSize); 189 out.write (m_code, 0, m_codeSize); // TODO: THIS IS WRONG 191 m_exceptionHandlerTable.writeInClassFormat (out); 192 m_attributes.writeInClassFormat (out); 230 if (DEBUG) System.out.println ("\t[" + i + "] exception: " + exception_info); 243 if (DEBUG) System.out.println ("\t[" + i + "] attribute: " + attribute_info) [all...] |
/external/emma/core/java12/com/vladium/util/exception/ |
ExceptionCommon.java | 95 // bail out if the some other exception hierarchy attempts 152 static void printStackTrace (Throwable t, final PrintWriter out) 160 tw.__printStackTrace (out); 164 t.printStackTrace (out); 175 out.println (); 176 out.println (NESTED_THROWABLE_HEADER); 183 tw.__printStackTrace (out); 188 t.printStackTrace (out); 196 static void printStackTrace (Throwable t, final PrintStream out) 204 tw.__printStackTrace (out); [all...] |
/external/guava/guava/src/com/google/common/base/ |
CaseFormat.java | 108 StringBuilder out = null; local 114 out = new StringBuilder(s.length() + 4 * wordSeparator.length()); 115 out.append(format.normalizeFirstWord(s.substring(i, j))); 117 out.append(format.normalizeWord(s.substring(i, j))); 119 out.append(format.wordSeparator); 125 out.append(format.normalizeWord(s.substring(i))); 126 return out.toString();
|
/external/guava/guava-tests/test/com/google/common/io/ |
ResourcesTest.java | 100 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 102 Resources.copy(resource, out); 103 assertEquals(I18N, out.toString("UTF-8"));
|
/external/icu/icu4c/source/layout/ |
LookupProcessor.cpp | 275 // NOTE: This check is commented out because the spec. says that 302 le_int32 out = 1; local 305 if (lookupOrderArray[out - 1] != lookupOrderArray[in]) { 306 if (out != in) { 307 lookupOrderArray[out] = lookupOrderArray[in]; 310 out += 1; 314 order = out;
|
/external/icu/icu4c/source/samples/layout/ |
GDIFontInstance.cpp | 59 le_int32 out = 0; local 71 ttGlyphs[out] = ttGlyph; 72 dx[out] = (le_int32) (positions[g * 2 + 2] - positions[g * 2]); 73 ps[out * 2] = positions[g * 2]; 74 ps[out * 2 + 1] = positions[g * 2 + 1]; 75 out += 1; 85 while (dyEnd < out) { 89 while (dyEnd < out && yOffset == ps[dyEnd * 2 + 1]) {
|
/external/icu/icu4c/source/samples/uresb/ |
uresb.c | 18 * This program prints out resource bundles - example for 59 void printOutBundle(UFILE *out, UResourceBundle *resource, int32_t indent, UErrorCode *status); 60 void printIndent(UFILE *out, int32_t indent); 61 void printHex(UFILE *out, const int8_t *what); 80 UFILE *out = NULL; local 146 out = u_finit(stdout, locale, encoding); 152 u_fprintf(out, "uresb: processing file \"%s\" in path \"%s\"\n", arg, resPath); 155 u_fprintf(out, "%s\n", arg); 156 printOutBundle(out, bundle, 0, &status); 166 u_fclose(out); [all...] |
/external/icu/icu4c/source/samples/ustring/ |
ustring.cpp | 37 static char out[200]; local 47 ucnv_fromUChars(cnv, out, sizeof(out), s, length, &errorCode); 53 printf("%s%s {", announce, out); 77 static char out[200]; local 88 out[s.extract(0, 99, out)]=0; 89 printf("%s%s {", announce, out); 409 static char out[100]; variable
|
/external/icu/icu4c/source/test/intltest/ |
punyref.c | 133 punycode_uint n, delta, h, b, out, max_out, bias, j, m, q, k, t; local 138 delta = out = 0; 146 if (max_out - out < 2) return punycode_big_output; 147 output[out++] = (char) 154 h = b = out; 157 /* number of basic code points, and out is the number of characters */ 160 if (b > 0) output[out++] = delimiter; 191 if (out >= max_out) return punycode_big_output; 195 output[out++] = encode_digit(t + (q - t) % (base - t), 0); 199 output[out++] = encode_digit(q, case_flags && case_flags[j]) 222 punycode_uint n, out, i, max_out, bias, local [all...] |
/external/javassist/src/main/javassist/bytecode/ |
ByteStream.java | 180 public void writeTo(OutputStream out) throws IOException { 181 out.write(buf, 0, count);
|
/external/jpeg/ |
ansi2knr.c | 59 out that there is no warranty for Ghostscript. If Ghostscript is 141 yet worked out a simple rule that can be stated here, but we will often 168 CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE 323 { FILE *in, *out; local 355 out = stdout; 358 out = fopen(argv[2], "w"); 359 if ( out == NULL ) 369 fprintf(out, "#line 1 \"%s\"\n", argv[1]); 378 convert1(buf, out, 1, convert_varargs); 391 convert1(buf, out, 0, convert_varargs) [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/ |
VariableTranslator.java | 104 List<JavaExpression> out = new ArrayList<JavaExpression>(in.size() * 2); local 106 if (!out.isEmpty()) { 107 out.add(DOT); 109 out.add(component); 111 return out; 123 List<JavaExpression> out = new ArrayList<JavaExpression>(in.size()); local 136 out.add(last); 140 out.add(last); 141 return out; 151 PrintWriter out = new PrintWriter(buffer) local [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/functions/html/ |
TextHtmlFunction.java | 92 public void filter(String in, Appendable out) throws IOException { 98 out.append("<tt>"); 101 splitAndConvert(in, out); 104 out.append("</tt>"); 113 private void splitAndConvert(String in, Appendable out) throws IOException { 127 htmlCharEscaper.filter(in.subSequence(regionStart, matchStart).toString(), out); local 135 formatEmail(in, matchStart, matchEnd, out); 139 matcher.group(WITH_SCHEME_GROUP) == null, out); 146 htmlCharEscaper.filter(in.substring(regionStart, end), out); local 155 * @param out The text output that the email address should be appended to [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/ |
SyntaxTreeDumper.java | 37 private final Appendable out; field in class:SyntaxTreeDumper 43 public SyntaxTreeDumper(Appendable out) { 44 this.out = out; 48 * Dumps to System.out. 51 this(System.out); 126 out.append(line); 133 * Simple command line tool for parsing a template and dumping out the AST. 145 tree.apply(new SyntaxTreeDumper(System.out));
|
/external/jsilver/src/com/google/clearsilver/jsilver/template/ |
HtmlWhiteSpaceStripper.java | 33 * It also strips out empty lines and leading whitespace inside HTML tags (i.e. 49 private final Appendable out; field in class:HtmlWhiteSpaceStripper 87 * @param out The Appendable object to dump the stripped output to. 89 public HtmlWhiteSpaceStripper(Appendable out) { 90 this(out, 1); 97 * @param out The Appendable object to dump the stripped output to. 100 public HtmlWhiteSpaceStripper(Appendable out, int level) { 101 this.out = out; 107 return out.toString() [all...] |
/external/libedit/src/ |
map.c | 31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 1252 Char *out; local [all...] |
/external/libxml2/ |
xmlcatalog.c | 482 FILE *out; local 487 out = fopen(argv[i + 1], "w"); 488 if (out == NULL) { 494 xmlACatalogDump(catal, out); 495 fclose(out); 502 out = fopen(XML_SGML_DEFAULT_CATALOG, "w"); 503 if (out == NULL) { 511 xmlACatalogDump(super, out); 512 fclose(out); 587 FILE *out; local [all...] |
/external/mesa3d/src/gallium/auxiliary/util/ |
u_simple_shaders.c | 24 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 105 * MOV OUT[0], IMM[0] // (if writemask != 0xf) 106 * TEX OUT[0].writemask, IN[0], SAMP[0], 2D; 122 struct ureg_dst out; local 137 out = ureg_DECL_output( ureg, 144 ureg_MOV( ureg, out, imm ); 148 ureg_writemask(out, writemask), 184 struct ureg_dst out, depth; local 197 out = ureg_DECL_output( ureg, 207 ureg_MOV( ureg, out, imm ) 230 struct ureg_dst out, depth, stencil; local 284 struct ureg_dst out, stencil; local [all...] |
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_wm_pass0.c | 23 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 108 printf("%s: out of params\n", __FUNCTION__); 157 printf("%s: out of constrefs\n", __FUNCTION__); 245 struct brw_wm_instruction *out, 254 out->dst[i] = get_value(c); 255 pass0_set_fpreg_value(c, dst->File, dst->Index, i, out->dst[i]); 259 out->writemask = writemask; 316 struct brw_wm_instruction *out = get_instruction(c); local 321 /* Copy some data out of the instruction 323 out->opcode = inst->Opcode [all...] |