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

1 2 3 4 5 6 7 8 9

  /external/deqp/framework/randomshaders/
rsgToken.cpp 32 : m_type(IDENTIFIER)
41 if (m_type == IDENTIFIER)
47 if (m_type == IDENTIFIER)
53 m_type = other.m_type;
55 if (m_type == IDENTIFIER)
61 else if (m_type == FLOAT_LITERAL)
63 else if (m_type == INT_LITERAL)
65 else if (m_type == BOOL_LITERAL)
72 : m_type(TYPE_LAST
    [all...]
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...]
rsgToken.hpp 137 inline bool operator== (Type type) const { return m_type == type; }
138 inline bool operator!= (Type type) const { return m_type != type; }
145 inline Type getType (void) const { return m_type; }
153 Type m_type; member in class:rsg::Token
165 : m_type(TYPE_LAST)
171 : m_type(type)
177 : m_type(FLOAT_LITERAL)
183 : m_type(INT_LITERAL)
189 : m_type(BOOL_LITERAL)
201 DE_ASSERT(m_type == IDENTIFIER)
    [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/strace/
mpers.sh 49 for m_type; do
50 f_h="${BITS_DIR}/${m_type}.h"
51 f_c="${BITS_DIR}/${m_type}.c"
52 f_i="${BITS_DIR}/${m_type}.i"
53 f_o="${BITS_DIR}/${m_type}.o"
54 f_d1="${BITS_DIR}/${m_type}.d1"
55 f_d2="${BITS_DIR}/${m_type}.d2"
57 /DEF_MPERS_TYPE('"${m_type}"')$/n
60 /^#[[:space:]]*include[[:space:]][[:space:]]*MPERS_DEFS$/ {s//'"${m_type} ${VAR_NAME}"';/;q}
63 grep -F -q "${m_type}.h" "${f_i}" |
    [all...]
  /external/pdfium/xfa/fxgraphics/
cxfa_gecolor.cpp 9 CXFA_GEColor::CXFA_GEColor() : m_type(Invalid) {}
11 CXFA_GEColor::CXFA_GEColor(const FX_ARGB argb) : m_type(Solid), m_argb(argb) {
16 : m_type(Pattern), m_argb(argb) {
21 : m_type(Shading), m_argb(0) {
29 m_type = that.m_type;
30 switch (m_type) {
cxfa_gecolor.h 25 Type GetType() const { return m_type; }
27 ASSERT(m_type == Solid || m_type == Pattern);
31 ASSERT(m_type == Pattern);
35 ASSERT(m_type == Shading);
42 Type m_type; member in class:CXFA_GEColor
  /external/v8/tools/clang/blink_gc_plugin/tests/legacy_naming/
virtual_and_trace_after_dispatch.h 18 A(Type type) : m_type(type) { }
20 Type m_type; member in class:blink::A
virtual_and_trace_after_dispatch.cpp 13 switch (m_type) {
  /external/v8/tools/clang/blink_gc_plugin/tests/
virtual_and_trace_after_dispatch.h 18 A(Type type) : m_type(type) { }
20 Type m_type; member in class:blink::A
virtual_and_trace_after_dispatch.cpp 13 switch (m_type) {
  /external/pdfium/xfa/fwl/
cfwl_message.h 27 Type GetType() const { return m_type; }
33 Type m_type; member in class:CFWL_Message
cfwl_event.h 42 Type GetType() const { return m_type; }
48 Type m_type; member in class:CFWL_Event
  /external/pdfium/xfa/fxfa/fm2js/
cxfa_fmlexer_unittest.cpp 16 EXPECT_EQ(TOKeof, token->m_type);
23 EXPECT_EQ(TOKminus, token->m_type);
27 EXPECT_EQ(TOKeof, token->m_type);
31 EXPECT_EQ(TOKnumber, token->m_type);
36 EXPECT_EQ(TOKnumber, token->m_type);
41 EXPECT_EQ(TOKnumber, token->m_type);
46 EXPECT_EQ(TOKnumber, token->m_type);
51 EXPECT_EQ(TOKnumber, token->m_type);
58 EXPECT_EQ(TOKnumber, token->m_type);
70 EXPECT_EQ(TOKstring, token->m_type);
    [all...]
cxfa_fmlexer.cpp 135 return result->m_type;
141 CXFA_FMToken::CXFA_FMToken() : m_type(TOKreserver), m_line_num(1) {}
144 : m_type(TOKreserver), m_line_num(line_num) {}
150 str += tokenStrings[m_type];
190 m_token->m_type = TOKstring;
203 m_token->m_type = TOKnumber;
209 m_token->m_type = TOKassign;
218 m_token->m_type = TOKeq;
221 m_token->m_type = TOKassign;
227 m_token->m_type = TOKlt
    [all...]
cxfa_fmparser.cpp 45 while (!HasError() && m_token->m_type == TOKreserver)
54 if (m_token->m_type != op) {
74 if (m_token->m_type == TOKeof || m_token->m_type == TOKendfunc ||
75 m_token->m_type == TOKendif || m_token->m_type == TOKelseif ||
76 m_token->m_type == TOKelse || m_token->m_type == TOKreserver) {
80 expr = m_token->m_type == TOKfunc ? ParseFunction() : ParseExpression();
101 if (m_token->m_type != TOKidentifier)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/image/
vktImageTexture.cpp 38 switch (m_type)
86 , m_type (imageType)
95 , m_type (other.m_type)
104 switch (m_type)
128 switch (m_type)
152 switch (m_type)
vktImageTexture.hpp 41 ImageType type (void) const { return m_type; } //!< Texture type
54 const ImageType m_type; member in class:vkt::image::Texture
  /external/deqp/modules/gles31/functional/
es31fProgramInterfaceDefinitionUtil.hpp 45 VariablePathComponent (void) :m_type(TYPE_LAST) { }
46 VariablePathComponent (const glu::VarType* type) :m_type(TYPE_TYPE) { m_data.type = type; }
47 VariablePathComponent (const glu::InterfaceBlock* block) :m_type(TYPE_INTERFACEBLOCK) { m_data.block = block; }
48 VariablePathComponent (const glu::VariableDeclaration* decl) :m_type(TYPE_DECLARATION) { m_data.declaration = decl; }
50 VariablePathComponent (const VariablePathComponent& other) : m_data(other.m_data), m_type(other.m_type) { }
51 VariablePathComponent& operator= (const VariablePathComponent& other) { m_type = other.m_type; m_data = other.m_data; return *this; }
53 bool isVariableType (void) const { return m_type == TYPE_TYPE; }
54 bool isInterfaceBlock (void) const { return m_type == TYPE_INTERFACEBLOCK;
80 Type m_type; member in class:deqp::gles31::Functional::ProgramInterfaceDefinition::VariablePathComponent
    [all...]
  /external/deqp/modules/gles3/stress/
es3sVertexArrayTests.cpp 158 Array::InputType m_type; member in class:deqp::gles3::Stress::__anon18691::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::__anon18691::SingleVertexArrayFirstGroup
367 Array::InputType m_type; member in class:deqp::gles3::Stress::__anon18691::SingleVertexArrayOffsetGroup
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/pat_trie_/
erase_fn_imps.hpp 47 if (p_nd == 0 || p_nd->m_type == i_node)
53 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == leaf_node);
79 _GLIBCXX_DEBUG_ASSERT(p_parent->m_type == i_node);
94 _GLIBCXX_DEBUG_ASSERT(p_parent->m_type == i_node);
104 if (p_nd->m_p_parent->m_type == head_node)
107 _GLIBCXX_DEBUG_ASSERT(p_nd->m_p_parent->m_type == i_node);
145 if (p_nd->m_type == i_node)
147 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == i_node);
160 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == leaf_node);
177 _GLIBCXX_DEBUG_ASSERT(it.m_p_nd->m_type == leaf_node)
    [all...]
find_fn_imps.hpp 49 if (p_nd == 0 || p_nd->m_type != leaf_node)
74 if (p_nd == 0 || p_nd->m_type != leaf_node)
106 while (p_nd->m_type != leaf_node)
108 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == i_node);
138 if (p_nd->m_type == leaf_node)
147 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == i_node);
211 if (p_nd->m_type == leaf_node)
214 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == i_node);
223 if (p_nd->m_type == leaf_node)
226 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == i_node)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/pat_trie_/
erase_fn_imps.hpp 47 if (p_nd == 0 || p_nd->m_type == i_node)
53 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == leaf_node);
79 _GLIBCXX_DEBUG_ASSERT(p_parent->m_type == i_node);
94 _GLIBCXX_DEBUG_ASSERT(p_parent->m_type == i_node);
104 if (p_nd->m_p_parent->m_type == head_node)
107 _GLIBCXX_DEBUG_ASSERT(p_nd->m_p_parent->m_type == i_node);
145 if (p_nd->m_type == i_node)
147 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == i_node);
160 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == leaf_node);
177 _GLIBCXX_DEBUG_ASSERT(it.m_p_nd->m_type == leaf_node)
    [all...]
find_fn_imps.hpp 49 if (p_nd == 0 || p_nd->m_type != leaf_node)
74 if (p_nd == 0 || p_nd->m_type != leaf_node)
106 while (p_nd->m_type != leaf_node)
108 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == i_node);
138 if (p_nd->m_type == leaf_node)
147 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == i_node);
211 if (p_nd->m_type == leaf_node)
214 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == i_node);
223 if (p_nd->m_type == leaf_node)
226 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == i_node)
    [all...]
  /external/deqp/modules/gles3/functional/
es3fVertexArrayTest.cpp 155 Array::InputType m_type; member in class:deqp::gles3::Functional::SingleVertexArrayStrideGroup
160 , m_type (type)
182 const bool packed = m_type == Array::INPUTTYPE_UNSIGNED_INT_2_10_10_10 || m_type == Array::INPUTTYPE_INT_2_10_10_10;
183 const int stride = (strides[strideNdx] < 0) ? ((packed) ? (16) : (Array::inputTypeSize(m_type) * componentCount)) : (strides[strideNdx]);
184 const int alignment = (packed) ? (Array::inputTypeSize(m_type) * componentCount) : (Array::inputTypeSize(m_type));
189 if((m_type == Array::INPUTTYPE_UNSIGNED_INT_2_10_10_10 || m_type == Array::INPUTTYPE_INT_2_10_10_10) && componentCount != 4)
192 MultiVertexArrayTest::Spec::ArraySpec arraySpec(m_type,
260 Array::InputType m_type; member in class:deqp::gles3::Functional::SingleVertexArrayFirstGroup
364 Array::InputType m_type; member in class:deqp::gles3::Functional::SingleVertexArrayOffsetGroup
464 Array::InputType m_type; member in class:deqp::gles3::Functional::SingleVertexArrayNormalizeGroup
556 Array::InputType m_type; member in class:deqp::gles3::Functional::SingleVertexArrayOutputTypeGroup
    [all...]

Completed in 1223 milliseconds

1 2 3 4 5 6 7 8 9