HomeSort by relevance Sort by last modified time
    Searched refs:convertTo (Results 1 - 25 of 41) sorted by null

1 2

  /external/parameter-framework/upstream/utility/
convert.hpp 118 static inline bool convertTo(const std::string &str, T &result)
123 static_assert(ConvertionAllowed<T>::value, "convertTo does not support this conversion");
163 /* We want to override the behaviour of convertTo<T> with that of
164 * convertTo<Via> and then safely cast the result into a T. */
167 if (!convertTo<Via>(str, res)) {
197 static inline bool convertTo(const std::string &str, T &result)
199 return details::convertTo<T>(str, result);
202 /** Specialization for unsigned char of convertTo template function.
209 * As convertTo is thought as an _numerical_ convertion tool
220 inline bool convertTo<unsigned char>(const std::string &str, unsigned char &result
    [all...]
  /frameworks/av/media/libmedia/include/media/
OMXFenceParcelable.h 33 bool convertTo(::android::OMXFenceParcelable* l,
39 bool convertTo(::android::OMXFenceParcelable* l,
65 convertTo)(OMXFenceParcelable* l,
71 convertTo)(OMXFenceParcelable* l,
convert.h 44 * Vector to vector conversion calls convertTo on each element.
54 static inline bool convertTo(const srcType &input, dstType &result);
183 /** Convert a vector by applying convertTo on each element.
202 if (not convertTo(*it, dstElem)) {
214 static inline bool convertTo(const srcType &input, dstType &result)
220 * Specialization for int16_t of convertTo template function.
234 inline bool convertTo<std::string, int16_t>(const std::string &str, int16_t &result)
238 if (!convertTo<std::string, int64_t>(str, res)) {
251 * Specialization for float of convertTo template function.
266 inline bool convertTo<std::string, float>(const std::string &str, float &result
    [all...]
OMXBuffer.h 36 inline bool convertTo(::android::OMXBuffer* l,
42 inline bool convertTo(::android::OMXBuffer* l,
101 convertTo)(OMXBuffer* l,
107 convertTo)(OMXBuffer* l,
  /external/libxcam/modules/ocl/
cv_image_sharp.cpp 37 image.convertTo (temp_image, CV_32FC1);
55 dst.convertTo (dst, CV_8UC1);
cv_image_process_helper.cpp 48 noisy.convertTo (temp_noisy, CV_32FC1);
49 noiseless.convertTo (temp_noiseless, CV_32FC1);
98 weights.convertTo (weights, CV_32FC1);
cv_image_deblurring.cpp 120 dst.convertTo (dst, CV_32FC1);
130 thresholded.convertTo (thresholded, CV_8UC1);
198 result_deblurred.convertTo (result_deblurred, CV_8UC3);
cv_edgetaper.cpp 79 img.convertTo (result, CV_32FC1);
  /external/parameter-framework/upstream/test/test-subsystem/
TESTSubsystemBinary.cpp 73 if (!convertTo(strValue, uiValue)) {
  /frameworks/av/media/libmedia/omx/1.0/
WOmxObserver.cpp 66 convertTo(&lMessages.back(), tMessages[i]);
WOmxBufferSource.cpp 97 if (!convertTo(&fenceParcelable, fence)) {
WOmx.cpp 51 convertTo(&*newInfo, nodeList[i]);
WOmxNode.cpp 364 if (!convertTo(&omxBuffer, codecBuffer)) {
382 if (!convertTo(&omxBuffer, codecBuffer)) {
395 if (!convertTo(&omxBuffer, codecBuffer)) {
418 if (!convertTo(&lMsg, tMsg)) {
  /frameworks/av/media/libstagefright/omx/1.0/
WOmxObserver.cpp 66 convertTo(&lMessages.back(), tMessages[i]);
WOmxBufferSource.cpp 97 if (!convertTo(&fenceParcelable, fence)) {
  /external/clang/include/clang/ASTMatchers/Dynamic/
VariantValue.h 202 ->template convertTo<T>();
231 return DynTypedMatcher(Matcher.convertTo<T>());
  /external/parameter-framework/upstream/parameter/
FloatingPointParameterType.cpp 132 if (!convertTo(strValue, uiValue)) {
158 if (!convertTo(strValue, fValue)) {
FixedPointParameterType.cpp 288 if (!convertTo(strValue, uiValue) || !isEncodable(uiValue, false)) {
305 if (!convertTo(strValue, reinterpret_cast<int32_t &>(uiValue)) || !isEncodable(uiValue, true)) {
318 if (!convertTo(strValue, dData) || !checkValueAgainstRange(dData)) {
EnumParameterType.cpp 101 if (not convertTo(strValue, iParsedUserValue)) {
  /external/parameter-framework/upstream/remote-processor/
RemoteProcessorServer.cpp 66 if (convertTo(_bindAddress, port)) {
95 if (!convertTo(portLiteral, port)) {
  /frameworks/av/services/audiopolicy/common/managerdefinitions/src/
Serializer.cpp 42 using utilities::convertTo;
348 if (!minValueMBLiteral.empty() && convertTo(minValueMBLiteral, minValueMB)) {
354 if (!maxValueMBLiteral.empty() && convertTo(maxValueMBLiteral, maxValueMB)) {
360 if (!defaultValueMBLiteral.empty() && convertTo(defaultValueMBLiteral, defaultValueMB)) {
366 if (!stepValueMBLiteral.empty() && convertTo(stepValueMBLiteral, stepValueMB)) {
372 if (!minRampMsLiteral.empty() && convertTo(minRampMsLiteral, minRampMs)) {
378 if (!maxRampMsLiteral.empty() && convertTo(maxRampMsLiteral, maxRampMs)) {
383 if (!useForVolumeLiteral.empty() && convertTo(useForVolumeLiteral, useForVolume)) {
457 convertTo(maxOpenCount, mixPort->maxOpenCount);
461 convertTo(maxActiveCount, mixPort->maxActiveCount)
    [all...]
  /frameworks/av/media/libstagefright/omx/include/media/stagefright/omx/1.0/
Conversion.h 119 * - `convertTo(TargetType*, ...)`: Same as `toTargetType()`, but for
123 * `wrapIn()` and `convertTo()` functions will take output arguments before
129 * an additional output argument, hence only `wrapIn()` or `convertTo()` would
135 * `convertTo()` do.
286 inline bool convertTo(omx_message* l, Message const& t) {
347 inline bool convertTo(OMXFenceParcelable* l, hidl_handle const& t) {
487 inline bool convertTo(OMXBuffer* l, CodecBuffer const& t) {
512 if (!::android::hardware::media::omx::V1_0::utils::convertTo(
535 inline bool convertTo(IOmx::ComponentInfo* t, IOMX::ComponentInfo const& l) {
552 inline bool convertTo(IOMX::ComponentInfo* l, IOmx::ComponentInfo const& t)
    [all...]
  /frameworks/av/media/libmedia/include/media/omx/1.0/
Conversion.h 156 * - `convertTo(TargetType*, ...)`: Same as `toTargetType()`, but for
160 * `wrapIn()` and `convertTo()` functions will take output arguments before
166 * an additional output argument, hence only `wrapIn()` or `convertTo()` would
172 * `convertTo()` do.
428 inline bool convertTo(omx_message* l, Message const& t) {
489 inline bool convertTo(OMXFenceParcelable* l, hidl_handle const& t) {
627 inline bool convertTo(GraphicBuffer* l, AnwBuffer const& t) {
747 inline bool convertTo(OMXBuffer* l, CodecBuffer const& t) {
772 // If we encounter an invalid handle, the convertTo() below would fail (while
777 if (!convertTo(graphicBuffer.get(), anwBuffer))
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp 286 SDValue convertTo(const SDLoc &DL, EVT VT, SDValue N) const;
911 SDValue SystemZDAGToDAGISel::convertTo(const SDLoc &DL, EVT VT,
    [all...]
  /external/parameter-framework/upstream/remote-process/
main.cpp 110 if (convertTo({argv[2]}, testConverter)) {

Completed in 1292 milliseconds

1 2