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

1 2

  /external/skia/include/core/
SkRasterHandleAllocator.h 43 struct Rec {
55 * is desired to give clients access to those pixels. The rec also contains a proc and context
62 virtual bool allocHandle(const SkImageInfo&, Rec*) = 0;
75 * If rec is non-null, then it will be used as the base-layer of pixels/handle.
76 * If rec is null, then the allocator will be called for the base-layer as well.
79 const SkImageInfo&, const Rec* rec = nullptr);
SkMetaData.h 128 struct Rec;
150 Rec* fRec;
154 struct Rec {
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;
SkString.h 240 struct Rec {
249 Rec* fRec;
257 static const Rec gEmptyRec;
258 static Rec* AllocRec(const char text[], size_t len);
259 static Rec* RefRec(Rec*);
  /external/skia/tests/
BitmapGetColorTest.cpp 14 static const struct Rec {
  /external/skia/samplecode/
SampleVertices.cpp 125 struct Rec {
131 Rec() : fCount(0), fVerts(nullptr), fTexs(nullptr) {}
132 ~Rec() { delete[] fVerts; delete[] fTexs; }
135 void make_tris(Rec* rec) {
139 rec->fMode = SkCanvas::kTriangles_VertexMode;
140 rec->fCount = n * 3;
141 rec->fVerts = new SkPoint[rec->fCount];
144 SkPoint* v = &rec->fVerts[i*3]
    [all...]
SampleHT.cpp 124 struct Rec {
127 Rec fArray[N];
SampleSlides.cpp 329 class Rec {
336 Rec() : fCount(0), fVerts(nullptr), fTexs(nullptr) {}
337 ~Rec() { delete[] fVerts; delete[] fTexs; }
340 static void make_tris(Rec* rec) {
344 rec->fMode = SkCanvas::kTriangles_VertexMode;
345 rec->fCount = n * 3;
346 rec->fVerts = new SkPoint[rec->fCount];
349 SkPoint* v = &rec->fVerts[i*3]
    [all...]
SampleAtlas.cpp 75 struct Rec {
135 Rec fRec[N];
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/HiiPack/
StringParse.c 75 STRING_PACK_RECORD *Rec;
77 for (Rec = mStringPacks; Rec != NULL; Rec = Rec->Next) {
78 if (Rec->Handle == Handle) {
79 *StringPack = Rec->StringPack;
80 *StringPackSize = Rec->StringPackSize;
81 *NumStringPacks = Rec->NumStringPacks;
115 STRING_PACK_RECORD *Rec;
    [all...]
  /external/skia/src/effects/gradients/
SkLinearGradient.h 42 struct Rec {
48 SkTDArray<Rec> fRecs;
  /external/skia/src/gpu/
GrWindowRectangles.h 20 ~GrWindowRectangles() { SkSafeUnref(this->rec()); }
39 struct Rec;
41 const Rec* rec() const { return fCount <= kNumLocalWindows ? nullptr : fRec; } function in class:GrWindowRectangles
46 Rec* fRec; // If fCount > kNumLocalWindows.
50 struct GrWindowRectangles::Rec : public GrNonAtomicRef<Rec> {
51 Rec(const SkIRect* windows, int numWindows) {
55 Rec() = default;
65 SkSafeUnref(this->rec());
    [all...]
  /external/skia/src/utils/
SkDeferredCanvas.h 118 struct Rec {
141 void emit(const Rec& rec);
152 SkTDArray<Rec> fRecs;
  /external/skia/src/core/
SkResourceCache.h 74 struct Rec {
77 Rec() {}
78 virtual ~Rec() {}
90 Rec* fNext;
91 Rec* fPrev;
103 typedef const Rec* ID;
107 * specified Key, and will pass in the corresponding Rec, along with a caller-specified
108 * context. The function can read the data in Rec, and copy whatever it likes into context
111 * The return value determines what the cache will do with the Rec. If the function returns
112 * true, then the Rec is considered "valid". If false is returned, the Rec will be considere
    [all...]
SkRasterClipStack.h 69 Rec& rec = fStack.push(); local
70 rec.fRC.setRect(fRootBounds);
71 rec.fDeferredCount = 0;
79 Rec& rec = fStack.top(); local
80 SkASSERT(rec.fDeferredCount == 0);
81 rec.fRC.setRect(fRootBounds);
141 struct Rec {
148 PTR_COUNT = ELEM_COUNT * sizeof(Rec) / sizeof(void*
166 Rec& rec = fStack.top(); local
    [all...]
  /external/clang/lib/ARCMigrate/
TransRetainReleaseDealloc.cpp 84 if (Expr *rec = E->getInstanceReceiver()) {
85 rec = rec->IgnoreParenImpCasts();
86 if (rec->getType().getObjCLifetime() == Qualifiers::OCL_ExplicitNone &&
91 Pass.TA.reportError(err, rec->getLocStart());
95 if (isGlobalVar(rec) &&
100 Pass.TA.reportError(err, rec->getLocStart());
104 if (E->getMethodFamily() == OMF_release && isDelegateMessage(rec)) {
108 "properly retained", rec->getLocStart());
131 Expr *rec = E->getInstanceReceiver() local
    [all...]
  /external/clang/test/SemaCXX/
flexible-array-test.cpp 17 struct Rec {
22 } rec; variable in typeref:struct:Rec
  /external/llvm/lib/TableGen/
SetTheory.cpp 215 Record *Rec = Records.getDef(OS.str());
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/llvm/utils/TableGen/
X86RecognizableInstr.h 38 const Record* Rec;
112 /// @param s - The string, as extracted by calling Rec->getName()
CodeGenInstruction.cpp 69 Record *Rec = Arg->getDef();
76 if (Rec->isSubClassOf("RegisterOperand")) {
77 PrintMethod = Rec->getValueAsString("PrintMethod");
78 OperandType = Rec->getValueAsString("OperandType");
79 OperandNamespace = Rec->getValueAsString("OperandNamespace");
80 } else if (Rec->isSubClassOf("Operand")) {
81 PrintMethod = Rec->getValueAsString("PrintMethod");
82 OperandType = Rec->getValueAsString("OperandType");
83 OperandNamespace = Rec->getValueAsString("OperandNamespace");
85 EncoderMethod = Rec->getValueAsString("EncoderMethod")
    [all...]
CodeGenTarget.cpp 38 MVT::SimpleValueType llvm::getValueType(Record *Rec) {
39 return (MVT::SimpleValueType)Rec->getValueAsInt("Value");
292 const Record *Rec = Records.getDef(Name);
294 const auto I = Insts.find(Rec);
295 if (!Rec || I == Insts.end())
  /external/skia/include/effects/
SkLayerDrawLooper.h 76 bool asABlurShadow(BlurShadowRec* rec) const override;
91 struct Rec {
92 Rec* fNext;
96 Rec* fRecs;
108 Rec* fCurrRec;
148 Rec* fRecs;
149 Rec* fTopRec;
  /external/skia/include/utils/
SkCamera.h 144 struct Rec {
145 Rec* fNext;
148 Rec* fRec;
149 Rec fInitialRec;
  /external/skia/include/views/
SkTouchGesture.h 55 struct Rec {
62 SkTDArray<Rec> fTouches;
78 float computePinch(const Rec&, const Rec&);
  /external/skia/src/pipe/
SkPipeCanvas.h 27 const Rec* stop = fArray.end();
28 for (const Rec* curr = fArray.begin(); curr < stop; ++curr) {
38 Rec* rec = fArray.append(); local
39 rec->fKey = key;
40 rec->fIndex = fNextIndex++;
41 return rec->fIndex;
45 struct Rec {
50 SkTDArray<Rec> fArray;
  /external/swiftshader/third_party/LLVM/utils/TableGen/
X86RecognizableInstr.h 41 const Record* Rec;
131 /// @param s - The string, as extracted by calling Rec->getName()

Completed in 1135 milliseconds

1 2