HomeSort by relevance Sort by last modified time
    Searched refs:out (Results 76 - 100 of 17003) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/depr/depr.str.strstreams/depr.strstream/depr.strstream.oper/
str.pass.cpp 22 std::strstream out; local
23 out << 123 << ' ' << 4.5 << ' ' << "dog" << std::ends;
24 assert(out.str() == std::string("123 4.5 dog"));
25 out.freeze(false);
  /system/tools/hidl/
generateCppAdapter.cpp 37 void AST::generateCppAdapterHeader(Formatter& out) const {
41 out << "#ifndef " << guard << "\n";
42 out << "#define " << guard << "\n\n";
45 generateCppPackageInclude(out, mPackage, getInterface()->localName());
47 enterLeaveNamespace(out, true /* enter */);
48 out.endl();
52 out << "class " << klassName << " : public " << mockName << " ";
53 out.block([&] {
54 out << "public:\n";
55 out << "typedef " << mockName << " Pure;\n"
    [all...]
  /art/test/065-mismatched-implements/src2/
Defs.java 19 System.out.println("yo");
23 System.out.println("yo yo");
  /art/test/066-mismatched-super/src/
Defs.java 19 System.out.println("yo");
23 System.out.println("yo yo");
  /external/clang/test/CodeGen/
mips-constraints-mem.c 17 int out = 0; local
22 : "=r"(out)
  /external/jacoco/jacoco-maven-plugin.test/it/it-site-failsafe/src/main/java/
Example.java 15 System.out.println("Hello world");
19 System.out.println("Hello world");
  /external/skia/src/sksl/lex/
Main.cpp 35 std::ofstream out(hPath);
36 ASSERT(out.good());
37 out << HEADER;
38 out << "#ifndef SKSL_" << lexer << "\n";
39 out << "#define SKSL_" << lexer << "\n";
40 out << "#include <cstddef>\n";
41 out << "#include <cstdint>\n";
42 out << "namespace SkSL {\n";
43 out << "\n";
44 out << "struct " << token << " {\n"
    [all...]
  /external/skqp/src/sksl/lex/
Main.cpp 35 std::ofstream out(hPath);
36 ASSERT(out.good());
37 out << HEADER;
38 out << "#ifndef SKSL_" << lexer << "\n";
39 out << "#define SKSL_" << lexer << "\n";
40 out << "#include <cstddef>\n";
41 out << "#include <cstdint>\n";
42 out << "namespace SkSL {\n";
43 out << "\n";
44 out << "struct " << token << " {\n"
    [all...]
  /toolchain/binutils/binutils-2.27/config/
bootstrap-O1.mk 1 BOOT_CFLAGS := -O1 $(filter-out -O%, $(BOOT_CFLAGS))
bootstrap-O3.mk 1 BOOT_CFLAGS := -O3 $(filter-out -O%, $(BOOT_CFLAGS))
  /bionic/tools/versioner/tests/preprocessor_idempotence/
run.sh 1 rm -rf out
3 versioner headers -i -o out
4 diff -q -w -B out expected
  /bionic/tools/versioner/tests/preprocessor_no_guard/
run.sh 1 rm -rf out
3 versioner headers -i -o out
4 diff -q -w -B out expected
  /dalvik/dx/tests/128-multidex-option-overflow/
run 20 mkdir out
21 dx -JXmx1024m --dex --no-optimize --multi-dex --output=out classes
22 ls -1F out
  /external/javassist/sample/evolve/sample/evolve/
WebPage.java 12 public void show(OutputStreamWriter out) throws IOException {
13 out.write("<H2>Current Time:</H2>");
15 out.write("<CENTER><H3><FONT color=\"blue\">");
16 out.write(c.getTime().toString());
17 out.write("</FONT></H3></CENTER><HR>");
18 out.write("<P><A HREF=\"demo.html\">Return to the home page.</A>");
  /external/valgrind/gdbserver_tests/
filter_make_empty 8 ps -lf -p $PPID >> garbage.filtered.out
9 date >> garbage.filtered.out
10 cat >> garbage.filtered.out
  /external/valgrind/none/tests/mips64/
macro_load_store.h 5 unsigned long out = 0; \
13 : "=r" (out) \
17 printf("%s :: offset: 0x%x, out: 0x%lx\n", \
18 instruction, offset, out); \
23 unsigned long out = 0; \
39 : "=r" (out), "=r" (outHI) \
43 printf("%s :: offset: 0x%x, out: 0x%lx, outHI: 0x%lx\n", \
44 instruction, offset, out, outHI); \
49 unsigned long long out = 0; \
57 : "=r" (out) \
    [all...]
  /frameworks/base/core/java/android/os/
IProcessInfoService.aidl 27 void getProcessStatesFromPids(in int[] pids, out int[] states);
34 void getProcessStatesAndOomScoresFromPids(in int[] pids, out int[] states, out int[] scores);
  /external/google-breakpad/src/client/linux/dump_writer_common/
thread_info.cc 27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
41 // out: memory location to write to
43 void U16(void* out, uint16_t v) {
44 my_memcpy(out, &v, sizeof(v));
48 // out: memory location to write to
50 void U32(void* out, uint32_t v) {
51 my_memcpy(out, &v, sizeof(v));
65 void ThreadInfo::FillCPUContext(RawContextCPU* out) const {
66 out->context_flags = MD_CONTEXT_X86_ALL;
68 out->dr0 = dregs[0]
    [all...]
  /toolchain/binutils/binutils-2.27/gas/
flonum-copy.c 24 flonum_copy (FLONUM_TYPE *in, FLONUM_TYPE *out)
29 out->sign = in->sign;
34 out->leader = out->low - 1; /* 0.0 case */
38 out_length = out->high - out->low;
49 memset ((char *) (out->low + in_length + 1), '\0',
53 memcpy ((void *) (out->low), (void *) (in->low),
55 out->exponent = in->exponent;
56 out->leader = in->leader - in->low + out->low
    [all...]
  /cts/tools/dasm/src/java_cup/
emit.java 38 * production. This reveals a prior state, which we transition out
225 * @param out stream to produce output on.
227 protected static void emit_package(PrintStream out)
231 out.println("package " + package_name + ";\n");
239 * @param out stream to produce output on.
242 public static void symbols(PrintStream out, boolean emit_non_terms)
250 out.println();
251 out.println("//----------------------------------------------------");
252 out.println("// The following code was generated by " +
254 out.println("// " + new Date())
    [all...]
  /hardware/qcom/gps/msm8909w_3100/android/location_api/
LocationUtil.cpp 25 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
38 void convertGnssLocation(Location& in, GnssLocation& out)
40 memset(&out, 0, sizeof(GnssLocation));
42 out.gnssLocationFlags |= GnssLocationFlags::HAS_LAT_LONG;
44 out.gnssLocationFlags |= GnssLocationFlags::HAS_ALTITUDE;
46 out.gnssLocationFlags |= GnssLocationFlags::HAS_SPEED;
48 out.gnssLocationFlags |= GnssLocationFlags::HAS_BEARING;
50 out.gnssLocationFlags |= GnssLocationFlags::HAS_HORIZONTAL_ACCURACY;
52 out.gnssLocationFlags |= GnssLocationFlags::HAS_VERTICAL_ACCURACY;
54 out.gnssLocationFlags |= GnssLocationFlags::HAS_SPEED_ACCURACY
    [all...]
  /hardware/qcom/gps/msm8998/android/location_api/
LocationUtil.cpp 25 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
38 void convertGnssLocation(Location& in, GnssLocation& out)
40 memset(&out, 0, sizeof(GnssLocation));
42 out.gnssLocationFlags |= GnssLocationFlags::HAS_LAT_LONG;
44 out.gnssLocationFlags |= GnssLocationFlags::HAS_ALTITUDE;
46 out.gnssLocationFlags |= GnssLocationFlags::HAS_SPEED;
48 out.gnssLocationFlags |= GnssLocationFlags::HAS_BEARING;
50 out.gnssLocationFlags |= GnssLocationFlags::HAS_HORIZONTAL_ACCURACY;
52 out.gnssLocationFlags |= GnssLocationFlags::HAS_VERTICAL_ACCURACY;
54 out.gnssLocationFlags |= GnssLocationFlags::HAS_SPEED_ACCURACY
    [all...]
  /art/test/077-method-override/src/
Base.java 19 System.out.println("declaredInBase: Base");
23 System.out.println("overridden: Base");
28 System.out.println("wasOverridden: Base");
35 System.out.println("overrideWithPublic: Base");
43 System.out.println("overridePublicWithProtected: Base");
50 System.out.println("overrideProtectedWithPublic: Base");
58 System.out.println("overridePublicWithPrivate: Base");
65 System.out.println("overridePrivateWithPublic: Base");
73 System.out.println("overrideVirtualWithStatic: Base");
81 System.out.println("overrideStaticWithVirtual: Base")
    [all...]
Derived.java 19 System.out.println("notDeclaredInBase: Derived");
23 System.out.println("overridden: Derived");
27 System.out.println("wasOverridden: Derived");
31 System.out.println("overrideWithPublic: Derived");
35 System.out.println("overridePublicWithProtected: Derived");
39 System.out.println("overrideProtectedWithPublic: Derived");
43 System.out.println("overridePublicWithPrivate: Derived");
47 System.out.println("overridePrivateWithPublic: Derived");
52 System.out.println("overrideVirtualWithStatic: Derived");
57 System.out.println("overrideStaticWithVirtual: Derived")
    [all...]
  /art/test/113-multidex/src/
Second.java 19 System.out.println("Second::zcall");
23 System.out.println("Second::zcall1");
27 System.out.println("Second::zcall2");
31 System.out.println("Second::zcall3");
35 System.out.println("Second::zcall4");
39 System.out.println("Second::zcall5");
43 System.out.println("Second::zcall6");
47 System.out.println("Second::zcall7");
51 System.out.println("Second::zcall8");
55 System.out.println("Second::zcall9")
    [all...]

Completed in 965 milliseconds

1 2 34 5 6 7 8 91011>>