HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 51 - 75 of 3019) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/apache-http/src/org/apache/http/impl/io/
IdentityOutputStream.java 58 private final SessionOutputBuffer out; field in class:IdentityOutputStream
63 public IdentityOutputStream(final SessionOutputBuffer out) {
65 if (out == null) {
68 this.out = out;
79 this.out.flush();
84 this.out.flush();
91 this.out.write(b, off, len);
102 this.out.write(b);
  /bionic/libc/bionic/
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;
  /bionic/tests/
libgen_test.cpp 26 const char* out = basename(&writable_in[0]); local
27 ASSERT_STREQ(expected_out, out) << in;
35 const char* out = dirname(&writable_in[0]); local
36 ASSERT_STREQ(expected_out, out) << in;
uchar_test.cpp 48 char out[MB_LEN_MAX]; local
54 EXPECT_EQ(static_cast<size_t>(-1), c32rtomb(out, 0x00a2, &ps));
66 EXPECT_EQ(1U, c32rtomb(out, L'\0', &ps));
162 char16_t out; local
164 out = L'x';
165 ASSERT_EQ(0U, mbrtoc16(&out, "hello", 0, NULL));
166 ASSERT_EQ(L'x', out);
168 ASSERT_EQ(0U, mbrtoc16(&out, "hello", 0, NULL));
169 ASSERT_EQ(0U, mbrtoc16(&out, "", 0, NULL));
170 ASSERT_EQ(1U, mbrtoc16(&out, "hello", 1, NULL))
179 char16_t out; local
200 char16_t out; local
214 char16_t out; local
224 char16_t out; local
237 char16_t out; local
325 char32_t out[8]; local
375 char32_t out; local
    [all...]
  /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/chromium_org/chrome/browser/ui/webui/
bookmarks_ui_browsertest.cc 33 std::string out; local
37 &out));
38 ASSERT_EQ("chrome-extension:", out);
42 &out));
43 ASSERT_EQ("/main.html", out);
  /external/chromium_org/third_party/angle/src/compiler/translator/
OutputGLSL.cpp 26 TInfoSinkBase& out = objSink(); local
30 out << "gl_FragDepth";
  /external/chromium_org/third_party/openmax_dl/dl/sp/src/x86/
x86SP_FFT_F32_radix2_kernel.c 17 OMX_F32 *out,
22 OMX_F32 *out,
27 OMX_F32 *out,
35 OMX_F32 *out,
43 OMX_F32 *out,
49 OMX_F32 *out,
55 // Two Ping Pong buffers for out of place kernel.
65 OMX_F32 *out = buf2; local
77 x86SP_FFT_CToC_FC32_Fwd_Radix2_ms(in, out, twiddle,
80 x86SP_FFT_CToC_FC32_Inv_Radix2_ms(in, out, twiddle
    [all...]
  /external/chromium_org/third_party/skia/src/utils/
SkBitmapHasher.cpp 18 static void write_int32_to_buffer(uint32_t val, SkWStream* out) {
21 out->write8((uint8_t)(val & 0xff));
34 SkMD5 out; local
37 write_int32_to_buffer(SkToU32(bitmap.width()), &out); local
38 write_int32_to_buffer(SkToU32(bitmap.height()), &out); local
42 if (!enc->encodeStream(&out, bitmap, SkImageEncoder::kDefaultQuality)) {
47 out.finish(digest);
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/
genversion.c 25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
38 FILE *out; local
56 out = fopen(argv[1], "wt");
58 if (!out) {
63 fprintf(out, "; This file auto-generated by genversion.c"
66 fprintf(out, "%%define __YASM_MAJOR__ %d\n", major);
67 fprintf(out, "%%define __YASM_MINOR__ %d\n", minor);
68 fprintf(out, "%%define __YASM_SUBMINOR__ %d\n", subminor);
69 fprintf(out, "%%define __YASM_BUILD__ %d\n", patchlevel);
70 fprintf(out, "%%define __YASM_PATCHLEVEL__ %d\n", patchlevel)
    [all...]
  /external/chromium_org/tools/gn/
ninja_binary_target_writer_unittest.cc 16 setup.build_settings()->SetBuildDir(SourceDir("//out/Debug/"));
33 std::ostringstream out; local
34 NinjaBinaryTargetWriter writer(&target, out);
54 std::string out_str = out.str();
66 std::ostringstream out; local
67 NinjaBinaryTargetWriter writer(&shlib_target, out);
83 // Ordering of the obj files here should come out in the order
91 std::string out_str = out.str();
103 std::ostringstream out; local
104 NinjaBinaryTargetWriter writer(&stlib_target, out);
133 std::ostringstream out; local
189 std::ostringstream out; local
242 std::ostringstream out; local
    [all...]
ninja_copy_target_writer_unittest.cc 19 setup.build_settings()->SetBuildDir(SourceDir("//out/Debug/"));
27 SubstitutionList::MakeForTest("//out/Debug/{{source_name_part}}.out");
32 std::ostringstream out; local
33 NinjaCopyTargetWriter writer(&target, out);
37 "build input1.out: copy ../../foo/input1.txt\n"
38 "build input2.out: copy ../../foo/input2.txt\n"
40 "build obj/foo/bar.stamp: stamp input1.out input2.out\n";
41 std::string out_str = out.str()
63 std::ostringstream out; local
    [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/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;