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

1 2 3 4

  /external/pdfium/testing/libfuzzer/
pdf_font_fuzzer.cc 20 FPDF_BOOL cid = data[1]; local
24 FPDFText_LoadFont(doc.get(), data, size, font_type, cid));
  /external/python/cpython3/Doc/includes/
email-alternative.py 39 <img src="cid:{asparagus_cid}" />
48 cid=asparagus_cid) variable
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_getcpuclockid/
1-1.c 33 clockid_t cid; local
35 rc = pthread_getcpuclockid(pthread_self(), &cid);
40 printf("clock id of new thread is %d\n", cid);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_getcpuclockid/speculative/
3-1.c 40 clockid_t cid; local
55 rc = pthread_getcpuclockid(new_th, &cid);
  /external/freetype/src/cid/
cidriver.c 5 * CID driver interface (body).
55 const char* result = face->cid.cid_font_name;
80 *afont_info = ((CID_Face)face)->cid.font_info;
98 /* unsupported with CID fonts */
108 * CID INFO SERVICE
117 CID_FaceInfo cid = &face->cid; local
121 *registry = cid->registry;
124 *ordering = cid->ordering;
127 *supplement = cid->supplement
    [all...]
cidobjs.c 5 * CID objects manager (body).
143 CID_FaceDict dict = face->cid.font_dicts + face->root.face_index;
200 CID_FaceInfo cid; local
207 cid = &face->cid;
208 info = &cid->font_info;
217 for ( n = 0; n < cid->num_dicts; n++ )
240 FT_FREE( cid->font_dicts );
241 cid->num_dicts = 0;
244 FT_FREE( cid->cid_font_name )
357 CID_FaceInfo cid = &face->cid; local
    [all...]
cidparse.h 5 * CID-keyed Type1 parser (specification).
62 * cid ::
81 CID_FaceInfo cid; member in struct:CID_Parser_
cidgload.c 5 * CID-keyed Type1 Glyph Loader (body).
49 CID_FaceInfo cid = &face->cid; local
84 fd_select = cid_get_offset( &p, (FT_Byte)cid->fd_bytes );
88 glyph_length = (FT_ULong)( glyph_data.length - cid->fd_bytes );
91 ft_memcpy( charstring, glyph_data.pointer + cid->fd_bytes,
105 /* For ordinary fonts read the CID font dictionary index */
108 FT_UInt entry_len = (FT_UInt)( cid->fd_bytes + cid->gd_bytes );
112 if ( FT_STREAM_SEEK( cid->data_offset + cid->cidmap_offset
    [all...]
cidload.c 5 * CID-keyed Type1 font loader (body).
79 CID_FaceInfo cid = &face->cid; local
96 object = (FT_Byte*)cid;
100 object = (FT_Byte*)&cid->font_info;
108 object = (FT_Byte*)&cid->font_bbox;
116 if ( parser->num_dict < 0 || parser->num_dict >= cid->num_dicts )
124 dict = cid->font_dicts + parser->num_dict;
167 if ( parser->num_dict >= 0 && parser->num_dict < face->cid.num_dicts )
174 dict = face->cid.font_dicts + parser->num_dict
239 CID_FaceInfo cid = &face->cid; local
513 CID_FaceInfo cid = &face->cid; local
772 CID_FaceInfo cid = &face->cid; local
    [all...]
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/printer/lexicalpreservation/transformations/ast/body/
ClassOrInterfaceDeclarationTransformationsTest.java 54 ClassOrInterfaceDeclaration cid = consider("class A {}"); local
55 cid.setName("B");
56 assertTransformedToString("class B {}", cid);
63 ClassOrInterfaceDeclaration cid = consider("class A {}"); local
64 cid.setInterface(true);
65 assertTransformedToString("interface A {}", cid);
70 ClassOrInterfaceDeclaration cid = consider("interface A {}"); local
71 cid.setInterface(false);
72 assertTransformedToString("class A {}", cid);
79 ClassOrInterfaceDeclaration cid = consider("class A {}") local
86 ClassOrInterfaceDeclaration cid = consider("class A<U> {}"); local
93 ClassOrInterfaceDeclaration cid = consider("class A<U> {}"); local
102 ClassOrInterfaceDeclaration cid = consider("class A {}"); local
109 ClassOrInterfaceDeclaration cid = consider("public class A extends Foo {}"); local
116 ClassOrInterfaceDeclaration cid = consider("public class A extends Foo {}"); local
125 ClassOrInterfaceDeclaration cid = consider("class A {}"); local
132 ClassOrInterfaceDeclaration cid = consider("public class A implements Foo {}"); local
139 ClassOrInterfaceDeclaration cid = consider("public class A implements Foo {}"); local
148 ClassOrInterfaceDeclaration cid = consider("class A {}"); local
155 ClassOrInterfaceDeclaration cid = consider("public class A {}"); local
162 ClassOrInterfaceDeclaration cid = consider("public class A {}"); local
171 ClassOrInterfaceDeclaration cid = consider("class A {}"); local
178 ClassOrInterfaceDeclaration cid = consider("public class A { int foo; }"); local
185 ClassOrInterfaceDeclaration cid = consider("public class A {float f;}"); local
    [all...]
EnumDeclarationTransformationsTest.java 46 EnumDeclaration cid = consider("enum A { E1, E2 }"); local
47 cid.setName("B");
48 assertTransformedToString("enum B { E1, E2 }", cid);
  /external/pdfium/core/fpdfapi/cmaps/
fpdf_cmaps.cpp 71 uint16_t cid; member in struct:SingleCmap
80 return found->cid;
86 uint16_t cid; member in struct:RangeCmap
95 return found->cid + loword - found->low;
102 uint32_t FPDFAPI_CharCodeFromCID(const FXCMAP_CMap* pMap, uint16_t cid) {
114 if (pCur[1] == cid)
124 if (cid >= pCur[2] && cid <= pCur[2] + pCur[1] - pCur[0])
125 return pCur[0] + cid - pCur[2];
  /external/ltp/testcases/network/nfs/nfs_stress/
nfs01_open_files.c 23 int cid, fork_number; local
49 if ((cid = fork())) {
50 if (cid == -1)
53 waitpid(cid, &status, 0);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_timedwait/
2-6.c 55 clockid_t cid; member in struct:__anon32314
149 ret = clock_gettime(data.cid, &ts);
341 ret = pthread_condattr_getclock(&ca, &(data.cid));
347 data.cid = CLOCK_REALTIME;
2-4.c 64 clockid_t cid; /* Clock id used by the cond var */ member in struct:__anon32312
169 ret = clock_gettime(td->cid, &ts);
451 ret = pthread_condattr_getclock(&ca, &(td->cid));
457 td->cid = CLOCK_REALTIME;
2-5.c 70 clockid_t cid; /* Clock used by cond c */ member in struct:_td
82 ret = clock_gettime(data.cid, &ts);
287 ret = pthread_condattr_getclock(&ca, &(data.cid));
292 data.cid = CLOCK_REALTIME;
2-7.c 65 clockid_t cid; /* Clock id used by the cond var */ member in struct:__anon32316
170 ret = clock_gettime(td->cid, &ts);
455 ret = pthread_condattr_getclock(&ca, &(td->cid));
461 td->cid = CLOCK_REALTIME;
  /external/mesa3d/src/util/
u_thread.h 83 clockid_t cid; local
85 pthread_getcpuclockid(thread, &cid);
86 clock_gettime(cid, &ts);
  /external/webrtc/webrtc/modules/video_render/android/
video_render_android_surface_view.cc 150 jmethodID cid = env->GetMethodID(_javaRenderClass, local
153 if (cid == NULL) {
164 cid,
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/classfile/
ConstantPool.java 157 final ConstantInvokeDynamic cid = (ConstantInvokeDynamic) c; local
158 str = cid.getBootstrapMethodAttrIndex()
159 + ":" + constantToString(cid.getNameAndTypeIndex(),
  /external/compiler-rt/lib/tsan/tests/unit/
tsan_clock_test.cc 329 unsigned cid = rand() % kClocks; local
336 printf("acquire thr%d <- clk%d\n", tid, cid);
337 thr0[tid]->acquire(sync0[cid]);
338 thr1[tid]->acquire(&cache, sync1[cid]);
342 printf("release thr%d -> clk%d\n", tid, cid);
343 thr0[tid]->release(sync0[cid]);
344 thr1[tid]->release(&cache, sync1[cid]);
348 printf("acq_rel thr%d <> clk%d\n", tid, cid);
349 thr0[tid]->acq_rel(sync0[cid]);
350 thr1[tid]->acq_rel(&cache, sync1[cid]);
    [all...]
  /external/f2fs-tools/tools/sg_write_buffer/include/
freebsd_nvme_ioctl.h 42 uint16_t cid; /* command identifier */ member in struct:nvme_command
92 uint16_t cid; /* command identifier */ member in struct:nvme_completion
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_wait/
2-2.c 92 clockid_t cid; /* Clock id used by the cond var */ member in struct:__anon32321
465 ret = pthread_condattr_getclock(&ca, &(td->cid));
471 td->cid = CLOCK_REALTIME;
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
INVOKEDYNAMIC.java 127 final ConstantInvokeDynamic cid = (ConstantInvokeDynamic) cp.getConstant(super.getIndex(), Const.CONSTANT_InvokeDynamic); local
128 return ((ConstantNameAndType) cp.getConstant(cid.getNameAndTypeIndex())).getName(cp);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_broadcast/
2-3.c 147 clockid_t cid; member in struct:testdata
176 ret = clock_gettime(td->cid, &ts);
395 ret = pthread_condattr_getclock(&ca, &td->cid);
399 td->cid = CLOCK_REALTIME;

Completed in 1022 milliseconds

1 2 3 4