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

1 2 3 4 5 6 7 8 91011

  /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/pdfium/third_party/freetype/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...]
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;
159 if ( parser->num_dict >= 0 && parser->num_dict < face->cid.num_dicts )
166 dict = face->cid.font_dicts + parser->num_dict
218 CID_FaceInfo cid = &face->cid; local
403 CID_FaceInfo cid = &face->cid; local
    [all...]
cidgload.c 5 /* CID-keyed Type1 Glyph Loader (body). */
45 CID_FaceInfo cid = &face->cid; local
78 fd_select = (FT_UInt)cid_get_offset( &p, (FT_Byte)cid->fd_bytes );
82 glyph_length = glyph_data.length - cid->fd_bytes;
85 ft_memcpy( charstring, glyph_data.pointer + cid->fd_bytes,
99 /* For ordinary fonts read the CID font dictionary index */
102 FT_UInt entry_len = cid->fd_bytes + cid->gd_bytes;
106 if ( FT_STREAM_SEEK( cid->data_offset + cid->cidmap_offset
    [all...]
  /frameworks/base/core/java/com/android/internal/content/
PackageHelper.java 84 public static String createSdDir(long sizeBytes, String cid, String sdEncKey, int uid,
94 int rc = mountService.createSecureContainer(cid, sizeMb, "ext4", sdEncKey, uid,
97 Log.e(TAG, "Failed to create secure container " + cid);
100 String cachePath = mountService.getSecureContainerPath(cid);
101 if (localLOGV) Log.i(TAG, "Created secure container " + cid +
110 public static boolean resizeSdDir(long sizeBytes, String cid, String sdEncKey) {
115 int rc = mountService.resizeSecureContainer(cid, sizeMb, sdEncKey);
122 Log.e(TAG, "Failed to create secure container " + cid);
126 public static String mountSdDir(String cid, String key, int ownerUid) {
127 return mountSdDir(cid, key, ownerUid, true)
    [all...]
  /frameworks/base/telephony/java/android/telephony/
CellIdentityWcdma.java 59 * @param cid 28-bit UMTS Cell Identity
64 public CellIdentityWcdma (int mcc, int mnc, int lac, int cid, int psc) {
68 mCid = cid;
72 private CellIdentityWcdma(CellIdentityWcdma cid) {
73 mMcc = cid.mMcc;
74 mMnc = cid.mMnc;
75 mLac = cid.mLac;
76 mCid = cid.mCid;
77 mPsc = cid.mPsc;
106 * @return CID
    [all...]
CellIdentityGsm.java 56 * @param cid 16-bit GSM Cell Identity or 28-bit UMTS Cell Identity
60 public CellIdentityGsm (int mcc, int mnc, int lac, int cid) {
64 mCid = cid;
67 private CellIdentityGsm(CellIdentityGsm cid) {
68 mMcc = cid.mMcc;
69 mMnc = cid.mMnc;
70 mLac = cid.mLac;
71 mCid = cid.mCid;
100 * @return CID
CellIdentityCdma.java 85 private CellIdentityCdma(CellIdentityCdma cid) {
86 mNetworkId = cid.mNetworkId;
87 mSystemId = cid.mSystemId;
88 mBasestationId = cid.mBasestationId;
89 mLongitude = cid.mLongitude;
90 mLatitude = cid.mLatitude;
CellIdentityLte.java 73 private CellIdentityLte(CellIdentityLte cid) {
74 mMcc = cid.mMcc;
75 mMnc = cid.mMnc;
76 mCi = cid.mCi;
77 mPci = cid.mPci;
78 mTac = cid.mTac;
  /external/boringssl/src/crypto/x509v3/
pcy_data.c 88 const ASN1_OBJECT *cid, int crit)
92 if (!policy && !cid)
94 if (cid)
96 id = OBJ_dup(cid);
  /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/freetype/include/
ftcid.h 5 /* FreeType API for accessing CID font information (specification). */
41 /* CID Fonts */
44 /* CID-keyed font specific API. */
47 /* This section contains the declaration of CID-keyed font specific */
60 * "R/O/S") from a CID-keyed font.
80 * This function only works with CID faces, returning an error
99 * Retrieve the type of the input face, CID keyed or not. In
101 * successfully also for CID-keyed fonts in an SNFT wrapper.
115 * This function only works with CID faces and OpenType fonts,
132 * 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/third_party/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...]
  /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/third_party/freetype/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;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmCellBroadcastHandler.java 114 int cid = -1; local
122 cid = cellLocation.getCid();
133 location = new SmsCbLocation(plmn, lac, cid);
185 if (!info.matchesLocation(plmn, lac, cid)) {
223 // location (PLMN, plus LAC and CID if these are part of the geographical scope).
238 * @param cid the current Cell ID
241 public boolean matchesLocation(String plmn, int lac, int cid) {
242 return mLocation.isInLocationArea(plmn, lac, cid);
  /system/bt/stack/include/
l2c_api.h 38 ** HCI type(1), len(2), handle(2), L2CAP len(2) and CID(2) => 9
87 /* special CID for Multi-AV for reporting congestion */
185 ** Local CID assigned to the connection
193 ** Local CID
200 ** Local CID
206 ** Local CID assigned to the connection
213 ** Local CID assigned to the connection
220 ** Local CID
227 ** Local CID
240 ** Local CID
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_cmaps/
fpdf_cmaps.cpp 124 FX_DWORD FPDFAPI_CharCodeFromCID(const FXCMAP_CMap* pMap, FX_WORD cid)
131 if (pCur[1] == cid) {
140 if (cid >= pCur[2] && cid <= pCur[2] + pCur[1] - pCur[0]) {
141 return pCur[0] + cid - pCur[2];
156 if (cid >= pCur[3] && cid <= pCur[3] + pCur[2] - pCur[1]) {
157 return (((FX_DWORD)pCur[0] << 16) | pCur[1]) + cid - pCur[3];
165 if (pCur[2] == cid) {
  /system/bt/stack/l2cap/
l2c_api.c 215 ** Returns the CID of the connection, or 0 if it failed to start
236 ** Returns the CID of the connection, or 0 if it failed to start
330 L2CAP_TRACE_API ("L2CAP - L2CA_conn_req(psm: 0x%04x) returned CID: 0x%04x", psm, p_ccb->local_cid);
332 /* Return the local CID as our handle */
411 L2CAP_TRACE_API ("L2CA_ErtmConnectRsp() CID: 0x%04x Result: %d Status: %d BDA: %08x%04x p_ertm_info:0x%08x",
490 BOOLEAN L2CA_ConfigReq (UINT16 cid, tL2CAP_CFG_INFO *p_cfg)
495 L2CAP_TRACE_API ("L2CA_ConfigReq() CID 0x%04x: fcr_present:%d (mode %d) mtu_present:%d (%d)",
496 cid, p_cfg->fcr_present, p_cfg->fcr.mode, p_cfg->mtu_present, p_cfg->mtu);
499 if ((p_ccb = l2cu_find_ccb_by_cid (NULL, cid)) == NULL)
501 L2CAP_TRACE_WARNING ("L2CAP - no CCB for L2CA_cfg_req, CID: %d", cid)
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/include/
svga3d_reg.h 1212 uint32 cid; member in struct:__anon16560
1217 uint32 cid; member in struct:__anon16561
1222 uint32 cid; member in struct:__anon16562
1313 uint32 cid; member in struct:__anon16570
1319 uint32 cid; member in struct:__anon16571
1537 uint32 cid; member in struct:__anon16582
1567 uint32 cid; member in struct:__anon16585
1573 uint32 cid; member in struct:__anon16586
1586 uint32 cid; member in struct:__anon16588
1601 uint32 cid; member in struct:__anon16590
1608 uint32 cid; member in struct:__anon16591
1615 uint32 cid; member in struct:__anon16592
1622 uint32 cid; member in struct:__anon16593
1628 uint32 cid; member in struct:__anon16594
1634 uint32 cid; member in struct:__anon16595
1641 uint32 cid; member in struct:__anon16596
1649 uint32 cid; member in struct:__anon16597
1656 uint32 cid; member in struct:__anon16598
1665 uint32 cid; member in struct:__anon16599
1672 uint32 cid; member in struct:__anon16600
1678 uint32 cid; member in struct:__anon16601
1685 uint32 cid; \/* Same parameters passed to END_QUERY *\/ member in struct:__anon16602
    [all...]

Completed in 770 milliseconds

1 2 3 4 5 6 7 8 91011