Searched refs:Rec (Results 1 - 25 of 75) sorted by relevance

123

/external/skia/src/core/
H A DSkClipStack.cpp12 struct SkClipStack::Rec { struct in class:SkClipStack
26 Rec(int saveCount, const SkRect& rect, SkRegion::Op op, bool doAA) : fRect(rect) { function in struct:SkClipStack::Rec
33 Rec(int saveCount, const SkPath& path, SkRegion::Op op, bool doAA) : fPath(path) { function in struct:SkClipStack::Rec
41 bool operator==(const Rec& b) const {
57 bool operator!=(const Rec& b) const {
63 * Returns true if this Rec can be intersected in place with a new clip
77 SkClipStack::SkClipStack() : fDeque(sizeof(Rec)) {
81 SkClipStack::SkClipStack(const SkClipStack& b) : fDeque(sizeof(Rec)) {
93 for (const Rec* rec = (const Rec*)recIte
[all...]
H A DSkMetaData.cpp46 Rec* rec = fRec;
54 Rec* next = rec->fNext;
55 Rec::Free(rec);
65 const Rec* rec = src.fRec;
120 Rec* rec = Rec::Alloc(sizeof(Rec) + dataSize * count + len + 1);
147 const Rec* rec = this->find(name, kS32_Type);
160 const Rec* rec = this->find(name, kScalar_Type);
173 const Rec* re
[all...]
H A DSkTypefaceCache.h84 struct Rec { struct in class:SkTypefaceCache
88 SkTDArray<Rec> fArray;
H A DSkTypefaceCache.cpp21 Rec* rec = fArray.append();
28 const Rec* curr = fArray.begin();
29 const Rec* stop = fArray.end();
40 const Rec* curr = fArray.begin();
41 const Rec* stop = fArray.end();
H A DSkString.cpp186 const SkString::Rec SkString::gEmptyRec = { 0, 0, 0 };
190 SkString::Rec* SkString::AllocRec(const char text[], size_t len) {
191 Rec* rec;
194 rec = const_cast<Rec*>(&gEmptyRec);
197 rec = (Rec*)sk_malloc_throw(SizeOfRec() + SkAlign4(len + 1));
208 SkString::Rec* SkString::RefRec(Rec* src) {
233 SkString::SkString() : fRec(const_cast<Rec*>(&gEmptyRec)) {
327 fRec = const_cast<Rec*>(&gEmptyRec);
338 Rec* re
[all...]
/external/skia/include/core/
H A DSkTDStack.h25 Rec* rec = fRec;
27 Rec* next = rec->fNext;
40 Rec* rec = (Rec*)sk_malloc_throw(sizeof(Rec));
83 Rec* rec = fRec->fNext;
98 struct Rec;
99 friend struct Rec;
101 struct Rec { struct in class:SkTDStack
102 Rec* fNex
[all...]
H A DSkMetaData.h128 struct Rec;
150 Rec* fRec;
154 struct Rec { struct in class:SkMetaData
155 Rec* fNext;
165 static Rec* Alloc(size_t);
166 static void Free(Rec*);
168 Rec* fRec;
170 const Rec* find(const char name[], Type) const;
H A DSkFontHost.h160 * entire Rec structure so that a caller can change fallback behavior
162 static SkFontID NextLogicalFont(const SkScalerContext::Rec& rec);
178 static void FilterRec(SkScalerContext::Rec* rec);
H A DSkString.h152 struct Rec { struct in class:SkString
161 Rec* fRec;
170 static const Rec gEmptyRec;
171 static Rec* AllocRec(const char text[], size_t len);
172 static Rec* RefRec(Rec*);
/external/skia/include/effects/
H A DSkLayerDrawLooper.h119 struct Rec { struct in class:SkLayerDrawLooper
120 Rec* fNext;
124 static Rec* Reverse(Rec*);
126 Rec* fRecs;
130 Rec* fCurrRec;
H A DSkGroupShape.h150 struct Rec { struct in class:SkGroupShape
154 SkTDArray<Rec> fList;
/external/skia/include/views/
H A DSkTouchGesture.h53 struct Rec { struct in class:SkTouchGesture
60 SkTDArray<Rec> fTouches;
72 float computePinch(const Rec&, const Rec&);
/external/skia/src/effects/
H A DSkGroupShape.cpp22 const Rec& rec = fList[index];
40 Rec* rec;
52 Rec& rec = fList[index];
60 Rec* rec = fList.begin();
61 Rec* stop = fList.end();
73 const Rec* rec = fList.begin();
74 const Rec* stop = fList.end();
95 const Rec* rec = fList.begin();
96 const Rec* stop = fList.end();
H A DSkLayerDrawLooper.cpp29 Rec* rec = fRecs;
31 Rec* next = rec->fNext;
40 Rec* rec = SkNEW(Rec);
169 SkLayerDrawLooper::Rec* SkLayerDrawLooper::Rec::Reverse(Rec* head) {
170 Rec* rec = head;
171 Rec* prev = NULL;
173 Rec* nex
[all...]
/external/llvm/utils/TableGen/
H A DPseudoLoweringEmitter.cpp54 unsigned addDagOperandMapping(Record *Rec, DagInit *Dag,
73 addDagOperandMapping(Record *Rec, DagInit *Dag, CodeGenInstruction &Insn, argument
92 if (DI->getDef() != Insn.Operands[BaseIdx + i].Rec)
93 throw TGError(Rec->getLoc(),
96 Insn.Operands[BaseIdx + i].Rec->getName() + "'");
111 addDagOperandMapping(Rec, SubDag, Insn, OperandMap, BaseIdx + i);
121 void PseudoLoweringEmitter::evaluateExpansion(Record *Rec) { argument
122 DEBUG(dbgs() << "Pseudo definition: " << Rec->getName() << "\n");
126 DagInit *Dag = Rec->getValueAsDag("ResultInst");
132 throw TGError(Rec
[all...]
H A DX86RecognizableInstr.cpp213 Rec = insn.TheDef;
214 Name = Rec->getName();
217 if (!Rec->isSubClassOf("X86Inst")) {
222 Prefix = byteFromRec(Rec, "Prefix");
223 Opcode = byteFromRec(Rec, "Opcode");
224 Form = byteFromRec(Rec, "FormBits");
225 SegOvr = byteFromRec(Rec, "SegOvrBits");
227 HasOpSizePrefix = Rec->getValueAsBit("hasOpSizePrefix");
228 HasAdSizePrefix = Rec->getValueAsBit("hasAdSizePrefix");
229 HasREX_WPrefix = Rec
[all...]
H A DCodeGenInstruction.cpp67 Record *Rec = Arg->getDef(); local
73 if (Rec->isSubClassOf("RegisterOperand")) {
74 PrintMethod = Rec->getValueAsString("PrintMethod");
75 } else if (Rec->isSubClassOf("Operand")) {
76 PrintMethod = Rec->getValueAsString("PrintMethod");
77 OperandType = Rec->getValueAsString("OperandType");
79 EncoderMethod = Rec->getValueAsString("EncoderMethod");
80 MIOpInfo = Rec->getValueAsDag("MIOperandInfo");
86 throw "Bad value for MIOperandInfo in operand '" + Rec->getName() +
94 if (Rec
[all...]
/external/skia/include/pdf/
H A DSkPDFCatalog.h92 struct Rec { struct in class:SkPDFCatalog
93 Rec(SkPDFObject* object, bool onFirstPage) function in struct:SkPDFCatalog::Rec
114 SkTDArray<struct Rec> fCatalog;
/external/skia/tests/
H A DScalarTest.cpp63 struct Rec { struct
80 const Rec data[] = {
107 const Rec& rec = data[i];
114 const Rec& rec0 = data[i];
116 const Rec& rec1 = data[j];
H A DBitmapGetColorTest.cpp12 static const struct Rec { struct
/external/skia/samplecode/
H A DSampleVertices.cpp137 struct Rec { struct in class:VerticesView
143 Rec() : fCount(0), fVerts(NULL), fTexs(NULL) {} function in struct:VerticesView::Rec
144 ~Rec() { delete[] fVerts; delete[] fTexs; }
147 void make_tris(Rec* rec) {
163 void make_fan(Rec* rec, int texWidth, int texHeight) {
193 void make_strip(Rec* rec, int texWidth, int texHeight) {
227 Rec fRecs[3];
/external/skia/include/utils/
H A DSkCamera.h166 struct Rec { struct in class:Sk3DView
167 Rec* fNext;
170 Rec* fRec;
171 Rec fInitialRec;
/external/clang/lib/ARCMigrate/
H A DTransRetainReleaseDealloc.cpp171 Expr *Rec = E->getInstanceReceiver(); local
172 if (!Rec)
175 Decl *RefD = getReferencedDecl(Rec);
247 Expr *&Rec, SourceRange &RecRange) {
299 Rec = Init->IgnoreParenImpCasts();
300 if (ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(Rec))
301 Rec = EWC->getSubExpr()->IgnoreParenImpCasts();
302 RecRange = Rec->getSourceRange();
246 checkForGCDOrXPC(ObjCMessageExpr *Msg, Expr *&RecContainer, Expr *&Rec, SourceRange &RecRange) argument
/external/skia/src/views/
H A DSkTouchGesture.cpp137 Rec* rec = fTouches.append();
216 Rec& rec = fTouches[index];
240 const Rec& rec0 = fTouches[0];
241 const Rec& rec1 = fTouches[1];
266 const Rec& rec = fTouches[index];
296 float SkTouchGesture::computePinch(const Rec& rec0, const Rec& rec1) {
/external/clang/lib/Edit/
H A DRewriteObjCFoundationAPI.cpp43 if (const ObjCMessageExpr *Rec = dyn_cast<ObjCMessageExpr>(
45 if (Rec->getMethodFamily() == OMF_alloc)
159 const Expr *Rec = Msg->getInstanceReceiver(); local
160 if (!Rec)
162 IFace = maybeAdjustInterfaceForSubscriptingCheck(IFace, Rec, Ctx);
184 const Expr *Rec = Msg->getInstanceReceiver(); local
185 if (!Rec)
189 SourceRange RecRange = Rec->getSourceRange();
198 maybePutParensOnReceiver(Rec, commit);
232 const Expr *Rec local
266 const Expr *Rec = Msg->getInstanceReceiver(); local
[all...]

Completed in 4876 milliseconds

123