| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Designator.h | 42 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 D | Record.cpp | 2274 const RecTy *TypedInit::getFieldType(const StringInit *FieldName) const { in getFieldType() 2277 if (const RecordVal *Field = Rec->getValue(FieldName)) in getFieldType() 2389 const RecTy *DefInit::getFieldType(const StringInit *FieldName) const { in getFieldType() 2390 if (const RecordVal *RV = Def->getValue(FieldName)) in getFieldType() 2549 return FieldInit::get(NewRec, FieldName)->Fold(R.getCurrentRecord()); in resolveReferences() 2559 FieldName->getAsUnquotedString() + "' of '" + in Fold() 2561 const Init *FieldVal = Def->getValue(FieldName)->getValue(); in Fold() 2570 const Init *FieldVal = DI->getDef()->getValue(FieldName)->getValue(); in isConcrete() 3026 SMLoc Record::getFieldLoc(StringRef FieldName) const { in getFieldLoc() 3027 const RecordVal *R = getValue(FieldName); in getFieldLoc() [all …]
|
| H A D | SetTheory.cpp | 242 StringRef FieldName; member 244 FieldExpander(StringRef fn) : FieldName(fn) {} in FieldExpander() 247 ST.evaluate(Def->getValueInit(FieldName), Elts, Def->getLoc()); in expand() 278 void SetTheory::addFieldExpander(StringRef ClassName, StringRef FieldName) { in addFieldExpander() argument 279 addExpander(ClassName, std::make_unique<FieldExpander>(FieldName)); in addFieldExpander()
|
| H A D | TGParser.cpp | 3056 const StringInit *FieldName = in ParseValue() local 3058 if (!Result->getFieldType(FieldName)) { in ParseValue() 3067 const RecordVal *V = DI->getDef()->getValue(FieldName); in ParseValue() 3072 if (const auto *RV = R->getValue(FieldName)) in ParseValue() 3078 Result = FieldInit::get(Result, FieldName)->Fold(CurRec); in ParseValue() 3548 const StringInit *FieldName = StringInit::get(Records, Lex.getCurStrVal()); in ParseBodyItem() local 3559 RecordVal *Field = CurRec->getValue(FieldName); in ParseBodyItem() 3561 return Error(IdLoc, "Value '" + FieldName->getValue() + "' unknown!"); in ParseBodyItem() 3576 return SetValue(CurRec, IdLoc, FieldName, BitList, Val); in ParseBodyItem()
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
| H A D | TypeIndex.cpp | 93 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 D | TypeDumpVisitor.cpp | 163 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 D | SymbolDumper.cpp | 52 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/utils/TableGen/ |
| H A D | SearchableTableEmitter.cpp | 633 for (const auto &FieldName : Key) { in parseSearchIndex() local 634 const GenericField *Field = Table.getFieldByName(FieldName); in parseSearchIndex() 640 FieldName + "'"); in parseSearchIndex() 782 for (const auto &FieldName : Fields) { in run() local 783 Table->Fields.emplace_back(FieldName); // Construct a GenericField. in run() 786 TableRec->getValue(("TypeOf_" + FieldName).str())) { in run() 791 FieldName + in run() 893 std::string FieldName = Field.getName().str(); in run() local 897 if (FieldName.find(':') != std::string::npos || in run() 898 FieldName == "SearchableFields" || FieldName == "EnumNameField" || in run() [all …]
|
| H A D | SubtargetEmitter.cpp | 149 const StringRef FieldName = Feature->getValueAsString("FieldName"); in emitSubtargetInfoMacroCalls() local 154 !StringRef(FieldName).contains('['); in emitSubtargetInfoMacroCalls() 163 FieldName.substr(0, 1).lower() + FieldName.substr(1).str(); in emitSubtargetInfoMacroCalls() 165 OS << "GET_SUBTARGETINFO_MACRO(" << FieldName << ", " << Default << ", " in emitSubtargetInfoMacroCalls() 1889 StringRef FieldName = R->getValueAsString("FieldName"); in parseFeaturesFunction() local 1892 OS << " if (Bits[" << Target << "::" << Instance << "]) " << FieldName in parseFeaturesFunction() 1895 OS << " if (Bits[" << Target << "::" << Instance << "] && " << FieldName in parseFeaturesFunction() 1896 << " < " << Value << ") " << FieldName << " = " << Value << ";\n"; in parseFeaturesFunction()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/TableGen/ |
| H A D | Record.h | 398 virtual const RecTy *getFieldType(const StringInit *FieldName) const { in getFieldType() argument 449 const RecTy *getFieldType(const StringInit *FieldName) const override; 1308 const RecTy *getFieldType(const StringInit *FieldName) const override; 1377 const StringInit *FieldName; // Field we are accessing variable 1380 : TypedInit(IK_FieldInit, R->getFieldType(FN)), Rec(R), FieldName(FN) { in FieldInit() 1384 << ", got FieldName = " << *FieldName in FieldInit() 1402 const StringInit *getFieldName() const { return FieldName; } in getFieldName() 1411 return Rec->getAsString() + "." + FieldName->getValue().str(); in getAsString() 1893 SMLoc getFieldLoc(StringRef FieldName) const; 1897 const Init *getValueInit(StringRef FieldName) const; [all …]
|
| H A D | SetTheory.h | 122 void addFieldExpander(StringRef ClassName, StringRef FieldName);
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | TypeDumpVisitor.h | 41 void printTypeIndex(StringRef FieldName, TypeIndex TI) const; 43 void printItemIndex(StringRef FieldName, TypeIndex TI) const;
|
| H A D | TypeIndex.h | 288 LLVM_ABI void printTypeIndex(ScopedPrinter &Printer, StringRef FieldName,
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
| H A D | EHFrameSupportImpl.h | 100 Block &InBlock, const char *FieldName); 106 Block &BlockToFix, size_t PointerFieldOffset, const char *FieldName);
|
| H A D | EHFrameSupport.cpp | 446 const char *FieldName) { in readPointerEncoding() argument 478 FieldName + "in CFI record at " + in readPointerEncoding() 510 size_t PointerFieldOffset, const char *FieldName) { in getOrCreateEncodedPointerEdge() argument 524 << FieldName << " at " << EdgeI->second.Target->getAddress(); in getOrCreateEncodedPointerEdge() 590 << FieldName << " at " << TargetSym->getAddress(); in getOrCreateEncodedPointerEdge()
|
| /freebsd/stand/efi/libefi/ |
| H A D | efihttp.c | 470 headers[0].FieldName = (CHAR8 *)"Host"; in _efihttp_fs_open() 472 headers[1].FieldName = (CHAR8 *)"Connection"; in _efihttp_fs_open() 474 headers[2].FieldName = (CHAR8 *)"Accept"; in _efihttp_fs_open() 544 if (strcasecmp((const char *)message.Headers[i].FieldName, in _efihttp_fs_open() 548 else if (strcasecmp((const char *)message.Headers[i].FieldName, in _efihttp_fs_open()
|
| /freebsd/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseInit.cpp | 123 const IdentifierInfo *FieldName = Tok.getIdentifierInfo(); in ParseInitializerWithPotentialDesignator() local 126 llvm::raw_svector_ostream(NewSyntax) << '.' << FieldName->getName() in ParseInitializerWithPotentialDesignator() 140 FieldName, SourceLocation(), NameLoc)); in ParseInitializerWithPotentialDesignator()
|
| /freebsd/contrib/llvm-project/llvm/utils/TableGen/Basic/ |
| H A D | ARMTargetDefEmitter.cpp | 61 auto GatherSubtargetFeatureFieldValues = [&RK](StringRef FieldName) { in emitARMTargetDef() argument 64 if (Rec->getValueAsString("FieldName") == FieldName) { in emitARMTargetDef()
|
| /freebsd/sys/contrib/edk2/Include/Protocol/ |
| H A D | Http.h | 215 CHAR8 *FieldName; member
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Readers/ |
| H A D | LVCodeViewVisitor.h | 56 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 D | dmtbinfo3.c | 906 #define ACPI_DM_GENERIC_ENTRY(FieldType, FieldName) \ argument 907 {{FieldType, 0, FieldName, 0}, ACPI_DMT_TERMINATOR}
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | JSON.cpp | 330 llvm::StringRef FieldName = S.field(); in printErrorContext() local 332 if (!O || !O->get(FieldName)) in printErrorContext() 337 if (FieldName == StringRef(KV->first)) in printErrorContext()
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/ |
| H A D | LVCodeViewVisitor.cpp | 472 void LVTypeVisitor::printTypeIndex(StringRef FieldName, TypeIndex TI, in printTypeIndex() argument 474 codeview::printTypeIndex(W, FieldName, TI, in printTypeIndex() 714 void LVSymbolVisitor::printTypeIndex(StringRef FieldName, TypeIndex TI) const { in printTypeIndex() argument 715 codeview::printTypeIndex(W, FieldName, TI, Types); in printTypeIndex() 1701 llvm::StringRef FieldName; in visitKnownRecord() 1704 FieldName = "Callee"; in visitKnownRecord() 1707 FieldName = "Caller"; in visitKnownRecord() 1710 FieldName = "Inlinee"; in visitKnownRecord() 1717 printTypeIndex(FieldName, FuncID); in visitKnownRecord() 1737 void LVLogicalVisitor::printTypeIndex(StringRef FieldName, TypeIndex TI, in printTypeIndex() argument [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Object/ |
| H A D | Archive.cpp | 180 getArchiveMemberDecField(Twine FieldName, const StringRef RawField, in getArchiveMemberDecField() argument 186 return malformedError("characters in " + FieldName + in getArchiveMemberDecField() 198 getArchiveMemberOctField(Twine FieldName, const StringRef RawField, in getArchiveMemberOctField() argument 204 return malformedError("characters in " + FieldName + in getArchiveMemberOctField()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/ |
| H A D | COFFDumper.cpp | 120 void printDataDirectory(uint32_t Index, const std::string &FieldName); 138 void printTypeIndex(StringRef FieldName, TypeIndex TI) { in printTypeIndex() argument 140 codeview::printTypeIndex(Writer, FieldName, TI, Types); in printTypeIndex() 660 const std::string &FieldName) { in printDataDirectory() argument 664 W.printHex(FieldName + "RVA", Data->RelativeVirtualAddress); in printDataDirectory() 665 W.printHex(FieldName + "Size", Data->Size); in printDataDirectory()
|