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

  /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/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/
vertexconversion.h 24 // typedef ... OutputType: the type produced by this conversion
31 typedef T OutputType;
44 typedef ToT OutputType;
57 typedef T OutputType;
70 typedef float OutputType;
96 typedef float OutputType;
156 typedef typename Converter::OutputType OutputType;
160 static const std::size_t finalSize = WidenRule::finalWidth * sizeof(OutputType);
162 static void convertArray(const InputType *in, std::size_t stride, std::size_t n, OutputType *out
    [all...]
  /external/clang/lib/Driver/
Action.cpp 57 PreprocessJobAction::PreprocessJobAction(Action *Input, types::ID OutputType)
58 : JobAction(PreprocessJobClass, Input, OutputType) {
61 PrecompileJobAction::PrecompileJobAction(Action *Input, types::ID OutputType)
62 : JobAction(PrecompileJobClass, Input, OutputType) {
65 AnalyzeJobAction::AnalyzeJobAction(Action *Input, types::ID OutputType)
66 : JobAction(AnalyzeJobClass, Input, OutputType) {
69 CompileJobAction::CompileJobAction(Action *Input, types::ID OutputType)
70 : JobAction(CompileJobClass, Input, OutputType) {
73 AssembleJobAction::AssembleJobAction(Action *Input, types::ID OutputType)
74 : JobAction(AssembleJobClass, Input, OutputType) {
    [all...]
  /external/webkit/Source/WebCore/html/
ImageResizerThread.h 45 static bool start(PassRefPtr<SharedBuffer> imageData, AsyncImageResizer::CallbackInfo*, AsyncImageResizer::OutputType, IntSize desiredBounds, float quality, AsyncImageResizer::AspectRatioOption, AsyncImageResizer::OrientationOption);
49 ImageResizerThread(AsyncImageResizer::CallbackInfo*, AsyncImageResizer::OutputType, IntSize desiredBounds, float quality, AsyncImageResizer::AspectRatioOption, AsyncImageResizer::OrientationOption);
59 AsyncImageResizer::OutputType m_outputType;
AsyncImageResizer.h 65 enum OutputType {
80 static PassRefPtr<AsyncImageResizer> create(CachedImage*, OutputType, IntSize desiredBounds, ScriptValue successCallback, ScriptValue errorCallback, float quality, AspectRatioOption, OrientationOption);
89 AsyncImageResizer(CachedImage*, OutputType, IntSize desiredBounds, ScriptValue successCallback, ScriptValue errorCallback, float quality, AspectRatioOption, OrientationOption);
97 OutputType m_outputType;
AsyncImageResizer.cpp 43 PassRefPtr<AsyncImageResizer> AsyncImageResizer::create(CachedImage* cachedImage, OutputType outputType, IntSize desiredBounds, ScriptValue successCallback, ScriptValue errorCallback, float quality, AspectRatioOption aspectRatioOption, OrientationOption orientationOption)
45 return adoptRef(new AsyncImageResizer(cachedImage, outputType, desiredBounds, successCallback, errorCallback, quality, aspectRatioOption, orientationOption));
48 AsyncImageResizer::AsyncImageResizer(CachedImage* cachedImage, OutputType outputType, IntSize desiredBounds, ScriptValue successCallback, ScriptValue errorCallback, float quality, AspectRatioOption aspectRatioOption, OrientationOption orientationOption)
52 , m_outputType(outputType)
ImageResizerThread.cpp 53 bool ImageResizerThread::start(PassRefPtr<SharedBuffer> imageData, AsyncImageResizer::CallbackInfo* callbackInfo, AsyncImageResizer::OutputType outputType, IntSize desiredBounds, float quality, AsyncImageResizer::AspectRatioOption aspectRatioOption, AsyncImageResizer::OrientationOption orientationOption)
55 ImageResizerThread* imageResizerThread = new ImageResizerThread(callbackInfo, outputType, desiredBounds, quality, aspectRatioOption, orientationOption);
65 ImageResizerThread::ImageResizerThread(AsyncImageResizer::CallbackInfo* callbackInfo, AsyncImageResizer::OutputType outputType, IntSize desiredBounds, float quality, AsyncImageResizer::AspectRatioOption aspectRatioOption, AsyncImageResizer::OrientationOption orientationOption)
68 , m_outputType(outputType)
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
AdditionalTextOutput.java 35 private enum OutputType {
41 StringBuilder[] mOutputs = new StringBuilder[OutputType.values().length];
43 private StringBuilder getStringBuilderForType(OutputType outputType) {
44 int index = outputType.ordinal();
52 StringBuilder output = getStringBuilderForType(OutputType.EXCEEDED_DB_QUOTA_MESSAGE);
77 StringBuilder output = getStringBuilderForType(OutputType.CONSOLE_MESSAGE);
84 StringBuilder output = getStringBuilderForType(OutputType.JS_DIALOG);
92 StringBuilder output = getStringBuilderForType(OutputType.JS_DIALOG);
100 StringBuilder output = getStringBuilderForType(OutputType.JS_DIALOG)
    [all...]
  /frameworks/compile/slang/
slang_rs.h 87 Slang::OutputType OT);
113 // @OutputType - See Slang::OutputType.
131 Slang::OutputType OutputType, BitCodeStorageType BitcodeStorage,
slang_backend.h 58 Slang::OutputType mOT;
109 Slang::OutputType OT);
slang.h 65 enum OutputType {
136 OutputType mOT;
166 OutputType OT);
193 void setOutputType(OutputType OT) { mOT = OT; }
slang_rs.cpp 219 Slang::OutputType OT) {
262 Slang::OutputType OutputType, BitCodeStorageType BitcodeStorage,
282 setOutputType(OutputType);
299 bool SuppressAllWarnings = (OutputType != Slang::OT_Dependency);
316 if (OutputType != Slang::OT_Dependency) {
332 if ((OutputType == Slang::OT_Bitcode) &&
slang_rs_backend.h 79 Slang::OutputType OT,
llvm-rs-cc.cpp 112 slang::Slang::OutputType mOutputType;
278 slang::Slang::OutputType OutputType,
280 if (OutputType == slang::Slang::OT_Nothing)
290 if (OutputType == slang::Slang::OT_Dependency) {
299 switch (OutputType) {
slang.cpp 258 llvm::raw_ostream *OS, OutputType OT) {
slang_backend.cpp 205 Slang::OutputType OT)
slang_rs_backend.cpp 51 Slang::OutputType OT,
  /external/clang/tools/driver/
cc1as_main.cpp 88 FileType OutputType;
115 OutputType = FT_Asm;
180 unsigned OutputType = StringSwitch<unsigned>(Name)
185 if (OutputType == ~0U)
189 Opts.OutputType = FileType(OutputType);
262 bool IsBinary = Opts.OutputType == AssemblerInvocation::FT_Obj;
284 if (Opts.OutputType == AssemblerInvocation::FT_Asm) {
299 } else if (Opts.OutputType == AssemblerInvocation::FT_Null) {
302 assert(Opts.OutputType == AssemblerInvocation::FT_Obj &
    [all...]
  /external/clang/include/clang/Driver/
Action.h 140 PreprocessJobAction(Action *Input, types::ID OutputType);
150 PrecompileJobAction(Action *Input, types::ID OutputType);
160 AnalyzeJobAction(Action *Input, types::ID OutputType);
170 CompileJobAction(Action *Input, types::ID OutputType);
180 AssembleJobAction(Action *Input, types::ID OutputType);
  /external/llvm/tools/bugpoint/
ExecutionDriver.cpp 27 // OutputType - Allow the user to specify the way code should be run, to test
30 enum OutputType {
42 cl::opt<OutputType>
63 cl::opt<OutputType>
  /external/clang/lib/CodeGen/
CGStmt.cpp     [all...]
  /external/mesa3d/src/mesa/main/
mtypes.h     [all...]

Completed in 276 milliseconds