/external/parameter-framework/upstream/utility/ |
D | convert.hpp | 118 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/angle/third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/ |
D | Intermediate.cpp | 799 TIntermTyped* TIntermediate::createConversion(TBasicType convertTo, TIntermTyped* node) const in createConversion() argument 806 bool convertToIntTypes = (convertTo == EbtInt8 || convertTo == EbtUint8 || in createConversion() 807 convertTo == EbtInt16 || convertTo == EbtUint16 || in createConversion() 808 convertTo == EbtInt || convertTo == EbtUint || in createConversion() 809 convertTo == EbtInt64 || convertTo == EbtUint64); in createConversion() 816 …bool convertToFloatTypes = (convertTo == EbtFloat16 || convertTo == EbtFloat || convertTo == EbtDo… in createConversion() 822 if (((convertTo == EbtInt8 || convertTo == EbtUint8) && ! convertFromIntTypes) || in createConversion() 829 if (((convertTo == EbtInt16 || convertTo == EbtUint16) && ! convertFromIntTypes) || in createConversion() 836 if ((convertTo == EbtFloat16 && ! convertFromFloatTypes) || in createConversion() 846 if (!buildConvertOp(convertTo, node->getBasicType(), newOp)) { in createConversion() [all …]
|
D | localintermediate.h | 479 TIntermTyped* addConversion(TBasicType convertTo, TIntermTyped* node) const; 938 TIntermTyped* createConversion(TBasicType convertTo, TIntermTyped* node) const;
|
/external/deqp-deps/glslang/glslang/MachineIndependent/ |
D | Intermediate.cpp | 799 TIntermTyped* TIntermediate::createConversion(TBasicType convertTo, TIntermTyped* node) const in createConversion() argument 806 bool convertToIntTypes = (convertTo == EbtInt8 || convertTo == EbtUint8 || in createConversion() 807 convertTo == EbtInt16 || convertTo == EbtUint16 || in createConversion() 808 convertTo == EbtInt || convertTo == EbtUint || in createConversion() 809 convertTo == EbtInt64 || convertTo == EbtUint64); in createConversion() 816 …bool convertToFloatTypes = (convertTo == EbtFloat16 || convertTo == EbtFloat || convertTo == EbtDo… in createConversion() 822 if (((convertTo == EbtInt8 || convertTo == EbtUint8) && ! convertFromIntTypes) || in createConversion() 829 if (((convertTo == EbtInt16 || convertTo == EbtUint16) && ! convertFromIntTypes) || in createConversion() 836 if ((convertTo == EbtFloat16 && ! convertFromFloatTypes) || in createConversion() 846 if (!buildConvertOp(convertTo, node->getBasicType(), newOp)) { in createConversion() [all …]
|
D | localintermediate.h | 470 TIntermTyped* addConversion(TBasicType convertTo, TIntermTyped* node) const; 874 TIntermTyped* createConversion(TBasicType convertTo, TIntermTyped* node) const;
|
/external/parameter-framework/upstream/parameter/ |
D | FixedPointParameterType.cpp | 288 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()
|
D | FloatingPointParameterType.cpp | 132 if (!convertTo(strValue, uiValue)) { in toBlackboard() 158 if (!convertTo(strValue, fValue)) { in toBlackboard()
|
D | EnumParameterType.cpp | 101 if (not convertTo(strValue, iParsedUserValue)) { in toBlackboard() local
|
D | IntegerParameterType.h | 205 if (not convertTo(strValue, intermediate)) { in toBlackboard()
|
/external/parameter-framework/upstream/remote-processor/ |
D | RemoteProcessorServer.cpp | 67 if (convertTo(_bindAddress, port)) { in start() 95 if (!convertTo(portLiteral, port)) { in start()
|
/external/clang/include/clang/ASTMatchers/Dynamic/ |
D | VariantValue.h | 202 ->template convertTo<T>(); in getTypedMatcher() 231 return DynTypedMatcher(Matcher.convertTo<T>()); in convertMatcher()
|
/external/llvm-project/clang/lib/ASTMatchers/ |
D | ASTMatchFinder.cpp | 1253 addMatcher(NodeMatch.convertTo<Decl>(), Action); in addDynamicMatcher() 1256 addMatcher(NodeMatch.convertTo<QualType>(), Action); in addDynamicMatcher() 1259 addMatcher(NodeMatch.convertTo<Stmt>(), Action); in addDynamicMatcher() 1262 addMatcher(NodeMatch.convertTo<NestedNameSpecifier>(), Action); in addDynamicMatcher() 1265 addMatcher(NodeMatch.convertTo<NestedNameSpecifierLoc>(), Action); in addDynamicMatcher() 1268 addMatcher(NodeMatch.convertTo<TypeLoc>(), Action); in addDynamicMatcher() 1271 addMatcher(NodeMatch.convertTo<CXXCtorInitializer>(), Action); in addDynamicMatcher() 1274 addMatcher(NodeMatch.convertTo<TemplateArgumentLoc>(), Action); in addDynamicMatcher()
|
/external/clang/lib/ASTMatchers/ |
D | ASTMatchFinder.cpp | 940 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/llvm-project/clang/include/clang/ASTMatchers/Dynamic/ |
D | VariantValue.h | 201 ->template convertTo<T>(); in getTypedMatcher() 230 return DynTypedMatcher(Matcher.convertTo<T>()); in convertMatcher()
|
/external/llvm/lib/Target/SystemZ/ |
D | SystemZISelDAGToDAG.cpp | 286 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/ |
D | TESTSubsystemBinary.cpp | 73 if (!convertTo(strValue, uiValue)) { in fromString()
|
/external/parameter-framework/upstream/test/test-platform/ |
D | TestPlatform.cpp | 192 if (!convertTo(strAbort, bFail)) { in setter() 232 if (convertTo(remoteCommand.getArgument(1), state)) { in setCriterionState()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/ |
D | SystemZISelDAGToDAG.cpp | 287 SDValue convertTo(const SDLoc &DL, EVT VT, SDValue N) const; 943 SDValue SystemZDAGToDAGISel::convertTo(const SDLoc &DL, EVT VT, in convertTo() function in SystemZDAGToDAGISel 1006 SDValue In = convertTo(DL, VT, RISBG.Input); in tryRISBGZero() 1043 convertTo(DL, OpcodeVT, RISBG.Input), in tryRISBGZero() 1048 SDValue New = convertTo( in tryRISBGZero() 1099 convertTo(DL, MVT::i64, Op0), in tryRxSBG() 1100 convertTo(DL, MVT::i64, RxSBG[I].Input), in tryRxSBG() 1105 SDValue New = convertTo( in tryRxSBG()
|
/external/llvm-project/llvm/lib/Target/SystemZ/ |
D | SystemZISelDAGToDAG.cpp | 287 SDValue convertTo(const SDLoc &DL, EVT VT, SDValue N) const; 947 SDValue SystemZDAGToDAGISel::convertTo(const SDLoc &DL, EVT VT, in convertTo() function in SystemZDAGToDAGISel 1010 SDValue In = convertTo(DL, VT, RISBG.Input); in tryRISBGZero() 1047 convertTo(DL, OpcodeVT, RISBG.Input), in tryRISBGZero() 1052 SDValue New = convertTo( in tryRISBGZero() 1103 convertTo(DL, MVT::i64, Op0), in tryRxSBG() 1104 convertTo(DL, MVT::i64, RxSBG[I].Input), in tryRxSBG() 1109 SDValue New = convertTo( in tryRxSBG()
|
/external/parameter-framework/upstream/remote-process/ |
D | main.cpp | 107 if (convertTo({argv[2]}, testConverter)) { in main()
|
/external/clang/unittests/ASTMatchers/ |
D | ASTMatchersInternalTest.cpp | 52 .convertTo<QualType>())); in TEST()
|
/external/parameter-framework/upstream/xmlserializer/ |
D | XmlElement.cpp | 107 if (!convertTo<T>(rawValue, value)) { in getAttribute()
|
/external/llvm-project/clang/unittests/ASTMatchers/ |
D | ASTMatchersInternalTest.cpp | 45 .convertTo<QualType>())); in TEST()
|
/external/clang/include/clang/ASTMatchers/ |
D | ASTMatchersInternal.h | 416 template <typename T> Matcher<T> convertTo() const { in convertTo() function 576 inline Matcher<QualType> DynTypedMatcher::convertTo<QualType>() const {
|
/external/llvm-project/clang/include/clang/ASTMatchers/ |
D | ASTMatchersInternal.h | 469 template <typename T> Matcher<T> convertTo() const { in convertTo() function 750 inline Matcher<QualType> DynTypedMatcher::convertTo<QualType>() const {
|