Searched refs:pFuncs (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/third_party/npapi/npspy/common/
H A Dnp_entry.cpp54 NPError WINAPI NP_GetEntryPoints(NPPluginFuncs* pFuncs) argument
70 if(pFuncs == NULL)
73 if(pFuncs->size < sizeof(NPPluginFuncs))
76 pFuncs->version = (NP_VERSION_MAJOR << 8) | NP_VERSION_MINOR;
77 pFuncs->newp = NPP_New;
78 pFuncs->destroy = NPP_Destroy;
79 pFuncs->setwindow = NPP_SetWindow;
80 pFuncs->newstream = NPP_NewStream;
81 pFuncs->destroystream = NPP_DestroyStream;
82 pFuncs
95 NP_Initialize(NPNetscapeFuncs* pFuncs) argument
[all...]
/external/chromium_org/content/test/plugin/
H A Dplugin_client.h21 static NPError GetEntryPoints(NPPluginFuncs* pFuncs);
28 static NPError Initialize(NPNetscapeFuncs* pFuncs);
H A Dplugin_client.cc16 NPError PluginClient::GetEntryPoints(NPPluginFuncs* pFuncs) { argument
17 if (pFuncs == NULL)
20 if (pFuncs->size < sizeof(NPPluginFuncs))
23 pFuncs->version = (NP_VERSION_MAJOR << 8) | NP_VERSION_MINOR;
24 pFuncs->newp = NPP_New;
25 pFuncs->destroy = NPP_Destroy;
26 pFuncs->setwindow = NPP_SetWindow;
27 pFuncs->newstream = NPP_NewStream;
28 pFuncs->destroystream = NPP_DestroyStream;
29 pFuncs
44 Initialize(NPNetscapeFuncs* pFuncs) argument
[all...]
H A Dnpapi_test.cc65 EXPORT NPError API_CALL NP_GetEntryPoints(NPPluginFuncs* pFuncs) { argument
66 return NPAPIClient::PluginClient::GetEntryPoints(pFuncs);
/external/chromium_org/third_party/npapi/bindings/
H A Dnphostapi.h25 typedef NPError (API_CALL * NP_InitializeFunc)(NPNetscapeFuncs* pFuncs);
26 typedef NPError (API_CALL * NP_GetEntryPointsFunc)(NPPluginFuncs* pFuncs);
/external/chromium_org/third_party/icu/source/i18n/
H A Dregextxt.h23 #define UTEXT_USES_U16(ut) (NULL==((ut)->pFuncs->mapNativeIndexToUTF16))
/external/icu/icu4c/source/i18n/
H A Dregextxt.h23 #define UTEXT_USES_U16(ut) (NULL==((ut)->pFuncs->mapNativeIndexToUTF16))
/external/chromium_org/third_party/npapi/npspy/include/
H A Depmanager.h44 typedef NPError (__stdcall * NP_GETENTRYPOINTS) (NPPluginFuncs* pFuncs);
45 typedef NPError (__stdcall * NP_INITIALIZE) (NPNetscapeFuncs* pFuncs);
/external/pdfium/core/src/fpdfapi/fpdf_render/
H A Dfpdf_render_pattern.cpp14 CPDF_Dictionary* pDict, CPDF_Function** pFuncs, int nFuncs,
47 if (pFuncs[j]) {
48 total_results += pFuncs[j]->CountOutputs();
62 if (pFuncs[j]) {
64 if (pFuncs[j]->Call(&input, 1, pResults + offset, nresults)) {
98 CPDF_Dictionary* pDict, CPDF_Function** pFuncs, int nFuncs,
128 if (pFuncs[j]) {
129 total_results += pFuncs[j]->CountOutputs();
143 if (pFuncs[j]) {
145 if (pFuncs[
13 _DrawAxialShading(CFX_DIBitmap* pBitmap, CFX_AffineMatrix* pObject2Bitmap, CPDF_Dictionary* pDict, CPDF_Function** pFuncs, int nFuncs, CPDF_ColorSpace* pCS, int alpha) argument
97 _DrawRadialShading(CFX_DIBitmap* pBitmap, CFX_AffineMatrix* pObject2Bitmap, CPDF_Dictionary* pDict, CPDF_Function** pFuncs, int nFuncs, CPDF_ColorSpace* pCS, int alpha) argument
227 _DrawFuncShading(CFX_DIBitmap* pBitmap, CFX_AffineMatrix* pObject2Bitmap, CPDF_Dictionary* pDict, CPDF_Function** pFuncs, int nFuncs, CPDF_ColorSpace* pCS, int alpha) argument
379 _DrawFreeGouraudShading(CFX_DIBitmap* pBitmap, CFX_AffineMatrix* pObject2Bitmap, CPDF_Stream* pShadingStream, CPDF_Function** pFuncs, int nFuncs, CPDF_ColorSpace* pCS, int alpha) argument
410 _DrawLatticeGouraudShading(CFX_DIBitmap* pBitmap, CFX_AffineMatrix* pObject2Bitmap, CPDF_Stream* pShadingStream, CPDF_Function** pFuncs, int nFuncs, CPDF_ColorSpace* pCS, int alpha) argument
[all...]
H A Dfpdf_render.cpp1243 CPDF_Function* pFuncs[3] = {NULL, NULL, NULL}; local
1254 pFuncs[2 - i] = CPDF_Function::Load(pArray->GetElementValue(i));
1255 if (pFuncs[2 - i] == NULL) {
1260 pFuncs[0] = CPDF_Function::Load(pObj);
1261 if (pFuncs[0] == NULL) {
1279 if (pFuncs[0] && pFuncs[0]->CountOutputs() <= kMaxOutputs) {
1280 pFuncs[0]->Call(&input, 1, output, noutput);
1291 if (pFuncs[i] && pFuncs[
[all...]
/external/pdfium/core/src/fpdfapi/fpdf_page/
H A Dfpdf_page_pattern.cpp140 FX_BOOL CPDF_MeshStream::Load(CPDF_Stream* pShadingStream, CPDF_Function** pFuncs, int nFuncs, CPDF_ColorSpace* pCS) argument
144 m_pFuncs = pFuncs;
237 CPDF_Function** pFuncs, int nFuncs, CPDF_ColorSpace* pCS)
239 if (pStream == NULL || pStream->GetType() != PDFOBJ_STREAM || pFuncs == NULL || pCS == NULL) {
243 if (!stream.Load(pStream, pFuncs, nFuncs, pCS)) {
236 _GetShadingBBox(CPDF_Stream* pStream, int type, const CFX_AffineMatrix* pMatrix, CPDF_Function** pFuncs, int nFuncs, CPDF_ColorSpace* pCS) argument
/external/chromium_org/third_party/icu/source/common/
H A Dutext.cpp38 return ut->pFuncs->access(ut, index, forward);
85 return ut->pFuncs->nativeLength(ut);
101 return ut->pFuncs->mapOffsetToNative(ut);
113 ut->pFuncs->access(ut, index, TRUE);
118 ut->chunkOffset=ut->pFuncs->mapNativeIndexToUTF16(ut, index);
126 ut->pFuncs->access(ut, ut->chunkNativeStart, FALSE);
156 result = ut->pFuncs->mapOffsetToNative(ut);
188 if (ut->pFuncs->access(ut, ut->chunkNativeLimit, TRUE) == FALSE) {
218 if (ut->pFuncs->access(ut, nativePosition, TRUE)) {
221 UBool r = ut->pFuncs
[all...]
H A Drbbi.cpp1586 // Check the type of the UText by checking its pFuncs field, which
1598 utext_utf8Funcs = tempUText.pFuncs;
1601 if (fText->pFuncs == utext_utf8Funcs) {
/external/icu/icu4c/source/common/
H A Dutext.cpp38 return ut->pFuncs->access(ut, index, forward);
85 return ut->pFuncs->nativeLength(ut);
101 return ut->pFuncs->mapOffsetToNative(ut);
113 ut->pFuncs->access(ut, index, TRUE);
118 ut->chunkOffset=ut->pFuncs->mapNativeIndexToUTF16(ut, index);
126 ut->pFuncs->access(ut, ut->chunkNativeStart, FALSE);
156 result = ut->pFuncs->mapOffsetToNative(ut);
188 if (ut->pFuncs->access(ut, ut->chunkNativeLimit, TRUE) == FALSE) {
218 if (ut->pFuncs->access(ut, nativePosition, TRUE)) {
221 UBool r = ut->pFuncs
[all...]
H A Drbbi.cpp1586 // Check the type of the UText by checking its pFuncs field, which
1598 utext_utf8Funcs = tempUText.pFuncs;
1601 if (fText->pFuncs == utext_utf8Funcs) {
/external/chromium_org/third_party/icu/source/common/unicode/
H A Dutext.h754 (ut)->pFuncs->mapOffsetToNative(ut))
1443 const UTextFuncs *pFuncs; member in struct:UText
1586 NULL, /* pFuncs */ \
/external/icu/icu4c/source/common/unicode/
H A Dutext.h754 (ut)->pFuncs->mapOffsetToNative(ut))
1443 const UTextFuncs *pFuncs; member in struct:UText
1586 NULL, /* pFuncs */ \
/external/chromium_org/third_party/npapi/npspy/extern/plugin/
H A Dnpupp.h669 NPError OSCALL NP_GetEntryPoints(NPPluginFuncs* pFuncs);
671 NPError OSCALL NP_Initialize(NPNetscapeFuncs* pFuncs);
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dutxttest.cpp1371 memcpy(&fragmentFuncs, ut->pFuncs, sizeof(fragmentFuncs));
1374 ut->pFuncs = &fragmentFuncs;
1377 ut->pFuncs->access(ut, 0, TRUE);
/external/icu/icu4c/source/test/intltest/
H A Dutxttest.cpp1373 memcpy(&fragmentFuncs, ut->pFuncs, sizeof(fragmentFuncs));
1376 ut->pFuncs = &fragmentFuncs;
1379 ut->pFuncs->access(ut, 0, TRUE);
/external/pdfium/core/include/fpdfapi/
H A Dfpdf_resource.h813 FX_BOOL Load(CPDF_Stream* pShadingStream, CPDF_Function** pFuncs, int nFuncs, CPDF_ColorSpace* pCS);
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DTextBreakIteratorICU.cpp331 text->pFuncs = funcs;

Completed in 1427 milliseconds