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

12

/external/swiftshader/third_party/subzero/src/
H A DIceTLS.h26 /// \def ICE_TLS_DECLARE_FIELD(Type, FieldName)
30 /// \def ICE_TLS_DEFINE_FIELD(Type, ClassName, FieldName)
34 /// \def ICE_TLS_INIT_FIELD(FieldName)
40 /// \def ICE_TLS_GET_FIELD(Type, FieldName)
44 /// \def ICE_TLS_SET_FIELD(FieldName, Value)
76 #define ICE_TLS_DECLARE_FIELD(Type, FieldName) \
77 using FieldName##__type = Type; \
78 static pthread_key_t FieldName##__key; \
79 static int FieldName##__initStatus
80 #define ICE_TLS_DEFINE_FIELD(Type, ClassName, FieldName) \
[all...]
/external/skia/src/sksl/
H A DSkSLCPPCodeGenerator.cpp206 HCodeGenerator::FieldName(name.c_str()).c_str());
211 HCodeGenerator::FieldName(name.c_str()).c_str(),
291 this->writeRuntimeValue(s.fType, HCodeGenerator::FieldName(name).c_str());
354 "%s, \"%s\");\n", HCodeGenerator::FieldName(name).c_str(), type, precision, name);
446 name, name, pdman, HCodeGenerator::FieldName(name).c_str(), name);
451 name, name, name, pdman, HCodeGenerator::FieldName(name).c_str(),
461 pdman, HCodeGenerator::FieldName(name).c_str(), name);
478 name, HCodeGenerator::FieldName(name).c_str(), name);
521 HCodeGenerator::FieldName(name).c_str());
535 HCodeGenerator::FieldName(nam
[all...]
H A DSkSLHCodeGenerator.cpp182 this->writef("\n , %s(std::move(%s)", FieldName(name).c_str(), name);
191 this->writef("\n , %s(%s)", FieldName(name).c_str(), name);
195 String field = FieldName(s->fArgument.c_str());
204 FieldName(param->fName.c_str()).c_str());
208 String field = FieldName(s->fArgument.c_str());
220 this->writef(" %s %s;\n", FieldType(param->fType).c_str(), FieldName(name).c_str());
224 FieldName(s->fArgument.c_str()).c_str());
251 FieldType(param->fType).c_str(), name, FieldName(name).c_str());
H A DSkSLHCodeGenerator.h43 static String FieldName(const char* varName) { function in class:SkSL::HCodeGenerator
/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_field.cc64 (*variables)["name"] = FieldName(descriptor);
74 StrCat("&this->", FieldName(descriptor), "()");
87 "set_has_" + FieldName(descriptor) + "();";
89 "clear_has_" + FieldName(descriptor) + "();";
H A Dcpp_message.cc304 "name", FieldName(field));
310 "name", FieldName(field));
315 "name", FieldName(field));
322 "name", FieldName(field));
1220 "name", FieldName(descriptor_->field(i)));
1228 "name", FieldName(descriptor_->field(i)));
1340 fieldname_to_chunk[FieldName(field)] = i / 8;
1352 const string& fieldname = FieldName(field);
1924 "name", FieldName(field));
1930 "name", FieldName(fiel
[all...]
H A Dcpp_helpers.h87 string FieldName(const FieldDescriptor* field);
H A Dcpp_string_field.cc58 : "_default_" + FieldName(descriptor) + "_";
/external/swiftshader/third_party/LLVM/lib/TableGen/
H A DRecord.cpp1256 RecTy *TypedInit::getFieldType(const std::string &FieldName) const {
1259 RecordVal *Field = RecordType->getRecord()->getValue(FieldName);
1360 RecTy *VarInit::getFieldType(const std::string &FieldName) const {
1362 if (const RecordVal *RV = RTy->getRecord()->getValue(FieldName))
1368 const std::string &FieldName) const {
1375 if (Init *I = TheInit->getFieldInit(R, RV, FieldName))
1473 RecTy *DefInit::getFieldType(const std::string &FieldName) const {
1474 if (const RecordVal *RV = Def->getValue(FieldName))
1480 const std::string &FieldName) const {
1481 return Def->getValue(FieldName)
[all...]
/external/llvm/lib/TableGen/
H A DRecord.cpp1151 RecTy *TypedInit::getFieldType(const std::string &FieldName) const {
1153 if (RecordVal *Field = RecordType->getRecord()->getValue(FieldName))
1324 RecTy *VarInit::getFieldType(const std::string &FieldName) const {
1326 if (const RecordVal *RV = RTy->getRecord()->getValue(FieldName))
1332 const std::string &FieldName) const {
1339 if (Init *I = TheInit->getFieldInit(R, RV, FieldName))
1439 RecTy *DefInit::getFieldType(const std::string &FieldName) const {
1440 if (const RecordVal *RV = Def->getValue(FieldName))
1446 const std::string &FieldName) const {
1447 return Def->getValue(FieldName)
1858 getValueAsBitOrUnset(StringRef FieldName, bool &Unset) const argument
[all...]
H A DSetTheory.cpp232 StringRef FieldName; member in struct:__anon12918::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, llvm::make_unique<FieldExpander>(FieldName));
/external/llvm/utils/TableGen/
H A DSearchableTableEmitter.cpp242 std::string FieldName = Field.getName(); local
246 if (FieldName.find(':') != std::string::npos || FieldName == "NAME" ||
247 FieldName == "SearchableFields" || FieldName == "EnumNameField" ||
248 FieldName == "EnumValueField")
251 FieldNames.push_back(FieldName);
/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.h342 virtual RecTy *getFieldType(const std::string &FieldName) const {
351 const std::string &FieldName) const {
417 RecTy *getFieldType(const std::string &FieldName) const override;
938 RecTy *getFieldType(const std::string &FieldName) const override;
940 const std::string &FieldName) const override;
1052 RecTy *getFieldType(const std::string &FieldName) const override;
1054 const std::string &FieldName) const override;
1075 std::string FieldName; // Field we are accessing member in class:llvm::VarBitInit::FieldInit
1078 : TypedInit(IK_FieldInit, R->getFieldType(FN)), Rec(R), FieldName(FN) {
1099 return Rec->getAsString() + "." + FieldName;
[all...]
/external/swiftshader/third_party/LLVM/utils/TableGen/
H A DSetTheory.h105 /// FieldName in the Record to get the set elements. That is all that is
112 void addFieldExpander(StringRef ClassName, StringRef FieldName);
H A DSetTheory.cpp191 StringRef FieldName; member in struct:__anon20430::FieldExpander
193 FieldExpander(StringRef fn) : FieldName(fn) {}
196 ST.evaluate(Def->getValueInit(FieldName), Elts);
221 void SetTheory::addFieldExpander(StringRef ClassName, StringRef FieldName) { argument
222 addExpander(ClassName, new FieldExpander(FieldName));
/external/swiftshader/third_party/LLVM/include/llvm/TableGen/
H A DRecord.h548 virtual RecTy *getFieldType(const std::string &FieldName) const { return 0; }
555 const std::string &FieldName) const {
597 virtual RecTy *getFieldType(const std::string &FieldName) const;
1084 virtual RecTy *getFieldType(const std::string &FieldName) const;
1086 const std::string &FieldName) const;
1192 virtual RecTy *getFieldType(const std::string &FieldName) const;
1194 const std::string &FieldName) const;
1223 std::string FieldName; // Field we are accessing member in class:llvm::FieldInit
1226 : TypedInit(R->getFieldType(FN)), Rec(R), FieldName(FN) {
1250 return Rec->getAsString() + "." + FieldName;
[all...]
/external/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeDumper.h31 void printTypeIndex(StringRef FieldName, TypeIndex TI);
/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::__anon17111
103 return UnderscoresToCamelCaseImpl(FieldName(field), false);
107 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/protobuf/src/google/protobuf/compiler/javanano/
H A Djavanano_helpers.cc101 const string& FieldName(const FieldDescriptor* field) { function in namespace:google::protobuf::compiler::javanano::__anon17119
146 return UnderscoresToCamelCaseImpl(FieldName(field), false);
150 return UnderscoresToCamelCaseImpl(FieldName(field), true);
/external/protobuf/src/google/protobuf/compiler/objectivec/
H A Dobjectivec_helpers.h99 string FieldName(const FieldDescriptor* field);
H A Dobjectivec_field.cc53 string camel_case_name = FieldName(descriptor);
/external/protobuf/src/google/protobuf/compiler/java/
H A Djava_helpers.cc83 string FieldName(const FieldDescriptor* field) { function in namespace:google::protobuf::compiler::java::__anon17091
140 return UnderscoresToCamelCase(FieldName(field), false);
144 return UnderscoresToCamelCase(FieldName(field), true);
/external/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp87 void printDataDirectory(uint32_t Index, const std::string &FieldName);
99 void printTypeIndex(StringRef FieldName, TypeIndex TI) { argument
101 CVTD.printTypeIndex(FieldName, TI);
546 void COFFDumper::printDataDirectory(uint32_t Index, const std::string &FieldName) { argument
550 W.printHex(FieldName + "RVA", Data->RelativeVirtualAddress);
551 W.printHex(FieldName + "Size", Data->Size);

Completed in 1073 milliseconds

12