/external/stlport/doc/ |
README.evc4 | 11 This document should provide step-by-step guidance for installing, testing and using the STLport library under Windows CE .NET 4.x 12 (aka Windows Mobile 2003 aka Pocket PC 2003). 35 SDKROOT=C:\Program Files\Windows CE Tools 120 #include <windows.h> 125 #include <windows.h>
|
/external/webkit/Source/JavaScriptCore/wtf/ |
Assertions.cpp | 54 #if OS(WINDOWS) 55 #include <windows.h> 79 // Each call to DBGPRINTF generates at most 128 bytes of output on the Windows SDK. 81 // The length of each output string is constrained even more than on the Windows SDK. 186 #if OS(WINDOWS) && !OS(WINCE) && defined(_DEBUG)
|
/external/webkit/Source/WebCore/platform/text/ |
TextEncoding.cpp | 129 // normalization will be done by Windows CE API 144 // We treat EUC-KR as windows-949 (its superset), but need to expose 145 // the name 'EUC-KR' because the name 'windows-949' is not recognized by 147 // 'windows-949' with the name 'EUC-KR'. 151 static const char* const a = atomicCanonicalTextEncodingName("windows-949");
|
/external/chromium/chrome/common/extensions/docs/ |
whats_new.html | 193 <li><a href="windows.html">Windows</a></li> 345 <li> The <a href="windows.html#method-create">chrome.windows.create()</a> 347 Previously, all new windows had the keyboard focus; 348 now you can create windows without interrupting the user's typing. 353 the <a href="windows.html#method-create">chrome.windows.create()</a> 355 or the <a href="windows.html#type-Window">Window</a> type. 409 to run even when Chrome has no windows open [all...] |
/external/zlib/src/win32/ |
DLL_FAQ.txt | 144 - Most of the native Windows API functions (without varargs) use 147 application is intrinsically tied to the Windows API (e.g. 148 it calls native Windows API functions such as CreateFile()), 152 sound decision to request the inclusion of <windows.h>, or to 157 "Windows functionality", but is more like "C functionality". 162 of using STDCALL in the Windows API, it is not the default 163 convention used by the C compilers that run under Windows. 235 <windows.h> and the related headers), its DLL build will work 266 - MSVCRT.DLL exists on every Windows 95 with a new service pack 268 on all other Windows 4.x or later (Windows 98, Windows NT 4 [all...] |
/ndk/build/core/ |
init.mk | 137 # On all modern variants of Windows (including Cygwin and Wine) 143 HOST_OS := windows 155 HOST_OS := windows 172 # HOST_OS_BASE == windows 185 ifeq ($(HOST_OS),windows) 187 $(call ndk_log,Found /bin/uname.exe on Windows host, checking for Cygwin) 189 # native Windows shell. On cygwin, this will create an empty NUL file 217 ifeq ($(HOST_OS_BASE),windows) 225 else # HOST_OS_BASE != windows 241 endif # HOST_OS_BASE != windows [all...] |
/external/icu4c/common/ |
umutex.cpp | 31 /* Prefer native Windows APIs even if POSIX is implemented (i.e., on Cygwin). */ 50 # include <windows.h> 100 * directly using the system (Posix or Windows) APIs. See u_setMutexFunctions(). 210 // Windows implementation of UMutex. 212 // Each UMutex has a corresponding Windows CRITICAL_SECTION. 216 // InitOnceExecuteOnce was introduced with Windows Vista. For now ICU 217 // must support Windows XP, so we roll our own. ICU will switch to the 218 // native Windows InitOnceExecuteOnce when possible. 301 #endif // Windows Implementation
|
/external/qemu/android/build/ |
common.sh | 96 OS=windows 114 # windows (MSys) 138 # special case: windows-x86 => windows 142 cygwin-x86|windows-x86) 143 HOST_TAG=windows 194 # windows executables on a Linux machine, which is considerably 228 OS=windows 229 HOST_OS=windows
|
/frameworks/base/core/java/android/view/ |
WindowManagerPolicy.java | 160 * like active content to appear. This will cause windows behind to 164 * given to windows behind. 233 * layout of other windows. 239 * area of windows behind it. Must be called with the 249 * area of windows behind it. Must be called with the 286 * this window. May return null for system windows. 294 * this window has actually displayed any windows. This is most useful 295 * with the "starting up" window to determine if any windows were 298 * @return Returns true if one or more windows have been displayed, 398 * at the top of the other windows and consumes events [all...] |
/frameworks/base/services/java/com/android/server/wm/ |
DragState.java | 193 final WindowList windows = mService.getWindowListLocked(mDisplay); local 194 if (windows != null) { 195 final int N = windows.size(); 197 sendDragStartedLw(windows.get(i), touchX, touchY, mDataDescription); 349 Slog.w(WindowManagerService.TAG, "can't send drag notification to windows"); 398 final WindowList windows = mService.getWindowListLocked(mDisplay); local 399 if (windows == null) { 402 final int N = windows.size(); 404 WindowState child = windows.get(i);
|
InputMonitor.java | 107 // Figure out whether this window is layered above system windows. 166 // Add a window to our list of input windows. 220 // Populate the input window list with information about all of the windows that 222 // As an optimization, we could try to prune the list of windows but this turns 249 // Add all windows on the default display. 252 final WindowList windows = local 254 for (int winNdx = windows.size() - 1; winNdx >= 0; --winNdx) { 255 final WindowState child = windows.get(winNdx); 295 // Send windows to native code.
|
/external/webkit/Tools/EWebLauncher/ |
main.c | 72 static Eina_List *windows = NULL; variable 273 app = (ELauncher*) eina_list_data_get(windows); 747 windows = eina_list_append(windows, app); 756 if (!eina_list_count(windows)) 765 EINA_LIST_FOREACH(windows, l, app) 770 windows = eina_list_remove(windows, app); 779 while (windows) { 780 app = (ELauncher*) eina_list_data_get(windows); [all...] |
/ndk/build/tools/ |
build-host-gcc.sh | 50 windows 51 windows-x86 (equivalent to 'windows') 52 windows-x86_64 60 --systems=linux-x86,linux-x86_64,windows,windows-x86_64 \ 64 You can build Windows binaries on Linux if you have a Windows-targetting 88 Windows toolchain that targets Android ARM binaries) will force the generation 218 # windows (historical alias to windows-x86 [all...] |
/build/core/ |
envsetup.mk | 52 HOST_OS := windows 58 # Under Linux, if USE_MINGW is set, we change HOST_OS to Windows to build the 59 # Windows SDK. Only a subset of tools and SDK will manage to build properly. 62 HOST_OS := windows 99 ifeq ($(HOST_OS),windows) 100 HOST_PREBUILT_TAG := windows
|
/external/bison/m4/ |
locale-fr.m4 | 29 /* On native Windows, setlocale(category, "") looks at the system settings, 78 # Handle native Windows specially, because there setlocale() interprets 85 # Test for the native Windows locale name. 157 /* On native Windows, setlocale(category, "") looks at the system settings, 206 # Handle native Windows specially, because there setlocale() interprets 213 # Test for the hypothetical native Windows locale name.
|
/external/chromium/chrome/browser/first_run/ |
first_run_win.cc | 8 #include <windows.h> 213 // This class specializes on finding hung 'owned' windows. Unfortunately, the 215 // windows and not owned top-level windows. 241 // both cases it is worth hung testing because both windows share the 295 // Windows 7 has deprecated the quick launch bar.
|
/external/chromium/chrome/browser/sessions/ |
session_restore_uitest.cc | 101 // active windows returns NULL. 128 // active windows returns NULL. 169 // active windows returns NULL. 205 // active windows returns NULL. 250 // active windows returns NULL. 374 // Creates two windows, closes one, restores, make sure only one window open.
|
tab_restore_service.h | 27 // tabs and windows. When a tab is closed 168 // Creates and add entries to |entries| for each of the windows in |windows|. 169 void CreateEntriesFromWindows(std::vector<SessionWindow*>* windows, 284 // Callback from SessionService when we've received the windows from the 288 std::vector<SessionWindow*>* windows);
|
/external/chromium/chrome/browser/ui/cocoa/ |
confirm_quit_panel_controller.mm | 117 // This animation will run through all the windows of the passed-in 142 for (NSWindow* window in [application_ windows]) { 229 // the windows (without animation) to look like we've "quit" and then wait 264 // commit to quitting and hide all the open windows. 271 // At this point, the quit has been confirmed and windows should all 375 // Iterates through the list of open windows and hides them all.
|
/external/chromium/googleurl/src/ |
url_parse_file.cc | 96 // treat this as a having no host but the path given. Works on Windows only. 107 // will get a server name of "foo" and a path of "/bar". Later, on Windows, 171 // Windows path, don't try to extract the scheme (for example, "c:\foo"). 175 // Windows UNC path: don't try to extract the scheme, but keep the slashes. 204 // Check whether the input is a drive again. We checked above for windows 210 // Anything not beginning with a drive spec ("c:\") on Windows is treated
|
/external/clang/test/ |
lit.cfg | 16 if platform.system() == 'Windows': 31 execute_external = (platform.system() != 'Windows' 73 if platform.system() != 'Windows': 222 if platform.system() not in ['Windows'] or lit.getBashPath() != '': 226 if not platform.system() in ['Windows'] or lit.getBashPath() == '': 234 if platform.system() not in ['Windows']:
|
/external/qemu/distrib/sdl-1.2.15/VisualCE/SDLMain/ |
SDLmain.vcproj | 1 <?xml version="1.0" encoding="windows-1251"?> 17 Name="Windows Mobile 5.0 Pocket PC SDK (ARMV4I)" 190 Name="Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)" 439 Name="Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)" 554 Name="Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)" 581 Name="Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)"
|
/external/skia/src/sfnt/ |
SkOTTable_name.h | 49 ((Windows, SkTEndian_SwapBE16(3))) 115 struct Windows { 118 ((UnicodeBMPUCS2, SkTEndian_SwapBE16(1))) //Windows default 127 } windows; member in union:SkOTTableNameRecord::EncodingID 254 struct Windows { 463 } windows; member in union:SkOTTableNameRecord::LanguageID
|
/external/webkit/Source/WebCore/platform/graphics/chromium/ |
TransparencyWin.h | 34 #include <windows.h> 52 // Helper class that abstracts away drawing ClearType text and Windows form 54 // that is composited later manually. This is to get around Windows' inability 98 // will be forced to be opqaue (since Windows may have messed up the 236 // of the original contents of the m_layerBuffer before Windows drew on it. 237 // It allows us to re-create what Windows did to the layer. It is an
|
/packages/apps/Email/src/org/apache/commons/io/ |
FilenameUtils.java | 28 * When dealing with filenames you can hit problems when moving from a Windows
36 * Most methods on this class are designed to work the same on both Unix and Windows.
37 * Those that don't include 'System', 'Unix' or 'Windows' in their name.
57 * This class only supports Unix and Windows style names.
60 * Windows:
113 * The Windows separator character.
143 * Determines if Windows file system is in use.
145 * @return true if the system is Windows
167 * The input may contain separators in either Unix or Windows format.
177 * The output will be the same on both Unix and Windows except [all...] |