Home
last modified time | relevance | path

Searched refs:pWidth (Results 1 – 25 of 741) sorted by relevance

12345678910>>...30

/dports/editors/ted/Ted-2.23/utilPs/
H A DpsFontName.c160 int utilFontWidthFromString( int * pWidth, in utilFontWidthFromString() argument
175 *pWidth= FONTwidthCONDENSED; in utilFontWidthFromString()
184 *pWidth= FONTwidthEXTRACONDENSED; in utilFontWidthFromString()
193 *pWidth= FONTwidthCONDENSED; in utilFontWidthFromString()
201 *pWidth= FONTwidthCONDENSED; in utilFontWidthFromString()
209 *pWidth= FONTwidthCONDENSED; in utilFontWidthFromString()
218 *pWidth= FONTwidthEXPANDED; in utilFontWidthFromString()
235 int * pWidth, in psRemoveWidthFromName() argument
264 *pWidth= width; in psRemoveWidthFromName()
543 int psFontGetWidth( int * pWidth, in psFontGetWidth() argument
[all …]
H A DpsFontName.h23 extern int utilFontWidthFromString( int * pWidth,
30 int * pWidth,
40 extern int psFontGetWidth( int * pWidth,
/dports/graphics/openexr/openexr-3.1.4/src/test/OpenEXRTest/
H A DtestOptimized.cpp392 int pWidth, in writeFile() argument
400 lPixels.resizeErase (pHeight, pWidth * lNbChannels); in writeFile()
401 fillPixels (pHeight, pWidth, lPixels, lNbChannels, false); in writeFile()
407 lPixelsLeft.resizeErase (pHeight, pWidth * lNbChannels); in writeFile()
409 pWidth, in writeFile()
416 pWidth, in writeFile()
426 pWidth, in writeFile()
440 int pWidth, in readValidateFile() argument
448 lPixels.resizeErase(pHeight, pWidth * lNbChannels); in readValidateFile()
456 lPixelsLeft.resizeErase (pHeight, pWidth * lNbChannels); in readValidateFile()
[all …]
/dports/x11-toolkits/open-motif/motif-2.3.8/clients/mwm/
H A DWmCDInfo.c711 *pWidth = boxdim; in GetFramePartInfo()
751 *pWidth= boxdim; in GetFramePartInfo()
816 *pWidth = 0; in GetFramePartInfo()
906 *pWidth = 0; in GetFramePartInfo()
1149 *pWidth = *pWidth - 2*pcd->clientOffset.x; in FrameToClient()
1189 *pWidth = *pWidth + 2*pcd->clientOffset.x; in ClientToFrame()
1311 *pWidth -= tmp; in GetDepressInfo()
1329 *pWidth -= tmp; in GetDepressInfo()
1361 *pWidth -= tmp; in GetDepressInfo()
1378 *pWidth -= tmp; in GetDepressInfo()
[all …]
H A DWmCDInfo.h40 extern Boolean GetFramePartInfo (ClientData *pcd, int part, int *pX, int *pY, unsigned int *pWidth,…
43 extern void FrameToClient (ClientData *pcd, int *pX, int *pY, unsigned int *pWidth, unsigned int *p…
44 extern void ClientToFrame (ClientData *pcd, int *pX, int *pY, unsigned int *pWidth, unsigned int *p…
45 extern Boolean GetDepressInfo (ClientData *pcd, int part, int *pX, int *pY, unsigned int *pWidth, u…
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/pdfium/core/fxcrt/css/
H A Dcfx_cssdeclaration.cpp222 RetainPtr<CFX_CSSValue> pWidth; in AddProperty() local
228 if (ParseBorderProperty(pszValue, iValueLen, pWidth)) { in AddProperty()
241 if (ParseBorderProperty(pszValue, iValueLen, pWidth)) { in AddProperty()
248 if (ParseBorderProperty(pszValue, iValueLen, pWidth)) { in AddProperty()
255 if (ParseBorderProperty(pszValue, iValueLen, pWidth)) { in AddProperty()
451 RetainPtr<CFX_CSSValue>& pWidth) const { in ParseBorderProperty()
452 pWidth.Reset(nullptr); in ParseBorderProperty()
459 if (pWidth) in ParseBorderProperty()
484 if (!pWidth) in ParseBorderProperty()
496 if (!pWidth) in ParseBorderProperty()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/pdfium/core/fxcrt/css/
H A Dcfx_cssdeclaration.cpp223 RetainPtr<CFX_CSSValue> pWidth; in AddProperty() local
229 if (ParseBorderProperty(pszValue, iValueLen, pWidth)) { in AddProperty()
242 if (ParseBorderProperty(pszValue, iValueLen, pWidth)) { in AddProperty()
249 if (ParseBorderProperty(pszValue, iValueLen, pWidth)) { in AddProperty()
256 if (ParseBorderProperty(pszValue, iValueLen, pWidth)) { in AddProperty()
452 RetainPtr<CFX_CSSValue>& pWidth) const { in ParseBorderProperty()
453 pWidth.Reset(nullptr); in ParseBorderProperty()
460 if (pWidth) in ParseBorderProperty()
485 if (!pWidth) in ParseBorderProperty()
497 if (!pWidth) in ParseBorderProperty()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/pdfium/xfa/fgas/font/
H A Dcfgas_gefont.cpp157 bool CFGAS_GEFont::GetCharWidth(wchar_t wUnicode, int32_t* pWidth) { in GetCharWidth() argument
159 *pWidth = it != m_CharWidthMap.end() ? it->second : 0; in GetCharWidth()
160 if (*pWidth == 65535) in GetCharWidth()
163 if (*pWidth > 0) in GetCharWidth()
171 *pWidth = m_pFont->GetGlyphWidth(iGlyph); in GetCharWidth()
172 if (*pWidth < 0) in GetCharWidth()
173 *pWidth = -1; in GetCharWidth()
174 } else if (pFont->GetCharWidth(wUnicode, pWidth)) { in GetCharWidth()
178 *pWidth = -1; in GetCharWidth()
181 m_CharWidthMap[wUnicode] = *pWidth; in GetCharWidth()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/pdfium/xfa/fgas/font/
H A Dcfgas_gefont.cpp159 bool CFGAS_GEFont::GetCharWidth(wchar_t wUnicode, int32_t* pWidth) { in GetCharWidth() argument
161 *pWidth = it != m_CharWidthMap.end() ? it->second : 0; in GetCharWidth()
162 if (*pWidth == 65535) in GetCharWidth()
165 if (*pWidth > 0) in GetCharWidth()
173 *pWidth = m_pFont->GetGlyphWidth(iGlyph); in GetCharWidth()
174 if (*pWidth < 0) in GetCharWidth()
175 *pWidth = -1; in GetCharWidth()
176 } else if (pFont->GetCharWidth(wUnicode, pWidth)) { in GetCharWidth()
180 *pWidth = -1; in GetCharWidth()
183 m_CharWidthMap[wUnicode] = *pWidth; in GetCharWidth()
[all …]
/dports/editors/ted/Ted-2.23/appUtil/
H A DgeoString.c112 int * pWidth, in geoRectangleFromString() argument
134 *pWidth= (int)appUnitToTwips( width, defaultUnitInt ); in geoRectangleFromString()
145 *pWidth= (int)appUnitToTwips( width, unitInt ); in geoRectangleFromString()
159 *pWidth= (int)appUnitToTwips( width, defaultUnitInt ); in geoRectangleFromString()
172 *pWidth= (int)appUnitToTwips( width, unitInt ); in geoRectangleFromString()
184 *pWidth= (int)appUnitToTwips( width, defaultUnitInt ); in geoRectangleFromString()
196 *pWidth= (int)appUnitToTwips( width, unitInt ); in geoRectangleFromString()
208 *pWidth= (int)appUnitToTwips( width, defaultUnitInt ); in geoRectangleFromString()
220 *pWidth= (int)appUnitToTwips( width, unitInt ); in geoRectangleFromString()
/dports/games/openfodder/openfodder-1.6.0/Source/
H A DDimension.hpp29 cDimension( unsigned int pWidth, unsigned int pHeight ) : mWidth( pWidth ), mHeight( pHeight ) {} in cDimension() argument
31 void Set( unsigned int pWidth, unsigned int pHeight ) { mWidth = pWidth; mHeight = pHeight; } in Set() argument
/dports/math/ogdf/OGDF/include/ogdf/hypergraph/
H A DHypergraphAttributes.h139 void setWidth(hypernode v, int pWidth) in setWidth() argument
141 m_width[v] = pWidth; in setWidth()
304 void setWidth(hypernode v, double pWidth) in setWidth() argument
306 m_width[v] = pWidth; in setWidth()
307 m_repGA->width(m_repG->nodeMap(v)) = pWidth; in setWidth()
311 void setWidth(node v, double pWidth) in setWidth() argument
314 setWidth(m_repG->hypernodeMap(v), pWidth); in setWidth()
316 m_repGA->width(v) = pWidth; in setWidth()
/dports/graphics/podofo/podofo-0.9.7/src/podofo/doc/
H A DPdfFontSimple.cpp64 PdfObject* pWidth; in Init() local
69 pWidth = this->GetObject()->GetOwner()->CreateObject(); in Init()
70 if( !pWidth ) in Init()
75 …m_pMetrics->GetWidthArray( *pWidth, m_pEncoding->GetFirstChar(), m_pEncoding->GetLastChar(), m_pEn… in Init()
94 this->GetObject()->GetDictionary().AddKey("Widths", pWidth->Reference() ); in Init()
H A DPdfFontType1Base14.cpp76 PdfObject *pWidth = this->GetObject()->GetOwner()->CreateObject(); in InitBase14Font() local
77 if( !pWidth ) in InitBase14Font()
82 …m_pMetrics->GetWidthArray( *pWidth, m_pEncoding->GetFirstChar(), m_pEncoding->GetLastChar(), m_pEn… in InitBase14Font()
84 this->GetObject()->GetDictionary().AddKey("Widths", pWidth->Reference() ); in InitBase14Font()
/dports/games/libretro-bluemsx/blueMSX-libretro-faf470e/Src/ThirdParty/DirectShowSamples/
H A Dwinctrl.h86 STDMETHODIMP get_Width(long *pWidth);
104 STDMETHODIMP GetMinIdealImageSize(long *pWidth,long *pHeight);
105 STDMETHODIMP GetMaxIdealImageSize(long *pWidth,long *pHeight);
107 STDMETHODIMP GetWindowPosition(long *pLeft,long *pTop,long *pWidth,long *pHeight);
108 STDMETHODIMP GetRestorePosition(long *pLeft,long *pTop,long *pWidth,long *pHeight);
210 STDMETHODIMP GetVideoSize(long *pWidth,long *pHeight);
212 STDMETHODIMP GetSourcePosition(long *pLeft,long *pTop,long *pWidth,long *pHeight);
217 STDMETHODIMP GetDestinationPosition(long *pLeft,long *pTop,long *pWidth,long *pHeight);
/dports/www/grafana8/grafana-8.3.6/public/app/features/dashboard/components/PanelEditor/
H A Dutils.ts15 const pWidth = colWidth * panel.gridPos.w; constant
17 const scale = Math.min(width / pWidth, height / pHeight);
19 if (pWidth <= width && pHeight <= height) {
21 width: pWidth,
27 width: pWidth * scale,
/dports/editors/texmaker/texmaker-5.0.3/pdfium/xfa/fde/css/
H A Dfde_cssdeclaration.cpp165 IFDE_CSSValue *pColor, *pStyle, *pWidth; in AddProperty() local
176 pStyle, pWidth)) { in AddProperty()
198 pStyle, pWidth)) { in AddProperty()
208 pStyle, pWidth)) { in AddProperty()
218 pStyle, pWidth)) { in AddProperty()
228 pStyle, pWidth)) { in AddProperty()
667 IFDE_CSSValue*& pWidth) const { in ParseBorderPropoerty()
668 pColor = pStyle = pWidth = nullptr; in ParseBorderPropoerty()
674 if (!pWidth) { in ParseBorderPropoerty()
715 if (!pWidth) in ParseBorderPropoerty()
[all …]
/dports/games/arx-libertatis/arx-libertatis-1.1.2/src/graphics/texture/
H A DTexture.cpp37 bool Texture2D::Init(unsigned int pWidth, unsigned int pHeight, Image::Format pFormat) { in Init() argument
41 size = Vec2i(pWidth, pHeight); in Init()
42 mImage.Create(pWidth, pHeight, pFormat); in Init()
/dports/multimedia/avidemux-cli/avidemux_2.7.6/avidemux_plugins/ADM_videoFilters6/blackenBorder/
H A DADM_vidBlackBorder.cpp127 uint32_t pWidth=previousFilter->getInfo()->width-param.right; in getNextFrame() local
128 ptr[0]+=pWidth; in getNextFrame()
129 ptr[1]+=(pWidth)/2; in getNextFrame()
130 ptr[2]+=(pWidth)/2; in getNextFrame()
/dports/multimedia/avidemux-qt5/avidemux_2.7.6/avidemux_plugins/ADM_videoFilters6/blackenBorder/
H A DADM_vidBlackBorder.cpp127 uint32_t pWidth=previousFilter->getInfo()->width-param.right; in getNextFrame() local
128 ptr[0]+=pWidth; in getNextFrame()
129 ptr[1]+=(pWidth)/2; in getNextFrame()
130 ptr[2]+=(pWidth)/2; in getNextFrame()
/dports/multimedia/avidemux-plugins/avidemux_2.7.6/avidemux_plugins/ADM_videoFilters6/blackenBorder/
H A DADM_vidBlackBorder.cpp127 uint32_t pWidth=previousFilter->getInfo()->width-param.right; in getNextFrame() local
128 ptr[0]+=pWidth; in getNextFrame()
129 ptr[1]+=(pWidth)/2; in getNextFrame()
130 ptr[2]+=(pWidth)/2; in getNextFrame()
/dports/multimedia/avidemux/avidemux_2.7.6/avidemux_plugins/ADM_videoFilters6/blackenBorder/
H A DADM_vidBlackBorder.cpp127 uint32_t pWidth=previousFilter->getInfo()->width-param.right; in getNextFrame() local
128 ptr[0]+=pWidth; in getNextFrame()
129 ptr[1]+=(pWidth)/2; in getNextFrame()
130 ptr[2]+=(pWidth)/2; in getNextFrame()
/dports/graphics/cfdg/cfdg-3.3_1/src-scintilla/lexilla/test/
H A DTestDocument.cxx227 int SCI_METHOD TestDocument::GetCharacterAndWidth(Sci_Position position, Sci_Position *pWidth) cons… in GetCharacterAndWidth()
231 if (pWidth) { in GetCharacterAndWidth()
232 *pWidth = 1; in GetCharacterAndWidth()
242 if (pWidth) { in GetCharacterAndWidth()
243 *pWidth = widthCharBytes; in GetCharacterAndWidth()
/dports/x11-toolkits/scintilla/scintilla/lexilla/test/
H A DTestDocument.cxx227 int SCI_METHOD TestDocument::GetCharacterAndWidth(Sci_Position position, Sci_Position *pWidth) cons… in GetCharacterAndWidth()
231 if (pWidth) { in GetCharacterAndWidth()
232 *pWidth = 1; in GetCharacterAndWidth()
242 if (pWidth) { in GetCharacterAndWidth()
243 *pWidth = widthCharBytes; in GetCharacterAndWidth()
/dports/editors/textadept/scintilla/lexilla/test/
H A DTestDocument.cxx227 int SCI_METHOD TestDocument::GetCharacterAndWidth(Sci_Position position, Sci_Position *pWidth) cons… in GetCharacterAndWidth()
231 if (pWidth) { in GetCharacterAndWidth()
232 *pWidth = 1; in GetCharacterAndWidth()
242 if (pWidth) { in GetCharacterAndWidth()
243 *pWidth = widthCharBytes; in GetCharacterAndWidth()

12345678910>>...30