Lines Matching refs:mapper
75 ConfigMapper &withMapper(Mapper mapper) { in withMapper()
78 mMapper = mapper; in withMapper()
83 ConfigMapper &withMappers(Mapper mapper, Mapper reverse) { in withMappers()
86 mMapper = mapper; in withMappers()
168 Mapper mapper() const { return mMapper; } in mapper() function
676 std::shared_ptr<C2Mapper::ProfileLevelMapper> mapper = in initializeStandardParams() local
681 .withMappers([mapper](C2Value v) -> C2Value { in initializeStandardParams()
684 if (mapper && v.get(&sdk) && mapper->mapProfile(sdk, &c2)) { in initializeStandardParams()
688 }, [mapper](C2Value v) -> C2Value { in initializeStandardParams()
692 if (mapper && v.get((C2ValueType*)&c2) && mapper->mapProfile(c2, &sdk)) { in initializeStandardParams()
700 .withMappers([mapper](C2Value v) -> C2Value { in initializeStandardParams()
703 if (mapper && v.get(&sdk) && mapper->mapLevel(sdk, &c2)) { in initializeStandardParams()
707 }, [mapper](C2Value v) -> C2Value { in initializeStandardParams()
711 if (mapper && v.get((C2ValueType*)&c2) && mapper->mapLevel(c2, &sdk)) { in initializeStandardParams()
1500 if (beVeryStrict || cm.mapper()) { in getReflectedFormat()