Searched refs:fValue (Results 1 - 25 of 56) sorted by relevance

123

/external/icu/icu4c/source/i18n/
H A Dfmtable.cpp101 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
[all...]
H A Dfmtable_cnv.cpp37 fValue.fString = new UnicodeString(stringToCopy);
/external/junit/src/org/junit/internal/
H A DAssumptionViolatedException.java11 private final Object fValue; field in class:AssumptionViolatedException
17 fValue= value;
33 description.appendValue(fValue);
37 description.appendText("failed assumption: " + fValue);
/external/skia/src/core/
H A DSkTMultiMap.h23 explicit ValueList(T* value) : fValue(value), fNext(NULL) {}
25 static const Key& GetKey(const ValueList& e) { return HashTraits::GetKey(*e.fValue); }
27 T* fValue; member in struct:SkTMultiMap::ValueList
43 ValueList* newEntry = SkNEW_ARGS(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...]
H A DSkYUVPlanesCache.cpp38 fValue.fData = data;
39 fValue.fInfo = *info;
40 fValue.fData->attachToCacheAndRef();
43 fValue.fData->detachFromCacheAndUnref();
47 YUVValue fValue; member in struct:__anon13936::YUVPlanesRec
50 size_t bytesUsed() const override { return sizeof(*this) + fValue.fData->size(); }
56 SkCachedData* tmpData = rec.fValue.fData;
63 result->fInfo = rec.fValue.fInfo;
H A DSkMaskCache.cpp43 fValue.fMask = mask;
44 fValue.fData = data;
45 fValue.fData->attachToCacheAndRef();
48 fValue.fData->detachFromCacheAndUnref();
52 MaskValue fValue; member in struct:__anon13911::RRectBlurRec
55 size_t bytesUsed() const override { return sizeof(*this) + fValue.fData->size(); }
61 SkCachedData* tmpData = rec.fValue.fData;
67 *result = rec.fValue;
134 fValue.fMask = mask;
135 fValue
143 MaskValue fValue; member in struct:__anon13912::RectsBlurRec
[all...]
/external/skia/bench/
H A DImageCacheBench.cpp15 intptr_t fValue; member in class:__anon13691::TestKey
17 TestKey(intptr_t value) : fValue(value) {
18 this->init(&gGlobalAddress, 0, sizeof(fValue));
23 intptr_t fValue; member in struct:__anon13691::TestRec
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/src/gpu/gl/
H A DGrGLProgramDataManager.h31 bool isValid() const { return -1 != fValue; }
33 : fValue(-1) {
37 : fValue(value) {
40 int fValue; member in class:GrGLProgramDataManager::ShaderResourceHandle
49 bool operator==(const UniformHandle& other) const { return other.fValue == fValue; }
52 int toProgramDataIndex() const { SkASSERT(isValid()); return fValue; }
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DFastMath.java415 * <ul><li>If fValue is smaller than -1, then the result is PI.
417 * @param fValue The angle, in radians.
418 * @return fValue's acos
421 public static float acos(float fValue) { argument
422 if (-1.0f < fValue) {
423 if (fValue < 1.0f) {
424 return (float) Math.acos(fValue);
436 * <ul><li>If fValue is smaller than -1, then the result is -HALF_PI.
438 * @param fValue The angle, in radians.
439 * @return fValue'
442 asin(float fValue) argument
460 atan(float fValue) argument
481 ceil(float fValue) argument
516 sin2(float fValue) argument
533 cos2(float fValue) argument
551 exp(float fValue) argument
561 abs(float fValue) argument
574 floor(float fValue) argument
584 invSqrt(float fValue) argument
603 log(float fValue) argument
634 sqr(float fValue) argument
644 sqrt(float fValue) argument
655 tan(float fValue) argument
679 sign(float fValue) argument
[all...]
/external/skia/include/utils/
H A DSkRTConf.h40 operator const T&() const { return fValue; }
43 bool isDefault() const { return fDefault == fValue; }
44 void set(const T& value) { fValue = value; }
48 T fValue; member in class:SkRTConf
110 , fValue(defaultValue)
116 fValue = value;
149 sprintf(tmp, "%s # [%s]", fValue ? "true" : "false", fDefault ? "true" : "false");
155 sprintf(tmp, "%d # [%d]", fValue, fDefault);
161 sprintf(tmp, "%u # [%u]", fValue, fDefault);
167 sprintf(tmp, "%6.6f # [%6.6f]", fValue, fDefaul
[all...]
/external/skia/src/views/
H A DSkProgressView.cpp17 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/icu/icu4c/source/i18n/unicode/
H A Dfmtable.h295 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; member in class:Formattable
722 return fValue
[all...]
/external/skia/tests/
H A DImageCacheTest.cpp15 intptr_t fValue; member in struct:__anon14128::TestingKey
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; member in struct:__anon14128::TestingRec
28 size_t bytesUsed() const override { return sizeof(fKey) + sizeof(fValue); }
34 *result = rec.fValue;
H A DScalarTest.cpp129 float fValue; member in struct:Rec
173 bool finite = gProc1[k](rec.fValue);
186 bool finite = gProc2[m](rec0.fValue, rec1.fValue, proc1);
H A DGrMemoryPoolTest.cpp182 int fValue; member in struct:Rec
214 rec->fValue = static_cast<int>(r.nextU());
215 rec->fInstance->setValues(rec->fValue);
219 REPORTER_ASSERT(reporter, rec.fInstance->checkValues(rec.fValue));
226 REPORTER_ASSERT(reporter, rec.fInstance->checkValues(rec.fValue));
232 REPORTER_ASSERT(reporter, rec.fInstance->checkValues(rec.fValue));
H A DTDPQueueTest.cpp68 int fValue; member in struct:Dummy
76 return fValue == that.fValue && fPriority == that.fPriority;
93 dummy->fValue = random.nextS();
/external/skia/include/core/
H A DSkTDict.h36 fArray[index].fValue = value;
44 pair->fValue = value;
66 *value = fArray[index].fValue;
76 if (pair->fValue != value) {
88 T fValue; member in struct:SkTDict::Pair
113 *value = fIter->fValue;
/external/skia/samplecode/
H A DSampleFilterQuality.cpp79 SkScalar fValue; member in struct:AnimValue
84 operator SkScalar() const { return fValue; }
87 fValue = value;
94 fValue = value;
101 fValue += delta;
107 fValue = SkScalarMod(fValue, fMod);
109 if (fValue > fMax) {
110 fValue = fMax;
111 } else if (fValue < fMi
[all...]
/external/skia/src/animator/
H A DSkDrawColor.h33 SkScalar fValue; member in class:SkDrawColor
H A DSkDrawColor.cpp125 fHue = fSaturation = fValue = SK_ScalarNaN;
141 copy->fValue = fValue;
161 if (SkScalarIsNaN(fValue) == false)
162 color = HSV_to_RGB(color, kGetValue, fValue);
257 fValue = scalar;//RGB_to_HSV(color, kGetValue);
/external/guava/guava/src/com/google/common/primitives/
H A DUnsignedLong.java201 float fValue = (float) (value & UNSIGNED_MASK);
203 fValue += 0x1.0p63f;
205 return fValue;
/external/skia/third_party/ktx/
H A Dktx.h104 const SkString& value() const { return fValue; }
109 SkString fValue; member in class:SkKTXFile::KeyValue
/external/pdfium/core/src/fxcrt/
H A Dfx_extension.cpp169 FX_FLOAT fValue = 0.0f; local
173 fValue = fValue * 10.0f + (wch - L'0');
184 fValue += (wch - L'0') * fPrecise;
194 return bNegtive ? -fValue : fValue;
/external/icu/icu4c/source/test/intltest/
H A Dfldset.cpp160 fValue[i]=-1;
169 fValue[field] = -1;
176 fValue[field] = amount;
190 return fValue[field];
/external/skia/src/pdf/
H A DSkPDFTypes.h175 SkPDFAtom(SkPDFUnion&& v) : fValue(v.move()) {}
178 const SkPDFUnion fValue;
296 SkPDFUnion fValue; member in struct:SkPDFDict::Record

Completed in 589 milliseconds

123