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

1 2 3 45 6 7 8 910

  /external/llvm/lib/Analysis/
LoopPass.cpp 29 raw_ostream &Out; // raw_ostream to print on.
34 : LoopPass(ID), Banner(B), Out(o) {}
41 Out << Banner;
45 (*b)->print(Out);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
BufferedTreeNodeStream.cs 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
43 * This node stream sucks all nodes out of the tree specified in
252 //Console.Out.WriteLine( "revIndex=" + tokenTypeToStreamIndexesMap );
334 //System.out.print("LT(p="+p+","+k+")=");
353 Console.Out.WriteLine( "start last node: " + i + " size==" + nodes.Count );
361 Console.Out.WriteLine( "stop at node: " + i + " " + nodes[i] );
498 Console.Out.WriteLine("toString");
505 //Console.Out.WriteLine( "stop: " + stop );
507 Console.Out.Write("toString: " + ((CommonTree)start).Token + ", ");
509 Console.Out.WriteLine(start)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
BufferedTreeNodeStream.cs 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
44 * This node stream sucks all nodes out of the tree specified in
288 //Console.Out.WriteLine( "revIndex=" + tokenTypeToStreamIndexesMap );
396 //System.out.print("LT(p="+p+","+k+")=");
417 Console.Out.WriteLine( "start last node: " + i + " size==" + nodes.Count );
425 Console.Out.WriteLine( "stop at node: " + i + " " + nodes[i] );
593 Console.Out.WriteLine( "toString" );
602 //Console.Out.WriteLine( "stop: " + stop );
604 Console.Out.Write( "toString: " + ( (CommonTree)start ).Token + ", " );
606 Console.Out.WriteLine( start )
    [all...]
  /external/clang/tools/driver/
cc1as_main.cpp 246 // Make sure that the Out file gets unlinked from the disk if we get a
252 raw_fd_ostream *Out =
261 return new formatted_raw_ostream(*Out, formatted_raw_ostream::DELETE_STREAM);
298 formatted_raw_ostream *Out = GetOutputStream(Opts, Diags, IsBinary);
299 if (!Out)
347 Str.reset(TheTarget->createAsmStreamer(Ctx, *Out, /*asmverbose*/true,
360 Str.reset(TheTarget->createMCObjectStreamer(Opts.Triple, Ctx, *MAB, *Out,
379 delete Out;
400 // Print a stack trace if we signal out.
  /external/llvm/tools/llvm-extract/
llvm-extract.cpp 93 // Print a stack trace if we signal out.
114 // Figure out which aliases we should extract.
148 // Figure out which globals we should extract.
182 // Figure out which functions we should extract.
268 tool_output_file Out(OutputFilename.c_str(), ErrorInfo, sys::fs::F_Binary);
275 Passes.add(createPrintModulePass(&Out.os()));
276 else if (Force || !CheckBitcodeOutputToConsole(Out.os(), true))
277 Passes.add(createBitcodeWriterPass(Out.os()));
282 Out.keep();
  /external/llvm/test/MC/ARM/
diagnostics.s 12 @ Out of range shift immediate values.
26 @ CHECK-ERRORS: error: immediate shift value out of range
29 @ CHECK-ERRORS: error: immediate shift value out of range
32 @ CHECK-ERRORS: error: immediate shift value out of range
35 @ CHECK-ERRORS: error: immediate shift value out of range
38 @ CHECK-ERRORS: error: immediate shift value out of range
41 @ CHECK-ERRORS: error: immediate shift value out of range
44 @ CHECK-ERRORS: error: immediate shift value out of range
47 @ CHECK-ERRORS: error: immediate shift value out of range
50 @ Out of range shift immediate values for load/store
    [all...]
  /external/clang/lib/Serialization/
ASTWriter.cpp     [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugTreeGrammar.g3 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
57 Console.Out.WriteLine($expr.value + " (about " + result[0] + "*10^" + (result.Length-1) + ")");
ProfileTreeGrammar.g3 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
57 Console.Out.WriteLine($expr.value + " (about " + result[0] + "*10^" + (result.Length-1) + ")");
  /external/llvm/include/llvm/Support/
OutputBuffer.h 31 OutputBuffer(std::vector<unsigned char> &Out,
33 : Output(Out), is64Bit(is64bit), isLittleEndian(le) {}
50 // Out Functions - Output the specified value to the data buffer.
  /external/llvm/tools/obj2yaml/
coff2yaml.cpp 110 error_code coff2yaml(raw_ostream &Out, MemoryBuffer *Buff) {
116 yaml::Output Yout(Out);
  /external/clang/lib/StaticAnalyzer/Checkers/
RetainCountChecker.cpp 259 void print(raw_ostream &Out) const;
262 void RefVal::print(raw_ostream &Out) const {
264 Out << "Tracked " << T.getAsString() << '/';
269 Out << "Owned";
271 if (cnt) Out << " (+ " << cnt << ")";
276 Out << "NotOwned";
278 if (cnt) Out << " (+ " << cnt << ")";
283 Out << "ReturnedOwned";
285 if (cnt) Out << " (+ " << cnt << ")";
290 Out << "ReturnedNotOwned"
    [all...]
  /external/clang/include/clang/Basic/
VersionTuple.h 135 raw_ostream& operator<<(raw_ostream &Out, const VersionTuple &V);
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ConstraintManager.h 116 raw_ostream &Out,
SubEngine.h 140 virtual void printState(raw_ostream &Out, ProgramStateRef State,
  /external/llvm/include/llvm/Bitcode/
ReaderWriter.h 64 void WriteBitcodeToFile(const Module *M, raw_ostream &Out);
  /external/llvm/include/llvm/MC/
MCTargetAsmParser.h 125 /// \param Operands [out] - The list of parsed operands, this returns
157 MCStreamer &Out, unsigned &ErrorInfo,
  /external/llvm/lib/IR/
AsmWriter.h 66 formatted_raw_ostream &Out;
  /external/llvm/tools/llc/
llc.cpp 308 // Figure out where we are going to send the output.
309 OwningPtr<tool_output_file> Out
311 if (!Out) return 1;
343 formatted_raw_ostream FOS(Out->os());
380 Out->keep();
  /frameworks/compile/slang/BitWriter_2_9/
ReaderWriter_2_9.h 56 void WriteBitcodeToFile(const llvm::Module *M, llvm::raw_ostream &Out);
  /frameworks/compile/slang/BitWriter_2_9_func/
ReaderWriter_2_9_func.h 56 void WriteBitcodeToFile(const llvm::Module *M, llvm::raw_ostream &Out);
  /frameworks/compile/slang/BitWriter_3_2/
ReaderWriter_3_2.h 56 void WriteBitcodeToFile(const llvm::Module *M, llvm::raw_ostream &Out);
  /external/chromium_org/tools/grit/grit/tool/
transl2tc.py 69 self.Out('This tool takes exactly three arguments:\n'
87 self.Out('Wrote output file %s' % args[2])
139 self.Out(
144 self.Out('Warning: No translation for %s, skipping.\n' % node_id)
214 self.Out('Warning: Two different translations for "%s":\n'
240 output_file: util.WrapOutputStream(open('bingo.out', 'w'))
  /external/clang/lib/CodeGen/
CGVTT.cpp 103 llvm::raw_svector_ostream Out(OutName);
104 CGM.getCXXABI().getMangleContext().mangleCXXVTT(RD, Out);
105 Out.flush();
MicrosoftVBTables.cpp 172 llvm::raw_svector_ostream Out(OutName);
174 Mangler.mangleCXXVBTable(MostDerived, BasePath, Out);
175 Out.flush();
208 // These are laid out in the same order as in Itanium, which is the same as

Completed in 621 milliseconds

1 2 3 45 6 7 8 910