Searched defs:TypeVector (Results 1 – 4 of 4) sorted by relevance
38 struct TypeVector { struct39 template <typename... FortranType> static constexpr TypeVector Create() { in Create()43 constexpr size_t size() const { return size_; }; in size()44 using const_iterator = const DynamicType *;45 constexpr const_iterator begin() const { return startPtr; } in begin()46 constexpr const_iterator end() const { return endPtr; } in end()47 const DynamicType &operator[](size_t i) const { return *(startPtr + i); } in operator []()49 const DynamicType *startPtr{nullptr};50 const DynamicType *endPtr{nullptr};51 const size_t size_;
391 typedef std::vector<std::string> TypeVector; typedef in ObjCRuntimeMethodType
165 std::vector<CVType> TypeVector; member
2071 typedef SmallVector<ParsedType, 12> TypeVector; typedef