HomeSort by relevance Sort by last modified time
    Searched defs:fArray (Results 1 - 25 of 50) sorted by null

1 2

  /external/chromium_org/third_party/skia/include/utils/
SkPictureUtils.h 51 PixelRefAndRect *dst = fArray.append();
58 for (int i = 0; i < fArray.count(); ++i) {
59 if (SkRect::Intersects(fArray[i].fRect, queryRect)) {
60 *result->append() = fArray[i].fPixelRef;
71 SkTDArray<PixelRefAndRect> fArray;
SkJSON.h 242 return fArray.fObjects;
246 return fArray.fArrays;
250 return fArray.fStrings;
254 return fArray.fInts;
258 return fArray.fFloats;
262 return fArray.fBools;
276 } fArray;
  /external/chromium_org/third_party/skia/src/core/
SkTypefaceCache.h 97 SkTDArray<Rec> fArray;
SkLazyPtr.h 127 T* ptr = (T*)sk_acquire_load(&fArray[i]);
128 return ptr ? ptr : try_cas<T*, Destroy>(&fArray[i], Create(i));
134 Destroy((T*)fArray[i]);
135 fArray[i] = NULL;
141 void* fArray[N];
  /external/skia/include/utils/
SkPictureUtils.h 51 PixelRefAndRect *dst = fArray.append();
58 for (int i = 0; i < fArray.count(); ++i) {
59 if (SkRect::Intersects(fArray[i].fRect, queryRect)) {
60 *result->append() = fArray[i].fPixelRef;
71 SkTDArray<PixelRefAndRect> fArray;
SkJSON.h 242 return fArray.fObjects;
246 return fArray.fArrays;
250 return fArray.fStrings;
254 return fArray.fInts;
258 return fArray.fFloats;
262 return fArray.fBools;
276 } fArray;
  /external/skia/src/core/
SkTypefaceCache.h 97 SkTDArray<Rec> fArray;
SkLazyPtr.h 127 T* ptr = (T*)sk_acquire_load(&fArray[i]);
128 return ptr ? ptr : try_cas<T*, Destroy>(&fArray[i], Create(i));
134 Destroy((T*)fArray[i]);
135 fArray[i] = NULL;
141 void* fArray[N];
  /frameworks/base/core/jni/
android_nio_utils.h 67 jarray fArray;
  /external/chromium_org/third_party/skia/include/effects/
SkColorMatrixFilter.h 33 int32_t fArray[20];
  /external/skia/include/effects/
SkColorMatrixFilter.h 33 int32_t fArray[20];
  /external/chromium_org/third_party/skia/src/animator/
SkOperand.h 23 SkTypedArray* fArray;
36 SkTypedArray* getArray() { SkASSERT(fType == SkType_Array); return fOperand.fArray; }
SkOperand2.h 25 SkOpArray* fArray;
46 SkOpArray* getArray() { SkASSERT(fType == SkOperand2::kArray); return fOperand.fArray; }
SkTDArray_Experimental.h 60 memmove(fArray + index, fArray + index + count, sizeof(int32_t) * (fCount - index));
65 if (fArray)
67 sk_free(fArray);
68 fArray = NULL;
94 int32_t* fArray;
100 #define SYNC() fTData = (T (*)[kDebugArraySize]) fArray
109 ~SkTDS32Array() { sk_free(fArray); }
110 T& operator[](int index) const { SYNC(); SkASSERT((unsigned)index < fCount); return ((T*) fArray)[index]; }
118 T* begin() const { SYNC(); return (T*) fArray; }
    [all...]
  /external/chromium_org/third_party/skia/src/utils/
SkPictureUtils.cpp 19 PixelRefSet(SkTDArray<SkPixelRef*>* array) : fArray(array) {}
27 *fArray->append() = pr;
29 // SkDebugf("--- adding [%d] %x %d\n", fArray->count() - 1, pr, genID);
36 SkTDArray<SkPixelRef*>* fArray;
  /external/skia/src/animator/
SkOperand.h 23 SkTypedArray* fArray;
36 SkTypedArray* getArray() { SkASSERT(fType == SkType_Array); return fOperand.fArray; }
SkOperand2.h 25 SkOpArray* fArray;
46 SkOpArray* getArray() { SkASSERT(fType == SkOperand2::kArray); return fOperand.fArray; }
SkTDArray_Experimental.h 60 memmove(fArray + index, fArray + index + count, sizeof(int32_t) * (fCount - index));
65 if (fArray)
67 sk_free(fArray);
68 fArray = NULL;
94 int32_t* fArray;
100 #define SYNC() fTData = (T (*)[kDebugArraySize]) fArray
109 ~SkTDS32Array() { sk_free(fArray); }
110 T& operator[](int index) const { SYNC(); SkASSERT((unsigned)index < fCount); return ((T*) fArray)[index]; }
118 T* begin() const { SYNC(); return (T*) fArray; }
    [all...]
  /external/skia/src/utils/
SkPictureUtils.cpp 19 PixelRefSet(SkTDArray<SkPixelRef*>* array) : fArray(array) {}
27 *fArray->append() = pr;
29 // SkDebugf("--- adding [%d] %x %d\n", fArray->count() - 1, pr, genID);
36 SkTDArray<SkPixelRef*>* fArray;
  /external/chromium_org/third_party/skia/bench/
ScalarBench.cpp 57 init9(fArray);
64 junk ^= (fArray[6] != 0.0f || fArray[7] != 0.0f || fArray[8] != 1.0f);
65 junk ^= (fArray[2] != 0.0f || fArray[5] != 0.0f);
68 float fArray[9];
76 init9(fArray);
83 junk ^= (SkScalarAs2sCompliment(fArray[6]) |
84 SkScalarAs2sCompliment(fArray[7])
    [all...]
  /external/chromium_org/third_party/skia/include/core/
SkTDict.h 20 fArray.reset();
24 int count() const { return fArray.count(); }
36 fArray[index].fValue = value;
39 Pair* pair = fArray.insert(~index);
66 *value = fArray[index].fValue;
74 const Pair* end = fArray.end();
75 for (const Pair* pair = fArray.begin(); pair < end; pair++) {
104 fIter = dict.fArray.begin();
105 fStop = dict.fArray.end();
125 SkTDArray<Pair> fArray;
    [all...]
  /external/skia/bench/
ScalarBench.cpp 57 init9(fArray);
64 junk ^= (fArray[6] != 0.0f || fArray[7] != 0.0f || fArray[8] != 1.0f);
65 junk ^= (fArray[2] != 0.0f || fArray[5] != 0.0f);
68 float fArray[9];
76 init9(fArray);
83 junk ^= (SkScalarAs2sCompliment(fArray[6]) |
84 SkScalarAs2sCompliment(fArray[7])
    [all...]
  /external/skia/include/core/
SkTDict.h 20 fArray.reset();
24 int count() const { return fArray.count(); }
36 fArray[index].fValue = value;
39 Pair* pair = fArray.insert(~index);
66 *value = fArray[index].fValue;
74 const Pair* end = fArray.end();
75 for (const Pair* pair = fArray.begin(); pair < end; pair++) {
104 fIter = dict.fArray.begin();
105 fStop = dict.fArray.end();
125 SkTDArray<Pair> fArray;
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/unicode/
fmtable.h 432 { count=fValue.fArrayAndCount.fCount; return fValue.fArrayAndCount.fArray; }
453 Formattable& operator[](int32_t index) { return fValue.fArrayAndCount.fArray[index]; }
634 Formattable* fArray;
  /external/icu/icu4c/source/i18n/unicode/
fmtable.h 446 { count=fValue.fArrayAndCount.fCount; return fValue.fArrayAndCount.fArray; }
467 Formattable& operator[](int32_t index) { return fValue.fArrayAndCount.fArray[index]; }
702 Formattable* fArray;

Completed in 425 milliseconds

1 2