/external/clang/include/clang/Analysis/Analyses/ |
UninitializedValues.h | 34 unsigned Output;
|
/external/llvm/lib/CodeGen/ |
UnreachableBlockElim.cpp | 192 unsigned Output = phi->getOperand(0).getReg(); 199 if (Input != Output) { 201 MRI.constrainRegClass(Input, MRI.getRegClass(Output)); 202 MRI.replaceRegWith(Output, Input);
|
/external/open-vcdiff/src/ |
encodetable.h | 35 // {{Add|Copy|Run}* [AddChecksum] Output}* 37 // When Output has been called in this sequence, a complete target window 40 // case Output will do nothing.) The output will not be available for use 41 // until after each call to Output(). 107 // Appends the encoded delta window to the output 108 // string. The output string is not null-terminated and may contain embedded 110 virtual void Output(OutputStringInterface* out); 112 // There should not be any need to output more data 153 // Appends the size value to the output string as a variable-length integer [all...] |
jsonwriter.cc | 36 void JSONCodeTableWriter::Output(OutputStringInterface* out) {
|
/external/oprofile/libutil++/tests/ |
string_manip_tests.cpp | 22 template <typename Input, typename Output> 25 Output output; member in struct:input_output 29 template <typename Input, typename Output, typename Result> 31 Output const & output, Result const & result) 33 if (result != output) { 36 << "expect:\n\"" << output << "\"\n" 58 check_result("erase_to_last_of()", cur->input, cur->output, 85 check_result("split()", cur->input, cur->output.first, temp) [all...] |
/external/clang/lib/Driver/ |
ArgList.cpp | 237 void ArgList::AddLastArg(ArgStringList &Output, OptSpecifier Id) const { 240 A->render(*this, Output); 244 void ArgList::AddAllArgs(ArgStringList &Output, OptSpecifier Id0, 249 (*it)->render(*this, Output); 253 void ArgList::AddAllArgValues(ArgStringList &Output, OptSpecifier Id0, 259 Output.push_back((*it)->getValue(i)); 263 void ArgList::AddAllArgsTranslated(ArgStringList &Output, OptSpecifier Id0, 271 Output.push_back(MakeArgString(StringRef(Translation) + 274 Output.push_back(Translation); 275 Output.push_back((*it)->getValue(0)) [all...] |
Tools.cpp | 235 const InputInfo &Output, 248 // Determine the output location. 253 } else if (Output.getType() == types::TY_Dependencies) { 254 DepFile = Output.getFilename(); 272 if (OutputOpt && Output.getType() != types::TY_Dependencies) { 277 // FIXME: This should use the computed output file location. [all...] |
/external/llvm/include/llvm/CodeGen/ |
ScheduleDAG.h | 51 Output, ///< A register output-dependence (aka WAW). 80 /// Reg - For Data, Anti, and Output dependencies, the associated 112 case Output: 114 "SDep::Anti and SDep::Output must use a non-zero Reg!"); 136 case Output: 240 /// only valid on Data, Anti, and Output edges. On Data edges, this 243 assert((getKind() == Data || getKind() == Anti || getKind() == Output) && 249 /// only valid on Data, Anti, and Output edges. On Anti and Output [all...] |
/external/webrtc/src/common_audio/signal_processing/ |
spl_sqrt_floor.s | 5 @ Output is bit-exact with the reference C code in spl_sqrt_floor.c. 8 @ Output: r0 = INT (SQRT (r0)), precision is 16 bits
|
/external/clang/include/clang/Driver/ |
ArgList.h | 243 void AddLastArg(ArgStringList &Output, OptSpecifier Id0) const; 246 void AddAllArgs(ArgStringList &Output, OptSpecifier Id0, 251 void AddAllArgValues(ArgStringList &Output, OptSpecifier Id0, 260 void AddAllArgsTranslated(ArgStringList &Output, OptSpecifier Id0,
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/staticDropFiles/ |
consoleLogs.php | 21 echo "<title>Test Console Output for $buildType $buildName </title>";
28 <p><b><font face="Verdana" size="+3">Test Console Output</font></b> </p>
33 output from running JUnit plugin tests for
|
/external/guava/guava-tests/test/com/google/common/io/ |
CharStreamsTest.java | 159 CheckCloseSupplier.Output<Writer> okWrite 167 CheckCloseSupplier.Output<Writer> brokenWrite 305 private static CheckCloseSupplier.Output<Writer> newCheckWriter( 307 return new CheckCloseSupplier.Output<Writer>(delegate) {
|
/external/llvm/include/llvm/Option/ |
ArgList.h | 226 void AddLastArg(ArgStringList &Output, OptSpecifier Id0) const; 229 void AddAllArgs(ArgStringList &Output, OptSpecifier Id0, 234 void AddAllArgValues(ArgStringList &Output, OptSpecifier Id0, 243 void AddAllArgsTranslated(ArgStringList &Output, OptSpecifier Id0,
|
/external/v8/src/ |
prettyprinter.h | 61 char* output_; // output string buffer 67 const char* Output() const { return output_; }
|
/frameworks/compile/mclinker/include/mcld/LD/ |
ELFObjectWriter.h | 29 class Output;
|
/external/chromium/googleurl/src/ |
url_canon_internal.h | 93 // Appends the given string to the output, escaping characters that do not 97 CanonOutput* output); 100 CanonOutput* output); 144 // Write a single character, escaped, to the output. This always escapes: it 150 CanonOutputT<OUTCHAR>* output) { 151 output->push_back('%'); 152 output->push_back(kHexCharLookup[ch >> 4]); 153 output->push_back(kHexCharLookup[ch & 0xf]); 175 // character that should be appended, with the given output method. Wrappers 180 template<class Output, void Appender(unsigned char, Output*) 183 Appender(static_cast<unsigned char>(char_value), output); local [all...] |
/external/llvm/include/llvm/Support/ |
YAMLTraits.h | 91 /// static void output(const MyType &val, void*, llvm::raw_ostream &out) { 106 //static void output(const T &value, void *ctxt, llvm::raw_ostream &out); 203 SameType<Signature_output, &U::output>*); 313 // Base class for Input and Output. 469 ScalarTraits<T>::output(Val, io.getContext(), Buffer); 530 static void output(const bool &, void*, llvm::raw_ostream &); 536 static void output(const StringRef &, void*, llvm::raw_ostream &); 542 static void output(const uint8_t &, void*, llvm::raw_ostream &); 548 static void output(const uint16_t &, void*, llvm::raw_ostream &); 554 static void output(const uint32_t &, void*, llvm::raw_ostream &) [all...] |
/external/ppp/pppd/plugins/radius/etc/ |
dictionary | 78 ATTRIBUTE Acct-Output-Octets 43 integer 83 ATTRIBUTE Acct-Output-Packets 48 integer 249 VALUE Octets-Direction Output 2
|
/external/clang/include/clang/Basic/ |
TargetInfo.h | 458 CI_ReadWrite = 0x04, // "+r" output constraint (read and write). 459 CI_HasMatchingInput = 0x08 // This output operand has a matching input. 477 /// \brief Return true if this output operand has a matching 482 /// constraint that ties it to an output operand. 484 /// If this returns true then getTiedOperand will indicate which output 498 /// the specified output operand. 500 /// Copy over the various constraint information from the output. 501 void setTiedOperand(unsigned N, ConstraintInfo &Output) { 502 Output.setHasMatchingInput(); 503 Flags = Output.Flags [all...] |
/external/llvm/unittests/Support/ |
YAMLIOTest.cpp | 19 using llvm::yaml::Output; 106 Output yout(ostr); 247 Output yout(ostr); 429 Output yout(ostr); 478 static void output(const MyCustomType &value, void* ctxt, llvm::raw_ostream &out) { function in struct:llvm::yaml::ScalarTraits 519 Output yout(ostr); 550 static void output(const MyNumber &value, void *, llvm::raw_ostream &out) { function in struct:llvm::yaml::ScalarTraits 603 Output yout(ostr); 707 Output yout(ostr); 832 Output yout(ostr) [all...] |
/development/tools/mkstubs/src/com/android/mkstubs/sourcer/ |
MethodSourcer.java | 34 private final Output mOutput; 44 public MethodSourcer(Output output, String className, int access, String name, 47 mOutput = output; 80 // output return type (constructor have no return type) 91 // output name 94 // output arguments. The signature overrides desc, if present 116 // output throwable exceptions
|
/external/bison/build-aux/ |
vc-list-files | 35 Output a list of version-controlled files in DIR (default .), relative to
|
/external/llvm/tools/bugpoint/ |
ExecutionDriver.cpp | 77 cl::desc("Append the exit code to the output so it gets diff'd too"), 112 OutputPrefix("output-prefix", cl::init("bugpoint"), 289 /// executeProgram - This method runs "Program", capturing the output of the 326 if (OutputFile.empty()) OutputFile = OutputPrefix + "-execution-output"; 328 // Check to see if this is a valid output filename... 367 // Return the filename we captured the output to. 371 /// executeProgramSafely - Used to create reference output with the "safe" 372 /// backend, if reference output is not provided. 405 /// createReferenceFile - calls compileProgram and then records the output 427 outs() << "\nReference output is: " << ReferenceOutputFile << "\n\n" [all...] |
/external/chromium/sdch/open-vcdiff/src/ |
vcdiffengine.cc | 137 // the results into the output string "diff". 148 coder->Output(diff);
|
/external/clang/test/ |
Makefile | 69 @ find . -name Output | xargs rm -fr
|