HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 276 - 300 of 1601) sorted by null

<<11121314151617181920>>

  /external/icu/icu4c/source/tools/gentest/
gentest.c 145 FILE *out; local
154 out = fopen(file, "w");
157 if(out == NULL) {
163 fprintf(out, "/** Copyright (C) 2007-%d, International Business Machines Corporation and Others. All Rights Reserved. **/\n\n", year);
164 fprintf(out, "/* NOTE: this file is AUTOMATICALLY GENERATED by gentest.\n"
167 fprintf(out, "package com.ibm.icu.dev.test.util;\n\n");
168 fprintf(out, "public class DebugUtilitiesData extends Object {\n");
169 fprintf(out, " public static final String ICU4C_VERSION=\"%s\";\n", U_ICU_VERSION);
171 fprintf(out, " public static final int %s = %d;\n", udbg_enumName(UDBG_UDebugEnumType,t), t);
173 fprintf(out, " public static final String [] TYPES = { \n")
    [all...]
  /external/javassist/src/main/javassist/tools/web/
Webserver.java 51 * <code>ClassPool</code> are written out under the directory
142 System.out.println(msg);
149 System.out.print(msg1);
150 System.out.print(" ");
151 System.out.println(msg2);
158 System.out.print(msg1);
159 System.out.print(" ");
160 System.out.print(msg2);
161 System.out.print(" ");
162 System.out.println(msg3)
196 OutputStream out = new BufferedOutputStream(clnt.getOutputStream()); local
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/escape/
SimpleEscapingFunction.java 85 public void filter(String in, Appendable out) throws IOException {
98 out.append(in, start, pos);
100 out.append(escapeString);
108 out.append(in, start, pos);
  /external/libunwind/tests/
crasher.c 22 FILE *out = fopen(fname, "w"); local
24 if (!maps || !out)
36 fprintf(out, "0x%jx:%s ", addr, path);
38 fprintf(out, "\n");
40 fclose(out);
47 FILE *out; local
53 out = fopen(fname, "w");
54 if (out == NULL)
77 fprintf(out, "0x%jx:%s ", kv->kve_start, kv->kve_path);
81 fprintf(out, "\n")
    [all...]
  /external/llvm/examples/BrainF/
BrainFDriver.cpp 100 raw_ostream *out = &outs(); local
111 out = new raw_fd_ostream(OutputFilename.c_str(), ErrInfo,
139 //Write it out
149 WriteBitcodeToFile(mod, *out);
153 if (out != &outs())
154 delete out;
  /external/llvm/tools/llvm-diff/
DiffConsumer.h 68 raw_ostream &out; member in class:llvm::DiffConsumer
79 : out(errs()), Differences(false), Indent(0) {}
  /external/mesa3d/src/gallium/auxiliary/rbug/
rbug_connection.c 21 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
73 struct rbug_header *out; local
104 out = rbug_demarshal(data);
105 if (!out)
112 return out;
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
DecoderSpecificInfo.java 49 ByteBuffer out = ByteBuffer.wrap(bytes); local
51 return out;
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/
ScalingList.java 18 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
40 public void write(CAVLCWriter out) throws IOException {
42 out.writeSE(0, "SPS: ");
51 out.writeSE(deltaScale, "SPS: ");
  /external/openssl/apps/
gendh.c 36 * The word 'cryptographic' can be left out if the rouines from the library
51 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
100 BIO *out=NULL; local
117 if (strcmp(*argv,"-out") == 0)
149 BIO_printf(bio_err," -out file - output the key to 'file\n");
166 out=BIO_new(BIO_s_file());
167 if (out == NULL)
175 BIO_set_fp(out,stdout,BIO_NOCLOSE);
179 out = BIO_push(tmpbio, out);
    [all...]
rand.c 46 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
69 /* -out file - write to file
86 BIO *out = NULL; local
105 if (strcmp(argv[i], "-out") == 0)
167 BIO_printf(bio_err, "-out file - write to file\n");
186 out = BIO_new(BIO_s_file());
187 if (out == NULL)
190 r = BIO_write_filename(out, outfile);
193 r = BIO_set_fp(out, stdout, BIO_NOCLOSE | BIO_FP_TEXT);
197 out = BIO_push(tmpbio, out)
    [all...]
  /external/openssl/crypto/asn1/
bio_ndef.c 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
67 * The data is streamed out and does *not* need to be
71 * signatures etc written out.
89 BIO *out; member in struct:ndef_aux_st
101 BIO *BIO_new_NDEF(BIO *out, ASN1_VALUE *val, const ASN1_ITEM *it)
118 out = BIO_push(asn_bio, out);
120 if (!ndef_aux || !asn_bio || !out)
130 sarg.out = out;
    [all...]
  /external/openssl/crypto/bn/
exptest.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
114 BIO *out=NULL; local
138 out=BIO_new(BIO_s_file());
140 if (out == NULL) EXIT(1);
141 BIO_set_fp(out,stdout,BIO_NOCLOSE);
164 ERR_print_errors(out);
172 ERR_print_errors(out);
180 ERR_print_errors(out);
188 ERR_print_errors(out);
    [all...]
  /external/openssl/crypto/des/
fcrypt.c 103 DES_LONG out[2],ll; local
144 fcrypt_body(&(out[0]),&ks,Eswap0,Eswap1);
146 ll=out[0]; l2c(ll,b);
147 ll=out[1]; l2c(ll,b);
  /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...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
ElementPolicy.java 26 // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
71 ElementPolicy out = null; field in class:ElementPolicy.Util.PolicyJoiner
75 out = p;
76 } else if (out != REJECT_ALL_ELEMENT_POLICY) {
83 if (out == null || out == IDENTITY_ELEMENT_POLICY) {
84 out = p;
86 out = new JoinedElementPolicy(out, p);
98 return pu.out != null ? pu.out : IDENTITY_ELEMENT_POLICY
    [all...]
  /external/owasp/sanitizer/src/tests/org/owasp/html/
EncodingTest.java 26 // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
218 StringBuilder out = new StringBuilder(); local
219 Encoding.encodeHtmlOnto(cps.toString(), out); local
223 out.toString());
HtmlChangeReporterTest.java 26 // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
45 StringBuilder out = new StringBuilder(); local
48 out, Handler.DO_NOTHING);
75 assertEquals("Hello,<b>World</b>!", out.toString());
  /cts/common/host-side/java-scanner/tests/src/com/android/compatibility/common/scanner/
JavaScannerTest.java 29 private static final String JAR = "out/host/linux-x86/framework/compatibility-java-scanner_v2.jar";
98 final PrintWriter out = new PrintWriter(f); local
99 out.print(content);
100 out.flush();
101 out.close();
  /cts/libs/json/src/com/android/json/stream/
JsonWriter.java 71 * public void writeJsonStream(OutputStream out, List<Message> messages) throws IOException {
72 * JsonWriter writer = new JsonWriter(new OutputStreamWriter(out, "UTF-8"));
123 private final Writer out; field in class:JsonWriter
142 * Creates a new instance that writes a JSON-encoded stream to {@code out}.
146 public JsonWriter(Writer out) {
147 if (out == null) {
148 throw new NullPointerException("out == null");
150 this.out = out;
216 out.write(openBracket)
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
MovieTest.java 99 ByteArrayOutputStream out = new ByteArrayOutputStream(1024); local
103 out.write(buffer, 0, len);
106 out.close();
107 return out.toByteArray();
  /cts/tests/tests/media/src/android/media/cts/
MediaScannerNotificationTest.java 101 FileOutputStream out = new FileOutputStream(foo); local
102 out.write(0x12);
103 out.flush();
104 out.close();
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
CtsApiCoverage.java 47 System.out.println("Usage: cts-api-coverage [OPTION]... [APK]...");
48 System.out.println();
49 System.out.println("Generates a report about what Android framework methods are called ");
50 System.out.println("from the given APKs.");
51 System.out.println();
52 System.out.println("Use the Makefiles rules in CtsTestCoverage.mk to generate the report ");
53 System.out.println("rather than executing this directly. If you still want to run this ");
54 System.out.println("directly, then this must be used from the $ANDROID_BUILD_TOP ");
55 System.out.println("directory and dexdeps must be built via \"make dexdeps\".");
56 System.out.println()
194 OutputStream out = outputFile != null local
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/share/
JPDADebuggeeSynchronizer.java 42 * TCP/IP sockets. All operations can be timed out according to default timeout.
54 protected DataOutputStream out; field in class:JPDADebuggeeSynchronizer
85 out.writeUTF(message);
86 out.flush();
199 out = new DataOutputStream(clientSocket.getOutputStream());
220 out = new DataOutputStream(clientSocket.getOutputStream());
234 if (out != null)
235 out.close();
  /external/apache-harmony/support/src/test/java/tests/support/resource/
Support_Resources.java 106 FileOutputStream out = new FileOutputStream(dest); local
110 out.write(buf, 0, result);
113 out.close();

Completed in 78 milliseconds

<<11121314151617181920>>