/external/clang/lib/StaticAnalyzer/Core/ |
ExprEngine.cpp | 267 void ExprEngine::printState(raw_ostream &Out, ProgramStateRef State, 269 getCheckerManager().runCheckersForPrintState(Out, State, NL, Sep); 320 // postpone cleaning out the state. 325 void ExprEngine::removeDead(ExplodedNode *Pred, ExplodedNodeSet &Out, 367 // up. Since no symbols are dead, we can optimize and not clean out 369 StmtNodeBuilder Bldr(Pred, Out, *currBldrCtx); 382 StmtNodeBuilder Bldr(CheckedSet, Out, *currBldrCtx); [all...] |
Environment.cpp | 190 void Environment::print(raw_ostream &Out, const char *NL, 198 Out << NL << NL 203 Out << NL; 208 Out << " (" << (const void*) En.getLocationContext() << ',' 211 S->printPretty(Out, 0, PrintingPolicy(LO)); 212 Out << " : " << I.getData();
|
BugReporterVisitors.cpp | 169 /// node, looking for when the given statement was processed. If it turns out 295 llvm::raw_svector_ostream Out(Msg); 307 Out << "Returning nil"; 309 Out << "Returning null pointer"; 311 Out << "Returning zero"; 317 Out << " (reference to "; 318 MR->printPretty(Out); 319 Out << ")"; 326 Out << " (loaded from '" << *DD << "')"; 330 return new PathDiagnosticEventPiece(L, Out.str()) [all...] |
/external/clang/lib/StaticAnalyzer/Frontend/ |
AnalysisConsumer.cpp | 94 llvm::raw_svector_ostream Out(TmpStr); 97 Out << "%%"; 99 Out << *I; 101 Out.flush(); 683 OwningPtr<raw_ostream> Out; 691 UbigraphViz(raw_ostream *Out, StringRef Filename); 722 *Out << "('vertex', " << SrcID << ", ('color','#00ff00'))\n"; 733 *Out << "('vertex', " << DstID << ")\n"; 738 *Out << "('change_vertex_style', " << DstID << ", 1)\n"; 742 *Out << "('edge', " << SrcID << ", " << DstI [all...] |
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
Environment.h | 95 void print(raw_ostream &Out, const char *NL, const char *Sep) const; 98 void printAux(raw_ostream &Out, bool printLocations,
|
/external/llvm/lib/CodeGen/ |
LLVMTargetMachine.cpp | 140 formatted_raw_ostream &Out, 152 // FIXME: The intent is that this should eventually write out a YAML file, 157 PM.add(createPrintModulePass(&Out)); 184 MCStreamer *S = getTarget().createAsmStreamer(*Context, Out, 206 *Context, *MAB, Out, 258 raw_ostream &Out, 280 *MAB, Out, MCE,
|
/frameworks/compile/mclinker/lib/Target/Hexagon/ |
HexagonPLT.cpp | 170 uint32_t* Out = NULL; 173 Out = static_cast<uint32_t*>(malloc(HexagonPLT1::EntrySize)); 175 if (!Out) 178 memcpy(Out, hexagon_plt1, plt1->size()); 180 int32_t *dest = (int32_t *)Out; 190 plt1->setValue(reinterpret_cast<unsigned char*>(Out));
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/ |
floating_point_comparison.hpp | 116 template<typename Out,typename FPT> 117 Out& operator<<( Out& out, percent_tolerance_t<FPT> t ) 119 return out << t.m_value; 142 template<typename Out,typename FPT> 143 Out& operator<<( Out& out, fraction_tolerance_t<FPT> t ) 145 return out << t.m_value [all...] |
/external/clang/lib/Serialization/ |
GlobalModuleIndex.cpp | 631 EmitKeyDataLength(raw_ostream& Out, key_type_ref Key, data_type_ref Data) { 634 clang::io::Emit16(Out, KeyLen); 635 clang::io::Emit16(Out, DataLen); 639 void EmitKey(raw_ostream& Out, key_type_ref Key, unsigned KeyLen) { 640 Out.write(Key.data(), KeyLen); 643 void EmitData(raw_ostream& Out, key_type_ref Key, data_type_ref Data, 646 clang::io::Emit32(Out, Data[I]); 708 llvm::raw_svector_ostream Out(IdentifierTable); 710 clang::io::Emit32(Out, 0); 711 BucketOffset = Generator.Emit(Out, Trait) [all...] |
/external/clang/lib/ASTMatchers/Dynamic/ |
Marshallers.h | 169 /// out of the polymorphic object. 171 static void mergePolyMatchers(const PolyMatcher &Poly, MatcherList *Out, 175 static void mergePolyMatchers(const PolyMatcher &Poly, MatcherList *Out, 177 Out->add(ast_matchers::internal::Matcher<typename TypeList::head>(Poly)); 178 mergePolyMatchers(Poly, Out, typename TypeList::tail()); 265 MatcherList Out; 267 Out = outvalueToMatcherList( 275 return Out;
|
/external/llvm/include/llvm/Bitcode/ |
BitstreamWriter.h | 26 SmallVectorImpl<char> &Out; 66 Out[ByteNo++] = (unsigned char)(NewWord >> 0); 67 Out[ByteNo++] = (unsigned char)(NewWord >> 8); 68 Out[ByteNo++] = (unsigned char)(NewWord >> 16); 69 Out[ByteNo ] = (unsigned char)(NewWord >> 24); 73 Out.push_back(Value); 82 Out.append(&Bytes[0], &Bytes[4]); 86 return Out.size(); 97 : Out(O), CurBit(0), CurValue(0), CurCodeSize(2) {} 226 // Push the outer block's abbrev set onto the stack, start out with a [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/ |
lp_bld_debug.cpp | 23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 227 raw_debug_ostream Out; 260 T->createMCInstPrinter(AsmPrinterVariant, *AsmInfo, Out)); 335 Printer->printInst(&Inst, Out, ""); 337 Printer->printInst(&Inst, Out); 341 Out.flush();
|
/external/llvm/lib/Analysis/ |
RegionPass.cpp | 184 raw_ostream &Out; // raw_ostream to print on. 188 PrintRegionPass() : RegionPass(ID), Out(dbgs()) {} 190 : RegionPass(ID), Banner(B), Out(o) {} 197 Out << Banner; 200 (*I)->print(Out);
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
lp_bld_debug.cpp | 23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 227 raw_debug_ostream Out; 260 T->createMCInstPrinter(AsmPrinterVariant, *AsmInfo, Out)); 335 Printer->printInst(&Inst, Out, ""); 337 Printer->printInst(&Inst, Out); 341 Out.flush();
|
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/ |
filter_functions.c | 55 void WebRtcIsac_AllZeroFilter(double *In, double *Coef, int lengthInOut, int orderCoef, double *Out){ 70 *Out++ = tmp; 77 void WebRtcIsac_ZeroPoleFilter(double *In, double *ZeroCoef, double *PoleCoef, int lengthInOut, int orderCoef, double *Out){ 80 /* the state of the pole section is assumed to be in Out[-1] to Out[-orderCoef] */ 82 WebRtcIsac_AllZeroFilter(In,ZeroCoef,lengthInOut,orderCoef,Out); 83 WebRtcIsac_AllPoleFilter(Out,PoleCoef,lengthInOut,orderCoef); 114 void WebRtcIsac_BwExpand(double *out, double *in, double coef, short length) { 120 out[0] = in[0]; 122 out[i] = chirp * in[i] [all...] |
/external/llvm/lib/Transforms/Instrumentation/ |
DebugIR.cpp | 55 void addEntry(const Value *V, formatted_raw_ostream &Out) { 56 Out.flush(); 57 Lines.insert(std::make_pair(V, Out.getLine() + 1)); 71 void printInfoComment(const Value &V, formatted_raw_ostream &Out) { 72 addEntry(&V, Out); 75 void emitFunctionAnnot(const Function *F, formatted_raw_ostream &Out) { 76 addEntry(F, Out); 527 OwningPtr<raw_fd_ostream> Out; 532 Out.reset(new raw_fd_ostream(Path.c_str(), error)); 538 Out.reset(new raw_fd_ostream(*fd, true)) [all...] |
/external/llvm/tools/llvm-dis/ |
llvm-dis.cpp | 115 // Print a stack trace if we signal out. 171 OwningPtr<tool_output_file> Out(new tool_output_file( 184 M->print(Out->os(), Annotator.get()); 187 Out->keep();
|
/external/llvm/tools/llvm-mc/ |
Disassembler.cpp | 53 SourceMgr &SM, raw_ostream &Out, 160 raw_ostream &Out) { 204 ErrorOccurred |= PrintInsts(*DisAsm, ByteArray, SM, Out, Streamer,
|
/external/clang/lib/CodeGen/ |
CodeGenTBAA.cpp | 163 llvm::raw_svector_ostream Out(OutName); 164 MContext.mangleCXXRTTIName(QualType(ETy, 0), Out); 165 Out.flush(); 280 llvm::raw_svector_ostream Out(OutName); 281 MContext.mangleCXXRTTIName(QualType(Ty, 0), Out); 282 Out.flush();
|
/external/llvm/test/MC/ARM/ |
thumb-diagnostics.s | 25 @ Out of range immediates for ASR instruction. 31 @ Out of range immediates for BKPT instruction. 77 @ Out of range immediates for LSL instruction. 94 @ Out of range immediates for STR instruction. 108 @ Out of range immediate for SVC instruction. 119 @ Out of range immediate for ADD SP instructions
|
/external/llvm/tools/lto/ |
LTOCodeGenerator.cpp | 170 tool_output_file Out(path, ErrInfo, sys::fs::F_Binary); 178 WriteBitcodeToFile(_linker.getModule(), Out.os()); 179 Out.os().close(); 181 if (Out.os().has_error()) { 184 Out.os().clear_error(); 188 Out.keep(); 390 bool LTOCodeGenerator::generateObjectFile(raw_ostream &out, 427 formatted_raw_ostream Out(out); 433 if (_target->addPassesToEmitFile(codeGenPasses, Out, [all...] |
/external/lzma/CPP/7zip/Compress/ |
DeltaFilter.cpp | 101 static void *CreateCodec ## x ## Out() { return (void *)(ICompressFilter *)(new C ## x ## Encoder); }
105 #define METHOD_ITEM(x, id, name) { CreateCodec ## x, CreateCodec ## x ## Out, id, name, 1, true }
|
/external/llvm/include/llvm/Analysis/ |
LoopInfoImpl.h | 29 /// which branch out. The returned list is always unique. 123 BlockT *Out = getLoopPredecessor(); 124 if (!Out) return 0; 126 // Make sure there is only one exit out of the preheader. 128 typename BlockTraits::ChildIteratorType SI = BlockTraits::child_begin(Out); 130 if (SI != BlockTraits::child_end(Out)) 134 return Out; 145 BlockT *Out = 0; 155 if (Out && Out != N [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/ |
ExceptionExtensions.cs | 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 71 ExceptionExtensions.PrintStackTrace(e, Console.Out);
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/ |
ExceptionExtensions.cs | 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 79 e.PrintStackTrace( Console.Out );
|