HomeSort by relevance Sort by last modified time
    Searched refs:pParams (Results 1 - 25 of 135) sorted by null

1 2 3 4 5 6

  /external/pdfium/xfa/src/fwl/src/theme/
barcodetp.cpp 15 FX_BOOL CFWL_BarcodeTP::DrawBackground(CFWL_ThemeBackground* pParams) {
16 if (!pParams)
18 switch (pParams->m_iPart) {
20 DrawBorder(pParams->m_pGraphics, &pParams->m_rtPart, &pParams->m_matrix);
24 DrawEdge(pParams->m_pGraphics, pParams->m_pWidget->GetStyles(),
25 &pParams->m_rtPart, &pParams->m_matrix);
    [all...]
edittp.cpp 15 FX_BOOL CFWL_EditTP::DrawBackground(CFWL_ThemeBackground* pParams) {
16 switch (pParams->m_iPart) {
18 DrawBorder(pParams->m_pGraphics, &pParams->m_rtPart, &pParams->m_matrix);
22 DrawEdge(pParams->m_pGraphics, pParams->m_pWidget->GetStyles(),
23 &pParams->m_rtPart, &pParams->m_matrix);
27 if (pParams->m_pPath) {
    [all...]
pictureboxtp.cpp 15 FX_BOOL CFWL_PictureBoxTP::DrawBackground(CFWL_ThemeBackground* pParams) {
16 if (!pParams)
18 switch (pParams->m_iPart) {
20 DrawBorder(pParams->m_pGraphics, &pParams->m_rtPart, &pParams->m_matrix);
24 DrawEdge(pParams->m_pGraphics, pParams->m_pWidget->GetStyles(),
25 &pParams->m_rtPart, &pParams->m_matrix);
    [all...]
comboboxtp.cpp 18 FX_BOOL CFWL_ComboBoxTP::DrawBackground(CFWL_ThemeBackground* pParams) {
19 if (!pParams)
21 switch (pParams->m_iPart) {
23 DrawBorder(pParams->m_pGraphics, &pParams->m_rtPart, &pParams->m_matrix);
27 DrawEdge(pParams->m_pGraphics, pParams->m_pWidget->GetStyles(),
28 &pParams->m_rtPart, &pParams->m_matrix);
    [all...]
listboxtp.cpp 15 FX_BOOL CFWL_ListBoxTP::DrawBackground(CFWL_ThemeBackground* pParams) {
16 if (!pParams)
18 switch (pParams->m_iPart) {
20 DrawBorder(pParams->m_pGraphics, &pParams->m_rtPart, &pParams->m_matrix);
24 DrawEdge(pParams->m_pGraphics, pParams->m_pWidget->GetStyles(),
25 &pParams->m_rtPart, &pParams->m_matrix);
    [all...]
datetimepickertp.cpp 20 FX_BOOL CFWL_DateTimePickerTP::DrawBackground(CFWL_ThemeBackground* pParams) {
21 if (!pParams)
23 switch (pParams->m_iPart) {
25 DrawBorder(pParams->m_pGraphics, &pParams->m_rtPart, &pParams->m_matrix);
29 DrawEdge(pParams->m_pGraphics, pParams->m_pWidget->GetStyles(),
30 &pParams->m_rtPart, &pParams->m_matrix);
    [all...]
monthcalendartp.cpp 71 FX_BOOL CFWL_MonthCalendarTP::DrawBackground(CFWL_ThemeBackground* pParams) {
72 if (!pParams)
74 switch (pParams->m_iPart) {
76 DrawBorder(pParams->m_pGraphics, &pParams->m_rtPart, &pParams->m_matrix);
80 DrawEdge(pParams->m_pGraphics, pParams->m_pWidget->GetStyles(),
81 &pParams->m_rtPart, &pParams->m_matrix);
    [all...]
carettp.cpp 15 FX_BOOL CFWL_CaretTP::DrawBackground(CFWL_ThemeBackground* pParams) {
16 if (!pParams)
18 switch (pParams->m_iPart) {
20 if (!(pParams->m_dwStates & FWL_PARTSTATE_CAT_HightLight)) {
23 DrawCaretBK(pParams->m_pGraphics, pParams->m_dwStates,
24 &(pParams->m_rtPart), (CFX_Color*)pParams->m_pData,
25 &(pParams->m_matrix));
pushbuttontp.cpp 27 FX_BOOL CFWL_PushButtonTP::DrawBackground(CFWL_ThemeBackground* pParams) {
28 switch (pParams->m_iPart) {
30 DrawBorder(pParams->m_pGraphics, &pParams->m_rtPart, &pParams->m_matrix);
34 DrawEdge(pParams->m_pGraphics, pParams->m_pWidget->GetStyles(),
35 &pParams->m_rtPart, &pParams->m_matrix);
39 CFX_RectF& rect = pParams->m_rtPart;
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
LVM_Timer_Init.c 37 LVM_Timer_Params_t *pParams ){
42 pInstancePr->CallBackParam = pParams->CallBackParam;
43 pInstancePr->pCallBackParams = pParams->pCallBackParams;
44 pInstancePr->pCallbackInstance = pParams->pCallbackInstance;
45 pInstancePr->pCallBack = pParams->pCallBack;
48 MUL32x16INTO32(pParams->SamplingRate,OneOverThousandInQ24,pInstancePr->RemainingTimeInSamples,16); /* (Q0 * Q24) >>16 into Q8*/
49 MUL32x16INTO32(pInstancePr->RemainingTimeInSamples,pParams->TimeInMs,pInstancePr->RemainingTimeInSamples,8); /* (Q8 * Q0) >>8 into Q0*/
  /external/pdfium/xfa/include/fwl/theme/
monthcalendartp.h 19 virtual FX_BOOL DrawBackground(CFWL_ThemeBackground* pParams);
20 virtual FX_BOOL DrawText(CFWL_ThemeText* pParams);
26 FX_BOOL DrawTotalBK(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix);
27 FX_BOOL DrawHeadBk(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix);
28 FX_BOOL DrawLButton(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix);
29 FX_BOOL DrawRButton(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix);
30 FX_BOOL DrawDatesInBK(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix);
31 FX_BOOL DrawDatesInCircle(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix);
32 FX_BOOL DrawTodayCircle(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix);
33 FX_BOOL DrawHSeperator(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix);
    [all...]
comboboxtp.h 16 virtual FX_BOOL DrawBackground(CFWL_ThemeBackground* pParams);
20 void DrawDropDownButton(CFWL_ThemeBackground* pParams,
23 void DrawStrethHandler(CFWL_ThemeBackground* pParams,
datetimepickertp.h 16 virtual FX_BOOL DrawBackground(CFWL_ThemeBackground* pParams);
19 void DrawDropDownButton(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix);
barcodetp.h 16 virtual FX_BOOL DrawBackground(CFWL_ThemeBackground* pParams);
edittp.h 16 virtual FX_BOOL DrawBackground(CFWL_ThemeBackground* pParams);
pictureboxtp.h 16 virtual FX_BOOL DrawBackground(CFWL_ThemeBackground* pParams);
carettp.h 16 virtual FX_BOOL DrawBackground(CFWL_ThemeBackground* pParams);
  /frameworks/av/media/libeffects/lvm/lib/StereoWidening/src/
LVCS_Control.c 38 /* pParams Pointer to an empty parameter structure */
49 LVCS_Params_t *pParams)
54 *pParams = pInstance->Params;
69 /* pParams Pointer to a parameter structure */
80 LVCS_Params_t *pParams)
87 if (pParams->SampleRate != pInstance->Params.SampleRate)
89 pInstance->TimerParams.SamplingRate = LVCS_SampleRateTable[pParams->SampleRate];
95 if(pInstance->Params.ReverbLevel != pParams->ReverbLevel)
97 err=LVCS_ReverbGeneratorInit(hInstance,pParams);
103 if ((pInstance->Params.SampleRate != pParams->SampleRate) |
    [all...]
LVCS_Equaliser.h 47 LVCS_Params_t *pParams);
  /frameworks/av/media/libeffects/lvm/lib/Bass/src/
LVDBE_Control.c 40 /* pParams Pointer to an empty parameter structure */
51 LVDBE_Params_t *pParams)
56 *pParams = pInstance->Params;
102 /* pParams Initialisation parameters */
107 LVDBE_Params_t *pParams)
113 LVM_UINT16 Offset = (LVM_UINT16)((LVM_UINT16)pParams->SampleRate + (LVM_UINT16)(pParams->CentreFrequency * (1+LVDBE_FS_48000)));
152 /* pParams Initialisation parameters */
157 LVDBE_Params_t *pParams)
163 pInstance->pData->AGCInstance.AGC_Attack = LVDBE_AGC_ATTACK_Table[(LVM_UINT16)pParams->SampleRate]; /* Attack multiplier *
    [all...]
LVDBE_Private.h 123 LVDBE_Params_t *pParams);
127 LVDBE_Params_t *pParams);
131 LVDBE_Params_t *pParams);
  /frameworks/av/media/libeffects/lvm/lib/Eq/src/
LVEQNB_Control.c 49 /* pParams Pointer to an empty parameter structure */
53 /* LVEQNB_NULLADDRESS Instance or pParams is NULL pointer */
61 LVEQNB_Params_t *pParams)
69 if((hInstance == LVM_NULL) || (pParams == LVM_NULL))
74 *pParams = pInstance->Params;
127 /* pParams Initialisation parameters */
141 LVEQNB_Params_t *pParams)
146 LVM_UINT32 fs = (LVM_UINT32)LVEQNB_SampleRateTab[(LVM_UINT16)pParams->SampleRate]; /* Sample rate */
151 pInstance->NBands = pParams->NBands;
153 for (i=0; i<pParams->NBands; i++
    [all...]
  /external/pdfium/xfa/src/fxfa/src/app/
xfa_fwltheme.cpp 102 FX_BOOL CXFA_FWLTheme::DrawBackground(CFWL_ThemeBackground* pParams) {
103 return GetTheme(pParams->m_pWidget)->DrawBackground(pParams);
105 FX_BOOL CXFA_FWLTheme::DrawText(CFWL_ThemeText* pParams) {
106 if (pParams->m_wsText.IsEmpty()) {
109 if (pParams->m_pWidget->GetClassID() == FWL_CLASSHASH_MonthCalendar) {
110 CXFA_FFWidget* pWidget = XFA_ThemeGetOuterWidget(pParams->m_pWidget);
114 m_pTextOut->SetStyles(pParams->m_dwTTOStyles);
115 m_pTextOut->SetAlignment(pParams->m_iTTOAlign);
119 if ((pParams->m_iPart == FWL_PART_MCD_DatesIn) &&
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Bundle/src/
LVM_Control.c 40 /* pParams Pointer to a parameter structure */
44 /* LVM_NULLADDRESS When hInstance, pParams or any control pointers are NULL */
53 LVM_ControlParams_t *pParams)
58 if ((pParams == LVM_NULL) || (hInstance == LVM_NULL))
63 pInstance->NewParams = *pParams;
67 ((pParams->OperatingMode != LVM_MODE_OFF) && (pParams->OperatingMode != LVM_MODE_ON)) ||
68 ((pParams->SampleRate != LVM_FS_8000) && (pParams->SampleRate != LVM_FS_11025) && (pParams->SampleRate != LVM_FS_12000) &
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Common/lib/
LVM_Timer.h 67 LVM_Timer_Params_t *pParams );

Completed in 1321 milliseconds

1 2 3 4 5 6