Searched refs:howMany (Results 1 - 2 of 2) sorted by relevance

/inkscape/src/
H A Dprofile-manager.cpp75 unsigned int howMany = childCount(NULL); local
76 for ( unsigned int index = 0; index < howMany; index++ ) {
H A Dmain.cpp2074 int howMany = MultiByteToWideChar( CP_ACP, 0, data.cFileName, -1, NULL, 0 ); local
2075 if ( howMany > 0 )
2077 howMany += baseLen;
2078 wchar_t* tmp = new wchar_t[howMany + 1];
2079 wcsncpy( tmp, base, howMany + 1 );
2080 MultiByteToWideChar( CP_ACP, 0, data.cFileName, -1, tmp + baseLen, howMany + 1 - baseLen );
2085 int howMany = wcslen(data.cFileName) + baseLen;
2086 wchar_t* tmp = new wchar_t[howMany + 1];
2087 wcsncpy( tmp, base, howMany + 1 );
2088 wcsncat( tmp, data.cFileName, howMany
[all...]

Completed in 54 milliseconds