HomeSort by: relevance | last modified time | path
    Searched defs:FieldName (Results 1 - 13 of 13) sorted by relevancy

  /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/lib/TableGen/
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/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/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/include/llvm/TableGen/
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/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/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,
  /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/clang/tools/c-index-test/
c-index-test.c 1750 const char *FieldName = clang_getCString(FieldSpelling);
1766 FieldName);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
CodeGenPrepare.cpp 2430 enum FieldName {
2446 FieldName compare(const ExtAddrMode &other) {
2481 return static_cast<FieldName>(Result);
2494 Value *GetFieldAsValue(FieldName Field, Type *IntPtrTy) {
2509 void SetCombinedField(FieldName Field, Value *V,
3444 ExtAddrMode::FieldName DifferentField = ExtAddrMode::NoField;
3485 ExtAddrMode::FieldName ThisDifferentField =
  /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());

Completed in 62 milliseconds