Searched refs:DataType (Results 1 - 25 of 216) sorted by relevance

123456789

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DMessageQueue.h51 // Essentially, MessageQueue acts as a queue of OwnPtr<DataType>.
52 template<typename DataType>
59 bool append(PassOwnPtr<DataType>);
60 void appendAndKill(PassOwnPtr<DataType>);
61 bool appendAndCheckEmpty(PassOwnPtr<DataType>);
62 void prepend(PassOwnPtr<DataType>);
64 PassOwnPtr<DataType> waitForMessage();
65 PassOwnPtr<DataType> tryGetMessage();
66 PassOwnPtr<DataType> tryGetMessageIgnoringKilled();
67 PassOwnPtr<DataType> waitForMessageWithTimeou
[all...]
/external/deqp/framework/opengl/
H A DgluShaderUtil.hpp93 // DataType
95 enum DataType enum in namespace:glu
182 const char* getDataTypeName (DataType dataType);
183 int getDataTypeScalarSize (DataType dataType);
184 DataType getDataTypeScalarType (DataType dataType);
185 DataType getDataTypeFloatScalars (DataType dataType);
186 DataType getDataTypeVector (DataType scalarTyp
[all...]
H A DgluTextureUtil.hpp77 DataType getSampler1DType (tcu::TextureFormat format);
78 DataType getSampler2DType (tcu::TextureFormat format);
79 DataType getSamplerCubeType (tcu::TextureFormat format);
80 DataType getSampler2DArrayType (tcu::TextureFormat format);
81 DataType getSampler3DType (tcu::TextureFormat format);
82 DataType getSamplerCubeArrayType (tcu::TextureFormat format);
H A DgluShaderUtil.cpp166 // DataType
168 const char* getDataTypeName (DataType dataType)
247 int getDataTypeScalarSize (DataType dataType)
326 DataType getDataTypeScalarType (DataType dataType)
328 const DataType s_scalarTypes[] =
405 DataType getDataTypeFloatScalars (DataType dataType)
407 const DataType s_floatTypes[] =
484 DataType getDataTypeVecto
[all...]
/external/deqp/modules/glshared/
H A DglsShaderConstExprTests.hpp48 using glu::DataType;
55 DataType inType;
59 DataType outType;
/external/chromium_org/third_party/webrtc/system_wrappers/test/TestSort/
H A DTestSort.cc31 template<typename DataType>
34 DataType dataX = (DataType)*(const DataType*)dataX;
35 DataType dataY = (DataType)*(const DataType*)dataY;
48 template<typename DataType, typename KeyType>
51 KeyType keyX = ((const DataType*)dataX)->key;
52 KeyType keyY = ((const DataType*)data
[all...]
/external/webrtc/src/system_wrappers/test/TestSort/
H A DTestSort.cpp30 template<typename DataType>
33 DataType dataX = (DataType)*(const DataType*)dataX;
34 DataType dataY = (DataType)*(const DataType*)dataY;
47 template<typename DataType, typename KeyType>
50 KeyType keyX = ((const DataType*)dataX)->key;
51 KeyType keyY = ((const DataType*)data
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fFboTestUtil.hpp46 // Helper class for constructing DataType vectors.
49 std::vector<glu::DataType> vec;
50 DataTypes& operator<< (glu::DataType type) { vec.push_back(type); return *this; }
58 FlatColorShader (glu::DataType outputType);
67 const glu::DataType m_outputType;
73 GradientShader (glu::DataType outputType);
82 const glu::DataType m_outputType;
88 Texture2DShader (const DataTypes& samplerTypes, glu::DataType outputType, const tcu::Vec4& outScale = tcu::Vec4(1.0f), const tcu::Vec4& outBias = tcu::Vec4(0.0f));
112 const glu::DataType m_outputType;
118 TextureCubeShader (glu::DataType samplerTyp
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/
H A DGenericRequestBuilder.java45 * @param <DataType> The data type that the image {@link ModelLoader} will provide that can be decoded by the image
49 public class GenericRequestBuilder<ModelType, DataType, ResourceType, TranscodeType> {
52 private final ChildLoadProvider<ModelType, DataType, ResourceType, TranscodeType> loadProvider;
62 private GenericRequestBuilder<ModelType, DataType, ResourceType, TranscodeType>
74 private Encoder<DataType> preSkipSourceEncoder;
77 LoadProvider<ModelType, DataType, ResourceType, TranscodeType> loadProvider,
83 new ChildLoadProvider<ModelType, DataType, ResourceType, TranscodeType>(loadProvider) : null;
118 public GenericRequestBuilder<ModelType, DataType, ResourceType, TranscodeType> thumbnail(
119 GenericRequestBuilder<ModelType, DataType, ResourceType, TranscodeType>
150 public GenericRequestBuilder<ModelType, DataType, ResourceTyp
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPathByteStream.h29 template<typename DataType>
31 DataType value;
32 unsigned char bytes[sizeof(DataType)];
H A DSVGPathByteStreamSource.h53 template<typename DataType>
54 DataType readType()
56 ByteType<DataType> data;
57 size_t typeSize = sizeof(ByteType<DataType>);
/external/chromium_org/third_party/skia/experimental/Networking/
H A DSkSockets.h36 enum DataType { enum in class:SkSocket
58 int writePacket(void* data, size_t size, DataType type = kPipeAppend_type);
74 DataType type, void*), void* context);
97 DataType type;
/external/skia/experimental/Networking/
H A DSkSockets.h36 enum DataType { enum in class:SkSocket
58 int writePacket(void* data, size_t size, DataType type = kPipeAppend_type);
74 DataType type, void*), void* context);
97 DataType type;
/external/deqp/modules/gles31/functional/
H A Des31fFboTestUtil.hpp46 // Helper class for constructing DataType vectors.
49 std::vector<glu::DataType> vec;
50 DataTypes& operator<< (glu::DataType type) { vec.push_back(type); return *this; }
58 Texture2DShader (const DataTypes& samplerTypes, glu::DataType outputType, const tcu::Vec4& outScale = tcu::Vec4(1.0f), const tcu::Vec4& outBias = tcu::Vec4(0.0f));
82 const glu::DataType m_outputType;
88 TextureCubeArrayShader (glu::DataType samplerType, glu::DataType outputType);
106 const glu::DataType m_outputType;
124 glu::DataType getFragmentOutputType (const tcu::TextureFormat& format);
H A Des31fShaderBuiltinConstantTests.cpp123 template<typename DataType>
127 typedef DataType (*GetConstantValueFunc) (const glw::Functions& gl);
136 bool verifyInShaderType (glu::ShaderType shaderType, DataType reference);
143 template<typename DataType>
144 ShaderBuiltinConstantCase<DataType>::ShaderBuiltinConstantCase (Context& context, const char* varName, GetConstantValueFunc getValue, const char* requiredExt)
153 template<typename DataType>
154 ShaderBuiltinConstantCase<DataType>::~ShaderBuiltinConstantCase (void)
158 template<typename DataType>
159 void ShaderBuiltinConstantCase<DataType>::init (void)
167 glu::DataType dataTyp
[all...]
/external/proguard/src/proguard/ant/
H A DFilterElement.java23 import org.apache.tools.ant.types.DataType;
30 * This DataType represents a name filter in Ant.
34 public class FilterElement extends DataType
/external/llvm/include/llvm/Support/
H A DCommandLine.h363 template<class DataType> struct OptionValue;
367 template<class DataType, bool isClass>
370 typedef OptionValue<DataType> WrapperType;
374 const DataType &getValue() const { llvm_unreachable("no default value"); }
380 bool compare(const DataType &/*V*/) const { return false; }
388 template<class DataType>
390 DataType Value;
397 const DataType &getValue() const {
402 void setValue(const DataType &V) { Valid = true; Value = V; }
404 bool compare(const DataType
[all...]
/external/chromium_org/mojo/public/cpp/bindings/lib/
H A Dbindings_internal.h74 typedef T DataType; typedef in struct:mojo::internal::WrapperTraits
77 typedef H DataType; typedef in struct:mojo::internal::WrapperTraits
80 typedef typename S::Data_* DataType; typedef in struct:mojo::internal::WrapperTraits
/external/chromium_org/mojo/public/cpp/bindings/tests/
H A Dvalidation_test_input_parser.cc33 struct DataType;
38 const DataType& type, const std::string& value_string);
40 struct DataType { struct in class:mojo::test::__anon8786::ValidationTestInputParser
59 bool ParseUnsignedInteger(const DataType& type,
61 bool ParseSignedInteger(const DataType& type,
63 bool ParseFloat(const DataType& type, const std::string& value_string);
64 bool ParseDouble(const DataType& type, const std::string& value_string);
65 bool ParseBinarySequence(const DataType& type,
67 bool ParseDistance(const DataType& type, const std::string& value_string);
68 bool ParseAnchor(const DataType
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_build_util.h52 inline Instruction *mkOp(operation, DataType, Value *);
53 Instruction *mkOp1(operation, DataType, Value *, Value *);
54 Instruction *mkOp2(operation, DataType, Value *, Value *, Value *);
55 Instruction *mkOp3(operation, DataType, Value *, Value *, Value *, Value *);
57 LValue *mkOp1v(operation, DataType, Value *, Value *);
58 LValue *mkOp2v(operation, DataType, Value *, Value *, Value *);
59 LValue *mkOp3v(operation, DataType, Value *, Value *, Value *, Value *);
61 LValue *mkLoad(DataType, Symbol *, Value *ptr);
62 Instruction *mkStore(operation, DataType, Symbol *, Value *ptr, Value *val);
64 Instruction *mkMov(Value *, Value *, DataType
[all...]
H A Dnv50_ir_target_nv50.h49 virtual bool isOpSupported(operation, DataType) const;
50 virtual bool isAccessSupported(DataFile, DataType) const;
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_build_util.h52 inline Instruction *mkOp(operation, DataType, Value *);
53 Instruction *mkOp1(operation, DataType, Value *, Value *);
54 Instruction *mkOp2(operation, DataType, Value *, Value *, Value *);
55 Instruction *mkOp3(operation, DataType, Value *, Value *, Value *, Value *);
57 LValue *mkOp1v(operation, DataType, Value *, Value *);
58 LValue *mkOp2v(operation, DataType, Value *, Value *, Value *);
59 LValue *mkOp3v(operation, DataType, Value *, Value *, Value *, Value *);
61 LValue *mkLoad(DataType, Symbol *, Value *ptr);
62 Instruction *mkStore(operation, DataType, Symbol *, Value *ptr, Value *val);
64 Instruction *mkMov(Value *, Value *, DataType
[all...]
/external/chromium_org/ui/events/x/
H A Ddevice_data_manager_x11.h51 enum DataType { enum in class:ui::DeviceDataManagerX11
128 // about (defined in enum DataType). The data is not processed (e.g. not
136 bool GetEventData(const XEvent& xev, const DataType type, double* value);
207 const DataType type,
213 const DataType type,
225 DataType type,
249 bool HasEventData(const XIDeviceEvent* xiev, const DataType type) const;
281 // Index table to find the valuator for DataType on the specific device
285 // Index table to find the DataType for valuator on the specific device
/external/chromium_org/third_party/skia/experimental/DrawingBoard/
H A DSkNetPipeController.h21 int writeToSocket(SkSocket* sockfd, SkSocket::DataType type);
/external/skia/experimental/DrawingBoard/
H A DSkNetPipeController.h21 int writeToSocket(SkSocket* sockfd, SkSocket::DataType type);

Completed in 3706 milliseconds

123456789