HomeSort by: relevance | last modified time | path
    Searched refs:FieldName (Results 1 - 25 of 36) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
TypeIndex.cpp 92 void llvm::codeview::printTypeIndex(ScopedPrinter &Printer, StringRef FieldName,
103 Printer.printHex(FieldName, TypeName, TI.getIndex());
105 Printer.printHex(FieldName, TI.getIndex());
TypeDumpVisitor.cpp 161 void TypeDumpVisitor::printTypeIndex(StringRef FieldName, TypeIndex TI) const {
162 codeview::printTypeIndex(*W, FieldName, TI, TpiTypes);
165 void TypeDumpVisitor::printItemIndex(StringRef FieldName, TypeIndex TI) const {
166 codeview::printTypeIndex(*W, FieldName, TI, getSourceTypes());
SymbolDumper.cpp 54 void printTypeIndex(StringRef FieldName, TypeIndex TI);
99 void CVSymbolDumperImpl::printTypeIndex(StringRef FieldName, TypeIndex TI) {
100 codeview::printTypeIndex(W, FieldName, TI, Types);
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
TypeDumpVisitor.h 38 void printTypeIndex(StringRef FieldName, TypeIndex TI) const;
40 void printItemIndex(StringRef FieldName, TypeIndex TI) const;
TypeIndex.h 286 void printTypeIndex(ScopedPrinter &Printer, StringRef FieldName, TypeIndex TI,
  /src/sys/external/bsd/drm2/dist/drm/amd/powerplay/hwmgr/
ppatomfwctrl.h 33 #define GetIndexIntoMasterCmdTable(FieldName) \
34 (((char*)(&((struct atom_master_list_of_command_functions_v2_1*)0)->FieldName)-(char*)0)/sizeof(uint16_t))
35 #define GetIndexIntoMasterDataTable(FieldName) \
36 (((char*)(&((struct atom_master_list_of_data_tables_v2_1*)0)->FieldName)-(char*)0)/sizeof(uint16_t))
  /src/external/apache2/llvm/dist/llvm/include/llvm/TableGen/
SetTheory.h 114 /// FieldName in the Record to get the set elements. That is all that is
121 void addFieldExpander(StringRef ClassName, StringRef FieldName);
Record.h 385 virtual RecTy *getFieldType(StringInit *FieldName) const {
435 RecTy *getFieldType(StringInit *FieldName) const override;
1201 RecTy *getFieldType(StringInit *FieldName) const override;
1266 StringInit *FieldName; // Field we are accessing
1269 : TypedInit(IK_FieldInit, R->getFieldType(FN)), Rec(R), FieldName(FN) {
1273 << ", got FieldName = " << *FieldName
1291 StringInit *getFieldName() const { return FieldName; }
1300 return Rec->getAsString() + "." + FieldName->getValue().str();
1691 SMLoc getFieldLoc(StringRef FieldName) const
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/TableGen/
Record.cpp 1606 RecTy *TypedInit::getFieldType(StringInit *FieldName) const {
1609 if (RecordVal *Field = Rec->getValue(FieldName))
1785 RecTy *DefInit::getFieldType(StringInit *FieldName) const {
1786 if (const RecordVal *RV = Def->getValue(FieldName))
1943 return FieldInit::get(NewRec, FieldName)->Fold(R.getCurrentRecord());
1953 FieldName->getAsUnquotedString() + "' of '" +
1955 Init *FieldVal = Def->getValue(FieldName)->getValue();
1964 Init *FieldVal = DI->getDef()->getValue(FieldName)->getValue();
2457 SMLoc Record::getFieldLoc(StringRef FieldName) const {
2458 const RecordVal *R = getValue(FieldName);
    [all...]
SetTheory.cpp 242 StringRef FieldName;
244 FieldExpander(StringRef fn) : FieldName(fn) {}
247 ST.evaluate(Def->getValueInit(FieldName), Elts, Def->getLoc());
278 void SetTheory::addFieldExpander(StringRef ClassName, StringRef FieldName) {
279 addExpander(ClassName, std::make_unique<FieldExpander>(FieldName));
TGParser.cpp 2454 StringInit *FieldName = StringInit::get(Lex.getCurStrVal());
2455 if (!Result->getFieldType(FieldName)) {
2460 Result = FieldInit::get(Result, FieldName)->Fold(CurRec);
2885 StringInit *FieldName = StringInit::get(Lex.getCurStrVal());
2896 RecordVal *Field = CurRec->getValue(FieldName);
2898 return TokError("Value '" + FieldName->getValue() + "' unknown!");
2913 return SetValue(CurRec, IdLoc, FieldName, BitList, Val);
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
SearchableTableEmitter.cpp 555 for (const auto &FieldName : Key) {
556 const GenericField *Field = Table.getFieldByName(FieldName);
562 FieldName + "'");
694 for (const auto &FieldName : Fields) {
695 Table->Fields.emplace_back(FieldName); // Construct a GenericField.
697 if (auto TypeOfRecordVal = TableRec->getValue(("TypeOf_" + FieldName).str())) {
701 "' has invalid 'TypeOf_" + FieldName +
782 std::string FieldName = std::string(Field.getName());
786 if (FieldName.find(':') != std::string::npos ||
787 FieldName == "SearchableFields" || FieldName == "EnumNameField" |
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
TFUtils.cpp 89 const char *FieldName = "<invalid>";
96 FieldName = "int64_list";
101 FieldName = "int64_list";
107 FieldName = "float_list";
125 OutFile << " feature: { " << FieldName << ": { value: ";
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseInit.cpp 168 const IdentifierInfo *FieldName = Tok.getIdentifierInfo();
171 llvm::raw_svector_ostream(NewSyntax) << '.' << FieldName->getName()
184 D.AddDesignator(Designator::getField(FieldName, SourceLocation(), NameLoc));
  /src/external/apache2/llvm/dist/llvm/tools/llvm-rc/
ResourceFileWriter.cpp 52 const Twine &FieldName) {
56 return createError(FieldName + " (" + Twine(Number) + ") does not fit in " +
62 static Error checkNumberFits(uint32_t Number, const Twine &FieldName) {
63 return checkNumberFits(Number, sizeof(FitType) * 8, FieldName);
68 static Error checkSignedNumberFits(uint32_t Number, const Twine &FieldName,
73 return createError(FieldName + " (" + Twine(SignedNum) +
79 return createError(FieldName + " (" + Twine(SignedNum) +
85 static Error checkRCInt(RCInt Number, const Twine &FieldName) {
88 return checkNumberFits<uint16_t>(Number, FieldName);
91 static Error checkIntOrString(IntOrString Value, const Twine &FieldName) {
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/bios/
amdgpu_command_table2.c 51 #define GET_INDEX_INTO_MASTER_TABLE(MasterOrData, FieldName)\
54 ->FieldName)-(char *)0)/sizeof(uint16_t))
  /src/sys/external/bsd/acpica/dist/common/
dmtbinfo3.c 798 #define ACPI_DM_GENERIC_ENTRY(FieldType, FieldName) \
799 {{FieldType, 0, FieldName, 0}, ACPI_DMT_TERMINATOR}
  /src/external/apache2/llvm/dist/llvm/lib/Support/
JSON.cpp 325 llvm::StringRef FieldName = S.field();
327 if (!O || !O->get(FieldName))
332 if (FieldName.equals(KV->first))
  /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
COFFDumper.cpp 117 void printDataDirectory(uint32_t Index, const std::string &FieldName);
135 void printTypeIndex(StringRef FieldName, TypeIndex TI) {
137 codeview::printTypeIndex(Writer, FieldName, TI, Types);
608 const std::string &FieldName) {
612 W.printHex(FieldName + "RVA", Data->RelativeVirtualAddress);
613 W.printHex(FieldName + "Size", Data->Size);
  /src/external/apache2/llvm/dist/llvm/lib/Object/
WasmObjectFile.cpp 780 StringRef FieldName = readString(Ctx);
781 if (!FieldsSeen.insert(FieldName).second)
786 if (FieldName == "language") {
788 } else if (FieldName == "processed-by") {
790 } else if (FieldName == "sdk") {
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CXType.cpp 1023 DeclarationName FieldName(II);
1028 RecordDecl::lookup_result Res = RD->lookup(FieldName);
  /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp 4207 std::string FieldName = (*I)->getNameAsString();
4208 std::string ArgName = "_" + FieldName;
4226 QT.getAsStringInternal(FieldName, Context->getPrintingPolicy());
4230 S += FieldName + ";\n";
4236 std::string FieldName = (*I)->getNameAsString();
4237 std::string ArgName = "_" + FieldName;
4240 RewriteByRefString(TypeString, FieldName, (*I));
4242 FieldName = TypeString + FieldName;
4246 S += FieldName + "; // by ref\n"
    [all...]
RewriteObjC.cpp 3418 std::string FieldName = (*I)->getNameAsString();
3419 std::string ArgName = "_" + FieldName;
3437 QT.getAsStringInternal(FieldName, Context->getPrintingPolicy());
3441 S += FieldName + ";\n";
3447 std::string FieldName = (*I)->getNameAsString();
3448 std::string ArgName = "_" + FieldName;
3451 RewriteByRefString(TypeString, FieldName, (*I));
3453 FieldName = TypeString + FieldName;
3457 S += FieldName + "; // by ref\n"
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
MasmParser.cpp 137 FieldInfo &addField(StringRef FieldName, FieldType FT,
341 FieldInfo &StructInfo::addField(StringRef FieldName, FieldType FT,
343 if (!FieldName.empty())
344 FieldsByName[FieldName.lower()] = Fields.size();
6976 const StringRef FieldName = Split.first, FieldMember = Split.second;
6978 auto StructIt = Structs.find(FieldName.lower());
6982 auto FieldIt = Structure.FieldsByName.find(FieldName.lower());
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGDebugInfo.cpp 2777 StringRef FieldName = Field->getName();
2780 if (FieldName.empty())
2846 FieldTy = DBuilder.createObjCIVar(FieldName, FieldDefUnit, FieldLine,
4336 StringRef FieldName = Field->getName();
4339 if (FieldName.empty() && !isa<RecordType>(Field->getType()))
4345 Scope, FieldName, Unit, Line, FieldTy, CGM.getLangOpts().Optimize,
4747 StringRef FieldName = Field->getName();
4750 if (FieldName.empty()) {
4758 DContext, FieldName, LinkageName, Unit, LineNo, FieldTy,

Completed in 135 milliseconds

1 2