Lines Matching refs:ix

464         size_t ix = 0;  in addParam()  local
469 << ix << " that is not yet defined"; in addParam()
472 ++ix; in addParam()
478 std::shared_ptr<ParamHelper> getParam(C2Param::Index ix) const { in getParam()
480 const auto it = _mIndexToHelper.find(ix); in getParam()
490 std::shared_ptr<C2Param> getParamValue(C2Param::Index ix) const { in getParamValue()
491 std::shared_ptr<ParamHelper> helper = getParam(ix); in getParamValue()
506 size_t getDependencyIndex(C2Param::Index ix) { in getDependencyIndex()
509 auto it = _mDependencyIndex.find(ix); in getDependencyIndex()
679 C2Param::Index ix = min->second.first; in config() local
683 std::shared_ptr<ParamHelper> param = _mFactory->getParam(ix); in config()
688 if (!last && !dirty && ix == paramIx && *param->value() == *p) { in config()
691 C2_LOG(VERBOSE) << "ignoring setting unchanged param " << ix; in config()
697 C2_LOG(VERBOSE) << "setting param " << ix; in config()
700 (!last && paramIx == ix) ? p : param->value().get(), mayBlock, in config()
715 if (updateParams && !last && paramIx == ix) { in config()
723 C2_LOG(VERBOSE) << "param " << ix << " value changed"; in config()
725 for (const C2Param::Index ix : param->getDownDependencies()) { in config() local
728 { getDependencyIndex_l(ix), { ix, true /* dirty */ }}); in config()
733 auto it = dependencies.find(getDependencyIndex_l(ix)); in config()
736 << getDependencyIndex_l(ix) << ": " << it->second.first; in config()
760 size_t C2InterfaceHelper::getDependencyIndex_l(C2Param::Index ix) const { in getDependencyIndex_l()
761 return _mFactory->getDependencyIndex(ix); in getDependencyIndex_l()
791 for (const C2Param::Index ix : heapParamIndices) { in query() local
792 std::shared_ptr<C2Param> value = _mFactory->getParamValue(ix); in query()
826 C2Param::Index ix = _C2ParamInspector::GetIndex(query.field()); in querySupportedValues() local
827 std::shared_ptr<ParamHelper> param = _mFactory->getParam(ix); in querySupportedValues()
834 mReflector, ix, in querySupportedValues()