Home
last modified time | relevance | path

Searched refs:m_specs (Results 1 – 6 of 6) sorted by relevance

/external/lldb/include/lldb/Core/
DModuleSpec.h436 m_specs(), in ModuleSpecList()
442 m_specs(), in ModuleSpecList()
447 m_specs = rhs.m_specs; in ModuleSpecList()
461 m_specs = rhs.m_specs;
470 return m_specs.size(); in GetSize()
477 m_specs.clear(); in Clear()
484 m_specs.push_back (spec); in Append()
492 m_specs.insert(m_specs.end(), rhs.m_specs.begin(), rhs.m_specs.end()); in Append()
500 return m_specs[i]; in GetModuleSpecRefAtIndex()
506 if (i < m_specs.size()) in GetModuleSpecAtIndex()
[all …]
/external/emma/ant/ant14/com/vladium/emma/instr/
DFilterCfg.java146 if (m_specs != null) in getFilterSpecs()
147 return m_specs; in getFilterSpecs()
152 m_specs = IConstants.EMPTY_STRING_ARRAY; in getFilterSpecs()
164 m_specs = Strings.mergeAT (values, COMMA_DELIMITERS, true); in getFilterSpecs()
173 return m_specs; in getFilterSpecs()
192 private transient String [] m_specs; field in FilterCfg
/external/deqp/modules/gles3/functional/
Des3fBufferWriteTests.cpp226 , m_specs (specs, specs+numSpecs) in RecreateBufferDataStoreCase()
240 for (vector<DataStoreSpec>::const_iterator spec = m_specs.begin(); spec != m_specs.end(); spec++) in iterate()
266 std::vector<DataStoreSpec> m_specs; member in deqp::gles3::Functional::RecreateBufferDataStoreCase
/external/deqp/modules/gles2/functional/
Des2fBufferWriteTests.cpp226 , m_specs (specs, specs+numSpecs) in RecreateBufferDataStoreCase()
240 for (vector<DataStoreSpec>::const_iterator spec = m_specs.begin(); spec != m_specs.end(); spec++) in iterate()
266 std::vector<DataStoreSpec> m_specs; member in deqp::gles2::Functional::RecreateBufferDataStoreCase
/external/deqp/modules/glshared/
DglsDrawTest.cpp3106 static bool containsLineCases (const std::vector<DrawTestSpec>& m_specs) in containsLineCases() argument
3108 for (int ndx = 0; ndx < (int)m_specs.size(); ++ndx) in containsLineCases()
3110 if (getDrawPrimitiveClass(m_specs[ndx].primitive) == PRIMITIVECLASS_LINE) in containsLineCases()
3166 if (!m_specs.empty()) in addIteration()
3168 const bool validContext = m_specs[0].apiType == spec.apiType; in addIteration()
3175 m_specs.push_back(spec); in addIteration()
3185 DE_ASSERT(!m_specs.empty()); in init()
3186 DE_ASSERT(contextSupports(m_renderCtx.getType(), m_specs[0].apiType)); in init()
3192 const bool isLineCase = containsLineCases(m_specs); in init()
3239 …const IterateResult iterateResult = ((size_t)m_iteration + 1 == m_specs.size()*2) ? (STOP) : (CO… in iterate()
[all …]
DglsDrawTest.hpp273 std::vector<DrawTestSpec> m_specs; member in deqp::gls::DrawTest