Searched defs:pSource (Results 1 - 20 of 20) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/video_render/android/
H A Dvideo_render_opengles20.cc242 const char* pSource) {
245 glShaderSource(shader, 1, &pSource, NULL);
241 loadShader(GLenum shaderType, const char* pSource) argument
/external/pdfium/fpdfsdk/src/javascript/
H A DJS_Context.cpp238 void CJS_Context::OnField_Calculate(CPDF_FormField* pSource, CPDF_FormField* pTarget, CFX_WideString& Value, FX_BOOL& bRc) argument
241 m_pEventHandler->OnField_Calculate(pSource, pTarget, Value, bRc);
H A DJS_EventHandler.cpp233 void CJS_EventHandler::OnField_Calculate(CPDF_FormField* pSource, CPDF_FormField* pTarget, argument
238 if (pSource)
239 m_strSourceName = pSource->GetFullName();
/external/pdfium/core/src/fxge/ge/
H A Dfx_ge_ps.cpp308 FX_BOOL CFX_PSRenderer::SetDIBits(const CFX_DIBSource* pSource, FX_DWORD color, int left, int top, argument
312 CFX_AffineMatrix matrix((FX_FLOAT)(pSource->GetWidth()), 0.0f, 0.0f, -(FX_FLOAT)(pSource->GetHeight()),
313 (FX_FLOAT)(left), (FX_FLOAT)(top + pSource->GetHeight()));
314 return DrawDIBits(pSource, color, &matrix, 0, alpha_flag, pIccTransform);
316 FX_BOOL CFX_PSRenderer::StretchDIBits(const CFX_DIBSource* pSource, FX_DWORD color, int dest_left, int dest_top, argument
323 return DrawDIBits(pSource, color, &matrix, flags, alpha_flag, pIccTransform);
325 FX_BOOL CFX_PSRenderer::DrawDIBits(const CFX_DIBSource* pSource, FX_DWORD color, argument
333 if (pSource->HasAlpha()) {
337 if (pSource
[all...]
/external/pdfium/core/src/fxge/win32/
H A Dfx_win32_print.cpp33 FX_BOOL CGdiPrinterDriver::SetDIBits(const CFX_DIBSource* pSource, FX_DWORD color, const FX_RECT* pSrcRect, int left, int top, int blend_type, argument
36 if (pSource->IsAlphaMask()) {
38 return StretchDIBits(pSource, color, left - pSrcRect->left, top - pSrcRect->top, pSource->GetWidth(), pSource->GetHeight(),
41 ASSERT(pSource != NULL && !pSource->IsAlphaMask() && pSrcRect != NULL);
43 if (pSource->HasAlpha()) {
46 CFX_DIBExtractor temp(pSource);
53 FX_BOOL CGdiPrinterDriver::StretchDIBits(const CFX_DIBSource* pSource, FX_DWOR argument
200 StartDIBits(const CFX_DIBSource* pSource, int bitmap_alpha, FX_DWORD color, const CFX_AffineMatrix* pMatrix, FX_DWORD render_flags, FX_LPVOID& handle, int alpha_flag, void* pIccTransform, int blend_type) argument
[all...]
H A Dfx_win32_device.cpp972 FX_BOOL CGdiDisplayDriver::SetDIBits(const CFX_DIBSource* pSource, FX_DWORD color, const FX_RECT* pSrcRect, int left, int top, int blend_type, argument
976 if (pSource->IsAlphaMask()) {
977 int width = pSource->GetWidth(), height = pSource->GetHeight();
979 FX_BOOL bGDI = pSource->GetBPP() == 1 && alpha == 255;
984 !background.CompositeMask(0, 0, width, height, pSource, color, 0, 0, FXDIB_BLEND_NORMAL, NULL, FALSE, alpha_flag, pIccTransform)) {
991 return StretchDIBits(pSource, color, left - pSrcRect->left, top - pSrcRect->top, width, height,
995 if (pSource->HasAlpha()) {
999 !bitmap.CompositeBitmap(0, 0, width, height, pSource, pSrcRect->left, pSrcRect->top, FXDIB_BLEND_NORMAL, NULL, FALSE, pIccTransform)) {
1005 CFX_DIBExtractor temp(pSource);
1013 UseFoxitStretchEngine(const CFX_DIBSource* pSource, FX_DWORD color, int dest_left, int dest_top, int dest_width, int dest_height, const FX_RECT* pClipRect, int render_flags, int alpha_flag, void* pIccTransform, int blend_type) argument
1034 StretchDIBits(const CFX_DIBSource* pSource, FX_DWORD color, int dest_left, int dest_top, int dest_width, int dest_height, const FX_RECT* pClipRect, FX_DWORD flags, int alpha_flag, void* pIccTransform, int blend_type) argument
[all...]
H A Dfx_win32_gdipext.cpp287 const CFX_DIBitmap* pSource, FX_RECT* pClipRect)
309 int src_width = pSource->GetWidth();
310 int src_height = pSource->GetHeight();
317 LPBYTE src_buf = pSource->GetBuffer();
318 int src_pitch = pSource->GetPitch();
286 _StretchMonoToGray(int dest_width, int dest_height, const CFX_DIBitmap* pSource, FX_RECT* pClipRect) argument
/external/chromium_org/third_party/icu/source/tools/genrb/
H A Dparse.c436 const UChar *pSource = NULL; local
482 pSource = ucbuf_getBuffer(ucbuf, &size, status);
487 size = utrans_stripRules(pSource, size, pTarget, status);
/external/pdfium/core/src/fpdfapi/fpdf_render/
H A Dfpdf_render_text.cpp329 const CFX_DIBSource* pSource = pImage->m_pImage->LoadDIBSource(); local
330 if (pSource) {
331 m_pBitmap = pSource->Clone();
332 delete pSource;
H A Dfpdf_render_loadimage.cpp33 CPDF_DIBSource* pSource = FX_NEW CPDF_DIBSource; local
34 if (pSource->Load(m_pDocument, m_pStream, (CPDF_DIBSource**)ppMask, pMatteColor, NULL, NULL, bStdCS, GroupFamily, bLoadMask)) {
35 return pSource;
37 delete pSource;
/external/pdfium/core/src/fxcodec/codec/
H A Dfx_codec_jpeg.cpp177 static void _JpegEncode(const CFX_DIBSource* pSource, FX_LPBYTE& dest_buf, FX_STRSIZE& dest_size, int quality, FX_LPCBYTE icc_buf, FX_DWORD icc_length) argument
188 int Bpp = pSource->GetBPP() / 8;
189 int nComponents = Bpp >= 3 ? (pSource->IsCmykImage() ? 4 : 3) : 1;
190 int pitch = pSource->GetPitch();
191 int width = pSource->GetWidth();
192 int height = pSource->GetHeight();
233 FX_LPCBYTE src_scan = pSource->GetScanline(cinfo.next_scanline);
570 FX_BOOL CCodec_JpegModule::Encode(const CFX_DIBSource* pSource, FX_LPBYTE& dest_buf, FX_STRSIZE& dest_size, int quality, FX_LPCBYTE icc_buf, FX_DWORD icc_length) argument
573 return m_pExtProvider->Encode(pSource, dest_buf, dest_size, quality, icc_buf, icc_length);
575 if(pSource
[all...]
/external/pdfium/core/src/fxge/dib/
H A Dfx_dib_engine.cpp714 const CFX_DIBSource* pSource, int dest_width, int dest_height,
717 m_DestFormat = _GetStretchedFormat(pSource);
720 m_pSource = pSource;
725 if (pSource->GetFormat() == FXDIB_1bppRgb && pSource->GetPalette()) {
728 ArgbDecode(pSource->GetPaletteEntry(0), a0, r0, g0, b0);
729 ArgbDecode(pSource->GetPaletteEntry(1), a1, r1, g1, b1);
740 } else if (pSource->GetFormat() == FXDIB_1bppCmyk && pSource->GetPalette()) {
743 CmykDecode(pSource
713 Start(IFX_ScanlineComposer* pDest, const CFX_DIBSource* pSource, int dest_width, int dest_height, const FX_RECT& rect, FX_DWORD flags) argument
[all...]
H A Dfx_dib_main.cpp1577 const CFX_DIBSource* pSource, int bitmap_alpha,
1612 if (!m_Stretcher.Start(&m_Composer, pSource, dest_height, dest_width, bitmap_clip, dib_flags)) {
1623 m_pTransformer->Start(pSource, &m_Matrix, dib_flags, &m_ClipBox);
1642 ret = m_Stretcher.Start(&m_Composer, pSource, dest_width, dest_height, bitmap_clip, dib_flags);
1576 Start(CFX_DIBitmap* pDevice, const CFX_ClipRgn* pClipRgn, const CFX_DIBSource* pSource, int bitmap_alpha, FX_DWORD mask_color, const CFX_AffineMatrix* pMatrix, FX_DWORD dib_flags, FX_BOOL bRgbByteOrder, int alpha_flag, void* pIccTransform, int blend_type) argument
/external/icu/icu4c/source/tools/genrb/
H A Dparse.cpp455 const UChar *pSource = NULL; local
501 pSource = ucbuf_getBuffer(ucbuf, &size, status);
506 size = utrans_stripRules(pSource, size, pTarget, status);
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dregextst.cpp1464 RegexPattern *pSource = RegexPattern::compile(UNICODE_STRING_SIMPLE("\\p{L}+"), 0, status); local
1465 RegexPattern *pClone = pSource->clone();
1466 delete pSource;
2692 RegexPattern *pSource = RegexPattern::compile(&pattern, 0, status); local
2693 RegexPattern *pClone = pSource->clone();
2694 delete pSource;
/external/icu/icu4c/source/test/intltest/
H A Dregextst.cpp1571 RegexPattern *pSource = RegexPattern::compile(UNICODE_STRING_SIMPLE("\\p{L}+"), 0, status); local
1572 RegexPattern *pClone = pSource->clone();
1573 delete pSource;
2836 RegexPattern *pSource = RegexPattern::compile(&pattern, 0, status); local
2837 RegexPattern *pClone = pSource->clone();
2838 delete pSource;
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dnucnvtst.c4889 const char * pSource = (const char *)pszLMBCS; local
4916 &pSource,
5058 const char * pSource = (const char *)pszLMBCS; local
5074 while ((pSource < sourceLimit) && U_SUCCESS (errorCode))
5079 &pSource,
5080 (pSource+1), /* claim that this is a 1- byte buffer */
5087 if ((pSource - (const char *)pszLMBCS) == offsets [codepointCount+1])
/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dfts1.c584 const char *pSource, int nSource){
591 /* Describe slice in d to place pSource/nSource. */
617 memcpy(pTarget, pSource, nSource);
654 char *pSource = updateReader.p; local
657 docListSpliceElement(&accReader, iDocid, pSource, updateReader.p-pSource);
583 docListSpliceElement(DocListReader *r, sqlite_int64 iDocid, const char *pSource, int nSource) argument
/external/icu/icu4c/source/test/cintltst/
H A Dnucnvtst.c4913 const char * pSource = (const char *)pszLMBCS; local
4940 &pSource,
5082 const char * pSource = (const char *)pszLMBCS; local
5098 while ((pSource < sourceLimit) && U_SUCCESS (errorCode))
5103 &pSource,
5104 (pSource+1), /* claim that this is a 1- byte buffer */
5111 if ((pSource - (const char *)pszLMBCS) == offsets [codepointCount+1])
/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2.c535 const char *pSource, int nSource){
536 assert( nSource>0 && pSource!=NULL );
538 memcpy(pBuffer->pData+pBuffer->nData, pSource, nSource);
552 const char *pSource, int nSource){
554 dataBufferAppend(pBuffer, pSource, nSource);
534 dataBufferAppend(DataBuffer *pBuffer, const char *pSource, int nSource) argument
551 dataBufferReplace(DataBuffer *pBuffer, const char *pSource, int nSource) argument

Completed in 503 milliseconds