Searched refs:FieldName (Results 1 - 16 of 16) sorted by relevance

/freebsd-11.0-release/contrib/llvm/lib/TableGen/
H A DRecord.cpp1094 RecTy *TypedInit::getFieldType(const std::string &FieldName) const {
1096 if (RecordVal *Field = RecordType->getRecord()->getValue(FieldName))
1261 RecTy *VarInit::getFieldType(const std::string &FieldName) const {
1263 if (const RecordVal *RV = RTy->getRecord()->getValue(FieldName))
1269 const std::string &FieldName) const {
1276 if (Init *I = TheInit->getFieldInit(R, RV, FieldName))
1381 RecTy *DefInit::getFieldType(const std::string &FieldName) const {
1382 if (const RecordVal *RV = Def->getValue(FieldName))
1388 const std::string &FieldName) const {
1389 return Def->getValue(FieldName)
1839 getValueAsBitOrUnset(StringRef FieldName, bool &Unset) const argument
[all...]
H A DSetTheory.cpp232 StringRef FieldName; member in struct:__anon2677::FieldExpander
234 FieldExpander(StringRef fn) : FieldName(fn) {}
237 ST.evaluate(Def->getValueInit(FieldName), Elts, Def->getLoc());
268 void SetTheory::addFieldExpander(StringRef ClassName, StringRef FieldName) { argument
269 addExpander(ClassName, llvm::make_unique<FieldExpander>(FieldName));
H A DTGParser.cpp1875 std::string FieldName = Lex.getCurStrVal(); local
1887 RecordVal *Field = CurRec->getValue(FieldName);
1889 return TokError("Value '" + FieldName + "' unknown!");
1900 return SetValue(CurRec, IdLoc, FieldName, BitList, Val);
/freebsd-11.0-release/contrib/llvm/include/llvm/TableGen/
H A DSetTheory.h111 /// FieldName in the Record to get the set elements. That is all that is
118 void addFieldExpander(StringRef ClassName, StringRef FieldName);
H A DRecord.h322 virtual RecTy *getFieldType(const std::string &FieldName) const {
331 const std::string &FieldName) const {
397 RecTy *getFieldType(const std::string &FieldName) const override;
864 RecTy *getFieldType(const std::string &FieldName) const override;
866 const std::string &FieldName) const override;
978 RecTy *getFieldType(const std::string &FieldName) const override;
980 const std::string &FieldName) const override;
1001 std::string FieldName; // Field we are accessing member in class:llvm::VarBitInit::FieldInit
1004 : TypedInit(IK_FieldInit, R->getFieldType(FN)), Rec(R), FieldName(FN) {
1025 return Rec->getAsString() + "." + FieldName;
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Parse/
H A DParseInit.cpp138 const IdentifierInfo *FieldName = Tok.getIdentifierInfo(); local
141 llvm::raw_svector_ostream(NewSyntax) << '.' << FieldName->getName()
154 D.AddDesignator(Designator::getField(FieldName, SourceLocation(), NameLoc));
/freebsd-11.0-release/contrib/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp68 void printDataDirectory(uint32_t Index, const std::string &FieldName);
361 void COFFDumper::printDataDirectory(uint32_t Index, const std::string &FieldName) { argument
365 W.printHex(FieldName + "RVA", Data->RelativeVirtualAddress);
366 W.printHex(FieldName + "Size", Data->Size);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp3414 std::string FieldName = (*I)->getNameAsString(); local
3415 std::string ArgName = "_" + FieldName;
3433 QT.getAsStringInternal(FieldName, Context->getPrintingPolicy());
3437 S += FieldName + ";\n";
3443 std::string FieldName = (*I)->getNameAsString(); local
3444 std::string ArgName = "_" + FieldName;
3447 RewriteByRefString(TypeString, FieldName, (*I));
3449 FieldName = TypeString + FieldName;
3453 S += FieldName
[all...]
H A DRewriteModernObjC.cpp4269 std::string FieldName = (*I)->getNameAsString(); local
4270 std::string ArgName = "_" + FieldName;
4288 QT.getAsStringInternal(FieldName, Context->getPrintingPolicy());
4292 S += FieldName + ";\n";
4298 std::string FieldName = (*I)->getNameAsString(); local
4299 std::string ArgName = "_" + FieldName;
4302 RewriteByRefString(TypeString, FieldName, (*I));
4304 FieldName = TypeString + FieldName;
4308 S += FieldName
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGDebugInfo.cpp1842 StringRef FieldName = Field->getName();
1845 if (FieldName.empty())
1909 FieldTy = DBuilder.createObjCIVar(FieldName, FieldDefUnit, FieldLine,
3022 StringRef FieldName = Field->getName(); local
3025 if (FieldName.empty() && !isa<RecordType>(Field->getType()))
3030 Scope, FieldName, Unit, Line, FieldTy, CGM.getLangOpts().Optimize,
3327 StringRef FieldName = Field->getName(); local
3330 if (FieldName.empty()) {
3338 GV = DBuilder.createGlobalVariable(DContext, FieldName, LinkageName, Unit,
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaInit.cpp2089 IdentifierInfo *FieldName = D->getFieldName(); local
2090 DeclContext::lookup_result Lookup = RT->getDecl()->lookup(FieldName);
2115 << FieldName;
2125 DeclarationNameInfo(FieldName, D->getFieldLoc()),
2132 << FieldName << CurrentObjectType);
2138 << FieldName << CurrentObjectType;
H A DSemaDecl.cpp12832 // Note that FieldName may be null for anonymous bitfields.
12834 IdentifierInfo *FieldName,
12847 if (FieldName)
12849 << FieldName << FieldTy << BitWidth->getSourceRange();
12871 if (Value == 0 && FieldName)
12872 return Diag(FieldLoc, diag::err_bitfield_has_zero_width) << FieldName;
12875 if (FieldName)
12877 << FieldName << Value.toString(10);
12897 if (FieldName)
12899 << FieldName << (unsigne
12833 VerifyBitField(SourceLocation FieldLoc, IdentifierInfo *FieldName, QualType FieldTy, bool IsMsStruct, Expr *BitWidth, bool *ZeroWidth) argument
[all...]
/freebsd-11.0-release/sys/contrib/dev/acpica/common/
H A Ddmtbinfo.c2970 #define ACPI_DM_GENERIC_ENTRY(FieldType, FieldName) \
2971 {{FieldType, 0, FieldName, 0}, ACPI_DMT_TERMINATOR}
/freebsd-11.0-release/sys/dev/drm2/radeon/
H A Datombios.h5520 #define GetIndexIntoMasterTable(MasterOrData, FieldName) ((reinterpret_cast<char*>(&(static_cast<ATOM_MASTER_LIST_OF_##MasterOrData##_TABLES*>(0))->FieldName)-static_cast<char*>(0))/sizeof(USHORT))
5525 #define GetIndexIntoMasterTable(MasterOrData, FieldName) (((char*)(&((ATOM_MASTER_LIST_OF_##MasterOrData##_TABLES*)0)->FieldName)-(char*)0)/sizeof(USHORT))
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DExpr.h4027 Designator(const IdentifierInfo *FieldName, SourceLocation DotLoc, argument
4030 Field.NameOrField = reinterpret_cast<uintptr_t>(FieldName) | 0x01;
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h8738 ExprResult VerifyBitField(SourceLocation FieldLoc, IdentifierInfo *FieldName,

Completed in 321 milliseconds