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

1 2 3 4 5 6 7 8 91011

  /external/lldb/include/lldb/DataFormatters/
FormatClasses.h 43 m_type()
49 m_type()
52 m_type.m_type_name.assign(name);
59 m_type()
63 m_type.m_type_name.assign(type->GetName().GetCString());
64 m_type.m_typeimpl_sp = lldb::TypeImplSP(new TypeImpl(type));
70 m_type()
74 m_type.m_type_name.assign(type.GetConstTypeName().GetCString());
75 m_type.m_typeimpl_sp = lldb::TypeImplSP(new TypeImpl(type));
82 if (m_type.m_type_name.size()
119 TypeOrName m_type; member in class:lldb_private::TypeNameSpecifierImpl
    [all...]
  /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/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...]
Opcode.h 42 Opcode () : m_type (eTypeInvalid)
46 Opcode (uint8_t inst) : m_type (eType8)
51 Opcode (uint16_t inst) : m_type (eType16)
56 Opcode (uint32_t inst) : m_type (eType32)
61 Opcode (uint64_t inst) : m_type (eType64)
74 m_type = Opcode::eTypeInvalid;
79 return m_type;
85 switch (m_type)
102 switch (m_type)
118 switch (m_type)
    [all...]
  /external/lldb/include/lldb/Symbol/
UnwindPlan.h 63 m_type(unspecified),
80 m_type = unspecified;
86 m_type = undefined;
92 m_type = same;
98 return m_type == same;
104 return m_type == unspecified;
110 return m_type == isCFAPlusOffset;
116 return m_type == atCFAPlusOffset;
122 return m_type == inOtherRegister;
128 return m_type == atDWARFExpression;
225 RestoreType m_type; \/\/ How do we locate this register? member in class:lldb_private::UnwindPlan::Row::RegisterLocation
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/
NetworkAuthenticationTypeElement.java 28 private final NwkAuthTypeEnum m_type; field in class:NetworkAuthenticationTypeElement.NetworkAuthentication
32 m_type = type;
37 return m_type;
47 "m_type=" + m_type +
  /external/lldb/include/lldb/Target/
CPPLanguageRuntime.h 46 m_type (eTypeInvalid),
58 m_type (eTypeInvalid),
72 if (m_type == eTypeInvalid)
80 return m_type;
110 Type m_type; member in class:lldb_private::CPPLanguageRuntime::MethodName
  /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::__anon7890::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::__anon7890::SingleVertexArrayFirstGroup
367 Array::InputType m_type; member in class:deqp::gles3::Stress::__anon7890::SingleVertexArrayOffsetGroup
    [all...]
  /external/lldb/source/Core/
Error.cpp 32 m_type (eErrorTypeInvalid),
42 m_type (type),
49 m_type (rhs.m_type),
56 m_type (eErrorTypeInvalid),
71 m_type = rhs.m_type;
85 m_type = eErrorTypeMachKernel;
108 switch (m_type)
144 m_type = eErrorTypeGeneric
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/pat_trie_/
debug_fn_imps.hpp 60 _GLIBCXX_DEBUG_ASSERT(m_p_head->m_p_min->m_type == pat_trie_leaf_node_type);
61 _GLIBCXX_DEBUG_ASSERT(m_p_head->m_p_max->m_type == pat_trie_leaf_node_type);
104 if (p_nd->m_type == pat_trie_leaf_node_type)
106 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_internal_node_type);
erase_fn_imps.hpp 47 if (p_nd == 0 || p_nd->m_type == pat_trie_internal_node_type)
53 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_leaf_node_type);
79 _GLIBCXX_DEBUG_ASSERT(p_parent->m_type == pat_trie_internal_node_type);
94 _GLIBCXX_DEBUG_ASSERT(p_parent->m_type == pat_trie_internal_node_type);
104 if (p_nd->m_p_parent->m_type == pat_trie_head_node_type)
107 _GLIBCXX_DEBUG_ASSERT(p_nd->m_p_parent->m_type ==
147 if (p_nd->m_type == pat_trie_internal_node_type)
149 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_internal_node_type);
162 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_leaf_node_type);
179 _GLIBCXX_DEBUG_ASSERT(it.m_p_nd->m_type == pat_trie_leaf_node_type)
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/pat_trie_/
debug_fn_imps.hpp 60 _GLIBCXX_DEBUG_ASSERT(m_p_head->m_p_min->m_type == pat_trie_leaf_node_type);
61 _GLIBCXX_DEBUG_ASSERT(m_p_head->m_p_max->m_type == pat_trie_leaf_node_type);
104 if (p_nd->m_type == pat_trie_leaf_node_type)
106 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_internal_node_type);
erase_fn_imps.hpp 47 if (p_nd == 0 || p_nd->m_type == pat_trie_internal_node_type)
53 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_leaf_node_type);
79 _GLIBCXX_DEBUG_ASSERT(p_parent->m_type == pat_trie_internal_node_type);
94 _GLIBCXX_DEBUG_ASSERT(p_parent->m_type == pat_trie_internal_node_type);
104 if (p_nd->m_p_parent->m_type == pat_trie_head_node_type)
107 _GLIBCXX_DEBUG_ASSERT(p_nd->m_p_parent->m_type ==
147 if (p_nd->m_type == pat_trie_internal_node_type)
149 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_internal_node_type);
162 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_leaf_node_type);
179 _GLIBCXX_DEBUG_ASSERT(it.m_p_nd->m_type == pat_trie_leaf_node_type)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-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...]
  /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...]
  /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...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/pat_trie_/
erase_fn_imps.hpp 47 if (p_nd == NULL || p_nd->m_type == pat_trie_internal_node_type)
53 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_leaf_node_type);
79 _GLIBCXX_DEBUG_ASSERT(p_parent->m_type == pat_trie_internal_node_type);
94 _GLIBCXX_DEBUG_ASSERT(p_parent->m_type == pat_trie_internal_node_type);
104 if (p_nd->m_p_parent->m_type == pat_trie_head_node_type)
107 _GLIBCXX_DEBUG_ASSERT(p_nd->m_p_parent->m_type ==
147 if (p_nd->m_type == pat_trie_internal_node_type)
149 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_internal_node_type);
162 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_leaf_node_type);
179 _GLIBCXX_DEBUG_ASSERT(it.m_p_nd->m_type == pat_trie_leaf_node_type)
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/pat_trie_/
erase_fn_imps.hpp 47 if (p_nd == NULL || p_nd->m_type == pat_trie_internal_node_type)
53 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_leaf_node_type);
79 _GLIBCXX_DEBUG_ASSERT(p_parent->m_type == pat_trie_internal_node_type);
94 _GLIBCXX_DEBUG_ASSERT(p_parent->m_type == pat_trie_internal_node_type);
104 if (p_nd->m_p_parent->m_type == pat_trie_head_node_type)
107 _GLIBCXX_DEBUG_ASSERT(p_nd->m_p_parent->m_type ==
147 if (p_nd->m_type == pat_trie_internal_node_type)
149 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_internal_node_type);
162 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_leaf_node_type);
179 _GLIBCXX_DEBUG_ASSERT(it.m_p_nd->m_type == pat_trie_leaf_node_type)
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/pat_trie_/
erase_fn_imps.hpp 47 if (p_nd == NULL || p_nd->m_type == pat_trie_internal_node_type)
53 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_leaf_node_type);
79 _GLIBCXX_DEBUG_ASSERT(p_parent->m_type == pat_trie_internal_node_type);
94 _GLIBCXX_DEBUG_ASSERT(p_parent->m_type == pat_trie_internal_node_type);
104 if (p_nd->m_p_parent->m_type == pat_trie_head_node_type)
107 _GLIBCXX_DEBUG_ASSERT(p_nd->m_p_parent->m_type ==
147 if (p_nd->m_type == pat_trie_internal_node_type)
149 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_internal_node_type);
162 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_leaf_node_type);
179 _GLIBCXX_DEBUG_ASSERT(it.m_p_nd->m_type == pat_trie_leaf_node_type)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/detail/pat_trie_/
erase_fn_imps.hpp 47 if (p_nd == NULL || p_nd->m_type == pat_trie_internal_node_type)
53 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_leaf_node_type);
79 _GLIBCXX_DEBUG_ASSERT(p_parent->m_type == pat_trie_internal_node_type);
94 _GLIBCXX_DEBUG_ASSERT(p_parent->m_type == pat_trie_internal_node_type);
104 if (p_nd->m_p_parent->m_type == pat_trie_head_node_type)
107 _GLIBCXX_DEBUG_ASSERT(p_nd->m_p_parent->m_type ==
147 if (p_nd->m_type == pat_trie_internal_node_type)
149 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_internal_node_type);
162 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_leaf_node_type);
179 _GLIBCXX_DEBUG_ASSERT(it.m_p_nd->m_type == pat_trie_leaf_node_type)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/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...]

Completed in 4801 milliseconds

1 2 3 4 5 6 7 8 91011