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

1 2 3 4 5 67 8 91011>>

  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
JavaSourceWriter.java 32 * java = new JavaSourceWriter(out);
40 * java.writeStatement(call("System.out.println", string("hello")));
48 private final PrintWriter out; field in class:JavaSourceWriter
51 public JavaSourceWriter(Writer out) {
52 this.out = new PrintWriter(out);
59 out.append("package ").append(packageName).append(';');
68 out.append("import ").append(javaClass.getName()).append(';');
79 out.append("// ").append(comment);
85 out.append("public class ")
    [all...]
  /external/qemu/distrib/libsparse/src/
output_file.c 71 int (*write_data_chunk)(struct output_file *out, unsigned int len,
73 int (*write_fill_chunk)(struct output_file *out, unsigned int len,
75 int (*write_skip_chunk)(struct output_file *out, int64_t len);
76 int (*write_end_chunk)(struct output_file *out);
94 struct output_file out; member in struct:output_file_gz
99 container_of((_o), struct output_file_gz, out)
102 struct output_file out; member in struct:output_file_normal
107 container_of((_o), struct output_file_normal, out)
110 struct output_file out; member in struct:output_file_callback
116 container_of((_o), struct output_file_callback, out)
660 struct output_file *out; local
    [all...]
  /system/core/libsparse/
output_file.c 71 int (*write_data_chunk)(struct output_file *out, unsigned int len,
73 int (*write_fill_chunk)(struct output_file *out, unsigned int len,
75 int (*write_skip_chunk)(struct output_file *out, int64_t len);
76 int (*write_end_chunk)(struct output_file *out);
94 struct output_file out; member in struct:output_file_gz
99 container_of((_o), struct output_file_gz, out)
102 struct output_file out; member in struct:output_file_normal
107 container_of((_o), struct output_file_normal, out)
110 struct output_file out; member in struct:output_file_callback
116 container_of((_o), struct output_file_callback, out)
660 struct output_file *out; local
    [all...]
  /art/test/047-returns/src/
Main.java 23 System.out.println("pick 1");
25 System.out.println(((CommonInterface)pickOne(1)).doStuff());
27 System.out.println("pick 2");
29 System.out.println(((CommonInterface)pickOne(2)).doStuff());
31 System.out.println("pick 3");
53 System.out.println("one running");
56 System.out.println("one");
63 System.out.println("two running");
66 System.out.println("two");
73 System.out.println("three running")
    [all...]
  /build/tools/signapk/test/
run 5 all: out/signed-$(package)
8 rm -rf out
12 DSAPARAM := out/dsaparam
15 umask 0077 && openssl dsaparam -out $@ 1024
19 umask 0077 && openssl gendsa -out $@.pk~ $(DSAPARAM)
21 -in $@.pk~ -out $@.pk
22 umask 0077 && openssl req -new -x509 -key $@.pk -out $@ -days 1095 \
25 cert := out/key1.pem
26 out/signed-$(package): $(package) $(cert)
30 -key $(cert).pk -cert $(cert) -tempdir out
    [all...]
  /external/chromium_org/net/data/ssl/scripts/
generate-redundant-test-chains.sh 27 try rm -rf out
28 try mkdir out
34 try /bin/sh -c "echo $serial > out/$i-serial"
39 try openssl genrsa -out out/A.key 2048
40 try openssl genrsa -out out/B.key 2048
41 try openssl genrsa -out out/C.key 2048
42 try openssl genrsa -out out/D.key 204
    [all...]
generate-aia-certs.sh 15 try rm -rf out
16 try mkdir out
19 try /bin/sh -c "echo 01 > out/aia-test-root-serial"
20 try /bin/sh -c "echo 01 > out/aia-test-intermediate-serial"
23 touch out/aia-test-root-index.txt
24 touch out/aia-test-intermediate-index.txt
27 try openssl genrsa -out out/aia-test-root.key 2048
28 try openssl genrsa -out out/aia-test-intermediate.key 204
    [all...]
  /external/qemu/android/utils/
win32_cmdline_quote.c 26 stralloc_t out = STRALLOC_INIT;
29 stralloc_add_c(&out, '"');
42 stralloc_add_str(&out, "\\\\");
49 stralloc_add_str(&out, "\\\\");
50 stralloc_add_str(&out, "\\\"");
53 stralloc_add_c(&out, '\\');
54 stralloc_add_c(&out, param[n]);
60 stralloc_add_c(&out, '"');
62 char* result = ASTRDUP(stralloc_cstr(&out));
63 stralloc_reset(&out);
    [all...]
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
exposure.rs 28 uchar4 out = 0;
29 out.r = rsClamp((int)(bright * in.r), 0, 255);
30 out.g = rsClamp((int)(bright * in.g), 0, 255);
31 out.b = rsClamp((int)(bright * in.b), 0, 255);
32 return out;
  /libcore/luni/src/main/java/java/io/
FilterWriter.java 35 protected Writer out; field in class:FilterWriter
38 * Constructs a new FilterWriter on the Writer {@code out}. All writes are
41 * @param out
44 protected FilterWriter(Writer out) {
45 super(out);
46 this.out = out;
58 out.close();
63 * Flushes this writer to ensure all pending data is sent out to the target
72 out.flush()
    [all...]
  /external/bison/src/
gram.c 68 rule_lhs_print (rule *r, symbol *previous_lhs, FILE *out)
70 fprintf (out, " %3d ", r->number);
73 fprintf (out, "%s:", r->lhs->tag);
79 fputc (' ', out);
80 fputc ('|', out);
85 rule_lhs_print_xml (rule *r, FILE *out, int level)
87 xml_printf (out, level, "<lhs>%s</lhs>", r->lhs->tag);
101 rule_rhs_print (rule *r, FILE *out)
107 fprintf (out, " %s", symbols[*rp]->tag);
108 fputc ('\n', out);
    [all...]
  /art/test/026-access/src/
Main.java 21 System.out.println("access test");
26 System.out.println(Iface.X);
27 System.out.println(Iface2.Y);
28 System.out.println(Iface2.A);
29 System.out.println(Iface2.B);
  /external/chromium_org/third_party/openssl/openssl/crypto/ecdh/
ecdhtest.c 60 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
109 static void *KDF1_SHA1(const void *in, size_t inlen, void *out, size_t *outlen)
116 return SHA1(in, inlen, out);
123 static int test_ecdh_curve(int nid, const char *text, BN_CTX *ctx, BIO *out)
146 BIO_puts(out,"Testing key generation with ");
147 BIO_puts(out,text);
149 BIO_puts(out,"\n");
151 (void)BIO_flush(out);
169 BIO_puts(out," pri 1=");
170 BN_print(out,a->priv_key)
307 BIO *out; local
    [all...]
  /external/chromium_org/tools/gn/
config_values_extractors.cc 17 void operator()(const std::string& s, std::ostream& out) const {
18 out << " ";
19 EscapeStringToStream(out, s, escape_options_);
32 std::ostream& out) {
34 EscapedStringWriter(escape_options), out);
path_output.cc 26 void PathOutput::WriteFile(std::ostream& out, const SourceFile& file) const {
27 WritePathStr(out, file.value());
30 void PathOutput::WriteDir(std::ostream& out,
37 out << "/.";
39 out << "/";
41 // Writing out the source root.
44 // can't just write it out.
46 out << ".";
48 out.write(inverse_current_dir_.c_str(),
53 out << "./"
    [all...]
  /external/openssl/crypto/ecdh/
ecdhtest.c 60 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
109 static void *KDF1_SHA1(const void *in, size_t inlen, void *out, size_t *outlen)
116 return SHA1(in, inlen, out);
123 static int test_ecdh_curve(int nid, const char *text, BN_CTX *ctx, BIO *out)
146 BIO_puts(out,"Testing key generation with ");
147 BIO_puts(out,text);
149 BIO_puts(out,"\n");
151 (void)BIO_flush(out);
169 BIO_puts(out," pri 1=");
170 BN_print(out,a->priv_key)
307 BIO *out; local
    [all...]
  /external/zopfli/src/zopfli/
gzip_container.c 79 unsigned char** out, size_t* outsize) {
83 ZOPFLI_APPEND_DATA(31, out, outsize); /* ID1 */
84 ZOPFLI_APPEND_DATA(139, out, outsize); /* ID2 */
85 ZOPFLI_APPEND_DATA(8, out, outsize); /* CM */
86 ZOPFLI_APPEND_DATA(0, out, outsize); /* FLG */
88 ZOPFLI_APPEND_DATA(0, out, outsize);
89 ZOPFLI_APPEND_DATA(0, out, outsize);
90 ZOPFLI_APPEND_DATA(0, out, outsize);
91 ZOPFLI_APPEND_DATA(0, out, outsize);
93 ZOPFLI_APPEND_DATA(2, out, outsize); /* XFL, 2 indicates best compression. *
    [all...]
  /frameworks/base/tools/aapt/
AaptConfig.h 37 bool parse(const android::String8& str, ConfigDescription* out = NULL);
55 bool parseMcc(const char* str, android::ResTable_config* out = NULL);
56 bool parseMnc(const char* str, android::ResTable_config* out = NULL);
57 bool parseLayoutDirection(const char* str, android::ResTable_config* out = NULL);
58 bool parseSmallestScreenWidthDp(const char* str, android::ResTable_config* out = NULL);
59 bool parseScreenWidthDp(const char* str, android::ResTable_config* out = NULL);
60 bool parseScreenHeightDp(const char* str, android::ResTable_config* out = NULL);
61 bool parseScreenLayoutSize(const char* str, android::ResTable_config* out = NULL);
62 bool parseScreenLayoutLong(const char* str, android::ResTable_config* out = NULL);
63 bool parseOrientation(const char* str, android::ResTable_config* out = NULL)
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/translator/
UnfoldShortCircuit.cpp 32 TInfoSinkBase &out = mOutputHLSL->getBodyStream(); local
50 out << "bool s" << i << ";\n";
52 out << "{\n";
56 out << "s" << i << " = ";
59 out << ";\n";
60 out << "if (!s" << i << ")\n"
64 out << " s" << i << " = ";
67 out << ";\n"
70 out << "}\n";
81 out << "bool s" << i << ";\n"
113 TInfoSinkBase &out = mOutputHLSL->getBodyStream(); local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
t_x509a.c 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
68 int X509_CERT_AUX_print(BIO *out, X509_CERT_AUX *aux, int indent)
75 BIO_printf(out, "%*sTrusted Uses:\n%*s",
78 if(!first) BIO_puts(out, ", ");
82 BIO_puts(out, oidstr);
84 BIO_puts(out, "\n");
85 } else BIO_printf(out, "%*sNo Trusted Uses.\n", indent, "");
88 BIO_printf(out, "%*sRejected Uses:\n%*s",
91 if(!first) BIO_puts(out, ", ");
95 BIO_puts(out, oidstr)
    [all...]
  /external/openssl/crypto/asn1/
t_x509a.c 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
68 int X509_CERT_AUX_print(BIO *out, X509_CERT_AUX *aux, int indent)
75 BIO_printf(out, "%*sTrusted Uses:\n%*s",
78 if(!first) BIO_puts(out, ", ");
82 BIO_puts(out, oidstr);
84 BIO_puts(out, "\n");
85 } else BIO_printf(out, "%*sNo Trusted Uses.\n", indent, "");
88 BIO_printf(out, "%*sRejected Uses:\n%*s",
91 if(!first) BIO_puts(out, ", ");
95 BIO_puts(out, oidstr)
    [all...]
  /art/test/041-narrowing/src/
Main.java 8 System.out.println();
9 System.out.println("Double.POSITIVE_INFINITY = "
11 System.out.println("Double.NEGATIVE_INFINITY = "
13 System.out.println("Float.POSITIVE_INFINITY = "
15 System.out.println("Float.NEGATIVE_INFINITY = "
17 System.out.println("Double.NaN = "
19 System.out.println("Float.NaN = "
22 System.out.println();
23 System.out.println("(byte) Double.NaN = "
26 System.out.println("(short) Double.NaN =
    [all...]
  /external/chromium_org/tools/json_schema_compiler/test/
functions_as_parameters_unittest.cc 16 FunctionType out; local
17 EXPECT_FALSE(FunctionType::Populate(empty_value, &out));
23 FunctionType out; local
24 ASSERT_TRUE(FunctionType::Populate(value, &out));
25 EXPECT_TRUE(out.event_callback.empty());
35 FunctionType out; local
36 ASSERT_TRUE(FunctionType::Populate(value, &out));
37 EXPECT_TRUE(value.Equals(out.ToValue().get()));
46 FunctionType out; local
47 ASSERT_TRUE(FunctionType::Populate(value, &out));
55 OptionalFunctionType out; local
63 OptionalFunctionType out; local
71 OptionalFunctionType out; local
80 OptionalFunctionType out; local
90 OptionalFunctionType out; local
    [all...]
  /external/chromium_org/ui/ozone/
generate_constructor_list.py 74 def GenerateConstructorList(out, namespace, export, typenames, platforms,
78 out.write('// DO NOT MODIFY. GENERATED BY generate_constructor_list.py\n')
79 out.write('\n')
81 out.write('#include "ui/ozone/platform_object_internal.h"\n')
82 out.write('\n')
85 out.write('#include %(include)s\n' % {'include': include})
86 out.write('\n')
88 out.write('namespace %(namespace)s {\n' % {'namespace': namespace})
89 out.write('\n')
95 out.write('%(typename)s* %(constructor)s();\n
    [all...]
  /system/core/toolbox/upstream-netbsd/bin/dd/
position.c 32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
139 if (!(out.flags & ISTAPE)) {
140 if (ddop_lseek(out, out.fd,
141 (off_t)out.offset * (off_t)out.dbsz, SEEK_SET) == -1)
142 err(EXIT_FAILURE, "%s", out.name);
148 if (out.flags & NOREAD) {
150 t_op.mt_count = out.offset;
152 if (ddop_ioctl(out, out.fd, MTIOCTOP, &t_op) < 0
    [all...]

Completed in 3516 milliseconds

1 2 3 4 5 67 8 91011>>