HomeSort by relevance Sort by last modified time
    Searched refs:out (Results 226 - 250 of 9602) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/extensions/api/bluetooth/
bluetooth_api_utils.h 20 Device* out);
24 AdapterState* out);
  /external/chromium_org/device/nfc/
nfc_ndef_record_utils_chromeos.h 19 // NfcDeviceClient::Push and NfcTagClient::Write and stores it in |out|.
23 base::DictionaryValue* out);
26 // instance by populating the instance passed in |out|. |out| must not be NULL
31 device::NfcNdefRecord* out);
  /external/chromium_org/third_party/icu/source/tools/gentest/
genres32.c 54 FILE *out; local
61 out = fopen(file, "w");
64 if(out == NULL) {
76 "testtable32 {", out
86 fprintf(out, "%s{\"\\U%08x\"}\n", key, i);
89 fprintf(out, "%s:int{%d}\n", key, i);
97 "}", out
100 fclose(out);
  /external/chromium_org/third_party/openssl/openssl/crypto/x509v3/
v3_pku.c 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
65 static int i2r_PKEY_USAGE_PERIOD(X509V3_EXT_METHOD *method, PKEY_USAGE_PERIOD *usage, BIO *out, int indent);
85 PKEY_USAGE_PERIOD *usage, BIO *out, int indent)
87 BIO_printf(out, "%*s", indent, "");
89 BIO_write(out, "Not Before: ", 12);
90 ASN1_GENERALIZEDTIME_print(out, usage->notBefore);
91 if(usage->notAfter) BIO_write(out, ", ", 2);
94 BIO_write(out, "Not After: ", 11);
95 ASN1_GENERALIZEDTIME_print(out, usage->notAfter);
  /external/chromium_org/third_party/skia/experimental/PdfViewer/scripts/
vm_pdf_viewer_run_one_pdf.sh 10 out/Debug/pdfviewer -r $1 -w $DIR/new -n
  /external/clang/test/SemaCXX/
statements.cpp 21 void a() { goto out; A x; out: return; }
  /external/e2fsprogs/lib/uuid/
unparse.c 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
51 static void uuid_unparse_x(const uuid_t uu, char *out, const char *fmt)
56 sprintf(out, fmt,
63 void uuid_unparse_lower(const uuid_t uu, char *out)
65 uuid_unparse_x(uu, out, fmt_lower);
68 void uuid_unparse_upper(const uuid_t uu, char *out)
70 uuid_unparse_x(uu, out, fmt_upper);
73 void uuid_unparse(const uuid_t uu, char *out)
75 uuid_unparse_x(uu, out, FMT_DEFAULT);
  /external/icu/icu4c/source/tools/gentest/
genres32.c 54 FILE *out; local
61 out = fopen(file, "w");
64 if(out == NULL) {
76 "testtable32 {", out
86 fprintf(out, "%s{\"\\U%08x\"}\n", key, i);
89 fprintf(out, "%s:int{%d}\n", key, i);
97 "}", out
100 fclose(out);
  /external/junit/src/org/junit/internal/
RealSystem.java 11 public PrintStream out() { method in class:RealSystem
12 return System.out;
  /external/libcxx/test/depr/depr.str.strstreams/depr.ostrstream/depr.ostrstream.cons/
cp_size_mode.pass.cpp 14 // ostrstream(char* s, int n, ios_base::openmode mode = ios_base::out);
23 std::ostrstream out(buf, 0);
24 assert(out.str() == std::string("123 4.5 dog"));
28 out << i << ' ' << d << ' ' << s << std::ends;
29 assert(out.str() == std::string("321 5.5 cat"));
33 std::ostrstream out(buf, 11, std::ios::app);
34 assert(out.str() == std::string("123 4.5 dog"));
38 out << i << ' ' << d << ' ' << s << std::ends;
39 assert(out.str() == std::string("123 4.5 dog321 5.5 cat"));
  /external/libcxx/test/depr/depr.str.strstreams/depr.ostrstream/depr.ostrstream.members/
rdbuf.pass.cpp 23 const std::ostrstream out(buf, 0);
24 std::strstreambuf* sb = out.rdbuf();
  /external/libcxx/test/depr/depr.str.strstreams/depr.strstream/depr.strstream.dest/
rdbuf.pass.cpp 23 const std::strstream out(buf, 0);
24 std::strstreambuf* sb = out.rdbuf();
  /external/openssl/crypto/x509v3/
v3_pku.c 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
65 static int i2r_PKEY_USAGE_PERIOD(X509V3_EXT_METHOD *method, PKEY_USAGE_PERIOD *usage, BIO *out, int indent);
85 PKEY_USAGE_PERIOD *usage, BIO *out, int indent)
87 BIO_printf(out, "%*s", indent, "");
89 BIO_write(out, "Not Before: ", 12);
90 ASN1_GENERALIZEDTIME_print(out, usage->notBefore);
91 if(usage->notAfter) BIO_write(out, ", ", 2);
94 BIO_write(out, "Not After: ", 11);
95 ASN1_GENERALIZEDTIME_print(out, usage->notAfter);
  /external/skia/experimental/PdfViewer/scripts/
vm_pdf_viewer_run_one_pdf.sh 10 out/Debug/pdfviewer -r $1 -w $DIR/new -n
  /external/wpa_supplicant_8/src/crypto/
aes-encblock.c 20 * @out: Output of the AES block operation (16 bytes)
23 int aes_128_encrypt_block(const u8 *key, const u8 *in, u8 *out)
29 aes_encrypt(ctx, in, out);
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
Wap230WspContentTypeTest.java 257 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
258 out.write(0x00);
259 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray());
266 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
267 out.write(testType.getBytes("US-ASCII"));
268 out.write(WSP_STRING_TERMINATOR);
270 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray());
281 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
282 out.write(testType.length() + 1);
283 out.write(testType.getBytes("US-ASCII"))
297 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
313 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
329 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
348 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
368 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
386 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
403 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
424 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
446 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
470 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
493 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
510 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
533 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
557 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
582 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
606 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
627 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
648 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
673 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
694 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
717 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
738 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
759 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
782 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
793 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
815 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
839 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
863 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
    [all...]
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
exposure.rs 25 void exposure(const uchar4 *in, uchar4 *out)
27 out->r = rsClamp((int)(bright * in->r), 0, 255);
28 out->g = rsClamp((int)(bright * in->g), 0, 255);
29 out->b = rsClamp((int)(bright * in->b), 0, 255);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.str.strstreams/depr.ostrstream/depr.ostrstream.cons/
cp_size_mode.pass.cpp 14 // ostrstream(char* s, int n, ios_base::openmode mode = ios_base::out);
23 std::ostrstream out(buf, 0);
24 assert(out.str() == std::string("123 4.5 dog"));
28 out << i << ' ' << d << ' ' << s << std::ends;
29 assert(out.str() == std::string("321 5.5 cat"));
33 std::ostrstream out(buf, 11, std::ios::app);
34 assert(out.str() == std::string("123 4.5 dog"));
38 out << i << ' ' << d << ' ' << s << std::ends;
39 assert(out.str() == std::string("123 4.5 dog321 5.5 cat"));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.str.strstreams/depr.ostrstream/depr.ostrstream.members/
rdbuf.pass.cpp 23 const std::ostrstream out(buf, 0);
24 std::strstreambuf* sb = out.rdbuf();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.str.strstreams/depr.strstream/depr.strstream.dest/
rdbuf.pass.cpp 23 const std::strstream out(buf, 0);
24 std::strstreambuf* sb = out.rdbuf();
  /system/core/fastboot/
p12topem.sh 9 openssl pkcs12 -passin pass:"$2" -passout pass:"$2" -in $1.p12 -out $1.pem
  /external/chromium_org/third_party/WebKit/Source/platform/text/
QuotedPrintable.cpp 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
57 void quotedPrintableEncode(const Vector<char>& in, Vector<char>& out)
59 quotedPrintableEncode(in.data(), in.size(), out);
62 void quotedPrintableEncode(const char* input, size_t inputLength, Vector<char>& out)
64 out.clear();
65 out.reserveCapacity(inputLength);
83 out.append(crlfLineEnding, strlen(crlfLineEnding));
98 out.append('=');
99 out.append(crlfLineEnding, strlen(crlfLineEnding));
105 out.append('=')
    [all...]
  /external/google-tv-pairing-protocol/java/src/com/google/polo/wire/json/
Base64.java 50 byte[] out = new byte[length];
110 out[out_index++] = (byte) ((quantum & 0x00FF0000) >> 16);
111 out[out_index++] = (byte) ((quantum & 0x0000FF00) >> 8);
112 out[out_index++] = (byte) (quantum & 0x000000FF);
120 out[out_index++] = (byte) ((quantum & 0x00FF0000) >> 16);
122 out[out_index++] = (byte) ((quantum & 0x0000FF00) >> 8);
127 System.arraycopy(out, 0, result, 0, out_index);
141 byte[] out = new byte[length];
144 out[index++] = map[(in[i] & 0xff) >> 2];
145 out[index++] = map[((in[i] & 0x03) << 4)
    [all...]
  /art/test/024-illegal-access/src/
Main.java 24 System.out.println("Got expected failure 1");
27 System.out.println("Got expected failure 1");
35 System.out.println("Got expected failure 2");
38 System.out.println("Got expected failure 2");
PublicAccess.java 23 System.out.println("Got " + shouldFail);

Completed in 2581 milliseconds

1 2 3 4 5 6 7 8 91011>>