HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 1 - 25 of 1236) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
2007-05-11-str-const.c 3 static unsigned char out[]={0,1}; variable
  /external/chromium/chrome/browser/
default_plugin_uitest.cc 33 std::wstring out; local
36 L"document.getElementById('result').innerHTML)", &out));
37 ASSERT_EQ(L"DONE", out);
  /external/e2fsprogs/lib/uuid/
pack.c 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
41 unsigned char *out = ptr; local
44 out[3] = (unsigned char) tmp;
46 out[2] = (unsigned char) tmp;
48 out[1] = (unsigned char) tmp;
50 out[0] = (unsigned char) tmp;
53 out[5] = (unsigned char) tmp;
55 out[4] = (unsigned char) tmp;
58 out[7] = (unsigned char) tmp;
60 out[6] = (unsigned char) tmp
    [all...]
  /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...]
FilterOutputStream.java 38 protected OutputStream out; field in class:FilterOutputStream
41 * Constructs a new {@code FilterOutputStream} with {@code out} as its
44 * @param out
47 public FilterOutputStream(OutputStream out) {
48 this.out = out;
67 out.close();
80 * Ensures that all pending data is sent out to the target stream. This
88 out.flush();
112 // Call write() instead of out.write() since subclasses coul
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
ParcelFileDescriptor_AutoCloseOutputStreamTest.java 47 AutoCloseOutputStream out = new AutoCloseOutputStream(pf); local
49 out.write(2);
51 out.close();
54 out.write(2);
  /external/apache-harmony/support/src/test/java/tests/support/
Streams.java 37 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
40 out.write(buffer, 0, count);
42 return out.toByteArray();
50 StringWriter out = new StringWriter(); local
53 out.write(buffer, 0, count);
55 return out.toString();
  /external/chromium/net/base/
dns_util_unittest.cc 20 std::string out; local
22 EXPECT_TRUE(DNSDomainFromDot("", &out));
23 EXPECT_EQ(out, IncludeNUL(""));
24 EXPECT_TRUE(DNSDomainFromDot("com", &out));
25 EXPECT_EQ(out, IncludeNUL("\003com"));
26 EXPECT_TRUE(DNSDomainFromDot("google.com", &out));
27 EXPECT_EQ(out, IncludeNUL("\x006google\003com"));
28 EXPECT_TRUE(DNSDomainFromDot("www.google.com", &out));
29 EXPECT_EQ(out, IncludeNUL("\003www\006google\003com"));
32 EXPECT_TRUE(DNSDomainFromDot("123456789a123456789a123456789a123456789a123456789a123456789a123", &out));
    [all...]
  /external/openssl/crypto/perlasm/
x86_64-xlate.pl 140 sub out {
196 sub out {
237 sub out {
321 sub out {
342 sub out {
410 sub out {
623 sub out {
651 if ($label=label->re(\$line)) { print $label->out(); }
654 printf "%s",directive->out();
676 $insn = $opcode->out($#args>=1?$args[$#args]->size():$sz)
139 sub out { subroutine
195 sub out { subroutine
236 sub out { subroutine
320 sub out { subroutine
341 sub out { subroutine
409 sub out { subroutine
622 sub out { subroutine
    [all...]
  /external/emma/core/java12/com/vladium/jcd/compiler/
CodeGen.java 26 public static void load_local_object_var (final ByteArrayOStream out, final int index)
30 out.write (_aload_0 + index); // aload_n
34 out.write2 (_aload,
39 out.write4 (_wide,
46 public static void store_local_object_var (final ByteArrayOStream out, final int index)
50 out.write (_astore_0 + index); // astore_n
54 out.write2 (_astore,
59 out.write4 (_wide,
68 public static void push_int_value (final ByteArrayOStream out, final ClassDef cls, final int value)
72 out.write (_iconst_0 + value)
    [all...]
  /packages/apps/Email/emailcommon/src/org/apache/commons/io/output/
ProxyOutputStream.java 41 // the proxy is stored in a protected superclass variable named 'out'
50 out.write(idx);
59 out.write(bts);
70 out.write(bts, st, end);
78 out.flush();
86 out.close();
ProxyWriter.java 43 // the proxy is stored in a protected superclass variable named 'out'
52 out.write(idx);
61 out.write(chr);
72 out.write(chr, st, end);
81 out.write(str);
92 out.write(str, st, end);
100 out.flush();
108 out.close();
FileWriterWithEncoding.java 55 private final Writer out; field in class:FileWriterWithEncoding
155 this.out = initWriter(file, encoding, append);
181 this.out = initWriter(file, encoding, append);
207 this.out = initWriter(file, encoding, append);
266 out.write(idx);
275 out.write(chr);
286 out.write(chr, st, end);
295 out.write(str);
306 out.write(str, st, end);
314 out.flush();
    [all...]
  /external/apache-http/src/org/apache/http/impl/io/
IdentityOutputStream.java 53 private final SessionOutputBuffer out; field in class:IdentityOutputStream
58 public IdentityOutputStream(final SessionOutputBuffer out) {
60 if (out == null) {
63 this.out = out;
74 this.out.flush();
79 this.out.flush();
86 this.out.write(b, off, len);
97 this.out.write(b);
  /bionic/libc/unistd/
sigblock.c 24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
38 } in, out; local
43 n = sigprocmask(SIG_BLOCK, &in.the_sigset, &out.the_sigset);
47 return out.the_mask;
sigsetmask.c 24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
39 } in, out; local
44 n = sigprocmask(SIG_SETMASK, &in.the_sigset, &out.the_sigset);
48 return out.the_mask;
  /dalvik/dx/src/com/android/dx/command/
DxConsole.java 23 * By default the PrintStream objects link to {@code System.out} and
29 * Standard output stream. Links to {@code System.out} by default.
31 public static PrintStream out = System.out; field in class:DxConsole
  /dalvik/dx/tests/119-merge-conflict/testdata/
B.java 5 System.out.println(new A().hello());
  /external/dropbear/libtomcrypt/testprof/
base64_test.c 5 unsigned char in[64], out[256], tmp[64]; local
10 l1 = sizeof(out);
11 DO(base64_encode(in, x, out, &l1));
13 DO(base64_decode(out, l1, tmp, &l2));
  /external/openssl/crypto/des/
ecb3_enc.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
69 unsigned char *out = &(*output)[0]; local
81 l2c(l0,out);
82 l2c(l1,out);
  /external/oprofile/libutil++/
xml_output.cpp 24 ostringstream out; local
25 out << xml_tag_name(tag);
26 return out.str();
32 ostringstream out; local
36 out << buf;
37 return out.str();
43 ostringstream out; local
47 out << buf;
48 return out.str();
54 ostringstream out; local
65 ostringstream out; local
76 ostringstream out; local
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
UnfoldSelect.cpp 29 TInfoSinkBase &out = mOutputHLSL->getBodyStream(); local
35 out << mOutputHLSL->typeString(node->getType()) << " t" << i << ";\n";
38 out << "if(";
40 out << ")\n"
43 out << " t" << i << " = ";
45 out << ";\n"
50 out << " t" << i << " = ";
52 out << ";\n"
  /external/webkit/Source/WebCore/platform/graphics/gtk/
ImageBufferGtk.cpp 67 Vector<char> out;
68 base64Encode(reinterpret_cast<const char*>(buffer.get()), bufferSize, out); local
70 return makeString("data:", mimeType, ";base64,", out);
  /frameworks/base/opengl/libs/GLES2_dbg/
generate_caller_cpp.py 55 elif line.find(":out") >= 0 or line.find(":inout") >= 0:
134 out = open("src/caller.cpp", "w") variable
135 out.write("""\
162 out.write("\
171 out.write(
183 out.write(output)
185 out.write("""\
  /libcore/luni/src/test/java/libcore/java/util/zip/
ZipFileTest.java 70 ZipOutputStream out = new ZipOutputStream(new FileOutputStream(result)); local
72 out.putNextEntry(entry);
78 out.write(writeBuffer, 0, Math.min(writeBuffer.length, uncompressedSize - i));
81 out.closeEntry();
82 out.close();

Completed in 1289 milliseconds

1 2 3 4 5 6 7 8 91011>>