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()
678 C2Param::Index ix = min->second.first; in config() local
682 std::shared_ptr<ParamHelper> param = _mFactory->getParam(ix); in config()
687 if (!last && !dirty && ix == paramIx && *param->value() == *p) { in config()
690 C2_LOG(VERBOSE) << "ignoring setting unchanged param " << ix; in config()
696 C2_LOG(VERBOSE) << "setting param " << ix; in config()
699 (!last && paramIx == ix) ? p : param->value().get(), mayBlock, in config()
714 if (updateParams && !last && paramIx == ix) { in config()
722 C2_LOG(VERBOSE) << "param " << ix << " value changed"; in config()
724 for (const C2Param::Index ix : param->getDownDependencies()) { in config() local
727 { getDependencyIndex_l(ix), { ix, true /* dirty */ }}); in config()
732 auto it = dependencies.find(getDependencyIndex_l(ix)); in config()
735 << getDependencyIndex_l(ix) << ": " << it->second.first; in config()
759 size_t C2InterfaceHelper::getDependencyIndex_l(C2Param::Index ix) const { in getDependencyIndex_l()
760 return _mFactory->getDependencyIndex(ix); in getDependencyIndex_l()
790 for (const C2Param::Index ix : heapParamIndices) { in query() local
791 std::shared_ptr<C2Param> value = _mFactory->getParamValue(ix); in query()
825 C2Param::Index ix = _C2ParamInspector::GetIndex(query.field()); in querySupportedValues() local
826 std::shared_ptr<ParamHelper> param = _mFactory->getParam(ix); in querySupportedValues()
833 mReflector, ix, in querySupportedValues()