Home
last modified time | relevance | path

Searched refs:fValue (Results 1 – 25 of 159) sorted by relevance

1234567

/external/icu/icu4c/source/i18n/
Dfmtable.cpp103 fValue.fInt64 = 0; in init()
125 fValue.fDate = date; in Formattable()
135 fValue.fDouble = value; in Formattable()
144 fValue.fInt64 = value; in Formattable()
154 fValue.fInt64 = value; in Formattable()
173 fValue.fString = new UnicodeString(stringToCopy); in Formattable()
184 fValue.fString = stringToAdopt; in Formattable()
191 fValue.fObject = objectToAdopt; in Formattable()
201 fValue.fArrayAndCount.fArray = createArrayCopy(arrayToCopy, count); in Formattable()
202 fValue.fArrayAndCount.fCount = count; in Formattable()
[all …]
/external/pdfium/xfa/fxfa/parser/
Dcxfa_measurement.cpp29 CXFA_Measurement::CXFA_Measurement(float fValue, XFA_Unit eUnit) { in CXFA_Measurement() argument
30 Set(fValue, eUnit); in CXFA_Measurement()
42 float fValue = FXSYS_wcstof(wsMeasure.unterminated_c_str() + iOffset, in SetString() local
46 Set(fValue, eUnit); in SetString()
78 bool CXFA_Measurement::ToUnitInternal(XFA_Unit eUnit, float* fValue) const { in ToUnitInternal()
79 *fValue = GetValue(); in ToUnitInternal()
88 *fValue *= kPtToMm; in ToUnitInternal()
91 *fValue *= kPtToInch; in ToUnitInternal()
94 *fValue *= kPtToCm; in ToUnitInternal()
97 *fValue *= kPtToMp; in ToUnitInternal()
[all …]
/external/skqp/src/core/
DSkTMultiMap.h22 explicit ValueList(T* value) : fValue(value), fNext(nullptr) {} in ValueList()
24 static const Key& GetKey(const ValueList& e) { return HashTraits::GetKey(*e.fValue); } in GetKey()
26 T* fValue; member
37 HashTraits::OnFree(cur->fValue); in ~SkTMultiMap()
49 ValueList* newEntry = new ValueList(list->fValue); in insert()
54 list->fValue = value; in insert()
68 while (list->fValue != value) { in remove()
79 return list->fValue; in find()
88 if (f(list->fValue)){ in find()
89 return list->fValue; in find()
[all …]
DSkMaskCache.cpp43 fValue.fMask = mask; in RRectBlurRec()
44 fValue.fData = data; in RRectBlurRec()
45 fValue.fData->attachToCacheAndRef(); in RRectBlurRec()
48 fValue.fData->detachFromCacheAndUnref(); in ~RRectBlurRec()
52 MaskValue fValue; member
55 size_t bytesUsed() const override { return sizeof(*this) + fValue.fData->size(); } in bytesUsed()
58 return fValue.fData->diagnostic_only_getDiscardable(); in diagnostic_only_getDiscardable()
65 SkCachedData* tmpData = rec.fValue.fData; in Visitor()
71 *result = rec.fValue; in Visitor()
137 fValue.fMask = mask; in RectsBlurRec()
[all …]
DSkYUVPlanesCache.cpp38 fValue.fData = data; in YUVPlanesRec()
39 fValue.fInfo = *info; in YUVPlanesRec()
40 fValue.fData->attachToCacheAndRef(); in YUVPlanesRec()
43 fValue.fData->detachFromCacheAndUnref(); in ~YUVPlanesRec()
47 YUVValue fValue; member
50 size_t bytesUsed() const override { return sizeof(*this) + fValue.fData->size(); } in bytesUsed()
53 return fValue.fData->diagnostic_only_getDiscardable(); in diagnostic_only_getDiscardable()
60 SkCachedData* tmpData = rec.fValue.fData; in Visitor()
67 result->fInfo = rec.fValue.fInfo; in Visitor()
/external/skia/src/core/
DSkTMultiMap.h22 explicit ValueList(T* value) : fValue(value), fNext(nullptr) {} in ValueList()
24 static const Key& GetKey(const ValueList& e) { return HashTraits::GetKey(*e.fValue); } in GetKey()
26 T* fValue; member
37 HashTraits::OnFree(cur->fValue); in ~SkTMultiMap()
49 ValueList* newEntry = new ValueList(list->fValue); in insert()
54 list->fValue = value; in insert()
68 while (list->fValue != value) { in remove()
79 return list->fValue; in find()
88 if (f(list->fValue)){ in find()
89 return list->fValue; in find()
[all …]
DSkMaskCache.cpp43 fValue.fMask = mask; in RRectBlurRec()
44 fValue.fData = data; in RRectBlurRec()
45 fValue.fData->attachToCacheAndRef(); in RRectBlurRec()
48 fValue.fData->detachFromCacheAndUnref(); in ~RRectBlurRec()
52 MaskValue fValue; member
55 size_t bytesUsed() const override { return sizeof(*this) + fValue.fData->size(); } in bytesUsed()
58 return fValue.fData->diagnostic_only_getDiscardable(); in diagnostic_only_getDiscardable()
65 SkCachedData* tmpData = rec.fValue.fData; in Visitor()
71 *result = rec.fValue; in Visitor()
137 fValue.fMask = mask; in RectsBlurRec()
[all …]
DSkYUVPlanesCache.cpp38 fValue.fData = data; in YUVPlanesRec()
39 fValue.fInfo = *info; in YUVPlanesRec()
40 fValue.fData->attachToCacheAndRef(); in YUVPlanesRec()
43 fValue.fData->detachFromCacheAndUnref(); in ~YUVPlanesRec()
47 YUVValue fValue; member
50 size_t bytesUsed() const override { return sizeof(*this) + fValue.fData->size(); } in bytesUsed()
53 return fValue.fData->diagnostic_only_getDiscardable(); in diagnostic_only_getDiscardable()
60 SkCachedData* tmpData = rec.fValue.fData; in Visitor()
67 result->fInfo = rec.fValue.fInfo; in Visitor()
/external/parameter-framework/upstream/parameter/
DFloatingPointParameterType.cpp155 float fValue = 0.0f; in toBlackboard() local
158 if (!convertTo(strValue, fValue)) { in toBlackboard()
164 if (!checkValueAgainstRange(fValue)) { in toBlackboard()
171 uiValue = utility::binaryCopy<decltype(uiValue)>(fValue); in toBlackboard()
223 auto fValue = utility::binaryCopy<float>(uiValue); in fromBlackboard() local
225 ostrStream << fValue; in fromBlackboard()
244 float fValue = static_cast<float>(dUserValue); in toBlackboard() local
245 uiValue = utility::binaryCopy<decltype(uiValue)>(fValue); in toBlackboard()
253 auto fValue = utility::binaryCopy<float>(uiValue); in fromBlackboard() local
255 dUserValue = fValue; in fromBlackboard()
[all …]
/external/skia/src/gpu/
DGrResourceHandle.h17 GrResourceHandle(int value) : fValue(value) { in GrResourceHandle()
21 GrResourceHandle() : fValue(kInvalid_ResourceHandle) {} in GrResourceHandle()
23 bool operator==(const GrResourceHandle& other) const { return other.fValue == fValue; }
24 bool isValid() const { return kInvalid_ResourceHandle != fValue; } in isValid()
25 int toIndex() const { SkASSERT(this->isValid()); return fValue; } in toIndex()
29 int fValue; variable
/external/skqp/src/gpu/
DGrResourceHandle.h17 GrResourceHandle(int value) : fValue(value) { in GrResourceHandle()
21 GrResourceHandle() : fValue(kInvalid_ResourceHandle) {} in GrResourceHandle()
23 bool operator==(const GrResourceHandle& other) const { return other.fValue == fValue; }
24 bool isValid() const { return kInvalid_ResourceHandle != fValue; } in isValid()
25 int toIndex() const { SkASSERT(this->isValid()); return fValue; } in toIndex()
29 int fValue; variable
/external/icu/icu4c/source/i18n/unicode/
Dfmtable.h297 double getDouble(void) const { return fValue.fDouble; } in getDouble()
319 int32_t getLong(void) const { return (int32_t)fValue.fInt64; } in getLong()
345 int64_t getInt64(void) const { return fValue.fInt64; } in getInt64()
370 UDate getDate() const { return fValue.fDate; } in getDate()
390 { result=*fValue.fString; return result; } in getString()
448 { count=fValue.fArrayAndCount.fCount; return fValue.fArrayAndCount.fArray; } in getArray()
469 Formattable& operator[](int32_t index) { return fValue.fArrayAndCount.fArray[index]; }
705 } fValue; variable
724 return fValue.fDate; in getDate()
728 return *fValue.fString; in getString()
[all …]
/external/skqp/include/core/
DSkFontStyle.h47 constexpr SkFontStyle(int weight, int width, Slant slant) : fValue( in SkFontStyle()
56 return fValue == rhs.fValue;
59 int weight() const { return fValue & 0xFFFF; } in weight()
60 int width() const { return (fValue >> 16) & 0xFF; } in width()
61 Slant slant() const { return (Slant)((fValue >> 24) & 0xFF); } in slant()
77 uint32_t fValue;
/external/skia/include/core/
DSkFontStyle.h47 constexpr SkFontStyle(int weight, int width, Slant slant) : fValue( in SkFontStyle()
56 return fValue == rhs.fValue;
59 int weight() const { return fValue & 0xFFFF; } in weight()
60 int width() const { return (fValue >> 16) & 0xFF; } in width()
61 Slant slant() const { return (Slant)((fValue >> 24) & 0xFF); } in slant()
77 uint32_t fValue;
/external/skia/src/sksl/ir/
DSkSLFloatLiteral.h23 , fValue(value) {}
26 return to_string(fValue); in description()
39 return fValue == f.fValue; in compareConstant()
43 return fValue; in getConstantFloat()
46 const double fValue; member
DSkSLIntLiteral.h24 , fValue(value) {}
27 return to_string(fValue); in description()
40 return fValue == i.fValue; in compareConstant()
51 return fValue; in getConstantInt()
54 const int64_t fValue; member
DSkSLBoolLiteral.h22 , fValue(value) {} in BoolLiteral()
25 return String(fValue ? "true" : "false"); in description()
38 return fValue == b.fValue; in compareConstant()
41 const bool fValue; member
/external/skqp/src/sksl/ir/
DSkSLFloatLiteral.h23 , fValue(value) {}
26 return to_string(fValue); in description()
39 return fValue == f.fValue; in compareConstant()
43 return fValue; in getConstantFloat()
46 const double fValue; member
DSkSLIntLiteral.h24 , fValue(value) {}
27 return to_string(fValue); in description()
40 return fValue == i.fValue; in compareConstant()
51 return fValue; in getConstantInt()
54 const int64_t fValue; member
DSkSLBoolLiteral.h22 , fValue(value) {} in BoolLiteral()
25 return String(fValue ? "true" : "false"); in description()
38 return fValue == b.fValue; in compareConstant()
41 const bool fValue; member
/external/pdfium/core/fxcrt/css/
Dcfx_css.h190 CFX_CSSLength(CFX_CSSLengthUnit eUnit, float fValue) in CFX_CSSLength() argument
191 : m_unit(eUnit), m_fValue(fValue) {} in CFX_CSSLength()
198 CFX_CSSLength& Set(CFX_CSSLengthUnit eUnit, float fValue) { in Set() argument
200 m_fValue = fValue; in Set()
231 CFX_CSSRect& Set(CFX_CSSLengthUnit eUnit, float fValue) { in Set() argument
232 left.Set(eUnit, fValue); in Set()
233 top.Set(eUnit, fValue); in Set()
234 right.Set(eUnit, fValue); in Set()
235 bottom.Set(eUnit, fValue); in Set()
/external/skia/experimental/svg/model/
DSkSVGTypes.h25 explicit constexpr SkSVGPrimitiveTypeWrapper(T v) : fValue(v) {} in SkSVGPrimitiveTypeWrapper()
29 SkSVGPrimitiveTypeWrapper& operator=(const T& v) { fValue = v; return *this; }
32 return fValue == other.fValue;
38 const T& value() const { return fValue; } in value()
39 operator const T&() const { return fValue; }
42 T fValue;
68 constexpr SkSVGLength() : fValue(0), fUnit(Unit::kUnknown) {} in SkSVGLength()
70 : fValue(v), fUnit(u) {} in fValue() function
75 return fUnit == other.fUnit && fValue == other.fValue;
79 const SkScalar& value() const { return fValue; } in value()
[all …]
/external/skqp/experimental/svg/model/
DSkSVGTypes.h25 explicit constexpr SkSVGPrimitiveTypeWrapper(T v) : fValue(v) {} in SkSVGPrimitiveTypeWrapper()
29 SkSVGPrimitiveTypeWrapper& operator=(const T& v) { fValue = v; return *this; }
32 return fValue == other.fValue;
38 const T& value() const { return fValue; } in value()
39 operator const T&() const { return fValue; }
42 T fValue;
68 constexpr SkSVGLength() : fValue(0), fUnit(Unit::kUnknown) {} in SkSVGLength()
70 : fValue(v), fUnit(u) {} in fValue() function
75 return fUnit == other.fUnit && fValue == other.fValue;
79 const SkScalar& value() const { return fValue; } in value()
[all …]
/external/skia/bench/
DImageCacheBench.cpp15 intptr_t fValue; member in __anonb04c379c0111::TestKey
17 TestKey(intptr_t value) : fValue(value) { in TestKey()
18 this->init(&gGlobalAddress, 0, sizeof(fValue)); in TestKey()
23 intptr_t fValue; member
25 TestRec(const TestKey& key, intptr_t value) : fKey(key), fValue(value) {} in TestRec()
28 size_t bytesUsed() const override { return sizeof(fKey) + sizeof(fValue); } in bytesUsed()
/external/skqp/bench/
DImageCacheBench.cpp15 intptr_t fValue; member in __anone9448f730111::TestKey
17 TestKey(intptr_t value) : fValue(value) { in TestKey()
18 this->init(&gGlobalAddress, 0, sizeof(fValue)); in TestKey()
23 intptr_t fValue; member
25 TestRec(const TestKey& key, intptr_t value) : fKey(key), fValue(value) {} in TestRec()
28 size_t bytesUsed() const override { return sizeof(fKey) + sizeof(fValue); } in bytesUsed()

1234567