Home
last modified time | relevance | path

Searched refs:inType (Results 1 – 25 of 25) sorted by relevance

/external/deqp/modules/gles2/scripts/
Dgen-conversions.py178 inType = inValues[0].typeString()
180 self.name = "%s_to_%s" % (inType, outType)
182 self.inputs = [("%s in0" % inType, inValues)]
195 inType = inValue.typeString()
197 self.name = "%s_to_%s" % (inType, outType)
198 self.op = "%s in0 = %s;\n%s out0 = %s(in0);" % (inType, str(inValue), outType, outType)
199 self.inType = inType
/external/deqp/modules/glshared/
DglsShaderConstExprTests.cpp126 const DataType inType = cases[caseNdx].inType; in createTests() local
141 …string typeName = glu::getDataTypeName((glu::DataType)(inType + compCount)); // results in … in createTests()
202 …scalarCaseName = string(cases[caseNdx].name) + "_" + typeName + "_" + glu::getDataTypeName(inType); in createTests()
204 expressionTemplateParams["MT"] = glu::getDataTypeName(inType); in createTests()
DglsShaderConstExprTests.hpp55 DataType inType; member
DglsVertexArrayTests.hpp154 …virtual void bind (int attribNdx, int offset, int size, InputType inType, OutputType outType, …
176 …virtual void bind (int attribNdx, int offset, int size, InputType inType, OutputType outType…
DglsDrawTest.cpp898 …void setupArray (bool bound, int offset, int size, DrawTestSpec::InputType inType, DrawTest…
/external/deqp/modules/gles3/scripts/
Dgen-conversions.py191 inType = inValues[0].typeString()
193 self.name = "%s_to_%s" % (inType, outType)
195 self.inputs = [("%s in0" % inType, inValues)]
208 inType = inValue.typeString()
210 self.name = "%s_to_%s" % (inType, outType)
211 self.op = "%s in0 = %s;\n%s out0 = %s(in0);" % (inType, str(inValue), outType, outType)
212 self.inType = inType
/external/icu/icu4c/source/test/intltest/
Ddcfmtest.h56 EFormatInputType inType,
Ddcfmtest.cpp384 EFormatInputType inType, // input number type in execFormatTest() argument
426 switch (inType) { in execFormatTest()
/external/mdnsresponder/mDNSShared/
DDebugServices.h1292 DEBUG_EXPORT OSStatus DebugInitialize( DebugOutputType inType, ... );
1545 const char * inType,
DDebugServices.c240 DEBUG_EXPORT OSStatus DebugInitialize( DebugOutputType inType, ... ) in DebugInitialize() argument
246 va_start( args, inType ); in DebugInitialize()
273 type = inType; in DebugInitialize()
322 if( inType == kDebugOutputTypeMetaConsole ) in DebugInitialize()
821 __private_extern__ void iDebugSetOutputTypeInternal( uint32_t inType ); in DebugiDebugInit()
2028 const char * inType, in DebugHexDump() argument
2049 DEBUG_UNUSED( inType ); in DebugHexDump()
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
DICUTaglet.java70 public boolean inType() { in inType() method in ICUTaglet
/external/chromium-trace/catapult/third_party/polymer/components/webcomponentsjs/
DCustomElements.js618 window.CustomEvent = function(inType, params) { argument
621 e.initCustomEvent(inType, Boolean(params.bubbles), Boolean(params.cancelable), params.detail);
DHTMLImports.js746 window.CustomEvent = function(inType, params) { argument
749 e.initCustomEvent(inType, Boolean(params.bubbles), Boolean(params.cancelable), params.detail);
Dwebcomponents-lite.js1088 window.CustomEvent = function(inType, params) { argument
1091 e.initCustomEvent(inType, Boolean(params.bubbles), Boolean(params.cancelable), params.detail);
1679 window.CustomEvent = function(inType, params) {
1682 e.initCustomEvent(inType, Boolean(params.bubbles), Boolean(params.cancelable), params.detail);
Dwebcomponents.js5422 window.CustomEvent = function(inType, params) { argument
5425 e.initCustomEvent(inType, Boolean(params.bubbles), Boolean(params.cancelable), params.detail);
6013 window.CustomEvent = function(inType, params) {
6016 e.initCustomEvent(inType, Boolean(params.bubbles), Boolean(params.cancelable), params.detail);
/external/chromium-trace/catapult/tracing/third_party/components/webcomponentsjs/
DCustomElements.js618 window.CustomEvent = function(inType, params) { argument
621 e.initCustomEvent(inType, Boolean(params.bubbles), Boolean(params.cancelable), params.detail);
DHTMLImports.js746 window.CustomEvent = function(inType, params) { argument
749 e.initCustomEvent(inType, Boolean(params.bubbles), Boolean(params.cancelable), params.detail);
Dwebcomponents-lite.js1088 window.CustomEvent = function(inType, params) { argument
1091 e.initCustomEvent(inType, Boolean(params.bubbles), Boolean(params.cancelable), params.detail);
1679 window.CustomEvent = function(inType, params) {
1682 e.initCustomEvent(inType, Boolean(params.bubbles), Boolean(params.cancelable), params.detail);
Dwebcomponents.js5422 window.CustomEvent = function(inType, params) { argument
5425 e.initCustomEvent(inType, Boolean(params.bubbles), Boolean(params.cancelable), params.detail);
6013 window.CustomEvent = function(inType, params) {
6016 e.initCustomEvent(inType, Boolean(params.bubbles), Boolean(params.cancelable), params.detail);
/external/chromium-trace/catapult/third_party/polymer/components/polymer/
Dpolymer.js359 makeBaseEvent: function(inType, inDict) { argument
361 e.initEvent(inType, inDict.bubbles || false, inDict.cancelable || false);
365 makeGestureEvent: function(inType, inDict) { argument
368 var e = this.makeBaseEvent(inType, inDict);
377 makePointerEvent: function(inType, inDict) { argument
380 var e = this.makeBaseEvent(inType, inDict);
747 makeEvent: function(inType, inEvent) { argument
748 var e = eventFactory.makePointerEvent(inType, inEvent);
755 fireEvent: function(inType, inEvent) { argument
756 var e = this.makeEvent(inType, inEvent);
[all …]
/external/chromium-trace/catapult/tracing/third_party/components/polymer/
Dpolymer.js359 makeBaseEvent: function(inType, inDict) { argument
361 e.initEvent(inType, inDict.bubbles || false, inDict.cancelable || false);
365 makeGestureEvent: function(inType, inDict) { argument
368 var e = this.makeBaseEvent(inType, inDict);
377 makePointerEvent: function(inType, inDict) { argument
380 var e = this.makeBaseEvent(inType, inDict);
747 makeEvent: function(inType, inEvent) { argument
748 var e = eventFactory.makePointerEvent(inType, inEvent);
755 fireEvent: function(inType, inEvent) { argument
756 var e = this.makeEvent(inType, inEvent);
[all …]
/external/deqp/modules/gles2/functional/
Des2fShaderOperatorTests.cpp474 DataType inType = spec.inputs[i].type; in ShaderOperatorCase() local
475 int inSize = getDataTypeScalarSize(inType); in ShaderOperatorCase()
476 bool isInt = de::inRange<int>(inType, TYPE_INT, TYPE_INT_VEC4); in ShaderOperatorCase()
477 bool isBool = de::inRange<int>(inType, TYPE_BOOL, TYPE_BOOL_VEC4); in ShaderOperatorCase()
478 const char* typeName = getDataTypeName(inType); in ShaderOperatorCase()
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
DvktShaderRenderOperatorTests.cpp736 const DataType inType = m_spec.inputs[inputNdx].type; in setupShaderData() local
737 const int inSize = getDataTypeScalarSize(inType); in setupShaderData()
738 const bool isInt = de::inRange<int>(inType, TYPE_INT, TYPE_INT_VEC4); in setupShaderData()
739 const bool isUint = de::inRange<int>(inType, TYPE_UINT, TYPE_UINT_VEC4); in setupShaderData()
740 const bool isBool = de::inRange<int>(inType, TYPE_BOOL, TYPE_BOOL_VEC4); in setupShaderData()
741 const char* typeName = getDataTypeName(inType); in setupShaderData()
/external/deqp/modules/gles3/functional/
Des3fShaderOperatorTests.cpp752 DataType inType = m_spec.inputs[i].type; in setupShaderData() local
753 int inSize = getDataTypeScalarSize(inType); in setupShaderData()
754 bool isInt = de::inRange<int>(inType, TYPE_INT, TYPE_INT_VEC4); in setupShaderData()
755 bool isUint = de::inRange<int>(inType, TYPE_UINT, TYPE_UINT_VEC4); in setupShaderData()
756 bool isBool = de::inRange<int>(inType, TYPE_BOOL, TYPE_BOOL_VEC4); in setupShaderData()
757 const char* typeName = getDataTypeName(inType); in setupShaderData()
/external/deqp/framework/randomshaders/
DrsgExpression.cpp714 …VariableType::Type inType = state.getRandom().choose<VariableType::Type>(&inTypes[0], &inTypes[0] … in ConstructorOp() local
717 ValueRange inValueRange(VariableType(inType, 1)); in ConstructorOp()