Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qmakeparser.cpp File Reference

(d6dfdf3ad3f68a97fd4fc2843a5d5fb424193b4b)

#include "qmakeparser.h"
#include "qmakevfs.h"
#include "ioutils.h"
#include <qfile.h>
+ Include dependency graph for qmakeparser.cpp:

Go to the source code of this file.

Macros

#define fL1S(s)
 
#define FLUSH_LHS_LITERAL()
 
#define FLUSH_RHS_LITERAL()
 
#define FLUSH_LITERAL()
 
#define FLUSH_VALUE_LIST()
 

Macro Definition Documentation

◆ fL1S

#define fL1S ( s)
Value:
static QString fromLatin1(QByteArrayView ba)
This is an overloaded member function, provided for convenience. It differs from the above function o...
Definition qstring.cpp:5888
GLdouble s
[6]
Definition qopenglext.h:235

Definition at line 104 of file qmakeparser.cpp.

◆ FLUSH_LHS_LITERAL

#define FLUSH_LHS_LITERAL ( )
Value:
do { \
if ((tlen = ptr - xprPtr)) { \
finalizeHashStr(xprPtr, tlen); \
if (needSep) { \
wordCount++; \
needSep = 0; \
} \
} else { \
ptr -= 4; \
} \
} while (0)
static ControlElement< T > * ptr(QWidget *widget)

◆ FLUSH_LITERAL

#define FLUSH_LITERAL ( )
Value:
do { \
if (context == CtxTest) \
FLUSH_LHS_LITERAL(); \
else \
FLUSH_RHS_LITERAL(); \
} while (0)
static const QString context()
Definition java.cpp:394

◆ FLUSH_RHS_LITERAL

#define FLUSH_RHS_LITERAL ( )
Value:
do { \
if ((tlen = ptr - xprPtr)) { \
xprPtr[-2] = TokLiteral | needSep; \
xprPtr[-1] = tlen; \
if (needSep) { \
wordCount++; \
needSep = 0; \
} \
} else { \
ptr -= 2; \
} \
} while (0)
@ TokLiteral
Definition proitems.h:346

◆ FLUSH_VALUE_LIST

#define FLUSH_VALUE_LIST ( )
Value:
do { \
if (wordCount > 1) { \
xprPtr = tokPtr; \
if (*xprPtr == TokLine) \
xprPtr += 2; \
tokPtr[-1] = ((*xprPtr & TokMask) == TokLiteral) ? wordCount : 0; \
} else { \
tokPtr[-1] = 0; \
} \
tokPtr = ptr; \
putTok(tokPtr, TokValueTerminator); \
} while (0)
@ TokMask
Definition proitems.h:400
@ TokLine
Definition proitems.h:335
@ TokValueTerminator
Definition proitems.h:345