HomeSort by relevance Sort by last modified time
    Searched refs:pFuncs (Results 1 - 22 of 22) sorted by null

  /external/chromium_org/third_party/npapi/npspy/common/
np_entry.cpp 54 NPError WINAPI NP_GetEntryPoints(NPPluginFuncs* pFuncs)
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->asfile = NPP_StreamAsFile
    [all...]
  /external/chromium_org/content/test/plugin/
plugin_client.h 21 static NPError GetEntryPoints(NPPluginFuncs* pFuncs);
28 static NPError Initialize(NPNetscapeFuncs* pFuncs);
plugin_client.cc 16 NPError PluginClient::GetEntryPoints(NPPluginFuncs* pFuncs) {
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->asfile = NPP_StreamAsFile
    [all...]
npapi_test.cc 65 EXPORT NPError API_CALL NP_GetEntryPoints(NPPluginFuncs* pFuncs) {
66 return NPAPIClient::PluginClient::GetEntryPoints(pFuncs);
  /external/chromium_org/third_party/npapi/bindings/
nphostapi.h 25 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/
regextxt.h 23 #define UTEXT_USES_U16(ut) (NULL==((ut)->pFuncs->mapNativeIndexToUTF16))
  /external/icu/icu4c/source/i18n/
regextxt.h 23 #define UTEXT_USES_U16(ut) (NULL==((ut)->pFuncs->mapNativeIndexToUTF16))
  /external/chromium_org/third_party/npapi/npspy/include/
epmanager.h 44 typedef NPError (__stdcall * NP_GETENTRYPOINTS) (NPPluginFuncs* pFuncs);
45 typedef NPError (__stdcall * NP_INITIALIZE) (NPNetscapeFuncs* pFuncs);
  /external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render_pattern.cpp 14 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[j]->Call(&input, 1, pResults + offset, nresults)) {
    [all...]
fpdf_render.cpp     [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page_pattern.cpp 140 FX_BOOL CPDF_MeshStream::Load(CPDF_Stream* pShadingStream, CPDF_Function** pFuncs, int nFuncs, CPDF_ColorSpace* pCS)
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)) {
  /external/chromium_org/third_party/icu/source/common/
utext.cpp 35 return ut->pFuncs->access(ut, index, forward);
82 return ut->pFuncs->nativeLength(ut);
98 return ut->pFuncs->mapOffsetToNative(ut);
110 ut->pFuncs->access(ut, index, TRUE);
115 ut->chunkOffset=ut->pFuncs->mapNativeIndexToUTF16(ut, index);
123 ut->pFuncs->access(ut, ut->chunkNativeStart, FALSE);
153 result = ut->pFuncs->mapOffsetToNative(ut);
185 if (ut->pFuncs->access(ut, ut->chunkNativeLimit, TRUE) == FALSE) {
215 if (ut->pFuncs->access(ut, nativePosition, TRUE)) {
218 UBool r = ut->pFuncs->access(ut, nativePosition, FALSE); // reverse iteration flag loads preceding chun
    [all...]
rbbi.cpp     [all...]
  /external/icu/icu4c/source/common/
utext.cpp 38 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->access(ut, nativePosition, FALSE); // reverse iteration flag loads preceding chun
    [all...]
rbbi.cpp     [all...]
  /external/chromium_org/third_party/icu/source/common/unicode/
utext.h     [all...]
  /external/icu/icu4c/source/common/unicode/
utext.h 754 (ut)->pFuncs->mapOffsetToNative(ut))
    [all...]
  /external/chromium_org/third_party/npapi/npspy/extern/plugin/
npupp.h 669 NPError OSCALL NP_GetEntryPoints(NPPluginFuncs* pFuncs);
671 NPError OSCALL NP_Initialize(NPNetscapeFuncs* pFuncs);
  /external/icu/icu4c/source/test/intltest/
utxttest.cpp     [all...]
  /external/pdfium/core/include/fpdfapi/
fpdf_resource.h 813 FX_BOOL Load(CPDF_Stream* pShadingStream, CPDF_Function** pFuncs, int nFuncs, CPDF_ColorSpace* pCS);
  /external/chromium_org/third_party/icu/source/test/intltest/
utxttest.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/text/
TextBreakIteratorICU.cpp 332 text->pFuncs = funcs;
    [all...]

Completed in 504 milliseconds