HomeSort by relevance Sort by last modified time
    Searched refs:FX_DWORD (Results 76 - 100 of 221) sorted by null

1 2 34 5 6 7 8 9

  /external/pdfium/fpdfsdk/include/pdfwindow/
PWL_EditCtrl.h 65 virtual FX_BOOL OnKeyDown(FX_WORD nChar, FX_DWORD nFlag);
66 virtual FX_BOOL OnChar(FX_WORD nChar, FX_DWORD nFlag);
67 virtual FX_BOOL OnLButtonDown(const CPDF_Point & point, FX_DWORD nFlag);
68 virtual FX_BOOL OnLButtonUp(const CPDF_Point & point, FX_DWORD nFlag);
69 virtual FX_BOOL OnMouseMove(const CPDF_Point & point, FX_DWORD nFlag);
70 virtual void OnNotify(CPWL_Wnd* pWnd, FX_DWORD msg, FX_INTPTR wParam = 0, FX_INTPTR lParam = 0);
PWL_ScrollBar.h 50 virtual FX_BOOL OnLButtonDown(const CPDF_Point & point, FX_DWORD nFlag);
51 virtual FX_BOOL OnLButtonUp(const CPDF_Point & point, FX_DWORD nFlag);
52 virtual FX_BOOL OnMouseMove(const CPDF_Point & point, FX_DWORD nFlag);
111 virtual FX_BOOL OnLButtonDown(const CPDF_Point & point, FX_DWORD nFlag);
112 virtual FX_BOOL OnLButtonUp(const CPDF_Point & point, FX_DWORD nFlag);
113 virtual void OnNotify(CPWL_Wnd* pWnd, FX_DWORD msg, FX_INTPTR wParam = 0, FX_INTPTR lParam = 0);
PWL_Note.h 103 virtual FX_BOOL OnLButtonDown(const CPDF_Point & point, FX_DWORD nFlag);
104 virtual FX_BOOL OnLButtonUp(const CPDF_Point & point, FX_DWORD nFlag);
144 virtual void OnNotify(CPWL_Wnd* pWnd, FX_DWORD msg, FX_INTPTR wParam = 0, FX_INTPTR lParam = 0);
183 virtual void OnNotify(CPWL_Wnd* pWnd, FX_DWORD msg, FX_INTPTR wParam = 0, FX_INTPTR lParam = 0);
184 virtual FX_BOOL OnLButtonDown(const CPDF_Point& point, FX_DWORD nFlag);
240 virtual FX_BOOL OnLButtonDown(const CPDF_Point& point, FX_DWORD nFlag);
241 virtual FX_BOOL OnRButtonUp(const CPDF_Point & point, FX_DWORD nFlag);
254 virtual void OnNotify(CPWL_Wnd* pWnd, FX_DWORD msg, FX_INTPTR wParam = 0, FX_INTPTR lParam = 0);
322 virtual FX_BOOL OnLButtonDown(const CPDF_Point & point, FX_DWORD nFlag);
323 virtual FX_BOOL OnRButtonUp(const CPDF_Point & point, FX_DWORD nFlag);
    [all...]
  /external/pdfium/core/src/fxge/dib/
fx_dib_convert.cpp 10 const FX_DWORD g_dwWinPalette[256] = {
55 const FX_DWORD g_dwMacPalette[256] = {
107 FX_DWORD* GetPalette() const
112 FX_DWORD* GetColorLut()const
116 FX_DWORD* GetAmountLut()const
125 FX_DWORD* m_pPalette;
126 FX_DWORD* m_cLut;
127 FX_DWORD* m_aLut;
130 int _Partition(FX_DWORD* alut, FX_DWORD* clut, int l, int r)
    [all...]
  /external/pdfium/fpdfsdk/include/
fpdfedit.h 15 #define FPDF_ARGB(a,r,g,b) ((((FX_DWORD)(((FX_BYTE)(b)|((FX_WORD)((FX_BYTE)(g))<<8))|(((FX_DWORD)(FX_BYTE)(r))<<16)))) | (((FX_DWORD)(FX_BYTE)(a))<<24))
  /external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render_loadimage.cpp 31 CFX_DIBSource* CPDF_Image::LoadDIBSource(CFX_DIBSource** ppMask, FX_DWORD* pMatteColor, FX_BOOL bStdCS, FX_DWORD GroupFamily, FX_BOOL bLoadMask) const
52 FX_BOOL CPDF_Image::StartLoadDIBSource(CPDF_Dictionary* pFormResource, CPDF_Dictionary* pPageResource, FX_BOOL bStdCS, FX_DWORD GroupFamily, FX_BOOL bLoadMask)
160 FX_DWORD* pMatteColor, CPDF_Dictionary* pFormResources, CPDF_Dictionary* pPageResources, FX_BOOL bStdCS, FX_DWORD GroupFamily, FX_BOOL bLoadMask)
178 FX_DWORD src_pitch = m_bpc;
184 if (src_pitch > 0 && (FX_DWORD)m_Width > (unsigned)INT_MAX / src_pitch) {
193 if (src_pitch > 0 && (FX_DWORD)m_Height > (unsigned)INT_MAX / src_pitch) {
225 if ((FX_DWORD)m_bpp > (unsigned)INT_MAX / m_Pitch) {
243 if ((FX_DWORD)m_bpp > (unsigned)INT_MAX / m_Pitch) {
    [all...]
fpdf_render_cache.cpp 13 FX_DWORD time;
42 if (m_nCacheSize <= (FX_DWORD)dwLimitCacheSize) {
56 FX_DWORD nTimeCount = m_nTimeCount;
68 while (m_nCacheSize > (FX_DWORD)dwLimitCacheSize) {
84 FX_DWORD CPDF_PageRenderCache::EstimateSize()
86 FX_DWORD dwSize = 0;
96 FX_DWORD CPDF_PageRenderCache::GetCachedSize(CPDF_Stream* pStream) const
107 void CPDF_PageRenderCache::GetCachedBitmap(CPDF_Stream* pStream, CFX_DIBSource*& pBitmap, CFX_DIBSource*& pMask, FX_DWORD& MatteColor,
108 FX_BOOL bStdCS, FX_DWORD GroupFamily, FX_BOOL bLoadMask, CPDF_RenderStatus* pRenderStatus,
125 FX_BOOL CPDF_PageRenderCache::StartGetCachedBitmap(CPDF_Stream* pStream, FX_BOOL bStdCS, FX_DWORD GroupFamily, FX_BOOL bLoadMask, CPDF_RenderStatus* pRenderStatus, FX_INT32 downsampleWidth, FX_INT (…)
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_edit/
fpdf_edit_create.cpp 11 extern void FlateEncode(const FX_BYTE* src_buf, FX_DWORD src_data, FX_LPBYTE& dest_buf, FX_DWORD& dest_size);
12 extern void FlateEncode(FX_LPCBYTE src_buf, FX_DWORD src_size, int predictor, int Colors, int BitsPerComponent, int Columns,
13 FX_LPBYTE& dest_buf, FX_DWORD& dest_size);
82 for (FX_DWORD i = 0; i < p->GetCount(); i ++) {
262 FX_INT32 PDF_CreatorWriteEncrypt(const CPDF_Dictionary* pEncryptDict, FX_DWORD dwObjNum, CFX_FileBufferArchive *pFile)
286 FX_BOOL PDF_GenerateFileID(FX_DWORD dwSeed1, FX_DWORD dwSeed2, FX_LPDWORD pBuffer)
310 FX_BOOL Initialize(FX_LPCBYTE pBuffer, FX_DWORD size, FX_BOOL bFlateEncode, FX_BOOL bXRefStream = FALSE);
313 FX_DWORD m_dwSize;
    [all...]
  /external/pdfium/core/include/fxcrt/
fx_ext.h 55 FX_DWORD FX_HashCode_String_GetA(FX_LPCSTR pStr, FX_INT32 iLength, FX_BOOL bIgnoreCase = FALSE);
56 FX_DWORD FX_HashCode_String_GetW(FX_LPCWSTR pStr, FX_INT32 iLength, FX_BOOL bIgnoreCase = FALSE);
65 FX_LPVOID FX_Random_MT_Start(FX_DWORD dwSeed);
67 FX_DWORD FX_Random_MT_Generate(FX_LPVOID pContext);
fx_xml.h 101 FX_DWORD CountAttrs() const
161 FX_DWORD CountChildren() const;
165 ChildType GetChildType(FX_DWORD index) const;
167 CFX_WideString GetContent(FX_DWORD index) const;
168 const CFX_WideStringL* GetContentPtr(FX_DWORD index) const;
170 CXML_Element* GetElement(FX_DWORD index) const;
177 FX_DWORD CountElements(FX_BSTR space, FX_BSTR tag) const;
181 FX_DWORD FindElement(CXML_Element *pChild) const;
192 void RemoveChild(FX_DWORD index);
fx_basic.h 105 CFX_ByteTextBuf& operator << (FX_DWORD i);
169 CFX_ArchiveSaver& operator << (FX_DWORD i);
207 CFX_ArchiveLoader(FX_LPCBYTE pData, FX_DWORD dwSize);
213 CFX_ArchiveLoader& operator >> (FX_DWORD& i);
225 FX_BOOL Read(void* pBuf, FX_DWORD dwSize);
228 FX_DWORD m_LoadingPos;
232 FX_DWORD m_LoadingSize;
251 FX_INT32 AppendDWord(FX_DWORD i);
313 void AppendChar(FX_DWORD ch);
332 FX_DWORD m_PendingChar;
    [all...]
fx_system.h 91 typedef unsigned int FX_DWORD;
110 typedef FX_DWORD FX_UINT32;
214 int FXSYS_WideCharToMultiByte(FX_DWORD codepage, FX_DWORD dwFlags, const wchar_t* wstr, int wlen,
216 int FXSYS_MultiByteToWideChar(FX_DWORD codepage, FX_DWORD dwFlags, const char* bstr, int blen,
218 FX_DWORD FXSYS_GetFullPathName(const char* filename, FX_DWORD buflen, char* buf, char** filepart);
219 FX_DWORD FXSYS_GetModuleFileName(void* hModule, char* buf, FX_DWORD bufsize);
    [all...]
  /external/pdfium/core/src/fxcrt/
fx_basic_gcc.cpp 92 FX_DWORD FXSYS_GetFullPathName(FX_LPCSTR filename, FX_DWORD buflen, FX_LPSTR buf, FX_LPSTR* filepart)
101 FX_DWORD FXSYS_GetModuleFileName(FX_LPVOID hModule, char* buf, FX_DWORD bufsize)
103 return (FX_DWORD) - 1;
203 int FXSYS_WideCharToMultiByte(FX_DWORD codepage, FX_DWORD dwFlags, FX_LPCWSTR wstr, int wlen,
217 int FXSYS_MultiByteToWideChar(FX_DWORD codepage, FX_DWORD dwFlags, FX_LPCSTR bstr, int blen,
fx_arabic.cpp 9 extern const FX_DWORD gs_FX_TextLayout_CodeProperties[65536];
26 FX_DWORD dwProps = gs_FX_TextLayout_CodeProperties[(FX_WORD)wch];
  /external/pdfium/core/src/fxge/android/
fpf_skiafontmgr.h 39 FX_DWORD m_dwStyle;
41 FX_DWORD m_dwCharsets;
102 virtual IFPF_Font* CreateFont(FX_BSTR bsFamilyname, FX_BYTE uCharset, FX_DWORD dwStyle, FX_DWORD dwMatch = 0);
fpf_skiafontmgr.cpp 38 FX_DWORD dwFamily;
39 FX_DWORD dwSubSt;
65 FX_DWORD FPF_SkiaGetSubstFont(FX_DWORD dwHash)
89 FX_DWORD FPF_SkiaGetSansFont(FX_DWORD dwHash)
148 static FX_DWORD FPF_SkiaGetCharset(FX_BYTE uCharset)
184 static FX_DWORD FPF_SKIANormalizeFontName(FX_BSTR bsfamily)
186 FX_DWORD dwHash = 0;
198 static FX_DWORD FPF_SKIAGetFamilyHash(FX_BSTR bsFamily, FX_DWORD dwStyle, FX_BYTE uCharset
    [all...]
  /external/pdfium/core/src/fxcodec/codec/
fx_codec_icc.cpp 10 FX_BOOL MD5ComputeID( FX_LPCVOID buf, FX_DWORD dwSize, FX_BYTE ID[16] )
64 int intent, FX_DWORD dwSrcFormat = Icc_FORMAT_DEFAULT, FX_DWORD dwDstFormat = Icc_FORMAT_DEFAULT)
138 void* IccLib_CreateTransform_sRGB(const unsigned char* pProfileData, unsigned int dwProfileSize, int nComponents, int intent, FX_DWORD dwSrcFormat)
264 FX_DWORD dwSize = (FX_DWORD)pFile->GetSize();
274 FX_DWORD TransferProfileType(FX_LPVOID pProfile, FX_DWORD dwFormat)
326 FX_DWORD m_dwRate;
350 FX_DWORD m_dwRate;
    [all...]
fx_codec_jpeg.cpp 11 static void _JpegScanSOI(const FX_BYTE*& src_buf, FX_DWORD& src_size)
16 FX_DWORD offset = 0;
85 static FX_BOOL _JpegLoadIccProfile(j_decompress_ptr cinfo, FX_LPBYTE* icc_buf_ptr, FX_DWORD* icc_length)
93 FX_DWORD icc_data_len = 0;
138 static FX_BOOL _JpegEmbedIccProfile(j_compress_ptr cinfo, FX_LPCBYTE icc_buf_ptr, FX_DWORD icc_length)
143 FX_DWORD icc_segment_size = (JPEG_MARKER_MAXSIZE - 2 - JPEG_OVERHEAD_LEN);
144 FX_DWORD icc_segment_num = (icc_length / icc_segment_size) + 1;
148 FX_DWORD icc_data_length = JPEG_OVERHEAD_LEN + (icc_segment_num > 1 ? icc_segment_size : icc_length);
161 FX_DWORD icc_size = (icc_segment_num - 1) * icc_segment_size;
177 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)
    [all...]
  /external/pdfium/fpdfsdk/src/
fpdf_dataavail.cpp 10 extern void ProcessParseError(FX_DWORD err_code);
24 virtual FX_BOOL IsDataAvail( FX_FILESIZE offset, FX_DWORD size)
72 virtual void AddSegment(FX_FILESIZE offset, FX_DWORD size)
120 extern void CheckUnSupportError(CPDF_Document * pDoc, FX_DWORD err_code);
128 FX_DWORD err_code = pParser->StartAsynParse(((CFPDF_DataAvail*)avail)->m_pDataAvail->GetFileRead());
fsdk_annothandler.cpp 134 void CPDFSDK_AnnotHandlerMgr::Annot_OnDraw(CPDFSDK_PageView* pPageView, CPDFSDK_Annot* pAnnot, CFX_RenderDevice* pDevice, CPDF_Matrix* pUser2Device,FX_DWORD dwFlags)
149 FX_BOOL CPDFSDK_AnnotHandlerMgr::Annot_OnLButtonDown(CPDFSDK_PageView * pPageView, CPDFSDK_Annot* pAnnot, FX_DWORD nFlags, const CPDF_Point& point)
159 FX_BOOL CPDFSDK_AnnotHandlerMgr::Annot_OnLButtonUp(CPDFSDK_PageView * pPageView, CPDFSDK_Annot* pAnnot, FX_DWORD nFlags, const CPDF_Point& point)
169 FX_BOOL CPDFSDK_AnnotHandlerMgr::Annot_OnLButtonDblClk(CPDFSDK_PageView * pPageView, CPDFSDK_Annot* pAnnot, FX_DWORD nFlags, const CPDF_Point& point)
179 FX_BOOL CPDFSDK_AnnotHandlerMgr::Annot_OnMouseMove(CPDFSDK_PageView * pPageView, CPDFSDK_Annot* pAnnot, FX_DWORD nFlags, const CPDF_Point& point)
189 FX_BOOL CPDFSDK_AnnotHandlerMgr::Annot_OnMouseWheel(CPDFSDK_PageView * pPageView, CPDFSDK_Annot* pAnnot, FX_DWORD nFlags, short zDelta, const CPDF_Point& point)
199 FX_BOOL CPDFSDK_AnnotHandlerMgr::Annot_OnRButtonDown(CPDFSDK_PageView * pPageView, CPDFSDK_Annot* pAnnot, FX_DWORD nFlags, const CPDF_Point& point)
209 FX_BOOL CPDFSDK_AnnotHandlerMgr::Annot_OnRButtonUp(CPDFSDK_PageView * pPageView, CPDFSDK_Annot* pAnnot, FX_DWORD nFlags, const CPDF_Point& point)
220 void CPDFSDK_AnnotHandlerMgr::Annot_OnMouseEnter(CPDFSDK_PageView * pPageView, CPDFSDK_Annot* pAnnot, FX_DWORD nFlag)
231 void CPDFSDK_AnnotHandlerMgr::Annot_OnMouseExit(CPDFSDK_PageView * pPageView, CPDFSDK_Annot* pAnnot, FX_DWORD nFlag)
    [all...]
  /external/pdfium/core/src/fdrm/crypto/
fx_crypt.cpp 15 void CRYPT_ArcFourSetup(void* context, FX_LPCBYTE key, FX_DWORD length )
36 void CRYPT_ArcFourCrypt(void* context, unsigned char *data, FX_DWORD length )
54 void CRYPT_ArcFourCryptBlock(FX_LPBYTE pData, FX_DWORD size, FX_LPCBYTE key, FX_DWORD keylen)
61 FX_DWORD total[2];
62 FX_DWORD state[4];
67 (n) = (FX_DWORD) ((FX_BYTE *) b)[(i)] \
68 | (((FX_DWORD) ((FX_BYTE *) b)[(i)+1]) << 8) \
69 | (((FX_DWORD) ((FX_BYTE *) b)[(i)+2]) << 16) \
70 | (((FX_DWORD) ((FX_BYTE *) b)[(i)+3]) << 24); \
    [all...]
  /external/pdfium/fpdfsdk/include/formfiller/
FFL_IFormFiller.h 40 /*const CRect& rcWindow,*/ FX_DWORD dwFlags);
73 FX_BOOL bKeyDown, FX_BOOL & bRC, FX_BOOL & bExit, FX_DWORD nFlag);
74 virtual void OnAfterKeyStroke(FX_BOOL bEditOrList, void* pPrivateData, FX_BOOL & bExit, FX_DWORD nFlag) ;
104 void OnKeyStrokeCommit(CPDFSDK_Widget* pWidget, CPDFSDK_PageView* pPageView, FX_BOOL& bRC, FX_BOOL& bExit, FX_DWORD nFlag);
105 void OnValidate(CPDFSDK_Widget* pWidget, CPDFSDK_PageView* pPageView, FX_BOOL& bRC, FX_BOOL& bExit, FX_DWORD nFlag);
107 void OnCalculate(CPDFSDK_Widget* pWidget, CPDFSDK_PageView* pPageView, FX_BOOL& bExit, FX_DWORD nFlag);
108 void OnFormat(CPDFSDK_Widget* pWidget, CPDFSDK_PageView* pPageView, FX_BOOL& bExit, FX_DWORD nFlag);
  /external/pdfium/fpdfsdk/include/javascript/
JS_Object.h 216 void SetStartTime(FX_DWORD dwStartTime)
221 FX_DWORD GetStartTime() const
226 void SetTimeOut(FX_DWORD dwTimeOut)
231 FX_DWORD GetTimeOut() const
279 FX_DWORD m_dwStartTime;
280 FX_DWORD m_dwTimeOut;
281 FX_DWORD m_dwElapse;
  /external/pdfium/core/include/fpdfapi/
fpdf_pageobj.h 129 FX_DWORD GetPathCount() const
144 FX_DWORD GetTextCount() const
176 FX_DWORD m_FillRGB;
180 FX_DWORD m_StrokeRGB;
204 void SetColor(CPDF_Color& color, FX_DWORD& rgb, CPDF_ColorSpace* pCS, FX_FLOAT* pValue, int nValues);
510 FX_DWORD m_CharCode;
533 void GetCharInfo(int index, FX_DWORD& charcode, FX_FLOAT& kerning) const;
539 FX_FLOAT GetCharWidth(FX_DWORD charcode) const;
570 void SetText(int nChars, FX_DWORD* pCharCodes, FX_FLOAT* pKernings);
581 void SetData(int nChars, FX_DWORD* pCharCodes, FX_FLOAT* pCharPos, FX_FLOAT x, FX_FLOAT y);
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_parser/
fpdf_parser_utility.cpp 20 CPDF_SimpleParser::CPDF_SimpleParser(FX_LPCBYTE pData, FX_DWORD dwSize)
32 void CPDF_SimpleParser::ParseWord(FX_LPCBYTE& pStart, FX_DWORD& dwSize, int& type)
66 FX_DWORD start_pos = m_dwCurPos - 1;
131 FX_DWORD dwSize;
200 FX_DWORD& start_pos, FX_DWORD& end_pos)
223 FX_DWORD* pBuf = FX_Alloc(FX_DWORD, nParams);
361 for (FX_DWORD i = 0; i < p->GetCount(); i ++) {
422 FX_DWORD dwCount = pNumbers->GetCount() / 2;
    [all...]

Completed in 400 milliseconds

1 2 34 5 6 7 8 9