本文整理汇总了C++中StringRef::isWide方法的典型用法代码示例。如果您正苦于以下问题:C++ StringRef::isWide方法的具体用法?C++ StringRef::isWide怎么用?C++ StringRef::isWide使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类StringRef
的用法示例。
在下文中一共展示了StringRef::isWide方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: getArgV
String getArgV(const StringRef& find , bool getValue , const StringRef& def) {
if (find.isWide() || def.isWide()) {
return getArgV((const wchar_t**)__wargv+1 , __argc-1 , find.w_str() , getValue , def.w_str());
} else {
return getArgV((const char**)__argv+1 , __argc-1 , find.a_str() , getValue , def.a_str());
}
}
示例2: fileExists
bool fileExists(const StringRef& file) {
if (file.isWide()) {
return _access(file.a_str(), 0) == 0;
} else {
return _waccess(file.w_str(), 0) == 0;
}
}
示例3: checkIntChar
__int64 chtoint64(const StringRef& str , unsigned char base) {
if (str.isWide()) {
const wchar_t* s = str.w_str();
int sign = checkIntChar(s, base);
return sign * _wcstoui64(s, 0, base);
} else {
const char* s = str.a_str();
int sign = checkIntChar(s, base);
return sign * _strtoui64(s, 0, base);
}
}
示例4: chtoint
int chtoint(const StringRef& str , unsigned char base) {
if (str.isWide()) {
const wchar_t* s = str.w_str();
int sign = checkIntChar(s, base);
return sign * wcstoul(s, 0, base);
} else {
const char* s = str.a_str();
int sign = checkIntChar(s, base);
return sign * strtoul(s, 0, base);
}
//return strToNumber<unsigned int>(str, base);
}
示例5: isDirectory
bool isDirectory(const StringRef& path) {
if (path == ".") return true;
DWORD attr;
if (path.isWide()) {
attr = GetFileAttributesA(path.a_str());
} else {
attr = GetFileAttributesW(path.w_str());
}
if (attr == INVALID_FILE_ATTRIBUTES)
return false;
else
return (attr & FILE_ATTRIBUTE_DIRECTORY) != 0;
}