Searched refs:Platform (Results 1 - 25 of 29) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/stc/scintilla/src/
H A DWindowAccessor.cxx13 #include "Platform.h"
29 return Platform::IsDBCSLeadByte(codePage, ch);
34 lenDoc = Platform::SendScintilla(id, SCI_GETTEXTLENGTH, 0, 0);
45 Platform::SendScintillaPointer(id, SCI_GETTEXTRANGE, 0, &tr);
58 return static_cast<char>(Platform::SendScintilla(
63 return Platform::SendScintilla(id, SCI_LINEFROMPOSITION, position, 0);
67 return Platform::SendScintilla(id, SCI_POSITIONFROMLINE, line, 0);
71 return Platform::SendScintilla(id, SCI_GETFOLDLEVEL, line, 0);
76 lenDoc = Platform::SendScintilla(id, SCI_GETTEXTLENGTH, 0, 0);
81 return Platform
[all...]
H A DLexCaml.cxx26 #include "Platform.h"
74 void Platform::DebugPrintf(const char *format, ...) {
80 Platform::DebugDisplay(buffer);
83 void Platform::DebugPrintf(const char *, ...) {
87 bool Platform::IsDBCSLeadByte(int codePage, char ch) {
91 long Platform::SendScintilla(WindowID w, unsigned int msg, unsigned long wParam, long lParam) {
95 long Platform::SendScintillaPointer(WindowID w, unsigned int msg, unsigned long wParam, void *lParam) {
H A DViewStyle.cxx10 #include "Platform.h"
156 selbar.desired = Platform::Chrome();
157 selbarlight.desired = Platform::ChromeHighlight();
159 styles[STYLE_LINENUMBER].back.desired = Platform::Chrome();
235 selbar.desired = Platform::Chrome();
236 selbarlight.desired = Platform::ChromeHighlight();
272 Platform::DefaultFontSize(), fontNames.Save(Platform::DefaultFont()),
284 styles[STYLE_LINENUMBER].back.desired = Platform::Chrome();
H A DCallTip.cxx11 #include "Platform.h"
182 int thisStartHighlight = Platform::Maximum(startHighlight, chunkOffset);
183 thisStartHighlight = Platform::Minimum(thisStartHighlight, chunkEndOffset);
185 int thisEndHighlight = Platform::Maximum(endHighlight, chunkOffset);
186 thisEndHighlight = Platform::Minimum(thisEndHighlight, chunkEndOffset);
202 maxWidth = Platform::Maximum(maxWidth, x);
H A DDocumentAccessor.cxx13 #include "Platform.h"
33 return Platform::IsDBCSLeadByte(codePage, ch);
107 Platform::DebugPrintf("Bad colour positions %d - %d\n", startSeg, pos);
H A DLexGui4Cli.cxx30 #include "Platform.h"
39 #define debug Platform::DebugPrintf
H A DScintillaBase.cxx13 #include "Platform.h"
199 //Platform::DebugPrintf("AutoComplete %s\n", list);
246 rcac.bottom = Platform::Minimum(rcac.top + heightLB, rcClient.bottom);
258 widthLB = Platform::Maximum(widthLB, rcList.right - rcList.left);
260 widthLB = Platform::Minimum(widthLB, aveCharWidth*maxListWidth);
292 wordCurrent[Platform::Minimum(i - startWord, 999)] = '\0';
H A DStyle.cxx10 #include "Platform.h"
18 Platform::DefaultFontSize(), 0, SC_CHARSET_DEFAULT,
H A DEditor.cxx13 #include "Platform.h"
521 //Platform::DebugPrintf("lines on screen = %d\n", htClient / lineHeight + 1);
537 //Platform::DebugPrintf("Lines %d screen = %d maxScroll = %d\n",
630 minX = Platform::Minimum(ed->xStartSelect, ed->xEndSelect);
632 maxX = Platform::Maximum(ed->xStartSelect, ed->xEndSelect);
681 //Platform::DebugPrintf("line=%d\n", line);
833 //Platform::DebugPrintf("Position of (%d,%d) line = %d top=%d\n", pt.x, pt.y, line, topLine);
873 //Platform::DebugPrintf("Redraw %0d,%0d - %0d,%0d\n", rc.left, rc.top, rc.right, rc.bottom);
892 //Platform::DebugPrintf("Redraw all\n");
935 rc.top = Platform
[all...]
H A DDocument.cxx13 #include "Platform.h"
241 return Platform::Clamp(pos, 0, Length());
274 for (i=0; i<Platform::DBCSCharMaxLength(); i++) {
278 return Platform::DBCSCharLength(dbcsCodePage, mbstr);
290 //Platform::DebugPrintf("NoCRLF %d %d\n", pos, moveDir);
325 for(i=0;i<Platform::DBCSCharMaxLength();i++) {
330 int mbsize = Platform::DBCSCharLength(dbcsCodePage, mbstr);
442 //Platform::DebugPrintf("Steps=%d\n", steps);
1111 //Platform::DebugPrintf("Find %d %d %s %d\n", startPos, endPos, ft->lpstrText, lengthFind);
1121 if (pos + lengthFind > Platform
[all...]
H A DCellBuffer.cxx13 #include "Platform.h"
171 Platform::DebugPrintf("No memory available\n");
191 Platform::DebugPrintf("No memory available\n");
204 //Platform::DebugPrintf("InsertValue[%d] = %d\n", pos, value);
234 //Platform::DebugPrintf("SetValue[%d] = %d\n", pos, value);
236 //Platform::DebugPrintf("Resize %d %d\n", size,pos);
238 //Platform::DebugPrintf("end Resize %d %d\n", size,pos);
248 //Platform::DebugPrintf("Remove %d\n", pos);
270 //Platform::DebugPrintf("LineFromPostion %d lines=%d end = %d\n", pos, lines, linesData[lines].startPosition);
273 //Platform
[all...]
H A DContractionState.cxx8 #include "Platform.h"
133 Platform::DebugPrintf("No memory available\n");
144 //Platform::DebugPrintf("InsertLine[%d] = %d\n", lineDoc);
H A DLexPython.cxx14 #include "Platform.h"
400 const int levelBeforeComments = Platform::Maximum(indentCurrentLevel,levelAfterComments);
H A DLineMarker.cxx10 #include "Platform.h"
75 int minDim = Platform::Minimum(rc.Width(), rc.Height());
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/stc/scintilla/include/
H A DPlatform.h2 /** @file Platform.h
459 * Platform class used to retrieve system wide parameters such as double click speed
462 class Platform { class
463 // Private so Platform objects can not be copied
464 Platform(const Platform &) {} function in class:Platform
465 Platform &operator=(const Platform &) { return *this; }
469 Platform() {} function in class:Platform
470 ~Platform() {}
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dportnote.tex1 \chapter{Platform details}\label{platformdetails}
H A Dradiobox.tex294 {\bf Platform note:} Currently only implemented in wxMSW, wxGTK and wxUniversal
312 {\bf Platform note:} Currently only implemented in wxMSW, wxGTK and wxUniversal
389 {\bf Platform note:} Currently only implemented in wxMSW and wxGTK2 and does
H A Dtbitmap.tex6 either monochrome or colour. Platform-specific methods for creating a
H A Dcategory.tex547 \twocolitem{\helpref{wxDataInputStream}{wxdatainputstream}}{Platform-independent binary data input stream class}
548 \twocolitem{\helpref{wxDataOutputStream}{wxdataoutputstream}}{Platform-independent binary data output stream class}
549 \twocolitem{\helpref{wxTextInputStream}{wxtextinputstream}}{Platform-independent text data input stream class}
550 \twocolitem{\helpref{wxTextOutputStream}{wxtextoutputstream}}{Platform-independent text data output stream class}
H A Dcursor.tex7 different environments. Platform-specific methods for creating a {\bf
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/stc/
H A DPlatWX.cpp24 #include "Platform.h"
1373 ColourDesired Platform::Chrome() {
1379 ColourDesired Platform::ChromeHighlight() {
1385 const char *Platform::DefaultFont() {
1391 int Platform::DefaultFontSize() {
1395 unsigned int Platform::DoubleClickTime() {
1399 bool Platform::MouseButtonBounce() {
1403 bool Platform::IsKeyDown(int WXUNUSED(key)) {
1407 long Platform::SendScintilla(WindowID w,
1416 long Platform
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openvpn-2.3.1/
H A Dmsvc-build.bat33 msbuild "%SOLUTION%" /p:Configuration="%%c" /p:Platform="%%p"
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/forked-daapd-0.19/sqlext/
H A Dsqlext.c169 # error Platform not supported
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/lib/
H A Dldap.c41 # error Your Platform SDK is NOT sufficient for LDAP support! \
42 Update your Platform SDK, or disable LDAP support!
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/forked-daapd-0.19/src/
H A Dmisc.c759 # error Platform not supported

Completed in 118 milliseconds

12