/external/icu/icu4j/samples/src/com/ibm/icu/samples/text/messagepattern/ |
MessagePatternDemo.java | 27 System.out.println("autoQA: "+autoQA); 48 System.out.format("%2d: %s%s%s\n", i, indent, partString, explanation); 62 System.out.println("message: "+s); 68 System.out.println("Exception: "+e.getMessage()); 76 System.out.println(new MiniMessageFormatter(msg).format(new StringBuilder(), args)); 83 System.out.println(new MiniMessageFormatter(msg).format(
|
/external/icu/icu4j/samples/src/com/ibm/icu/samples/text/pluralformat/ |
PluralFormatSample.java | 24 System.out.println("======================================================================================="); 25 System.out.println(" PluralFormatExample()"); 26 System.out.println(); 27 System.out.println(" Use PluralFormat and Messageformat to get appropriate Plural Form for languages below:"); 28 System.out.println(" English, Slovenian"); 29 System.out.println("======================================================================================="); 45 System.out.println("Output by using PluralFormat and MessageFormat API\n"); 46 System.out.printf("%-16s%-16s%-16s\n", "Number", "English", "Slovenian"); 56 System.out.printf("%-16s%-16s%-16s\n", num, msgEn, msgSl); 59 System.out.println() [all...] |
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
Deprecator.java | 94 System.out.println("src: " + srcDir.getCanonicalPath()); 95 System.out.println("dst: " + dstDir.getCanonicalPath()); 96 System.out.println("undep: " + undep); 97 System.out.flush(); 103 System.out.println("done"); 104 System.out.flush(); 113 PrintWriter pw = new PrintWriter(System.out); 153 System.out.println("process dir: " + f.getPath()); 171 System.out.println("process '" + srcFile.getPath() + "'"); 183 System.out.println(String.valueOf(n) + ": " + line) [all...] |
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/ |
BuildMirroringTables.java | 59 System.out.println("There are " + count + " mirrored characters."); 71 System.out.println("There are " + total + " characters with a different mirror.\n"); 79 System.out.println();
|
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/rbbi/ |
BuildDictionaryFile.java | 43 DataOutputStream out = null; local 45 out = new DataOutputStream(new FileOutputStream(outputFile)); 46 dictionary.writeDictionaryFile(out); 82 System.out.println("Building column map..."); 87 ++totalChars; if (totalChars > 0 && totalChars % 5000 == 0) System.out.println("Read " + totalChars + " characters..."); 114 //System.out.println("Compacting..."); 117 //System.out.println(tempReverseMap.toString()); 123 System.out.println("total columns = " + p); 129 System.out.println("Index:"); 132 System.out.println() [all...] |
/external/iproute2/lib/ |
json_writer.c | 26 FILE *out; /* output file */ member in struct:json_writer 37 fputs(" ", self->out); 46 putc('\n', self->out); 54 putc(self->sep, self->out); 63 putc('"', self->out); 67 fputs("\\t", self->out); 70 fputs("\\n", self->out); 73 fputs("\\r", self->out); 76 fputs("\\f", self->out); 79 fputs("\\b", self->out); [all...] |
/external/javassist/src/main/javassist/bytecode/ |
ByteStream.java | 180 public void writeTo(OutputStream out) throws IOException { 181 out.write(buf, 0, count);
|
/external/jetty/src/java/org/eclipse/jetty/io/ |
ByteArrayBuffer.java | 359 public void writeTo(OutputStream out) 369 out.write(_bytes,off,c); 375 out.write(_bytes,getIndex(),len);
|
/external/jetty/src/java/org/eclipse/jetty/websocket/ |
DeflateFrameExtension.java | 130 byte[] out= new byte[length]; 136 out[out_offset++]=0x7f; 137 out[out_offset++]=(byte)0; 138 out[out_offset++]=(byte)0; 139 out[out_offset++]=(byte)0; 140 out[out_offset++]=(byte)0; 141 out[out_offset++]=(byte)((length>>24)&0xff); 142 out[out_offset++]=(byte)((length>>16)&0xff); 143 out[out_offset++]=(byte)((length>>8)&0xff); 144 out[out_offset++]=(byte)(length&0xff) 160 super.addFrame(setFlag(flags,1),opcode,out,0,l+out_offset); local [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/libgdx/extensions/gdx-bullet/src/com/badlogic/gdx/physics/bullet/ |
Bullet.java | 86 public static void getShapeParts (final Node node, final boolean applyTransform, final Array<ShapePart> out, final int offset,
91 for (int i = offset, n = out.size; i < n; i++) {
92 final ShapePart p = out.get(i);
102 out.add(part);
109 final int o = transformed ? out.size : offset;
110 getShapeParts(node.getChildren(), out, o, pool);
local 112 for (int i = o, n = out.size; i < n; i++) {
113 final ShapePart part = out.get(i);
121 public static <T extends Node> void getShapeParts (final Iterable<T> nodes, final Array<ShapePart> out, final int offset,
124 getShapeParts(node, true, out, offset, pool); [all...] |
/external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/src/win32/ |
Win32KeyBoard.cpp | 248 WCHAR out[3]; local 251 if(FoldStringW(MAP_PRECOMPOSED, (LPWSTR)wcBuff, 3, (LPWSTR)out, 3)) 252 return out[0];
|
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/flame/ |
TextureAtlasPanel.java | 75 protected Array<TextureRegion> getRegions (Texture texture, Array<AtlasRegion> atlasRegions, Array<TextureRegion> out) { 76 out.clear(); 79 out.add(region); 81 return out;
|
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/texturepacker/ |
TexturePackerTest.java | 77 System.out.println("fast: " + settings.fast); 78 System.out.println((e - s) / 1e6f + " ms"); 79 System.out.println();
|
/external/libgdx/gdx/src/com/badlogic/gdx/utils/ |
Base64Coder.java | 157 char[] out = new char[oLen];
local 169 out[op++] = charMap[o0];
170 out[op++] = charMap[o1];
171 out[op] = op < oDataLen ? charMap[o2] : '=';
173 out[op] = op < oDataLen ? charMap[o3] : '=';
176 return out;
269 byte[] out = new byte[oLen];
291 out[op++] = (byte)o0;
293 out[op++] = (byte)o1;
296 out[op++] = (byte)o2; [all...] |
/external/libgdx/gdx/src/com/badlogic/gdx/utils/compression/ |
Lzma.java | 59 * @param out the {@link OutputStream} to compress to
61 static public void compress (InputStream in, OutputStream out) throws IOException {
72 encoder.WriteCoderProperties(out);
82 out.write((int)(fileSize >>> (8 * i)) & 0xFF);
84 encoder.Code(in, out, -1, -1, null);
90 * @param out the {@link OutputStream} to decompress to
92 static public void decompress (InputStream in, OutputStream out) throws IOException {
106 if (!decoder.Code(in, out, outSize)) {
|
/external/libmicrohttpd/src/testspdy/ |
test_session_timeout.c | 273 int out; local 275 out=dup(1); 276 if (-1 == out) 307 dup2(out,1); 308 close(out);
|
/external/libvpx/libvpx/vp9/common/ |
vp9_idct.c | 30 tran_low_t out[4 * 4]; local 31 tran_low_t *outptr = out; 44 temp_in[j] = out[j * 4 + i]; 63 tran_low_t out[8 * 8]; local 64 tran_low_t *outptr = out; 78 temp_in[j] = out[j * 8 + i]; 97 tran_low_t out[16 * 16]; local 98 tran_low_t *outptr = out; 112 temp_in[j] = out[j * 16 + i]; 220 tran_low_t out[4 * 4] local 253 tran_low_t out[8 * 8]; local 288 tran_low_t out[16 * 16]; local [all...] |
/external/libvpx/libvpx/vpx_dsp/mips/ |
idct8x8_msa.c | 104 int16_t out; local 108 out = ROUND_POWER_OF_TWO((input[0] * cospi_16_64), DCT_CONST_BITS); 109 out = ROUND_POWER_OF_TWO((out * cospi_16_64), DCT_CONST_BITS); 110 val = ROUND_POWER_OF_TWO(out, 5);
|
itrans4_dspr2.c | 226 DECLARE_ALIGNED(32, int16_t, out[4 * 4]); 227 int16_t *outptr = out; 241 vpx_idct4_columns_add_blk_dspr2(&out[0], dest, dest_stride); 248 int32_t out; local 261 out = DCT_CONST_ROUND_SHIFT_TWICE_COSPI_16_64(input_dc); 263 "addi %[out], %[out], 8 \n\t" 264 "sra %[a1], %[out], 4 \n\t" 266 : [out] "+r" (out), [a1] "=r" (a1 [all...] |
/external/libxml2/ |
xmlcatalog.c | 484 FILE *out; local 489 out = fopen(argv[i + 1], "w"); 490 if (out == NULL) { 496 xmlACatalogDump(catal, out); 497 fclose(out); 504 out = fopen(XML_SGML_DEFAULT_CATALOG, "w"); 505 if (out == NULL) { 513 xmlACatalogDump(super, out); 514 fclose(out); 589 FILE *out; local [all...] |