/external/chromium-trace/trace-viewer/tracing/third_party/python_gflags/ |
gflags2man.py | 35 Run the program, parse the output, and then format that into a man 76 gflags.DEFINE_integer('v', 0, 'verbosity level to use for output') 179 self.output = [] # output from the program. List of lines. 186 """Run it and collect output. 201 # --help output is often routed to stderr, so we combine with stdout. 207 self.output = child_stdout_and_stderr.readlines() 209 if len(self.output) < _MIN_VALID_USAGE_MSG: 212 len(self.output), self.output)) [all...] |
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
radeon_dataflow_deadcode.c | 34 unsigned char Output[RC_REGISTER_MAX_INDEX]; 81 dst->Output[i] = a->Output[i] | b->Output[i]; 128 return &s->R.Output[index];
|
radeon_emulate_branches.c | 244 unsigned int Output:RC_REGISTER_INDEX_BITS; 253 if (*pfile == RC_FILE_OUTPUT && *pindex == data->Output) { 261 * Output registers cannot be read from and so cannot be dealt with like 264 * We do the simplest thing: If an output registers is written within 285 remap.Output = inst->U.I.DstReg.Index; 297 inst_mov->U.I.DstReg.Index = remap.Output;
|
/external/v8/tools/unittests/ |
run_perf_test.py | 80 Output = namedtuple("Output", "stdout, stderr, timed_out") 117 # Fake output for each test run. 118 test_outputs = [Output(stdout=arg,
|
/frameworks/compile/mclinker/include/mcld/Object/ |
SectionMap.h | 27 * \brief descirbe how to map input sections into output sections 62 class Output { 74 explicit Output(const std::string& pName); 75 explicit Output(const OutputSectDesc& pOutputDesc); 140 bool operator()(const Output* LHS, const Output* RHS) const { 145 typedef std::pair<const Output*, const Input*> const_mapping; 146 typedef std::pair<Output*, Input*> mapping; 148 typedef std::vector<Output*> OutputDescList;
|
/external/google-breakpad/src/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/llvm/lib/Transforms/Utils/ |
CodeExtractor.cpp | 168 // instruction is used outside the region, it's an output. 319 // Add the types of the output values to the function's argument list. 381 // Set names for input and output arguments. 489 Value *Output = nullptr; 497 Output = GEP; 499 Output = ReloadOutputs[i]; 501 LoadInst *load = new LoadInst(Output, outputs[i]->getName()+".reload"); 592 // If the output value is used by a phi in the target block, 616 // Advance output iterator even if we don't emit a store
|
/external/protobuf/gtest/scripts/ |
pump.py | 634 class Output: 649 def RunAtomicCode(env, node, output): 652 result = Output() 671 RunCode(new_env, node.code, output) 673 output.Append(sep) 675 output.Append(node.raw_code.value) 679 RunCode(env.Clone(), node.then_branch, output) 681 RunCode(env.Clone(), node.else_branch, output) 684 output.Append('%s' % (value,)) 686 output.Append('$' [all...] |
/external/deqp/modules/gles3/functional/ |
es3fTransformFeedbackTests.cpp | 140 struct Output 142 Output (void) 465 static void computeTransformFeedbackOutputs (vector<Output>& transformFeedbackOutputs, const vector<Attribute>& attributes, const vector<Varying>& varyings, const vector<string>& transformFeedbackVaryings, deUint32 bufferMode) 475 Output& output = transformFeedbackOutputs[varNdx]; local 477 output.name = name; 478 output.bufferNdx = bufNdx; 479 output.offset = offset; 484 output.type = posIn->type; 485 output.inputs.push_back(posIn) [all...] |
/external/protobuf/java/src/main/java/com/google/protobuf/ |
ByteString.java | 539 * the specified output stream argument. 541 * @param out the output stream to which to write the data. 547 * Writes a specified part of this byte string to an output stream. 549 * @param out the output stream to which to write the data. 723 // Output stream 726 * Creates a new {@link Output} with the given initial capacity. Call {@link 727 * Output#toByteString()} to create the {@code ByteString} instance. 729 * A {@link ByteString.Output} offers the same functionality as a 736 public static Output newOutput(int initialCapacity) { 737 return new Output(initialCapacity) 955 private final CodedOutputStream output; field in class:ByteString.CodedBuilder [all...] |
/external/clang/lib/Driver/ |
Driver.cpp | 428 // Suppress driver output and emit preprocessor output to temp file. 439 // Suppress tool output. 507 // Generate preprocessed output. 538 // the crash into a directory next to the output. 916 // Make sure we can lipo this kind of output. If not (and it is an actual 917 // output) then we disallow, since we can't create an output file with the 919 // changing the output names to include the arch, which would also fix [all...] |
/external/jetty/src/java/org/eclipse/jetty/util/ajax/ |
JSON.java | 373 public void toJSON(Output out) [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 107 case Output: 109 "SDep::Anti and SDep::Output must use a non-zero Reg!"); 130 case Output: 233 /// only valid on Data, Anti, and Output edges. On Data edges, this 236 assert((getKind() == Data || getKind() == Anti || getKind() == Output) && 242 /// only valid on Data, Anti, and Output edges. On Anti and Output [all...] |
/external/llvm/include/llvm/Support/ |
YAMLTraits.h | 93 /// static void output(const MyType &val, void*, llvm::raw_ostream &out) { 109 //static void output(const T &value, void *ctxt, llvm::raw_ostream &out); 211 SameType<Signature_output, &U::output> *, 422 // Base class for Input and Output. 628 ScalarTraits<T>::output(Val, io.getContext(), Buffer); 709 static void output(const bool &, void*, llvm::raw_ostream &); 716 static void output(const StringRef &, void*, llvm::raw_ostream &); 723 static void output(const std::string &, void*, llvm::raw_ostream &); 730 static void output(const uint8_t &, void*, llvm::raw_ostream &); 737 static void output(const uint16_t &, void*, llvm::raw_ostream &) [all...] |
/external/vboot_reference/utility/ |
eficompress.c | 181 Output ( 297 DstSize - On input, the size of DstBuffer; On output, 383 Put a dword to output stream 916 // so just output the original character 919 Output(mText[mPos - 1], 0); 926 Output(LastMatchLen + (UINT8_MAX + 1 - THRESHOLD), 1125 Huffman code the block and output it. 1189 Output (
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
ksproxy.h | 202 PIPE_TERMINATION Output;
|
/cts/tests/tests/hardware/src/android/hardware/camera2/cts/helpers/ |
StaticMetadata.java | 760 Assert.fail("Tonemap curve output is supported but MAX_CURVE_POINTS is null"); 766 checkTrueForKey(key, "Tonemap curve output supported camera device must support " 832 StaticMetadata.StreamDirection.Output); [all...] |
/external/clang/lib/CodeGen/ |
CGStmt.cpp | [all...] |
/external/clang/lib/Frontend/ |
ASTUnit.cpp | 58 std::string Output; 66 void setOutput(const Twine &Output) { 68 this->Output = Output.str(); 75 llvm::errs() << Output << ':'; [all...] |
/external/jetty/src/java/org/eclipse/jetty/server/ |
AbstractHttpConnection.java | 121 protected volatile Output _out; 352 * @return The output stream for this connection. The stream will be created if it does not already exist. 357 _out = new Output(); 364 * @return A {@link PrintWriter} wrapping the {@link #getOutputStream output stream}. The writer is created if it [all...] |
/external/llvm/lib/Analysis/ |
CFLAliasAnalysis.cpp | 263 SmallVectorImpl<Edge> &Output; 266 GetEdgesVisitor(CFLAliasAnalysis &AA, SmallVectorImpl<Edge> &Output) 267 : AA(AA), Output(Output) {} 275 Output.push_back(Edge(Ptr, Ptr, EdgeType::Assign, AttrUnknown)); 280 Output.push_back(Edge(Ptr, Ptr, EdgeType::Assign, AttrUnknown)); 284 Output.push_back( 291 Output.push_back(Edge(&Inst, Op1, EdgeType::Assign, AttrNone)); 292 Output.push_back(Edge(&Inst, Op2, EdgeType::Assign, AttrNone)); 298 Output.push_back(Edge(Ptr, Val, EdgeType::Dereference, AttrNone)) [all...] |
/external/protobuf/gtest/test/ |
gtest_unittest.cc | 48 || testing::GTEST_FLAG(output) != "unknown" 121 using testing::GTEST_FLAG(output); 5148 const char* output; member in struct:testing::Flags [all...] |
/external/v8/src/arm/ |
lithium-arm.h | 260 LOperand* Output() { return HasResult() ? result() : NULL; } 292 // Allow 0 or 1 output operands. [all...] |
/external/v8/src/ia32/ |
lithium-ia32.h | 261 LOperand* Output() { return HasResult() ? result() : NULL; } 293 // Allow 0 or 1 output operands. [all...] |