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

1 2 3 4 5 6 7 8 91011>>

  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cid/
cidriver.c 5 /* CID driver interface (body). */
50 const char* result = face->cid.cid_font_name;
75 *afont_info = ((CID_Face)face)->cid.font_info;
93 (PS_HasGlyphNamesFunc) NULL, /* unsupported with CID fonts */
100 * CID INFO SERVICE
109 CID_FaceInfo cid = &face->cid; local
113 *registry = cid->registry;
116 *ordering = cid->ordering;
119 *supplement = cid->supplement
    [all...]
module.mk 2 # FreeType 2 CID module definition
20 $(ECHO_DRIVER)cid $(ECHO_DRIVER_DESC)Postscript CID-keyed fonts, no known extension$(ECHO_DRIVER_DONE)
cidobjs.c 5 /* CID objects manager (body). */
142 CID_FaceDict dict = face->cid.font_dicts + face->root.face_index;
198 CID_FaceInfo cid; local
205 cid = &face->cid;
206 info = &cid->font_info;
215 for ( n = 0; n < cid->num_dicts; n++ )
238 FT_FREE( cid->font_dicts );
239 cid->num_dicts = 0;
242 FT_FREE( cid->cid_font_name )
350 CID_FaceInfo cid = &face->cid; local
    [all...]
cidload.c 5 /* CID-keyed Type1 font loader (body). */
78 CID_FaceInfo cid = &face->cid; local
93 object = (FT_Byte*)cid;
97 object = (FT_Byte*)&cid->font_info;
105 object = (FT_Byte*)&cid->font_bbox;
113 if ( parser->num_dict < 0 || parser->num_dict >= cid->num_dicts )
121 dict = cid->font_dicts + parser->num_dict;
161 if ( parser->num_dict >= 0 && parser->num_dict < face->cid.num_dicts )
163 dict = face->cid.font_dicts + parser->num_dict
207 CID_FaceInfo cid = &face->cid; local
392 CID_FaceInfo cid = &face->cid; local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
CallIdentifier.java 75 * @param cid String to set
76 * @throws IllegalArgumentException if cid is null or is not a token,
79 public CallIdentifier(String cid) throws IllegalArgumentException {
80 setCallID(cid);
156 * @param cid Strimg to set
157 * @throws IllegalArgumentException if cid is null or is not a token or
160 public void setCallID(String cid) throws IllegalArgumentException {
161 if (cid == null)
163 int index = cid.indexOf('@');
165 localId = cid;
    [all...]
CallID.java 111 * @param cid String to set. This is the body part of the Call-Id
113 * @throws IllegalArgumentException if cid is null, not a token, or is
116 public void setCallId(String cid) throws ParseException {
118 callIdentifier = new CallIdentifier(cid);
120 throw new ParseException(cid, 0);
126 * @param cid CallIdentifier to set (localId@host).
128 public void setCallIdentifier(CallIdentifier cid) {
129 callIdentifier = cid;
InReplyTo.java 60 * @param cid CallIdentifier to set
62 public InReplyTo(CallIdentifier cid) {
64 callId = cid;
  /external/qemu/distrib/sdl-1.2.15/src/video/quartz/
CGS.h 62 extern CGSError CGSGetOnScreenWindowList (CGSConnectionID cid,
68 extern CGSError CGSGetScreenRectForWindow (CGSConnectionID cid,
72 extern CGWindowLevel CGSGetWindowLevel (CGSConnectionID cid,
81 extern CGSError CGSGetMouseEnabledFlags (CGSConnectionID cid, CGSWindowID wid, int *flags);
  /frameworks/base/core/java/com/android/internal/content/
PackageHelper.java 83 public static String createSdDir(long sizeBytes, String cid, String sdEncKey, int uid,
93 int rc = mountService.createSecureContainer(cid, sizeMb, "ext4", sdEncKey, uid,
96 Log.e(TAG, "Failed to create secure container " + cid);
99 String cachePath = mountService.getSecureContainerPath(cid);
100 if (localLOGV) Log.i(TAG, "Created secure container " + cid +
109 public static boolean resizeSdDir(long sizeBytes, String cid, String sdEncKey) {
114 int rc = mountService.resizeSecureContainer(cid, sizeMb, sdEncKey);
121 Log.e(TAG, "Failed to create secure container " + cid);
125 public static String mountSdDir(String cid, String key, int ownerUid) {
126 return mountSdDir(cid, key, ownerUid, true)
    [all...]
  /frameworks/base/telephony/java/android/telephony/
CellIdentityWcdma.java 57 * @param cid 28-bit UMTS Cell Identity
62 public CellIdentityWcdma (int mcc, int mnc, int lac, int cid, int psc) {
66 mCid = cid;
70 private CellIdentityWcdma(CellIdentityWcdma cid) {
71 mMcc = cid.mMcc;
72 mMnc = cid.mMnc;
73 mLac = cid.mLac;
74 mCid = cid.mCid;
75 mPsc = cid.mPsc;
104 * @return CID
    [all...]
CellIdentityGsm.java 54 * @param cid 16-bit GSM Cell Identity or 28-bit UMTS Cell Identity
58 public CellIdentityGsm (int mcc, int mnc, int lac, int cid) {
62 mCid = cid;
65 private CellIdentityGsm(CellIdentityGsm cid) {
66 mMcc = cid.mMcc;
67 mMnc = cid.mMnc;
68 mLac = cid.mLac;
69 mCid = cid.mCid;
98 * @return CID
  /external/chromium_org/third_party/openssl/openssl/crypto/x509v3/
pcy_data.c 86 const ASN1_OBJECT *cid, int crit)
90 if (!policy && !cid)
92 if (cid)
94 id = OBJ_dup(cid);
  /external/openssl/crypto/x509v3/
pcy_data.c 86 const ASN1_OBJECT *cid, int crit)
90 if (!policy && !cid)
92 if (cid)
94 id = OBJ_dup(cid);
  /external/chromium_org/third_party/openssl/openssl/crypto/ocsp/
ocsp_lib.c 107 OCSP_CERTID *cid = NULL; local
110 if (!(cid = OCSP_CERTID_new())) goto err;
112 alg = cid->hashAlgorithm;
124 if (!(ASN1_OCTET_STRING_set(cid->issuerNameHash, md, i))) goto err;
130 if (!(ASN1_OCTET_STRING_set(cid->issuerKeyHash, md, i))) goto err;
134 ASN1_INTEGER_free(cid->serialNumber);
135 if (!(cid->serialNumber = ASN1_INTEGER_dup(serialNumber))) goto err;
137 return cid;
141 if (cid) OCSP_CERTID_free(cid);
    [all...]
  /external/openssl/crypto/ocsp/
ocsp_lib.c 107 OCSP_CERTID *cid = NULL; local
110 if (!(cid = OCSP_CERTID_new())) goto err;
112 alg = cid->hashAlgorithm;
124 if (!(ASN1_OCTET_STRING_set(cid->issuerNameHash, md, i))) goto err;
130 if (!(ASN1_OCTET_STRING_set(cid->issuerKeyHash, md, i))) goto err;
134 ASN1_INTEGER_free(cid->serialNumber);
135 if (!(cid->serialNumber = ASN1_INTEGER_dup(serialNumber))) goto err;
137 return cid;
141 if (cid) OCSP_CERTID_free(cid);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_cmd.c 168 cmd->cid = swc->cid;
202 cmd->cid = swc->cid;
583 cmd->cid = swc->cid;
644 cmd->cid = swc->cid;
686 cmd->cid = swc->cid;
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_cmd.c 168 cmd->cid = swc->cid;
202 cmd->cid = swc->cid;
583 cmd->cid = swc->cid;
644 cmd->cid = swc->cid;
686 cmd->cid = swc->cid;
    [all...]
  /external/chromium_org/third_party/freetype/include/freetype/
ftcid.h 5 /* FreeType API for accessing CID font information (specification). */
40 /* CID Fonts */
43 /* CID-keyed font specific API. */
46 /* This section contains the declaration of CID-keyed font specific */
59 * "R/O/S") from a CID-keyed font.
79 * This function only works with CID faces, returning an error
98 * Retrieve the type of the input face, CID keyed or not. In
100 * successfully also for CID-keyed fonts in an SNFT wrapper.
114 * This function only works with CID faces and OpenType fonts,
131 * Retrieve the CID of the input glyph index
    [all...]
  /external/freetype/include/
ftcid.h 5 /* FreeType API for accessing CID font information (specification). */
40 /* CID Fonts */
43 /* CID-keyed font specific API. */
46 /* This section contains the declaration of CID-keyed font specific */
59 * "R/O/S") from a CID-keyed font.
79 * This function only works with CID faces, returning an error
98 * Retrieve the type of the input face, CID keyed or not. In
100 * successfully also for CID-keyed fonts in an SNFT wrapper.
114 * This function only works with CID faces and OpenType fonts,
131 * Retrieve the CID of the input glyph index
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/extensions/
Join.java 90 * @param cid String to set. This is the body part of the Call-Id
92 * @throws IllegalArgumentException if cid is null, not a token, or is
95 public void setCallId(String cid) {
96 callId = cid;
101 * @param cid CallIdentifier to set (localId@host).
103 public void setCallIdentifier(CallIdentifier cid) {
104 callIdentifier = cid;
Replaces.java 90 * @param cid String to set. This is the body part of the Call-Id
92 * @throws IllegalArgumentException if cid is null, not a token, or is
95 public void setCallId(String cid) {
96 callId = cid;
101 * @param cid CallIdentifier to set (localId@host).
103 public void setCallIdentifier(CallIdentifier cid) {
104 callIdentifier = cid;
  /external/pdfium/core/include/thirdparties/freetype/freetype/
ftcid.h 5 /* FreeType API for accessing CID font information (specification). */
40 /* CID Fonts */
43 /* CID-keyed font specific API. */
46 /* This section contains the declaration of CID-keyed font specific */
59 * "R/O/S") from a CID-keyed font.
79 * This function only works with CID faces, returning an error
98 * Retrieve the type of the input face, CID keyed or not. In
100 * successfully also for CID-keyed fonts in an SNFT wrapper.
114 * This function only works with CID faces and OpenType fonts,
131 * Retrieve the CID of the input glyph index
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
ftcid.h 5 /* FreeType API for accessing CID font information (specification). */
40 /* CID Fonts */
43 /* CID-keyed font specific API. */
46 /* This section contains the declaration of CID-keyed font specific */
59 * "R/O/S") from a CID-keyed font.
79 * This function only works with CID faces, returning an error
98 * Retrieve the type of the input face, CID keyed or not. In
100 * successfully also for CID-keyed fonts in an SNFT wrapper.
114 * This function only works with CID faces and OpenType fonts,
131 * Retrieve the CID of the input glyph index
    [all...]
  /frameworks/opt/telephony/src/java/android/telephony/
SmsCbLocation.java 62 public SmsCbLocation(String plmn, int lac, int cid) {
65 mCid = cid;
147 * @param cid the Cell ID to compare with
150 public boolean isInLocationArea(String plmn, int lac, int cid) {
159 if (mCid != -1 && mCid != cid) {
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
ftcid.c 5 /* FreeType API for accessing CID font information. */
45 FT_FACE_FIND_SERVICE( face, service, CID );
77 FT_FACE_FIND_SERVICE( face, service, CID );
93 FT_UInt *cid )
104 FT_FACE_FIND_SERVICE( face, service, CID );
110 if ( cid )
111 *cid = c;

Completed in 524 milliseconds

1 2 3 4 5 6 7 8 91011>>