/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
BERTaggedObject.java | 96 ASN1OutputStream out) 99 out.writeTag(BERTags.CONSTRUCTED | BERTags.TAGGED, tagNo); 100 out.write(0x80); 135 out.writeObject((ASN1Encodable)e.nextElement()); 140 out.writeObject(obj); 144 out.write(0x00); 145 out.write(0x00);
|
DERNull.java | 35 ASN1OutputStream out) 38 out.writeEncoded(BERTags.NULL, zeroBytes);
|
DEROctetString.java | 45 ASN1OutputStream out) 48 out.writeEncoded(BERTags.OCTET_STRING, string);
|
DERTaggedObject.java | 81 ASN1OutputStream out) 90 out.writeTag(BERTags.CONSTRUCTED | BERTags.TAGGED, tagNo); 91 out.writeLength(primitive.encodedLength()); 92 out.writeObject(primitive); 109 out.writeTag(flags, tagNo); 110 out.writeImplicitObject(primitive); 115 out.writeEncoded(BERTags.CONSTRUCTED | BERTags.TAGGED, tagNo, ZERO_BYTES);
|
DLTaggedObject.java | 75 ASN1OutputStream out) 84 out.writeTag(BERTags.CONSTRUCTED | BERTags.TAGGED, tagNo); 85 out.writeLength(primitive.encodedLength()); 86 out.writeObject(primitive); 103 out.writeTag(flags, tagNo); 104 out.writeImplicitObject(primitive); 109 out.writeEncoded(BERTags.CONSTRUCTED | BERTags.TAGGED, tagNo, ZERO_BYTES);
|
/external/conscrypt/libcore-stub/src/main/java/libcore/io/ |
Streams.java | 52 * Copies all of the bytes from {@code in} to {@code out}. Neither stream is closed. 55 public static int copy(InputStream in, OutputStream out) throws IOException { 61 out.write(buffer, 0, c);
|
/external/curl/tests/unit/ |
unit1396.c | 40 const char *out; member in struct:test 82 char *out = curl_easy_unescape(hnd, variable 86 abort_unless(out != NULL, "returned NULL!"); 88 fail_unless(!memcmp(out, list1[i].out, list1[i].outlen), 93 curl_free(out); variable 98 char *out = curl_easy_escape(hnd, list2[i].in, list2[i].inlen); variable 99 abort_unless(out != NULL, "returned NULL!"); 101 outlen = (int)strlen(out); 103 fail_unless(!memcmp(out, list2[i].out, list2[i].outlen) 108 curl_free(out); variable [all...] |
/external/eigen/unsupported/doc/examples/ |
FFT.cpp | 36 T out=0; local 38 out += mag2(vec[k]); 39 return out; 45 T out=0; local 47 out += mag2(vec[k]); 48 return out;
|
/external/fmtlib/test/ |
gtest-extra.cc | 24 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 107 fmt::MemoryWriter out; local 108 fmt::format_system_error(out, error_code, message); 109 return out.str();
|
/external/google-benchmark/src/ |
json_reporter.cc | 59 std::ostream& out = GetOutputStream(); local 61 out << "{\n"; 65 out << inner_indent << "\"context\": {\n"; 69 out << indent << FormatKV("date", walltime_value) << ",\n"; 71 out << indent << FormatKV("num_cpus", static_cast<int64_t>(context.num_cpus)) 73 out << indent << FormatKV("mhz_per_cpu", RoundDouble(context.mhz_per_cpu)) 75 out << indent << FormatKV("cpu_scaling_enabled", context.cpu_scaling_enabled) 83 out << indent << FormatKV("library_build_type", build_type) << "\n"; 85 out << inner_indent << "},\n"; 86 out << inner_indent << "\"benchmarks\": [\n" 95 std::ostream& out = GetOutputStream(); local 119 std::ostream& out = GetOutputStream(); local [all...] |
/external/guava/guava/src/com/google/common/io/ |
FileBackedOutputStream.java | 47 private OutputStream out; field in class:FileBackedOutputStream 94 out = memory; 156 out = memory; 169 out.write(b); 179 out.write(b, off, len); 183 out.close(); 187 out.flush(); 207 out = transfer;
|
/external/guava/guava-tests/test/com/google/common/io/ |
CountingOutputStreamTest.java | 30 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 31 CountingOutputStream counter = new CountingOutputStream(out); 32 assertEquals(written, out.size()); 37 assertEquals(written, out.size()); 43 assertEquals(written, out.size()); 48 assertEquals(written, out.size()); 53 assertEquals(written, out.size()); 62 assertEquals(written, out.size());
|
TestWriter.java | 31 private final TestOutputStream out; field in class:TestWriter 37 public TestWriter(TestOutputStream out) { 38 super(new OutputStreamWriter(checkNotNull(out), UTF_8)); 39 this.out = out; 61 return out.closed();
|
/external/guice/extensions/grapher/test/com/google/inject/grapher/demo/ |
InjectorGrapherDemo.java | 40 PrintWriter out = new PrintWriter(new File(args[0]), "UTF-8"); local 44 grapher.setOut(out);
|
/external/icu/icu4c/source/samples/citer/ |
citer.cpp | 24 static UFILE *out; variable 28 u_fprintf(out, "%S", &s); 34 u_fprintf(out, "%C", (UChar) ch); 36 u_fprintf(out, "[CharacterIterator::DONE = 0xFFFF]"); 38 u_fprintf(out, "[%X]", ch); 59 u_fprintf(out, "testText = %s", testChars); 62 u_fprintf(out, "clone() or equals() failed: Two clones tested unequal\n"); 70 u_fprintf(out, "iter.getText() != clone.getText()\n"); 73 u_fprintf(out, "\n"); 76 u_fprintf(out, "Forward = ") [all...] |
/external/icu/icu4j/tools/build/src-pre8/com/ibm/icu/dev/tool/docs/ |
ICUTagletAdapter.java | 32 TagletOutput out = writer.getTagletOutputInstance(); local 33 out.setOutput(toString(tag)); 34 return out; 40 TagletOutput out = writer.getTagletOutputInstance(); local 45 out.setOutput(toString(tags[0])); 46 return out;
|
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/ |
UnicodeSetClosure.java | 37 out = new PrintWriter( 40 System.out.println("Writing " + filename); 41 out.print('\uFEFF'); // BOM 50 out.close(); 67 System.out.println("Generating " + label + (forward ? "" : " BACKWARD")); 69 out.println("# MINIMAL FILTER GENERATED FOR: " + label + (forward ? "" : " BACKWARD")); 70 out.println(":: " 75 out.println(); 76 out.println("Unicode: " + s.toPattern(false)); 84 out = new PrintWriter 179 static PrintWriter out; field in class:UnicodeSetClosure [all...] |
/external/jacoco/org.jacoco.examples/src/org/jacoco/examples/ |
ClassInfo.java | 29 private final PrintStream out; field in class:ClassInfo 35 * @param out 38 public ClassInfo(final PrintStream out) { 39 this.out = out; 58 out.printf("class name: %s%n", coverage.getName()); 59 out.printf("class id: %016x%n", Long.valueOf(coverage.getId())); 60 out.printf("instructions: %s%n", Integer.valueOf(coverage 62 out.printf("branches: %s%n", 64 out.printf("lines: %s%n" [all...] |
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/ |
PropertyInfo.java | 16 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE 245 // Write the object out to a byte array 247 ObjectOutputStream out = new ObjectOutputStream(bos); local 248 out.writeObject(this); 249 out.flush(); 250 out.close();
|
SppPropertyInfo.java | 16 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE 245 // Write the object out to a byte array 247 ObjectOutputStream out = new ObjectOutputStream(bos); local 248 out.writeObject(this); 249 out.flush(); 250 out.close();
|
/external/libchrome/base/strings/ |
stringprintf_unittest.cc | 21 static void StringAppendVTestHelper(std::string* out, const char* format, ...) { 24 StringAppendV(out, format, ap); 91 std::string out; local 92 SStringPrintf(&out, "%s", src); 93 EXPECT_STREQ(src, out.c_str()); 113 std::string out; local 114 SStringPrintf(&out, fmt, src, src, src, src, src, src, src); 124 EXPECT_STREQ(ref, out.c_str()); 129 std::string out; local 130 StringAppendVTestHelper(&out, "%d foo %s", 1, "bar") 147 std::string out; local 162 std::wstring out; local 177 std::string out; local [all...] |
sys_string_conversions_posix.cc | 24 std::wstring out; local 25 UTF8ToWide(utf8.data(), utf8.size(), &out); 26 return out; 75 std::string out; 76 out.resize(num_out_chars); 84 size_t res = src ? wcrtomb(&out[j], src, &ps) : 0; 100 return out; 132 std::wstring out; 133 out.resize(num_out_chars); 140 wchar_t* dst = &out[j] [all...] |
/external/libcxx/test/std/input.output/iostream.format/input.streams/istream.rvalue/ |
rvalue.pass.cpp | 68 auto& out = (std::move(ss) >> A{}); local 69 assert(&out == &ss);
|
/external/libcxx/utils/google-benchmark/src/ |
json_reporter.cc | 59 std::ostream& out = GetOutputStream(); local 61 out << "{\n"; 65 out << inner_indent << "\"context\": {\n"; 69 out << indent << FormatKV("date", walltime_value) << ",\n"; 71 out << indent << FormatKV("num_cpus", static_cast<int64_t>(context.num_cpus)) 73 out << indent << FormatKV("mhz_per_cpu", RoundDouble(context.mhz_per_cpu)) 75 out << indent << FormatKV("cpu_scaling_enabled", context.cpu_scaling_enabled) 83 out << indent << FormatKV("library_build_type", build_type) << "\n"; 85 out << inner_indent << "},\n"; 86 out << inner_indent << "\"benchmarks\": [\n" 95 std::ostream& out = GetOutputStream(); local 119 std::ostream& out = GetOutputStream(); local [all...] |
/external/libmicrohttpd/src/microspdy/ |
compression.c | 260 Bytef out[SPDYF_ZLIB_CHUNK]; local 290 strm->next_out = out; 306 memcpy((*dest) + ((*dest_size) - have), out, have); 358 Bytef out[SPDYF_ZLIB_CHUNK]; local 386 strm->next_out = out; 434 memcpy((*dest) + ((*dest_size) - have), out, have);
|