/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/ |
BCRSAPrivateKey.java | 140 ObjectOutputStream out) 143 out.defaultWriteObject();
|
BCRSAPublicKey.java | 164 ObjectOutputStream out) 167 out.defaultWriteObject(); 171 out.writeObject(algorithmIdentifier.getEncoded());
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/ |
PKCS12BagAttributeCarrierImpl.java | 75 public void writeObject(ObjectOutputStream out) 80 out.writeObject(new Hashtable()); 81 out.writeObject(new Vector()); 98 out.writeObject(bOut.toByteArray());
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/ |
Base64Encoder.java | 62 OutputStream out) 75 out.write(encodingTable[(a1 >>> 2) & 0x3f]); 76 out.write(encodingTable[((a1 << 4) | (a2 >>> 4)) & 0x3f]); 77 out.write(encodingTable[((a2 << 2) | (a3 >>> 6)) & 0x3f]); 78 out.write(encodingTable[a3 & 0x3f]); 96 out.write(encodingTable[b1]); 97 out.write(encodingTable[b2]); 98 out.write(padding); 99 out.write(padding); 109 out.write(encodingTable[b1]) [all...] |
/external/caliper/caliper/src/main/java/com/google/caliper/worker/ |
WorkerMain.java | 75 System.out.flush(); // ?
|
/external/curl/docs/examples/ |
http2-serverpush.c | 130 FILE *out = fopen(OUTPUTFILE, "wb"); local 133 curl_easy_setopt(hnd, CURLOPT_WRITEDATA, out); 167 FILE *out; local 175 out = fopen(filename, "wb"); 178 curl_easy_setopt(easy, CURLOPT_WRITEDATA, out);
|
/external/curl/src/ |
tool_easysrc.c | 79 /* Clean up all source code if we run out of memory */ 178 FILE *out; local 181 out = fopen(o, FOPEN_WRITETEXT); 185 out = stdout; 186 if(!out) 193 fprintf(out, "%s\n", c); 198 fprintf(out, " %s\n", ptr->data); 203 fprintf(out, "\n"); 206 fprintf(out, " %s\n", ptr->data); 209 fprintf(out, "\n") [all...] |
tool_parsecfg.c | 178 /* out of memory */ 297 char out; local 301 switch(out = *line) { 303 continue; /* this'll break out of the loop */ 305 out = '\t'; 308 out = '\n'; 311 out = '\r'; 314 out = '\v'; 317 *param++ = out; 330 * NULL is returned on an out of memory condition [all...] |
/external/dng_sdk/source/ |
dng_rect.h | 494 dng_rect out = rect; local 496 HalfRect (out); 498 return out; 507 dng_rect out = rect; local 509 DoubleRect (out); 511 return out; 521 dng_rect out = rect; local 523 InnerPadRect (out, pad); 525 return out; 535 dng_rect out = rect 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"; 228 std::ofstream out(filename.c_str(),std::ios::out); 266 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/fio/ |
json.c | 293 static void json_print_level(int level, struct buf_output *out) 296 log_buf(out, " "); 302 void json_print_object(struct json_object *obj, struct buf_output *out) 306 log_buf(out, "{\n"); 309 log_buf(out, ",\n"); 310 json_print_pair(obj->pairs[i], out); 312 log_buf(out, "\n"); 313 json_print_level(json_object_level(obj), out); local 314 log_buf(out, "}"); 317 static void json_print_pair(struct json_pair *pair, struct buf_output *out) 319 json_print_level(json_pair_level(pair), out); local 336 json_print_level(json_array_level(array), out); local [all...] |
/external/flatbuffers/grpc/src/compiler/ |
cpp_generator.cc | 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 45 std::ostringstream out; local 46 out << x; 47 return out.str(); [all...] |
/external/guava/guava/src/com/google/common/base/ |
CaseFormat.java | 133 StringBuilder out = null; local 139 out = new StringBuilder(s.length() + 4 * wordSeparator.length()); 140 out.append(format.normalizeFirstWord(s.substring(i, j))); 142 out.append(format.normalizeWord(s.substring(i, j))); 144 out.append(format.wordSeparator); 149 : out.append(format.normalizeWord(s.substring(i))).toString();
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
TransliterationRuleSet.java | 200 System.out.println((incremental ? "Rule.i: match ":"Rule: match ") + 207 System.out.println((incremental ? "Rule.i: partial match ":"Rule: partial match ") + 214 System.out.println("Rule: no match " + rules[i]); 221 System.out.println((incremental ? "Rule.i: no match => ":"Rule: no match => ") +
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/bidi/ |
TestClassOverride.java | 135 String out = bidi.writeReordered(Bidi.DO_MIRRORING); local 136 assertEquals("Actual and expected output mismatch", textOut, out);
|
TestCompatibility.java | 215 String out = bidi.writeReordered(0); local 216 logln("Output #1 of Bidi(AttributedCharacterIterator): " + out); 225 out = bidi.writeReordered(0); 226 logln("Output #2 of Bidi(AttributedCharacterIterator): " + out); 233 out = bidi.writeReordered(0); 234 logln("Output #3 of Bidi(AttributedCharacterIterator): " + out); 240 out = bidi.writeReordered(0); 241 logln("Output of Bidi(abc==(123)==>def,3,null,0,10, DEFAULT_LTR): " + out); 245 out = bidi.writeReordered(0); 246 logln("Output of Bidi(abc==(123)==>def,3,null,0,10, DEFAULT_RTL): " + out); [all...] |
TestMultipleParagraphs.java | 423 String out = bidi.writeReordered(0); local 424 assertEquals("\nInvalid output", "\u05d1\u05d2 abc\n", out); 426 out = bidi.writeReordered(0); 427 assertEquals("\nInvalid output #1", "\u05d1\u05d2 abc", out); 434 out = bidi.writeReordered(0); 435 assertEquals("\nInvalid output #2", "ab\u05d2\u05d1\n123\u05d4\u05d3", out);
|
/external/icu/android_icu4j/src/samples/java/android/icu/samples/text/datetimepatterngenerator/ |
DateTimePatternGeneratorSample.java | 33 System.out.println("========================================================================"); 34 System.out.println(" getBestPatternExample()"); 35 System.out.println(); 36 System.out.println(" Use DateTimePatternGenerator to create customized date/time pattern:"); 37 System.out.println(" yQQQQ,yMMMM, MMMMd, hhmm, jjmm per locale"); 38 System.out.println("========================================================================"); 54 System.out.printf("%-20s%-35s%-35s%-35s\n\n", "Skeleton", "en_US", "fr_FR","zh_CN"); 56 System.out.printf("%-20s", skeleton); 65 System.out.printf("%-35s",sdf.format(date)); 67 System.out.println("\n") [all...] |
/external/icu/android_icu4j/src/samples/java/android/icu/samples/text/pluralformat/ |
PluralFormatSample.java | 27 System.out.println("======================================================================================="); 28 System.out.println(" PluralFormatExample()"); 29 System.out.println(); 30 System.out.println(" Use PluralFormat and Messageformat to get appropriate Plural Form for languages below:"); 31 System.out.println(" English, Slovenian"); 32 System.out.println("======================================================================================="); 48 System.out.println("Output by using PluralFormat and MessageFormat API\n"); 49 System.out.printf("%-16s%-16s%-16s\n", "Number", "English", "Slovenian"); 59 System.out.printf("%-16s%-16s%-16s\n", num, msgEn, msgSl); 62 System.out.println() [all...] |
/external/icu/icu4c/source/samples/layout/ |
GDIFontInstance.cpp | 65 le_int32 out = 0; local 77 ttGlyphs[out] = ttGlyph; 78 dx[out] = (le_int32) (positions[g * 2 + 2] - positions[g * 2]); 79 ps[out * 2] = positions[g * 2]; 80 ps[out * 2 + 1] = positions[g * 2 + 1]; 81 out += 1; 91 while (dyEnd < out) { 95 while (dyEnd < out && yOffset == ps[dyEnd * 2 + 1]) {
|
/external/icu/icu4c/source/samples/uresb/ |
uresb.c | 24 * This program prints out resource bundles - example for 65 void printOutBundle(UFILE *out, UResourceBundle *resource, int32_t indent, UErrorCode *status); 66 void printIndent(UFILE *out, int32_t indent); 67 void printHex(UFILE *out, const int8_t *what); 86 UFILE *out = NULL; local 152 out = u_finit(stdout, locale, encoding); 158 u_fprintf(out, "uresb: processing file \"%s\" in path \"%s\"\n", arg, resPath); 161 u_fprintf(out, "%s\n", arg); 162 printOutBundle(out, bundle, 0, &status); 172 u_fclose(out); [all...] |
/external/icu/icu4c/source/samples/ustring/ |
ustring.cpp | 41 static char out[200]; local 51 ucnv_fromUChars(cnv, out, sizeof(out), s, length, &errorCode); 57 printf("%s%s {", announce, out); 81 static char out[200]; local 92 out[s.extract(0, 99, out)]=0; 93 printf("%s%s {", announce, out); 413 static char out[100]; variable
|