Lines Matching refs:unicode_t

70 		std::vector<unicode_t> mask;
73 MaskNode( const unicode_t* s, int m ): mask( new_unicode_str( s ) ), mime( m ), next( 0 ) { } in MaskNode()
81 int GetMimeList( const unicode_t* fileName, ccollect<int>& list );
124 int GetMimeList( const unicode_t* fileName, ccollect<int>& list );
144 std::vector<unicode_t> name;
145 std::vector<unicode_t> exec;
329 static std::vector<unicode_t> GetFileExtLC( const unicode_t* uri ) in GetFileExtLC()
331 if ( !uri ) { return std::vector<unicode_t>(); } in GetFileExtLC()
333 const unicode_t* ext = find_right_char<unicode_t>( uri, '.' ); in GetFileExtLC()
335 if ( !ext || !*ext ) { return std::vector<unicode_t>(); } in GetFileExtLC()
337 std::vector<unicode_t> a = new_unicode_str( ext + 1 ); //пропустить точку in GetFileExtLC()
338 unicode_t* s = a.data(); in GetFileExtLC()
355 unicode_t buf[100]; in AddExt()
372 unicode_t buf[100]; in AddMask()
449 int MimeGlobs::GetMimeList( const unicode_t* fileName, ccollect<int>& list ) in GetMimeList()
451 std::vector<unicode_t> ext = GetFileExtLC( fileName ); in GetMimeList()
470 const unicode_t* fn = find_right_char<unicode_t>( fileName, '/' ); in GetMimeList()
475 std::vector<unicode_t> str( unicode_strlen( fn ) + 1 ); in GetMimeList()
476 unicode_t* s = str.data(); in GetMimeList()
650 int MimeDB::GetMimeList( const unicode_t* fileName, ccollect<int>& outList ) in GetMimeList()
1075 static int _GetAppList( const unicode_t* fileName, ccollect<AppNode*>& list ) in _GetAppList()
1163 static std::vector<unicode_t> PrepareCommandString( const unicode_t* exec, const unicode_t* uri ) in PrepareCommandString()
1165 if ( !exec || !uri ) { return std::vector<unicode_t>(); } in PrepareCommandString()
1168 std::vector<unicode_t> vuri; in PrepareCommandString()
1171 const unicode_t* s = exec; in PrepareCommandString()
1175 std::vector<unicode_t> cmd; in PrepareCommandString()
1189 for ( const unicode_t* t = vuri.data(); *t; t++ ) { cmd.push_back( *t ); } in PrepareCommandString()
1206 for ( const unicode_t* t = vuri.data(); *t; t++ ) { cmd.push_back( *t ); } in PrepareCommandString()
1214 std::vector<unicode_t> GetOpenCommand( const unicode_t* uri, bool* needTerminal, const unicode_t** … in GetOpenCommand()
1228 return std::vector<unicode_t>(); in GetOpenCommand()
1232 clPtr<AppList> GetAppList( const unicode_t* uri ) in GetAppList()
1248 static unicode_t ustr1[] = {'O', 'p', 'e', 'n', ' ', '(', 0}; in GetAppList()
1249 static unicode_t ustr2[] = {')', 0}; in GetAppList()
1251 node.name = carray_cat<unicode_t>( ustr1, p->name.data(), ustr2 ); in GetAppList()
1271 static unicode_t openWidthString[] = { 'O', 'p', 'e', 'n', ' ', 'w', 'i', 't', 'h', 0}; in GetAppList()