Home
last modified time | relevance | path

Searched refs:FieldName (Results 1 – 25 of 43) sorted by relevance

12

/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DDesignator.h42 const IdentifierInfo *FieldName; member
50 FieldDesignatorInfo(const IdentifierInfo *FieldName, SourceLocation DotLoc, in FieldDesignatorInfo()
52 : FieldName(FieldName), DotLoc(DotLoc), FieldLoc(FieldLoc) {} in FieldDesignatorInfo()
115 static Designator CreateFieldDesignator(const IdentifierInfo *FieldName, in CreateFieldDesignator() argument
119 new (&D.FieldInfo) FieldDesignatorInfo(FieldName, DotLoc, FieldLoc); in CreateFieldDesignator()
125 return FieldInfo.FieldName; in getFieldDecl()
/freebsd/contrib/llvm-project/llvm/lib/TableGen/
H A DRecord.cpp2101 RecTy *TypedInit::getFieldType(StringInit *FieldName) const { in getFieldType()
2104 if (RecordVal *Field = Rec->getValue(FieldName)) in getFieldType()
2221 RecTy *DefInit::getFieldType(StringInit *FieldName) const { in getFieldType()
2222 if (const RecordVal *RV = Def->getValue(FieldName)) in getFieldType()
2387 return FieldInit::get(NewRec, FieldName)->Fold(R.getCurrentRecord()); in resolveReferences()
2397 FieldName->getAsUnquotedString() + "' of '" + in Fold()
2399 Init *FieldVal = Def->getValue(FieldName)->getValue(); in Fold()
2408 Init *FieldVal = DI->getDef()->getValue(FieldName)->getValue(); in isConcrete()
2930 SMLoc Record::getFieldLoc(StringRef FieldName) const { in getFieldLoc()
2931 const RecordVal *R = getValue(FieldName); in getFieldLoc()
[all …]
H A DSetTheory.cpp241 StringRef FieldName; member
243 FieldExpander(StringRef fn) : FieldName(fn) {} in FieldExpander()
246 ST.evaluate(Def->getValueInit(FieldName), Elts, Def->getLoc()); in expand()
277 void SetTheory::addFieldExpander(StringRef ClassName, StringRef FieldName) { in addFieldExpander() argument
278 addExpander(ClassName, std::make_unique<FieldExpander>(FieldName)); in addFieldExpander()
H A DTGParser.cpp2972 StringInit *FieldName = StringInit::get(Records, Lex.getCurStrVal()); in ParseValue() local
2973 if (!Result->getFieldType(FieldName)) { in ParseValue()
2982 DI->getDef()->getValue(FieldName)->addReferenceLoc(FieldNameLoc); in ParseValue()
2986 if (auto *RV = R->getValue(FieldName)) in ParseValue()
2992 Result = FieldInit::get(Result, FieldName)->Fold(CurRec); in ParseValue()
3461 StringInit *FieldName = StringInit::get(Records, Lex.getCurStrVal()); in ParseBodyItem() local
3472 RecordVal *Field = CurRec->getValue(FieldName); in ParseBodyItem()
3474 return TokError("Value '" + FieldName->getValue() + "' unknown!"); in ParseBodyItem()
3489 return SetValue(CurRec, IdLoc, FieldName, BitList, Val); in ParseBodyItem()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeIndex.cpp93 void llvm::codeview::printTypeIndex(ScopedPrinter &Printer, StringRef FieldName, in printTypeIndex() argument
104 Printer.printHex(FieldName, TypeName, TI.getIndex()); in printTypeIndex()
106 Printer.printHex(FieldName, TI.getIndex()); in printTypeIndex()
H A DTypeDumpVisitor.cpp163 void TypeDumpVisitor::printTypeIndex(StringRef FieldName, TypeIndex TI) const { in printTypeIndex() argument
164 codeview::printTypeIndex(*W, FieldName, TI, TpiTypes); in printTypeIndex()
167 void TypeDumpVisitor::printItemIndex(StringRef FieldName, TypeIndex TI) const { in printItemIndex() argument
168 codeview::printTypeIndex(*W, FieldName, TI, getSourceTypes()); in printItemIndex()
H A DSymbolDumper.cpp52 void printTypeIndex(StringRef FieldName, TypeIndex TI);
97 void CVSymbolDumperImpl::printTypeIndex(StringRef FieldName, TypeIndex TI) { in printTypeIndex() argument
98 codeview::printTypeIndex(W, FieldName, TI, Types); in printTypeIndex()
/freebsd/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DRecord.h391 virtual RecTy *getFieldType(StringInit *FieldName) const { in getFieldType() argument
443 RecTy *getFieldType(StringInit *FieldName) const override;
1334 RecTy *getFieldType(StringInit *FieldName) const override;
1403 StringInit *FieldName; // Field we are accessing variable
1406 : TypedInit(IK_FieldInit, R->getFieldType(FN)), Rec(R), FieldName(FN) { in FieldInit()
1410 << ", got FieldName = " << *FieldName in FieldInit()
1428 StringInit *getFieldName() const { return FieldName; } in getFieldName()
1437 return Rec->getAsString() + "." + FieldName->getValue().str(); in getAsString()
1884 SMLoc getFieldLoc(StringRef FieldName) const;
1888 Init *getValueInit(StringRef FieldName) const;
[all …]
H A DSetTheory.h122 void addFieldExpander(StringRef ClassName, StringRef FieldName);
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DSearchableTableEmitter.cpp607 for (const auto &FieldName : Key) { in parseSearchIndex() local
608 const GenericField *Field = Table.getFieldByName(FieldName); in parseSearchIndex()
614 FieldName + "'"); in parseSearchIndex()
755 for (const auto &FieldName : Fields) { in run() local
756 Table->Fields.emplace_back(FieldName); // Construct a GenericField. in run()
759 TableRec->getValue(("TypeOf_" + FieldName).str())) { in run()
764 FieldName + in run()
862 std::string FieldName = std::string(Field.getName()); in run() local
866 if (FieldName.find(':') != std::string::npos || in run()
867 FieldName == "SearchableFields" || FieldName == "EnumNameField" || in run()
[all …]
H A DARMTargetDefEmitter.cpp59 auto gatherSubtargetFeatureFieldValues = [&RK](StringRef FieldName) { in EmitARMTargetDef() argument
62 if (Rec->getValueAsString("FieldName") == FieldName) { in EmitARMTargetDef()
H A DSubtargetEmitter.cpp218 const StringRef FieldName = Feature->getValueAsString("FieldName"); in EmitSubtargetInfoMacroCalls() local
223 !StringRef(FieldName).contains('['); in EmitSubtargetInfoMacroCalls()
232 FieldName.substr(0, 1).lower() + FieldName.substr(1).str(); in EmitSubtargetInfoMacroCalls()
234 OS << "GET_SUBTARGETINFO_MACRO(" << FieldName << ", " << Default << ", " in EmitSubtargetInfoMacroCalls()
1912 StringRef FieldName = R->getValueAsString("FieldName"); in ParseFeaturesFunction() local
1915 OS << " if (Bits[" << Target << "::" << Instance << "]) " << FieldName in ParseFeaturesFunction()
1918 OS << " if (Bits[" << Target << "::" << Instance << "] && " << FieldName in ParseFeaturesFunction()
1919 << " < " << Value << ") " << FieldName << " = " << Value << ";\n"; in ParseFeaturesFunction()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeDumpVisitor.h40 void printTypeIndex(StringRef FieldName, TypeIndex TI) const;
42 void printItemIndex(StringRef FieldName, TypeIndex TI) const;
H A DTypeIndex.h287 void printTypeIndex(ScopedPrinter &Printer, StringRef FieldName, TypeIndex TI,
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DEHFrameSupportImpl.h97 Block &InBlock, const char *FieldName);
103 Block &BlockToFix, size_t PointerFieldOffset, const char *FieldName);
H A DEHFrameSupport.cpp450 const char *FieldName) { in parseAugmentationString()
482 FieldName + "in CFI record at " + in readPointerEncoding()
514 size_t PointerFieldOffset, const char *FieldName) { in skipEncodedPointer()
528 << FieldName << " at " << EdgeI->second.Target->getAddress(); in getOrCreateEncodedPointerEdge()
594 << FieldName << " at " << TargetSym->getAddress(); in getOrCreateEncodedPointerEdge()
461 readPointerEncoding(BinaryStreamReader & R,Block & InBlock,const char * FieldName) readPointerEncoding() argument
525 getOrCreateEncodedPointerEdge(ParseContext & PC,const BlockEdgeMap & BlockEdges,uint8_t PointerEncoding,BinaryStreamReader & RecordReader,Block & BlockToFix,size_t PointerFieldOffset,const char * FieldName) getOrCreateEncodedPointerEdge() argument
/freebsd/stand/efi/libefi/
H A Defihttp.c471 headers[0].FieldName = (CHAR8 *)"Host"; in _efihttp_fs_open()
473 headers[1].FieldName = (CHAR8 *)"Connection"; in _efihttp_fs_open()
475 headers[2].FieldName = (CHAR8 *)"Accept"; in _efihttp_fs_open()
545 if (strcasecmp((const char *)message.Headers[i].FieldName, in _efihttp_fs_open()
549 else if (strcasecmp((const char *)message.Headers[i].FieldName, in _efihttp_fs_open()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseInit.cpp171 const IdentifierInfo *FieldName = Tok.getIdentifierInfo(); in ParseInitializerWithPotentialDesignator() local
174 llvm::raw_svector_ostream(NewSyntax) << '.' << FieldName->getName() in ParseInitializerWithPotentialDesignator()
188 FieldName, SourceLocation(), NameLoc)); in ParseInitializerWithPotentialDesignator()
/freebsd/stand/efi/include/Protocol/
H A DHttp.h221 CHAR8 *FieldName; member
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.h56 void printTypeIndex(StringRef FieldName, TypeIndex TI,
151 void printTypeIndex(StringRef FieldName, TypeIndex TI) const;
307 void printTypeIndex(StringRef FieldName, TypeIndex TI, uint32_t StreamIdx);
/freebsd/sys/contrib/dev/acpica/common/
H A Ddmtbinfo3.c868 #define ACPI_DM_GENERIC_ENTRY(FieldType, FieldName) \ argument
869 {{FieldType, 0, FieldName, 0}, ACPI_DMT_TERMINATOR}
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DJSON.cpp328 llvm::StringRef FieldName = S.field(); in printErrorContext() local
330 if (!O || !O->get(FieldName)) in printErrorContext()
335 if (FieldName == StringRef(KV->first)) in printErrorContext()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.cpp485 void LVTypeVisitor::printTypeIndex(StringRef FieldName, TypeIndex TI, in printTypeIndex() argument
487 codeview::printTypeIndex(W, FieldName, TI, in printTypeIndex()
727 void LVSymbolVisitor::printTypeIndex(StringRef FieldName, TypeIndex TI) const { in printTypeIndex() argument
728 codeview::printTypeIndex(W, FieldName, TI, Types); in printTypeIndex()
1708 llvm::StringRef FieldName; in visitKnownRecord()
1711 FieldName = "Callee"; in visitKnownRecord()
1714 FieldName = "Caller"; in visitKnownRecord()
1717 FieldName = "Inlinee"; in visitKnownRecord()
1724 printTypeIndex(FieldName, FuncID); in visitKnownRecord()
1744 void LVLogicalVisitor::printTypeIndex(StringRef FieldName, TypeIndex TI, in printTypeIndex() argument
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DArchive.cpp181 getArchiveMemberDecField(Twine FieldName, const StringRef RawField, in getArchiveMemberDecField() argument
187 return malformedError("characters in " + FieldName + in getArchiveMemberDecField()
199 getArchiveMemberOctField(Twine FieldName, const StringRef RawField, in getArchiveMemberOctField() argument
205 return malformedError("characters in " + FieldName + in getArchiveMemberOctField()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp119 void printDataDirectory(uint32_t Index, const std::string &FieldName);
137 void printTypeIndex(StringRef FieldName, TypeIndex TI) { in printTypeIndex() argument
139 codeview::printTypeIndex(Writer, FieldName, TI, Types); in printTypeIndex()
658 const std::string &FieldName) { in printDataDirectory() argument
662 W.printHex(FieldName + "RVA", Data->RelativeVirtualAddress); in printDataDirectory()
663 W.printHex(FieldName + "Size", Data->Size); in printDataDirectory()

12