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

1 2 3 4 5 6 7

  /external/skia/src/gpu/
GrResourceHandle.h 17 GrResourceHandle(int value) : fValue(value) {
21 GrResourceHandle() : fValue(kInvalid_ResourceHandle) {}
23 bool operator==(const GrResourceHandle& other) const { return other.fValue == fValue; }
24 bool isValid() const { return kInvalid_ResourceHandle != fValue; }
25 int toIndex() const { SkASSERT(this->isValid()); return fValue; }
29 int fValue;
  /external/skia/src/sksl/ast/
SkSLASTBoolLiteral.h 21 , fValue(value) {}
24 return String(fValue ? "true" : "false");
27 const bool fValue;
SkSLASTFloatLiteral.h 21 , fValue(value) {}
24 return to_string(fValue);
27 const double fValue;
SkSLASTIntLiteral.h 22 , fValue(value) {}
25 return to_string(fValue);
28 const uint64_t fValue;
SkSLASTSwitchCase.h 23 , fValue(std::move(value))
28 if (fValue) {
29 result.appendf("case %s:\n", fValue->description().c_str());
40 const std::unique_ptr<ASTExpression> fValue;
SkSLASTSwitchStatement.h 24 , fValue(std::move(value))
32 result += String::printf("switch (%s) {\n", fValue->description().c_str());
41 const std::unique_ptr<ASTExpression> fValue;
  /external/skia/src/sksl/ir/
SkSLTypeReference.h 23 , fValue(type) {}
30 return fValue.name();
33 const Type& fValue;
SkSLBoolLiteral.h 22 , fValue(value) {}
25 return String(fValue ? "true" : "false");
38 return fValue == b.fValue;
41 const bool fValue;
SkSLFloatLiteral.h 23 , fValue(value) {}
26 return to_string(fValue);
39 return fValue == f.fValue;
42 const double fValue;
SkSLIntLiteral.h 24 , fValue(value) {}
27 return to_string(fValue);
40 return fValue == i.fValue;
43 const int64_t fValue;
SkSLSetting.h 24 , fValue(std::move(value)) {
25 ASSERT(fValue->isConstant());
44 std::unique_ptr<Expression> fValue;
SkSLSetting.cpp 17 return VariableReference::copy_constant(irGenerator, fValue.get());
SkSLSwitchCase.h 23 , fValue(std::move(value))
28 if (fValue) {
29 result.appendf("case %s:\n", fValue->description().c_str());
40 std::unique_ptr<Expression> fValue;
SkSLSwitchStatement.h 25 , fValue(std::move(value))
34 result += String::printf("switch (%s) {\n", fValue->description().c_str());
43 std::unique_ptr<Expression> fValue;
  /external/pdfium/xfa/fxfa/parser/
cxfa_measurement.cpp 19 CXFA_Measurement::CXFA_Measurement(FX_FLOAT fValue, XFA_UNIT eUnit) {
20 Set(fValue, eUnit);
31 FX_FLOAT fValue = FXSYS_wcstof(wsMeasure.c_str() + iOffset,
34 Set(fValue, eUnit);
69 bool CXFA_Measurement::ToUnit(XFA_UNIT eUnit, FX_FLOAT& fValue) const {
70 fValue = GetValue();
79 fValue *= 72 / 2.54f / 10;
82 fValue *= 72;
85 fValue *= 72 / 2.54f;
88 fValue *= 0.001f
    [all...]
cxfa_measurement.h 18 CXFA_Measurement(FX_FLOAT fValue, XFA_UNIT eUnit);
21 void Set(FX_FLOAT fValue, XFA_UNIT eUnit) {
22 m_fValue = fValue;
31 bool ToUnit(XFA_UNIT eUnit, FX_FLOAT& fValue) const;
cxfa_data.h 28 FX_FLOAT& fValue,
30 bool SetMeasure(XFA_ATTRIBUTE eAttr, FX_FLOAT fValue);
  /external/icu/icu4c/source/i18n/
fmtable.cpp 103 fValue.fInt64 = 0;
125 fValue.fDate = date;
135 fValue.fDouble = value;
144 fValue.fInt64 = value;
154 fValue.fInt64 = value;
173 fValue.fString = new UnicodeString(stringToCopy);
184 fValue.fString = stringToAdopt;
191 fValue.fObject = objectToAdopt;
201 fValue.fArrayAndCount.fArray = createArrayCopy(arrayToCopy, count);
202 fValue.fArrayAndCount.fCount = count
    [all...]
fmtable_cnv.cpp 39 fValue.fString = new UnicodeString(stringToCopy);
  /external/skia/src/core/
SkYUVPlanesCache.cpp 38 fValue.fData = data;
39 fValue.fInfo = *info;
40 fValue.fData->attachToCacheAndRef();
43 fValue.fData->detachFromCacheAndUnref();
47 YUVValue fValue;
50 size_t bytesUsed() const override { return sizeof(*this) + fValue.fData->size(); }
53 return fValue.fData->diagnostic_only_getDiscardable();
60 SkCachedData* tmpData = rec.fValue.fData;
67 result->fInfo = rec.fValue.fInfo;
SkTMultiMap.h 22 explicit ValueList(T* value) : fValue(value), fNext(nullptr) {}
24 static const Key& GetKey(const ValueList& e) { return HashTraits::GetKey(*e.fValue); }
26 T* fValue;
42 ValueList* newEntry = new ValueList(list->fValue);
47 list->fValue = value;
61 while (list->fValue != value) {
68 list->fValue = next->fValue;
85 return list->fValue;
94 if (f(list->fValue)){
    [all...]
SkMaskCache.cpp 43 fValue.fMask = mask;
44 fValue.fData = data;
45 fValue.fData->attachToCacheAndRef();
48 fValue.fData->detachFromCacheAndUnref();
52 MaskValue fValue;
55 size_t bytesUsed() const override { return sizeof(*this) + fValue.fData->size(); }
58 return fValue.fData->diagnostic_only_getDiscardable();
65 SkCachedData* tmpData = rec.fValue.fData;
71 *result = rec.fValue;
137 fValue.fMask = mask
    [all...]
  /external/skia/bench/
ImageCacheBench.cpp 15 intptr_t fValue;
17 TestKey(intptr_t value) : fValue(value) {
18 this->init(&gGlobalAddress, 0, sizeof(fValue));
23 intptr_t fValue;
25 TestRec(const TestKey& key, intptr_t value) : fKey(key), fValue(value) {}
28 size_t bytesUsed() const override { return sizeof(fKey) + sizeof(fValue); }
  /external/parameter-framework/upstream/parameter/
FloatingPointParameterType.cpp 155 float fValue = 0.0f;
158 if (!convertTo(strValue, fValue)) {
164 if (!checkValueAgainstRange(fValue)) {
171 uiValue = utility::binaryCopy<decltype(uiValue)>(fValue);
223 auto fValue = utility::binaryCopy<float>(uiValue);
225 ostrStream << fValue;
244 float fValue = static_cast<float>(dUserValue);
245 uiValue = utility::binaryCopy<decltype(uiValue)>(fValue);
253 auto fValue = utility::binaryCopy<float>(uiValue);
255 dUserValue = fValue;
    [all...]
  /external/icu/icu4c/source/i18n/unicode/
fmtable.h 297 double getDouble(void) const { return fValue.fDouble; }
319 int32_t getLong(void) const { return (int32_t)fValue.fInt64; }
345 int64_t getInt64(void) const { return fValue.fInt64; }
370 UDate getDate() const { return fValue.fDate; }
390 { result=*fValue.fString; return result; }
448 { count=fValue.fArrayAndCount.fCount; return fValue.fArrayAndCount.fArray; }
469 Formattable& operator[](int32_t index) { return fValue.fArrayAndCount.fArray[index]; }
705 } fValue;
724 return fValue.fDate
    [all...]

Completed in 239 milliseconds

1 2 3 4 5 6 7