Home
last modified time | relevance | path

Searched refs:convertTo (Results 1 – 23 of 23) sorted by relevance

/external/parameter-framework/upstream/utility/
Dconvert.hpp118 static inline bool convertTo(const std::string &str, T &result) in convertTo() function
167 if (!convertTo<Via>(str, res)) { in convertToVia()
197 static inline bool convertTo(const std::string &str, T &result) in convertTo() function
199 return details::convertTo<T>(str, result); in convertTo()
220 inline bool convertTo<unsigned char>(const std::string &str, unsigned char &result) in convertTo() function
230 inline bool convertTo<signed char>(const std::string &str, signed char &result) in convertTo() function
250 inline bool convertTo<float>(const std::string &str, float &result) in convertTo() function
252 if (!details::convertTo(str, result)) { in convertTo()
279 inline bool convertTo<double>(const std::string &str, double &result) in convertTo() function
281 if (!details::convertTo(str, result)) { in convertTo()
[all …]
/external/libxcam/modules/ocl/
Dcv_image_process_helper.cpp48 noisy.convertTo (temp_noisy, CV_32FC1); in get_snr()
49 noiseless.convertTo (temp_noiseless, CV_32FC1); in get_snr()
98 weights.convertTo (weights, CV_32FC1); in normalize_weights()
Dcv_image_sharp.cpp37 image.convertTo (temp_image, CV_32FC1); in sharp_image_gray()
55 dst.convertTo (dst, CV_8UC1); in measure_sharp()
Dcv_image_deblurring.cpp120 dst.convertTo (dst, CV_32FC1); in estimate_kernel_size()
130 thresholded.convertTo (thresholded, CV_8UC1); in estimate_kernel_size()
198 result_deblurred.convertTo (result_deblurred, CV_8UC3); in blind_deblurring()
Dcv_edgetaper.cpp79 img.convertTo (result, CV_32FC1); in edgetaper()
/external/parameter-framework/upstream/parameter/
DFixedPointParameterType.cpp288 if (!convertTo(strValue, uiValue) || !isEncodable(uiValue, false)) { in convertFromHexadecimal()
305 if (!convertTo(strValue, reinterpret_cast<int32_t &>(uiValue)) || !isEncodable(uiValue, true)) { in convertFromDecimal()
318 if (!convertTo(strValue, dData) || !checkValueAgainstRange(dData)) { in convertFromQnm()
DFloatingPointParameterType.cpp132 if (!convertTo(strValue, uiValue)) { in toBlackboard()
158 if (!convertTo(strValue, fValue)) { in toBlackboard()
DEnumParameterType.cpp101 if (not convertTo(strValue, iParsedUserValue)) { in toBlackboard() local
DIntegerParameterType.h205 if (not convertTo(strValue, intermediate)) { in toBlackboard()
DParameterMgr.cpp1502 if (!convertTo(input, byte)) { in setElementBytesCommandProcess()
/external/parameter-framework/upstream/remote-processor/
DRemoteProcessorServer.cpp66 if (convertTo(_bindAddress, port)) { in start()
95 if (!convertTo(portLiteral, port)) { in start()
/external/clang/lib/ASTMatchers/
DASTMatchFinder.cpp940 addMatcher(NodeMatch.convertTo<Decl>(), Action); in addDynamicMatcher()
943 addMatcher(NodeMatch.convertTo<QualType>(), Action); in addDynamicMatcher()
946 addMatcher(NodeMatch.convertTo<Stmt>(), Action); in addDynamicMatcher()
949 addMatcher(NodeMatch.convertTo<NestedNameSpecifier>(), Action); in addDynamicMatcher()
952 addMatcher(NodeMatch.convertTo<NestedNameSpecifierLoc>(), Action); in addDynamicMatcher()
955 addMatcher(NodeMatch.convertTo<TypeLoc>(), Action); in addDynamicMatcher()
/external/clang/include/clang/ASTMatchers/Dynamic/
DVariantValue.h202 ->template convertTo<T>(); in getTypedMatcher()
231 return DynTypedMatcher(Matcher.convertTo<T>()); in convertMatcher()
/external/llvm/lib/Target/SystemZ/
DSystemZISelDAGToDAG.cpp286 SDValue convertTo(const SDLoc &DL, EVT VT, SDValue N) const;
911 SDValue SystemZDAGToDAGISel::convertTo(const SDLoc &DL, EVT VT, in convertTo() function in SystemZDAGToDAGISel
975 SDValue In = convertTo(DL, VT, RISBG.Input); in tryRISBGZero()
976 SDValue New = convertTo( in tryRISBGZero()
996 convertTo(DL, OpcodeVT, RISBG.Input), in tryRISBGZero()
1001 SDValue New = convertTo( in tryRISBGZero()
1053 convertTo(DL, MVT::i64, Op0), in tryRxSBG()
1054 convertTo(DL, MVT::i64, RxSBG[I].Input), in tryRxSBG()
1059 SDValue New = convertTo( in tryRxSBG()
/external/parameter-framework/upstream/test/test-subsystem/
DTESTSubsystemBinary.cpp73 if (!convertTo(strValue, uiValue)) { in fromString()
/external/parameter-framework/upstream/test/test-platform/
DTestPlatform.cpp192 if (!convertTo(strAbort, bFail)) { in setter()
232 if (convertTo(remoteCommand.getArgument(1), state)) { in setCriterionState()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/
DSystemZISelDAGToDAG.cpp287 SDValue convertTo(const SDLoc &DL, EVT VT, SDValue N) const;
935 SDValue SystemZDAGToDAGISel::convertTo(const SDLoc &DL, EVT VT, in convertTo() function in SystemZDAGToDAGISel
998 SDValue In = convertTo(DL, VT, RISBG.Input); in tryRISBGZero()
1035 convertTo(DL, OpcodeVT, RISBG.Input), in tryRISBGZero()
1040 SDValue New = convertTo( in tryRISBGZero()
1091 convertTo(DL, MVT::i64, Op0), in tryRxSBG()
1092 convertTo(DL, MVT::i64, RxSBG[I].Input), in tryRxSBG()
1097 SDValue New = convertTo( in tryRxSBG()
/external/parameter-framework/upstream/remote-process/
Dmain.cpp110 if (convertTo({argv[2]}, testConverter)) { in main()
/external/clang/unittests/ASTMatchers/
DASTMatchersInternalTest.cpp52 .convertTo<QualType>())); in TEST()
/external/parameter-framework/upstream/xmlserializer/
DXmlElement.cpp107 if (!convertTo<T>(rawValue, value)) { in getAttribute()
/external/clang/include/clang/ASTMatchers/
DASTMatchersInternal.h416 template <typename T> Matcher<T> convertTo() const { in convertTo() function
576 inline Matcher<QualType> DynTypedMatcher::convertTo<QualType>() const {
/external/deqp-deps/glslang/glslang/MachineIndependent/
DIntermediate.cpp492 TIntermTyped* TIntermediate::createConversion(TBasicType convertTo, TIntermTyped* node) const in createConversion() argument
501 switch (convertTo) { in createConversion()
712 …TType newType(convertTo, EvqTemporary, node->getVectorSize(), node->getMatrixCols(), node->getMatr… in createConversion()
Dlocalintermediate.h745 TIntermTyped* createConversion(TBasicType convertTo, TIntermTyped* node) const;