/external/llvm/include/llvm/ADT/ |
Twine.h | 261 /// optimized out for string constants. This allows Twine arguments have 422 void toVector(SmallVectorImpl<char> &Out) const; 429 default: llvm_unreachable("Out of sync with isSingleStringRef"); 440 StringRef toStringRef(SmallVectorImpl<char> &Out) const; 448 StringRef toNullTerminatedStringRef(SmallVectorImpl<char> &Out) const;
|
/external/clang/lib/StaticAnalyzer/Core/ |
RangeConstraintManager.cpp | 320 void print(ProgramStateRef St, raw_ostream &Out, 571 void RangeConstraintManager::print(ProgramStateRef St, raw_ostream &Out, 577 Out << nl << sep << "Ranges are empty." << nl; 581 Out << nl << sep << "Ranges of symbol values:"; 583 Out << nl << ' ' << I.getKey() << " : "; 584 I.getData().print(Out); 586 Out << nl;
|
ProgramState.cpp | 443 void ProgramState::print(raw_ostream &Out, 447 Mgr.getStoreManager().print(getStore(), Out, NL, Sep); 449 // Print out the environment. 450 Env.print(Out, NL, Sep); 452 // Print out the constraints. 453 Mgr.getConstraintManager().print(this, Out, NL, Sep); 456 Mgr.getOwningEngine()->printState(Out, this, NL, Sep); 459 void ProgramState::printDOT(raw_ostream &Out) const { 460 print(Out, "\\l", "\\|"); 467 void ProgramState::printTaint(raw_ostream &Out, [all...] |
CallEvent.cpp | 213 void CallEvent::dump(raw_ostream &Out) const { 216 E->printPretty(Out, 0, Ctx.getPrintingPolicy()); 217 Out << "\n"; 222 Out << "Call to "; 223 D->print(Out, Ctx.getPrintingPolicy()); 228 Out << "Unknown call (type " << getKind() << ")"; [all...] |
/external/clang/lib/CodeGen/ |
CGVTables.cpp | 47 llvm::raw_svector_ostream Out(Name); 50 Thunk.This, Out); 52 getCXXABI().getMangleContext().mangleThunk(MD, Thunk, Out); 53 Out.flush(); 144 // out-of-line, then we can't assume that all users will have a 644 llvm::raw_svector_ostream Out(OutName); 645 CGM.getCXXABI().getMangleContext().mangleCXXVTable(RD, Out); 646 Out.flush(); 698 llvm::raw_svector_ostream Out(OutName); 701 Out); [all...] |
CGRTTI.cpp | 116 llvm::raw_svector_ostream Out(OutName); 117 CGM.getCXXABI().getMangleContext().mangleCXXRTTIName(Ty, Out); 118 Out.flush(); 138 llvm::raw_svector_ostream Out(OutName); 139 CGM.getCXXABI().getMangleContext().mangleCXXRTTI(Ty, Out); 140 Out.flush(); 517 llvm::raw_svector_ostream Out(OutName); 518 CGM.getCXXABI().getMangleContext().mangleCXXRTTI(Ty, Out); 519 Out.flush(); [all...] |
/external/llvm/tools/llvm-objdump/ |
llvm-objdump.cpp | 11 // dumps out a plethora of information about an object file depending on the 153 // Figure out the target triple. 185 raw_fd_ostream Out(FileName, Error); 191 Out << "digraph \"" << f.getName() << "\" {\n"; 192 Out << "graph [ rankdir = \"LR\" ];\n"; 200 Out << '"' << (*i)->getInsts()->getBeginAddr() << "\" [ label=\"<a>"; 205 Out << '|'; 207 Out << "<o>"; 213 Out << DOT::EscapeString(OS.str()); 215 Out << "\" shape=\"record\" ];\n" [all...] |
COFFDump.cpp | 217 static void printCOFFSymbolAddress(llvm::raw_ostream &Out, 225 Out << Sym; 227 Out << format(" + 0x%04x", Disp);
|
/external/clang/lib/ARCMigrate/ |
FileRemapper.cpp | 185 llvm::raw_fd_ostream Out(origFE->getName(), errMsg, 191 Out.write(mem->getBufferStart(), mem->getBufferSize()); 192 Out.close();
|
/bionic/libc/bionic/ |
libc_logging.cpp | 24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT 210 template <typename Out> 211 static void SendRepeat(Out& o, char ch, int count) { 227 template <typename Out> 228 static void out_vformat(Out& o, const char* format, va_list args) {
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
TreeRewriter.cs | 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 72 Console.Out.WriteLine(((CommonTree)t).ToStringTree() + " -> " +
|
/external/llvm/include/llvm/Support/ |
ConvertUTF.h | 192 * \param [in,out] ResultPtr pointer to the output buffer, needs to be at least 204 * \param [in,out] source A pointer to the source buffer. If the conversion 208 * \param [out] target The converted code 237 * \param [out] Out Converted UTF-8 is stored here on success. 240 bool convertUTF16ToUTF8String(ArrayRef<char> SrcBytes, std::string &Out);
|
/external/llvm/lib/Analysis/IPA/ |
CallGraphSCCPass.cpp | 85 assert(N < PassVector.size() && "Pass number out of range!"); 205 // entirely and the WeakVH nulled it out. 230 // If I pointed to the last element of the vector, we have to bail out: 417 // If the callgraph was left out of date (because the last pass run was a 587 raw_ostream &Out; // raw_ostream to print on. 592 : CallGraphSCCPass(ID), Banner(B), Out(o) {} 599 Out << Banner; 601 (*I)->getFunction()->print(Out);
|
/external/llvm/lib/Target/ |
TargetMachineC.cpp | 219 formatted_raw_ostream Out(OStream); 220 bool Result = LLVMTargetMachineEmit(T, M, Out, codegen, ErrorMessage);
|
/external/llvm/test/MC/ARM/ |
thumb2-diagnostics.s | 32 @ Out of range immediates for MRC/MRC2/MRRC/MRRC2 48 @ CHECK-ERRORS: error: immediate value out of range 49 @ CHECK-ERRORS: error: immediate value out of range
|
/external/clang/lib/Frontend/ |
InitPreprocessor.cpp | 246 llvm::raw_string_ostream Out(Result); 248 Out << "namespace std {\n" 254 Out << "template<typename _Tp> struct __is_scalar;\n" 257 Out << "template<typename _Tp>\n" 265 Out << "template<typename _Tp>\n" 273 Out << "template<typename _Tp>\n" 281 Out << "}\n"; [all...] |
/external/llvm/tools/yaml2obj/ |
yaml2elf.cpp | 92 void writeBlobToStream(raw_ostream &Out) { Out << OS.str(); } 267 // TODO: Flesh out section header support. 374 int yaml2elf(llvm::raw_ostream &Out, llvm::MemoryBuffer *Buf) {
|
yaml2coff.cpp | 264 int yaml2coff(llvm::raw_ostream &Out, llvm::MemoryBuffer *Buf) { 283 if (!writeCOFF(CP, Out)) {
|
/external/clang/unittests/AST/ |
DeclPrinterTest.cpp | 34 void PrintDecl(raw_ostream &Out, const ASTContext *Context, const Decl *D) { 37 D->print(Out, Policy, /*Indentation*/ 0, /*PrintInstantiation*/ false); 55 llvm::raw_svector_ostream Out(Printed); 56 PrintDecl(Out, Result.Context, D); [all...] |
/external/llvm/include/llvm/Target/ |
TargetMachine.h | 313 formatted_raw_ostream &Out,
|
/external/clang/include/clang/Sema/ |
Template.h | 84 /// \brief Clear out a specific template argument. 310 LocalInstantiationScope *Out = Scope->Outer; 312 Scope = Out; 374 /// \brief A list of out-of-line class template partial 381 /// \brief A list of out-of-line variable template partial
|
/external/clang/unittests/ASTMatchers/Dynamic/ |
ParserTest.cpp | 87 OwningPtr<DynTypedMatcher> Out(Matcher.tryBind(BindID)); 88 return *Out;
|
/ndk/sources/host-tools/make-3.81/ |
configure.bat | 24 rem goes awry. COMMAND.COM will say "Out of environment space", but
|
/external/llvm/lib/IR/ |
DebugInfo.cpp | 768 static void fixupSubprogramName(DISubprogram Fn, SmallVectorImpl<char> &Out) { 774 Out.reserve(FName.size() + Prefix.size()); 775 Out.append(Prefix.begin(), Prefix.end()); 785 Out.push_back('.'); 787 Out.push_back(C); 907 // FIXME: We really shouldn't be bailing out after visiting just one CU [all...] |
/external/llvm/lib/Target/SystemZ/AsmParser/ |
SystemZAsmParser.cpp | 349 MCStreamer &Out, unsigned &ErrorInfo, 695 MCStreamer &Out, unsigned &ErrorInfo, 706 Out.EmitInstruction(Inst); 764 MCStreamer &Out = getStreamer(); 775 Error(StartLoc, "offset out of range"); 779 Out.EmitLabel(Sym);
|