Searched refs:m_id (Results 1 - 25 of 36) sorted by relevance

12

/external/libcxx/test/support/
H A Dtype_id.h29 {return LHS.m_id == RHS.m_id; }
31 {return LHS.m_id != RHS.m_id; }
34 return demangle(m_id);
43 explicit constexpr TypeID(const char* xid) : m_id(xid) {}
48 const char* const m_id; member in struct:TypeID
H A Dcontainer_test_types.h102 {return LHS.m_id == RHS.m_id; }
104 {return LHS.m_id != RHS.m_id; }
106 explicit constexpr TypeID(const int* xid) : m_id(xid) {}
107 const int* const m_id; member in struct:detail::TypeID
/external/eigen/Eigen/src/SparseCore/
H A DSparseCompressedBase.h140 : m_values(0), m_indices(0), m_outer(0), m_id(0), m_end(0)
144 : m_values(other.m_values), m_indices(other.m_indices), m_outer(other.m_outer), m_id(other.m_id), m_end(other.m_end)
152 m_id = other.m_id;
162 m_id = 0;
167 m_id = mat.outerIndexPtr()[outer];
171 m_end = m_id + mat.innerNonZeroPtr()[outer];
176 : m_values(mat.valuePtr()), m_indices(mat.innerIndexPtr()), m_outer(0), m_id(0), m_end(mat.nonZeros())
182 : m_values(data.valuePtr()), m_indices(data.indexPtr()), m_outer(0), m_id(
204 Index m_id; member in class:Eigen::SparseCompressedBase::InnerIterator
265 Index m_id; member in class:Eigen::SparseCompressedBase::ReverseInnerIterator
[all...]
H A DSparseCwiseBinaryOp.h85 m_id = m_lhsIter.index();
92 m_id = m_lhsIter.index();
98 m_id = m_rhsIter.index();
105 m_id = -1;
112 EIGEN_STRONG_INLINE StorageIndex index() const { return m_id; }
117 EIGEN_STRONG_INLINE operator bool() const { return m_id>=0; }
124 StorageIndex m_id; member in class:Eigen::internal::binary_evaluator::InnerIterator
170 : m_lhsEval(aEval.m_lhsImpl), m_rhsIter(aEval.m_rhsImpl,outer), m_functor(aEval.m_functor), m_value(0), m_id(-1), m_innerSize(aEval.m_expr.rhs().innerSize())
177 ++m_id;
178 if(m_id<m_innerSiz
[all...]
/external/v8/src/inspector/
H A Dremote-object-id.h32 int id() const { return m_id; }
37 int m_id; member in class:v8_inspector::final
H A Dremote-object-id.cc29 RemoteObjectId::RemoteObjectId() : RemoteObjectIdBase(), m_id(0) {}
38 bool success = parsedObjectId->getInteger("id", &remoteObjectId->m_id);
H A Dv8-debugger-script.h57 const String16& scriptId() const { return m_id; }
86 String16 m_id; member in class:v8_inspector::V8DebuggerScript
H A Dv8-profiler-agent-impl.cc146 : m_id(id), m_title(title) {}
147 String16 m_id; member in class:v8_inspector::V8ProfilerAgentImpl::ProfileDescriptor
179 id = m_startedProfiles.back().m_id;
186 id = m_startedProfiles[i].m_id;
212 stopProfiling(m_startedProfiles[i - 1].m_id, false);
/external/testng/src/test/java/test/timeout/
H A DTimeOutTest.java13 private final long m_id; field in class:TimeOutTest
16 m_id = System.currentTimeMillis();
72 return m_id;
/external/deqp/external/openglcts/modules/gl/
H A Dgl4cBufferStorageTests.cpp163 glw::GLuint m_id; member in class:gl4cts::BufferStorage::Buffer
201 glw::GLuint m_id; member in class:gl4cts::BufferStorage::Framebuffer
235 glw::GLuint m_id; member in class:gl4cts::BufferStorage::Shader
274 glw::GLuint m_id; member in class:gl4cts::BufferStorage::Program
336 glw::GLuint m_id; member in class:gl4cts::BufferStorage::Texture
368 glw::GLuint m_id; member in class:gl4cts::BufferStorage::VertexArray
482 Buffer::Buffer(deqp::Context& context) : m_id(m_invalid_id), m_context(context), m_target(GL_ARRAY_BUFFER)
510 Generate(gl, m_id);
511 Bind(gl, m_id, m_target);
531 Generate(gl, m_id);
[all...]
H A Dgl4cMultiBindTests.cpp192 glw::GLuint m_id; member in class:gl4cts::MultiBind::Buffer
228 glw::GLuint m_id; member in class:gl4cts::MultiBind::Framebuffer
262 glw::GLuint m_id; member in class:gl4cts::MultiBind::Shader
303 glw::GLuint m_id; member in class:gl4cts::MultiBind::Program
368 glw::GLuint m_id; member in class:gl4cts::MultiBind::Texture
384 Buffer::Buffer() : m_id(m_invalid_id), m_context(0), m_target(GL_ARRAY_BUFFER)
426 Generate(gl, m_id);
427 Bind(gl, m_id, m_target);
436 if (m_invalid_id != m_id)
440 gl.deleteBuffers(1, &m_id);
[all...]
H A Dgl3cTextureSwizzleTests.hpp96 glw::GLuint m_id; member in class:gl3cts::TextureSwizzle::APIErrorsTest
130 glw::GLuint m_id; member in class:gl3cts::TextureSwizzle::IntialStateTest
H A Dgl4cEnhancedLayoutsTests.cpp1652 Buffer::Buffer(deqp::Context& context) : m_id(m_invalid_id), m_buffer(Array), m_context(context)
1680 Generate(gl, m_id);
1681 Bind(gl, m_id, m_buffer);
1690 if (m_invalid_id != m_id)
1694 gl.deleteBuffers(1, &m_id);
1695 m_id = m_invalid_id;
1706 Bind(gl, m_id, m_buffer);
1717 BindBase(gl, m_id, m_buffer, index);
1730 BindRange(gl, m_id, m_buffer, index, offset, size);
2066 Framebuffer::Framebuffer(deqp::Context& context) : m_id(m_invalid_i
[all...]
/external/deqp/external/openglcts/modules/common/
H A DglcRobustnessTests.cpp311 gl.programUniform4fv(program.m_id, 11, 1, input4f);
314 gl.programUniform3iv(program.m_id, 12, 1, input3i);
317 gl.programUniform4uiv(program.m_id, 13, 1, input4ui);
328 pGetnUniformfv(program.m_id, 11, sizeof(GLfloat) * 4, result4f);
333 pGetnUniformfv(program.m_id, 11, sizeof(GLfloat) * 3, result4f);
336 pGetnUniformiv(program.m_id, 12, sizeof(GLint) * 3, result3i);
341 pGetnUniformiv(program.m_id, 12, sizeof(GLint) * 2, result3i);
344 pGetnUniformuiv(program.m_id, 13, sizeof(GLuint) * 4, result4ui);
349 pGetnUniformuiv(program.m_id, 13, sizeof(GLuint) * 3, result4ui);
543 VertexArray::Generate(gl, vao.m_id);
[all...]
H A DglcRobustBufferAccessBehaviorTests.cpp68 Buffer::Buffer(deqp::Context& context) : m_id(m_invalid_id), m_context(context), m_target(GL_ARRAY_BUFFER)
96 Generate(gl, m_id);
97 Bind(gl, m_id, m_target);
106 if (m_invalid_id != m_id)
110 gl.deleteBuffers(1, &m_id);
111 m_id = m_invalid_id;
122 Bind(gl, m_id, m_target);
133 BindBase(gl, m_id, m_target, index);
218 Framebuffer::Framebuffer(deqp::Context& context) : m_id(m_invalid_id), m_context(context)
236 if (m_invalid_id != m_id)
[all...]
H A DglcRobustBufferAccessBehaviorTests.hpp72 glw::GLuint m_id; member in class:deqp::RobustBufferAccessBehavior::Buffer
109 glw::GLuint m_id; member in class:deqp::RobustBufferAccessBehavior::Framebuffer
141 glw::GLuint m_id; member in class:deqp::RobustBufferAccessBehavior::Shader
180 glw::GLuint m_id; member in class:deqp::RobustBufferAccessBehavior::Program
241 glw::GLuint m_id; member in class:deqp::RobustBufferAccessBehavior::Texture
270 glw::GLuint m_id; member in class:deqp::RobustBufferAccessBehavior::VertexArray
H A DglcViewportArrayTests.cpp55 Utils::buffer::buffer(deqp::Context& context) : m_id(0), m_context(context), m_target(0)
64 if (0 != m_id)
68 gl.deleteBuffers(1, &m_id);
69 m_id = 0;
80 gl.bindBuffer(m_target, m_id);
94 gl.bindBufferRange(m_target, index, m_id, offset, size);
108 gl.genBuffers(1, &m_id);
122 gl.bindBuffer(m_target, m_id);
138 gl.bindBuffer(m_target, m_id);
155 gl.bindBuffer(m_target, m_id);
[all...]
H A DglcViewportArrayTests.hpp78 glw::GLuint m_id; member in struct:glcts::ViewportArray::Utils::buffer
99 glw::GLuint m_id; member in struct:glcts::ViewportArray::Utils::framebuffer
196 glw::GLuint m_id; member in struct:glcts::ViewportArray::Utils::texture
214 glw::GLuint m_id; member in struct:glcts::ViewportArray::Utils::vertexArray
/external/deqp/external/openglcts/modules/glesext/geometry_shader/
H A DesextcGeometryShaderLayeredRenderingBoundaryCondition.cpp187 gl.deleteTextures(1, &m_textures_info[i].m_id);
296 gl.genTextures(1, &m_textures_info[i].m_id);
329 gl.bindTexture(m_textures_info[i].m_texture_target, m_textures_info[i].m_id);
360 gl.framebufferTexture(GL_DRAW_FRAMEBUFFER, m_textures_info[i].m_draw_buffer, m_textures_info[i].m_id,
365 gl.framebufferTextureLayer(GL_DRAW_FRAMEBUFFER, m_textures_info[i].m_draw_buffer, m_textures_info[i].m_id,
426 gl.framebufferTextureLayer(GL_READ_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, m_textures_info[nTexture].m_id, 0,
482 texInfo.m_id = 0;
489 texInfo.m_id = 0;
619 texInfo.m_id = 0;
688 texInfo.m_id
[all...]
H A DesextcGeometryShaderLayeredRenderingBoundaryCondition.hpp45 glw::GLuint m_id; member in struct:glcts::GeometryShaderLayeredRenderingBoundaryCondition::TextureInfo
/external/eigen/unsupported/Eigen/src/Skyline/
H A DSkylineMatrix.h740 m_id(_Options == RowMajor ? mat.m_colStartIndex[outer] : mat.m_rowStartIndex[outer] + 1),
741 m_start(m_id),
746 m_id++;
751 m_id += shift;
756 return m_matrix.m_data.upper(m_id);
760 return const_cast<Scalar*> (&(m_matrix.m_data.upper(m_id)));
764 return const_cast<Scalar&> (m_matrix.m_data.upper(m_id));
768 return IsRowMajor ? m_outer - m_matrix.m_data.upperProfile(m_outer) + (m_id - m_start) :
769 m_outer + (m_id - m_start) + 1;
785 return (m_id < m_en
[all...]
/external/deqp/external/openglcts/modules/gles32/
H A Des32cRobustBufferAccessBehaviorTests.cpp694 Texture::Generate(gl, destination_texture.m_id);
695 Texture::Bind(gl, destination_texture.m_id, GL_TEXTURE_2D);
703 gl.bindImageTexture(1 /* unit */, destination_texture.m_id, 0 /* level */, GL_FALSE /* layered */,
718 Texture::GetData(gl, destination_texture.m_id, 0 /* level */, width, height, GL_RGBA_INTEGER, GL_UNSIGNED_INT,
790 Texture::Generate(gl, destination_texture.m_id);
791 Texture::Generate(gl, source_texture.m_id);
793 prepareTexture(false, destination_texture.m_id);
794 prepareTexture(true, source_texture.m_id);
808 setTextures(destination_texture.m_id, source_texture.m_id);
[all...]
/external/eigen/unsupported/Eigen/src/SparseExtra/
H A DBlockSparseMatrix.h982 m_id(mat.m_outerIndex[outer]),
987 inline BlockInnerIterator& operator++() {m_id++; return *this; }
991 return Map<const BlockScalar>(&(m_mat.m_values[m_mat.blockPtr(m_id)]),
996 return Map<BlockScalar>(&(m_mat.m_values[m_mat.blockPtr(m_id)]),
1000 inline Index index() const {return m_mat.m_indices[m_id]; }
1010 inline operator bool() const { return (m_id < m_end); }
1015 Index m_id;
1030 m_id = m_mat.blockInnerIndex(itb.index());
1031 m_start = m_id;
1037 m_id
[all...]
/external/testng/src/main/java/org/testng/internal/
H A DClonedMethod.java20 private String m_id; field in class:ClonedMethod
89 return m_id;
259 m_id = id;
H A DBaseTestMethod.java43 protected String m_id = ""; field in class:BaseTestMethod
360 return m_id;
368 m_id = id;

Completed in 3343 milliseconds

12