Home
last modified time | relevance | path

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

12

/freebsd-12.1/contrib/llvm/lib/TableGen/
H A DRecord.cpp1975 const RecordVal *R = getValue(FieldName); in getValueInit()
1983 const RecordVal *R = getValue(FieldName); in getValueAsString()
1998 const RecordVal *R = getValue(FieldName); in getValueAsBitsInit()
2010 const RecordVal *R = getValue(FieldName); in getValueAsListInit()
2023 ListInit *List = getValueAsListInit(FieldName); in getValueAsListOfDefs()
2036 const RecordVal *R = getValue(FieldName); in getValueAsInt()
2044 FieldName + in getValueAsInt()
2082 const RecordVal *R = getValue(FieldName); in getValueAsDef()
2094 const RecordVal *R = getValue(FieldName); in getValueAsBit()
2106 const RecordVal *R = getValue(FieldName); in getValueAsBitOrUnset()
[all …]
H A DSetTheory.cpp243 StringRef FieldName; member
245 FieldExpander(StringRef fn) : FieldName(fn) {} in FieldExpander()
248 ST.evaluate(Def->getValueInit(FieldName), Elts, Def->getLoc()); in expand()
279 void SetTheory::addFieldExpander(StringRef ClassName, StringRef FieldName) { in addFieldExpander() argument
280 addExpander(ClassName, llvm::make_unique<FieldExpander>(FieldName)); in addFieldExpander()
H A DTGParser.cpp2014 StringInit *FieldName = StringInit::get(Lex.getCurStrVal()); in ParseValue() local
2015 if (!Result->getFieldType(FieldName)) { in ParseValue()
2020 Result = FieldInit::get(Result, FieldName)->Fold(CurRec); in ParseValue()
2396 StringInit *FieldName = StringInit::get(Lex.getCurStrVal()); in ParseBodyItem() local
2408 RecordVal *Field = CurRec->getValue(FieldName); in ParseBodyItem()
2410 return TokError("Value '" + FieldName->getValue() + "' unknown!"); in ParseBodyItem()
2421 return SetValue(CurRec, IdLoc, FieldName, BitList, Val); in ParseBodyItem()
/freebsd-12.1/contrib/llvm/utils/TableGen/
H A DSearchableTableEmitter.cpp549 for (const auto &FieldName : Key) { in parseSearchIndex() local
550 const GenericField *Field = Table.getFieldByName(FieldName); in parseSearchIndex()
553 "' refers to non-existing field '" + FieldName + in parseSearchIndex()
673 for (const auto &FieldName : Fields) { in run() local
674 Table->Fields.emplace_back(FieldName); in run()
679 "' has bad 'TypeOf_" + FieldName + "': " + in run()
749 std::string FieldName = Field.getName(); in run() local
753 if (FieldName.find(':') != std::string::npos || in run()
754 FieldName == "SearchableFields" || FieldName == "EnumNameField" || in run()
755 FieldName == "EnumValueField") in run()
[all …]
/freebsd-12.1/contrib/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.cpp162 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 DSymbolDumper.cpp55 void printTypeIndex(StringRef FieldName, TypeIndex TI);
100 void CVSymbolDumperImpl::printTypeIndex(StringRef FieldName, TypeIndex TI) { in printTypeIndex() argument
101 codeview::printTypeIndex(W, FieldName, TI, Types); in printTypeIndex()
/freebsd-12.1/contrib/llvm/include/llvm/TableGen/
H A DRecord.h402 virtual RecTy *getFieldType(StringInit *FieldName) const { in getFieldType() argument
1180 StringInit *FieldName; // Field we are accessing variable
1198 StringInit *getFieldName() const { return FieldName; } in getFieldName()
1534 Init *getValueInit(StringRef FieldName) const;
1537 bool isValueUnset(StringRef FieldName) const { in isValueUnset() argument
1538 return isa<UnsetInit>(getValueInit(FieldName)); in isValueUnset()
1544 StringRef getValueAsString(StringRef FieldName) const;
1574 Record *getValueAsDef(StringRef FieldName) const;
1579 bool getValueAsBit(StringRef FieldName) const;
1589 int64_t getValueAsInt(StringRef FieldName) const;
[all …]
H A DSetTheory.h122 void addFieldExpander(StringRef ClassName, StringRef FieldName);
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeDumpVisitor.h39 void printTypeIndex(StringRef FieldName, TypeIndex TI) const;
41 void printItemIndex(StringRef FieldName, TypeIndex TI) const;
H A DTypeIndex.h278 void printTypeIndex(ScopedPrinter &Printer, StringRef FieldName, TypeIndex TI,
/freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/
H A DParseInit.cpp137 const IdentifierInfo *FieldName = Tok.getIdentifierInfo(); in ParseInitializerWithPotentialDesignator() local
140 llvm::raw_svector_ostream(NewSyntax) << '.' << FieldName->getName() in ParseInitializerWithPotentialDesignator()
153 D.AddDesignator(Designator::getField(FieldName, SourceLocation(), NameLoc)); in ParseInitializerWithPotentialDesignator()
/freebsd-12.1/sys/contrib/dev/acpica/common/
H A Ddmtbinfo3.c732 #define ACPI_DM_GENERIC_ENTRY(FieldType, FieldName) \ argument
733 {{FieldType, 0, FieldName, 0}, ACPI_DMT_TERMINATOR}
/freebsd-12.1/contrib/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp107 void printDataDirectory(uint32_t Index, const std::string &FieldName);
124 void printTypeIndex(StringRef FieldName, TypeIndex TI) { in printTypeIndex() argument
126 codeview::printTypeIndex(Writer, FieldName, TI, Types); in printTypeIndex()
620 void COFFDumper::printDataDirectory(uint32_t Index, const std::string &FieldName) { in printDataDirectory() argument
624 W.printHex(FieldName + "RVA", Data->RelativeVirtualAddress); in printDataDirectory()
625 W.printHex(FieldName + "Size", Data->Size); in printDataDirectory()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp3405 std::string FieldName = (*I)->getNameAsString(); in SynthesizeBlockImpl() local
3406 std::string ArgName = "_" + FieldName; in SynthesizeBlockImpl()
3424 QT.getAsStringInternal(FieldName, Context->getPrintingPolicy()); in SynthesizeBlockImpl()
3428 S += FieldName + ";\n"; in SynthesizeBlockImpl()
3434 std::string FieldName = (*I)->getNameAsString(); in SynthesizeBlockImpl() local
3435 std::string ArgName = "_" + FieldName; in SynthesizeBlockImpl()
3438 RewriteByRefString(TypeString, FieldName, (*I)); in SynthesizeBlockImpl()
3440 FieldName = TypeString + FieldName; in SynthesizeBlockImpl()
3444 S += FieldName + "; // by ref\n"; in SynthesizeBlockImpl()
H A DRewriteModernObjC.cpp4199 std::string FieldName = (*I)->getNameAsString(); in SynthesizeBlockImpl() local
4200 std::string ArgName = "_" + FieldName; in SynthesizeBlockImpl()
4218 QT.getAsStringInternal(FieldName, Context->getPrintingPolicy()); in SynthesizeBlockImpl()
4222 S += FieldName + ";\n"; in SynthesizeBlockImpl()
4228 std::string FieldName = (*I)->getNameAsString(); in SynthesizeBlockImpl() local
4229 std::string ArgName = "_" + FieldName; in SynthesizeBlockImpl()
4232 RewriteByRefString(TypeString, FieldName, (*I)); in SynthesizeBlockImpl()
4234 FieldName = TypeString + FieldName; in SynthesizeBlockImpl()
4238 S += FieldName + "; // by ref\n"; in SynthesizeBlockImpl()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGDebugInfo.cpp2403 StringRef FieldName = Field->getName(); in CreateTypeDefinition() local
2406 if (FieldName.empty()) in CreateTypeDefinition()
2472 FieldTy = DBuilder.createObjCIVar(FieldName, FieldDefUnit, FieldLine, in CreateTypeDefinition()
3814 StringRef FieldName = Field->getName(); in EmitDeclare() local
3817 if (FieldName.empty() && !isa<RecordType>(Field->getType())) in EmitDeclare()
3823 Scope, FieldName, Unit, Line, FieldTy, CGM.getLangOpts().Optimize, in EmitDeclare()
4143 StringRef FieldName = Field->getName(); in CollectAnonRecordDecls() local
4146 if (FieldName.empty()) { in CollectAnonRecordDecls()
4154 DContext, FieldName, LinkageName, Unit, LineNo, FieldTy, in CollectAnonRecordDecls()
/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp1933 enum FieldName { enum
1948 FieldName compare(const ExtAddrMode &other) { in compare()
1979 return static_cast<FieldName>(Result); in compare()
1992 Value *GetFieldAsValue(FieldName Field, Type *IntPtrTy) { in GetFieldAsValue()
2007 void SetCombinedField(FieldName Field, Value *V, in SetCombinedField()
2922 ExtAddrMode::FieldName DifferentField = ExtAddrMode::NoField;
2963 ExtAddrMode::FieldName ThisDifferentField = in addNewAddrMode()
/freebsd-12.1/sys/dev/drm2/radeon/
H A Datombios.h5520 …rTable(MasterOrData, FieldName) ((reinterpret_cast<char*>(&(static_cast<ATOM_MASTER_LIST_OF_##Mast… argument
5525 …IndexIntoMasterTable(MasterOrData, FieldName) (((char*)(&((ATOM_MASTER_LIST_OF_##MasterOrData##_TA… argument
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaInit.cpp2362 IdentifierInfo *FieldName = D->getFieldName(); in CheckDesignatedInitializer() local
2363 DeclContext::lookup_result Lookup = RT->getDecl()->lookup(FieldName); in CheckDesignatedInitializer()
2388 << FieldName; in CheckDesignatedInitializer()
2398 DeclarationNameInfo(FieldName, D->getFieldLoc()), in CheckDesignatedInitializer()
2405 << FieldName << CurrentObjectType); in CheckDesignatedInitializer()
2411 << FieldName << CurrentObjectType; in CheckDesignatedInitializer()
H A DSemaDecl.cpp15090 IdentifierInfo *FieldName, in VerifyBitField() argument
15103 if (FieldName) in VerifyBitField()
15105 << FieldName << FieldTy << BitWidth->getSourceRange(); in VerifyBitField()
15127 if (Value == 0 && FieldName) in VerifyBitField()
15128 return Diag(FieldLoc, diag::err_bitfield_has_zero_width) << FieldName; in VerifyBitField()
15131 if (FieldName) in VerifyBitField()
15133 << FieldName << Value.toString(10); in VerifyBitField()
15153 if (FieldName) in VerifyBitField()
15155 << FieldName << (unsigned)Value.getZExtValue() in VerifyBitField()
15167 if (FieldName) in VerifyBitField()
[all …]
H A DSemaCodeComplete.cpp5266 const char *FieldName = in CodeCompleteConstructorInitializer() local
5271 FieldName, FD); in CodeCompleteConstructorInitializer()
H A DSemaDeclCXX.cpp2876 DeclarationName FieldName, in CheckShadowInheritedFields() argument
2890 for (const auto Field : Base->lookup(FieldName)) { in CheckShadowInheritedFields()
2918 << FieldName << RD << Base << DeclIsField; in CheckShadowInheritedFields()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DExpr.h4519 Designator(const IdentifierInfo *FieldName, SourceLocation DotLoc, in Designator() argument
4522 Field.NameOrField = reinterpret_cast<uintptr_t>(FieldName) | 0x01; in Designator()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReader.cpp10109 FieldName, in diagnoseOdrViolations() enumerator
10239 FieldName) in diagnoseOdrViolations()
10242 FieldName) in diagnoseOdrViolations()

12