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

1 2 3 4 5 6

  /external/icu/icu4c/source/i18n/
fmtable.cpp 101 fValue.fInt64 = 0;
123 fValue.fDate = date;
133 fValue.fDouble = value;
142 fValue.fInt64 = value;
152 fValue.fInt64 = value;
171 fValue.fString = new UnicodeString(stringToCopy);
182 fValue.fString = stringToAdopt;
189 fValue.fObject = objectToAdopt;
199 fValue.fArrayAndCount.fArray = createArrayCopy(arrayToCopy, count);
200 fValue.fArrayAndCount.fCount = count
    [all...]
fmtable_cnv.cpp 37 fValue.fString = new UnicodeString(stringToCopy);
  /external/skia/src/gpu/glsl/
GrGLSLProgramDataManager.h 25 : fValue(value) {
30 : fValue(kInvalid_ShaderResourceHandle) {
33 bool operator==(const ShaderResourceHandle& other) const { return other.fValue == fValue; }
34 bool isValid() const { return kInvalid_ShaderResourceHandle != fValue; }
35 int toIndex() const { SkASSERT(this->isValid()); return fValue; }
39 int fValue;
  /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 23 explicit ValueList(T* value) : fValue(value), fNext(nullptr) {}
25 static const Key& GetKey(const ValueList& e) { return HashTraits::GetKey(*e.fValue); }
27 T* fValue;
43 ValueList* newEntry = new ValueList(list->fValue);
48 list->fValue = value;
62 while (list->fValue != value) {
69 list->fValue = next->fValue;
86 return list->fValue;
95 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;
138 fValue.fMask = mask
    [all...]
  /external/junit/src/org/junit/internal/
AssumptionViolatedException.java 11 private final Object fValue;
17 fValue= value;
33 description.appendValue(fValue);
37 description.appendText("failed assumption: " + fValue);
  /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/skia/include/utils/
SkRTConf.h 39 operator const T&() const { return fValue; }
42 bool isDefault() const { return fDefault == fValue; }
43 void set(const T& value) { fValue = value; }
47 T fValue;
109 , fValue(defaultValue)
115 fValue = value;
148 sprintf(tmp, "%s # [%s]", fValue ? "true" : "false", fDefault ? "true" : "false");
154 sprintf(tmp, "%d # [%d]", fValue, fDefault);
160 sprintf(tmp, "%u # [%u]", fValue, fDefault);
166 sprintf(tmp, "%6.6f # [%6.6f]", fValue, fDefault)
    [all...]
  /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...]
FloatingPointParameterType.h 75 * @param[in] fValue the user interpreted value
78 bool checkValueAgainstRange(float fValue) const;
  /external/icu/icu4c/source/i18n/unicode/
fmtable.h 295 double getDouble(void) const { return fValue.fDouble; }
317 int32_t getLong(void) const { return (int32_t)fValue.fInt64; }
343 int64_t getInt64(void) const { return fValue.fInt64; }
368 UDate getDate() const { return fValue.fDate; }
388 { result=*fValue.fString; return result; }
446 { count=fValue.fArrayAndCount.fCount; return fValue.fArrayAndCount.fArray; }
467 Formattable& operator[](int32_t index) { return fValue.fArrayAndCount.fArray[index]; }
703 } fValue;
722 return fValue.fDate
    [all...]
  /external/libgdx/backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/
AndroidAudioDevice.java 75 float fValue = samples[i];
76 if (fValue > 1) fValue = 1;
77 if (fValue < -1) fValue = -1;
78 short value = (short)(fValue * Short.MAX_VALUE);
  /external/skia/include/private/
SkTDict.h 36 fArray[index].fValue = value;
44 pair->fValue = value;
66 *value = fArray[index].fValue;
76 if (pair->fValue != value) {
88 T fValue;
113 *value = fIter->fValue;
  /external/skia/src/views/
SkProgressView.cpp 17 fValue = 0;
35 if (fValue > 0)
42 if (fValue != value)
49 SkScalar x = (SkScalar)(fValue << 8);
54 fValue = SkToU16(value);
81 U16CPU value = SkMax32(0, SkMin32(fValue, fMax));
  /external/skia/tests/
ImageCacheTest.cpp 15 intptr_t fValue;
17 TestingKey(intptr_t value, uint64_t sharedID = 0) : fValue(value) {
18 this->init(&gGlobalAddress, sharedID, sizeof(fValue));
22 TestingRec(const TestingKey& key, uint32_t value) : fKey(key), fValue(value) {}
25 intptr_t fValue;
28 size_t bytesUsed() const override { return sizeof(fKey) + sizeof(fValue); }
36 *result = rec.fValue;
ScalarTest.cpp 129 float fValue;
173 bool finite = gProc1[k](rec.fValue);
186 bool finite = gProc2[m](rec0.fValue, rec1.fValue, proc1);
GrMemoryPoolTest.cpp 173 int fValue;
205 rec->fValue = static_cast<int>(r.nextU());
206 rec->fInstance->setValues(rec->fValue);
210 REPORTER_ASSERT(reporter, rec.fInstance->checkValues(rec.fValue));
217 REPORTER_ASSERT(reporter, rec.fInstance->checkValues(rec.fValue));
223 REPORTER_ASSERT(reporter, rec.fInstance->checkValues(rec.fValue));
  /external/skia/src/animator/
SkDrawColor.h 33 SkScalar fValue;
  /external/dng_sdk/source/
dng_image_writer.h 212 uint8 fValue;
219 : tag_data_ptr (code, ttByte, 1, &fValue)
221 , fValue (value)
228 fValue = value;
258 uint16 fValue;
265 : tag_data_ptr (code, ttShort, 1, &fValue)
267 , fValue (value)
274 fValue = value;
322 uint32 fValue;
329 : tag_data_ptr (code, ttLong, 1, &fValue)
    [all...]
  /external/skia/include/core/
SkDocument.h 148 SkString fKey, fValue;
149 Attribute(const SkString& k, const SkString& v) : fKey(k), fValue(v) {}
  /external/skia/samplecode/
SampleFilterQuality.cpp 107 SkScalar fValue;
112 operator SkScalar() const { return fValue; }
115 fValue = value;
122 fValue = value;
129 fValue += delta;
135 fValue = SkScalarMod(fValue, fMod);
137 if (fValue > fMax) {
138 fValue = fMax;
139 } else if (fValue < fMin)
    [all...]
  /external/pdfium/xfa/src/fdp/src/css/
fde_cssdeclaration.cpp 77 FX_FLOAT fValue) const {
79 if (eUnit == FDE_CSSPRIMITIVETYPE_Number && FXSYS_fabs(fValue) < 0.001f) {
82 return FDE_NewWith(pStaticStore) CFDE_CSSPrimitiveValue(eUnit, fValue);
285 FX_FLOAT fValue;
287 if (!FDE_ParseCSSNumber(pszValue, iValueLen, fValue, eUnit)) {
290 return NewNumberValue(pArgs->pStaticStore, eUnit, fValue);
384 FX_FLOAT fValue;
385 if (FDE_ParseCSSNumber(pszValue, iValueLen, fValue, ePrimitiveType)) {
387 NewNumberValue(pArgs->pStaticStore, ePrimitiveType, fValue));
478 FX_FLOAT fValue;
    [all...]
  /external/pdfium/xfa/src/fxfa/src/parser/
xfa_basic_imp.cpp 452 FX_FLOAT fValue = FX_wcstof(wsMeasure.GetPtr() + iOffset,
455 Set(fValue, eUnit);
488 FX_BOOL CXFA_Measurement::ToUnit(XFA_UNIT eUnit, FX_FLOAT& fValue) const {
489 fValue = GetValue();
498 fValue *= 72 / 2.54f / 10;
501 fValue *= 72;
504 fValue *= 72 / 2.54f;
507 fValue *= 0.001f;
510 fValue *= 12.0f;
513 fValue = 0;
    [all...]
  /external/pdfium/xfa/src/fgas/src/crt/
fx_system.cpp 109 FX_FLOAT fValue = 0.0f;
113 fValue = fValue * 10.0f + (wch - L'0');
124 fValue += (wch - L'0') * fPrecise;
134 return bNegtive ? -fValue : fValue;

Completed in 1860 milliseconds

1 2 3 4 5 6