Home
last modified time | relevance | path

Searched refs:nHeight (Results 1 – 6 of 6) sorted by relevance

/third_party/boost/libs/wave/test/testwave/testfiles/
Dt_9_012.cpp14 nWidth, nHeight, hWndParent, hMenu, hInstance, lpParam)\ argument
16 nWidth, nHeight, hWndParent, hMenu, hInstance, lpParam)
/third_party/openmax/api/1.1.2/
DOMX_IVCommon.h308 OMX_U32 nHeight; member
404 OMX_U32 nHeight; member
/third_party/python/Tools/msi/bundle/bootstrap/
DPythonBootstrapperApplication.cpp1785 y = mi.rcWork.top + (mi.rcWork.bottom - mi.rcWork.top - _theme->nHeight) / 2; in CreateMainWindow()
1798 _theme->nHeight, in CreateMainWindow()
/third_party/boost/libs/wave/
DChangeLog1148 nWidth, nHeight, hWndParent, hMenu, hInstance, lpParam)\
1150 nWidth, nHeight, hWndParent, hMenu, hInstance, lpParam)
/third_party/sqlite/src/
Dsqlite3.c17826 int nHeight; /* Height of the tree headed by this node */ member
18618 int nHeight; /* Expression tree height of current sub-select */ member
101901 w.pParse->nHeight += pExpr->nHeight;
101902 if( sqlite3ExprCheckHeight(w.pParse, w.pParse->nHeight) ){
101908 w.pParse->nHeight -= pExpr->nHeight;
101943 w.pParse->nHeight += pExpr->nHeight;
101944 if( sqlite3ExprCheckHeight(w.pParse, w.pParse->nHeight) ){
101950 w.pParse->nHeight -= pExpr->nHeight;
102763 SQLITE_PRIVATE int sqlite3ExprCheckHeight(Parse *pParse, int nHeight){
102766 if( nHeight>mxHeight ){
[all …]
/third_party/chromium/patch/
D0003-3.2-Beta3-1115.patch100848 - int nHeight = 0;
100849 - heightOfExpr(p->pLeft, &nHeight);
100850 - heightOfExpr(p->pRight, &nHeight);
100851 + int nHeight = p->pLeft ? p->pLeft->nHeight : 0;
100852 + if( p->pRight && p->pRight->nHeight>nHeight ) nHeight = p->pRight->nHeight;
100854 heightOfSelect(p->x.pSelect, &nHeight);
138489 - int nHeight = 0;
138490 - heightOfExpr(p->pLeft, &nHeight);
138491 - heightOfExpr(p->pRight, &nHeight);
138492 + int nHeight = p->pLeft ? p->pLeft->nHeight : 0;
[all …]