Home
last modified time | relevance | path

Searched refs:findTypedAttribute (Results 1 – 3 of 3) sorted by relevance

/external/opencv3/3rdparty/openexr/IlmImf/
DImfHeader.h192 template <class T> T* findTypedAttribute (const char name[]);
193 template <class T> const T* findTypedAttribute (const char name[]) const;
195 template <class T> T* findTypedAttribute (const std::string &name);
196 template <class T> const T* findTypedAttribute (const std::string &name)
593 Header::findTypedAttribute (const char name[]) in findTypedAttribute() function
602 Header::findTypedAttribute (const char name[]) const in findTypedAttribute() function
611 Header::findTypedAttribute (const std::string &name) in findTypedAttribute() function
613 return findTypedAttribute<T> (name.c_str()); in findTypedAttribute()
619 Header::findTypedAttribute (const std::string &name) const in findTypedAttribute() function
621 return findTypedAttribute<T> (name.c_str()); in findTypedAttribute()
DImfStandardAttributes.cpp58 return header.findTypedAttribute <TypedAttribute <type> > \
DImfHeader.cpp563 return findTypedAttribute <TileDescriptionAttribute> ("tiles") != 0; in hasTileDescription()
604 return findTypedAttribute <PreviewImageAttribute> ("preview") != 0; in hasPreviewImage()
910 findTypedAttribute <PreviewImageAttribute> ("preview"); in writeTo()