HomeSort by relevance Sort by last modified time
    Searched full:functionpointer (Results 1 - 14 of 14) sorted by null

  /external/webkit/Source/WebKit/mac/Plugins/
WebNetscapePluginPackage.mm 50 typedef void (* FunctionPointer)(void);
52 static FunctionPointer functionPointerForTVector(TransitionVector);
53 static TransitionVector tVectorForFunctionPointer(FunctionPointer);
439 browserFuncs.geturl = (NPN_GetURLProcPtr)tVectorForFunctionPointer((FunctionPointer)NPN_GetURL);
440 browserFuncs.posturl = (NPN_PostURLProcPtr)tVectorForFunctionPointer((FunctionPointer)NPN_PostURL);
441 browserFuncs.requestread = (NPN_RequestReadProcPtr)tVectorForFunctionPointer((FunctionPointer)NPN_RequestRead);
442 browserFuncs.newstream = (NPN_NewStreamProcPtr)tVectorForFunctionPointer((FunctionPointer)NPN_NewStream);
443 browserFuncs.write = (NPN_WriteProcPtr)tVectorForFunctionPointer((FunctionPointer)NPN_Write);
444 browserFuncs.destroystream = (NPN_DestroyStreamProcPtr)tVectorForFunctionPointer((FunctionPointer)NPN_DestroyStream);
445 browserFuncs.status = (NPN_StatusProcPtr)tVectorForFunctionPointer((FunctionPointer)NPN_Status)
    [all...]
  /external/webkit/Source/WebCore/manual-tests/NPN_Invoke/
main.c 64 typedef void (* FunctionPointer) (void);
66 static FunctionPointer functionPointerForTVector(TransitionVector);
67 static TransitionVector tVectorForFunctionPointer(FunctionPointer);
137 pluginFuncs->newp = (NPP_NewProcPtr)tVectorForFunctionPointer((FunctionPointer)NPP_New);
138 pluginFuncs->destroy = (NPP_DestroyProcPtr)tVectorForFunctionPointer((FunctionPointer)NPP_Destroy);
139 pluginFuncs->setwindow = (NPP_SetWindowProcPtr)tVectorForFunctionPointer((FunctionPointer)NPP_SetWindow);
140 pluginFuncs->newstream = (NPP_NewStreamProcPtr)tVectorForFunctionPointer((FunctionPointer)NPP_NewStream);
141 pluginFuncs->destroystream = (NPP_DestroyStreamProcPtr)tVectorForFunctionPointer((FunctionPointer)NPP_DestroyStream);
142 pluginFuncs->asfile = (NPP_StreamAsFileProcPtr)tVectorForFunctionPointer((FunctionPointer)NPP_StreamAsFile);
143 pluginFuncs->writeready = (NPP_WriteReadyProcPtr)tVectorForFunctionPointer((FunctionPointer)NPP_WriteReady)
    [all...]
  /external/webkit/Source/WebKit2/Platform/
Module.h 57 template<typename FunctionType> FunctionType functionPointer(const char* functionName) const;
81 template<typename FunctionType> FunctionType Module::functionPointer(const char* functionName) const
  /external/webkit/Source/WebCore/bridge/jni/
JNIUtility.cpp 46 static FunctionPointerType functionPointer = 0;
47 if (!functionPointer)
48 functionPointer = reinterpret_cast<FunctionPointerType>(dlsym(javaVMFramework, "JNI_GetCreatedJavaVMs"));
49 if (!functionPointer)
51 return functionPointer(vmBuf, bufLen, nVMs);
  /external/webkit/Source/WebKit2/Shared/Plugins/Netscape/
NetscapePluginModule.cpp 208 NP_InitializeFuncPtr initializeFuncPtr = m_module->functionPointer<NP_InitializeFuncPtr>("NP_Initialize");
213 NP_GetEntryPointsFuncPtr getEntryPointsFuncPtr = m_module->functionPointer<NP_GetEntryPointsFuncPtr>("NP_GetEntryPoints");
218 m_shutdownProcPtr = m_module->functionPointer<NPP_ShutdownProcPtr>("NP_Shutdown");
  /frameworks/base/media/libstagefright/codecs/avc/enc/src/
avcenc_api.cpp 223 encvid->functionPointer = (AVCEncFuncPtr*) avcHandle->CBAVC_Malloc(userData, sizeof(AVCEncFuncPtr), DEFAULT_ATTR);
224 if (encvid->functionPointer == NULL)
228 encvid->functionPointer->SAD_Macroblock = &AVCSAD_Macroblock_C;
229 encvid->functionPointer->SAD_MB_HalfPel[0] = NULL;
230 encvid->functionPointer->SAD_MB_HalfPel[1] = &AVCSAD_MB_HalfPel_Cxh;
231 encvid->functionPointer->SAD_MB_HalfPel[2] = &AVCSAD_MB_HalfPel_Cyh;
232 encvid->functionPointer->SAD_MB_HalfPel[3] = &AVCSAD_MB_HalfPel_Cxhyh;
611 if (encvid->functionPointer != NULL)
613 avcHandle->CBAVC_Free(userData, (int)encvid->functionPointer);
motion_est.cpp 627 // encvid->functionPointer->SAD_MB_PADDING = &SAD_MB_PADDING_HTFM_Collect;
628 encvid->functionPointer->SAD_Macroblock = &SAD_MB_HTFM_Collect;
629 encvid->functionPointer->SAD_MB_HalfPel[0] = NULL;
630 encvid->functionPointer->SAD_MB_HalfPel[1] = &SAD_MB_HP_HTFM_Collectxh;
631 encvid->functionPointer->SAD_MB_HalfPel[2] = &SAD_MB_HP_HTFM_Collectyh;
632 encvid->functionPointer->SAD_MB_HalfPel[3] = &SAD_MB_HP_HTFM_Collectxhyh;
639 // encvid->functionPointer->SAD_MB_PADDING = &SAD_MB_PADDING_HTFM;
640 encvid->functionPointer->SAD_Macroblock = &SAD_MB_HTFM;
641 encvid->functionPointer->SAD_MB_HalfPel[0] = NULL;
642 encvid->functionPointer->SAD_MB_HalfPel[1] = &SAD_MB_HP_HTFMxh
    [all...]
avcenc_int.h 461 AVCEncFuncPtr *functionPointer; /* store pointers to platform specific functions */
  /frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
motion_est.cpp 151 void (*ComputeMBSum)(UChar *, Int, MOT *) = video->functionPointer->ComputeMBSum;
152 void (*ChooseMode)(UChar*, UChar*, Int, Int) = video->functionPointer->ChooseMode;
559 // video->functionPointer->SAD_MB_PADDING = &SAD_MB_PADDING_HTFM_Collect;
560 video->functionPointer->SAD_Macroblock = &SAD_MB_HTFM_Collect;
561 video->functionPointer->SAD_MB_HalfPel[0] = NULL;
562 video->functionPointer->SAD_MB_HalfPel[1] = &SAD_MB_HP_HTFM_Collectxh;
563 video->functionPointer->SAD_MB_HalfPel[2] = &SAD_MB_HP_HTFM_Collectyh;
564 video->functionPointer->SAD_MB_HalfPel[3] = &SAD_MB_HP_HTFM_Collectxhyh;
571 // video->functionPointer->SAD_MB_PADDING = &SAD_MB_PADDING_HTFM;
572 video->functionPointer->SAD_Macroblock = &SAD_MB_HTFM
    [all...]
findhalfpel.cpp 83 video->functionPointer->SAD_MB_HalfPel;
196 Int(*SAD_Blk_HalfPel)(UChar*, UChar*, Int, Int, Int, Int, Int, void*) = video->functionPointer->SAD_Blk_HalfPel;
mp4enc_api.cpp     [all...]
mp4lib_int.h 425 FuncPtr *functionPointer; /* structure containing platform dependent functions */
  /external/clang/docs/
BlockLanguageSpec.txt 67 pointerToFunctionThatReturnsIntWithCharArg functionPointer;
69 ^ pointerToFunctionThatReturnsIntWithCharArg (float x) { return functionPointer; }
72 ^ int ((*)(float x))(char) { return functionPointer; }
76 ^(float x) { return functionPointer; }
  /external/chromium/base/
tracked_objects.cc 398 typedef void (*FunctionPointer)();
399 RunTheStatic(FunctionPointer function,
406 FunctionPointer function_;
414 ThreadData::RunTheStatic::RunTheStatic(FunctionPointer function,
    [all...]

Completed in 4081 milliseconds