• Home
  • Raw
  • Download

Lines Matching refs:Fields

249   void PushPropertyAttributes(std::vector<llvm::Constant*> &Fields,  in PushPropertyAttributes()  argument
261 Fields.push_back(llvm::ConstantInt::get(Int8Ty, attrs & 0xff)); in PushPropertyAttributes()
271 Fields.push_back(llvm::ConstantInt::get(Int8Ty, attrs & 0xff)); in PushPropertyAttributes()
273 Fields.push_back(llvm::ConstantInt::get(Int8Ty, 0)); in PushPropertyAttributes()
274 Fields.push_back(llvm::ConstantInt::get(Int8Ty, 0)); in PushPropertyAttributes()
1853 std::vector<llvm::Constant*> Fields; in GenerateProtocol() local
1855 Fields.push_back(MakePropertyEncodingString(property, nullptr)); in GenerateProtocol()
1856 PushPropertyAttributes(Fields, property); in GenerateProtocol()
1863 Fields.push_back(MakeConstantString(getter->getSelector().getAsString())); in GenerateProtocol()
1864 Fields.push_back(TypeEncoding); in GenerateProtocol()
1866 Fields.push_back(NULLPtr); in GenerateProtocol()
1867 Fields.push_back(NULLPtr); in GenerateProtocol()
1874 Fields.push_back(MakeConstantString(setter->getSelector().getAsString())); in GenerateProtocol()
1875 Fields.push_back(TypeEncoding); in GenerateProtocol()
1877 Fields.push_back(NULLPtr); in GenerateProtocol()
1878 Fields.push_back(NULLPtr); in GenerateProtocol()
1881 OptionalProperties.push_back(llvm::ConstantStruct::get(PropertyMetadataTy, Fields)); in GenerateProtocol()
1883 Properties.push_back(llvm::ConstantStruct::get(PropertyMetadataTy, Fields)); in GenerateProtocol()
2095 std::vector<llvm::Constant*> Fields; in GeneratePropertyList() local
2102 Fields.push_back(MakePropertyEncodingString(property, OID)); in GeneratePropertyList()
2103 PushPropertyAttributes(Fields, property, isSynthesized, isDynamic); in GeneratePropertyList()
2112 Fields.push_back(MakeConstantString(getter->getSelector().getAsString())); in GeneratePropertyList()
2113 Fields.push_back(TypeEncoding); in GeneratePropertyList()
2115 Fields.push_back(NULLPtr); in GeneratePropertyList()
2116 Fields.push_back(NULLPtr); in GeneratePropertyList()
2126 Fields.push_back(MakeConstantString(setter->getSelector().getAsString())); in GeneratePropertyList()
2127 Fields.push_back(TypeEncoding); in GeneratePropertyList()
2129 Fields.push_back(NULLPtr); in GeneratePropertyList()
2130 Fields.push_back(NULLPtr); in GeneratePropertyList()
2132 Properties.push_back(llvm::ConstantStruct::get(PropertyMetadataTy, Fields)); in GeneratePropertyList()