HomeSort by relevance Sort by last modified time
    Searched defs:Output (Results 26 - 50 of 131) sorted by null

12 3 4 5 6

  /external/clang/include/clang/Analysis/Analyses/
UninitializedValues.h 34 unsigned Output;
  /frameworks/compile/mclinker/lib/Object/
SectionMap.cpp 72 // SectionMap::Output
74 SectionMap::Output::Output(const std::string& pName)
95 SectionMap::Output::Output(const OutputSectDesc& pOutputDesc)
107 bool SectionMap::Output::hasContent() const {
111 SectionMap::Output::const_dot_iterator
112 SectionMap::Output::find_first_explicit_dot() const {
120 SectionMap::Output::dot_iterator SectionMap::Output::find_first_explicit_dot()
244 Output* output = new Output(pOutputSection); local
280 Output* output = new Output(pOutputDesc); local
290 Output* output = new Output(pSection->name()); local
    [all...]
  /external/v8/src/debug/
liveedit.h 202 class Output {
209 virtual ~Output() {}
214 Output* result_writer);
  /external/llvm/lib/Support/
YAMLTraits.cpp 396 // Output
399 Output::Output(raw_ostream &yout, void *context, int WrapColumn)
412 Output::~Output() {
415 bool Output::outputting() {
419 void Output::beginMapping() {
424 bool Output::mapTag(StringRef Tag, bool Use) {
426 this->output(" ");
427 this->output(Tag)
651 void Output::output(StringRef s) { function in class:Output
731 void ScalarTraits<bool>::output(const bool &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
746 void ScalarTraits<StringRef>::output(const StringRef &Val, void *, function in class:ScalarTraits
757 void ScalarTraits<std::string>::output(const std::string &Val, void *, function in class:ScalarTraits
768 void ScalarTraits<uint8_t>::output(const uint8_t &Val, void *, function in class:ScalarTraits
785 void ScalarTraits<uint16_t>::output(const uint16_t &Val, void *, function in class:ScalarTraits
801 void ScalarTraits<uint32_t>::output(const uint32_t &Val, void *, function in class:ScalarTraits
817 void ScalarTraits<uint64_t>::output(const uint64_t &Val, void *, function in class:ScalarTraits
831 void ScalarTraits<int8_t>::output(const int8_t &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
847 void ScalarTraits<int16_t>::output(const int16_t &Val, void *, function in class:ScalarTraits
862 void ScalarTraits<int32_t>::output(const int32_t &Val, void *, function in class:ScalarTraits
877 void ScalarTraits<int64_t>::output(const int64_t &Val, void *, function in class:ScalarTraits
890 void ScalarTraits<double>::output(const double &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
903 void ScalarTraits<float>::output(const float &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
916 void ScalarTraits<Hex8>::output(const Hex8 &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
931 void ScalarTraits<Hex16>::output(const Hex16 &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
946 void ScalarTraits<Hex32>::output(const Hex32 &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
961 void ScalarTraits<Hex64>::output(const Hex64 &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
    [all...]
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
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-trace/catapult/third_party/gsutil/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/chromium-trace/catapult/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/skia/src/gpu/
GrDrawTarget.h 195 static void Output(GrDrawTarget* dt, int /* index */) {
257 // 'this' drawTarget relies on the output of the drawTargets in 'fDependencies'
  /external/v8/tools/unittests/
run_perf_test.py 82 Output = namedtuple("Output", "stdout, stderr, timed_out")
119 # Fake output for each test run.
120 test_outputs = [Output(stdout=arg,
  /frameworks/av/include/media/stagefright/
MediaCodecSource.h 131 struct Output {
132 Output();
138 Mutexed<Output> mOutput;
  /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/llvm/lib/Transforms/Utils/
CodeExtractor.cpp 168 // instruction is used outside the region, it's an output.
320 // Add the types of the output values to the function's argument list.
382 // 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");
596 // If the output value is used by a phi in the target block,
620 // 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/opencv3/3rdparty/jinja2/
nodes.py 263 class Output(Stmt):
  /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/vulkan-validation-layers/tests/gtest-1.7.0/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...]
  /frameworks/av/media/libstagefright/
MediaCodecSource.cpp 318 MediaCodecSource::Output::Output()
373 Mutexed<Output>::Locked output(mOutput);
376 while (output->mBufferQueue.size() == 0 && !output->mEncoderReachedEOS) {
377 output.waitForCondition(output->mCond);
379 if (!output->mEncoderReachedEOS) {
380 *buffer = *output->mBufferQueue.begin()
    [all...]
  /system/tpm/trunks/generator/
generator.py 312 same as Output() because forward declarations do not apply for typedefs.
315 out_file: The output file.
320 self.Output(out_file, defined_types, typemap)
322 def Output(self, out_file, defined_types, typemap):
328 out_file: The output file.
346 out_file: The output file.
386 def Output(self, out_file, defined_types, typemap):
392 out_file: The output file.
672 out_file: The output file.
684 def Output(self, out_file, defined_types, typemap)
    [all...]
  /external/clang/lib/Driver/
Driver.cpp 557 // Suppress driver output and emit preprocessor output to temp file.
568 // Suppress tool output.
637 // Generate preprocessed output.
668 // the crash into a directory next to the output.
    [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
66 --- output more detailed information.
92 --- output each record on a single line, replacing line feeds
94 count records with \verb|wc| or to \verb|grep| the output. The trivial
95 script \verb|rtpr| converts the output back into readable form.
212 prints the error message, as it is output with \verb|perror(3)|,
217 In this case \verb|ip| prints the error message, as it is output
384 \paragraph{Output format:
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/util/ajax/
JSON.java 373 public void toJSON(Output out)
    [all...]

Completed in 1235 milliseconds

12 3 4 5 6