• Home
  • Raw
  • Download

Lines Matching refs:Fields

246   void PushPropertyAttributes(std::vector<llvm::Constant*> &Fields,  in PushPropertyAttributes()  argument
258 Fields.push_back(llvm::ConstantInt::get(Int8Ty, attrs & 0xff)); in PushPropertyAttributes()
268 Fields.push_back(llvm::ConstantInt::get(Int8Ty, attrs & 0xff)); in PushPropertyAttributes()
270 Fields.push_back(llvm::ConstantInt::get(Int8Ty, 0)); in PushPropertyAttributes()
271 Fields.push_back(llvm::ConstantInt::get(Int8Ty, 0)); in PushPropertyAttributes()
1854 std::vector<llvm::Constant*> Fields; in GenerateProtocol() local
1857 Fields.push_back(MakePropertyEncodingString(property, 0)); in GenerateProtocol()
1858 PushPropertyAttributes(Fields, property); in GenerateProtocol()
1865 Fields.push_back(MakeConstantString(getter->getSelector().getAsString())); in GenerateProtocol()
1866 Fields.push_back(TypeEncoding); in GenerateProtocol()
1868 Fields.push_back(NULLPtr); in GenerateProtocol()
1869 Fields.push_back(NULLPtr); in GenerateProtocol()
1876 Fields.push_back(MakeConstantString(setter->getSelector().getAsString())); in GenerateProtocol()
1877 Fields.push_back(TypeEncoding); in GenerateProtocol()
1879 Fields.push_back(NULLPtr); in GenerateProtocol()
1880 Fields.push_back(NULLPtr); in GenerateProtocol()
1883 OptionalProperties.push_back(llvm::ConstantStruct::get(PropertyMetadataTy, Fields)); in GenerateProtocol()
1885 Properties.push_back(llvm::ConstantStruct::get(PropertyMetadataTy, Fields)); in GenerateProtocol()
2101 std::vector<llvm::Constant*> Fields; in GeneratePropertyList() local
2109 Fields.push_back(MakePropertyEncodingString(property, OID)); in GeneratePropertyList()
2110 PushPropertyAttributes(Fields, property, isSynthesized, isDynamic); in GeneratePropertyList()
2119 Fields.push_back(MakeConstantString(getter->getSelector().getAsString())); in GeneratePropertyList()
2120 Fields.push_back(TypeEncoding); in GeneratePropertyList()
2122 Fields.push_back(NULLPtr); in GeneratePropertyList()
2123 Fields.push_back(NULLPtr); in GeneratePropertyList()
2133 Fields.push_back(MakeConstantString(setter->getSelector().getAsString())); in GeneratePropertyList()
2134 Fields.push_back(TypeEncoding); in GeneratePropertyList()
2136 Fields.push_back(NULLPtr); in GeneratePropertyList()
2137 Fields.push_back(NULLPtr); in GeneratePropertyList()
2139 Properties.push_back(llvm::ConstantStruct::get(PropertyMetadataTy, Fields)); in GeneratePropertyList()