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

1 23 4 5 6 7 8 910

  /frameworks/compile/libbcc/tools/bcc_strip_attr/
bcc_strip_attr.cpp 106 // Print a stack trace if we signal out.
129 tool_output_file Out(OutputFilename.c_str(), ErrorInfo,
142 Out.os() << *M;
143 } else if (!CheckBitcodeOutputToConsole(Out.os(), true)) {
144 WriteBitcodeToFile(M.get(), Out.os());
147 Out.keep();
  /external/clang/lib/Frontend/
FrontendActions.cpp 249 // Dig out the module definition.
293 // If no output file was provided, figure out where this module would go
331 llvm::raw_ostream &Out;
334 DumpModuleInfoListener(llvm::raw_ostream &Out) : Out(Out) { }
337 Out.indent(4) << Text << ": " << (Value? "Yes" : "No") << "\n"
340 Out.indent(2)
350 Out.indent(2) << "Language options:\n";
354 Out.indent(4) << Description << ": "
    [all...]
  /external/llvm/tools/opt/
opt.cpp 166 raw_ostream &Out;
169 CallGraphSCCPassPrinter(const PassInfo *PI, raw_ostream &out) :
170 CallGraphSCCPass(ID), PassToPrint(PI), Out(out) {
177 Out << "Printing analysis '" << PassToPrint->getPassName() << "':\n";
183 getAnalysisID<Pass>(PassToPrint->getTypeInfo()).print(Out,
202 raw_ostream &Out;
205 ModulePassPrinter(const PassInfo *PI, raw_ostream &out)
206 : ModulePass(ID), PassToPrint(PI), Out(out) {
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCSelfInitChecker.cpp 76 void printState(raw_ostream &Out, ProgramStateRef State,
187 // value out when we return from this method.
341 void ObjCSelfInitChecker::printState(raw_ostream &Out, ProgramStateRef State,
350 Out << Sep << NL << "ObjCSelfInitChecker:" << NL;
353 Out << " An init method has been called." << NL;
357 Out << " An argument of the current call came from the 'self' variable."
361 Out << " An argument of the current call came from an init method."
366 Out << NL;
369 Out << I->first << " : ";
372 Out << "none"
    [all...]
  /external/clang/unittests/ASTMatchers/Dynamic/
RegistryTest.cpp 27 std::vector<ParserValue> Out(1);
28 Out[0].Value = Arg1;
29 return Out;
33 std::vector<ParserValue> Out(2);
34 Out[0].Value = Arg1;
35 Out[1].Value = Arg2;
36 return Out;
43 const MatcherList Out =
46 return Out;
53 const MatcherList Out = Registry::constructMatcher
    [all...]
  /external/chromium_org/base/strings/
safe_sprintf.cc 155 inline bool Out(char ch) {
178 if (!Out(pad)) {
325 Out(*prefix++);
377 Out(*--reverse_prefix);
379 Out(pad);
383 Out((upcase ? kUpCaseHexDigits : kDownCaseHexDigits)[num%base + minint]);
515 buffer.Out(ch);
611 // available space; Out() takes care of doing that.
613 buffer.Out(*src++);
633 buffer.Out('%')
    [all...]
  /external/clang/lib/Rewrite/Frontend/
HTMLPrint.cpp 35 raw_ostream *Out;
42 : Out(OS), PP(pp), SyntaxHighlight(_SyntaxHighlight),
92 Out->write(Buffer, RewriteBuf.size());
  /external/llvm/lib/TableGen/
Main.cpp 106 tool_output_file Out(OutputFilename.c_str(), Error);
117 if (MainFn(Out.os(), Records))
126 Out.keep();
  /external/clang/include/clang/ASTMatchers/Dynamic/
Diagnostics.h 86 ArgStream(std::vector<std::string> *Out) : Out(Out) {}
93 std::vector<std::string> *Out;
  /external/clang/unittests/AST/
StmtPrinterTest.cpp 34 void PrintStmt(raw_ostream &Out, const ASTContext *Context, const Stmt *S) {
36 S->printPretty(Out, /*Helper*/ 0, Policy);
54 llvm::raw_svector_ostream Out(Printed);
55 PrintStmt(Out, Result.Context, S);
  /external/llvm/lib/Target/CppBackend/
CPPTargetMachine.h 32 formatted_raw_ostream &Out,
  /external/llvm/tools/bugpoint/
OptimizerDriver.cpp 55 static bool writeProgramToFileAux(tool_output_file &Out, const Module *M) {
56 WriteBitcodeToFile(M, Out.os());
57 Out.os().close();
58 if (!Out.os().has_error()) {
59 Out.keep();
67 tool_output_file Out(Filename.c_str(), FD);
68 return writeProgramToFileAux(Out, M);
74 tool_output_file Out(Filename.c_str(), ErrInfo, sys::fs::F_Binary);
76 return writeProgramToFileAux(Out, M);
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
filterbanks.c 282 Out: a length FRAMESAMPLES array of output reconstructed
289 float *Out,
320 Out[2*k]=tempin_ch2[k];
321 Out[2*k+1]=tempin_ch1[k];
328 ftmp2 = Out[k] + kHpStCoefOut1Float[2] * postfiltdata->HPstates1_float[0] +
330 ftmp = Out[k] - kHpStCoefOut1Float[0] * postfiltdata->HPstates1_float[0] -
334 Out[k] = ftmp2;
338 ftmp2 = Out[k] + kHpStCoefOut2Float[2] * postfiltdata->HPstates2_float[0] +
340 ftmp = Out[k] - kHpStCoefOut2Float[0] * postfiltdata->HPstates2_float[0] -
344 Out[k] = ftmp2
    [all...]
codec.h 186 int orderCoef, double* Out);
189 int lengthInOut, int orderCoef, double* Out);
199 void WebRtcIsac_FilterAndCombineFloat(float* InLP, float* InHP, float* Out,
  /external/clang/lib/Basic/
ObjCRuntime.cpp 22 llvm::raw_string_ostream Out(Result);
23 Out << *this;
28 raw_ostream &clang::operator<<(raw_ostream &out, const ObjCRuntime &value) {
30 case ObjCRuntime::MacOSX: out << "macosx"; break;
31 case ObjCRuntime::FragileMacOSX: out << "macosx-fragile"; break;
32 case ObjCRuntime::iOS: out << "ios"; break;
33 case ObjCRuntime::GNUstep: out << "gnustep"; break;
34 case ObjCRuntime::GCC: out << "gcc"; break;
35 case ObjCRuntime::ObjFW: out << "objfw"; break;
38 out << '-' << value.getVersion()
    [all...]
  /external/llvm/lib/Object/
YAML.cpp 23 const object::yaml::BinaryRef &Val, void *, llvm::raw_ostream &Out) {
24 Val.writeAsHex(Out);
  /ndk/sources/android/support/src/stdio/
vfwprintf.c 20 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
42 } Out;
44 void out_init_file(Out* out, FILE* f) {
45 memset(out, 0, sizeof(*out));
46 out->file = f;
49 void out_init_buffer(Out* out, wchar_t* buffer, size_t buffer_size) {
50 memset(out, 0, sizeof(*out))
462 Out out[1]; local
481 Out out[1]; local
    [all...]
  /external/clang/include/clang/AST/
Mangle.h 118 raw_ostream &Out) = 0;
131 raw_ostream &Out);
133 const BlockDecl *BD, raw_ostream &Out);
135 const BlockDecl *BD, raw_ostream &Out);
137 raw_ostream &Out);
  /external/llvm/lib/Support/
LockFileManager.cpp 38 // Read the owning host and PID out of the lock file. If it appears that the
78 // lock file; it won't work anyway. Just figure out who owns this lock file.
96 raw_fd_ostream Out(UniqueLockFileID, /*shouldClose=*/true);
104 Out << hostname << ' ' << getpid();
106 Out << "localhost 1";
108 Out.close();
110 if (Out.has_error()) {
111 // We failed to write out PID, so make up an excuse, remove the
138 // Someone else managed to create the lock file first. Wipe out our unique
232 // owning the lock died without cleaning up, just bail out
    [all...]
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMPLT.cpp 153 uint32_t* Out = NULL;
156 Out = static_cast<uint32_t*>(malloc(ARMPLT1::EntrySize));
158 if (!Out)
165 Out[0] = arm_plt1[0] | ((Offset >> 20) & 0xFF);
166 Out[1] = arm_plt1[1] | ((Offset >> 12) & 0xFF);
167 Out[2] = arm_plt1[2] | (Offset & 0xFFF);
169 plt1->setValue(reinterpret_cast<unsigned char*>(Out));
  /external/clang/lib/ASTMatchers/Dynamic/
Registry.cpp 133 std::vector<MatcherCreateCallback *> &Out,
138 std::vector<MatcherCreateCallback *> &Out,
140 Out.push_back(internal::makeMatcherAutoMarshall(
142 collectOverloads(Name, Out, typename FromTypeList::tail());
146 std::vector<MatcherCreateCallback *> &Out) {
147 collectOverloads(Name, Out, FromTypes());
158 std::vector<MatcherCreateCallback *> &Out) {
160 ToTypes>::collectOverloads(Name, Out);
428 MatcherList Out = constructMatcher(MatcherName, NameRange, Args, Error);
429 if (Out.empty()) return Out
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
PathDiagnostic.cpp 210 // cross file boundaries, prune out such diagnostics now.
458 // Clear out the FoldingSet.
896 static inline void describeClass(raw_ostream &Out, const CXXRecordDecl *D,
900 Out << Prefix << '\'' << *D << '\'';
903 static bool describeCodeDecl(raw_ostream &Out, const Decl *D,
911 Out << Prefix << "anonymous block";
916 Out << Prefix;
919 Out << "defaulted ";
921 Out << "implicit ";
926 Out << "default "
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
JSystem.cs 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
51 public static TextWriter @out
55 return Console.Out;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
JSystem.cs 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
50 public static TextWriter @out
54 return Console.Out;
  /external/chromium_org/tools/grit/grit/tool/
interface.py 45 def Out(self, text):
46 '''Always writes out 'text'.'''
50 '''Writes out 'text' if the verbose option is on.'''
55 '''Writes out 'text' if the extra-verbose option is on.

Completed in 787 milliseconds

1 23 4 5 6 7 8 910