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

1 2 3

  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRLinkBase.h 53 id<ANTLRLinkList> fNext;
57 @property (retain, getter=getfNext, setter=setFNext:) id<ANTLRLinkList> fNext;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRLinkBase.h 53 id<ANTLRLinkList> fNext;
57 @property (retain, getter=getfNext, setter=setFNext:) id<ANTLRLinkList> fNext;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRLinkBase.h 53 id<ANTLRLinkList> fNext;
57 @property (retain, getter=getfNext, setter=setFNext:) id<ANTLRLinkList> fNext;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRLinkBase.h 54 @property (retain) id<ANTLRLinkList> fNext;
59 id<ANTLRLinkList> fNext;
63 @property (retain) id<ANTLRLinkList> fNext;
  /external/skia/src/sksl/ast/
SkSLASTForStatement.h 25 , fNext(std::move(next))
38 if (fNext) {
39 result.append(fNext->description());
48 const std::unique_ptr<ASTExpression> fNext;
  /external/skia/src/sksl/ir/
SkSLForStatement.h 28 , fNext(std::move(next))
41 if (fNext) {
42 result += fNext->description();
53 std::unique_ptr<Expression> fNext;
  /external/skia/src/core/
SkRefDict.cpp 13 Impl* fNext;
34 rec = rec->fNext;
57 prev->fNext = rec->fNext;
59 fImpl = rec->fNext;
66 rec = rec->fNext;
75 rec->fNext = fImpl;
82 Impl* next = rec->fNext;
SkEdge.h 26 SkEdge* fNext;
55 SkASSERT(fPrev && fNext);
56 SkASSERT(fPrev->fNext == this);
57 SkASSERT(fNext->fPrev == this);
SkTLS.cpp 20 SkTLSRec* fNext;
52 SkTLSRec* next = rec->fNext;
72 } while ((rec = rec->fNext) != nullptr);
78 rec->fNext = (SkTLSRec*)ptr;
101 } while ((rec = rec->fNext) != nullptr);
116 SkTLSRec* next = curr->fNext;
119 prev->fNext = next;
SkSinglyLinkedList.h 24 Node* next = node->fNext;
38 for (Node* node = fHead; node; node = node->fNext) {
46 fHead = node->fNext;
55 n->fNext = fHead;
66 fTail->fNext = n;
75 void operator++() { fNode = fNode->fNext; }
88 Node* fNext;
90 Node(Args&&... args) : fData(std::forward<Args>(args)...), fNext(nullptr) {}
SkTMultiMap.h 22 explicit ValueList(T* value) : fValue(value), fNext(nullptr) {}
27 ValueList* fNext;
43 newEntry->fNext = list->fNext;
46 list->fNext = newEntry;
63 list = list->fNext;
66 if (list->fNext) {
67 ValueList* next = list->fNext;
69 list->fNext = next->fNext;
    [all...]
SkAnalyticEdge.h 21 SkAnalyticEdge* fNext;
91 SkASSERT(fPrev && fNext);
92 SkASSERT(fPrev->fNext == this);
93 SkASSERT(fNext->fPrev == this);
SkDeque.cpp 12 Block* fNext;
22 fNext = fPrev = nullptr;
61 Block* next = head->fNext;
89 first->fNext = fFrontBlock;
130 fBackBlock->fNext = last;
159 first = first->fNext;
175 if (nullptr == first->fNext) {
178 SkASSERT(first->fNext->fBegin);
179 fFront = first->fNext->fBegin;
194 last->fNext = nullptr
    [all...]
SkGlyphCache.h 229 SkGlyphCache* fNext;
  /external/skia/src/views/
SkTagList.h 23 SkTagList* fNext;
31 fNext = nullptr;
  /external/icu/icu4c/source/common/
rbbisetb.h 47 RangeDescriptor *fNext; // Next RangeDescriptor in the linked list.
  /external/skia/src/shaders/gradients/
SkGradientBitmapCache.cpp 15 Entry* fNext;
23 fNext(nullptr),
49 Entry* next = entry->fNext;
58 entry->fPrev->fNext = entry->fNext;
61 fHead = entry->fNext;
63 if (entry->fNext) {
65 entry->fNext->fPrev = entry->fPrev;
75 entry->fNext = fHead;
98 entry = entry->fNext;
    [all...]
  /external/skia/experimental/svg/model/
SkPEG.h 19 * If the match was successful, |fNext| points to the next unconsumed character in the
22 * Otherwise, |fNext| is nullptr and |fValue| is uninitialized.
26 MatchResult(std::nullptr_t) : fNext(nullptr) {}
27 MatchResult(const char* next, const V& v) : fNext(next), fValue(&v) {}
30 SkASSERT(fValue.isValid() == SkToBool(fNext));
31 return SkToBool(fNext);
37 const char* fNext;
59 return m ? MatchT(m.fNext, V(m.fValue.get()))
128 const auto tailMatch = Seq<Es...>::Match(headMatch.fNext);
129 return tailMatch ? MatchT(tailMatch.fNext, V(*headMatch, *tailMatch)
    [all...]
  /external/skia/src/gpu/instanced/
InstancedOp.h 53 Draw* fNext;
56 Draw& getSingleDraw() const { SkASSERT(fHeadDraw && !fHeadDraw->fNext); return *fHeadDraw; }
  /external/skia/include/core/
SkMetaData.h 155 Rec* fNext;
  /external/skia/include/effects/
SkLayerDrawLooper.h 92 Rec* fNext;
  /external/skia/include/utils/
SkCamera.h 145 Rec* fNext;
  /external/skia/src/gpu/
GrMemoryPool.h 84 BlockHeader* fNext; ///< doubly-linked list of blocks.
GrResourceAllocator.h 78 , fNext(nullptr) {
92 Interval* fNext;
101 fHead = temp->fNext;
GrTextureStripAtlas.h 90 AtlasRow() : fKey(kEmptyAtlasRowKey), fLocks(0), fNext(nullptr), fPrev(nullptr) { }
96 AtlasRow* fNext;

Completed in 340 milliseconds

1 2 3