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

<<11121314151617181920>>

  /art/test/097-duplicate-method/src/
Main.java 25 System.out.println("Success!");
  /art/test/108-check-cast/src/
Main.java 35 System.out.println("Error: No ClassCastException throuwn when it should have been.");
37 System.out.println("OK");
42 System.out.println("Error: ClassCastException thrown when it shouldn't have been.");
44 System.out.println("OK");
  /cts/tests/tests/os/src/android/os/cts/
ParcelFileDescriptor_AutoCloseOutputStreamTest.java 28 AutoCloseOutputStream out = new AutoCloseOutputStream(pf); local
30 out.write(2);
32 out.close();
35 out.write(2);
  /dalvik/dx/tests/119-merge-conflict/testdata/
B.java 5 System.out.println(new A().hello());
  /external/chromium_org/third_party/openssl/openssl/crypto/aes/
aes_ecb.c 46 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
62 void AES_ecb_encrypt(const unsigned char *in, unsigned char *out,
65 assert(in && out && key);
69 AES_encrypt(in, out, key);
71 AES_decrypt(in, out, key);
  /external/chromium_org/third_party/skia/tools/
coverage.sh 18 ninja -C out/Coverage
22 lcov $QUIET --gcov-tool=$GCOV -c -b out/Coverage -d out/Coverage -o /tmp/baseline -i
25 out/Coverage/$COMMAND
26 lcov $QUIET --gcov-tool=$GCOV -c -b out/Coverage -d out/Coverage -o /tmp/coverage
30 genhtml $QUIET /tmp/merged --legend -o out/Coverage/report
31 xdg-open out/Coverage/report/index.html
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
enhancer_interface.h 29 int16_t *out, /* (o) enhanced signal */
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
IContent.java 20 void emit (final HTMLWriter out);
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/html/
CssUrlValidateFunction.java 43 protected void applyEscaping(String in, Appendable out) throws IOException {
48 out.append("%0A");
51 out.append("%0D");
54 out.append("%22");
57 out.append("%27");
60 out.append("%28");
63 out.append("%29");
66 out.append("%2A");
69 out.append("%3C");
72 out.append("%3E")
    [all...]
  /external/llvm/projects/
Makefile 15 DIRS:= $(filter-out llvm-test test-suite,$(patsubst $(PROJ_SRC_DIR)/%/Makefile,%,$(wildcard $(PROJ_SRC_DIR)/*/Makefile)))
18 DIRS := $(filter-out compiler-rt,$(DIRS))
21 DIRS := $(filter-out libcxx,$(DIRS))
23 # DragonEgg may be checked out here but doesn't (yet) build directly.
24 DIRS := $(filter-out dragonegg,$(DIRS))
  /external/llvm/tools/opt/
BreakpointPrinter.h 22 ModulePass *createBreakpointPrinter(raw_ostream &out);
  /external/openssl/crypto/aes/
aes_ecb.c 46 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
62 void AES_ecb_encrypt(const unsigned char *in, unsigned char *out,
65 assert(in && out && key);
69 AES_encrypt(in, out, key);
71 AES_decrypt(in, out, key);
  /external/skia/tools/
coverage.sh 18 ninja -C out/Coverage
22 lcov $QUIET --gcov-tool=$GCOV -c -b out/Coverage -d out/Coverage -o /tmp/baseline -i
25 out/Coverage/$COMMAND
26 lcov $QUIET --gcov-tool=$GCOV -c -b out/Coverage -d out/Coverage -o /tmp/coverage
30 genhtml $QUIET /tmp/merged --legend -o out/Coverage/report
31 xdg-open out/Coverage/report/index.html
  /external/zopfli/src/zopfli/
zopfli_lib.c 30 unsigned char** out, size_t* outsize) {
32 ZopfliGzipCompress(options, in, insize, out, outsize);
34 ZopfliZlibCompress(options, in, insize, out, outsize);
38 in, insize, &bp, out, outsize);
  /frameworks/base/telephony/java/com/android/ims/internal/
IImsRegistrationListener.aidl 68 out int[] enabledFeatures, out int[] disabledFeatures);
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Sequence.java 48 public final void encodeContent(BerOutputStream out) {
49 out.encodeSequence(this);
52 public final void setEncodingContent(BerOutputStream out) {
53 out.getSequenceLength(this);
ASN1SequenceOf.java 48 public final void encodeContent(BerOutputStream out) {
49 out.encodeSequenceOf(this);
52 public final void setEncodingContent(BerOutputStream out) {
53 out.getSequenceOfLength(this);
ASN1Set.java 48 public final void encodeContent(BerOutputStream out) {
49 out.encodeSet(this);
52 public final void setEncodingContent(BerOutputStream out) {
53 out.getSetLength(this);
ASN1SetOf.java 48 public final void encodeContent(BerOutputStream out) {
49 out.encodeSetOf(this);
52 public final void setEncodingContent(BerOutputStream out) {
53 out.getSetOfLength(this);
  /external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/
CharSinkTester.java 96 Writer out = create(); local
97 out.close();
104 Writer out = create(); local
106 out.write(a, 1000, 0);
107 out.write(a, 0, 0);
108 out.write(new char[] { });
110 out.close();
117 Writer out = create(); local
119 out.write(c);
122 out.close()
129 Writer out = create(); local
141 Writer out = create(); local
172 Writer out = create(); local
181 Writer out = create(); local
196 Writer out = create(); local
    [all...]
SinkTester.java 97 OutputStream out = create(); local
98 out.close();
105 OutputStream out = create(); local
107 out.write(a, 1000, 0);
108 out.write(a, 0, 0);
109 out.write(new byte[] { });
111 out.close();
118 OutputStream out = create(); local
120 out.write(b);
123 out.close()
134 OutputStream out = create(); local
156 OutputStream out = create(); local
184 OutputStream out = create(); local
193 OutputStream out = create(); local
208 OutputStream out = create(); local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/dh/
dhtest.c 35 * The word 'cryptographic' can be left out if the rouines from the library
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
104 BIO *out; local
116 out=BIO_new(BIO_s_file());
117 if (out == NULL) EXIT(1);
118 BIO_set_fp(out,stdout,BIO_NOCLOSE);
120 BN_GENCB_set(&_cb, &cb, out);
127 BIO_puts(out, "p value is not prime\n");
129 BIO_puts(out, "p value is not a safe prime\n");
131 BIO_puts(out, "unable to check the generator value\n")
    [all...]
  /external/openssl/crypto/dh/
dhtest.c 35 * The word 'cryptographic' can be left out if the rouines from the library
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
104 BIO *out; local
116 out=BIO_new(BIO_s_file());
117 if (out == NULL) EXIT(1);
118 BIO_set_fp(out,stdout,BIO_NOCLOSE);
120 BN_GENCB_set(&_cb, &cb, out);
127 BIO_puts(out, "p value is not prime\n");
129 BIO_puts(out, "p value is not a safe prime\n");
131 BIO_puts(out, "unable to check the generator value\n")
    [all...]
  /libcore/support/src/test/java/org/apache/harmony/testframework/
CharSinkTester.java 96 Writer out = create(); local
97 out.close();
104 Writer out = create(); local
106 out.write(a, 1000, 0);
107 out.write(a, 0, 0);
108 out.write(new char[] { });
110 out.close();
117 Writer out = create(); local
119 out.write(c);
122 out.close()
129 Writer out = create(); local
141 Writer out = create(); local
172 Writer out = create(); local
181 Writer out = create(); local
196 Writer out = create(); local
    [all...]
SinkTester.java 97 OutputStream out = create(); local
98 out.close();
105 OutputStream out = create(); local
107 out.write(a, 1000, 0);
108 out.write(a, 0, 0);
109 out.write(new byte[] { });
111 out.close();
118 OutputStream out = create(); local
120 out.write(b);
123 out.close()
134 OutputStream out = create(); local
156 OutputStream out = create(); local
184 OutputStream out = create(); local
193 OutputStream out = create(); local
208 OutputStream out = create(); local
    [all...]

Completed in 3324 milliseconds

<<11121314151617181920>>