HomeSort by relevance Sort by last modified time
    Searched refs:ostream (Results 101 - 125 of 1491) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/
raw_os_ostream.h 1 //===- raw_os_ostream.h - std::ostream adaptor for raw_ostream --*- C++ -*-===//
22 /// raw_os_ostream - A raw_ostream that writes to an std::ostream. This is a
26 std::ostream &OS;
36 raw_os_ostream(std::ostream &O) : OS(O) {}
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
raw_os_ostream.h 1 //===- raw_os_ostream.h - std::ostream adaptor for raw_ostream --*- C++ -*-===//
22 /// raw_os_ostream - A raw_ostream that writes to an std::ostream. This is a
26 std::ostream &OS;
36 raw_os_ostream(std::ostream &O) : OS(O) {}
  /prebuilts/ndk/r10/sources/cxx-stl/stlport/stlport/
ostream.h 26 #include <ostream>
29 # include <using/ostream>
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.unformatted/
flush.pass.cpp 10 // <ostream>
17 #include <ostream>
46 std::ostream os(&sb);
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/stlport/
ostream.h 26 #include <ostream>
29 # include <using/ostream>
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/input.output/iostream.format/output.streams/ostream.unformatted/
flush.pass.cpp 10 // <ostream>
17 #include <ostream>
46 std::ostream os(&sb);
  /prebuilts/ndk/r13/sources/cxx-stl/stlport/stlport/
ostream.h 26 #include <ostream>
29 # include <using/ostream>
  /system/netd/libnetdutils/
UniqueFd.cpp 33 std::ostream& operator<<(std::ostream& os, const UniqueFd& fd) {
  /external/libchrome/base/task_scheduler/
task_traits.cc 9 #include <ostream>
39 std::ostream& operator<<(std::ostream& os, const TaskPriority& task_priority) {
54 std::ostream& operator<<(std::ostream& os,
  /frameworks/base/libs/hwui/utils/
StringUtils.h 21 #include <ostream>
45 friend std::ostream& operator<<(std::ostream& stream, const SizePrinter& d) {
58 class LogcatStream: public std::ostream {
70 :std::ostream(&buffer) {
  /hardware/libhardware/modules/sensors/dynamic_sensor/HidUtils/
HidItem.h 22 #include <ostream>
39 friend std::ostream& operator<<(std::ostream &os, const HidItem &h);
51 std::ostream& operator<<(std::ostream &os, const HidUtil::HidItem &h);
  /external/v8/src/compiler/
graph-visualizer.h 37 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream& os, const AsJSON& ad);
44 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream& os, const AsRPO& ad);
74 std::ostream& operator<<(std::ostream& os, const AsC1VCompilation& ac);
75 std::ostream& operator<<(std::ostream& os, const AsC1V& ac);
76 std::ostream& operator<<(std::ostream& os
    [all...]
  /frameworks/base/libs/androidfw/tests/
TestHelpers.h 20 #include <ostream>
29 static inline ::std::ostream& operator<<(::std::ostream& out, const android::String8& str) {
33 static inline ::std::ostream& operator<<(::std::ostream& out, const android::String16& str) {
55 static inline ::std::ostream& operator<<(::std::ostream& out, const ResTable_config& c) {
  /art/compiler/linker/
output_stream.h 20 #include <ostream>
32 std::ostream& operator<<(std::ostream& os, const Whence& rhs);
  /external/boringssl/src/crypto/test/
test_util.cc 17 #include <ostream>
32 std::ostream &operator<<(std::ostream &os, const Bytes &in) {
  /external/deqp/external/vulkancts/framework/vulkan/
vkApiVersion.hpp 28 #include <ostream>
52 inline std::ostream& operator<< (std::ostream& s, const ApiVersion& version)
  /external/deqp/framework/common/
tcuArray.hpp 29 #include <ostream>
53 std::ostream& operator<< (std::ostream& stream, const Array<T, Size>& arr)
  /system/netd/libnetdutils/include/netdutils/
UniqueFd.h 21 #include <ostream>
66 std::ostream& operator<<(std::ostream& os, const UniqueFd& fd);
  /external/v8/src/
ostreams.cc 40 OFStream::OFStream(FILE* f) : std::ostream(nullptr), buf_(f) {
57 std::ostream& PrintUC16(std::ostream& os, uint16_t c, bool (*pred)(uint16_t)) {
64 std::ostream& PrintUC16ForJSON(std::ostream& os, uint16_t c,
73 std::ostream& PrintUC32(std::ostream& os, int32_t c, bool (*pred)(uint16_t)) {
85 std::ostream& operator<<(std::ostream& os, const AsReversiblyEscapedUC16& c) {
90 std::ostream& operator<<(std::ostream& os, const AsEscapedUC16ForJSON& c)
    [all...]
  /external/mesa3d/src/gtest/include/gtest/
gtest-printers.h 45 // 1. foo::PrintTo(const T&, ostream*)
46 // 2. operator<<(ostream&, const T&) defined in either foo or the
69 // void ::testing::internal::UniversalTersePrint(const T& value, ostream*);
74 // void ::testing::internal::UniversalPrint(const T& value, ostream*);
98 #include <ostream> // NOLINT
113 // ostream.
116 ::std::ostream* os);
135 static void PrintValue(const T& value, ::std::ostream* os) {
149 static void PrintValue(const T& value, ::std::ostream* os) {
168 static void PrintValue(const T& value, ::std::ostream* os)
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/
gtest-printers.h 45 // 1. foo::PrintTo(const T&, ostream*)
46 // 2. operator<<(ostream&, const T&) defined in either foo or the
69 // void ::testing::internal::UniversalTersePrint(const T& value, ostream*);
74 // void ::testing::internal::UniversalPrint(const T& value, ostream*);
98 #include <ostream> // NOLINT
113 // ostream.
116 ::std::ostream* os);
135 static void PrintValue(const T& value, ::std::ostream* os) {
149 static void PrintValue(const T& value, ::std::ostream* os) {
168 static void PrintValue(const T& value, ::std::ostream* os)
    [all...]
  /prebuilts/ndk/r11/sources/third_party/googletest/googletest/include/gtest/
gtest-printers.h 45 // 1. foo::PrintTo(const T&, ostream*)
46 // 2. operator<<(ostream&, const T&) defined in either foo or the
69 // void ::testing::internal::UniversalTersePrint(const T& value, ostream*);
74 // void ::testing::internal::UniversalPrint(const T& value, ostream*);
98 #include <ostream> // NOLINT
113 // ostream.
116 ::std::ostream* os);
135 static void PrintValue(const T& value, ::std::ostream* os) {
149 static void PrintValue(const T& value, ::std::ostream* os) {
168 static void PrintValue(const T& value, ::std::ostream* os)
    [all...]
  /prebuilts/ndk/r13/sources/third_party/googletest/googletest/include/gtest/
gtest-printers.h 45 // 1. foo::PrintTo(const T&, ostream*)
46 // 2. operator<<(ostream&, const T&) defined in either foo or the
69 // void ::testing::internal::UniversalTersePrint(const T& value, ostream*);
74 // void ::testing::internal::UniversalPrint(const T& value, ostream*);
98 #include <ostream> // NOLINT
113 // ostream.
116 ::std::ostream* os);
135 static void PrintValue(const T& value, ::std::ostream* os) {
149 static void PrintValue(const T& value, ::std::ostream* os) {
168 static void PrintValue(const T& value, ::std::ostream* os)
    [all...]
  /art/disassembler/
disassembler_x86.h 32 size_t Dump(std::ostream& os, const uint8_t* begin) OVERRIDE;
33 void Dump(std::ostream& os, const uint8_t* begin, const uint8_t* end) OVERRIDE;
36 size_t DumpNops(std::ostream& os, const uint8_t* instr);
37 size_t DumpInstruction(std::ostream& os, const uint8_t* instr);
  /art/runtime/arch/arm/
registers_arm.h 53 std::ostream& operator<<(std::ostream& os, const Register& rhs);
93 std::ostream& operator<<(std::ostream& os, const SRegister& rhs);

Completed in 1894 milliseconds

1 2 3 45 6 7 8 91011>>