Searched refs:Output (Results 1 - 25 of 208) sorted by relevance

123456789

/external/llvm/test/
H A DMakefile.tests31 .PRECIOUS: Output/%.bc Output/%.ll
32 .PRECIOUS: Output/%.tbc Output/%.tll
33 .PRECIOUS: Output/.dir
34 .PRECIOUS: Output/%.llvm.bc
35 .PRECIOUS: Output/%.llvm
48 $(RM) -rf Output/
50 # LLVM Assemble from Output/X.ll to Output/
[all...]
/external/llvm/include/llvm/Support/
H A DOutputBuffer.h1 //=== OutputBuffer.h - Output Buffer ----------------------------*- C++ -*-===//
24 /// Output buffer.
25 std::vector<unsigned char> &Output; member in class:llvm::OutputBuffer
33 : Output(Out), is64Bit(is64bit), isLittleEndian(le) {}
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);
57 Output.push_back(X & 255);
58 Output
[all...]
/external/chromium_org/third_party/lcov/contrib/galaxy/
H A Dconglomerate_functions.pl43 my @Output = Box ('normal', 'Helvetica-Bold', 32, $CFile, $LastLine);
44 splice(@Output, $#Output, 0, "grestore\n");
45 #print @Output;
49 print @Output;
73 my @Output = ();
76 push (@Output, "% start of box\n");
78 push (@Output, "D5\n") if ($Type eq "dashed");
88 push (@Output, (
94 push (@Output, "
[all...]
/external/clang/include/clang/Basic/
H A DMacroBuilder.h27 MacroBuilder(raw_ostream &Output) : Out(Output) {} argument
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DAnnotatedOutput.java24 extends Output {
H A DOutput.java24 public interface Output extends ByteOutput { interface in inherits:ByteOutput
/external/llvm/unittests/Support/
H A DSourceMgrTest.cpp23 std::string Output; member in class:__anon26548::SourceMgrTest
42 raw_string_ostream OS(Output);
56 Output);
66 Output);
76 Output);
86 Output);
96 Output);
106 Output);
116 Output);
126 Output);
[all...]
/external/chromium_org/sandbox/win/tools/finder/
H A Dfinder_fs.cc18 Output(FS_ERR, error, directory);
42 Output(FS_ERR, err_code, directory);
67 Output(FS, L"R/W", name.GetBuffer());
71 Output(FS_ERR, GetLastError(), name);
87 Output(FS, L"W", name);
91 Output(FS_ERR, ::GetLastError(), name);
107 Output(FS, L"R", name);
111 Output(FS_ERR, GetLastError(), name);
H A Dfinder_registry.cc29 Output(REG_ERR, err_code, name_complete);
38 Output(REG_ERR, err_code, print_name);
57 Output(REG, L"R/W", print_name);
61 Output(REG_ERR, err_code, print_name);
70 Output(REG, L"W", print_name);
74 Output(REG_ERR, err_code, print_name);
83 Output(REG, L"R", print_name);
87 Output(REG_ERR, err_code, print_name);
/external/llvm/lib/Support/
H A DYAMLTraits.cpp382 // Output
385 Output::Output(raw_ostream &yout, void *context) function in class:Output
396 Output::~Output() {
399 bool Output::outputting() {
403 void Output::beginMapping() {
408 bool Output::mapTag(StringRef Tag, bool Use) {
416 void Output::endMapping() {
420 bool Output
[all...]
/external/chromium_org/sdch/open-vcdiff/src/
H A Djsonwriter_test.cc53 coder_.Output(&output_string_);
62 coder_.Output(&output_string_);
71 coder_.Output(&output_string_);
80 coder_.Output(&output_string_);
89 coder_.Output(&output_string_);
100 coder_.Output(&output_string_);
109 coder_.Output(&output_string_);
114 coder_.Output(&output_string_);
123 coder_.Output(&output_string_);
132 coder_.Output(
[all...]
H A Dcodetablewriter_interface.h34 // {{Add|Copy|Run}* Output}*
36 // Output() will produce an encoding using the given series of Add, Copy,
71 virtual void Output(OutputStringInterface* out) = 0;
/external/llvm/lib/Option/
H A DArg.cpp80 void Arg::renderAsInput(const ArgList &Args, ArgStringList &Output) const {
82 render(Args, Output);
87 Output.push_back(getValue(i));
90 void Arg::render(const ArgList &Args, ArgStringList &Output) const {
94 Output.push_back(getValue(i));
105 Output.push_back(Args.MakeArgString(OS.str()));
110 Output.push_back(Args.GetOrMakeJoinedArgString(
113 Output.push_back(getValue(i));
117 Output.push_back(Args.MakeArgString(getSpelling()));
119 Output
[all...]
/external/chromium_org/ppapi/utility/
H A Dcompletion_callback_factory.h290 template <typename Output>
292 typename internal::TypeUnwrapper<Output>::StorageType>
293 NewCallbackWithOutput(void (T::*method)(int32_t, Output)) {
295 typename internal::TypeUnwrapper<Output>::StorageType,
296 void (T::*)(int32_t, Output)>(method));
351 template <typename Output, typename A>
353 typename internal::TypeUnwrapper<Output>::StorageType>
354 NewCallbackWithOutput(void (T::*method)(int32_t, Output, A),
357 typename internal::TypeUnwrapper<Output>::StorageType,
358 void (T::*)(int32_t, Output,
[all...]
/external/chromium_org/v8/tools/testrunner/objects/
H A Doutput.py33 class Output(object): class in inherits:object
60 return Output(packed[0], packed[1], packed[2], packed[3])
/external/libvpx/
H A Dconfig.arm64.mk0 # Output variables:
H A Dconfig.mips64.mk0 # Output variables:
H A Dconfig.x86_64.mk0 # Output variables:
H A Dconfig.arm.mk0 # Output variables:
/external/clang/include/clang/AST/
H A DASTDiagnostic.h42 SmallVectorImpl<char> &Output,
/external/llvm/unittests/MC/
H A DYAMLTest.cpp35 yaml::Output YOut(OS);
/external/chromium_org/media/filters/
H A Ddecoder_stream.h38 typedef typename StreamTraits::OutputType Output; typedef in class:media::DecoderStream
51 typedef base::Callback<void(Status, const scoped_refptr<Output>&)> ReadCB;
67 // Reads a decoded Output and returns it via the |read_cb|. Note that
81 // an Output.
132 const scoped_refptr<Output>& output);
144 // Output callback passed to Decoder::Initialize().
145 void OnDecodeOutputReady(const scoped_refptr<Output>& output);
197 std::list<scoped_refptr<Output> > ready_outputs_;
/external/oprofile/libutil++/tests/
H A Dfile_manip_tests.cpp22 template <typename Input, typename Output>
25 Output output;
29 template <typename Input, typename Output, typename Result>
31 Output const & output, Result const & result)
42 template <typename Input, typename Output, typename Result>
44 Input input2, Output const & output, Result const & result)
/external/clang/lib/Driver/
H A DTools.h54 const InputInfo &Output,
98 const InputInfo &Output, const InputInfoList &Inputs,
114 const InputInfo &Output, const InputInfoList &Inputs,
127 const InputInfo &Output,
189 const InputInfo &Output, const InputInfoList &Inputs,
205 const InputInfo &Output, const InputInfoList &Inputs,
251 const InputInfo &Output, const InputInfoList &Inputs,
269 const InputInfo &Output, const InputInfoList &Inputs,
281 const InputInfo &Output, const InputInfoList &Inputs,
295 const InputInfo &Output,
[all...]
/external/guava/guava-tests/test/com/google/common/io/
H A DCheckCloseSupplier.java53 abstract static class Output<T> extends CheckCloseSupplier<T> class in class:CheckCloseSupplier
57 public Output(OutputSupplier<? extends T> delegate) { method in class:CheckCloseSupplier.Output

Completed in 625 milliseconds

123456789