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

1 2 3 4 5 6 7 8 91011

  /external/swiftshader/third_party/LLVM/utils/FileUpdate/
FileUpdate.cpp 55 OwningPtr<MemoryBuffer> Out;
56 MemoryBuffer::getFile(OutputFilename.c_str(), Out);
59 if (Out && In->getBufferSize() == Out->getBufferSize() &&
60 memcmp(In->getBufferStart(), Out->getBufferStart(),
61 Out->getBufferSize()) == 0) {
  /external/libcxx/test/std/re/re.alg/re.alg.replace/
test1.pass.cpp 15 // regex_replace(OutputIterator out,
33 typedef output_iterator<char*> Out;
36 Out r = std::regex_replace(Out(buf), Bi(std::begin(phone_book)),
45 typedef output_iterator<char*> Out;
48 Out r = std::regex_replace(Out(buf), Bi(std::begin(phone_book)),
58 typedef output_iterator<char*> Out;
61 Out r = std::regex_replace(Out(buf), Bi(std::begin(phone_book))
    [all...]
test2.pass.cpp 15 // regex_replace(OutputIterator out,
33 typedef output_iterator<char*> Out;
36 Out r = std::regex_replace(Out(buf), Bi(std::begin(phone_book)),
45 typedef output_iterator<char*> Out;
48 Out r = std::regex_replace(Out(buf), Bi(std::begin(phone_book)),
58 typedef output_iterator<char*> Out;
61 Out r = std::regex_replace(Out(buf), Bi(std::begin(phone_book))
    [all...]
  /frameworks/base/tools/incident_report/
printer.h 22 class Out
25 Out(int fd);
26 ~Out();
printer.cpp 29 Out::Out(int fd)
38 Out::~Out()
44 Out::reallocate(int size)
59 Out::printf(const char* format, ...)
102 Out::indent()
109 Out::dedent()
117 Out::print_indent()
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/re/re.alg/re.alg.replace/
test1.pass.cpp 15 // regex_replace(OutputIterator out,
33 typedef output_iterator<char*> Out;
36 Out r = std::regex_replace(Out(buf), Bi(std::begin(phone_book)),
45 typedef output_iterator<char*> Out;
48 Out r = std::regex_replace(Out(buf), Bi(std::begin(phone_book)),
58 typedef output_iterator<char*> Out;
61 Out r = std::regex_replace(Out(buf), Bi(std::begin(phone_book))
    [all...]
test2.pass.cpp 15 // regex_replace(OutputIterator out,
33 typedef output_iterator<char*> Out;
36 Out r = std::regex_replace(Out(buf), Bi(std::begin(phone_book)),
45 typedef output_iterator<char*> Out;
48 Out r = std::regex_replace(Out(buf), Bi(std::begin(phone_book)),
58 typedef output_iterator<char*> Out;
61 Out r = std::regex_replace(Out(buf), Bi(std::begin(phone_book))
    [all...]
  /external/clang/include/clang/Basic/
MacroBuilder.h 25 raw_ostream &Out;
27 MacroBuilder(raw_ostream &Output) : Out(Output) {}
31 Out << "#define " << Name << ' ' << Value << '\n';
37 Out << "#undef " << Name << '\n';
42 Out << Str << '\n';
  /external/llvm/tools/llvm-pdbdump/
YAMLOutputStyle.h 38 llvm::yaml::Output Out;
  /external/llvm/tools/opt/
BreakpointPrinter.cpp 26 raw_ostream &Out;
29 BreakpointPrinter(raw_ostream &out) : ModulePass(ID), Out(out) {}
56 Out << Name << "\n";
70 ModulePass *llvm::createBreakpointPrinter(raw_ostream &out) {
71 return new BreakpointPrinter(out);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/
MacroBuilder.h 25 raw_ostream &Out;
27 MacroBuilder(raw_ostream &Output) : Out(Output) {}
31 Out << "#define " << Name << ' ' << Value << '\n';
37 Out << "#undef " << Name << '\n';
42 Out << Str << '\n';
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Basic/
MacroBuilder.h 25 raw_ostream &Out;
27 MacroBuilder(raw_ostream &Output) : Out(Output) {}
31 Out << "#define " << Name << ' ' << Value << '\n';
37 Out << "#undef " << Name << '\n';
42 Out << Str << '\n';
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Testing/Support/
SupportHelpers.h 28 inline void PrintTo(const ErrorHolder &Err, std::ostream *Out) {
29 *Out << (Err.Success ? "succeeded" : "failed");
31 *Out << " (" << StringRef(Err.Message).trim().str() << ")";
36 void PrintTo(const ExpectedHolder<T> &Item, std::ostream *Out) {
38 *Out << "succeeded with value \"" << ::testing::PrintToString(**Item.Value)
41 PrintTo(static_cast<const ErrorHolder &>(Item), Out);
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Basic/
MacroBuilder.h 25 raw_ostream &Out;
27 MacroBuilder(raw_ostream &Output) : Out(Output) {}
31 Out << "#define " << Name << ' ' << Value << '\n';
37 Out << "#undef " << Name << '\n';
42 Out << Str << '\n';
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Testing/Support/
SupportHelpers.h 28 inline void PrintTo(const ErrorHolder &Err, std::ostream *Out) {
29 *Out << (Err.Success ? "succeeded" : "failed");
31 *Out << " (" << StringRef(Err.Message).trim().str() << ")";
36 void PrintTo(const ExpectedHolder<T> &Item, std::ostream *Out) {
38 *Out << "succeeded with value \"" << ::testing::PrintToString(**Item.Value)
41 PrintTo(static_cast<const ErrorHolder &>(Item), Out);
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Basic/
MacroBuilder.h 25 raw_ostream &Out;
27 MacroBuilder(raw_ostream &Output) : Out(Output) {}
31 Out << "#define " << Name << ' ' << Value << '\n';
37 Out << "#undef " << Name << '\n';
42 Out << Str << '\n';
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Testing/Support/
SupportHelpers.h 28 inline void PrintTo(const ErrorHolder &Err, std::ostream *Out) {
29 *Out << (Err.Success ? "succeeded" : "failed");
31 *Out << " (" << StringRef(Err.Message).trim().str() << ")";
36 void PrintTo(const ExpectedHolder<T> &Item, std::ostream *Out) {
38 *Out << "succeeded with value \"" << ::testing::PrintToString(**Item.Value)
41 PrintTo(static_cast<const ErrorHolder &>(Item), Out);
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Basic/
MacroBuilder.h 25 raw_ostream &Out;
27 MacroBuilder(raw_ostream &Output) : Out(Output) {}
31 Out << "#define " << Name << ' ' << Value << '\n';
37 Out << "#undef " << Name << '\n';
42 Out << Str << '\n';
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Testing/Support/
SupportHelpers.h 28 inline void PrintTo(const ErrorHolder &Err, std::ostream *Out) {
29 *Out << (Err.Success ? "succeeded" : "failed");
31 *Out << " (" << StringRef(Err.Message).trim().str() << ")";
36 void PrintTo(const ExpectedHolder<T> &Item, std::ostream *Out) {
38 *Out << "succeeded with value \"" << ::testing::PrintToString(**Item.Value)
41 PrintTo(static_cast<const ErrorHolder &>(Item), Out);
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/Basic/
MacroBuilder.h 25 raw_ostream &Out;
27 MacroBuilder(raw_ostream &Output) : Out(Output) {}
31 Out << "#define " << Name << ' ' << Value << '\n';
37 Out << "#undef " << Name << '\n';
42 Out << Str << '\n';
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Testing/Support/
SupportHelpers.h 28 inline void PrintTo(const ErrorHolder &Err, std::ostream *Out) {
29 *Out << (Err.Success ? "succeeded" : "failed");
31 *Out << " (" << StringRef(Err.Message).trim().str() << ")";
36 void PrintTo(const ExpectedHolder<T> &Item, std::ostream *Out) {
38 *Out << "succeeded with value \"" << ::testing::PrintToString(**Item.Value)
41 PrintTo(static_cast<const ErrorHolder &>(Item), Out);
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/Basic/
MacroBuilder.h 25 raw_ostream &Out;
27 MacroBuilder(raw_ostream &Output) : Out(Output) {}
31 Out << "#define " << Name << ' ' << Value << '\n';
37 Out << "#undef " << Name << '\n';
42 Out << Str << '\n';
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Testing/Support/
SupportHelpers.h 28 inline void PrintTo(const ErrorHolder &Err, std::ostream *Out) {
29 *Out << (Err.Success ? "succeeded" : "failed");
31 *Out << " (" << StringRef(Err.Message).trim().str() << ")";
36 void PrintTo(const ExpectedHolder<T> &Item, std::ostream *Out) {
38 *Out << "succeeded with value \"" << ::testing::PrintToString(**Item.Value)
41 PrintTo(static_cast<const ErrorHolder &>(Item), Out);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/
MacroBuilder.h 25 raw_ostream &Out;
27 MacroBuilder(raw_ostream &Output) : Out(Output) {}
31 Out << "#define " << Name << ' ' << Value << '\n';
37 Out << "#undef " << Name << '\n';
42 Out << Str << '\n';
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/Basic/
MacroBuilder.h 25 raw_ostream &Out;
27 MacroBuilder(raw_ostream &Output) : Out(Output) {}
31 Out << "#define " << Name << ' ' << Value << '\n';
37 Out << "#undef " << Name << '\n';
42 Out << Str << '\n';

Completed in 1134 milliseconds

1 2 3 4 5 6 7 8 91011