Searched defs:Rec (Results 1 - 25 of 44) sorted by relevance

12

/external/skia/src/core/
H A DSkTypefaceCache.h81 struct Rec { struct in class:SkTypefaceCache
85 SkTDArray<Rec> fArray;
H A DSkTextToPathIter.h25 struct Rec { struct in class:SkTextToPathIter
H A DSkSmallAllocator.h44 Rec* rec = &fRecs[fNumObjects];
124 Rec* rec = &fRecs[fNumObjects];
153 Rec* rec = &fRecs[fNumObjects - 1];
161 struct Rec { struct in class:SkSmallAllocator
173 Rec fRecs[kMaxObjects];
H A DSkResourceCache.h70 struct Rec { struct in class:SkResourceCache
73 Rec() {} function in struct:SkResourceCache::Rec
74 virtual ~Rec() {}
83 static const Key& GetKey(const Rec& rec) { return rec.getKey(); }
86 Rec* fNext;
87 Rec* fPrev;
99 typedef const Rec* ID;
103 * specified Key, and will pass in the corresponding Rec, along with a caller-specified
104 * context. The function can read the data in Rec, and copy whatever it likes into context
107 * The return value determines what the cache will do with the Rec
[all...]
/external/skia/tests/
H A DBitmapGetColorTest.cpp14 static const struct Rec { struct
H A DGrMemoryPoolTest.cpp180 struct Rec { struct
207 SkTDArray<Rec> instanceRecs;
212 Rec* rec = instanceRecs.append();
218 Rec& rec = instanceRecs[d];
225 Rec& rec = instanceRecs[r];
231 Rec& rec = instanceRecs[i];
H A DScalarTest.cpp128 struct Rec { struct
145 const Rec data[] = {
172 const Rec& rec = data[i];
179 const Rec& rec0 = data[i];
181 const Rec& rec1 = data[j];
/external/skia/experimental/PdfViewer/src/
H A DSkTDStackNester.h43 Rec* rec = fRec;
45 Rec* next = rec->fNext;
121 Rec* rec = new Rec();
173 Rec* rec = fRec->fNext;
185 // Number of objects held per Rec. Storing multiple objects in one Rec
190 struct Rec { struct in class:SkTDStackNester
191 Rec* fNext;
195 // First Rec, requirin
[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;
/external/skia/samplecode/
H A DSampleVertices.cpp134 struct Rec { struct in class:VerticesView
140 Rec() : fCount(0), fVerts(NULL), fTexs(NULL) {} function in struct:VerticesView::Rec
141 ~Rec() { delete[] fVerts; delete[] fTexs; }
144 void make_tris(Rec* rec) {
160 void make_fan(Rec* rec, int texWidth, int texHeight) {
190 void make_strip(Rec* rec, int texWidth, int texHeight) {
224 Rec fRecs[3];
H A DSampleHT.cpp126 struct Rec { struct in class:HTView
129 Rec fArray[N];
H A DSampleSlides.cpp334 class Rec { class
341 Rec() : fCount(0), fVerts(NULL), fTexs(NULL) {} function in class:Rec
342 ~Rec() { delete[] fVerts; delete[] fTexs; }
345 static void make_tris(Rec* rec) {
361 static void make_fan(Rec* rec, int texWidth, int texHeight) {
391 static void make_strip(Rec* rec, int texWidth, int texHeight) {
426 Rec fRecs[3];
/external/llvm/utils/TableGen/
H A DX86RecognizableInstr.h39 const Record* Rec; member in class:llvm::X86Disassembler::RecognizableInstr
115 /// @param s - The string, as extracted by calling Rec->getName()
H A DPseudoLoweringEmitter.cpp55 unsigned addDagOperandMapping(Record *Rec, DagInit *Dag,
74 addDagOperandMapping(Record *Rec, DagInit *Dag, CodeGenInstruction &Insn, argument
93 if (DI->getDef() != Insn.Operands[BaseIdx + i].Rec)
94 PrintFatalError(Rec->getLoc(),
97 Insn.Operands[BaseIdx + i].Rec->getName() + "'");
112 addDagOperandMapping(Rec, SubDag, Insn, OperandMap, BaseIdx + i);
122 void PseudoLoweringEmitter::evaluateExpansion(Record *Rec) { argument
123 DEBUG(dbgs() << "Pseudo definition: " << Rec->getName() << "\n");
127 DagInit *Dag = Rec->getValueAsDag("ResultInst");
133 PrintFatalError(Rec
[all...]
H A DCodeGenInstruction.cpp67 Record *Rec = Arg->getDef(); local
74 if (Rec->isSubClassOf("RegisterOperand")) {
75 PrintMethod = Rec->getValueAsString("PrintMethod");
76 OperandType = Rec->getValueAsString("OperandType");
77 OperandNamespace = Rec->getValueAsString("OperandNamespace");
78 } else if (Rec->isSubClassOf("Operand")) {
79 PrintMethod = Rec->getValueAsString("PrintMethod");
80 OperandType = Rec->getValueAsString("OperandType");
82 EncoderMethod = Rec->getValueAsString("EncoderMethod");
83 MIOpInfo = Rec
[all...]
/external/skia/include/effects/
H A DSkLayerDrawLooper.h93 struct Rec { struct in class:SkLayerDrawLooper
94 Rec* fNext;
98 Rec* fRecs;
99 Rec* fTopRec;
111 Rec* fCurrRec;
156 Rec* fRecs;
157 Rec* fTopRec;
/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/clang/include/clang/AST/
H A DCXXInheritance.h222 void setOrigin(CXXRecordDecl *Rec) { Origin = Rec; } argument
/external/clang/lib/ARCMigrate/
H A DTransRetainReleaseDealloc.cpp185 Expr *Rec = E->getInstanceReceiver(); local
186 if (!Rec)
189 Decl *RefD = getReferencedDecl(Rec);
206 Expr *Rec = E->getInstanceReceiver(); local
207 if (!Rec)
210 Decl *RefD = getReferencedDecl(Rec);
332 Expr *&Rec, SourceRange &RecRange) {
384 Rec = Init->IgnoreParenImpCasts();
385 if (ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(Rec))
386 Rec
331 checkForGCDOrXPC(ObjCMessageExpr *Msg, Expr *&RecContainer, Expr *&Rec, SourceRange &RecRange) argument
[all...]
/external/clang/test/SemaCXX/
H A Dflexible-array-test.cpp17 struct Rec { struct
/external/llvm/lib/TableGen/
H A DSetTheory.cpp215 Record *Rec = Records.getDef(OS.str()); variable
216 if (!Rec)
219 // Try to reevaluate Rec in case it is a set.
220 if (const RecVec *Result = ST.expand(Rec))
223 Elts.insert(Rec);
/external/skia/include/utils/
H A DSkCamera.h144 struct Rec { struct in class:Sk3DView
145 Rec* fNext;
148 Rec* fRec;
149 Rec fInitialRec;
/external/skia/src/fonts/
H A DSkFontMgr_fontconfig.cpp151 struct Rec { struct in class:SkFontStyleSet_FC
156 Rec* fRecs;
183 fRecs = SkNEW_ARRAY(Rec, count);
/external/llvm/include/llvm/ProfileData/
H A DSampleProf.h220 const SampleRecord &Rec = I.second; local
221 sampleRecordAt(Loc).merge(Rec);

Completed in 659 milliseconds

12