HomeSort by relevance Sort by last modified time
    Searched refs:OutputType (Results 1 - 25 of 39) sorted by null

1 2

  /external/chromium/sdch/open-vcdiff/src/google/
vcencoder.h 189 template<class OutputType>
190 bool StartEncoding(OutputType* output) {
191 OutputString<OutputType> output_string(output);
204 template<class OutputType>
205 bool EncodeChunk(const char* data, size_t len, OutputType* output) {
206 OutputString<OutputType> output_string(output);
219 template<class OutputType>
220 bool FinishEncoding(OutputType* output) {
221 OutputString<OutputType> output_string(output);
272 template<class OutputType>
    [all...]
vcdecoder.h 81 template<class OutputType>
82 bool DecodeChunk(const char* data, size_t len, OutputType* output) {
83 OutputString<OutputType> output_string(output);
156 template<class OutputType>
160 OutputType* target) {
161 OutputString<OutputType> output_string(target);
  /external/chromium_org/sdch/open-vcdiff/src/google/
vcencoder.h 159 template<class OutputType>
160 bool StartEncoding(OutputType* output) {
161 OutputString<OutputType> output_string(output);
174 template<class OutputType>
175 bool EncodeChunk(const char* data, size_t len, OutputType* output) {
176 OutputString<OutputType> output_string(output);
189 template<class OutputType>
190 bool FinishEncoding(OutputType* output) {
191 OutputString<OutputType> output_string(output);
236 template<class OutputType>
    [all...]
vcdecoder.h 81 template<class OutputType>
82 bool DecodeChunk(const char* data, size_t len, OutputType* output) {
83 OutputString<OutputType> output_string(output);
156 template<class OutputType>
160 OutputType* target) {
161 OutputString<OutputType> output_string(target);
  /external/open-vcdiff/src/google/
vcencoder.h 159 template<class OutputType>
160 bool StartEncoding(OutputType* output) {
161 OutputString<OutputType> output_string(output);
174 template<class OutputType>
175 bool EncodeChunk(const char* data, size_t len, OutputType* output) {
176 OutputString<OutputType> output_string(output);
189 template<class OutputType>
190 bool FinishEncoding(OutputType* output) {
191 OutputString<OutputType> output_string(output);
236 template<class OutputType>
    [all...]
vcdecoder.h 81 template<class OutputType>
82 bool DecodeChunk(const char* data, size_t len, OutputType* output) {
83 OutputString<OutputType> output_string(output);
156 template<class OutputType>
160 OutputType* target) {
161 OutputString<OutputType> output_string(target);
  /external/clang/lib/Driver/
Action.cpp 66 PreprocessJobAction::PreprocessJobAction(Action *Input, types::ID OutputType)
67 : JobAction(PreprocessJobClass, Input, OutputType) {
72 PrecompileJobAction::PrecompileJobAction(Action *Input, types::ID OutputType)
73 : JobAction(PrecompileJobClass, Input, OutputType) {
78 AnalyzeJobAction::AnalyzeJobAction(Action *Input, types::ID OutputType)
79 : JobAction(AnalyzeJobClass, Input, OutputType) {
84 MigrateJobAction::MigrateJobAction(Action *Input, types::ID OutputType)
85 : JobAction(MigrateJobClass, Input, OutputType) {
90 CompileJobAction::CompileJobAction(Action *Input, types::ID OutputType)
91 : JobAction(CompileJobClass, Input, OutputType) {
    [all...]
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/
vertexconversion.h 19 // typedef ... OutputType: the type produced by this conversion
26 typedef T OutputType;
39 typedef ToT OutputType;
52 typedef T OutputType;
65 typedef float OutputType;
91 typedef float OutputType;
151 typedef typename Converter::OutputType OutputType;
155 static const std::size_t finalSize = WidenRule::finalWidth * sizeof(OutputType);
157 static void convertArray(const InputType *in, std::size_t stride, std::size_t n, OutputType *out
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
cStringIO.h 60 PyTypeObject *InputType, *OutputType;
68 (Py_TYPE(O)==PycStringIO->OutputType)
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
cStringIO.h 60 PyTypeObject *InputType, *OutputType;
68 (Py_TYPE(O)==PycStringIO->OutputType)
  /frameworks/compile/slang/
slang_rs.h 86 Slang::OutputType OT);
112 // @OutputType - See Slang::OutputType.
139 Slang::OutputType OutputType, BitCodeStorageType BitcodeStorage,
slang_backend.h 57 Slang::OutputType mOT;
109 Slang::OutputType OT);
slang.h 70 enum OutputType {
135 OutputType mOT;
165 OutputType OT);
196 void setOutputType(OutputType OT) { mOT = OT; }
slang_rs.cpp 234 Slang::OutputType OT) {
279 Slang::OutputType OutputType, BitCodeStorageType BitcodeStorage,
301 setOutputType(OutputType);
322 bool SuppressAllWarnings = (OutputType != Slang::OT_Dependency);
347 if (OutputType != Slang::OT_Dependency) {
371 if ((OutputType == Slang::OT_Bitcode) &&
slang_rs_backend.h 90 Slang::OutputType OT,
llvm-rs-cc.cpp 127 slang::Slang::OutputType mOutputType;
328 slang::Slang::OutputType OutputType,
330 if (OutputType == slang::Slang::OT_Nothing)
340 if (OutputType == slang::Slang::OT_Dependency) {
349 switch (OutputType) {
  /external/chromium_org/tools/gn/
target.h 27 enum OutputType {
56 OutputType output_type() const { return output_type_; }
57 void set_output_type(OutputType t) { output_type_ = t; }
121 OutputType output_type_;
target_generator.cc 29 bool TypeHasConfigs(Target::OutputType type) {
36 bool TypeHasConfigValues(Target::OutputType type) {
43 bool TypeHasSources(Target::OutputType type) {
47 bool TypeHasData(Target::OutputType type) {
51 bool TypeHasDestDir(Target::OutputType type) {
55 bool TypeHasOutputs(Target::OutputType type) {
81 Target::OutputType output_type = GetOutputType();
166 Target::OutputType TargetGenerator::GetOutputType() const {
filesystem_utils.h 40 const char* GetExtensionForOutputType(Target::OutputType type,
target_generator.h 47 Target::OutputType GetOutputType() const;
filesystem_utils.cc 100 const char* GetExtensionForOutputType(Target::OutputType type,
  /external/clang/include/clang/Driver/
Action.h 146 PreprocessJobAction(Action *Input, types::ID OutputType);
156 PrecompileJobAction(Action *Input, types::ID OutputType);
166 AnalyzeJobAction(Action *Input, types::ID OutputType);
176 MigrateJobAction(Action *Input, types::ID OutputType);
186 CompileJobAction(Action *Input, types::ID OutputType);
196 AssembleJobAction(Action *Input, types::ID OutputType);
  /external/clang/tools/driver/
cc1as_main.cpp 105 FileType OutputType;
132 OutputType = FT_Asm;
212 unsigned OutputType = StringSwitch<unsigned>(Name)
217 if (OutputType == ~0U) {
222 Opts.OutputType = FileType(OutputType);
297 bool IsBinary = Opts.OutputType == AssemblerInvocation::FT_Obj;
337 if (Opts.OutputType == AssemblerInvocation::FT_Asm) {
353 } else if (Opts.OutputType == AssemblerInvocation::FT_Null) {
356 assert(Opts.OutputType == AssemblerInvocation::FT_Obj &
    [all...]
  /external/llvm/tools/bugpoint/
ExecutionDriver.cpp 27 // OutputType - Allow the user to specify the way code should be run, to test
30 enum OutputType {
41 cl::opt<OutputType>
60 cl::opt<OutputType>
  /external/chromium_org/ppapi/utility/
completion_callback_factory.h 726 typedef Output OutputType;
778 typedef Output OutputType;
840 typedef Output OutputType;
    [all...]

Completed in 1245 milliseconds

1 2