/external/v8/src/ |
liveedit.h | 159 class Output { 166 virtual ~Output() {} 171 Output* result_writer);
|
prettyprinter.h | 61 char* output_; // output string buffer 67 const char* Output() const { return output_; }
|
/dalvik/dexgen/src/com/android/dexgen/util/ |
Output.java | 20 * Interface for a sink for binary output. This is similar to 22 * are declared, and multibyte output is defined to be little-endian. 24 public interface Output { 124 * force alignment of the output cursor as given.
|
/dalvik/dx/src/com/android/dx/util/ |
Output.java | 20 * Interface for a sink for binary output. This is similar to 22 * are declared, and multibyte output is defined to be little-endian. 24 public interface Output extends ByteOutput { 124 * force alignment of the output cursor as given.
|
/development/tools/mkstubs/src/com/android/mkstubs/sourcer/ |
Output.java | 23 * An {@link Output} objects is an helper to write to a character stream {@link Writer}. 28 public class Output { 33 * Creates a new {@link Output} object that wraps the given {@link Writer}. 39 public Output(Writer writer) {
|
/dalvik/tools/dexdeps/src/com/android/dexdeps/ |
Main.java | 64 Output.generateFirstHeader(fileName, mOutputFormat); 66 Output.generateHeader(fileName, mOutputFormat); 69 Output.generate(dexData, mOutputFormat, mJustClasses); 70 Output.generateFooter(mOutputFormat); 159 * Copy all data from input stream to output file.
|
Output.java | 22 * Generate fancy output. 24 public class Output { 46 throw new RuntimeException("unknown output format"); 66 throw new RuntimeException("unknown output format"); 78 throw new RuntimeException("unknown output format"); 146 * Prints the output in XML format.
|
/external/chromium/sdch/open-vcdiff/src/ |
encodetable.cc | 266 // and "End of Delta Encoding" in Output(), below. 284 void VCDiffCodeTableWriter::Output(OutputStringInterface* out) { 296 // append() will be called many times on the output string; make sure 297 // the output string is resized only once at most.
|
/external/llvm/include/llvm/Support/ |
OutputBuffer.h | 1 //=== OutputBuffer.h - Output Buffer ----------------------------*- C++ -*-===// 10 // Methods to output values to a data buffer. 24 /// Output buffer. 25 std::vector<unsigned char> &Output; 33 : Output(Out), is64Bit(is64bit), isLittleEndian(le) {} 35 // align - Emit padding into the file until the current output position is 40 size_t Size = Output.size(); 45 Output.resize(Size + Pad); 50 // Out Functions - Output the specified value to the data buffer. 53 Output.push_back(X) [all...] |
/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);
|
/system/media/mca/filterfw/native/core/ |
statistics.h | 60 float Output() const { return value_; }
|
/bionic/libc/kernel/tools/ |
utils.py | 187 class Output:
|
/bionic/libc/tools/ |
bionic_utils.py | 292 class Output:
|
/external/protobuf/java/src/main/java/com/google/protobuf/ |
ByteString.java | 311 // Output stream 314 * Creates a new {@link Output} with the given initial capacity. 316 public static Output newOutput(final int initialCapacity) { 317 return new Output(new ByteArrayOutputStream(initialCapacity)); 321 * Creates a new {@link Output}. 323 public static Output newOutput() { 331 public static final class Output extends FilterOutputStream { 335 * Constructs a new output with the given initial capacity. 337 private Output(final ByteArrayOutputStream bout) { 343 * Creates a {@code ByteString} instance from this {@code Output} 370 private final CodedOutputStream output; field in class:ByteString.CodedBuilder [all...] |
/external/chromium/third_party/libjingle/source/talk/examples/call/ |
call_main.cc | 80 void Output(const char * data, int len) { 110 void DebugPrint(char * buf, int * plen, bool output) { 122 LOG(INFO) << (output ? "SEND >>>>>>>>>>>>>>>>" : "RECV <<<<<<<<<<<<<<<<") 138 // Output a tag 232 DEFINE_string(voiceoutput, NULL, "RTP dump file for voice output."); 234 DEFINE_string(videooutput, NULL, "RTP dump file for video output."); 379 pump.client()->SignalLogOutput.connect(&debug_log_, &DebugLog::Output);
|
/external/chromium/testing/gtest/scripts/ |
pump.py | 641 class Output: 656 def RunAtomicCode(env, node, output): 659 result = Output() 678 RunCode(new_env, node.code, output) 680 output.Append(sep) 682 output.Append(node.raw_code.value) 686 RunCode(env.Clone(), node.then_branch, output) 688 RunCode(env.Clone(), node.else_branch, output) 691 output.Append('%s' % (value,)) 693 output.Append('$' [all...] |
/external/iproute2/doc/ |
ip-cref.tex | 34 and options, decrypting \verb|ip| output and containing a few examples. 48 general behaviour of the \verb|ip| utility or changing its output. All options 60 --- output more information. If the option 89 --- output each record on a single line, replacing line feeds 91 count records with \verb|wc| or to \verb|grep| the output. The trivial 92 script \verb|rtpr| converts the output back into readable form. 177 prints the error message, as it is output with \verb|perror(3)|, 182 In this case \verb|ip| prints the error message, as it is output 349 \paragraph{Output format:} 725 \paragraph{Output format: [all...] |
/external/v8/src/mips/ |
lithium-mips.h | 140 LOperand* Output() {
|
/external/clang/lib/Driver/ |
Driver.cpp | 648 // Make sure we can lipo this kind of output. If not (and it is an actual 649 // output) then we disallow, since we can't create an output file with the 651 // changing the output names to include the arch, which would also fix [all...] |
/external/dropbear/libtommath/ |
bn.tex | 150 This will output a row of numbers that are increasing. Each column is a different test (such as addition, multiplication, etc) 732 This should output the following if the program succeeds. 779 If this program succeeds it shall output. [all...] |
/external/llvm/lib/Transforms/Utils/ |
CodeExtractor.cpp | 216 // instruction is used outside the region, it's an output. 271 // Add the types of the output values to the function's argument list. 334 // Set names for input and output arguments. 443 Value *Output = 0; 452 Output = GEP; 454 Output = ReloadOutputs[i]; 456 LoadInst *load = new LoadInst(Output, outputs[i]->getName()+".reload"); 547 // If the output value is used by a phi in the target block, 572 // Advance output iterator even if we don't emit a store 650 /// add to func as args, map output instr* to arg [all...] |
/external/clang/lib/CodeGen/ |
CGStmt.cpp | [all...] |
/external/llvm/include/llvm/CodeGen/ |
ScheduleDAG.h | 50 Output, ///< A register output-dependence (aka WAW). 61 /// Reg - For Data, Anti, and Output dependencies, the associated 101 case Output: 103 "SDep::Anti and SDep::Output must use a non-zero Reg!"); 124 case Output: 200 /// only valid on Data, Anti, and Output edges. On Data edges, this 203 assert((getKind() == Data || getKind() == Anti || getKind() == Output) && 209 /// only valid on Data, Anti, and Output edges. On Anti and Output [all...] |
/external/clang/lib/Frontend/ |
ASTUnit.cpp | 60 std::string Output; 68 void setOutput(const llvm::Twine &Output) { 70 this->Output = Output.str(); 77 llvm::errs() << Output << ':'; [all...] |
/external/gtest/test/ |
gtest_unittest.cc | 47 || testing::GTEST_FLAG(output) != "unknown" 94 GTEST_DECLARE_string_(output); 114 using testing::GTEST_FLAG(output); 4441 const char* output; member in struct:testing::Flags [all...] |