| /freebsd-14.2/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-14.2/contrib/llvm-project/llvm/lib/TableGen/ |
| H A D | Record.cpp | 2931 const RecordVal *R = getValue(FieldName); in getFieldLoc() 2939 const RecordVal *R = getValue(FieldName); in getValueInit() 2956 const RecordVal *R = getValue(FieldName); in getValueAsOptionalString() 2971 const RecordVal *R = getValue(FieldName); in getValueAsBitsInit() 2983 const RecordVal *R = getValue(FieldName); in getValueAsListInit() 3009 const RecordVal *R = getValue(FieldName); in getValueAsInt() 3017 FieldName + in getValueAsInt() 3055 const RecordVal *R = getValue(FieldName); in getValueAsDef() 3067 const RecordVal *R = getValue(FieldName); in getValueAsOptionalDef() 3082 const RecordVal *R = getValue(FieldName); in getValueAsBit() [all …]
|
| H A D | SetTheory.cpp | 241 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 D | TGParser.cpp | 2966 StringInit *FieldName = StringInit::get(Records, Lex.getCurStrVal()); in ParseValue() local 2967 if (!Result->getFieldType(FieldName)) { in ParseValue() 2976 DI->getDef()->getValue(FieldName)->addReferenceLoc(FieldNameLoc); in ParseValue() 2980 if (auto *RV = R->getValue(FieldName)) in ParseValue() 2986 Result = FieldInit::get(Result, FieldName)->Fold(CurRec); in ParseValue() 3455 StringInit *FieldName = StringInit::get(Records, Lex.getCurStrVal()); in ParseBodyItem() local 3466 RecordVal *Field = CurRec->getValue(FieldName); in ParseBodyItem() 3468 return TokError("Value '" + FieldName->getValue() + "' unknown!"); in ParseBodyItem() 3483 return SetValue(CurRec, IdLoc, FieldName, BitList, Val); in ParseBodyItem()
|
| /freebsd-14.2/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 | 162 void TypeDumpVisitor::printTypeIndex(StringRef FieldName, TypeIndex TI) const { in printTypeIndex() argument 163 codeview::printTypeIndex(*W, FieldName, TI, TpiTypes); in printTypeIndex() 166 void TypeDumpVisitor::printItemIndex(StringRef FieldName, TypeIndex TI) const { in printItemIndex() argument 167 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-14.2/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | SearchableTableEmitter.cpp | 556 for (const auto &FieldName : Key) { in parseSearchIndex() local 557 const GenericField *Field = Table.getFieldByName(FieldName); in parseSearchIndex() 563 FieldName + "'"); in parseSearchIndex() 702 for (const auto &FieldName : Fields) { in run() local 703 Table->Fields.emplace_back(FieldName); // Construct a GenericField. in run() 709 "' has invalid 'TypeOf_" + FieldName + in run() 806 std::string FieldName = std::string(Field.getName()); in run() local 810 if (FieldName.find(':') != std::string::npos || in run() 811 FieldName == "SearchableFields" || FieldName == "EnumNameField" || in run() 812 FieldName == "EnumValueField") in run() [all …]
|
| H A D | SubtargetEmitter.cpp | 218 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() 1837 StringRef FieldName = R->getValueAsString("FieldName"); in ParseFeaturesFunction() local 1842 << FieldName << " = " << Value << ";\n"; in ParseFeaturesFunction() 1846 << FieldName << " < " << Value << ") " in ParseFeaturesFunction() 1847 << FieldName << " = " << Value << ";\n"; in ParseFeaturesFunction()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/TableGen/ |
| H A D | Record.h | 1403 StringInit *FieldName; // Field we are accessing variable 1410 << ", got FieldName = " << *FieldName in FieldInit() 1428 StringInit *getFieldName() const { return FieldName; } in getFieldName() 1884 SMLoc getFieldLoc(StringRef FieldName) const; 1888 Init *getValueInit(StringRef FieldName) const; 1891 bool isValueUnset(StringRef FieldName) const { in isValueUnset() argument 1892 return isa<UnsetInit>(getValueInit(FieldName)); in isValueUnset() 1933 Record *getValueAsDef(StringRef FieldName) const; 1944 bool getValueAsBit(StringRef FieldName) const; 1953 int64_t getValueAsInt(StringRef FieldName) const; [all …]
|
| H A D | SetTheory.h | 122 void addFieldExpander(StringRef ClassName, StringRef FieldName);
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | TypeDumpVisitor.h | 40 void printTypeIndex(StringRef FieldName, TypeIndex TI) const; 42 void printItemIndex(StringRef FieldName, TypeIndex TI) const;
|
| H A D | TypeIndex.h | 287 void printTypeIndex(ScopedPrinter &Printer, StringRef FieldName, TypeIndex TI,
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
| H A D | EHFrameSupportImpl.h | 97 Block &InBlock, const char *FieldName); 103 Block &BlockToFix, size_t PointerFieldOffset, const char *FieldName);
|
| H A D | EHFrameSupport.cpp | 450 const char *FieldName) { in readPointerEncoding() argument 482 FieldName + "in CFI record at " + in readPointerEncoding() 514 size_t PointerFieldOffset, const char *FieldName) { in getOrCreateEncodedPointerEdge() argument 528 << FieldName << " at " << EdgeI->second.Target->getAddress(); in getOrCreateEncodedPointerEdge() 594 << FieldName << " at " << TargetSym->getAddress(); in getOrCreateEncodedPointerEdge()
|
| /freebsd-14.2/stand/efi/libefi/ |
| H A D | efihttp.c | 471 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-14.2/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseInit.cpp | 169 const IdentifierInfo *FieldName = Tok.getIdentifierInfo(); in ParseInitializerWithPotentialDesignator() local 172 llvm::raw_svector_ostream(NewSyntax) << '.' << FieldName->getName() in ParseInitializerWithPotentialDesignator() 186 FieldName, SourceLocation(), NameLoc)); in ParseInitializerWithPotentialDesignator()
|
| /freebsd-14.2/stand/efi/include/Protocol/ |
| H A D | Http.h | 221 CHAR8 *FieldName; member
|
| /freebsd-14.2/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-14.2/sys/contrib/dev/acpica/common/ |
| H A D | dmtbinfo3.c | 864 #define ACPI_DM_GENERIC_ENTRY(FieldType, FieldName) \ argument 865 {{FieldType, 0, FieldName, 0}, ACPI_DMT_TERMINATOR}
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | JSON.cpp | 332 llvm::StringRef FieldName = S.field(); in printErrorContext() local 334 if (!O || !O->get(FieldName)) in printErrorContext() 339 if (FieldName.equals(KV->first)) in printErrorContext()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/ |
| H A D | LVCodeViewVisitor.cpp | 485 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-14.2/contrib/llvm-project/llvm/lib/Object/ |
| H A D | Archive.cpp | 181 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()
|
| H A D | WasmObjectFile.cpp | 875 StringRef FieldName = readString(Ctx); in parseProducersSection() local 876 if (!FieldsSeen.insert(FieldName).second) in parseProducersSection() 881 if (FieldName == "language") { in parseProducersSection() 883 } else if (FieldName == "processed-by") { in parseProducersSection() 885 } else if (FieldName == "sdk") { in parseProducersSection()
|
| /freebsd-14.2/contrib/llvm-project/clang/utils/TableGen/ |
| H A D | TableGenBackends.h | 50 void EmitClangAttrPrintList(const std::string &FieldName,
|