Home | History | Annotate | Download | only in highgui

Lines Matching refs:folder

60     // preprocess folder or file name - calculate its length,
66 // add folder to the path
78 // return the first folder from the path
83 // return the folder, next in the path after the specified folder.
85 const char* Next( const char* folder, int& len ) const;
167 const char* CvFilePath::Next( const char* folder, int& len ) const
169 if( !folder || folder < m_path || folder >= m_path + m_len )
172 folder = strchr( folder, ';' );
173 if( folder )
175 const char* folder_end = ++folder;
179 len = folder_end - folder;
182 return folder;
191 const char* folder = First( folder_len );
203 memcpy( buffer, folder, folder_len );
222 while( (folder = Next( folder, folder_len )) != 0 );