Searched refs:fStop (Results 1 - 25 of 42) sorted by relevance

12

/external/chromium_org/third_party/skia/src/core/
H A DSkBuffer.h24 SkRBuffer() : fData(0), fPos(0), fStop(0) {}
31 fStop = 0; // no bounds checking
39 fStop = (const char*)data + size;
51 size_t size() const { return fStop - fData; }
56 bool eof() const { return fPos >= fStop; }
92 const char* fStop; member in class:SkRBuffer
127 SkWBuffer() : fData(0), fPos(0), fStop(0) {}
134 fStop = 0; // no bounds checking
141 fStop = (char*)data + size;
167 char* fStop; member in class:SkWBuffer
[all...]
H A DSkReader32.h23 SkReader32() : fCurr(NULL), fStop(NULL), fBase(NULL) {}
33 fStop = (const char*)data + size;
36 size_t size() const { return fStop - fBase; }
38 bool eof() const { return fCurr >= fStop; }
42 size_t available() const { return fStop - fCurr; }
59 SkASSERT(fCurr <= fStop);
79 SkASSERT(fCurr <= fStop);
87 SkASSERT(fCurr <= fStop);
101 SkASSERT(fCurr <= fStop);
150 const char* fStop; // en member in class:SkReader32
[all...]
H A DSkBuffer.cpp16 SkASSERT((fData != 0 && fStop == 0) || fPos + size <= fStop);
38 fError = fError || (fPos + size > fStop);
54 SkASSERT(fData == 0 || fStop == 0 || fPos + size <= fStop);
H A DSkTextToPathIter.h41 const char* fStop; member in class:SkTextToPathIter
H A DSkDeque.cpp17 char* fStop; // end of the allocated chunk member in struct:SkDeque::Block
25 fStop = (char*)this + size;
83 first->fEnd = first->fStop;
84 begin = first->fStop - fElemSize;
127 if (end > last->fStop) { // no more room in this chunk
/external/skia/include/core/
H A DSkReader32.h23 SkReader32() : fCurr(NULL), fStop(NULL), fBase(NULL) {}
33 fStop = (const char*)data + size;
36 size_t size() const { return fStop - fBase; }
38 bool eof() const { return fCurr >= fStop; }
42 size_t available() const { return fStop - fCurr; }
59 SkASSERT(fCurr <= fStop);
79 SkASSERT(fCurr <= fStop);
87 SkASSERT(fCurr <= fStop);
101 SkASSERT(fCurr <= fStop);
150 const char* fStop; // en member in class:SkReader32
[all...]
H A DSkTDict.h105 fStop = dict.fArray.end();
110 if (fIter < fStop) {
121 const Pair* fStop; member in class:SkTDict::Iter
/external/skia/src/core/
H A DSkBuffer.h24 SkRBuffer() : fData(0), fPos(0), fStop(0) {}
31 fStop = 0; // no bounds checking
39 fStop = (const char*)data + size;
51 size_t size() const { return fStop - fData; }
56 bool eof() const { return fPos >= fStop; }
92 const char* fStop; member in class:SkRBuffer
127 SkWBuffer() : fData(0), fPos(0), fStop(0) {}
134 fStop = 0; // no bounds checking
141 fStop = (char*)data + size;
167 char* fStop; member in class:SkWBuffer
[all...]
H A DSkBuffer.cpp16 SkASSERT((fData != 0 && fStop == 0) || fPos + size <= fStop);
38 fError = fError || (fPos + size > fStop);
54 SkASSERT(fData == 0 || fStop == 0 || fPos + size <= fStop);
H A DSkTextToPathIter.h41 const char* fStop; member in class:SkTextToPathIter
H A DSkDeque.cpp17 char* fStop; // end of the allocated chunk member in struct:SkDeque::Block
25 fStop = (char*)this + size;
83 first->fEnd = first->fStop;
84 begin = first->fStop - fElemSize;
127 if (end > last->fStop) { // no more room in this chunk
H A DSkPicturePlayback.h334 fStop = stop;
341 // All the operations between fStart and fStop (inclusive) will be replaced with
346 size_t fStop; member in struct:SkPicturePlayback::PlaybackReplacements::ReplacementInfo
378 SkASSERT(fStart == 0 && fStop == 0);
384 size_t fStop; member in class:SkPicturePlayback
H A DSkPicturePlayback.cpp47 SkASSERT(fReplacements[0].fStart < fReplacements[0].fStop);
50 SkASSERT(fReplacements[i].fStart < fReplacements[i].fStop);
51 SkASSERT(fReplacements[i-1].fStop < fReplacements[i].fStart);
239 fStop = 0;
821 // When draw limits are enabled (i.e., 0 != fStart || 0 != fStop) the state
823 if (0 == fStart && 0 == fStop) {
847 if (0 != fStart || 0 != fStop) {
885 if (0 != fStart || 0 != fStop) {
887 if (offset >= fStop) {
926 if (skipTo <= temp->fStop) {
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DGrRecordReplaceDraw.cpp29 SkASSERT(fReplacements[0].fStart < fReplacements[0].fStop);
32 SkASSERT(fReplacements[i].fStart < fReplacements[i].fStop);
33 SkASSERT(fReplacements[i - 1].fStop < fReplacements[i].fStart);
102 while ((uintptr_t)ops[i] < ri->fStop) {
105 SkASSERT((uintptr_t)ops[i] == ri->fStop);
119 i = ri->fStop;
H A DGrRecordReplaceDraw.h26 // All the operations between fStart and fStop (inclusive) will be replaced with
30 unsigned fStop; member in struct:GrReplacements::ReplacementInfo
H A DGrLayerCache.h57 , fStop(stop)
71 fStop == other.fStop &&
78 int stop() const { return fStop; }
87 const int fStop; member in struct:GrCachedLayer::Key
/external/junit/src/junit/framework/
H A DTestResult.java25 private boolean fStop; field in class:TestResult
34 fStop= false;
149 return fStop;
166 fStop= true;
/external/chromium_org/third_party/skia/include/core/
H A DSkTDict.h105 fStop = dict.fArray.end();
110 if (fIter < fStop) {
121 const Pair* fStop; member in class:SkTDict::Iter
/external/chromium_org/third_party/skia/include/xml/
H A DSkDOM.h78 const Attr* fStop; member in class:SkDOM::AttrIter
/external/skia/include/xml/
H A DSkDOM.h78 const Attr* fStop; member in class:SkDOM::AttrIter
/external/chromium_org/third_party/skia/src/pathops/
H A DSkOpAngle.h136 bool fStop; // set if ordered angle is greater than the previous member in class:SkOpAngle
/external/skia/src/pathops/
H A DSkOpAngle.h136 bool fStop; // set if ordered angle is greater than the previous member in class:SkOpAngle
/external/chromium_org/third_party/skia/tests/
H A DRecordReplaceDrawTest.cpp97 ri->fStop = 2;
/external/chromium_org/third_party/skia/src/xml/
H A DSkDOM.cpp170 fStop = fAttr + node->fAttrCount;
177 if (fAttr < fStop)
/external/skia/src/xml/
H A DSkDOM.cpp170 fStop = fAttr + node->fAttrCount;
177 if (fAttr < fStop)

Completed in 449 milliseconds

12