HomeSort by relevance Sort by last modified time
    Searched defs:Rec (Results 26 - 47 of 47) sorted by null

12

  /external/llvm/utils/TableGen/
CodeGenInstruction.cpp 67 Record *Rec = Arg->getDef();
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");
85 PrintFatalError("Bad value for MIOperandInfo in operand '" + Rec->getName() +
93 if (Rec->isSubClassOf("PredicateOperand")
    [all...]
CodeGenTarget.cpp 38 MVT::SimpleValueType llvm::getValueType(Record *Rec) {
39 return (MVT::SimpleValueType)Rec->getValueAsInt("Value");
277 const Record *Rec = Records.getDef(Name);
280 I = Insts.find(Rec);
281 if (Rec == 0 || I == Insts.end())
SetTheory.cpp 214 Record *Rec = Records.getDef(OS.str());
215 if (!Rec)
218 // Try to reevaluate Rec in case it is a set.
219 if (const RecVec *Result = ST.expand(Rec))
222 Elts.insert(Rec);
CodeGenInstruction.h 65 /// Rec - The definition this operand is declared as.
67 Record *Rec;
110 : Rec(R), Name(N), PrinterMethodName(PMN), EncoderMethodName(EMN),
AsmMatcherEmitter.cpp 635 ClassInfo *getOperandClass(Record *Rec, int SubOpIdx);
    [all...]
CodeGenDAGPatterns.cpp     [all...]
  /external/skia/include/core/
SkString.h 216 struct Rec {
225 Rec* fRec;
234 static const Rec gEmptyRec;
235 static Rec* AllocRec(const char text[], size_t len);
236 static Rec* RefRec(Rec*);
  /external/skia/src/fonts/
SkFontMgr_fontconfig.cpp 120 struct Rec {
125 Rec* fRecs;
152 fRecs = SkNEW_ARRAY(Rec, count);
  /external/skia/tests/
GrMemoryPoolTest.cpp 181 struct Rec {
208 SkTDArray<Rec> instanceRecs;
213 Rec* rec = instanceRecs.append(); local
214 rec->fInstance = A::Create(&r);
215 rec->fValue = static_cast<int>(r.nextU());
216 rec->fInstance->setValues(rec->fValue);
219 Rec& rec = instanceRecs[d] local
226 Rec& rec = instanceRecs[r]; local
232 Rec& rec = instanceRecs[i]; local
    [all...]
ScalarTest.cpp 118 struct Rec {
135 const Rec data[] = {
162 const Rec& rec = data[i]; local
163 bool finite = gProc1[k](rec.fValue);
164 REPORTER_ASSERT(reporter, rec.fIsFinite == finite);
169 const Rec& rec0 = data[i];
171 const Rec& rec1 = data[j];
  /external/chromium_org/third_party/skia/src/core/
SkScalerContext.h 117 typedef SkScalerContextRec Rec;
196 const SkMatrix*, Rec* rec);
197 static inline void PostMakeRec(const SkPaint&, Rec*);
199 static SkMaskGamma::PreBlend GetMaskPreBlend(const Rec& rec);
202 Rec fRec;
  /external/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp 44 if (const ObjCMessageExpr *Rec = dyn_cast<ObjCMessageExpr>(
46 if (Rec->getMethodFamily() == OMF_alloc)
160 const Expr *Rec = Msg->getInstanceReceiver();
161 if (!Rec)
163 IFace = maybeAdjustInterfaceForSubscriptingCheck(IFace, Rec, Ctx);
185 const Expr *Rec = Msg->getInstanceReceiver();
186 if (!Rec)
190 SourceRange RecRange = Rec->getSourceRange();
199 maybePutParensOnReceiver(Rec, commit);
233 const Expr *Rec = Msg->getInstanceReceiver()
    [all...]
  /external/skia/src/core/
SkScalerContext.h 117 typedef SkScalerContextRec Rec;
196 const SkMatrix*, Rec* rec);
197 static inline void PostMakeRec(const SkPaint&, Rec*);
199 static SkMaskGamma::PreBlend GetMaskPreBlend(const Rec& rec);
202 Rec fRec;
  /external/chromium_org/third_party/skia/src/effects/gradients/
SkGradientShaderPriv.h 147 struct Rec {
151 Rec* fRecs;
162 kStorageSize = kColorStorageCount * (sizeof(SkColor) + sizeof(Rec))
  /external/llvm/include/llvm/Analysis/
ScalarEvolutionExpressions.h 682 const SCEVAddRecExpr *Rec = (const SCEVAddRecExpr *) Res;
683 return Rec->evaluateAtIteration(Map[L], SE);
  /external/skia/src/effects/gradients/
SkGradientShaderPriv.h 147 struct Rec {
151 Rec* fRecs;
162 kStorageSize = kColorStorageCount * (sizeof(SkColor) + sizeof(Rec))
  /external/llvm/lib/TableGen/
TGParser.cpp 30 Record *Rec;
32 SubClassReference() : Rec(0) {}
34 bool isInvalid() const { return Rec == 0; }
65 CurRec = &CurMultiClass->Rec;
86 if (CurRec == 0) CurRec = &CurMultiClass->Rec;
149 Record *SC = SubClass.Rec;
210 Record *CurRec = &CurMC->Rec;
215 const std::vector<RecordVal> &SMCVals = SMC->Rec.getValues();
238 const std::vector<Init *> &SMCTArgs = SMC->Rec.getTemplateArgs();
287 + ") of subclass '" + SMC->Rec.getNameInitAsString() + "'!")
    [all...]
  /external/clang/lib/AST/
Type.cpp 915 RecordDecl *Rec = cast<RecordType>(CanonicalType)->getDecl();
917 *Def = Rec;
918 return !Rec->isCompleteDefinition();
    [all...]
ASTContext.cpp     [all...]
  /external/llvm/include/llvm/TableGen/
Record.h 370 Record *Rec;
371 explicit RecordRecTy(Record *R) : RecTy(RecordRecTyKind), Rec(R) {}
380 Record *getRecord() const { return Rec; }
    [all...]
  /external/clang/lib/Sema/
SemaExpr.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]

Completed in 371 milliseconds

12