HomeSort by relevance Sort by last modified time
    Searched defs:nFontIndex (Results 1 - 6 of 6) sorted by null

  /external/pdfium/core/include/fpdfdoc/
fpdf_vt.h 191 CPVT_WordProps() : nFontIndex(-1), fFontSize(0.0f), dwWordColor(0), nScriptType(0), nWordStyle(0),
198 nFontIndex(fontIndex), fFontSize(fontSize), dwWordColor(wordColor), nScriptType(scriptType),
204 nFontIndex(other.nFontIndex), fFontSize(other.fFontSize), dwWordColor(other.dwWordColor),
210 FX_INT32 nFontIndex;
245 FX_INT32 nFontIndex;
284 virtual FX_INT32 GetCharWidth(FX_INT32 nFontIndex, FX_WORD word, FX_INT32 nWordStyle) = 0;
286 virtual FX_INT32 GetTypeAscent(FX_INT32 nFontIndex) = 0;
288 virtual FX_INT32 GetTypeDescent(FX_INT32 nFontIndex) = 0;
290 virtual FX_INT32 GetWordFontIndex(FX_WORD word, FX_INT32 charset, FX_INT32 nFontIndex) = 0
    [all...]
  /external/pdfium/fpdfsdk/src/fxedit/
fxet_pageobjs.cpp 14 extern CFX_ByteString GetPDFWordString(IFX_Edit_FontMap * pFontMap, FX_INT32 nFontIndex, FX_WORD Word, FX_WORD SubWord);
152 FX_INT32 nFontIndex = -1;
233 if (place.LineCmp(oldplace) != 0 || word.nFontIndex != nFontIndex ||
238 DrawTextString(pDevice, CPDF_Point(ptBT.x+ptOffset.x, ptBT.y+ptOffset.y), pFontMap->GetPDFFont(nFontIndex),
243 nFontIndex = word.nFontIndex;
248 sTextBuf << GetPDFWordString(pFontMap, word.nFontIndex, word.Word, SubWord);
252 DrawTextString(pDevice,CPDF_Point(word.ptWord.x+ptOffset.x, word.ptWord.y+ptOffset.y), pFontMap->GetPDFFont(word.nFontIndex),
253 fFontSize, pUser2Device, GetPDFWordString(pFontMap, word.nFontIndex, word.Word, SubWord), crCurFill, crTextStroke, nHorzScale)
    [all...]
  /external/pdfium/fpdfsdk/src/pdfwindow/
PWL_FontMap.cpp 52 CPDF_Font* CPWL_FontMap::GetPDFFont(FX_INT32 nFontIndex)
54 if (nFontIndex >=0 && nFontIndex < m_aData.GetSize())
56 if (CPWL_FontMap_Data* pData = m_aData.GetAt(nFontIndex))
65 CFX_ByteString CPWL_FontMap::GetPDFFontAlias(FX_INT32 nFontIndex)
67 if (nFontIndex >=0 && nFontIndex < m_aData.GetSize())
69 if (CPWL_FontMap_Data* pData = m_aData.GetAt(nFontIndex))
78 FX_BOOL CPWL_FontMap::KnowWord(FX_INT32 nFontIndex, FX_WORD word)
80 if (nFontIndex >=0 && nFontIndex < m_aData.GetSize()
    [all...]
PWL_EditCtrl.cpp 513 FX_INT32 nFontIndex = 0;
522 nFontIndex = word.nFontIndex;
528 nFontIndex = section.WordProps.nFontIndex;
534 return pFontMap->GetPDFFont(nFontIndex);
  /external/pdfium/core/src/fpdfdoc/
pdf_vt.h 141 fWordX(0.0f), fWordY(0.0f), fWordTail(0.0f), nFontIndex(-1), pWordProps(NULL)
146 nFontIndex(fontIndex), pWordProps(pProps)
156 fWordX(0.0f), fWordY(0.0f), fWordTail(0.0f), nFontIndex(-1), pWordProps(NULL)
167 this->nFontIndex = word.nFontIndex;
181 FX_INT32 nFontIndex;
541 FX_INT32 GetCharWidth(FX_INT32 nFontIndex, FX_WORD Word, FX_WORD SubWord, FX_INT32 nWordStyle);
542 FX_INT32 GetTypeAscent(FX_INT32 nFontIndex);
543 FX_INT32 GetTypeDescent(FX_INT32 nFontIndex);
544 FX_INT32 GetWordFontIndex(FX_WORD word, FX_INT32 charset, FX_INT32 nFontIndex);
    [all...]
doc_vt.cpp 624 fWordWidth = m_pVT->GetWordWidth(pWord->nFontIndex,
    [all...]

Completed in 218 milliseconds