Home
last modified time | relevance | path

Searched refs:content_type (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/llvm/include/llvm/Object/
H A DSymbolicFile.h69 template <class content_type> class content_iterator {
70 content_type Current;
74 using value_type = content_type;
79 content_iterator(content_type symb) : Current(std::move(symb)) {} in content_iterator()
81 const content_type *operator->() const { return &Current; }
83 const content_type &operator*() const { return Current; }
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dconversion.cpp241 void test(const char * content_type) { in test() argument