/external/libvterm/include/ |
vterm.h | 123 VTerm *vterm_new_with_allocator(int rows, int cols, VTermAllocatorFunctions *funcs, void *allocdata);
|
/external/mesa3d/src/gallium/state_trackers/xorg/ |
xorg_driver.c | 241 crtc->funcs->set_mode_major(crtc, &crtc->mode, crtc->rotation, crtc->x, crtc->y); 737 crtc->funcs->gamma_set(crtc, ms->lut_r, ms->lut_g, ms->lut_b, 256); 903 crtc->funcs->set_mode_major(crtc, pScrn->currentMode, 935 crtc->funcs->shadow_destroy(crtc, crtc->rotatedPixmap, [all...] |
xorg_crtc.c | 140 crtc->funcs->gamma_set(crtc, crtc->gamma_red, crtc->gamma_green,
|
xorg_dri2.c | 355 (*gc->funcs->ChangeClip) (gc, CT_REGION, copy_clip, 0);
|
/external/pdfium/third_party/freetype/src/type1/ |
t1parse.c | 256 parser->root.funcs.done( &parser->root );
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
trace.py | 554 funcs = [f for f in gc.get_referrers(code)
559 if len(funcs) == 1:
560 dicts = [d for d in gc.get_referrers(funcs[0])
|
/external/freetype/src/psaux/ |
psobjs.c | 88 *(PS_Table_FuncsRec*)&table->funcs = ps_table_funcs; [all...] |
/external/nanopb-c/ |
pb_decode.c | 611 if (pCallback->funcs.decode == NULL) 623 if (!pCallback->funcs.decode(&substream, iter->pos, arg)) 644 return pCallback->funcs.decode(&substream, iter->pos, arg); [all...] |
/external/pdfium/third_party/freetype/src/psaux/ |
psobjs.c | 88 *(PS_Table_FuncsRec*)&table->funcs = ps_table_funcs; [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
trace.py | 546 funcs = [f for f in gc.get_referrers(code) 551 if len(funcs) == 1: 552 dicts = [d for d in gc.get_referrers(funcs[0])
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
trace.py | 546 funcs = [f for f in gc.get_referrers(code) 551 if len(funcs) == 1: 552 dicts = [d for d in gc.get_referrers(funcs[0])
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
trace.py | 546 funcs = [f for f in gc.get_referrers(code) 551 if len(funcs) == 1: 552 dicts = [d for d in gc.get_referrers(funcs[0])
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
trace.py | 546 funcs = [f for f in gc.get_referrers(code) 551 if len(funcs) == 1: 552 dicts = [d for d in gc.get_referrers(funcs[0])
|
/prebuilts/go/darwin-x86/src/cmd/link/internal/ld/ |
dwarf.go | 1003 var funcs []*Symbol [all...] |
/prebuilts/go/linux-x86/src/cmd/link/internal/ld/ |
dwarf.go | 1003 var funcs []*Symbol [all...] |
/external/deqp/modules/gles31/functional/ |
es31fDrawBuffersIndexedTests.cpp | 1233 const deUint32 funcs[] = local [all...] |
es31fProgramUniformTests.cpp | 114 static inline int getGLInt (const glw::Functions& funcs, const deUint32 name) 117 funcs.getIntegerv(name, &val); 811 // UNIFORMFUNC_VALUE: use pass-by-value versions of uniform assignment funcs, e.g. glProgramUniform1f(), where possible. If not given, use pass-by-pointer versions. 950 const glw::Functions& funcs = m_context.getRenderContext().getFunctions(); local 955 const int vertexTexUnitsSupported = getGLInt(funcs, GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS); 956 const int fragmentTexUnitsSupported = getGLInt(funcs, GL_MAX_TEXTURE_IMAGE_UNITS); 957 const int combinedTexUnitsSupported = getGLInt(funcs, GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS); [all...] |
/external/freetype/src/truetype/ |
ttgload.c | 195 face->root.internal->incremental_interface->funcs->get_glyph_metrics ) 206 error = face->root.internal->incremental_interface->funcs->get_glyph_metrics( 222 error = face->root.internal->incremental_interface->funcs->get_glyph_metrics( [all...] |
/external/pdfium/third_party/freetype/src/truetype/ |
ttgload.c | 194 face->root.internal->incremental_interface->funcs->get_glyph_metrics ) 205 error = face->root.internal->incremental_interface->funcs->get_glyph_metrics( 221 error = face->root.internal->incremental_interface->funcs->get_glyph_metrics( [all...] |
/prebuilts/go/darwin-x86/src/cmd/doc/ |
pkg.go | 144 docPkg.Funcs = append(docPkg.Funcs, typ.Funcs...) 387 pkg.funcSummary(pkg.doc.Funcs, false) 451 func (pkg *Package) funcSummary(funcs []*doc.Func, showConstructors bool) { 458 for _, f := range typ.Funcs { 464 for _, fun := range funcs { 492 for _, constructor := range typ.Funcs { 526 // findFuncs finds the doc.Funcs that describes the symbol. 527 func (pkg *Package) findFuncs(symbol string) (funcs []*doc.Func) [all...] |
/prebuilts/go/linux-x86/src/cmd/doc/ |
pkg.go | 144 docPkg.Funcs = append(docPkg.Funcs, typ.Funcs...) 387 pkg.funcSummary(pkg.doc.Funcs, false) 451 func (pkg *Package) funcSummary(funcs []*doc.Func, showConstructors bool) { 458 for _, f := range typ.Funcs { 464 for _, fun := range funcs { 492 for _, constructor := range typ.Funcs { 526 // findFuncs finds the doc.Funcs that describes the symbol. 527 func (pkg *Package) findFuncs(symbol string) (funcs []*doc.Func) [all...] |
/external/nanopb-c/tests/decode_unittests/ |
decode_unittests.c | 253 dest.data.funcs.decode = &callback_check;
|
/external/pdfium/third_party/freetype/src/cff/ |
cffgload.c | 669 face->root.internal->incremental_interface->funcs->get_glyph_data( 712 face->root.internal->incremental_interface->funcs->free_glyph_data( [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_file2k.py | 500 funcs = itertools.cycle((
504 for f in funcs:
|
/external/autotest/client/common_lib/ |
test.py | 735 def _validate_args(args, dargs, *funcs): 747 *funcs: Callables to be searched for acceptance of args and dargs. 749 error.AutotestError: if an arg won't be accepted by any of *funcs. 753 for func in funcs: [all...] |