Searched refs:FieldName (Results 1 - 25 of 32) sorted by relevance

12

/external/llvm/lib/TableGen/
H A DRecord.cpp1264 RecTy *TypedInit::getFieldType(const std::string &FieldName) const {
1266 if (RecordVal *Field = RecordType->getRecord()->getValue(FieldName))
1359 RecTy *VarInit::getFieldType(const std::string &FieldName) const {
1361 if (const RecordVal *RV = RTy->getRecord()->getValue(FieldName))
1367 const std::string &FieldName) const {
1374 if (Init *I = TheInit->getFieldInit(R, RV, FieldName))
1472 RecTy *DefInit::getFieldType(const std::string &FieldName) const {
1473 if (const RecordVal *RV = Def->getValue(FieldName))
1479 const std::string &FieldName) const {
1480 return Def->getValue(FieldName)
1947 getValueAsBitOrUnset(StringRef FieldName, bool &Unset) const argument
[all...]
H A DSetTheory.cpp232 StringRef FieldName; member in struct:__anon25926::FieldExpander
234 FieldExpander(StringRef fn) : FieldName(fn) {}
237 ST.evaluate(Def->getValueInit(FieldName), Elts, Def->getLoc());
268 void SetTheory::addFieldExpander(StringRef ClassName, StringRef FieldName) { argument
269 addExpander(ClassName, new FieldExpander(FieldName));
H A DTGParser.cpp1872 std::string FieldName = Lex.getCurStrVal(); local
1884 RecordVal *Field = CurRec->getValue(FieldName);
1886 return TokError("Value '" + FieldName + "' unknown!");
1897 return SetValue(CurRec, IdLoc, FieldName, BitList, Val);
/external/llvm/include/llvm/TableGen/
H A DSetTheory.h111 /// FieldName in the Record to get the set elements. That is all that is
118 void addFieldExpander(StringRef ClassName, StringRef FieldName);
H A DRecord.h519 virtual RecTy *getFieldType(const std::string &FieldName) const {
528 const std::string &FieldName) const {
586 RecTy *getFieldType(const std::string &FieldName) const override;
1075 RecTy *getFieldType(const std::string &FieldName) const override;
1077 const std::string &FieldName) const override;
1197 RecTy *getFieldType(const std::string &FieldName) const override;
1199 const std::string &FieldName) const override;
1220 std::string FieldName; // Field we are accessing member in class:llvm::VarBitInit::FieldInit
1223 : TypedInit(IK_FieldInit, R->getFieldType(FN)), Rec(R), FieldName(FN) {
1249 return Rec->getAsString() + "." + FieldName;
[all...]
/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_helpers.h69 string FieldName(const FieldDescriptor* field);
H A Dcpp_field.cc56 (*variables)["name"] = FieldName(descriptor);
H A Dcpp_message.cc779 "name", FieldName(field));
833 "name", FieldName(field));
875 "name", FieldName(field),
1640 "name", FieldName(field));
1743 "name", FieldName(field));
1749 "name", FieldName(field));
H A Dcpp_helpers.cc153 string FieldName(const FieldDescriptor* field) { function in namespace:google::protobuf::compiler::cpp
/external/protobuf/src/google/protobuf/compiler/java/
H A Djava_helpers.cc57 const string& FieldName(const FieldDescriptor* field) { function in namespace:google::protobuf::compiler::java::__anon28941
102 return UnderscoresToCamelCaseImpl(FieldName(field), false);
106 return UnderscoresToCamelCaseImpl(FieldName(field), true);
/external/protobuf/src/google/protobuf/compiler/javamicro/
H A Djavamicro_helpers.cc58 const string& FieldName(const FieldDescriptor* field) { function in namespace:google::protobuf::compiler::javamicro::__anon28948
103 return UnderscoresToCamelCaseImpl(FieldName(field), false);
107 return UnderscoresToCamelCaseImpl(FieldName(field), true);
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/
H A Djava_helpers.cc57 const string& FieldName(const FieldDescriptor* field) { function in namespace:google::protobuf::compiler::java::__anon14804
102 return UnderscoresToCamelCaseImpl(FieldName(field), false);
106 return UnderscoresToCamelCaseImpl(FieldName(field), true);
/external/clang/lib/Parse/
H A DParseInit.cpp138 const IdentifierInfo *FieldName = Tok.getIdentifierInfo(); local
141 llvm::raw_svector_ostream(NewSyntax) << '.' << FieldName->getName()
154 D.AddDesignator(Designator::getField(FieldName, SourceLocation(), NameLoc));
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_field.cc57 (*variables)["name"] = FieldName(descriptor);
H A Dcpp_helpers.h75 string FieldName(const FieldDescriptor* field);
H A Dcpp_message.cc623 "name", FieldName(descriptor_->field(i)));
626 "name", FieldName(descriptor_->field(i)));
988 "name", FieldName(field));
1046 "name", FieldName(field));
1094 "name", FieldName(field),
1222 "name", FieldName(field));
1378 "name", FieldName(field));
1675 "name", FieldName(field));
1888 "name", FieldName(field));
1992 "name", FieldName(fiel
[all...]
H A Dcpp_string_field.cc57 : "_default_" + FieldName(descriptor) + "_";
H A Dcpp_helpers.cc169 string FieldName(const FieldDescriptor* field) { function in namespace:google::protobuf::compiler::cpp
/external/protobuf/src/google/protobuf/compiler/javanano/
H A Djavanano_helpers.cc101 const string& FieldName(const FieldDescriptor* field) { function in namespace:google::protobuf::compiler::javanano::__anon28956
146 return UnderscoresToCamelCaseImpl(FieldName(field), false);
150 return UnderscoresToCamelCaseImpl(FieldName(field), true);
/external/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp62 void printDataDirectory(uint32_t Index, const std::string &FieldName);
336 void COFFDumper::printDataDirectory(uint32_t Index, const std::string &FieldName) { argument
340 W.printHex(FieldName + "RVA", Data->RelativeVirtualAddress);
341 W.printHex(FieldName + "Size", Data->Size);
/external/clang/lib/CodeGen/
H A DCGDebugInfo.cpp1725 StringRef FieldName = Field->getName();
1728 if (FieldName.empty())
1791 FieldTy = DBuilder.createObjCIVar(FieldName, FieldDefUnit,
2797 StringRef FieldName = Field->getName(); local
2800 if (FieldName.empty() && !isa<RecordType>(Field->getType()))
2806 FieldName, Unit, Line, FieldTy,
3120 StringRef FieldName = Field->getName(); local
3123 if (FieldName.empty()) {
3131 GV = DBuilder.createStaticVariable(DContext, FieldName, LinkageName, Unit,
/external/clang/tools/libclang/
H A DCXType.cpp803 DeclarationName FieldName(II);
804 RecordDecl::lookup_const_result Res = RD->lookup(FieldName);
/external/clang/lib/Sema/
H A DSemaInit.cpp1729 /// corresponds to FieldName.
1731 IdentifierInfo *FieldName) {
1732 if (!FieldName)
1739 if (FieldName == IF->getAnonField()->getIdentifier())
1890 IdentifierInfo *FieldName = D->getFieldName(); local
1903 FindIndirectFieldDesignator(*Field, FieldName)) {
1914 if (FieldName && FieldName == Field->getIdentifier())
1931 DeclContext::lookup_result Lookup = RT->getDecl()->lookup(FieldName);
1938 DeclarationNameInfo(FieldName,
1730 FindIndirectFieldDesignator(FieldDecl *AnonField, IdentifierInfo *FieldName) argument
[all...]
/external/clang/lib/Analysis/
H A DThreadSafety.cpp642 std::string FieldName = N->getNamedDecl()->getNameAsString(); local
644 return FieldName;
648 return S + "->" + FieldName;
650 return S + "." + FieldName;
/external/clang/lib/Rewrite/Frontend/
H A DRewriteModernObjC.cpp4312 std::string FieldName = (*I)->getNameAsString(); local
4313 std::string ArgName = "_" + FieldName;
4331 QT.getAsStringInternal(FieldName, Context->getPrintingPolicy());
4335 S += FieldName + ";\n";
4341 std::string FieldName = (*I)->getNameAsString(); local
4342 std::string ArgName = "_" + FieldName;
4345 RewriteByRefString(TypeString, FieldName, (*I));
4347 FieldName = TypeString + FieldName;
4351 S += FieldName
[all...]

Completed in 2151 milliseconds

12