HomeSort by relevance Sort by last modified time
    Searched refs:StrBuf (Results 1 - 16 of 16) sorted by null

  /external/swiftshader/third_party/subzero/src/
IceBrowserCompileServer.h 86 StringStream() : StrBuf(Buffer) {}
87 const std::string &getContents() { return StrBuf.str(); }
88 Ostream &getStream() { return StrBuf; }
92 llvm::raw_string_ostream StrBuf;
PNaClTranslator.cpp 270 raw_string_ostream StrBuf(Buffer);
271 StrBuf << "Can't define more than " << NaClBcIndexSize_t_Max
273 blockError(StrBuf.str());
414 raw_string_ostream StrBuf(Buffer);
415 StrBuf << Prefix << " alignment greater than 2**" << AlignPowerLimit
417 Parser->Error(StrBuf.str());
535 raw_string_ostream StrBuf(Buffer);
536 StrBuf << Kind << " " << Decl.getName()
539 StrBuf << "\n Use flag -allow-externally-defined-symbols to override";
540 Error(StrBuf.str())
    [all...]
IceGlobalInits.cpp 43 llvm::raw_string_ostream StrBuf(Buffer);
44 StrBuf << "Unknown linkage value: " << Linkage;
45 llvm::report_fatal_error(StrBuf.str());
54 llvm::raw_string_ostream StrBuf(Buffer);
55 StrBuf << "Unknown calling convention: " << CallingConv;
56 llvm::report_fatal_error(StrBuf.str());
98 llvm::raw_string_ostream StrBuf(Buffer);
99 StrBuf << "Invalid";
104 StrBuf << " intrinsic name: " << getName();
105 return StrBuf.str()
    [all...]
IceTranslator.cpp 36 llvm::raw_string_ostream StrBuf(Buffer);
37 StrBuf << Prefix << Index;
38 return StrBuf.str();
IceConverter.cpp 619 raw_string_ostream StrBuf(Buffer);
620 StrBuf << "Intrinsic call expects return type " << I->getReturnType()
622 report_fatal_error(StrBuf.str());
627 raw_string_ostream StrBuf(Buffer);
628 StrBuf << "Intrinsic call expects " << I->getNumArgs()
630 report_fatal_error(StrBuf.str());
635 raw_string_ostream StrBuf(Buffer);
636 StrBuf << "Intrinsic call argument " << ArgIndex << " expects type "
639 report_fatal_error(StrBuf.str());
697 raw_string_ostream StrBuf(Buffer)
    [all...]
IceBrowserCompileServer.cpp 120 llvm::raw_string_ostream StrBuf(Buffer);
121 StrBuf << "Invalid number of FDs for onInitCallback " << ObjFileFDCount
123 return strdup(StrBuf.str().c_str());
128 llvm::raw_string_ostream StrBuf(Buffer);
129 StrBuf << "Invalid FD given for onInitCallback " << ObjFileFD << "\n";
130 return strdup(StrBuf.str().c_str());
IceELFSection.cpp 138 llvm::raw_string_ostream StrBuf(Buffer);
139 StrBuf << "Symbol external and defined: " << Name;
140 llvm::report_fatal_error(StrBuf.str());
IceTargetLowering.cpp 222 llvm::raw_string_ostream StrBuf(Buffer);
223 StrBuf << "Unrecognized use/exclude registers:";
225 StrBuf << " " << RegName;
226 llvm::report_fatal_error(StrBuf.str());
    [all...]
IceAssemblerARM32.cpp     [all...]
IceInstARM32.cpp 137 llvm::raw_string_ostream StrBuf(Buffer);
140 Ctx->setStrEmit(StrBuf);
151 llvm::errs() << "Can't assemble: " << StrBuf.str() << "\n";
157 Asm->emitTextInst(StrBuf.str(), Asm->getEmitTextSize());
    [all...]
  /external/swiftshader/third_party/subzero/pnacl-llvm/
NaClBitstreamReader.cpp 51 raw_string_ostream StrBuf(Buffer);
52 naclbitc::ErrorAt(StrBuf, naclbitc::Fatal,
54 report_fatal_error(StrBuf.str());
59 raw_string_ostream StrBuf(Buffer);
60 StrBuf << "Invalid abbreviation # " << AbbrevNo << " defined for record";
61 ErrHandler->Fatal(StrBuf.str());
66 raw_string_ostream StrBuf(Buffer);
67 StrBuf << "Invalid jump to bit " << BitNo;
68 ErrHandler->Fatal(StrBuf.str());
249 raw_string_ostream StrBuf(Buffer)
    [all...]
NaClBitCodes.cpp 41 raw_string_ostream StrBuf(Buffer);
42 StrBuf << "Invalid NaClBitCodeAbbrevOp(" << E << ", " << Data << ")";
43 report_fatal_error(StrBuf.str());
  /external/swiftshader/third_party/subzero/runtime/
wasm-runtime.cpp 80 /// StrBuf is returned by functions that return strings.
81 char StrBuf[256];
270 strncpy(GlobalData->StrBuf, CTime, sizeof(GlobalData->StrBuf));
271 GlobalData->StrBuf[sizeof(GlobalData->StrBuf) - 1] = '\0';
272 return trace(WasmPtr<char>(GlobalData->StrBuf).asInt());
  /external/clang/lib/StaticAnalyzer/Core/
AnalyzerOptions.cpp 233 SmallString<10> StrBuf;
234 llvm::raw_svector_ostream OS(StrBuf);
  /external/clang/tools/libclang/
CXIndexDataConsumer.cpp     [all...]
  /external/clang/lib/Sema/
SemaExprObjC.cpp 45 SmallString<128> StrBuf;
59 StrBuf += S->getString();
70 CAT->getElementType(), llvm::APInt(32, StrBuf.size() + 1),
72 S = StringLiteral::Create(Context, StrBuf, StringLiteral::Ascii,
    [all...]

Completed in 264 milliseconds