HomeSort by relevance Sort by last modified time
    Searched refs:_countof (Results 1 - 8 of 8) 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/WebCore/platform/win/
FileSystemWin.cpp 195 int tempPathLength = ::GetTempPathA(_countof(tempPath), tempPath);
196 if (tempPathLength <= 0 || tempPathLength > _countof(tempPath))
  /external/webkit/WebCore/platform/wince/
FileSystemWince.cpp 176 int tempPathLength = ::GetTempPath(_countof(tempPath), tempPath);
177 if (tempPathLength <= 0 || tempPathLength > _countof(tempPath))
  /external/webkit/WebKit/win/WebCoreSupport/
WebContextMenuClient.cpp 62 DWORD length = ::GetModuleFileName(0, modulePath, _countof(modulePath));
  /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
  /external/webkit/WebCore/platform/network/win/
ResourceHandleWin.cpp 93 if (index < _countof(messageHandlers)) {
  /external/webkit/WebKitTools/DumpRenderTree/win/
LayoutTestControllerWin.cpp 510 DWORD targetPathLen = _countof(targetPath);
530 DWORD rootPathSize = _countof(rootPath);
    [all...]
  /external/webkit/WebKit/win/
WebView.cpp     [all...]

Completed in 90 milliseconds