HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 1 - 25 of 1629) 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...]
  /external/v8/test/mjsunit/regress/
regress-crbug-84186.js 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
40 var out = JSON.parse(json); variable
41 assertEquals(expected, out.key);
  /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 28 AutoCloseOutputStream out = new AutoCloseOutputStream(pf); local
30 out.write(2);
32 out.close();
35 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...]
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Device/
NotificationQueue.h 30 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
51 * @param out beginning of queue header
56 notificationQueue_t *out,
80 notificationQueue_t *out; member in class:NotificationQueue
  /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/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();
  /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/elfutils/libebl/
eblobjnote.c 95 Elf_Data out = local
103 if (elf32_xlatetom (&out, &in, ebl->data) != NULL)
  /external/guava/guava-tests/test/com/google/common/io/
LittleEndianDataOutputStreamTest.java 38 private LittleEndianDataOutputStream out = new LittleEndianDataOutputStream(baos); field in class:LittleEndianDataOutputStreamTest
42 /* Write out various test values in LITTLE ENDIAN FORMAT */
43 out.write(new byte[] { -100, 100 });
44 out.writeBoolean(true);
45 out.writeBoolean(false);
46 out.writeByte(100);
47 out.writeByte(-100);
48 out.writeByte((byte) 200);
49 out.writeChar('a');
50 out.writeShort((short) -30000)
    [all...]
  /external/junit/src/org/junit/internal/
JUnitSystem.java 7 PrintStream out(); method in interface:JUnitSystem
RealSystem.java 11 public PrintStream out() { method in class:RealSystem
12 return System.out;
  /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/openssl/crypto/perlasm/
x86_64-xlate.pl 140 sub out {
196 sub out {
237 sub out {
325 sub out {
346 sub out {
414 sub out {
647 sub out {
798 if ($label=label->re(\$line)) { print $label->out(); }
801 printf "%s",directive->out();
832 $insn = $opcode->out($#args>=1?$args[$#args]->size():$sz)
139 sub out { subroutine
195 sub out { subroutine
236 sub out { subroutine
324 sub out { subroutine
345 sub out { subroutine
413 sub out { subroutine
646 sub out { subroutine
    [all...]

Completed in 675 milliseconds

1 2 3 4 5 6 7 8 91011>>