Searched defs:_countof (Results 1 - 2 of 2) sorted by relevance

/external/webkit/WebCore/plugins/win/
H A DPluginDatabaseWin.cpp38 #define _countof(x) (sizeof(x)/sizeof(x[0])) macro
97 DWORD nameLen = _countof(name);
258 DWORD pluginDirectorySize = ::ExpandEnvironmentStringsW(TEXT("%SYSTEMDRIVE%\\PFiles\\Plugins"), pluginDirectoryStr, _countof(pluginDirectoryStr));
260 if (pluginDirectorySize > 0 && pluginDirectorySize <= _countof(pluginDirectoryStr))
361 if (GetSystemDirectory(systemDirectoryStr, _countof(systemDirectoryStr)) == 0)
/external/webkit/JavaScriptCore/wtf/
H A DPlatform.h531 /* _countof is only included in CE6; for CE5 we need to define it ourself */
532 #ifndef _countof
533 #define _countof(x) (sizeof(x) / sizeof((x)[0])) macro

Completed in 562 milliseconds