HomeSort by relevance Sort by last modified time
    Searched defs:_countof (Results 1 - 2 of 2) sorted by null

  /external/webkit/WebCore/plugins/win/
PluginDatabaseWin.cpp 38 #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/
Platform.h 531 /* _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 35 milliseconds