HomeSort by relevance Sort by last modified time
    Searched defs:m_type (Results 126 - 150 of 196) sorted by null

1 2 3 4 56 7 8

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FilterOperation.h 89 OperationType type() const { return m_type; }
90 virtual bool isSameType(const FilterOperation& o) const { return o.type() == m_type; }
99 : m_type(type)
103 OperationType m_type; member in class:blink::FilterOperation
206 virtual bool affectsOpacity() const OVERRIDE { return m_type == OPACITY; }
  /external/deqp/framework/common/
tcuThreadUtil.hpp 74 const char* getType (void) const { return m_type; }
81 const char* m_type; member in class:tcu::ThreadUtil::Object
tcuTestLog.hpp 313 : m_type (type)
323 qpShaderType m_type; member in class:tcu::LogShader
498 log.writeShader(m_type, m_source.c_str(), m_compileOk, m_infoLog.c_str());
  /external/deqp/framework/randomshaders/
rsgExpression.hpp 276 Type m_type; member in class:rsg::TexLookup
rsgVariableType.hpp 67 : m_type(DE_NULL)
73 : m_type(new VariableType(type))
80 delete m_type;
84 : m_type(DE_NULL)
87 if (other.m_type)
88 m_type = new VariableType(*other.m_type);
96 delete m_type;
98 m_type = DE_NULL;
101 if (other.m_type)
127 VariableType* m_type; member in class:rsg::VariableType::Member
    [all...]
rsgVariableValue.hpp 77 StridedValueRead (const VariableType& type, const Scalar* value) : m_type(type), m_value(value) {}
79 const VariableType& getType (void) const { return m_type; }
83 const VariableType& m_type; member in class:rsg::StridedValueRead
91 ConstStridedValueAccess (void) : m_type(DE_NULL), m_value(DE_NULL) {}
92 ConstStridedValueAccess (const VariableType& type, const Scalar* valuePtr) : m_type(&type), m_value(const_cast<Scalar*>(valuePtr)) {}
94 const VariableType& getType (void) const { return *m_type; }
118 const VariableType* m_type; member in class:rsg::ConstStridedValueAccess
200 ConstValueRangeAccess (void) : m_type(DE_NULL), m_min(DE_NULL), m_max(DE_NULL) {}
201 ConstValueRangeAccess (const VariableType& type, const Scalar* minVal, const Scalar* maxVal) : m_type(&type), m_min(const_cast<Scalar*>(minVal)), m_max(const_cast<Scalar*>(maxVal)) {}
203 const VariableType& getType (void) const { return *m_type; }
218 const VariableType* m_type; member in class:rsg::ConstValueRangeAccess
304 VariableType m_type; member in class:rsg::ValueRange
    [all...]
  /external/deqp/modules/gles3/functional/
es3fReadPixelsTests.cpp 74 GLint m_type; member in class:deqp::gles3::Functional::__anon3747::ReadPixelsTest
92 , m_type (type)
199 GLU_CHECK_CALL(glGetIntegerv(GL_IMPLEMENTATION_COLOR_READ_TYPE, &m_type));
202 format = glu::mapGLTransferFormat(m_format, m_type);
204 switch (m_type)
243 if (m_type == GL_UNSIGNED_INT)
249 else if (m_type == GL_INT)
294 if (m_type == GL_INT)
311 else if (m_type == GL_UNSIGNED_INT)
341 GLU_CHECK_CALL(glReadPixels(0, 0, m_width, m_height, m_format, m_type, &(pixelData[0])))
    [all...]
  /external/deqp/modules/gles3/stress/
es3sVertexArrayTests.cpp 158 Array::InputType m_type; member in class:deqp::gles3::Stress::__anon3960::SingleVertexArrayStrideGroup
163 , m_type (type)
185 const bool packed = m_type == Array::INPUTTYPE_UNSIGNED_INT_2_10_10_10 || m_type == Array::INPUTTYPE_INT_2_10_10_10;
186 const int stride = (strides[strideNdx] < 0) ? ((packed) ? (16) : (Array::inputTypeSize(m_type) * componentCount)) : (strides[strideNdx]);
187 const int alignment = (packed) ? (Array::inputTypeSize(m_type) * componentCount) : (Array::inputTypeSize(m_type));
192 if((m_type == Array::INPUTTYPE_UNSIGNED_INT_2_10_10_10 || m_type == Array::INPUTTYPE_INT_2_10_10_10) && componentCount != 4)
195 MultiVertexArrayTest::Spec::ArraySpec arraySpec(m_type,
263 Array::InputType m_type; member in class:deqp::gles3::Stress::__anon3960::SingleVertexArrayFirstGroup
367 Array::InputType m_type; member in class:deqp::gles3::Stress::__anon3960::SingleVertexArrayOffsetGroup
    [all...]
  /external/deqp/modules/gles31/functional/
es31fProgramInterfaceQueryTests.cpp 196 Node (NodeType type, const SharedPtr& enclosingNode) : m_type(type), m_enclosingNode(enclosingNode) { DE_ASSERT(type < TYPE_LAST); }
200 inline NodeType getType (void) const { return m_type; }
203 const NodeType m_type;
224 , m_type (type)
230 const glu::ShaderType m_type; member in class:deqp::gles31::Functional::__anon3992::ResourceDefinition::Node
640 ProgramInterfaceDefinition::Shader* shader = program->addShader(shaderDef->m_type, shaderDef->m_version);
720 program->addShader(shaderDef->m_type, shaderDef->m_version);
    [all...]
es31fSSBOLayoutCase.hpp 72 const glu::VarType& getType (void) const { return m_type; }
77 glu::VarType m_type; member in class:deqp::gles31::bb::BufferVar
es31fShaderAtomicOpTests.cpp 81 const DataType m_type; member in class:deqp::gles31::Functional::ShaderAtomicOpCase
100 , m_type (type)
118 const char* typeName = getDataTypeName(m_type);
120 const DataType outType = isSSBO ? m_type : glu::TYPE_UINT;
151 DE_ASSERT(outType == m_type);
156 const string castBeg = outType != m_type ? (string(outTypeName) + "(") : string("");
157 const char* const castEnd = outType != m_type ? ")" : "";
422 const bool isSigned = m_type == TYPE_INT;
496 const bool isSigned = m_type == TYPE_INT;
504 const bool isSigned = m_type == TYPE_INT
    [all...]
  /external/deqp/modules/glshared/
glsAttributeLocationTests.hpp 102 const AttribType getType (void) const { return m_type; }
109 AttribType m_type; member in class:deqp::gls::AttributeLocationTestUtil::Attribute
146 const AttribType m_type; member in class:deqp::gls::BindAttributeTest
165 const AttribType m_type; member in class:deqp::gls::BindMaxAttributesTest
184 const AttribType m_type; member in class:deqp::gls::BindAliasingAttributeTest
203 const AttribType m_type; member in class:deqp::gls::BindMaxAliasingAttributeTest
221 const AttribType m_type; member in class:deqp::gls::BindInactiveAliasingAttributeTest
239 const AttribType m_type; member in class:deqp::gls::BindHoleAttributeTest
311 const AttribType m_type; member in class:deqp::gls::LocationAttributeTest
329 const AttribType m_type; member in class:deqp::gls::LocationMaxAttributesTest
347 const AttribType m_type; member in class:deqp::gls::LocationHoleAttributeTest
365 const AttribType m_type; member in class:deqp::gls::MixedAttributeTest
383 const AttribType m_type; member in class:deqp::gls::MixedMaxAttributesTest
401 const AttribType m_type; member in class:deqp::gls::MixedHoleAttributeTest
433 const AttribType m_type; member in class:deqp::gls::BindRelinkHoleAttributeTest
451 const AttribType m_type; member in class:deqp::gls::MixedRelinkHoleAttributeTest
    [all...]
  /external/libedit/src/
tty.c 57 int m_type; member in struct:ttymodes_t
1229 if (m->m_type != i) {
1232 el->el_tty.t_t[z][m->m_type].t_name);
1233 i = m->m_type;
1235 strlen(el->el_tty.t_t[z][m->m_type].t_name);
1288 (p == NULL || m->m_type == MD_CHAR))
1309 el->el_tty.t_t[z][m->m_type].t_setmask |= m->m_value;
1310 el->el_tty.t_t[z][m->m_type].t_clrmask &= ~m->m_value;
1313 el->el_tty.t_t[z][m->m_type].t_setmask &= ~m->m_value;
1314 el->el_tty.t_t[z][m->m_type].t_clrmask |= m->m_value
    [all...]
  /external/lldb/include/lldb/Core/
RegisterValue.h 50 m_type (eTypeInvalid)
56 m_type (eTypeUInt8)
63 m_type (eTypeUInt16)
70 m_type (eTypeUInt32)
77 m_type (eTypeUInt64)
85 m_type (eTypeUInt128)
92 m_type (eTypeFloat)
99 m_type (eTypeDouble)
106 m_type (eTypeLongDouble)
120 return m_type;
382 RegisterValue::Type m_type; member in class:lldb_private::RegisterValue
    [all...]
Scalar.h 44 Scalar(int v) : m_type(e_sint), m_data() { m_data.sint = v; }
45 Scalar(unsigned int v) : m_type(e_uint), m_data() { m_data.uint = v; }
46 Scalar(long v) : m_type(e_slong), m_data() { m_data.slong = v; }
47 Scalar(unsigned long v) : m_type(e_ulong), m_data() { m_data.ulong = v; }
48 Scalar(long long v) : m_type(e_slonglong), m_data() { m_data.slonglong = v; }
49 Scalar(unsigned long long v): m_type(e_ulonglong), m_data() { m_data.ulonglong = v; }
50 Scalar(float v) : m_type(e_float), m_data() { m_data.flt = v; }
51 Scalar(double v) : m_type(e_double), m_data() { m_data.dbl = v; }
52 Scalar(long double v) : m_type(e_long_double), m_data() { m_data.ldbl = v; }
86 Clear() { m_type = e_void; m_data.ulonglong = 0;
284 Scalar::Type m_type; member in class:lldb_private::Scalar
    [all...]
  /external/lldb/include/lldb/Symbol/
ObjectFile.h 546 m_type = type;
622 if (m_type == eTypeInvalid)
623 m_type = CalculateType();
624 return m_type;
674 Type m_type; member in class:lldb_private::ObjectFile
  /external/lldb/tools/lldb-perf/lib/
Results.h 45 m_type (type)
64 if (m_type == Type::Array)
71 if (m_type == Type::Dictionary)
78 if (m_type == Type::Double)
86 if (m_type == Type::String)
93 if (m_type == Type::Unsigned)
117 return m_type;
123 Type m_type; member in class:lldb_perf::Results::Result
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/iterator/
token_iterator.hpp 86 : m_type( t )
91 void set_delimeters( ti_delimeter_type t ) { m_type = t; }
98 m_type = dt_char;
103 switch( m_type ) {
125 ti_delimeter_type m_type; member in class:boost::unit_test::ut_detail::delim_policy
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
XSLTElementDef.java 247 this.m_type = type;
343 private int m_type = T_ELEMENT; field in class:XSLTElementDef
352 return m_type;
362 m_type = t;
  /external/chromium_org/third_party/WebKit/Source/core/events/
Event.h 112 const AtomicString& type() const { return m_type; }
113 void setType(const AtomicString& type) { m_type = type; }
197 AtomicString m_type; member in class:blink::Event
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLToken.h 101 m_type = Uninitialized;
114 bool isUninitialized() { return m_type == Uninitialized; }
115 Type type() const { return m_type; }
119 ASSERT(m_type == Uninitialized);
120 m_type = EndOfFile;
139 ASSERT(m_type == Character || m_type == Comment || m_type == StartTag || m_type == EndTag);
150 ASSERT(m_type == StartTag || m_type == EndTag || m_type == DOCTYPE)
439 Type m_type; member in class:blink::HTMLToken
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
NetworkResourcesData.h 107 InspectorPageAgent::ResourceType type() const { return m_type; }
108 void setType(InspectorPageAgent::ResourceType type) { m_type = type; }
143 InspectorPageAgent::ResourceType m_type; member in class:blink::NetworkResourcesData::ResourceData
  /external/chromium_org/third_party/WebKit/Source/core/svg/animation/
SVGSMILElement.h 190 Type type() const { return m_type; }
202 Type m_type; member in class:blink::SVGSMILElement::Condition
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
FetchRequestData.h 37 Referrer() : m_type(ClientReferrer) { }
38 bool isNone() const { return m_type == NoneReferrer; }
39 bool isClient() const { return m_type == ClientReferrer; }
40 bool isURL() const { return m_type == URLReferrer; }
44 m_type = NoneReferrer;
49 m_type = ClientReferrer;
54 m_type = URLReferrer;
59 Type m_type; member in class:blink::FINAL::FINAL
  /external/deqp/framework/opengl/
gluVarTypeUtil.hpp 142 bool isValid (void) const { return isValidTypePath(m_type, m_path); }
143 VarType getType (void) const { return getVarType(m_type, m_path); }
148 bool operator== (const SubTypeAccess& other) const { return m_path == other.m_path && m_type == other.m_type; }
149 bool operator!= (const SubTypeAccess& other) const { return m_path != other.m_path || m_type != other.m_type; }
152 VarType m_type; member in class:glu::SubTypeAccess
166 bool operator== (const SubTypeIterator<IsExpanded>& other) const { return m_type == other.m_type && m_path == other.m_path; }
167 bool operator!= (const SubTypeIterator<IsExpanded>& other) const { return m_type != other.m_type || m_path != other.m_path;
184 const VarType* m_type; member in class:glu::SubTypeIterator
    [all...]

Completed in 1522 milliseconds

1 2 3 4 56 7 8