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

1 2 3

  /external/freetype/src/base/
ftcid.c 5 /* FreeType API for accessing CID font information. */
46 FT_FACE_FIND_SERVICE( face, service, CID );
78 FT_FACE_FIND_SERVICE( face, service, CID );
94 FT_UInt *cid )
105 FT_FACE_FIND_SERVICE( face, service, CID );
111 if ( cid )
112 *cid = c;
  /external/pdfium/third_party/freetype/src/base/
ftcid.c 5 /* FreeType API for accessing CID font information. */
46 FT_FACE_FIND_SERVICE( face, service, CID );
78 FT_FACE_FIND_SERVICE( face, service, CID );
94 FT_UInt *cid )
105 FT_FACE_FIND_SERVICE( face, service, CID );
111 if ( cid )
112 *cid = c;
  /external/pdfium/core/fpdfapi/font/
cpdf_cidfont.h 60 const uint8_t* GetCIDTransform(uint16_t CID) const;
61 short GetVertWidth(uint16_t CID) const;
62 void GetVertOrigin(uint16_t CID, short& vx, short& vy) const;
cpdf_cidfont.cpp 29 uint16_t cid; member in struct:__anon29080::CIDTransform
141 uint16_t cid = FPDFAPI_CIDFromCharCode(pEmbedMap, charcode);
143 if (codes.m_pMap && cid && cid < codes.m_Count)
144 return codes.m_pMap[cid];
196 bool IsMetricForCID(const uint32_t* pEntry, uint16_t CID) {
197 return pEntry[0] <= CID && pEntry[1] >= CID;
287 uint32_t CID = 0;
288 while (CID < 65536)
605 uint16_t cid = CIDFromCharCode(charcode); local
    [all...]
font_int.h 179 FX_WCHAR UnicodeFromCID(uint16_t CID);
fpdf_font_cid.cpp 760 FX_WCHAR CPDF_CID2UnicodeMap::UnicodeFromCID(uint16_t CID) {
762 return CID;
764 if (CID < m_EmbeddedCount) {
765 return m_pEmbeddedMap[CID];
  /external/pdfium/core/fpdfapi/render/
cpdf_charposlist.cpp 65 uint16_t CID = pCIDFont->CIDFromCharCode(CharCode);
71 pCIDFont->GetVertOrigin(CID, vx, vy);
76 const uint8_t* pTransform = pCIDFont->GetCIDTransform(CID);
  /external/freetype/include/freetype/internal/services/
svcid.h 5 /* The FreeType CID font services (specification). */
28 #define FT_SERVICE_ID_CID "CID"
41 FT_UInt *cid );
43 FT_DEFINE_SERVICE( CID )
  /external/pdfium/third_party/freetype/include/freetype/internal/services/
svcid.h 5 /* The FreeType CID font services (specification). */
28 #define FT_SERVICE_ID_CID "CID"
41 FT_UInt *cid );
43 FT_DEFINE_SERVICE( CID )
  /tools/test/connectivity/acts/tests/google/tel/lab/
TelLabNeighborCellTest.py 136 # CID: cell CID info.
137 CID = 'cid'
148 # discard this value. E.g. if in reported cell info, cid is reported as
263 bts.cell_id = params['cid']
279 bts.cell_id = params['cid']
291 bts.cell_id = params['cid']
331 self.CID, self.PCID, self.RAT, self.PSC, self.IS_REGISTERED
341 """Get the unique id for cell_info, based on cid, pcid, rat, psc an
    [all...]
  /external/pdfium/core/fpdfapi/page/
cpdf_textobject.cpp 40 uint16_t CID = pFont->AsCIDFont()->CIDFromCharCode(pInfo->m_CharCode);
45 pFont->AsCIDFont()->GetVertOrigin(CID, vx, vy);
179 uint16_t CID = pCIDFont->CIDFromCharCode(charcode);
180 return pCIDFont->GetVertWidth(CID) * fontsize;
227 uint16_t CID = pCIDFont->CIDFromCharCode(charcode);
230 pCIDFont->GetVertOrigin(CID, vx, vy);
243 charwidth = pCIDFont->GetVertWidth(CID) * fontsize / 1000;
  /external/freetype/include/freetype/
ftmoderr.h 148 FT_MODERRDEF( CID, 0x600, "CID module" )
  /external/pdfium/third_party/freetype/include/freetype/
ftmoderr.h 148 FT_MODERRDEF( CID, 0x600, "CID module" )
  /prebuilts/misc/darwin-x86_64/freetype/include/freetype2/
ftmoderr.h 148 FT_MODERRDEF( CID, 0x600, "CID module" )
  /device/linaro/bootloader/OpenPlatformPkg/Chips/TexasInstruments/Omap35xx/MMCHSDxe/
MMCHS.h 62 }CID;
164 CID CIDData;
  /device/linaro/bootloader/edk2/Omap35xxPkg/MMCHSDxe/
MMCHS.h 62 }CID;
164 CID CIDData;
  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCUnusedIVarsChecker.cpp 91 if (const ObjCCategoryImplDecl *CID = Cat->getImplementation())
92 Scan(M, CID);
  /cts/tests/tests/telephony/src/android/telephony/cts/
NeighboringCellInfoTest.java 31 private static final int CID = 0xffff;
  /external/clang/lib/AST/
Mangle.cpp 263 if (const ObjCCategoryImplDecl *CID = dyn_cast<ObjCCategoryImplDecl>(CD))
264 OS << '(' << *CID << ')';
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Sdio/Dxe/SDMediaDeviceDxe/
SDMediaDevice.h 95 CID CIDRegister;
  /device/linaro/bootloader/edk2/EmbeddedPkg/Universal/MmcDxe/
Mmc.h 106 } CID;
182 UINT8 PROGRAM_CID_CSD_DDR_SUPPORT; // Program CID/CSD in DDR mode support [130:130]
313 CID CIDData;
542 IN UINT32* Cid
  /frameworks/opt/telephony/src/java/android/telephony/
CellBroadcastMessage.java 161 int cid; local
162 int cidColumn = cursor.getColumnIndex(Telephony.CellBroadcasts.CID);
164 cid = cursor.getInt(cidColumn);
166 cid = -1;
169 SmsCbLocation location = new SmsCbLocation(plmn, lac, cid);
265 cv.put(Telephony.CellBroadcasts.CID, location.getCid());
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Include/
MMC.h 136 }CID;
  /device/linaro/bootloader/edk2/Vlv2DeviceRefCodePkg/ValleyView2Soc/SouthCluster/Include/IndustryStandard/
Mmc.h 148 } CID;
  /external/syslinux/efi32/include/efi/
efidevp.h 135 UINT32 CID;

Completed in 1928 milliseconds

1 2 3