diff --git a/3rd/picasso/include/picasso.h b/3rd/picasso/include/picasso.h index 642fe8dc7..c881363a5 100644 --- a/3rd/picasso/include/picasso.h +++ b/3rd/picasso/include/picasso.h @@ -2940,6 +2940,7 @@ PEXPORT void PICAPI ps_quad_curve_to(ps_context* ctx, const ps_point* cp, const */ PEXPORT void PICAPI ps_arc(ps_context* ctx, const ps_point* cp, float radius, float sangle, float eangle, ps_bool clockwise); +PEXPORT void PICAPI ps_arc_to(ps_context* ctx, float r, const ps_point* tp, const ps_point* ep); /** * \fn void ps_tangent_arc(ps_context* ctx, const ps_rect* rect, float sangle, float sweep) diff --git a/3rd/picasso/src/picasso_api.cpp b/3rd/picasso/src/picasso_api.cpp index cfab3ee5f..9a087cef9 100644 --- a/3rd/picasso/src/picasso_api.cpp +++ b/3rd/picasso/src/picasso_api.cpp @@ -18,6 +18,31 @@ namespace picasso { +/** + * Jim: picasso原始实现中,矩阵变化最后时刻才生效,后面的矩阵变换会影响前面已经生成的路径。 + * 现在改为加入path时,矩阵立即生效。 + */ +static inline void ps_add_path(ps_context* ctx, vertex_source& vs) { + conv_transform cvs(vs, ctx->state->world_matrix); + + if (picasso::_is_closed_path(ctx->path)) + ctx->path.concat_path(cvs, 0); + else + ctx->path.join_path(cvs, 0); +} + +static inline void ps_last_point(ps_context* ctx, ps_point* pt) { + ps_point p = {0, 0}; + + p.x = ctx->path.last_x(); + p.y = ctx->path.last_y(); + ps_viewport_to_world(ctx, &p); + + *pt = p; + + return; +} + static inline void _clip_path(context_state* state, const graphic_path& p, filling_rule r) { if (!state->clip.path.total_vertices()) { @@ -345,12 +370,19 @@ void PICAPI ps_stroke(ps_context* ctx) global_status = STATUS_INVALID_ARGUMENT; return; } + + ps_matrix m; + ps_get_matrix(ctx, &m); + ps_identity(ctx); ctx->canvas->p->render_shadow(ctx->state, ctx->path, false, true); ctx->canvas->p->render_stroke(ctx->state, ctx->raster, ctx->path); ctx->canvas->p->render_blur(ctx->state); ctx->path.free_all(); ctx->raster.reset(); + + ps_set_matrix(ctx, &m); + global_status = STATUS_SUCCEED; } @@ -366,11 +398,18 @@ void PICAPI ps_fill(ps_context* ctx) return; } + ps_matrix m; + ps_get_matrix(ctx, &m); + ps_identity(ctx); + ctx->canvas->p->render_shadow(ctx->state, ctx->path, true, false); ctx->canvas->p->render_fill(ctx->state, ctx->raster, ctx->path); ctx->canvas->p->render_blur(ctx->state); ctx->path.free_all(); ctx->raster.reset(); + + ps_set_matrix(ctx, &m); + global_status = STATUS_SUCCEED; } @@ -804,6 +843,8 @@ void PICAPI ps_new_sub_path(ps_context* ctx) void PICAPI ps_rectangle(ps_context* ctx, const ps_rect* pr) { + ps_rect r; + ps_point pt = {pr->x, pr->y}; if (!picasso::is_valid_system_device()) { global_status = STATUS_DEVICE_ERROR; return; @@ -814,6 +855,13 @@ void PICAPI ps_rectangle(ps_context* ctx, const ps_rect* pr) return; } + ps_world_to_viewport(ctx, &pt); + r.x = pt.x; + r.y = pt.y; + r.w = pr->w; + r.h = pr->h; + pr = &r; + ctx->path.set_shape(picasso::graphic_path::shape_rectangle); //It is because boder edge. ctx->path.move_to(FLT_TO_SCALAR(floor(pr->x)), FLT_TO_SCALAR(floor(pr->y))); ctx->path.hline_rel(FLT_TO_SCALAR(floor(pr->w))); @@ -843,10 +891,7 @@ void PICAPI ps_rounded_rect(ps_context* ctx, const ps_rect* r, float ltx, float rr.radius(FLT_TO_SCALAR(ltx), FLT_TO_SCALAR(lty), FLT_TO_SCALAR(rtx), FLT_TO_SCALAR(rty), FLT_TO_SCALAR(rbx), FLT_TO_SCALAR(rby), FLT_TO_SCALAR(lbx), FLT_TO_SCALAR(lby)); rr.normalize_radius(); - if (picasso::_is_closed_path(ctx->path)) - ctx->path.concat_path(rr, 0); - else - ctx->path.join_path(rr, 0); + ps_add_path(ctx, rr); global_status = STATUS_SUCCEED; } @@ -864,10 +909,7 @@ void PICAPI ps_ellipse(ps_context* ctx, const ps_rect* r) picasso::ellipse e(FLT_TO_SCALAR(floor(r->x)+r->w/2), FLT_TO_SCALAR(floor(r->y)+r->h/2), FLT_TO_SCALAR(r->w/2), FLT_TO_SCALAR(r->h/2)); - if (picasso::_is_closed_path(ctx->path)) - ctx->path.concat_path(e, 0); - else - ctx->path.join_path(e, 0); + ps_add_path(ctx, e); global_status = STATUS_SUCCEED; } @@ -900,6 +942,10 @@ void PICAPI ps_move_to(ps_context* ctx, const ps_point* pt) return; } + ps_point p = {pt->x, pt->y}; + ps_world_to_viewport(ctx, &p); + pt = &p; + ctx->path.move_to(FLT_TO_SCALAR(floor(pt->x)), FLT_TO_SCALAR(floor(pt->y))); global_status = STATUS_SUCCEED; } @@ -916,6 +962,10 @@ void PICAPI ps_line_to(ps_context* ctx, const ps_point* pt) return; } + ps_point p = {pt->x, pt->y}; + ps_world_to_viewport(ctx, &p); + pt = &p; + ctx->path.line_to(FLT_TO_SCALAR(floor(pt->x)), FLT_TO_SCALAR(floor(pt->y))); global_status = STATUS_SUCCEED; } @@ -933,14 +983,13 @@ void PICAPI ps_bezier_curve_to(ps_context* ctx, const ps_point* fcp, return; } - picasso::curve4 c(FLT_TO_SCALAR(floor(ctx->path.last_x())), FLT_TO_SCALAR(floor(ctx->path.last_y())), + ps_point lp; + ps_last_point(ctx, &lp); + picasso::curve4 c(FLT_TO_SCALAR(floor(lp.x)), FLT_TO_SCALAR(floor(lp.y)), FLT_TO_SCALAR(floor(fcp->x)), FLT_TO_SCALAR(floor(fcp->y)), FLT_TO_SCALAR(floor(scp->x)), FLT_TO_SCALAR(floor(scp->y)), FLT_TO_SCALAR(floor(ep->x)), FLT_TO_SCALAR(floor(ep->y))); - if (picasso::_is_closed_path(ctx->path)) - ctx->path.concat_path(c, 0); - else - ctx->path.join_path(c, 0); + ps_add_path(ctx, c); global_status = STATUS_SUCCEED; } @@ -956,14 +1005,33 @@ void PICAPI ps_quad_curve_to(ps_context* ctx, const ps_point* cp, const ps_point return; } - picasso::curve3 c(FLT_TO_SCALAR(floor(ctx->path.last_x())), FLT_TO_SCALAR(floor(ctx->path.last_y())), + ps_point lp; + ps_last_point(ctx, &lp); + picasso::curve3 c(FLT_TO_SCALAR(floor(lp.x)), FLT_TO_SCALAR(floor(lp.y)), FLT_TO_SCALAR(floor(cp->x)), FLT_TO_SCALAR(floor(cp->y)), FLT_TO_SCALAR(floor(ep->x)), FLT_TO_SCALAR(floor(ep->y))); + ps_add_path(ctx, c); + global_status = STATUS_SUCCEED; +} + +void PICAPI ps_arc_to(ps_context* ctx, float r, const ps_point* tp, const ps_point* ep) { + ps_path* path = ps_path_create(); + + ps_point startp = {tp->x, tp->y}; + ps_world_to_viewport(ctx, &startp); + + ps_point endp = {ep->x, ep->y}; + ps_world_to_viewport(ctx, &endp); + + ps_path_tangent_arc_to(path, r, &startp, &endp); + if (picasso::_is_closed_path(ctx->path)) - ctx->path.concat_path(c, 0); + ctx->path.concat_path(path->path, 0); else - ctx->path.join_path(c, 0); + ctx->path.join_path(path->path, 0); + ps_path_unref(path); + global_status = STATUS_SUCCEED; } @@ -983,10 +1051,7 @@ void PICAPI ps_arc(ps_context* ctx, const ps_point* cp, float r, picasso::arc a(FLT_TO_SCALAR(floor(cp->x)), FLT_TO_SCALAR(floor(cp->y)), FLT_TO_SCALAR(r), FLT_TO_SCALAR(r), FLT_TO_SCALAR(sa), FLT_TO_SCALAR(ea), (clockwise ? true : false)); - if (picasso::_is_closed_path(ctx->path)) - ctx->path.concat_path(a, 0); - else - ctx->path.join_path(a, 0); + ps_add_path(ctx, a); global_status = STATUS_SUCCEED; } @@ -1010,10 +1075,7 @@ void PICAPI ps_tangent_arc(ps_context* ctx, const ps_rect* r, float sa, float sw picasso::bezier_arc ba(Floor(cx), Floor(cy), xr, yr, FLT_TO_SCALAR(sa), FLT_TO_SCALAR(sw)); picasso::conv_curve cr(ba); - if (picasso::_is_closed_path(ctx->path)) - ctx->path.concat_path(cr, 0); - else - ctx->path.join_path(cr, 0); + ps_add_path(ctx, cr); global_status = STATUS_SUCCEED; } diff --git a/3rd/picasso/tags b/3rd/picasso/tags new file mode 100644 index 000000000..14af146ab --- /dev/null +++ b/3rd/picasso/tags @@ -0,0 +1,24174 @@ +!_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/ +!_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/ +!_TAG_PROGRAM_AUTHOR Darren Hiebert /dhiebert@users.sourceforge.net/ +!_TAG_PROGRAM_NAME Exuberant Ctags // +!_TAG_PROGRAM_URL http://ctags.sourceforge.net /official site/ +!_TAG_PROGRAM_VERSION 5.8 // +A src/include/color_type.h /^struct order_abgr { enum { A=0, B=1, G=2, R=3, rgba_tag }; }; \/\/ order_abgr$/;" e enum:picasso::order_abgr::__anon180 +A src/include/color_type.h /^struct order_argb { enum { A=0, R=1, G=2, B=3, rgba_tag }; }; \/\/ order_argb$/;" e enum:picasso::order_argb::__anon179 +A src/include/color_type.h /^struct order_bgra { enum { B=0, G=1, R=2, A=3, rgba_tag }; }; \/\/ order_bgra$/;" e enum:picasso::order_bgra::__anon181 +A src/include/color_type.h /^struct order_rgba { enum { R=0, G=1, B=2, A=3, rgba_tag }; }; \/\/ order_rgba$/;" e enum:picasso::order_rgba::__anon178 +ABOVE src/picasso_gpc.cpp /^#define ABOVE /;" d file: +ABS src/picasso_global.h /^#define ABS(/;" d +AFM_FontInfo android/freetype/include/freetype/internal/t1types.h /^ } AFM_FontInfoRec, *AFM_FontInfo;$/;" t typeref:struct:AFM_FontInfoRec_ +AFM_FontInfo include/freetype/internal/t1types.h /^ } AFM_FontInfoRec, *AFM_FontInfo;$/;" t typeref:struct:AFM_FontInfoRec_ +AFM_FontInfoRec android/freetype/include/freetype/internal/t1types.h /^ } AFM_FontInfoRec, *AFM_FontInfo;$/;" t typeref:struct:AFM_FontInfoRec_ +AFM_FontInfoRec include/freetype/internal/t1types.h /^ } AFM_FontInfoRec, *AFM_FontInfo;$/;" t typeref:struct:AFM_FontInfoRec_ +AFM_FontInfoRec_ android/freetype/include/freetype/internal/t1types.h /^ typedef struct AFM_FontInfoRec_$/;" s +AFM_FontInfoRec_ include/freetype/internal/t1types.h /^ typedef struct AFM_FontInfoRec_$/;" s +AFM_GETC android/freetype/src/psaux/afmparse.c /^#define AFM_GETC(/;" d file: +AFM_IS_EOF android/freetype/src/psaux/afmparse.c /^#define AFM_IS_EOF(/;" d file: +AFM_IS_NEWLINE android/freetype/src/psaux/afmparse.c /^#define AFM_IS_NEWLINE(/;" d file: +AFM_IS_SEP android/freetype/src/psaux/afmparse.c /^#define AFM_IS_SEP(/;" d file: +AFM_IS_SPACE android/freetype/src/psaux/afmparse.c /^#define AFM_IS_SPACE(/;" d file: +AFM_KernPair android/freetype/include/freetype/internal/t1types.h /^ } AFM_KernPairRec, *AFM_KernPair;$/;" t typeref:struct:AFM_KernPairRec_ +AFM_KernPair include/freetype/internal/t1types.h /^ } AFM_KernPairRec, *AFM_KernPair;$/;" t typeref:struct:AFM_KernPairRec_ +AFM_KernPairRec android/freetype/include/freetype/internal/t1types.h /^ } AFM_KernPairRec, *AFM_KernPair;$/;" t typeref:struct:AFM_KernPairRec_ +AFM_KernPairRec include/freetype/internal/t1types.h /^ } AFM_KernPairRec, *AFM_KernPair;$/;" t typeref:struct:AFM_KernPairRec_ +AFM_KernPairRec_ android/freetype/include/freetype/internal/t1types.h /^ typedef struct AFM_KernPairRec_$/;" s +AFM_KernPairRec_ include/freetype/internal/t1types.h /^ typedef struct AFM_KernPairRec_$/;" s +AFM_MAX_ARGUMENTS android/freetype/src/psaux/afmparse.h /^#define AFM_MAX_ARGUMENTS /;" d +AFM_Parser android/freetype/include/freetype/internal/psaux.h /^ typedef struct AFM_ParserRec_* AFM_Parser;$/;" t typeref:struct:AFM_ParserRec_ +AFM_Parser include/freetype/internal/psaux.h /^ typedef struct AFM_ParserRec_* AFM_Parser;$/;" t typeref:struct:AFM_ParserRec_ +AFM_ParserRec android/freetype/include/freetype/internal/psaux.h /^ } AFM_ParserRec;$/;" t typeref:struct:AFM_ParserRec_ +AFM_ParserRec include/freetype/internal/psaux.h /^ } AFM_ParserRec;$/;" t typeref:struct:AFM_ParserRec_ +AFM_ParserRec_ android/freetype/include/freetype/internal/psaux.h /^ typedef struct AFM_ParserRec_$/;" s +AFM_ParserRec_ include/freetype/internal/psaux.h /^ typedef struct AFM_ParserRec_$/;" s +AFM_Parser_FuncsRec android/freetype/include/freetype/internal/psaux.h /^ } AFM_Parser_FuncsRec;$/;" t typeref:struct:AFM_Parser_FuncsRec_ +AFM_Parser_FuncsRec include/freetype/internal/psaux.h /^ } AFM_Parser_FuncsRec;$/;" t typeref:struct:AFM_Parser_FuncsRec_ +AFM_Parser_FuncsRec_ android/freetype/include/freetype/internal/psaux.h /^ typedef struct AFM_Parser_FuncsRec_$/;" s +AFM_Parser_FuncsRec_ include/freetype/internal/psaux.h /^ typedef struct AFM_Parser_FuncsRec_$/;" s +AFM_STATUS_EOC android/freetype/src/psaux/afmparse.c /^#define AFM_STATUS_EOC(/;" d file: +AFM_STATUS_EOF android/freetype/src/psaux/afmparse.c /^#define AFM_STATUS_EOF(/;" d file: +AFM_STATUS_EOL android/freetype/src/psaux/afmparse.c /^#define AFM_STATUS_EOL(/;" d file: +AFM_STREAM_KEY_BEGIN android/freetype/src/psaux/afmparse.c /^#define AFM_STREAM_KEY_BEGIN(/;" d file: +AFM_STREAM_KEY_LEN android/freetype/src/psaux/afmparse.c /^#define AFM_STREAM_KEY_LEN(/;" d file: +AFM_STREAM_STATUS_EOC android/freetype/src/psaux/afmparse.c /^ AFM_STREAM_STATUS_EOC,$/;" e enum:__anon30 file: +AFM_STREAM_STATUS_EOF android/freetype/src/psaux/afmparse.c /^ AFM_STREAM_STATUS_EOF$/;" e enum:__anon30 file: +AFM_STREAM_STATUS_EOL android/freetype/src/psaux/afmparse.c /^ AFM_STREAM_STATUS_EOL,$/;" e enum:__anon30 file: +AFM_STREAM_STATUS_NORMAL android/freetype/src/psaux/afmparse.c /^ AFM_STREAM_STATUS_NORMAL,$/;" e enum:__anon30 file: +AFM_Stream android/freetype/include/freetype/internal/psaux.h /^ typedef struct AFM_StreamRec_* AFM_Stream;$/;" t typeref:struct:AFM_StreamRec_ +AFM_Stream include/freetype/internal/psaux.h /^ typedef struct AFM_StreamRec_* AFM_Stream;$/;" t typeref:struct:AFM_StreamRec_ +AFM_StreamRec android/freetype/src/psaux/afmparse.c /^ } AFM_StreamRec;$/;" t typeref:struct:AFM_StreamRec_ file: +AFM_StreamRec_ android/freetype/src/psaux/afmparse.c /^ typedef struct AFM_StreamRec_$/;" s file: +AFM_TOKEN_ASCENDER android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_ASCENDER,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_AXISLABEL android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_AXISLABEL,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_AXISTYPE android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_AXISTYPE,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_B android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_B,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_BLENDAXISTYPES android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_BLENDAXISTYPES,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_BLENDDESIGNMAP android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_BLENDDESIGNMAP,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_BLENDDESIGNPOSITIONS android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_BLENDDESIGNPOSITIONS,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_C android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_C,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_CAPHEIGHT android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_CAPHEIGHT,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_CC android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_CC,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_CH android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_CH,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_CHARACTERS android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_CHARACTERS,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_CHARACTERSET android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_CHARACTERSET,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_CHARWIDTH android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_CHARWIDTH,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_DESCENDER android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_DESCENDER,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_ENCODINGSCHEME android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_ENCODINGSCHEME,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_ENDAXIS android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_ENDAXIS,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_ENDCHARMETRICS android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_ENDCHARMETRICS,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_ENDCOMPOSITES android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_ENDCOMPOSITES,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_ENDDIRECTION android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_ENDDIRECTION,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_ENDFONTMETRICS android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_ENDFONTMETRICS,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_ENDKERNDATA android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_ENDKERNDATA,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_ENDKERNPAIRS android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_ENDKERNPAIRS,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_ENDTRACKKERN android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_ENDTRACKKERN,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_ESCCHAR android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_ESCCHAR,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_FAMILYNAME android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_FAMILYNAME,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_FONTBBOX android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_FONTBBOX,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_FONTNAME android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_FONTNAME,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_FULLNAME android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_FULLNAME,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_ISBASEFONT android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_ISBASEFONT,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_ISCIDFONT android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_ISCIDFONT,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_ISFIXEDPITCH android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_ISFIXEDPITCH,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_ISFIXEDV android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_ISFIXEDV,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_ITALICANGLE android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_ITALICANGLE,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_KP android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_KP,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_KPH android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_KPH,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_KPX android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_KPX,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_KPY android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_KPY,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_L android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_L,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_MAPPINGSCHEME android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_MAPPINGSCHEME,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_METRICSSETS android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_METRICSSETS,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_N android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_N,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_NOTICE android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_NOTICE,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_PCC android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_PCC,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_STARTAXIS android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_STARTAXIS,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_STARTCHARMETRICS android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_STARTCHARMETRICS,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_STARTCOMPOSITES android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_STARTCOMPOSITES,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_STARTDIRECTION android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_STARTDIRECTION,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_STARTFONTMETRICS android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_STARTFONTMETRICS,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_STARTKERNDATA android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_STARTKERNDATA,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_STARTKERNPAIRS android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_STARTKERNPAIRS,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_STARTKERNPAIRS0 android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_STARTKERNPAIRS0,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_STARTKERNPAIRS1 android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_STARTKERNPAIRS1,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_STARTTRACKKERN android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_STARTTRACKKERN,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_STDHW android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_STDHW,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_STDVW android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_STDVW,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_TRACKKERN android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_TRACKKERN,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_UNDERLINEPOSITION android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_UNDERLINEPOSITION,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_UNDERLINETHICKNESS android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_UNDERLINETHICKNESS,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_UNKNOWN android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_UNKNOWN$/;" e enum:AFM_Token_ file: +AFM_TOKEN_VERSION android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_VERSION,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_VV android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_VV,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_VVECTOR android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_VVECTOR,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_W android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_W,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_W0 android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_W0,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_W0X android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_W0X,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_W0Y android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_W0Y,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_W1 android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_W1,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_W1X android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_W1X,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_W1Y android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_W1Y,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_WEIGHT android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_WEIGHT,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_WEIGHTVECTOR android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_WEIGHTVECTOR,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_WX android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_WX,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_WY android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_WY,$/;" e enum:AFM_Token_ file: +AFM_TOKEN_XHEIGHT android/freetype/src/psaux/afmparse.c /^ AFM_TOKEN_XHEIGHT,$/;" e enum:AFM_Token_ file: +AFM_Token android/freetype/src/psaux/afmparse.c /^ } AFM_Token;$/;" t typeref:enum:AFM_Token_ file: +AFM_Token_ android/freetype/src/psaux/afmparse.c /^ typedef enum AFM_Token_$/;" g file: +AFM_TrackKern android/freetype/include/freetype/internal/t1types.h /^ } AFM_TrackKernRec, *AFM_TrackKern;$/;" t typeref:struct:AFM_TrackKernRec_ +AFM_TrackKern include/freetype/internal/t1types.h /^ } AFM_TrackKernRec, *AFM_TrackKern;$/;" t typeref:struct:AFM_TrackKernRec_ +AFM_TrackKernRec android/freetype/include/freetype/internal/t1types.h /^ } AFM_TrackKernRec, *AFM_TrackKern;$/;" t typeref:struct:AFM_TrackKernRec_ +AFM_TrackKernRec include/freetype/internal/t1types.h /^ } AFM_TrackKernRec, *AFM_TrackKern;$/;" t typeref:struct:AFM_TrackKernRec_ +AFM_TrackKernRec_ android/freetype/include/freetype/internal/t1types.h /^ typedef struct AFM_TrackKernRec_$/;" s +AFM_TrackKernRec_ include/freetype/internal/t1types.h /^ typedef struct AFM_TrackKernRec_$/;" s +AFM_VALUE_TYPE_BOOL android/freetype/src/psaux/afmparse.h /^ AFM_VALUE_TYPE_BOOL,$/;" e enum:AFM_ValueType_ +AFM_VALUE_TYPE_FIXED android/freetype/src/psaux/afmparse.h /^ AFM_VALUE_TYPE_FIXED, \/* real number *\/$/;" e enum:AFM_ValueType_ +AFM_VALUE_TYPE_INDEX android/freetype/src/psaux/afmparse.h /^ AFM_VALUE_TYPE_INDEX \/* glyph index *\/$/;" e enum:AFM_ValueType_ +AFM_VALUE_TYPE_INTEGER android/freetype/src/psaux/afmparse.h /^ AFM_VALUE_TYPE_INTEGER,$/;" e enum:AFM_ValueType_ +AFM_VALUE_TYPE_NAME android/freetype/src/psaux/afmparse.h /^ AFM_VALUE_TYPE_NAME,$/;" e enum:AFM_ValueType_ +AFM_VALUE_TYPE_STRING android/freetype/src/psaux/afmparse.h /^ AFM_VALUE_TYPE_STRING,$/;" e enum:AFM_ValueType_ +AFM_Value android/freetype/src/psaux/afmparse.h /^ } AFM_ValueRec, *AFM_Value;$/;" t typeref:struct:AFM_ValueRec_ +AFM_ValueRec android/freetype/src/psaux/afmparse.h /^ } AFM_ValueRec, *AFM_Value;$/;" t typeref:struct:AFM_ValueRec_ +AFM_ValueRec_ android/freetype/src/psaux/afmparse.h /^ typedef struct AFM_ValueRec_$/;" s +AFM_ValueType_ android/freetype/src/psaux/afmparse.h /^ enum AFM_ValueType_$/;" g +AF_ANGLE_2PI android/freetype/src/autofit/aftypes.h /^#define AF_ANGLE_2PI /;" d +AF_ANGLE_DIFF android/freetype/src/autofit/aftypes.h /^#define AF_ANGLE_DIFF(/;" d +AF_ANGLE_PI android/freetype/src/autofit/aftypes.h /^#define AF_ANGLE_PI /;" d +AF_ANGLE_PI2 android/freetype/src/autofit/aftypes.h /^#define AF_ANGLE_PI2 /;" d +AF_ANGLE_PI4 android/freetype/src/autofit/aftypes.h /^#define AF_ANGLE_PI4 /;" d +AF_ATAN_BITS android/freetype/src/autofit/afangles.c /^#define AF_ATAN_BITS /;" d file: +AF_Angle android/freetype/src/autofit/aftypes.h /^ typedef FT_Int AF_Angle;$/;" t +AF_AxisHints android/freetype/src/autofit/afhints.h /^ } AF_AxisHintsRec, *AF_AxisHints;$/;" t typeref:struct:AF_AxisHintsRec_ +AF_AxisHintsRec android/freetype/src/autofit/afhints.h /^ } AF_AxisHintsRec, *AF_AxisHints;$/;" t typeref:struct:AF_AxisHintsRec_ +AF_AxisHintsRec_ android/freetype/src/autofit/afhints.h /^ typedef struct AF_AxisHintsRec_$/;" s +AF_CONFIG_OPTION_CJK android/freetype/include/freetype/config/ftoption.h /^#define AF_CONFIG_OPTION_CJK$/;" d +AF_CONFIG_OPTION_CJK include/freetype/config/ftoption.h /^#define AF_CONFIG_OPTION_CJK$/;" d +AF_CONFIG_OPTION_INDIC android/freetype/include/freetype/config/ftoption.h /^#define AF_CONFIG_OPTION_INDIC$/;" d +AF_CONFIG_OPTION_INDIC include/freetype/config/ftoption.h /^#define AF_CONFIG_OPTION_INDIC$/;" d +AF_DIMENSION_HORZ android/freetype/src/autofit/afhints.h /^ AF_DIMENSION_HORZ = 0, \/* x coordinates, *\/$/;" e enum:AF_Dimension_ +AF_DIMENSION_MAX android/freetype/src/autofit/afhints.h /^ AF_DIMENSION_MAX \/* do not remove *\/$/;" e enum:AF_Dimension_ +AF_DIMENSION_VERT android/freetype/src/autofit/afhints.h /^ AF_DIMENSION_VERT = 1, \/* y coordinates, *\/$/;" e enum:AF_Dimension_ +AF_DIR_DOWN android/freetype/src/autofit/afhints.h /^ AF_DIR_DOWN = -2$/;" e enum:AF_Direction_ +AF_DIR_LEFT android/freetype/src/autofit/afhints.h /^ AF_DIR_LEFT = -1,$/;" e enum:AF_Direction_ +AF_DIR_NONE android/freetype/src/autofit/afhints.h /^ AF_DIR_NONE = 4,$/;" e enum:AF_Direction_ +AF_DIR_RIGHT android/freetype/src/autofit/afhints.h /^ AF_DIR_RIGHT = 1,$/;" e enum:AF_Direction_ +AF_DIR_UP android/freetype/src/autofit/afhints.h /^ AF_DIR_UP = 2,$/;" e enum:AF_Direction_ +AF_Dimension android/freetype/src/autofit/afhints.h /^ } AF_Dimension;$/;" t typeref:enum:AF_Dimension_ +AF_Dimension_ android/freetype/src/autofit/afhints.h /^ typedef enum AF_Dimension_$/;" g +AF_Direction android/freetype/src/autofit/afhints.h /^ } AF_Direction;$/;" t typeref:enum:AF_Direction_ +AF_Direction_ android/freetype/src/autofit/afhints.h /^ typedef enum AF_Direction_$/;" g +AF_EDGE_DONE android/freetype/src/autofit/afhints.h /^ AF_EDGE_DONE = 1 << 2$/;" e enum:AF_Edge_Flags_ +AF_EDGE_NORMAL android/freetype/src/autofit/afhints.h /^ AF_EDGE_NORMAL = 0,$/;" e enum:AF_Edge_Flags_ +AF_EDGE_ROUND android/freetype/src/autofit/afhints.h /^ AF_EDGE_ROUND = 1 << 0,$/;" e enum:AF_Edge_Flags_ +AF_EDGE_SERIF android/freetype/src/autofit/afhints.h /^ AF_EDGE_SERIF = 1 << 1,$/;" e enum:AF_Edge_Flags_ +AF_Edge android/freetype/src/autofit/afhints.h /^ typedef struct AF_EdgeRec_* AF_Edge;$/;" t typeref:struct:AF_EdgeRec_ +AF_EdgeRec android/freetype/src/autofit/afhints.h /^ } AF_EdgeRec;$/;" t typeref:struct:AF_EdgeRec_ +AF_EdgeRec_ android/freetype/src/autofit/afhints.h /^ typedef struct AF_EdgeRec_$/;" s +AF_Edge_Flags android/freetype/src/autofit/afhints.h /^ } AF_Edge_Flags;$/;" t typeref:enum:AF_Edge_Flags_ +AF_Edge_Flags_ android/freetype/src/autofit/afhints.h /^ typedef enum AF_Edge_Flags_$/;" g +AF_FLAG_CONIC android/freetype/src/autofit/afhints.h /^ AF_FLAG_CONIC = 1 << 0,$/;" e enum:AF_Flags_ +AF_FLAG_CONTROL android/freetype/src/autofit/afhints.h /^ AF_FLAG_CONTROL = AF_FLAG_CONIC | AF_FLAG_CUBIC,$/;" e enum:AF_Flags_ +AF_FLAG_CUBIC android/freetype/src/autofit/afhints.h /^ AF_FLAG_CUBIC = 1 << 1,$/;" e enum:AF_Flags_ +AF_FLAG_EXTREMA_X android/freetype/src/autofit/afhints.h /^ AF_FLAG_EXTREMA_X = 1 << 2,$/;" e enum:AF_Flags_ +AF_FLAG_EXTREMA_Y android/freetype/src/autofit/afhints.h /^ AF_FLAG_EXTREMA_Y = 1 << 3,$/;" e enum:AF_Flags_ +AF_FLAG_INFLECTION android/freetype/src/autofit/afhints.h /^ AF_FLAG_INFLECTION = 1 << 9$/;" e enum:AF_Flags_ +AF_FLAG_NONE android/freetype/src/autofit/afhints.h /^ AF_FLAG_NONE = 0,$/;" e enum:AF_Flags_ +AF_FLAG_ROUND_X android/freetype/src/autofit/afhints.h /^ AF_FLAG_ROUND_X = 1 << 4,$/;" e enum:AF_Flags_ +AF_FLAG_ROUND_Y android/freetype/src/autofit/afhints.h /^ AF_FLAG_ROUND_Y = 1 << 5,$/;" e enum:AF_Flags_ +AF_FLAG_TOUCH_X android/freetype/src/autofit/afhints.h /^ AF_FLAG_TOUCH_X = 1 << 6,$/;" e enum:AF_Flags_ +AF_FLAG_TOUCH_Y android/freetype/src/autofit/afhints.h /^ AF_FLAG_TOUCH_Y = 1 << 7,$/;" e enum:AF_Flags_ +AF_FLAG_WEAK_INTERPOLATION android/freetype/src/autofit/afhints.h /^ AF_FLAG_WEAK_INTERPOLATION = 1 << 8,$/;" e enum:AF_Flags_ +AF_FaceGlobals android/freetype/src/autofit/afglobal.h /^ typedef struct AF_FaceGlobalsRec_* AF_FaceGlobals;$/;" t typeref:struct:AF_FaceGlobalsRec_ +AF_FaceGlobalsRec android/freetype/src/autofit/afglobal.c /^ } AF_FaceGlobalsRec;$/;" t typeref:struct:AF_FaceGlobalsRec_ file: +AF_FaceGlobalsRec_ android/freetype/src/autofit/afglobal.c /^ typedef struct AF_FaceGlobalsRec_$/;" s file: +AF_Flags android/freetype/src/autofit/afhints.h /^ } AF_Flags;$/;" t typeref:enum:AF_Flags_ +AF_Flags_ android/freetype/src/autofit/afhints.h /^ typedef enum AF_Flags_$/;" g +AF_GlyphHints android/freetype/src/autofit/aftypes.h /^ typedef struct AF_GlyphHintsRec_* AF_GlyphHints;$/;" t typeref:struct:AF_GlyphHintsRec_ +AF_GlyphHintsRec android/freetype/src/autofit/afhints.h /^ } AF_GlyphHintsRec;$/;" t typeref:struct:AF_GlyphHintsRec_ +AF_GlyphHintsRec_ android/freetype/src/autofit/afhints.h /^ typedef struct AF_GlyphHintsRec_$/;" s +AF_HINTS_DO_ADVANCE android/freetype/src/autofit/afhints.h /^#define AF_HINTS_DO_ADVANCE(/;" d +AF_HINTS_DO_BLUES android/freetype/src/autofit/afhints.h /^#define AF_HINTS_DO_BLUES(/;" d +AF_HINTS_DO_HORIZONTAL android/freetype/src/autofit/afhints.h /^#define AF_HINTS_DO_HORIZONTAL(/;" d +AF_HINTS_DO_VERTICAL android/freetype/src/autofit/afhints.h /^#define AF_HINTS_DO_VERTICAL(/;" d +AF_HINTS_TEST_OTHER android/freetype/src/autofit/afhints.h /^#define AF_HINTS_TEST_OTHER(/;" d +AF_HINTS_TEST_SCALER android/freetype/src/autofit/afhints.h /^#define AF_HINTS_TEST_SCALER(/;" d +AF_INDEX_NUM android/freetype/src/autofit/afhints.c /^#define AF_INDEX_NUM(/;" d file: +AF_LATIN_BLUE_ACTIVE android/freetype/src/autofit/aflatin.h /^ AF_LATIN_BLUE_ACTIVE = 1 << 0,$/;" e enum:__anon27 +AF_LATIN_BLUE_ADJUSTMENT android/freetype/src/autofit/aflatin.h /^ AF_LATIN_BLUE_ADJUSTMENT = 1 << 2, \/* used for scale adjustment *\/$/;" e enum:__anon27 +AF_LATIN_BLUE_CAPITAL_BOTTOM android/freetype/src/autofit/aflatin.h /^ AF_LATIN_BLUE_CAPITAL_BOTTOM,$/;" e enum:__anon26 +AF_LATIN_BLUE_CAPITAL_TOP android/freetype/src/autofit/aflatin.h /^ AF_LATIN_BLUE_CAPITAL_TOP,$/;" e enum:__anon26 +AF_LATIN_BLUE_FLAG_MAX android/freetype/src/autofit/aflatin.h /^ AF_LATIN_BLUE_FLAG_MAX$/;" e enum:__anon27 +AF_LATIN_BLUE_MAX android/freetype/src/autofit/aflatin.h /^ AF_LATIN_BLUE_MAX$/;" e enum:__anon26 +AF_LATIN_BLUE_SMALL_BOTTOM android/freetype/src/autofit/aflatin.h /^ AF_LATIN_BLUE_SMALL_BOTTOM,$/;" e enum:__anon26 +AF_LATIN_BLUE_SMALL_F_TOP android/freetype/src/autofit/aflatin.h /^ AF_LATIN_BLUE_SMALL_F_TOP,$/;" e enum:__anon26 +AF_LATIN_BLUE_SMALL_MINOR android/freetype/src/autofit/aflatin.h /^ AF_LATIN_BLUE_SMALL_MINOR,$/;" e enum:__anon26 +AF_LATIN_BLUE_SMALL_TOP android/freetype/src/autofit/aflatin.h /^ AF_LATIN_BLUE_SMALL_TOP,$/;" e enum:__anon26 +AF_LATIN_BLUE_TOP android/freetype/src/autofit/aflatin.h /^ AF_LATIN_BLUE_TOP = 1 << 1,$/;" e enum:__anon27 +AF_LATIN_CONSTANT android/freetype/src/autofit/aflatin.h /^#define AF_LATIN_CONSTANT(/;" d +AF_LATIN_HINTS_DO_HORZ_SNAP android/freetype/src/autofit/aflatin.h /^#define AF_LATIN_HINTS_DO_HORZ_SNAP(/;" d +AF_LATIN_HINTS_DO_MONO android/freetype/src/autofit/aflatin.h /^#define AF_LATIN_HINTS_DO_MONO(/;" d +AF_LATIN_HINTS_DO_STEM_ADJUST android/freetype/src/autofit/aflatin.h /^#define AF_LATIN_HINTS_DO_STEM_ADJUST(/;" d +AF_LATIN_HINTS_DO_VERT_SNAP android/freetype/src/autofit/aflatin.h /^#define AF_LATIN_HINTS_DO_VERT_SNAP(/;" d +AF_LATIN_HINTS_HORZ_SNAP android/freetype/src/autofit/aflatin.h /^ AF_LATIN_HINTS_HORZ_SNAP = 1 << 0, \/* enable stem width snapping *\/$/;" e enum:__anon28 +AF_LATIN_HINTS_MONO android/freetype/src/autofit/aflatin.h /^ AF_LATIN_HINTS_MONO = 1 << 3 \/* indicate monochrome *\/$/;" e enum:__anon28 +AF_LATIN_HINTS_STEM_ADJUST android/freetype/src/autofit/aflatin.h /^ AF_LATIN_HINTS_STEM_ADJUST = 1 << 2, \/* enable stem width\/height *\/$/;" e enum:__anon28 +AF_LATIN_HINTS_VERT_SNAP android/freetype/src/autofit/aflatin.h /^ AF_LATIN_HINTS_VERT_SNAP = 1 << 1, \/* enable stem height snapping *\/$/;" e enum:__anon28 +AF_LATIN_IS_TOP_BLUE android/freetype/src/autofit/aflatin.h /^#define AF_LATIN_IS_TOP_BLUE(/;" d +AF_LATIN_MAX_BLUES android/freetype/src/autofit/aflatin.h /^#define AF_LATIN_MAX_BLUES /;" d +AF_LATIN_MAX_TEST_CHARACTERS android/freetype/src/autofit/aflatin.c /^#define AF_LATIN_MAX_TEST_CHARACTERS /;" d file: +AF_LATIN_MAX_TEST_CHARACTERS android/freetype/src/autofit/aflatin2.c /^#define AF_LATIN_MAX_TEST_CHARACTERS /;" d file: +AF_LATIN_MAX_WIDTHS android/freetype/src/autofit/aflatin.h /^#define AF_LATIN_MAX_WIDTHS /;" d +AF_LIGHT_MODE_MAX_DELTA_ABS android/freetype/src/autofit/afcjk.c /^#define AF_LIGHT_MODE_MAX_DELTA_ABS /;" d file: +AF_LIGHT_MODE_MAX_HORZ_GAP android/freetype/src/autofit/afcjk.c /^#define AF_LIGHT_MODE_MAX_HORZ_GAP /;" d file: +AF_LIGHT_MODE_MAX_VERT_GAP android/freetype/src/autofit/afcjk.c /^#define AF_LIGHT_MODE_MAX_VERT_GAP /;" d file: +AF_LOG android/freetype/src/autofit/aftypes.h /^#define AF_LOG(/;" d +AF_LatinAxis android/freetype/src/autofit/aflatin.h /^ } AF_LatinAxisRec, *AF_LatinAxis;$/;" t typeref:struct:AF_LatinAxisRec_ +AF_LatinAxisRec android/freetype/src/autofit/aflatin.h /^ } AF_LatinAxisRec, *AF_LatinAxis;$/;" t typeref:struct:AF_LatinAxisRec_ +AF_LatinAxisRec_ android/freetype/src/autofit/aflatin.h /^ typedef struct AF_LatinAxisRec_$/;" s +AF_LatinBlue android/freetype/src/autofit/aflatin.h /^ } AF_LatinBlueRec, *AF_LatinBlue;$/;" t typeref:struct:AF_LatinBlueRec_ +AF_LatinBlueRec android/freetype/src/autofit/aflatin.h /^ } AF_LatinBlueRec, *AF_LatinBlue;$/;" t typeref:struct:AF_LatinBlueRec_ +AF_LatinBlueRec_ android/freetype/src/autofit/aflatin.h /^ typedef struct AF_LatinBlueRec_$/;" s +AF_LatinMetrics android/freetype/src/autofit/aflatin.h /^ } AF_LatinMetricsRec, *AF_LatinMetrics;$/;" t typeref:struct:AF_LatinMetricsRec_ +AF_LatinMetricsRec android/freetype/src/autofit/aflatin.h /^ } AF_LatinMetricsRec, *AF_LatinMetrics;$/;" t typeref:struct:AF_LatinMetricsRec_ +AF_LatinMetricsRec_ android/freetype/src/autofit/aflatin.h /^ typedef struct AF_LatinMetricsRec_$/;" s +AF_Loader android/freetype/src/autofit/afloader.h /^ } AF_LoaderRec, *AF_Loader;$/;" t typeref:struct:AF_LoaderRec_ +AF_LoaderRec android/freetype/src/autofit/afloader.h /^ } AF_LoaderRec, *AF_Loader;$/;" t typeref:struct:AF_LoaderRec_ +AF_LoaderRec_ android/freetype/src/autofit/afloader.h /^ typedef struct AF_LoaderRec_$/;" s +AF_OutlineRec android/freetype/src/autofit/aftypes.h /^ } AF_OutlineRec;$/;" t typeref:struct:AF_OutlineRec_ +AF_OutlineRec_ android/freetype/src/autofit/aftypes.h /^ typedef struct AF_OutlineRec_$/;" s +AF_Point android/freetype/src/autofit/afhints.h /^ typedef struct AF_PointRec_* AF_Point;$/;" t typeref:struct:AF_PointRec_ +AF_PointRec android/freetype/src/autofit/afhints.h /^ } AF_PointRec;$/;" t typeref:struct:AF_PointRec_ +AF_PointRec_ android/freetype/src/autofit/afhints.h /^ typedef struct AF_PointRec_$/;" s +AF_SCALER_EQUAL_SCALES android/freetype/src/autofit/aftypes.h /^#define AF_SCALER_EQUAL_SCALES(/;" d +AF_SCALER_FLAG_NO_ADVANCE android/freetype/src/autofit/aftypes.h /^ AF_SCALER_FLAG_NO_ADVANCE = 4 \/* disable advance hinting *\/$/;" e enum:AF_ScalerFlags_ +AF_SCALER_FLAG_NO_HORIZONTAL android/freetype/src/autofit/aftypes.h /^ AF_SCALER_FLAG_NO_HORIZONTAL = 1, \/* disable horizontal hinting *\/$/;" e enum:AF_ScalerFlags_ +AF_SCALER_FLAG_NO_VERTICAL android/freetype/src/autofit/aftypes.h /^ AF_SCALER_FLAG_NO_VERTICAL = 2, \/* disable vertical hinting *\/$/;" e enum:AF_ScalerFlags_ +AF_SCRIPT_CJK android/freetype/src/autofit/aftypes.h /^ AF_SCRIPT_CJK = 2,$/;" e enum:AF_Script_ +AF_SCRIPT_INDIC android/freetype/src/autofit/aftypes.h /^ AF_SCRIPT_INDIC = 3, $/;" e enum:AF_Script_ +AF_SCRIPT_LATIN android/freetype/src/autofit/aftypes.h /^ AF_SCRIPT_LATIN = 1,$/;" e enum:AF_Script_ +AF_SCRIPT_LATIN2 android/freetype/src/autofit/aftypes.h /^ AF_SCRIPT_LATIN2,$/;" e enum:AF_Script_ +AF_SCRIPT_LIST_DEFAULT android/freetype/src/autofit/afglobal.c /^#define AF_SCRIPT_LIST_DEFAULT /;" d file: +AF_SCRIPT_LIST_NONE android/freetype/src/autofit/afglobal.c /^#define AF_SCRIPT_LIST_NONE /;" d file: +AF_SCRIPT_MAX android/freetype/src/autofit/aftypes.h /^ AF_SCRIPT_MAX \/* do not remove *\/$/;" e enum:AF_Script_ +AF_SCRIPT_NONE android/freetype/src/autofit/aftypes.h /^ AF_SCRIPT_NONE = 0,$/;" e enum:AF_Script_ +AF_SEGMENT_DIST android/freetype/src/autofit/afhints.h /^#define AF_SEGMENT_DIST(/;" d +AF_SEGMENT_LEN android/freetype/src/autofit/afhints.h /^#define AF_SEGMENT_LEN(/;" d +AF_Scaler android/freetype/src/autofit/aftypes.h /^ } AF_ScalerRec, *AF_Scaler;$/;" t typeref:struct:AF_ScalerRec_ +AF_ScalerFlags android/freetype/src/autofit/aftypes.h /^ } AF_ScalerFlags;$/;" t typeref:enum:AF_ScalerFlags_ +AF_ScalerFlags_ android/freetype/src/autofit/aftypes.h /^ typedef enum AF_ScalerFlags_$/;" g +AF_ScalerRec android/freetype/src/autofit/aftypes.h /^ } AF_ScalerRec, *AF_Scaler;$/;" t typeref:struct:AF_ScalerRec_ +AF_ScalerRec_ android/freetype/src/autofit/aftypes.h /^ typedef struct AF_ScalerRec_$/;" s +AF_Script android/freetype/src/autofit/aftypes.h /^ } AF_Script;$/;" t typeref:enum:AF_Script_ +AF_ScriptClass android/freetype/src/autofit/aftypes.h /^ typedef struct AF_ScriptClassRec_ const* AF_ScriptClass;$/;" t +AF_ScriptClassRec android/freetype/src/autofit/aftypes.h /^ } AF_ScriptClassRec;$/;" t typeref:struct:AF_ScriptClassRec_ +AF_ScriptClassRec_ android/freetype/src/autofit/aftypes.h /^ typedef struct AF_ScriptClassRec_$/;" s +AF_ScriptMetrics android/freetype/src/autofit/aftypes.h /^ } AF_ScriptMetricsRec, *AF_ScriptMetrics;$/;" t typeref:struct:AF_ScriptMetricsRec_ +AF_ScriptMetricsRec android/freetype/src/autofit/aftypes.h /^ } AF_ScriptMetricsRec, *AF_ScriptMetrics;$/;" t typeref:struct:AF_ScriptMetricsRec_ +AF_ScriptMetricsRec_ android/freetype/src/autofit/aftypes.h /^ typedef struct AF_ScriptMetricsRec_$/;" s +AF_Script_ android/freetype/src/autofit/aftypes.h /^ typedef enum AF_Script_$/;" g +AF_Script_ApplyHintsFunc android/freetype/src/autofit/aftypes.h /^ (*AF_Script_ApplyHintsFunc)( AF_GlyphHints hints,$/;" t +AF_Script_DoneMetricsFunc android/freetype/src/autofit/aftypes.h /^ (*AF_Script_DoneMetricsFunc)( AF_ScriptMetrics metrics );$/;" t +AF_Script_InitHintsFunc android/freetype/src/autofit/aftypes.h /^ (*AF_Script_InitHintsFunc)( AF_GlyphHints hints,$/;" t +AF_Script_InitMetricsFunc android/freetype/src/autofit/aftypes.h /^ (*AF_Script_InitMetricsFunc)( AF_ScriptMetrics metrics,$/;" t +AF_Script_ScaleMetricsFunc android/freetype/src/autofit/aftypes.h /^ (*AF_Script_ScaleMetricsFunc)( AF_ScriptMetrics metrics,$/;" t +AF_Script_UniRange android/freetype/src/autofit/aftypes.h /^ typedef const AF_Script_UniRangeRec *AF_Script_UniRange;$/;" t +AF_Script_UniRangeRec android/freetype/src/autofit/aftypes.h /^ } AF_Script_UniRangeRec;$/;" t typeref:struct:AF_Script_UniRangeRec_ +AF_Script_UniRangeRec_ android/freetype/src/autofit/aftypes.h /^ typedef struct AF_Script_UniRangeRec_$/;" s +AF_Segment android/freetype/src/autofit/afhints.h /^ typedef struct AF_SegmentRec_* AF_Segment;$/;" t typeref:struct:AF_SegmentRec_ +AF_SegmentRec android/freetype/src/autofit/afhints.h /^ } AF_SegmentRec;$/;" t typeref:struct:AF_SegmentRec_ +AF_SegmentRec_ android/freetype/src/autofit/afhints.h /^ typedef struct AF_SegmentRec_$/;" s +AF_WARPER_CEIL android/freetype/src/autofit/afwarp.h /^#define AF_WARPER_CEIL(/;" d +AF_WARPER_FLOOR android/freetype/src/autofit/afwarp.h /^#define AF_WARPER_FLOOR(/;" d +AF_WARPER_SCALE android/freetype/src/autofit/afwarp.h /^#define AF_WARPER_SCALE$/;" d +AF_WarpScore android/freetype/src/autofit/afwarp.h /^ typedef FT_Int32 AF_WarpScore;$/;" t +AF_Warper android/freetype/src/autofit/afwarp.h /^ } AF_WarperRec, *AF_Warper;$/;" t typeref:struct:AF_WarperRec_ +AF_WarperRec android/freetype/src/autofit/afwarp.h /^ } AF_WarperRec, *AF_Warper;$/;" t typeref:struct:AF_WarperRec_ +AF_WarperRec_ android/freetype/src/autofit/afwarp.h /^ typedef struct AF_WarperRec_$/;" s +AF_Width android/freetype/src/autofit/aftypes.h /^ } AF_WidthRec, *AF_Width;$/;" t typeref:struct:AF_WidthRec_ +AF_WidthRec android/freetype/src/autofit/aftypes.h /^ } AF_WidthRec, *AF_Width;$/;" t typeref:struct:AF_WidthRec_ +AF_WidthRec_ android/freetype/src/autofit/aftypes.h /^ typedef struct AF_WidthRec_$/;" s +ALIGNED src/include/common.h /^#define ALIGNED(/;" d +ALL_POINTS android/freetype/src/truetype/ttgxvar.c /^#define ALL_POINTS /;" d file: +AMIGACONFIG_H android/expat/lib/amigaconfig.h /^#define AMIGACONFIG_H$/;" d +ANDROID_DIR tools/gyp/buildbot/buildbot_run.py /^ANDROID_DIR = os.path.join(ROOT_DIR, 'android')$/;" v +APP_ABI android/expat/jni/Application.mk /^APP_ABI := armeabi$/;" m +APP_ABI android/freetype/jni/Application.mk /^APP_ABI := armeabi$/;" m +APP_ABI android/jni/Application.mk /^APP_ABI := armeabi$/;" m +APP_MODULES android/expat/jni/Application.mk /^APP_MODULES := libexpat$/;" m +APP_MODULES android/freetype/jni/Application.mk /^APP_MODULES := libft2$/;" m +APP_MODULES android/jni/Application.mk /^APP_MODULES := libpicasso libpicasso-test$/;" m +APP_PLATFORM android/expat/jni/Application.mk /^APP_PLATFORM := android-9$/;" m +APP_PLATFORM android/freetype/jni/Application.mk /^APP_PLATFORM := android-9$/;" m +APP_PLATFORM android/jni/Application.mk /^APP_PLATFORM := android-9$/;" m +ARGS_ARE_WORDS android/freetype/src/truetype/ttgload.c /^#define ARGS_ARE_WORDS /;" d file: +ARGS_ARE_XY_VALUES android/freetype/src/truetype/ttgload.c /^#define ARGS_ARE_XY_VALUES /;" d file: +ARGUMENTS tools/gyp/tools/pretty_vcproj.py /^ARGUMENTS = None$/;" v +ARRAY_BOUND_ERROR android/freetype/src/truetype/ttinterp.c /^#define ARRAY_BOUND_ERROR /;" d file: +ARRAY_BOUND_ERROR android/freetype/src/truetype/ttinterp.c /^#undef ARRAY_BOUND_ERROR$/;" d file: +ASCII_0 android/expat/lib/ascii.h /^#define ASCII_0 /;" d +ASCII_1 android/expat/lib/ascii.h /^#define ASCII_1 /;" d +ASCII_2 android/expat/lib/ascii.h /^#define ASCII_2 /;" d +ASCII_3 android/expat/lib/ascii.h /^#define ASCII_3 /;" d +ASCII_4 android/expat/lib/ascii.h /^#define ASCII_4 /;" d +ASCII_5 android/expat/lib/ascii.h /^#define ASCII_5 /;" d +ASCII_6 android/expat/lib/ascii.h /^#define ASCII_6 /;" d +ASCII_7 android/expat/lib/ascii.h /^#define ASCII_7 /;" d +ASCII_8 android/expat/lib/ascii.h /^#define ASCII_8 /;" d +ASCII_9 android/expat/lib/ascii.h /^#define ASCII_9 /;" d +ASCII_A android/expat/lib/ascii.h /^#define ASCII_A /;" d +ASCII_AMP android/expat/lib/ascii.h /^#define ASCII_AMP /;" d +ASCII_APOS android/expat/lib/ascii.h /^#define ASCII_APOS /;" d +ASCII_B android/expat/lib/ascii.h /^#define ASCII_B /;" d +ASCII_C android/expat/lib/ascii.h /^#define ASCII_C /;" d +ASCII_COLON android/expat/lib/ascii.h /^#define ASCII_COLON /;" d +ASCII_COMMA android/expat/lib/ascii.h /^#define ASCII_COMMA /;" d +ASCII_D android/expat/lib/ascii.h /^#define ASCII_D /;" d +ASCII_E android/expat/lib/ascii.h /^#define ASCII_E /;" d +ASCII_EQUALS android/expat/lib/ascii.h /^#define ASCII_EQUALS /;" d +ASCII_EXCL android/expat/lib/ascii.h /^#define ASCII_EXCL /;" d +ASCII_F android/expat/lib/ascii.h /^#define ASCII_F /;" d +ASCII_FF android/expat/lib/ascii.h /^#define ASCII_FF /;" d +ASCII_G android/expat/lib/ascii.h /^#define ASCII_G /;" d +ASCII_GT android/expat/lib/ascii.h /^#define ASCII_GT /;" d +ASCII_H android/expat/lib/ascii.h /^#define ASCII_H /;" d +ASCII_HASH android/expat/lib/ascii.h /^#define ASCII_HASH /;" d +ASCII_I android/expat/lib/ascii.h /^#define ASCII_I /;" d +ASCII_J android/expat/lib/ascii.h /^#define ASCII_J /;" d +ASCII_K android/expat/lib/ascii.h /^#define ASCII_K /;" d +ASCII_L android/expat/lib/ascii.h /^#define ASCII_L /;" d +ASCII_LPAREN android/expat/lib/ascii.h /^#define ASCII_LPAREN /;" d +ASCII_LSQB android/expat/lib/ascii.h /^#define ASCII_LSQB /;" d +ASCII_LT android/expat/lib/ascii.h /^#define ASCII_LT /;" d +ASCII_M android/expat/lib/ascii.h /^#define ASCII_M /;" d +ASCII_MINUS android/expat/lib/ascii.h /^#define ASCII_MINUS /;" d +ASCII_N android/expat/lib/ascii.h /^#define ASCII_N /;" d +ASCII_O android/expat/lib/ascii.h /^#define ASCII_O /;" d +ASCII_P android/expat/lib/ascii.h /^#define ASCII_P /;" d +ASCII_PERIOD android/expat/lib/ascii.h /^#define ASCII_PERIOD /;" d +ASCII_PIPE android/expat/lib/ascii.h /^#define ASCII_PIPE /;" d +ASCII_Q android/expat/lib/ascii.h /^#define ASCII_Q /;" d +ASCII_QUOT android/expat/lib/ascii.h /^#define ASCII_QUOT /;" d +ASCII_R android/expat/lib/ascii.h /^#define ASCII_R /;" d +ASCII_RPAREN android/expat/lib/ascii.h /^#define ASCII_RPAREN /;" d +ASCII_RSQB android/expat/lib/ascii.h /^#define ASCII_RSQB /;" d +ASCII_S android/expat/lib/ascii.h /^#define ASCII_S /;" d +ASCII_SEMI android/expat/lib/ascii.h /^#define ASCII_SEMI /;" d +ASCII_SLASH android/expat/lib/ascii.h /^#define ASCII_SLASH /;" d +ASCII_SPACE android/expat/lib/ascii.h /^#define ASCII_SPACE /;" d +ASCII_T android/expat/lib/ascii.h /^#define ASCII_T /;" d +ASCII_TAB android/expat/lib/ascii.h /^#define ASCII_TAB /;" d +ASCII_U android/expat/lib/ascii.h /^#define ASCII_U /;" d +ASCII_UNDERSCORE android/expat/lib/ascii.h /^#define ASCII_UNDERSCORE /;" d +ASCII_V android/expat/lib/ascii.h /^#define ASCII_V /;" d +ASCII_W android/expat/lib/ascii.h /^#define ASCII_W /;" d +ASCII_X android/expat/lib/ascii.h /^#define ASCII_X /;" d +ASCII_Y android/expat/lib/ascii.h /^#define ASCII_Y /;" d +ASCII_Z android/expat/lib/ascii.h /^#define ASCII_Z /;" d +ASCII_a android/expat/lib/ascii.h /^#define ASCII_a /;" d +ASCII_b android/expat/lib/ascii.h /^#define ASCII_b /;" d +ASCII_c android/expat/lib/ascii.h /^#define ASCII_c /;" d +ASCII_d android/expat/lib/ascii.h /^#define ASCII_d /;" d +ASCII_e android/expat/lib/ascii.h /^#define ASCII_e /;" d +ASCII_f android/expat/lib/ascii.h /^#define ASCII_f /;" d +ASCII_g android/expat/lib/ascii.h /^#define ASCII_g /;" d +ASCII_h android/expat/lib/ascii.h /^#define ASCII_h /;" d +ASCII_i android/expat/lib/ascii.h /^#define ASCII_i /;" d +ASCII_j android/expat/lib/ascii.h /^#define ASCII_j /;" d +ASCII_k android/expat/lib/ascii.h /^#define ASCII_k /;" d +ASCII_l android/expat/lib/ascii.h /^#define ASCII_l /;" d +ASCII_m android/expat/lib/ascii.h /^#define ASCII_m /;" d +ASCII_n android/expat/lib/ascii.h /^#define ASCII_n /;" d +ASCII_o android/expat/lib/ascii.h /^#define ASCII_o /;" d +ASCII_p android/expat/lib/ascii.h /^#define ASCII_p /;" d +ASCII_q android/expat/lib/ascii.h /^#define ASCII_q /;" d +ASCII_r android/expat/lib/ascii.h /^#define ASCII_r /;" d +ASCII_s android/expat/lib/ascii.h /^#define ASCII_s /;" d +ASCII_t android/expat/lib/ascii.h /^#define ASCII_t /;" d +ASCII_u android/expat/lib/ascii.h /^#define ASCII_u /;" d +ASCII_v android/expat/lib/ascii.h /^#define ASCII_v /;" d +ASCII_w android/expat/lib/ascii.h /^#define ASCII_w /;" d +ASCII_x android/expat/lib/ascii.h /^#define ASCII_x /;" d +ASCII_y android/expat/lib/ascii.h /^#define ASCII_y /;" d +ASCII_z android/expat/lib/ascii.h /^#define ASCII_z /;" d +AS_NORMAL_ENCODING android/expat/lib/xmltok.c /^#define AS_NORMAL_ENCODING(/;" d file: +AS_UNKNOWN_ENCODING android/expat/lib/xmltok.c /^#define AS_UNKNOWN_ENCODING(/;" d file: +ATTRIBUTE android/expat/lib/xmltok.h /^} ATTRIBUTE;$/;" t typeref:struct:__anon21 +ATTRIBUTE_ID android/expat/lib/xmlparse.c /^} ATTRIBUTE_ID;$/;" t typeref:struct:attribute_id file: +A_space android/freetype/include/freetype/ftwinfnt.h /^ FT_UShort A_space;$/;" m struct:FT_WinFNT_HeaderRec_ +A_space include/freetype/ftwinfnt.h /^ FT_UShort A_space;$/;" m struct:FT_WinFNT_HeaderRec_ +AbsoluteNode tools/gyp/tools/pretty_vcproj.py /^def AbsoluteNode(node):$/;" f +Acos src/include/math_type.h /^#define Acos(/;" d +AddConfig tools/gyp/build/lib/gyp/MSVSProject.py /^ def AddConfig(self, name, attrs=None, tools=None):$/;" m class:Writer +AddConfig tools/gyp/build/lib/gyp/MSVSUserFile.py /^ def AddConfig(self, name):$/;" m class:Writer +AddConfig tools/gyp/pylib/gyp/MSVSProject.py /^ def AddConfig(self, name, attrs=None, tools=None):$/;" m class:Writer +AddConfig tools/gyp/pylib/gyp/MSVSUserFile.py /^ def AddConfig(self, name):$/;" m class:Writer +AddCustomBuildRule tools/gyp/build/lib/gyp/MSVSToolFile.py /^ def AddCustomBuildRule(self, name, cmd, description,$/;" m class:Writer +AddCustomBuildRule tools/gyp/pylib/gyp/MSVSToolFile.py /^ def AddCustomBuildRule(self, name, cmd, description,$/;" m class:Writer +AddDebugSettings tools/gyp/build/lib/gyp/MSVSUserFile.py /^ def AddDebugSettings(self, config_name, command, environment = {},$/;" m class:Writer +AddDebugSettings tools/gyp/pylib/gyp/MSVSUserFile.py /^ def AddDebugSettings(self, config_name, command, environment = {},$/;" m class:Writer +AddDependency tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def AddDependency(self, other):$/;" m class:PBXNativeTarget +AddDependency tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def AddDependency(self, other):$/;" m class:XCTarget +AddDependency tools/gyp/pylib/gyp/xcodeproj_file.py /^ def AddDependency(self, other):$/;" m class:PBXNativeTarget +AddDependency tools/gyp/pylib/gyp/xcodeproj_file.py /^ def AddDependency(self, other):$/;" m class:XCTarget +AddFile tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def AddFile(self, path, settings=None):$/;" m class:XCBuildPhase +AddFile tools/gyp/pylib/gyp/xcodeproj_file.py /^ def AddFile(self, path, settings=None):$/;" m class:XCBuildPhase +AddFileConfig tools/gyp/build/lib/gyp/MSVSProject.py /^ def AddFileConfig(self, path, config, attrs=None, tools=None):$/;" m class:Writer +AddFileConfig tools/gyp/pylib/gyp/MSVSProject.py /^ def AddFileConfig(self, path, config, attrs=None, tools=None):$/;" m class:Writer +AddFiles tools/gyp/build/lib/gyp/MSVSProject.py /^ def AddFiles(self, files):$/;" m class:Writer +AddFiles tools/gyp/pylib/gyp/MSVSProject.py /^ def AddFiles(self, files):$/;" m class:Writer +AddHeaderToTarget tools/gyp/build/lib/gyp/generator/xcode.py /^def AddHeaderToTarget(header, pbxp, xct, is_public):$/;" f +AddHeaderToTarget tools/gyp/pylib/gyp/generator/xcode.py /^def AddHeaderToTarget(header, pbxp, xct, is_public):$/;" f +AddOrGetFileByPath tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def AddOrGetFileByPath(self, path, hierarchical):$/;" m class:PBXGroup +AddOrGetFileByPath tools/gyp/pylib/gyp/xcodeproj_file.py /^ def AddOrGetFileByPath(self, path, hierarchical):$/;" m class:PBXGroup +AddOrGetFileInRootGroup tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def AddOrGetFileInRootGroup(self, path):$/;" m class:PBXProject +AddOrGetFileInRootGroup tools/gyp/pylib/gyp/xcodeproj_file.py /^ def AddOrGetFileInRootGroup(self, path):$/;" m class:PBXProject +AddOrGetProjectReference tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def AddOrGetProjectReference(self, other_pbxproject):$/;" m class:PBXProject +AddOrGetProjectReference tools/gyp/pylib/gyp/xcodeproj_file.py /^ def AddOrGetProjectReference(self, other_pbxproject):$/;" m class:PBXProject +AddOrGetVariantGroupByNameAndPath tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def AddOrGetVariantGroupByNameAndPath(self, name, path):$/;" m class:PBXGroup +AddOrGetVariantGroupByNameAndPath tools/gyp/pylib/gyp/xcodeproj_file.py /^ def AddOrGetVariantGroupByNameAndPath(self, name, path):$/;" m class:PBXGroup +AddResourceToTarget tools/gyp/build/lib/gyp/generator/xcode.py /^def AddResourceToTarget(resource, pbxp, xct):$/;" f +AddResourceToTarget tools/gyp/pylib/gyp/generator/xcode.py /^def AddResourceToTarget(resource, pbxp, xct):$/;" f +AddSourceToTarget tools/gyp/build/lib/gyp/generator/xcode.py /^def AddSourceToTarget(source, type, pbxp, xct):$/;" f +AddSourceToTarget tools/gyp/pylib/gyp/generator/xcode.py /^def AddSourceToTarget(source, type, pbxp, xct):$/;" f +AddToolFile tools/gyp/build/lib/gyp/MSVSProject.py /^ def AddToolFile(self, path):$/;" m class:Writer +AddToolFile tools/gyp/pylib/gyp/MSVSProject.py /^ def AddToolFile(self, path):$/;" m class:Writer +AdjustIncludeDirs tools/gyp/build/lib/gyp/msvs_emulation.py /^ def AdjustIncludeDirs(self, include_dirs, config):$/;" m class:MsvsSettings +AdjustIncludeDirs tools/gyp/pylib/gyp/msvs_emulation.py /^ def AdjustIncludeDirs(self, include_dirs, config):$/;" m class:MsvsSettings +AdjustLibraries tools/gyp/build/lib/gyp/msvs_emulation.py /^ def AdjustLibraries(self, libraries):$/;" m class:MsvsSettings +AdjustLibraries tools/gyp/build/lib/gyp/xcode_emulation.py /^ def AdjustLibraries(self, libraries):$/;" m class:XcodeSettings +AdjustLibraries tools/gyp/pylib/gyp/msvs_emulation.py /^ def AdjustLibraries(self, libraries):$/;" m class:MsvsSettings +AdjustLibraries tools/gyp/pylib/gyp/xcode_emulation.py /^ def AdjustLibraries(self, libraries):$/;" m class:XcodeSettings +AdjustStaticLibraryDependencies tools/gyp/build/lib/gyp/input.py /^def AdjustStaticLibraryDependencies(flat_list, targets, dependency_nodes,$/;" f +AdjustStaticLibraryDependencies tools/gyp/pylib/gyp/input.py /^def AdjustStaticLibraryDependencies(flat_list, targets, dependency_nodes,$/;" f +AlignProfileSize android/freetype/src/raster/ftraster.c /^#define AlignProfileSize /;" d file: +Alignment android/freetype/src/raster/ftraster.c /^ } Alignment, *PAlignment;$/;" t typeref:union:Alignment_ file: +Alignment_ android/freetype/src/raster/ftraster.c /^ typedef union Alignment_$/;" u file: +AllTargets tools/gyp/build/lib/gyp/common.py /^def AllTargets(target_list, target_dicts, build_file):$/;" f +AllTargets tools/gyp/pylib/gyp/common.py /^def AllTargets(target_list, target_dicts, build_file):$/;" f +AndroidMkWriter tools/gyp/build/lib/gyp/generator/android.py /^class AndroidMkWriter(object):$/;" c +AndroidMkWriter tools/gyp/pylib/gyp/generator/android.py /^class AndroidMkWriter(object):$/;" c +AppendBuildFile tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def AppendBuildFile(self, pbxbuildfile, path=None):$/;" m class:XCBuildPhase +AppendBuildFile tools/gyp/pylib/gyp/xcodeproj_file.py /^ def AppendBuildFile(self, pbxbuildfile, path=None):$/;" m class:XCBuildPhase +AppendBuildSetting tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def AppendBuildSetting(self, key, value):$/;" m class:XCBuildConfiguration +AppendBuildSetting tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def AppendBuildSetting(self, key, value):$/;" m class:XCConfigurationList +AppendBuildSetting tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def AppendBuildSetting(self, key, value):$/;" m class:XCTarget +AppendBuildSetting tools/gyp/pylib/gyp/xcodeproj_file.py /^ def AppendBuildSetting(self, key, value):$/;" m class:XCBuildConfiguration +AppendBuildSetting tools/gyp/pylib/gyp/xcodeproj_file.py /^ def AppendBuildSetting(self, key, value):$/;" m class:XCConfigurationList +AppendBuildSetting tools/gyp/pylib/gyp/xcodeproj_file.py /^ def AppendBuildSetting(self, key, value):$/;" m class:XCTarget +AppendChild tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def AppendChild(self, child):$/;" m class:PBXGroup +AppendChild tools/gyp/pylib/gyp/xcodeproj_file.py /^ def AppendChild(self, child):$/;" m class:PBXGroup +AppendProperty tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def AppendProperty(self, key, value):$/;" m class:XCObject +AppendProperty tools/gyp/pylib/gyp/xcodeproj_file.py /^ def AppendProperty(self, key, value):$/;" m class:XCObject +Ascender android/freetype/include/freetype/internal/t1types.h /^ FT_Fixed Ascender;$/;" m struct:AFM_FontInfoRec_ +Ascender android/freetype/include/freetype/tttables.h /^ FT_Short Ascender;$/;" m struct:TT_HoriHeader_ +Ascender android/freetype/include/freetype/tttables.h /^ FT_Short Ascender;$/;" m struct:TT_VertHeader_ +Ascender include/freetype/internal/t1types.h /^ FT_Fixed Ascender;$/;" m struct:AFM_FontInfoRec_ +Ascender include/freetype/tttables.h /^ FT_Short Ascender;$/;" m struct:TT_HoriHeader_ +Ascender include/freetype/tttables.h /^ FT_Short Ascender;$/;" m struct:TT_VertHeader_ +Ascending_State android/freetype/src/raster/ftraster.c /^ Ascending_State,$/;" e enum:TStates_ file: +Asin src/include/math_type.h /^#define Asin(/;" d +Atan2 src/include/math_type.h /^#define Atan2(/;" d +B src/include/color_type.h /^struct order_abgr { enum { A=0, B=1, G=2, R=3, rgba_tag }; }; \/\/ order_abgr$/;" e enum:picasso::order_abgr::__anon180 +B src/include/color_type.h /^struct order_argb { enum { A=0, R=1, G=2, B=3, rgba_tag }; }; \/\/ order_argb$/;" e enum:picasso::order_argb::__anon179 +B src/include/color_type.h /^struct order_bgr { enum { B=0, G=1, R=2, rgb_tag }; }; \/\/ order_bgr$/;" e enum:picasso::order_bgr::__anon177 +B src/include/color_type.h /^struct order_bgra { enum { B=0, G=1, R=2, A=3, rgba_tag }; }; \/\/ order_bgra$/;" e enum:picasso::order_bgra::__anon181 +B src/include/color_type.h /^struct order_rgb { enum { R=0, G=1, B=2, rgb_tag }; }; \/\/ order_rgb$/;" e enum:picasso::order_rgb::__anon176 +B src/include/color_type.h /^struct order_rgb555 { enum {R=5, G=5, B=5, rgbp_tag }; }; \/\/ order_rgb555$/;" e enum:picasso::order_rgb555::__anon183 +B src/include/color_type.h /^struct order_rgb565 { enum {R=5, G=6, B=5, rgbp_tag }; }; \/\/ order_rgb565$/;" e enum:picasso::order_rgb565::__anon182 +B src/include/color_type.h /^struct order_rgba { enum { R=0, G=1, B=2, A=3, rgba_tag }; }; \/\/ order_rgba$/;" e enum:picasso::order_rgba::__anon178 +BASE_DIR tools/gyp/build/lib/gyp/win_tool.py /^BASE_DIR = os.path.dirname(os.path.abspath(__file__))$/;" v +BASE_DIR tools/gyp/pylib/gyp/win_tool.py /^BASE_DIR = os.path.dirname(os.path.abspath(__file__))$/;" v +BASE_GLYPH android/freetype/src/psnames/psmodule.c /^#define BASE_GLYPH(/;" d file: +BBox_Conic_Check android/freetype/src/base/ftbbox.c /^ BBox_Conic_Check( FT_Pos y1,$/;" f file: +BBox_Conic_To android/freetype/src/base/ftbbox.c /^ BBox_Conic_To( FT_Vector* control,$/;" f file: +BBox_Cubic_Check android/freetype/src/base/ftbbox.c /^ BBox_Cubic_Check( FT_Pos y1,$/;" f file: +BBox_Cubic_To android/freetype/src/base/ftbbox.c /^ BBox_Cubic_To( FT_Vector* control1,$/;" f file: +BBox_Move_To android/freetype/src/base/ftbbox.c /^ BBox_Move_To( FT_Vector* to,$/;" f file: +BDF_PROPERTY_TYPE_ATOM android/freetype/include/freetype/ftbdf.h /^ BDF_PROPERTY_TYPE_ATOM = 1,$/;" e enum:BDF_PropertyType_ +BDF_PROPERTY_TYPE_ATOM include/freetype/ftbdf.h /^ BDF_PROPERTY_TYPE_ATOM = 1,$/;" e enum:BDF_PropertyType_ +BDF_PROPERTY_TYPE_CARDINAL android/freetype/include/freetype/ftbdf.h /^ BDF_PROPERTY_TYPE_CARDINAL = 3$/;" e enum:BDF_PropertyType_ +BDF_PROPERTY_TYPE_CARDINAL include/freetype/ftbdf.h /^ BDF_PROPERTY_TYPE_CARDINAL = 3$/;" e enum:BDF_PropertyType_ +BDF_PROPERTY_TYPE_INTEGER android/freetype/include/freetype/ftbdf.h /^ BDF_PROPERTY_TYPE_INTEGER = 2,$/;" e enum:BDF_PropertyType_ +BDF_PROPERTY_TYPE_INTEGER include/freetype/ftbdf.h /^ BDF_PROPERTY_TYPE_INTEGER = 2,$/;" e enum:BDF_PropertyType_ +BDF_PROPERTY_TYPE_NONE android/freetype/include/freetype/ftbdf.h /^ BDF_PROPERTY_TYPE_NONE = 0,$/;" e enum:BDF_PropertyType_ +BDF_PROPERTY_TYPE_NONE include/freetype/ftbdf.h /^ BDF_PROPERTY_TYPE_NONE = 0,$/;" e enum:BDF_PropertyType_ +BDF_Property android/freetype/include/freetype/ftbdf.h /^ typedef struct BDF_PropertyRec_* BDF_Property;$/;" t typeref:struct:BDF_PropertyRec_ +BDF_Property include/freetype/ftbdf.h /^ typedef struct BDF_PropertyRec_* BDF_Property;$/;" t typeref:struct:BDF_PropertyRec_ +BDF_PropertyRec android/freetype/include/freetype/ftbdf.h /^ } BDF_PropertyRec;$/;" t typeref:struct:BDF_PropertyRec_ +BDF_PropertyRec include/freetype/ftbdf.h /^ } BDF_PropertyRec;$/;" t typeref:struct:BDF_PropertyRec_ +BDF_PropertyRec_ android/freetype/include/freetype/ftbdf.h /^ typedef struct BDF_PropertyRec_$/;" s +BDF_PropertyRec_ include/freetype/ftbdf.h /^ typedef struct BDF_PropertyRec_$/;" s +BDF_PropertyType android/freetype/include/freetype/ftbdf.h /^ } BDF_PropertyType;$/;" t typeref:enum:BDF_PropertyType_ +BDF_PropertyType include/freetype/ftbdf.h /^ } BDF_PropertyType;$/;" t typeref:enum:BDF_PropertyType_ +BDF_PropertyType_ android/freetype/include/freetype/ftbdf.h /^ typedef enum BDF_PropertyType_$/;" g +BDF_PropertyType_ include/freetype/ftbdf.h /^ typedef enum BDF_PropertyType_$/;" g +BED src/picasso_gpc.cpp /^ BED, \/* Bottom edge *\/$/;" e enum:picasso::__anon216 file: +BELOW src/picasso_gpc.cpp /^#define BELOW /;" d file: +BH src/picasso_gpc.cpp /^ BH, \/* Bottom horizontal edge *\/$/;" e enum:picasso::__anon217 file: +BIG2_BYTE_TO_ASCII android/expat/lib/xmltok.c /^#define BIG2_BYTE_TO_ASCII(/;" d file: +BIG2_BYTE_TYPE android/expat/lib/xmltok.c /^#define BIG2_BYTE_TYPE(/;" d file: +BIG2_CHAR_MATCHES android/expat/lib/xmltok.c /^#define BIG2_CHAR_MATCHES(/;" d file: +BIG2_IS_NAME_CHAR_MINBPC android/expat/lib/xmltok.c /^#define BIG2_IS_NAME_CHAR_MINBPC(/;" d file: +BIG2_IS_NMSTRT_CHAR_MINBPC android/expat/lib/xmltok.c /^#define BIG2_IS_NMSTRT_CHAR_MINBPC(/;" d file: +BINDING android/expat/lib/xmlparse.c /^} BINDING;$/;" t typeref:struct:binding file: +BLOCK android/expat/lib/xmlparse.c /^} BLOCK;$/;" t typeref:struct:block file: +BOUNDS android/freetype/src/truetype/ttinterp.c /^#define BOUNDS(/;" d file: +BT_AMP android/expat/lib/xmltok_impl.h /^ BT_AMP,$/;" e enum:__anon23 +BT_APOS android/expat/lib/xmltok_impl.h /^ BT_APOS,$/;" e enum:__anon23 +BT_AST android/expat/lib/xmltok_impl.h /^ BT_AST,$/;" e enum:__anon23 +BT_COLON android/expat/lib/xmltok.c /^#define BT_COLON /;" d file: +BT_COLON android/expat/lib/xmltok.c /^#undef BT_COLON$/;" d file: +BT_COLON android/expat/lib/xmltok_impl.h /^ BT_COLON,$/;" e enum:__anon23 +BT_COMMA android/expat/lib/xmltok_impl.h /^ BT_COMMA,$/;" e enum:__anon23 +BT_CR android/expat/lib/xmltok_impl.h /^ BT_CR,$/;" e enum:__anon23 +BT_DIGIT android/expat/lib/xmltok_impl.h /^ BT_DIGIT,$/;" e enum:__anon23 +BT_EQUALS android/expat/lib/xmltok_impl.h /^ BT_EQUALS,$/;" e enum:__anon23 +BT_EXCL android/expat/lib/xmltok_impl.h /^ BT_EXCL,$/;" e enum:__anon23 +BT_GT android/expat/lib/xmltok_impl.h /^ BT_GT,$/;" e enum:__anon23 +BT_HEX android/expat/lib/xmltok_impl.h /^ BT_HEX,$/;" e enum:__anon23 +BT_LEAD2 android/expat/lib/xmltok_impl.h /^ BT_LEAD2,$/;" e enum:__anon23 +BT_LEAD3 android/expat/lib/xmltok_impl.h /^ BT_LEAD3,$/;" e enum:__anon23 +BT_LEAD4 android/expat/lib/xmltok_impl.h /^ BT_LEAD4,$/;" e enum:__anon23 +BT_LF android/expat/lib/xmltok_impl.h /^ BT_LF,$/;" e enum:__anon23 +BT_LPAR android/expat/lib/xmltok_impl.h /^ BT_LPAR,$/;" e enum:__anon23 +BT_LSQB android/expat/lib/xmltok_impl.h /^ BT_LSQB,$/;" e enum:__anon23 +BT_LT android/expat/lib/xmltok_impl.h /^ BT_LT,$/;" e enum:__anon23 +BT_MALFORM android/expat/lib/xmltok_impl.h /^ BT_MALFORM,$/;" e enum:__anon23 +BT_MINUS android/expat/lib/xmltok_impl.h /^ BT_MINUS,$/;" e enum:__anon23 +BT_NAME android/expat/lib/xmltok_impl.h /^ BT_NAME,$/;" e enum:__anon23 +BT_NMSTRT android/expat/lib/xmltok_impl.h /^ BT_NMSTRT,$/;" e enum:__anon23 +BT_NONASCII android/expat/lib/xmltok_impl.h /^ BT_NONASCII, \/* might be a name or name start character *\/$/;" e enum:__anon23 +BT_NONXML android/expat/lib/xmltok_impl.h /^ BT_NONXML,$/;" e enum:__anon23 +BT_NUM android/expat/lib/xmltok_impl.h /^ BT_NUM,$/;" e enum:__anon23 +BT_OTHER android/expat/lib/xmltok_impl.h /^ BT_OTHER, \/* known not to be a name or name start character *\/$/;" e enum:__anon23 +BT_PERCNT android/expat/lib/xmltok_impl.h /^ BT_PERCNT,$/;" e enum:__anon23 +BT_PLUS android/expat/lib/xmltok_impl.h /^ BT_PLUS,$/;" e enum:__anon23 +BT_QUEST android/expat/lib/xmltok_impl.h /^ BT_QUEST,$/;" e enum:__anon23 +BT_QUOT android/expat/lib/xmltok_impl.h /^ BT_QUOT,$/;" e enum:__anon23 +BT_RPAR android/expat/lib/xmltok_impl.h /^ BT_RPAR,$/;" e enum:__anon23 +BT_RSQB android/expat/lib/xmltok_impl.h /^ BT_RSQB,$/;" e enum:__anon23 +BT_S android/expat/lib/xmltok_impl.h /^ BT_S,$/;" e enum:__anon23 +BT_SEMI android/expat/lib/xmltok_impl.h /^ BT_SEMI,$/;" e enum:__anon23 +BT_SOL android/expat/lib/xmltok_impl.h /^ BT_SOL,$/;" e enum:__anon23 +BT_TRAIL android/expat/lib/xmltok_impl.h /^ BT_TRAIL,$/;" e enum:__anon23 +BT_VERBAR android/expat/lib/xmltok_impl.h /^ BT_VERBAR$/;" e enum:__anon23 +BUILDBOT_DIR tools/gyp/buildbot/buildbot_run.py /^BUILDBOT_DIR = os.path.dirname(os.path.abspath(__file__))$/;" v +BUNDLE_HEAD src/picasso_gpc.cpp /^ BUNDLE_HEAD, \/* Bundle head node *\/$/;" e enum:picasso::__anon218 file: +BUNDLE_TAIL src/picasso_gpc.cpp /^ BUNDLE_TAIL \/* Passive bundle tail node *\/$/;" e enum:picasso::__anon218 file: +BYTEORDER android/expat/expat_config.h /^#define BYTEORDER /;" d +BYTEORDER android/expat/lib/amigaconfig.h /^#define BYTEORDER /;" d +BYTEORDER android/expat/lib/macconfig.h /^#define BYTEORDER /;" d +BYTEORDER android/expat/lib/winconfig.h /^#define BYTEORDER /;" d +BYTE_TO_ASCII android/expat/lib/xmltok.c /^#define BYTE_TO_ASCII(/;" d file: +BYTE_TO_ASCII android/expat/lib/xmltok.c /^#undef BYTE_TO_ASCII$/;" d file: +BYTE_TYPE android/expat/lib/xmltok.c /^#define BYTE_TYPE(/;" d file: +BYTE_TYPE android/expat/lib/xmltok.c /^#undef BYTE_TYPE$/;" d file: +B_space android/freetype/include/freetype/ftwinfnt.h /^ FT_UShort B_space;$/;" m struct:FT_WinFNT_HeaderRec_ +B_space include/freetype/ftwinfnt.h /^ FT_UShort B_space;$/;" m struct:FT_WinFNT_HeaderRec_ +Bezier_Down android/freetype/src/raster/ftraster.c /^ Bezier_Down( RAS_ARGS Int degree,$/;" f file: +Bezier_Up android/freetype/src/raster/ftraster.c /^ Bezier_Up( RAS_ARGS Int degree,$/;" f file: +Bool android/freetype/src/raster/ftraster.c /^ typedef char Bool;$/;" t file: +BufferAlloc src/picasso_global.h /^#define BufferAlloc(/;" d +BufferCopy src/picasso_global.h /^#define BufferCopy(/;" d +BufferFree src/picasso_global.h /^#define BufferFree(/;" d +BuffersAlloc src/picasso_global.h /^#define BuffersAlloc(/;" d +BuildCygwinBashCommandLine tools/gyp/build/lib/gyp/msvs_emulation.py /^ def BuildCygwinBashCommandLine(self, args, path_to_base):$/;" m class:MsvsSettings +BuildCygwinBashCommandLine tools/gyp/pylib/gyp/msvs_emulation.py /^ def BuildCygwinBashCommandLine(self, args, path_to_base):$/;" m class:MsvsSettings +BuildDependencyList tools/gyp/build/lib/gyp/input.py /^def BuildDependencyList(targets):$/;" f +BuildDependencyList tools/gyp/pylib/gyp/input.py /^def BuildDependencyList(targets):$/;" f +BuildFile tools/gyp/build/lib/gyp/common.py /^def BuildFile(fully_qualified_target):$/;" f +BuildFile tools/gyp/pylib/gyp/common.py /^def BuildFile(fully_qualified_target):$/;" f +BuildFileTargets tools/gyp/build/lib/gyp/common.py /^def BuildFileTargets(target_list, build_file):$/;" f +BuildFileTargets tools/gyp/pylib/gyp/common.py /^def BuildFileTargets(target_list, build_file):$/;" f +BuildProject tools/gyp/tools/pretty_sln.py /^def BuildProject(project, built, projects, deps):$/;" f +BuildTargetsDict tools/gyp/build/lib/gyp/input.py /^def BuildTargetsDict(data):$/;" f +BuildTargetsDict tools/gyp/pylib/gyp/input.py /^def BuildTargetsDict(data):$/;" f +Byte android/freetype/src/raster/ftraster.c /^ typedef unsigned char Byte, *PByte;$/;" t file: +CBIT demos/platform_win32.c /^static int CBIT; $/;" v file: +CBIT test/testWin.c /^static int CBIT; $/;" v file: +CBYTE demos/platform_win32.c /^static int CBYTE;$/;" v file: +CBYTE test/testWin.c /^static int CBYTE;$/;" v file: +CEILING android/freetype/src/raster/ftraster.c /^#define CEILING(/;" d file: +CEILING android/freetype/src/smooth/ftgrays.c /^#define CEILING(/;" d file: +CFFCODE android/freetype/src/cff/cfftoken.h /^#define CFFCODE /;" d +CFFCODE android/freetype/src/cff/cfftoken.h /^#undef CFFCODE$/;" d +CFFCODE_PRIVATE android/freetype/src/cff/cffparse.c /^#define CFFCODE_PRIVATE /;" d file: +CFFCODE_TOPDICT android/freetype/src/cff/cffparse.c /^#define CFFCODE_TOPDICT /;" d file: +CFF_Builder android/freetype/src/cff/cffgload.h /^ } CFF_Builder;$/;" t typeref:struct:CFF_Builder_ +CFF_Builder_ android/freetype/src/cff/cffgload.h /^ typedef struct CFF_Builder_$/;" s +CFF_CMapStd android/freetype/src/cff/cffcmap.h /^ typedef struct CFF_CMapStdRec_* CFF_CMapStd;$/;" t typeref:struct:CFF_CMapStdRec_ +CFF_CMapStdRec android/freetype/src/cff/cffcmap.h /^ } CFF_CMapStdRec;$/;" t typeref:struct:CFF_CMapStdRec_ +CFF_CMapStdRec_ android/freetype/src/cff/cffcmap.h /^ typedef struct CFF_CMapStdRec_$/;" s +CFF_CODE_PRIVATE android/freetype/src/cff/cffparse.h /^#define CFF_CODE_PRIVATE /;" d +CFF_CODE_TOPDICT android/freetype/src/cff/cffparse.h /^#define CFF_CODE_TOPDICT /;" d +CFF_COUNT_CHECK_WIDTH android/freetype/src/cff/cffgload.c /^#define CFF_COUNT_CHECK_WIDTH /;" d file: +CFF_COUNT_CLEAR_STACK android/freetype/src/cff/cffgload.c /^#define CFF_COUNT_CLEAR_STACK /;" d file: +CFF_COUNT_EXACT android/freetype/src/cff/cffgload.c /^#define CFF_COUNT_EXACT /;" d file: +CFF_Charset android/freetype/src/cff/cfftypes.h /^ } CFF_CharsetRec, *CFF_Charset;$/;" t typeref:struct:CFF_CharsetRec_ +CFF_CharsetRec android/freetype/src/cff/cfftypes.h /^ } CFF_CharsetRec, *CFF_Charset;$/;" t typeref:struct:CFF_CharsetRec_ +CFF_CharsetRec_ android/freetype/src/cff/cfftypes.h /^ typedef struct CFF_CharsetRec_$/;" s +CFF_Decoder android/freetype/src/cff/cffgload.h /^ } CFF_Decoder;$/;" t typeref:struct:CFF_Decoder_ +CFF_Decoder_ android/freetype/src/cff/cffgload.h /^ typedef struct CFF_Decoder_$/;" s +CFF_Decoder_Zone android/freetype/src/cff/cffgload.h /^ } CFF_Decoder_Zone;$/;" t typeref:struct:CFF_Decoder_Zone_ +CFF_Decoder_Zone_ android/freetype/src/cff/cffgload.h /^ typedef struct CFF_Decoder_Zone_$/;" s +CFF_Done_FD_Select android/freetype/src/cff/cffload.c /^ CFF_Done_FD_Select( CFF_FDSelect fdselect,$/;" f file: +CFF_Driver android/freetype/src/cff/cffobjs.h /^ typedef struct CFF_DriverRec_* CFF_Driver;$/;" t typeref:struct:CFF_DriverRec_ +CFF_DriverRec android/freetype/src/cff/cffobjs.h /^ } CFF_DriverRec;$/;" t typeref:struct:CFF_DriverRec_ +CFF_DriverRec_ android/freetype/src/cff/cffobjs.h /^ typedef struct CFF_DriverRec_$/;" s +CFF_Encoding android/freetype/src/cff/cfftypes.h /^ } CFF_EncodingRec, *CFF_Encoding;$/;" t typeref:struct:CFF_EncodingRec_ +CFF_EncodingRec android/freetype/src/cff/cfftypes.h /^ } CFF_EncodingRec, *CFF_Encoding;$/;" t typeref:struct:CFF_EncodingRec_ +CFF_EncodingRec_ android/freetype/src/cff/cfftypes.h /^ typedef struct CFF_EncodingRec_$/;" s +CFF_FDSelect android/freetype/src/cff/cfftypes.h /^ } CFF_FDSelectRec, *CFF_FDSelect;$/;" t typeref:struct:CFF_FDSelectRec_ +CFF_FDSelectRec android/freetype/src/cff/cfftypes.h /^ } CFF_FDSelectRec, *CFF_FDSelect;$/;" t typeref:struct:CFF_FDSelectRec_ +CFF_FDSelectRec_ android/freetype/src/cff/cfftypes.h /^ typedef struct CFF_FDSelectRec_$/;" s +CFF_FIELD android/freetype/src/cff/cffparse.c /^#define CFF_FIELD(/;" d file: +CFF_FIELD android/freetype/src/cff/cffparse.c /^#undef CFF_FIELD$/;" d file: +CFF_FIELD_BOOL android/freetype/src/cff/cffparse.c /^#define CFF_FIELD_BOOL(/;" d file: +CFF_FIELD_CALLBACK android/freetype/src/cff/cffparse.c /^#define CFF_FIELD_CALLBACK(/;" d file: +CFF_FIELD_DELTA android/freetype/src/cff/cffparse.c /^#define CFF_FIELD_DELTA(/;" d file: +CFF_FIELD_DELTA android/freetype/src/cff/cffparse.c /^#undef CFF_FIELD_DELTA$/;" d file: +CFF_FIELD_FIXED android/freetype/src/cff/cffparse.c /^#define CFF_FIELD_FIXED(/;" d file: +CFF_FIELD_FIXED_1000 android/freetype/src/cff/cffparse.c /^#define CFF_FIELD_FIXED_1000(/;" d file: +CFF_FIELD_NUM android/freetype/src/cff/cffparse.c /^#define CFF_FIELD_NUM(/;" d file: +CFF_FIELD_STRING android/freetype/src/cff/cffparse.c /^#define CFF_FIELD_STRING(/;" d file: +CFF_Face android/freetype/src/cff/cffobjs.h /^ typedef TT_Face CFF_Face;$/;" t +CFF_Field_Handler android/freetype/src/cff/cffparse.c /^ } CFF_Field_Handler;$/;" t typeref:struct:CFF_Field_Handler_ file: +CFF_Field_Handler_ android/freetype/src/cff/cffparse.c /^ typedef struct CFF_Field_Handler_$/;" s file: +CFF_Field_Reader android/freetype/src/cff/cffparse.c /^ typedef FT_Error (*CFF_Field_Reader)( CFF_Parser parser );$/;" t file: +CFF_Font android/freetype/src/cff/cfftypes.h /^ } CFF_FontRec, *CFF_Font;$/;" t typeref:struct:CFF_FontRec_ +CFF_FontRec android/freetype/src/cff/cfftypes.h /^ } CFF_FontRec, *CFF_Font;$/;" t typeref:struct:CFF_FontRec_ +CFF_FontRecDict android/freetype/src/cff/cfftypes.h /^ } CFF_FontRecDictRec, *CFF_FontRecDict;$/;" t typeref:struct:CFF_FontRecDictRec_ +CFF_FontRecDictRec android/freetype/src/cff/cfftypes.h /^ } CFF_FontRecDictRec, *CFF_FontRecDict;$/;" t typeref:struct:CFF_FontRecDictRec_ +CFF_FontRecDictRec_ android/freetype/src/cff/cfftypes.h /^ typedef struct CFF_FontRecDictRec_$/;" s +CFF_FontRec_ android/freetype/src/cff/cfftypes.h /^ typedef struct CFF_FontRec_$/;" s +CFF_GlyphSlot android/freetype/src/cff/cffobjs.h /^ } CFF_GlyphSlotRec, *CFF_GlyphSlot;$/;" t typeref:struct:CFF_GlyphSlotRec_ +CFF_GlyphSlotRec android/freetype/src/cff/cffobjs.h /^ } CFF_GlyphSlotRec, *CFF_GlyphSlot;$/;" t typeref:struct:CFF_GlyphSlotRec_ +CFF_GlyphSlotRec_ android/freetype/src/cff/cffobjs.h /^ typedef struct CFF_GlyphSlotRec_$/;" s +CFF_Index android/freetype/src/cff/cfftypes.h /^ } CFF_IndexRec, *CFF_Index;$/;" t typeref:struct:CFF_IndexRec_ +CFF_IndexRec android/freetype/src/cff/cfftypes.h /^ } CFF_IndexRec, *CFF_Index;$/;" t typeref:struct:CFF_IndexRec_ +CFF_IndexRec_ android/freetype/src/cff/cfftypes.h /^ typedef struct CFF_IndexRec_$/;" s +CFF_Internal android/freetype/src/cff/cffobjs.h /^ } CFF_InternalRec, *CFF_Internal;$/;" t typeref:struct:CFF_InternalRec_ +CFF_InternalRec android/freetype/src/cff/cffobjs.h /^ } CFF_InternalRec, *CFF_Internal;$/;" t typeref:struct:CFF_InternalRec_ +CFF_InternalRec_ android/freetype/src/cff/cffobjs.h /^ typedef struct CFF_InternalRec_$/;" s +CFF_Load_FD_Select android/freetype/src/cff/cffload.c /^ CFF_Load_FD_Select( CFF_FDSelect fdselect,$/;" f file: +CFF_MAX_CID_FONTS android/freetype/src/cff/cfftypes.h /^#define CFF_MAX_CID_FONTS /;" d +CFF_MAX_OPERANDS android/freetype/src/cff/cffgload.h /^#define CFF_MAX_OPERANDS /;" d +CFF_MAX_STACK_DEPTH android/freetype/src/cff/cffparse.h /^#define CFF_MAX_STACK_DEPTH /;" d +CFF_MAX_SUBRS_CALLS android/freetype/src/cff/cffgload.h /^#define CFF_MAX_SUBRS_CALLS /;" d +CFF_Operator android/freetype/src/cff/cffgload.c /^ } CFF_Operator;$/;" t typeref:enum:CFF_Operator_ file: +CFF_Operator_ android/freetype/src/cff/cffgload.c /^ typedef enum CFF_Operator_$/;" g file: +CFF_Parser android/freetype/src/cff/cffparse.h /^ } CFF_ParserRec, *CFF_Parser;$/;" t typeref:struct:CFF_ParserRec_ +CFF_ParserRec android/freetype/src/cff/cffparse.h /^ } CFF_ParserRec, *CFF_Parser;$/;" t typeref:struct:CFF_ParserRec_ +CFF_ParserRec_ android/freetype/src/cff/cffparse.h /^ typedef struct CFF_ParserRec_$/;" s +CFF_Private android/freetype/src/cff/cfftypes.h /^ } CFF_PrivateRec, *CFF_Private;$/;" t typeref:struct:CFF_PrivateRec_ +CFF_PrivateRec android/freetype/src/cff/cfftypes.h /^ } CFF_PrivateRec, *CFF_Private;$/;" t typeref:struct:CFF_PrivateRec_ +CFF_PrivateRec_ android/freetype/src/cff/cfftypes.h /^ typedef struct CFF_PrivateRec_$/;" s +CFF_Size android/freetype/src/cff/cffobjs.h /^ } CFF_SizeRec, *CFF_Size;$/;" t typeref:struct:CFF_SizeRec_ +CFF_SizeRec android/freetype/src/cff/cffobjs.h /^ } CFF_SizeRec, *CFF_Size;$/;" t typeref:struct:CFF_SizeRec_ +CFF_SizeRec_ android/freetype/src/cff/cffobjs.h /^ typedef struct CFF_SizeRec_$/;" s +CFF_SubFont android/freetype/src/cff/cfftypes.h /^ } CFF_SubFontRec, *CFF_SubFont;$/;" t typeref:struct:CFF_SubFontRec_ +CFF_SubFontRec android/freetype/src/cff/cfftypes.h /^ } CFF_SubFontRec, *CFF_SubFont;$/;" t typeref:struct:CFF_SubFontRec_ +CFF_SubFontRec_ android/freetype/src/cff/cfftypes.h /^ typedef struct CFF_SubFontRec_$/;" s +CFF_Transform android/freetype/src/cff/cffobjs.h /^ } CFF_Transform;$/;" t typeref:struct:CFF_Transform_ +CFF_Transform_ android/freetype/src/cff/cffobjs.h /^ typedef struct CFF_Transform_$/;" s +CHARSET_ANSI include/picasso.h /^ CHARSET_ANSI,$/;" e enum:_ps_charset +CHARSET_UNICODE include/picasso.h /^ CHARSET_UNICODE,$/;" e enum:_ps_charset +CHAR_HASH android/expat/lib/xmlparse.c /^#define CHAR_HASH(/;" d file: +CHAR_MATCHES android/expat/lib/xmltok.c /^#define CHAR_MATCHES(/;" d file: +CHAR_MATCHES android/expat/lib/xmltok.c /^#undef CHAR_MATCHES$/;" d file: +CHECK_NAME_CASE android/expat/lib/xmltok_impl.c /^#define CHECK_NAME_CASE(/;" d file: +CHECK_NAME_CASE android/expat/lib/xmltok_impl.c /^#undef CHECK_NAME_CASE$/;" d file: +CHECK_NAME_CASES android/expat/lib/xmltok_impl.c /^#define CHECK_NAME_CASES(/;" d file: +CHECK_NAME_CASES android/expat/lib/xmltok_impl.c /^#undef CHECK_NAME_CASES$/;" d file: +CHECK_NMSTRT_CASE android/expat/lib/xmltok_impl.c /^#define CHECK_NMSTRT_CASE(/;" d file: +CHECK_NMSTRT_CASE android/expat/lib/xmltok_impl.c /^#undef CHECK_NMSTRT_CASE$/;" d file: +CHECK_NMSTRT_CASES android/expat/lib/xmltok_impl.c /^#define CHECK_NMSTRT_CASES(/;" d file: +CHECK_NMSTRT_CASES android/expat/lib/xmltok_impl.c /^#undef CHECK_NMSTRT_CASES$/;" d file: +CHECK_X android/freetype/src/base/ftbbox.c /^#define CHECK_X(/;" d file: +CHECK_Y android/freetype/src/base/ftbbox.c /^#define CHECK_Y(/;" d file: +CID_Face android/freetype/include/freetype/internal/t1types.h /^ typedef struct CID_FaceRec_* CID_Face;$/;" t typeref:struct:CID_FaceRec_ +CID_Face include/freetype/internal/t1types.h /^ typedef struct CID_FaceRec_* CID_Face;$/;" t typeref:struct:CID_FaceRec_ +CID_FaceDict android/freetype/include/freetype/t1tables.h /^ typedef struct CID_FaceDictRec_* CID_FaceDict;$/;" t typeref:struct:CID_FaceDictRec_ +CID_FaceDict include/freetype/t1tables.h /^ typedef struct CID_FaceDictRec_* CID_FaceDict;$/;" t typeref:struct:CID_FaceDictRec_ +CID_FaceDictRec android/freetype/include/freetype/t1tables.h /^ } CID_FaceDictRec;$/;" t typeref:struct:CID_FaceDictRec_ +CID_FaceDictRec include/freetype/t1tables.h /^ } CID_FaceDictRec;$/;" t typeref:struct:CID_FaceDictRec_ +CID_FaceDictRec_ android/freetype/include/freetype/t1tables.h /^ typedef struct CID_FaceDictRec_$/;" s +CID_FaceDictRec_ include/freetype/t1tables.h /^ typedef struct CID_FaceDictRec_$/;" s +CID_FaceInfo android/freetype/include/freetype/t1tables.h /^ typedef struct CID_FaceInfoRec_* CID_FaceInfo;$/;" t typeref:struct:CID_FaceInfoRec_ +CID_FaceInfo include/freetype/t1tables.h /^ typedef struct CID_FaceInfoRec_* CID_FaceInfo;$/;" t typeref:struct:CID_FaceInfoRec_ +CID_FaceInfoRec android/freetype/include/freetype/t1tables.h /^ } CID_FaceInfoRec;$/;" t typeref:struct:CID_FaceInfoRec_ +CID_FaceInfoRec include/freetype/t1tables.h /^ } CID_FaceInfoRec;$/;" t typeref:struct:CID_FaceInfoRec_ +CID_FaceInfoRec_ android/freetype/include/freetype/t1tables.h /^ typedef struct CID_FaceInfoRec_$/;" s +CID_FaceInfoRec_ include/freetype/t1tables.h /^ typedef struct CID_FaceInfoRec_$/;" s +CID_FaceRec android/freetype/include/freetype/internal/t1types.h /^ } CID_FaceRec;$/;" t typeref:struct:CID_FaceRec_ +CID_FaceRec include/freetype/internal/t1types.h /^ } CID_FaceRec;$/;" t typeref:struct:CID_FaceRec_ +CID_FaceRec_ android/freetype/include/freetype/internal/t1types.h /^ typedef struct CID_FaceRec_$/;" s +CID_FaceRec_ include/freetype/internal/t1types.h /^ typedef struct CID_FaceRec_$/;" s +CID_FontDict android/freetype/include/freetype/t1tables.h /^ typedef CID_FaceDictRec CID_FontDict;$/;" t +CID_FontDict include/freetype/t1tables.h /^ typedef CID_FaceDictRec CID_FontDict;$/;" t +CID_Info android/freetype/include/freetype/t1tables.h /^ typedef CID_FaceInfoRec CID_Info;$/;" t +CID_Info include/freetype/t1tables.h /^ typedef CID_FaceInfoRec CID_Info;$/;" t +CID_Subrs android/freetype/include/freetype/internal/t1types.h /^ } CID_SubrsRec, *CID_Subrs;$/;" t typeref:struct:CID_SubrsRec_ +CID_Subrs include/freetype/internal/t1types.h /^ } CID_SubrsRec, *CID_Subrs;$/;" t typeref:struct:CID_SubrsRec_ +CID_SubrsRec android/freetype/include/freetype/internal/t1types.h /^ } CID_SubrsRec, *CID_Subrs;$/;" t typeref:struct:CID_SubrsRec_ +CID_SubrsRec include/freetype/internal/t1types.h /^ } CID_SubrsRec, *CID_Subrs;$/;" t typeref:struct:CID_SubrsRec_ +CID_SubrsRec_ android/freetype/include/freetype/internal/t1types.h /^ typedef struct CID_SubrsRec_$/;" s +CID_SubrsRec_ include/freetype/internal/t1types.h /^ typedef struct CID_SubrsRec_$/;" s +CLIP src/picasso_gpc.cpp /^#define CLIP /;" d file: +COLOR_FORMAT_ABGR include/picasso.h /^ COLOR_FORMAT_ABGR,$/;" e enum:_ps_color_format +COLOR_FORMAT_ARGB include/picasso.h /^ COLOR_FORMAT_ARGB,$/;" e enum:_ps_color_format +COLOR_FORMAT_BGR include/picasso.h /^ COLOR_FORMAT_BGR,$/;" e enum:_ps_color_format +COLOR_FORMAT_BGRA include/picasso.h /^ COLOR_FORMAT_BGRA,$/;" e enum:_ps_color_format +COLOR_FORMAT_RGB include/picasso.h /^ COLOR_FORMAT_RGB,$/;" e enum:_ps_color_format +COLOR_FORMAT_RGB555 include/picasso.h /^ COLOR_FORMAT_RGB555,$/;" e enum:_ps_color_format +COLOR_FORMAT_RGB565 include/picasso.h /^ COLOR_FORMAT_RGB565,$/;" e enum:_ps_color_format +COLOR_FORMAT_RGBA include/picasso.h /^ COLOR_FORMAT_RGBA,$/;" e enum:_ps_color_format +COLOR_FORMAT_UNKNOWN include/picasso.h /^ COLOR_FORMAT_UNKNOWN,$/;" e enum:_ps_color_format +COMMENT_RE tools/gyp/tools/pretty_gyp.py /^COMMENT_RE = re.compile(r'\\s*#.*')$/;" v +COMPILABLE_EXTENSIONS tools/gyp/build/lib/gyp/generator/make.py /^COMPILABLE_EXTENSIONS = {$/;" v +COMPILABLE_EXTENSIONS tools/gyp/pylib/gyp/generator/make.py /^COMPILABLE_EXTENSIONS = {$/;" v +COMPILER src/include/platform.h /^#define COMPILER(/;" d +COMPILER_CLANG src/include/platform.h /^#define COMPILER_CLANG /;" d +COMPILER_GCC src/include/platform.h /^#define COMPILER_GCC /;" d +COMPILER_INTEL src/include/platform.h /^#define COMPILER_INTEL /;" d +COMPILER_MSVC src/include/platform.h /^#define COMPILER_MSVC /;" d +COMPILER_WATCOM src/include/platform.h /^#define COMPILER_WATCOM /;" d +COMPOSITE_BURN include/picasso.h /^ COMPOSITE_BURN,$/;" e enum:_ps_composite +COMPOSITE_CLEAR include/picasso.h /^ COMPOSITE_CLEAR,$/;" e enum:_ps_composite +COMPOSITE_CONTRAST include/picasso.h /^ COMPOSITE_CONTRAST,$/;" e enum:_ps_composite +COMPOSITE_DARKEN include/picasso.h /^ COMPOSITE_DARKEN,$/;" e enum:_ps_composite +COMPOSITE_DIFFERENCE include/picasso.h /^ COMPOSITE_DIFFERENCE,$/;" e enum:_ps_composite +COMPOSITE_DODGE include/picasso.h /^ COMPOSITE_DODGE,$/;" e enum:_ps_composite +COMPOSITE_DST include/picasso.h /^ COMPOSITE_DST,$/;" e enum:_ps_composite +COMPOSITE_DST_ATOP include/picasso.h /^ COMPOSITE_DST_ATOP,$/;" e enum:_ps_composite +COMPOSITE_DST_IN include/picasso.h /^ COMPOSITE_DST_IN,$/;" e enum:_ps_composite +COMPOSITE_DST_OUT include/picasso.h /^ COMPOSITE_DST_OUT,$/;" e enum:_ps_composite +COMPOSITE_DST_OVER include/picasso.h /^ COMPOSITE_DST_OVER,$/;" e enum:_ps_composite +COMPOSITE_ERROR include/picasso.h /^ COMPOSITE_ERROR,$/;" e enum:_ps_composite +COMPOSITE_EXCLUSION include/picasso.h /^ COMPOSITE_EXCLUSION,$/;" e enum:_ps_composite +COMPOSITE_HARDLIGHT include/picasso.h /^ COMPOSITE_HARDLIGHT,$/;" e enum:_ps_composite +COMPOSITE_INVERT include/picasso.h /^ COMPOSITE_INVERT,$/;" e enum:_ps_composite +COMPOSITE_INVERT_BLEND include/picasso.h /^ COMPOSITE_INVERT_BLEND,$/;" e enum:_ps_composite +COMPOSITE_LIGHTEN include/picasso.h /^ COMPOSITE_LIGHTEN,$/;" e enum:_ps_composite +COMPOSITE_MINUS include/picasso.h /^ COMPOSITE_MINUS,$/;" e enum:_ps_composite +COMPOSITE_MULTIPLY include/picasso.h /^ COMPOSITE_MULTIPLY,$/;" e enum:_ps_composite +COMPOSITE_OVERLAY include/picasso.h /^ COMPOSITE_OVERLAY,$/;" e enum:_ps_composite +COMPOSITE_PLUS include/picasso.h /^ COMPOSITE_PLUS,$/;" e enum:_ps_composite +COMPOSITE_SCREEN include/picasso.h /^ COMPOSITE_SCREEN,$/;" e enum:_ps_composite +COMPOSITE_SOFTLIGHT include/picasso.h /^ COMPOSITE_SOFTLIGHT,$/;" e enum:_ps_composite +COMPOSITE_SRC include/picasso.h /^ COMPOSITE_SRC,$/;" e enum:_ps_composite +COMPOSITE_SRC_ATOP include/picasso.h /^ COMPOSITE_SRC_ATOP,$/;" e enum:_ps_composite +COMPOSITE_SRC_IN include/picasso.h /^ COMPOSITE_SRC_IN,$/;" e enum:_ps_composite +COMPOSITE_SRC_OUT include/picasso.h /^ COMPOSITE_SRC_OUT,$/;" e enum:_ps_composite +COMPOSITE_SRC_OVER include/picasso.h /^ COMPOSITE_SRC_OVER,$/;" e enum:_ps_composite +COMPOSITE_XOR include/picasso.h /^ COMPOSITE_XOR,$/;" e enum:_ps_composite +COMPUTE_Funcs android/freetype/src/truetype/ttinterp.c /^#define COMPUTE_Funcs(/;" d file: +COMPUTE_INFLEXS android/freetype/src/pshinter/pshalgo.c /^#define COMPUTE_INFLEXS /;" d file: +COMPUTE_Point_Displacement android/freetype/src/truetype/ttinterp.c /^#define COMPUTE_Point_Displacement(/;" d file: +COMPUTE_Round android/freetype/src/truetype/ttinterp.c /^#define COMPUTE_Round(/;" d file: +CONTENT_SCAFFOLD android/expat/lib/xmlparse.c /^} CONTENT_SCAFFOLD;$/;" t typeref:struct:__anon12 file: +CONTEXT_SEP android/expat/lib/xmlparse.c /^#define CONTEXT_SEP /;" d file: +CONVERTER android/expat/lib/xmltok.h /^typedef int (XMLCALL *CONVERTER) (void *userData, const char *p);$/;" t +CPU src/include/platform.h /^#define CPU(/;" d +CPU_ARM src/include/platform.h /^#define CPU_ARM /;" d +CPU_ARM_NEON src/include/platform.h /^#define CPU_ARM_NEON /;" d +CPU_ARM_VFP src/include/platform.h /^#define CPU_ARM_VFP /;" d +CPU_X86 src/include/platform.h /^#define CPU_X86 /;" d +CPU_X86_64 src/include/platform.h /^#define CPU_X86_64 /;" d +CUR android/freetype/src/truetype/ttinterp.c /^#define CUR /;" d file: +CURRENT_Ppem android/freetype/src/truetype/ttinterp.c /^#define CURRENT_Ppem(/;" d file: +CURRENT_Ratio android/freetype/src/truetype/ttinterp.c /^#define CURRENT_Ratio(/;" d file: +CUR_Func_dualproj android/freetype/src/truetype/ttinterp.c /^#define CUR_Func_dualproj(/;" d file: +CUR_Func_move android/freetype/src/truetype/ttinterp.c /^#define CUR_Func_move(/;" d file: +CUR_Func_move_cvt android/freetype/src/truetype/ttinterp.c /^#define CUR_Func_move_cvt(/;" d file: +CUR_Func_move_orig android/freetype/src/truetype/ttinterp.c /^#define CUR_Func_move_orig(/;" d file: +CUR_Func_project android/freetype/src/truetype/ttinterp.c /^#define CUR_Func_project(/;" d file: +CUR_Func_read_cvt android/freetype/src/truetype/ttinterp.c /^#define CUR_Func_read_cvt(/;" d file: +CUR_Func_round android/freetype/src/truetype/ttinterp.c /^#define CUR_Func_round(/;" d file: +CUR_Func_write_cvt android/freetype/src/truetype/ttinterp.c /^#define CUR_Func_write_cvt(/;" d file: +CUR_Ppem android/freetype/src/truetype/ttinterp.c /^#define CUR_Ppem(/;" d file: +CUR_fast_dualproj android/freetype/src/truetype/ttinterp.c /^#define CUR_fast_dualproj(/;" d file: +CUR_fast_project android/freetype/src/truetype/ttinterp.c /^#define CUR_fast_project(/;" d file: +C_space android/freetype/include/freetype/ftwinfnt.h /^ FT_UShort C_space;$/;" m struct:FT_WinFNT_HeaderRec_ +C_space include/freetype/ftwinfnt.h /^ FT_UShort C_space;$/;" m struct:FT_WinFNT_HeaderRec_ +CalculateGeneratorInputInfo tools/gyp/build/lib/gyp/generator/dump_dependency_json.py /^def CalculateGeneratorInputInfo(params):$/;" f +CalculateGeneratorInputInfo tools/gyp/build/lib/gyp/generator/eclipse.py /^def CalculateGeneratorInputInfo(params):$/;" f +CalculateGeneratorInputInfo tools/gyp/build/lib/gyp/generator/make.py /^def CalculateGeneratorInputInfo(params):$/;" f +CalculateGeneratorInputInfo tools/gyp/pylib/gyp/generator/dump_dependency_json.py /^def CalculateGeneratorInputInfo(params):$/;" f +CalculateGeneratorInputInfo tools/gyp/pylib/gyp/generator/eclipse.py /^def CalculateGeneratorInputInfo(params):$/;" f +CalculateGeneratorInputInfo tools/gyp/pylib/gyp/generator/make.py /^def CalculateGeneratorInputInfo(params):$/;" f +CalculateMakefilePath tools/gyp/build/lib/gyp/generator/android.py /^ def CalculateMakefilePath(build_file, base_name):$/;" f function:GenerateOutput +CalculateMakefilePath tools/gyp/pylib/gyp/generator/android.py /^ def CalculateMakefilePath(build_file, base_name):$/;" f function:GenerateOutput +CalculateVariables tools/gyp/build/lib/gyp/generator/dump_dependency_json.py /^def CalculateVariables(default_variables, params):$/;" f +CalculateVariables tools/gyp/build/lib/gyp/generator/eclipse.py /^def CalculateVariables(default_variables, params):$/;" f +CalculateVariables tools/gyp/build/lib/gyp/generator/make.py /^def CalculateVariables(default_variables, params):$/;" f +CalculateVariables tools/gyp/build/lib/gyp/generator/msvs.py /^def CalculateVariables(default_variables, params):$/;" f +CalculateVariables tools/gyp/build/lib/gyp/generator/ninja.py /^def CalculateVariables(default_variables, params):$/;" f +CalculateVariables tools/gyp/pylib/gyp/generator/dump_dependency_json.py /^def CalculateVariables(default_variables, params):$/;" f +CalculateVariables tools/gyp/pylib/gyp/generator/eclipse.py /^def CalculateVariables(default_variables, params):$/;" f +CalculateVariables tools/gyp/pylib/gyp/generator/make.py /^def CalculateVariables(default_variables, params):$/;" f +CalculateVariables tools/gyp/pylib/gyp/generator/msvs.py /^def CalculateVariables(default_variables, params):$/;" f +CalculateVariables tools/gyp/pylib/gyp/generator/ninja.py /^def CalculateVariables(default_variables, params):$/;" f +CallGenerateOutputForConfig tools/gyp/build/lib/gyp/generator/ninja.py /^def CallGenerateOutputForConfig(arglist):$/;" f +CallGenerateOutputForConfig tools/gyp/pylib/gyp/generator/ninja.py /^def CallGenerateOutputForConfig(arglist):$/;" f +CallLoadTargetBuildFile tools/gyp/build/lib/gyp/input.py /^def CallLoadTargetBuildFile(global_flags,$/;" f +CallLoadTargetBuildFile tools/gyp/pylib/gyp/input.py /^def CallLoadTargetBuildFile(global_flags,$/;" f +CallSubProcess tools/gyp/buildbot/buildbot_run.py /^def CallSubProcess(*args, **kwargs):$/;" f +Caller_IP android/freetype/src/truetype/ttinterp.h /^ FT_Long Caller_IP;$/;" m struct:TT_CallRec_ +Caller_Range android/freetype/src/truetype/ttinterp.h /^ FT_Int Caller_Range;$/;" m struct:TT_CallRec_ +CapHeight android/freetype/include/freetype/tttables.h /^ FT_UShort CapHeight;$/;" m struct:TT_PCLT_ +CapHeight include/freetype/tttables.h /^ FT_UShort CapHeight;$/;" m struct:TT_PCLT_ +Ceil src/include/math_type.h /^#define Ceil(/;" d +CharacterComplement android/freetype/include/freetype/tttables.h /^ FT_Char CharacterComplement[8];$/;" m struct:TT_PCLT_ +CharacterComplement include/freetype/tttables.h /^ FT_Char CharacterComplement[8];$/;" m struct:TT_PCLT_ +CheckChangeOnCommit tools/gyp/PRESUBMIT.py /^def CheckChangeOnCommit(input_api, output_api):$/;" f +CheckChangeOnUpload tools/gyp/PRESUBMIT.py /^def CheckChangeOnUpload(input_api, output_api):$/;" f +CheckNode tools/gyp/build/lib/gyp/input.py /^def CheckNode(node, keypath):$/;" f +CheckNode tools/gyp/pylib/gyp/input.py /^def CheckNode(node, keypath):$/;" f +CheckSum android/freetype/include/freetype/internal/tttypes.h /^ FT_ULong CheckSum; \/* table checksum *\/$/;" m struct:TT_TableRec_ +CheckSum include/freetype/internal/tttypes.h /^ FT_ULong CheckSum; \/* table checksum *\/$/;" m struct:TT_TableRec_ +CheckSum_Adjust android/freetype/include/freetype/tttables.h /^ FT_Long CheckSum_Adjust;$/;" m struct:TT_Header_ +CheckSum_Adjust include/freetype/tttables.h /^ FT_Long CheckSum_Adjust;$/;" m struct:TT_Header_ +CheckedEval tools/gyp/build/lib/gyp/input.py /^def CheckedEval(file_contents):$/;" f +CheckedEval tools/gyp/pylib/gyp/input.py /^def CheckedEval(file_contents):$/;" f +Children tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def Children(self):$/;" m class:PBXProject +Children tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def Children(self):$/;" m class:XCObject +Children tools/gyp/pylib/gyp/xcodeproj_file.py /^ def Children(self):$/;" m class:PBXProject +Children tools/gyp/pylib/gyp/xcodeproj_file.py /^ def Children(self):$/;" m class:XCObject +CircularException tools/gyp/build/lib/gyp/input.py /^ class CircularException(GypError):$/;" c class:DependencyGraphNode +CircularException tools/gyp/pylib/gyp/input.py /^ class CircularException(GypError):$/;" c class:DependencyGraphNode +Cleanup tools/gyp/build/lib/gyp/xml_fix.py /^ def Cleanup(self):$/;" m class:XmlFix +Cleanup tools/gyp/pylib/gyp/xml_fix.py /^ def Cleanup(self):$/;" m class:XmlFix +CleanupVcproj tools/gyp/tools/pretty_vcproj.py /^def CleanupVcproj(node):$/;" f +CmpNode tools/gyp/tools/pretty_vcproj.py /^class CmpNode(object):$/;" c +CmpTuple tools/gyp/tools/pretty_vcproj.py /^class CmpTuple(object):$/;" c +CommandRunner tools/gyp/gyptest.py /^class CommandRunner:$/;" c +Comment tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def Comment(self):$/;" m class:PBXProject +Comment tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def Comment(self):$/;" m class:XCObject +Comment tools/gyp/pylib/gyp/xcodeproj_file.py /^ def Comment(self):$/;" m class:PBXProject +Comment tools/gyp/pylib/gyp/xcodeproj_file.py /^ def Comment(self):$/;" m class:XCObject +Compare tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def Compare(self, other):$/;" m class:XCHierarchicalElement +Compare tools/gyp/pylib/gyp/xcodeproj_file.py /^ def Compare(self, other):$/;" m class:XCHierarchicalElement +CompareProducts tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def CompareProducts(x, y, remote_products):$/;" f function:PBXProject.SortRemoteProductReferences +CompareProducts tools/gyp/pylib/gyp/xcodeproj_file.py /^ def CompareProducts(x, y, remote_products):$/;" f function:PBXProject.SortRemoteProductReferences +CompareRootGroup tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def CompareRootGroup(self, other):$/;" m class:XCHierarchicalElement +CompareRootGroup tools/gyp/pylib/gyp/xcodeproj_file.py /^ def CompareRootGroup(self, other):$/;" m class:XCHierarchicalElement +Compilable tools/gyp/build/lib/gyp/generator/make.py /^def Compilable(filename):$/;" f +Compilable tools/gyp/pylib/gyp/generator/make.py /^def Compilable(filename):$/;" f +CompilableSourcesTargetBase tools/gyp/build/lib/gyp/SCons.py /^class CompilableSourcesTargetBase(TargetBase):$/;" c +CompilableSourcesTargetBase tools/gyp/pylib/gyp/SCons.py /^class CompilableSourcesTargetBase(TargetBase):$/;" c +ComputeAndroidLibraryModuleNames tools/gyp/build/lib/gyp/generator/android.py /^ def ComputeAndroidLibraryModuleNames(self, libraries):$/;" m class:AndroidMkWriter +ComputeAndroidLibraryModuleNames tools/gyp/pylib/gyp/generator/android.py /^ def ComputeAndroidLibraryModuleNames(self, libraries):$/;" m class:AndroidMkWriter +ComputeAndroidModule tools/gyp/build/lib/gyp/generator/android.py /^ def ComputeAndroidModule(self, spec):$/;" m class:AndroidMkWriter +ComputeAndroidModule tools/gyp/pylib/gyp/generator/android.py /^ def ComputeAndroidModule(self, spec):$/;" m class:AndroidMkWriter +ComputeDeps tools/gyp/build/lib/gyp/generator/android.py /^ def ComputeDeps(self, spec):$/;" m class:AndroidMkWriter +ComputeDeps tools/gyp/pylib/gyp/generator/android.py /^ def ComputeDeps(self, spec):$/;" m class:AndroidMkWriter +ComputeExportEnvString tools/gyp/build/lib/gyp/generator/ninja.py /^ def ComputeExportEnvString(self, env):$/;" m class:NinjaWriter +ComputeExportEnvString tools/gyp/pylib/gyp/generator/ninja.py /^ def ComputeExportEnvString(self, env):$/;" m class:NinjaWriter +ComputeIDs tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def ComputeIDs(self, recursive=True, overwrite=True, hash=None):$/;" m class:XCProjectFile +ComputeIDs tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def ComputeIDs(self, recursive=True, overwrite=True, seed_hash=None):$/;" m class:XCObject +ComputeIDs tools/gyp/pylib/gyp/xcodeproj_file.py /^ def ComputeIDs(self, recursive=True, overwrite=True, hash=None):$/;" m class:XCProjectFile +ComputeIDs tools/gyp/pylib/gyp/xcodeproj_file.py /^ def ComputeIDs(self, recursive=True, overwrite=True, seed_hash=None):$/;" m class:XCObject +ComputeMacBundleBinaryOutput tools/gyp/build/lib/gyp/generator/ninja.py /^ def ComputeMacBundleBinaryOutput(self):$/;" m class:NinjaWriter +ComputeMacBundleBinaryOutput tools/gyp/pylib/gyp/generator/ninja.py /^ def ComputeMacBundleBinaryOutput(self):$/;" m class:NinjaWriter +ComputeMacBundleOutput tools/gyp/build/lib/gyp/generator/ninja.py /^ def ComputeMacBundleOutput(self):$/;" m class:NinjaWriter +ComputeMacBundleOutput tools/gyp/pylib/gyp/generator/ninja.py /^ def ComputeMacBundleOutput(self):$/;" m class:NinjaWriter +ComputeOutput tools/gyp/build/lib/gyp/generator/android.py /^ def ComputeOutput(self, spec):$/;" m class:AndroidMkWriter +ComputeOutput tools/gyp/build/lib/gyp/generator/ninja.py /^ def ComputeOutput(self, spec, type=None):$/;" m class:NinjaWriter +ComputeOutput tools/gyp/pylib/gyp/generator/android.py /^ def ComputeOutput(self, spec):$/;" m class:AndroidMkWriter +ComputeOutput tools/gyp/pylib/gyp/generator/ninja.py /^ def ComputeOutput(self, spec, type=None):$/;" m class:NinjaWriter +ComputeOutputBasename tools/gyp/build/lib/gyp/generator/android.py /^ def ComputeOutputBasename(self, spec):$/;" m class:AndroidMkWriter +ComputeOutputBasename tools/gyp/pylib/gyp/generator/android.py /^ def ComputeOutputBasename(self, spec):$/;" m class:AndroidMkWriter +ComputeOutputFileName tools/gyp/build/lib/gyp/generator/ninja.py /^ def ComputeOutputFileName(self, spec, type=None):$/;" m class:NinjaWriter +ComputeOutputFileName tools/gyp/pylib/gyp/generator/ninja.py /^ def ComputeOutputFileName(self, spec, type=None):$/;" m class:NinjaWriter +ComputeOutputParts tools/gyp/build/lib/gyp/generator/android.py /^ def ComputeOutputParts(self, spec):$/;" m class:AndroidMkWriter +ComputeOutputParts tools/gyp/pylib/gyp/generator/android.py /^ def ComputeOutputParts(self, spec):$/;" m class:AndroidMkWriter +Compute_Funcs android/freetype/src/truetype/ttinterp.c /^ Compute_Funcs( EXEC_OP )$/;" f file: +Compute_Point_Displacement android/freetype/src/truetype/ttinterp.c /^ Compute_Point_Displacement( EXEC_OP_ FT_F26Dot6* x,$/;" f file: +Compute_Round android/freetype/src/truetype/ttinterp.c /^ Compute_Round( EXEC_OP_ FT_Byte round_mode )$/;" f file: +ConfigurationNamed tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def ConfigurationNamed(self, name):$/;" m class:XCConfigurationList +ConfigurationNamed tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def ConfigurationNamed(self, name):$/;" m class:XCTarget +ConfigurationNamed tools/gyp/pylib/gyp/xcodeproj_file.py /^ def ConfigurationNamed(self, name):$/;" m class:XCConfigurationList +ConfigurationNamed tools/gyp/pylib/gyp/xcodeproj_file.py /^ def ConfigurationNamed(self, name):$/;" m class:XCTarget +Conic_To android/freetype/src/raster/ftraster.c /^ Conic_To( RAS_ARGS Long cx,$/;" f file: +Const tools/gyp/build/lib/gyp/input.py /^from compiler.ast import Const$/;" i +Const tools/gyp/pylib/gyp/input.py /^from compiler.ast import Const$/;" i +ConvertToMSBuild tools/gyp/build/lib/gyp/MSVSSettings.py /^ def ConvertToMSBuild(self, value):$/;" m class:_Boolean +ConvertToMSBuild tools/gyp/build/lib/gyp/MSVSSettings.py /^ def ConvertToMSBuild(self, value):$/;" m class:_Enumeration +ConvertToMSBuild tools/gyp/build/lib/gyp/MSVSSettings.py /^ def ConvertToMSBuild(self, value):$/;" m class:_Integer +ConvertToMSBuild tools/gyp/build/lib/gyp/MSVSSettings.py /^ def ConvertToMSBuild(self, value):$/;" m class:_String +ConvertToMSBuild tools/gyp/build/lib/gyp/MSVSSettings.py /^ def ConvertToMSBuild(self, value):$/;" m class:_StringList +ConvertToMSBuild tools/gyp/build/lib/gyp/MSVSSettings.py /^ def ConvertToMSBuild(self, value):$/;" m class:_Type +ConvertToMSBuild tools/gyp/pylib/gyp/MSVSSettings.py /^ def ConvertToMSBuild(self, value):$/;" m class:_Boolean +ConvertToMSBuild tools/gyp/pylib/gyp/MSVSSettings.py /^ def ConvertToMSBuild(self, value):$/;" m class:_Enumeration +ConvertToMSBuild tools/gyp/pylib/gyp/MSVSSettings.py /^ def ConvertToMSBuild(self, value):$/;" m class:_Integer +ConvertToMSBuild tools/gyp/pylib/gyp/MSVSSettings.py /^ def ConvertToMSBuild(self, value):$/;" m class:_String +ConvertToMSBuild tools/gyp/pylib/gyp/MSVSSettings.py /^ def ConvertToMSBuild(self, value):$/;" m class:_StringList +ConvertToMSBuild tools/gyp/pylib/gyp/MSVSSettings.py /^ def ConvertToMSBuild(self, value):$/;" m class:_Type +ConvertToMSBuildSettings tools/gyp/build/lib/gyp/MSVSSettings.py /^def ConvertToMSBuildSettings(msvs_settings, stderr=sys.stderr):$/;" f +ConvertToMSBuildSettings tools/gyp/pylib/gyp/MSVSSettings.py /^def ConvertToMSBuildSettings(msvs_settings, stderr=sys.stderr):$/;" f +ConvertVCMacrosToMSBuild tools/gyp/build/lib/gyp/MSVSSettings.py /^def ConvertVCMacrosToMSBuild(s):$/;" f +ConvertVCMacrosToMSBuild tools/gyp/pylib/gyp/MSVSSettings.py /^def ConvertVCMacrosToMSBuild(s):$/;" f +ConvertVSMacros tools/gyp/build/lib/gyp/msvs_emulation.py /^ def ConvertVSMacros(self, s, base_to_build=None, config=None):$/;" m class:MsvsSettings +ConvertVSMacros tools/gyp/pylib/gyp/msvs_emulation.py /^ def ConvertVSMacros(self, s, base_to_build=None, config=None):$/;" m class:MsvsSettings +ConvertVariablesToShellSyntax tools/gyp/build/lib/gyp/xcodeproj_file.py /^def ConvertVariablesToShellSyntax(input_string):$/;" f +ConvertVariablesToShellSyntax tools/gyp/pylib/gyp/xcodeproj_file.py /^def ConvertVariablesToShellSyntax(input_string):$/;" f +Convert_Glyph android/freetype/src/raster/ftraster.c /^ Convert_Glyph( RAS_ARGS int flipped )$/;" f file: +Copy tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def Copy(self):$/;" m class:XCObject +Copy tools/gyp/pylib/gyp/xcodeproj_file.py /^ def Copy(self):$/;" m class:XCObject +CopyTool tools/gyp/build/lib/gyp/common.py /^def CopyTool(flavor, out_path):$/;" f +CopyTool tools/gyp/pylib/gyp/common.py /^def CopyTool(flavor, out_path):$/;" f +Cos src/include/math_type.h /^#define Cos(/;" d +CreateXCConfigurationList tools/gyp/build/lib/gyp/generator/xcode.py /^def CreateXCConfigurationList(configuration_names):$/;" f +CreateXCConfigurationList tools/gyp/pylib/gyp/generator/xcode.py /^def CreateXCConfigurationList(configuration_names):$/;" f +Created android/freetype/include/freetype/tttables.h /^ FT_Long Created [2];$/;" m struct:TT_Header_ +Created include/freetype/tttables.h /^ FT_Long Created [2];$/;" m struct:TT_Header_ +Cubic_To android/freetype/src/raster/ftraster.c /^ Cubic_To( RAS_ARGS Long cx1,$/;" f file: +Cur_Count android/freetype/src/truetype/ttinterp.h /^ FT_Long Cur_Count;$/;" m struct:TT_CallRec_ +Cur_Restart android/freetype/src/truetype/ttinterp.h /^ FT_Long Cur_Restart;$/;" m struct:TT_CallRec_ +Current_Ppem android/freetype/src/truetype/ttinterp.c /^ Current_Ppem( EXEC_OP )$/;" f file: +Current_Ratio android/freetype/src/truetype/ttinterp.c /^ Current_Ratio( EXEC_OP )$/;" f file: +CycleError tools/gyp/build/lib/gyp/common.py /^class CycleError(Exception):$/;" c +CycleError tools/gyp/pylib/gyp/common.py /^class CycleError(Exception):$/;" c +DARWIN_NO_CARBON android/freetype/include/freetype/config/ftconfig.h /^#define DARWIN_NO_CARBON /;" d +DARWIN_NO_CARBON include/freetype/config/ftconfig.h /^#define DARWIN_NO_CARBON /;" d +DEBUG_GENERAL tools/gyp/build/lib/gyp/__init__.py /^DEBUG_GENERAL = 'general'$/;" v +DEBUG_GENERAL tools/gyp/pylib/gyp/__init__.py /^DEBUG_GENERAL = 'general'$/;" v +DEBUG_INCLUDES tools/gyp/build/lib/gyp/__init__.py /^DEBUG_INCLUDES = 'includes'$/;" v +DEBUG_INCLUDES tools/gyp/pylib/gyp/__init__.py /^DEBUG_INCLUDES = 'includes'$/;" v +DEBUG_VARIABLES tools/gyp/build/lib/gyp/__init__.py /^DEBUG_VARIABLES = 'variables'$/;" v +DEBUG_VARIABLES tools/gyp/pylib/gyp/__init__.py /^DEBUG_VARIABLES = 'variables'$/;" v +DEFAULT_ATTRIBUTE android/expat/lib/xmlparse.c /^} DEFAULT_ATTRIBUTE;$/;" t typeref:struct:__anon14 file: +DEFAULT_VERTEICES src/core/graphic_path.cpp /^#define DEFAULT_VERTEICES /;" d file: +DEFINE_UTF16_TO_UTF16 android/expat/lib/xmltok.c /^#define DEFINE_UTF16_TO_UTF16(/;" d file: +DEFINE_UTF16_TO_UTF8 android/expat/lib/xmltok.c /^#define DEFINE_UTF16_TO_UTF8(/;" d file: +DOWNSCALE android/freetype/src/smooth/ftgrays.c /^#define DOWNSCALE(/;" d file: +DO_ABS android/freetype/src/truetype/ttinterp.c /^#define DO_ABS /;" d file: +DO_ADD android/freetype/src/truetype/ttinterp.c /^#define DO_ADD /;" d file: +DO_AND android/freetype/src/truetype/ttinterp.c /^#define DO_AND /;" d file: +DO_CEILING android/freetype/src/truetype/ttinterp.c /^#define DO_CEILING /;" d file: +DO_CINDEX android/freetype/src/truetype/ttinterp.c /^#define DO_CINDEX /;" d file: +DO_CLEAR android/freetype/src/truetype/ttinterp.c /^#define DO_CLEAR /;" d file: +DO_DEBUG android/freetype/src/truetype/ttinterp.c /^#define DO_DEBUG /;" d file: +DO_DEPTH android/freetype/src/truetype/ttinterp.c /^#define DO_DEPTH /;" d file: +DO_DIV android/freetype/src/truetype/ttinterp.c /^#define DO_DIV /;" d file: +DO_DUP android/freetype/src/truetype/ttinterp.c /^#define DO_DUP /;" d file: +DO_EQ android/freetype/src/truetype/ttinterp.c /^#define DO_EQ /;" d file: +DO_EVEN android/freetype/src/truetype/ttinterp.c /^#define DO_EVEN /;" d file: +DO_FLIPOFF android/freetype/src/truetype/ttinterp.c /^#define DO_FLIPOFF /;" d file: +DO_FLIPON android/freetype/src/truetype/ttinterp.c /^#define DO_FLIPON /;" d file: +DO_FLOOR android/freetype/src/truetype/ttinterp.c /^#define DO_FLOOR /;" d file: +DO_GFV android/freetype/src/truetype/ttinterp.c /^#define DO_GFV /;" d file: +DO_GPV android/freetype/src/truetype/ttinterp.c /^#define DO_GPV /;" d file: +DO_GT android/freetype/src/truetype/ttinterp.c /^#define DO_GT /;" d file: +DO_GTEQ android/freetype/src/truetype/ttinterp.c /^#define DO_GTEQ /;" d file: +DO_JMPR android/freetype/src/truetype/ttinterp.c /^#define DO_JMPR /;" d file: +DO_JROF android/freetype/src/truetype/ttinterp.c /^#define DO_JROF /;" d file: +DO_JROT android/freetype/src/truetype/ttinterp.c /^#define DO_JROT /;" d file: +DO_LEAD_CASE android/expat/lib/xmltok_impl.c /^#undef DO_LEAD_CASE$/;" d file: +DO_LT android/freetype/src/truetype/ttinterp.c /^#define DO_LT /;" d file: +DO_LTEQ android/freetype/src/truetype/ttinterp.c /^#define DO_LTEQ /;" d file: +DO_MAX android/freetype/src/truetype/ttinterp.c /^#define DO_MAX /;" d file: +DO_MD android/freetype/src/truetype/ttinterp.c /^#define DO_MD /;" d file: +DO_MIN android/freetype/src/truetype/ttinterp.c /^#define DO_MIN /;" d file: +DO_MPPEM android/freetype/src/truetype/ttinterp.c /^#define DO_MPPEM /;" d file: +DO_MPS android/freetype/src/truetype/ttinterp.c /^#define DO_MPS /;" d file: +DO_MUL android/freetype/src/truetype/ttinterp.c /^#define DO_MUL /;" d file: +DO_NEG android/freetype/src/truetype/ttinterp.c /^#define DO_NEG /;" d file: +DO_NEQ android/freetype/src/truetype/ttinterp.c /^#define DO_NEQ /;" d file: +DO_NOT android/freetype/src/truetype/ttinterp.c /^#define DO_NOT /;" d file: +DO_NROUND android/freetype/src/truetype/ttinterp.c /^#define DO_NROUND /;" d file: +DO_ODD android/freetype/src/truetype/ttinterp.c /^#define DO_ODD /;" d file: +DO_OR android/freetype/src/truetype/ttinterp.c /^#define DO_OR /;" d file: +DO_RCVT android/freetype/src/truetype/ttinterp.c /^#define DO_RCVT /;" d file: +DO_RDTG android/freetype/src/truetype/ttinterp.c /^#define DO_RDTG /;" d file: +DO_ROFF android/freetype/src/truetype/ttinterp.c /^#define DO_ROFF /;" d file: +DO_ROUND android/freetype/src/truetype/ttinterp.c /^#define DO_ROUND /;" d file: +DO_RS android/freetype/src/truetype/ttinterp.c /^#define DO_RS /;" d file: +DO_RTDG android/freetype/src/truetype/ttinterp.c /^#define DO_RTDG /;" d file: +DO_RTG android/freetype/src/truetype/ttinterp.c /^#define DO_RTG /;" d file: +DO_RTHG android/freetype/src/truetype/ttinterp.c /^#define DO_RTHG /;" d file: +DO_RUTG android/freetype/src/truetype/ttinterp.c /^#define DO_RUTG /;" d file: +DO_S45ROUND android/freetype/src/truetype/ttinterp.c /^#define DO_S45ROUND /;" d file: +DO_SCVTCI android/freetype/src/truetype/ttinterp.c /^#define DO_SCVTCI /;" d file: +DO_SDB android/freetype/src/truetype/ttinterp.c /^#define DO_SDB /;" d file: +DO_SDS android/freetype/src/truetype/ttinterp.c /^#define DO_SDS /;" d file: +DO_SFVFS android/freetype/src/truetype/ttinterp.c /^#define DO_SFVFS /;" d file: +DO_SFVTCA android/freetype/src/truetype/ttinterp.c /^#define DO_SFVTCA /;" d file: +DO_SFVTL android/freetype/src/truetype/ttinterp.c /^#define DO_SFVTL /;" d file: +DO_SFVTPV android/freetype/src/truetype/ttinterp.c /^#define DO_SFVTPV /;" d file: +DO_SLOOP android/freetype/src/truetype/ttinterp.c /^#define DO_SLOOP /;" d file: +DO_SMD android/freetype/src/truetype/ttinterp.c /^#define DO_SMD /;" d file: +DO_SPVFS android/freetype/src/truetype/ttinterp.c /^#define DO_SPVFS /;" d file: +DO_SPVTCA android/freetype/src/truetype/ttinterp.c /^#define DO_SPVTCA /;" d file: +DO_SPVTL android/freetype/src/truetype/ttinterp.c /^#define DO_SPVTL /;" d file: +DO_SROUND android/freetype/src/truetype/ttinterp.c /^#define DO_SROUND /;" d file: +DO_SRP0 android/freetype/src/truetype/ttinterp.c /^#define DO_SRP0 /;" d file: +DO_SRP1 android/freetype/src/truetype/ttinterp.c /^#define DO_SRP1 /;" d file: +DO_SRP2 android/freetype/src/truetype/ttinterp.c /^#define DO_SRP2 /;" d file: +DO_SSW android/freetype/src/truetype/ttinterp.c /^#define DO_SSW /;" d file: +DO_SSWCI android/freetype/src/truetype/ttinterp.c /^#define DO_SSWCI /;" d file: +DO_SUB android/freetype/src/truetype/ttinterp.c /^#define DO_SUB /;" d file: +DO_SVTCA android/freetype/src/truetype/ttinterp.c /^#define DO_SVTCA /;" d file: +DO_SWAP android/freetype/src/truetype/ttinterp.c /^#define DO_SWAP /;" d file: +DO_WCVTF android/freetype/src/truetype/ttinterp.c /^#define DO_WCVTF /;" d file: +DO_WCVTP android/freetype/src/truetype/ttinterp.c /^#define DO_WCVTP /;" d file: +DO_WS android/freetype/src/truetype/ttinterp.c /^#define DO_WS /;" d file: +DRAW_TEXT_BOTH include/picasso.h /^ DRAW_TEXT_BOTH,$/;" e enum:_ps_draw_text_type +DRAW_TEXT_FILL include/picasso.h /^ DRAW_TEXT_FILL,$/;" e enum:_ps_draw_text_type +DRAW_TEXT_STROKE include/picasso.h /^ DRAW_TEXT_STROKE,$/;" e enum:_ps_draw_text_type +DTD android/expat/lib/xmlparse.c /^} DTD;$/;" t typeref:struct:__anon17 file: +DebugOutput tools/gyp/build/lib/gyp/__init__.py /^def DebugOutput(mode, message):$/;" f +DebugOutput tools/gyp/pylib/gyp/__init__.py /^def DebugOutput(mode, message):$/;" f +Decompose_Curve android/freetype/src/raster/ftraster.c /^ Decompose_Curve( RAS_ARGS UShort first,$/;" f file: +DeepDependencies tools/gyp/build/lib/gyp/input.py /^ def DeepDependencies(self, dependencies=None):$/;" m class:DependencyGraphNode +DeepDependencies tools/gyp/pylib/gyp/input.py /^ def DeepDependencies(self, dependencies=None):$/;" m class:DependencyGraphNode +DeepDependencyTargets tools/gyp/build/lib/gyp/common.py /^def DeepDependencyTargets(target_dicts, roots):$/;" f +DeepDependencyTargets tools/gyp/pylib/gyp/common.py /^def DeepDependencyTargets(target_dicts, roots):$/;" f +DefaultConfiguration tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def DefaultConfiguration(self):$/;" m class:XCConfigurationList +DefaultConfiguration tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def DefaultConfiguration(self):$/;" m class:XCTarget +DefaultConfiguration tools/gyp/pylib/gyp/xcodeproj_file.py /^ def DefaultConfiguration(self):$/;" m class:XCConfigurationList +DefaultConfiguration tools/gyp/pylib/gyp/xcodeproj_file.py /^ def DefaultConfiguration(self):$/;" m class:XCTarget +DefaultToolset tools/gyp/build/lib/gyp/MSVSVersion.py /^ def DefaultToolset(self):$/;" m class:VisualStudioVersion +DefaultToolset tools/gyp/pylib/gyp/MSVSVersion.py /^ def DefaultToolset(self):$/;" m class:VisualStudioVersion +Define tools/gyp/build/lib/gyp/generator/ninja.py /^def Define(d, flavor):$/;" f +Define tools/gyp/pylib/gyp/generator/ninja.py /^def Define(d, flavor):$/;" f +DelBuildSetting tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def DelBuildSetting(self, key):$/;" m class:XCBuildConfiguration +DelBuildSetting tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def DelBuildSetting(self, key):$/;" m class:XCConfigurationList +DelBuildSetting tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def DelBuildSetting(self, key):$/;" m class:XCTarget +DelBuildSetting tools/gyp/pylib/gyp/xcodeproj_file.py /^ def DelBuildSetting(self, key):$/;" m class:XCBuildConfiguration +DelBuildSetting tools/gyp/pylib/gyp/xcodeproj_file.py /^ def DelBuildSetting(self, key):$/;" m class:XCConfigurationList +DelBuildSetting tools/gyp/pylib/gyp/xcodeproj_file.py /^ def DelBuildSetting(self, key):$/;" m class:XCTarget +DelOld android/freetype/src/raster/ftraster.c /^ DelOld( PProfileList list,$/;" f file: +DelProperty tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def DelProperty(self, key):$/;" m class:XCObject +DelProperty tools/gyp/pylib/gyp/xcodeproj_file.py /^ def DelProperty(self, key):$/;" m class:XCObject +DependencyGraphNode tools/gyp/build/lib/gyp/input.py /^class DependencyGraphNode(object):$/;" c +DependencyGraphNode tools/gyp/pylib/gyp/input.py /^class DependencyGraphNode(object):$/;" c +Descendants tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def Descendants(self):$/;" m class:XCObject +Descendants tools/gyp/pylib/gyp/xcodeproj_file.py /^ def Descendants(self):$/;" m class:XCObject +Descender android/freetype/include/freetype/internal/t1types.h /^ FT_Fixed Descender;$/;" m struct:AFM_FontInfoRec_ +Descender android/freetype/include/freetype/tttables.h /^ FT_Short Descender;$/;" m struct:TT_HoriHeader_ +Descender android/freetype/include/freetype/tttables.h /^ FT_Short Descender;$/;" m struct:TT_VertHeader_ +Descender include/freetype/internal/t1types.h /^ FT_Fixed Descender;$/;" m struct:AFM_FontInfoRec_ +Descender include/freetype/tttables.h /^ FT_Short Descender;$/;" m struct:TT_HoriHeader_ +Descender include/freetype/tttables.h /^ FT_Short Descender;$/;" m struct:TT_VertHeader_ +Descending_State android/freetype/src/raster/ftraster.c /^ Descending_State,$/;" e enum:TStates_ file: +Description tools/gyp/build/lib/gyp/MSVSVersion.py /^ def Description(self):$/;" m class:VisualStudioVersion +Description tools/gyp/pylib/gyp/MSVSVersion.py /^ def Description(self):$/;" m class:VisualStudioVersion +Destroy_Driver android/freetype/src/base/ftobjs.c /^ Destroy_Driver( FT_Driver driver )$/;" f file: +Destroy_Module android/freetype/src/base/ftobjs.c /^ Destroy_Module( FT_Module module )$/;" f file: +Dict tools/gyp/build/lib/gyp/input.py /^from compiler.ast import Dict$/;" i +Dict tools/gyp/pylib/gyp/input.py /^from compiler.ast import Dict$/;" i +DirectAndImportedDependencies tools/gyp/build/lib/gyp/input.py /^ def DirectAndImportedDependencies(self, targets, dependencies=None):$/;" m class:DependencyGraphNode +DirectAndImportedDependencies tools/gyp/pylib/gyp/input.py /^ def DirectAndImportedDependencies(self, targets, dependencies=None):$/;" m class:DependencyGraphNode +DirectDependencies tools/gyp/build/lib/gyp/input.py /^ def DirectDependencies(self, dependencies=None):$/;" m class:DependencyGraphNode +DirectDependencies tools/gyp/pylib/gyp/input.py /^ def DirectDependencies(self, dependencies=None):$/;" m class:DependencyGraphNode +Direct_Move android/freetype/src/truetype/ttinterp.c /^ Direct_Move( EXEC_OP_ TT_GlyphZone zone,$/;" f file: +Direct_Move_Orig android/freetype/src/truetype/ttinterp.c /^ Direct_Move_Orig( EXEC_OP_ TT_GlyphZone zone,$/;" f file: +Direct_Move_Orig_X android/freetype/src/truetype/ttinterp.c /^ Direct_Move_Orig_X( EXEC_OP_ TT_GlyphZone zone,$/;" f file: +Direct_Move_Orig_Y android/freetype/src/truetype/ttinterp.c /^ Direct_Move_Orig_Y( EXEC_OP_ TT_GlyphZone zone,$/;" f file: +Direct_Move_X android/freetype/src/truetype/ttinterp.c /^ Direct_Move_X( EXEC_OP_ TT_GlyphZone zone,$/;" f file: +Direct_Move_Y android/freetype/src/truetype/ttinterp.c /^ Direct_Move_Y( EXEC_OP_ TT_GlyphZone zone,$/;" f file: +DisableForSourceTree tools/gyp/build/lib/gyp/generator/msvs.py /^ def DisableForSourceTree(source_tree):$/;" f function:_HandlePreCompiledHeaders +DisableForSourceTree tools/gyp/pylib/gyp/generator/msvs.py /^ def DisableForSourceTree(source_tree):$/;" f function:_HandlePreCompiledHeaders +Discard tools/gyp/build/lib/gyp/input.py /^from compiler.ast import Discard$/;" i +Discard tools/gyp/pylib/gyp/input.py /^from compiler.ast import Discard$/;" i +Dispatch tools/gyp/build/lib/gyp/mac_tool.py /^ def Dispatch(self, args):$/;" m class:MacTool +Dispatch tools/gyp/build/lib/gyp/sun_tool.py /^ def Dispatch(self, args):$/;" m class:SunTool +Dispatch tools/gyp/build/lib/gyp/win_tool.py /^ def Dispatch(self, args):$/;" m class:WinTool +Dispatch tools/gyp/pylib/gyp/mac_tool.py /^ def Dispatch(self, args):$/;" m class:MacTool +Dispatch tools/gyp/pylib/gyp/sun_tool.py /^ def Dispatch(self, args):$/;" m class:SunTool +Dispatch tools/gyp/pylib/gyp/win_tool.py /^ def Dispatch(self, args):$/;" m class:WinTool +DoDependentSettings tools/gyp/build/lib/gyp/input.py /^def DoDependentSettings(key, flat_list, targets, dependency_nodes):$/;" f +DoDependentSettings tools/gyp/pylib/gyp/input.py /^def DoDependentSettings(key, flat_list, targets, dependency_nodes):$/;" f +Draw_Sweep android/freetype/src/raster/ftraster.c /^ Draw_Sweep( RAS_ARG )$/;" f file: +Dual_Project android/freetype/src/truetype/ttinterp.c /^ Dual_Project( EXEC_OP_ FT_Pos dx,$/;" f file: +ELEMENT_TYPE android/expat/lib/xmlparse.c /^} ELEMENT_TYPE;$/;" t typeref:struct:__anon16 file: +ELI src/picasso_gpc.cpp /^ ELI, \/* External left intermediate *\/$/;" e enum:picasso::__anon216 file: +EMM src/picasso_gpc.cpp /^ EMM, \/* External maximum and minimum *\/$/;" e enum:picasso::__anon216 file: +EMN src/picasso_gpc.cpp /^ EMN, \/* External minimum *\/$/;" e enum:picasso::__anon216 file: +EMX src/picasso_gpc.cpp /^ EMX, \/* External maximum *\/$/;" e enum:picasso::__anon216 file: +ENABLE src/include/platform.h /^#define ENABLE(/;" d +ENABLE_FORMAT_ABGR build/pconfig.h /^#define ENABLE_FORMAT_ABGR /;" d +ENABLE_FORMAT_ARGB android/jni/pconfig.h /^#define ENABLE_FORMAT_ARGB /;" d +ENABLE_FORMAT_ARGB build/pconfig.h /^#define ENABLE_FORMAT_ARGB /;" d +ENABLE_FORMAT_BGR build/pconfig.h /^#define ENABLE_FORMAT_BGR /;" d +ENABLE_FORMAT_BGRA build/pconfig.h /^#define ENABLE_FORMAT_BGRA /;" d +ENABLE_FORMAT_RGB build/pconfig.h /^#define ENABLE_FORMAT_RGB /;" d +ENABLE_FORMAT_RGB555 build/pconfig.h /^#define ENABLE_FORMAT_RGB555 /;" d +ENABLE_FORMAT_RGB565 android/jni/pconfig.h /^#define ENABLE_FORMAT_RGB565 /;" d +ENABLE_FORMAT_RGB565 build/pconfig.h /^#define ENABLE_FORMAT_RGB565 /;" d +ENABLE_FORMAT_RGBA build/pconfig.h /^#define ENABLE_FORMAT_RGBA /;" d +ENABLE_FREE_TYPE2 android/jni/pconfig.h /^#define ENABLE_FREE_TYPE2 /;" d +ENCODING android/expat/lib/xmltok.h /^typedef struct encoding ENCODING;$/;" t typeref:struct:encoding +ENCODING_MAX android/expat/lib/xmltok_ns.c /^#define ENCODING_MAX /;" d file: +ENTITY android/expat/lib/xmlparse.c /^} ENTITY;$/;" t typeref:struct:__anon11 file: +ENTRY_TYPE_GUIDS tools/gyp/build/lib/gyp/MSVSNew.py /^ENTRY_TYPE_GUIDS = {$/;" v +ENTRY_TYPE_GUIDS tools/gyp/pylib/gyp/MSVSNew.py /^ENTRY_TYPE_GUIDS = {$/;" v +EOF android/freetype/src/psaux/afmparse.c /^#define EOF /;" d file: +EQ src/picasso_gpc.cpp /^#define EQ(/;" d file: +ERI src/picasso_gpc.cpp /^ ERI, \/* External right intermediate *\/$/;" e enum:picasso::__anon216 file: +EVT_CONTROL demos/interface.h /^ EVT_CONTROL = 8,$/;" e enum:__anon39 +EVT_LBUTTON demos/interface.h /^ EVT_LBUTTON = 1,$/;" e enum:__anon39 +EVT_MBUTTON demos/interface.h /^ EVT_MBUTTON = 16,$/;" e enum:__anon39 +EVT_RBUTTON demos/interface.h /^ EVT_RBUTTON = 2,$/;" e enum:__anon39 +EVT_SHIFT demos/interface.h /^ EVT_SHIFT = 4,$/;" e enum:__anon39 +EXEC_ARG android/freetype/src/truetype/ttinterp.h /^#define EXEC_ARG /;" d +EXEC_ARG_ android/freetype/src/truetype/ttinterp.h /^#define EXEC_ARG_ /;" d +EXEC_OP android/freetype/src/truetype/ttinterp.h /^#define EXEC_OP /;" d +EXEC_OP_ android/freetype/src/truetype/ttinterp.h /^#define EXEC_OP_ /;" d +EXE_SUFFIX tools/gyp/buildbot/buildbot_run.py /^ EXE_SUFFIX = ''$/;" v +EXE_SUFFIX tools/gyp/buildbot/buildbot_run.py /^ EXE_SUFFIX = '.exe'$/;" v +EXPAND_SPARE android/expat/lib/xmlparse.c /^#define EXPAND_SPARE /;" d file: +EncodePOSIXShellArgument tools/gyp/build/lib/gyp/common.py /^def EncodePOSIXShellArgument(argument):$/;" f +EncodePOSIXShellArgument tools/gyp/pylib/gyp/common.py /^def EncodePOSIXShellArgument(argument):$/;" f +EncodePOSIXShellList tools/gyp/build/lib/gyp/common.py /^def EncodePOSIXShellList(list):$/;" f +EncodePOSIXShellList tools/gyp/pylib/gyp/common.py /^def EncodePOSIXShellList(list):$/;" f +EncodeRspFileList tools/gyp/build/lib/gyp/msvs_emulation.py /^def EncodeRspFileList(args):$/;" f +EncodeRspFileList tools/gyp/pylib/gyp/msvs_emulation.py /^def EncodeRspFileList(args):$/;" f +End_Profile android/freetype/src/raster/ftraster.c /^ End_Profile( RAS_ARG )$/;" f file: +EnsureNoIDCollisions tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def EnsureNoIDCollisions(self):$/;" m class:XCObject +EnsureNoIDCollisions tools/gyp/pylib/gyp/xcodeproj_file.py /^ def EnsureNoIDCollisions(self):$/;" m class:XCObject +ErrRaster_Invalid_Argument android/freetype/src/smooth/ftgrays.c /^#define ErrRaster_Invalid_Argument /;" d file: +ErrRaster_Invalid_Mode android/freetype/src/smooth/ftgrays.c /^#define ErrRaster_Invalid_Mode /;" d file: +ErrRaster_Invalid_Outline android/freetype/src/smooth/ftgrays.c /^#define ErrRaster_Invalid_Outline /;" d file: +ErrRaster_Memory_Overflow android/freetype/src/smooth/ftgrays.c /^#define ErrRaster_Memory_Overflow /;" d file: +EscapeCppDefine tools/gyp/build/lib/gyp/generator/make.py /^def EscapeCppDefine(s):$/;" f +EscapeCppDefine tools/gyp/build/lib/gyp/generator/scons.py /^def EscapeCppDefine(s):$/;" f +EscapeCppDefine tools/gyp/pylib/gyp/generator/make.py /^def EscapeCppDefine(s):$/;" f +EscapeCppDefine tools/gyp/pylib/gyp/generator/scons.py /^def EscapeCppDefine(s):$/;" f +EscapeMakeVariableExpansion tools/gyp/build/lib/gyp/generator/make.py /^def EscapeMakeVariableExpansion(s):$/;" f +EscapeMakeVariableExpansion tools/gyp/pylib/gyp/generator/make.py /^def EscapeMakeVariableExpansion(s):$/;" f +EscapeSConsVariableExpansion tools/gyp/build/lib/gyp/generator/scons.py /^def EscapeSConsVariableExpansion(s):$/;" f +EscapeSConsVariableExpansion tools/gyp/pylib/gyp/generator/scons.py /^def EscapeSConsVariableExpansion(s):$/;" f +EscapeShellArgument tools/gyp/build/lib/gyp/generator/make.py /^def EscapeShellArgument(s):$/;" f +EscapeShellArgument tools/gyp/build/lib/gyp/generator/scons.py /^def EscapeShellArgument(s):$/;" f +EscapeShellArgument tools/gyp/pylib/gyp/generator/make.py /^def EscapeShellArgument(s):$/;" f +EscapeShellArgument tools/gyp/pylib/gyp/generator/scons.py /^def EscapeShellArgument(s):$/;" f +EscapeXCodeArgument tools/gyp/build/lib/gyp/generator/xcode.py /^def EscapeXCodeArgument(s):$/;" f +EscapeXCodeArgument tools/gyp/pylib/gyp/generator/xcode.py /^def EscapeXCodeArgument(s):$/;" f +ExceptionAppend tools/gyp/build/lib/gyp/common.py /^def ExceptionAppend(e, msg):$/;" f +ExceptionAppend tools/gyp/pylib/gyp/common.py /^def ExceptionAppend(e, msg):$/;" f +ExecActionWrapper tools/gyp/build/lib/gyp/win_tool.py /^ def ExecActionWrapper(self, arch, rspfile, *dir):$/;" m class:WinTool +ExecActionWrapper tools/gyp/pylib/gyp/win_tool.py /^ def ExecActionWrapper(self, arch, rspfile, *dir):$/;" m class:WinTool +ExecAsmWrapper tools/gyp/build/lib/gyp/win_tool.py /^ def ExecAsmWrapper(self, arch, *args):$/;" m class:WinTool +ExecAsmWrapper tools/gyp/pylib/gyp/win_tool.py /^ def ExecAsmWrapper(self, arch, *args):$/;" m class:WinTool +ExecCopyBundleResource tools/gyp/build/lib/gyp/mac_tool.py /^ def ExecCopyBundleResource(self, source, dest):$/;" m class:MacTool +ExecCopyBundleResource tools/gyp/pylib/gyp/mac_tool.py /^ def ExecCopyBundleResource(self, source, dest):$/;" m class:MacTool +ExecCopyInfoPlist tools/gyp/build/lib/gyp/mac_tool.py /^ def ExecCopyInfoPlist(self, source, dest):$/;" m class:MacTool +ExecCopyInfoPlist tools/gyp/pylib/gyp/mac_tool.py /^ def ExecCopyInfoPlist(self, source, dest):$/;" m class:MacTool +ExecFilterLibtool tools/gyp/build/lib/gyp/mac_tool.py /^ def ExecFilterLibtool(self, *cmd_list):$/;" m class:MacTool +ExecFilterLibtool tools/gyp/pylib/gyp/mac_tool.py /^ def ExecFilterLibtool(self, *cmd_list):$/;" m class:MacTool +ExecFlock tools/gyp/build/lib/gyp/mac_tool.py /^ def ExecFlock(self, lockfile, *cmd_list):$/;" m class:MacTool +ExecFlock tools/gyp/build/lib/gyp/sun_tool.py /^ def ExecFlock(self, lockfile, *cmd_list):$/;" m class:SunTool +ExecFlock tools/gyp/pylib/gyp/mac_tool.py /^ def ExecFlock(self, lockfile, *cmd_list):$/;" m class:MacTool +ExecFlock tools/gyp/pylib/gyp/sun_tool.py /^ def ExecFlock(self, lockfile, *cmd_list):$/;" m class:SunTool +ExecLinkWrapper tools/gyp/build/lib/gyp/win_tool.py /^ def ExecLinkWrapper(self, arch, *args):$/;" m class:WinTool +ExecLinkWrapper tools/gyp/pylib/gyp/win_tool.py /^ def ExecLinkWrapper(self, arch, *args):$/;" m class:WinTool +ExecManifestWrapper tools/gyp/build/lib/gyp/win_tool.py /^ def ExecManifestWrapper(self, arch, *args):$/;" m class:WinTool +ExecManifestWrapper tools/gyp/pylib/gyp/win_tool.py /^ def ExecManifestWrapper(self, arch, *args):$/;" m class:WinTool +ExecMidlWrapper tools/gyp/build/lib/gyp/win_tool.py /^ def ExecMidlWrapper(self, arch, outdir, tlb, h, dlldata, iid, proxy, idl,$/;" m class:WinTool +ExecMidlWrapper tools/gyp/pylib/gyp/win_tool.py /^ def ExecMidlWrapper(self, arch, outdir, tlb, h, dlldata, iid, proxy, idl,$/;" m class:WinTool +ExecPackageFramework tools/gyp/build/lib/gyp/mac_tool.py /^ def ExecPackageFramework(self, framework, version):$/;" m class:MacTool +ExecPackageFramework tools/gyp/pylib/gyp/mac_tool.py /^ def ExecPackageFramework(self, framework, version):$/;" m class:MacTool +ExecRcWrapper tools/gyp/build/lib/gyp/win_tool.py /^ def ExecRcWrapper(self, arch, *args):$/;" m class:WinTool +ExecRcWrapper tools/gyp/pylib/gyp/win_tool.py /^ def ExecRcWrapper(self, arch, *args):$/;" m class:WinTool +ExecRecursiveMirror tools/gyp/build/lib/gyp/win_tool.py /^ def ExecRecursiveMirror(self, source, dest):$/;" m class:WinTool +ExecRecursiveMirror tools/gyp/pylib/gyp/win_tool.py /^ def ExecRecursiveMirror(self, source, dest):$/;" m class:WinTool +ExecStamp tools/gyp/build/lib/gyp/win_tool.py /^ def ExecStamp(self, path):$/;" m class:WinTool +ExecStamp tools/gyp/pylib/gyp/win_tool.py /^ def ExecStamp(self, path):$/;" m class:WinTool +Exp src/include/math_type.h /^#define Exp(/;" d +ExpandEnvVars tools/gyp/build/lib/gyp/xcode_emulation.py /^def ExpandEnvVars(string, expansions):$/;" f +ExpandEnvVars tools/gyp/pylib/gyp/xcode_emulation.py /^def ExpandEnvVars(string, expansions):$/;" f +ExpandInputRoot tools/gyp/build/lib/gyp/generator/android.py /^ def ExpandInputRoot(self, template, expansion, dirname):$/;" m class:AndroidMkWriter +ExpandInputRoot tools/gyp/pylib/gyp/generator/android.py /^ def ExpandInputRoot(self, template, expansion, dirname):$/;" m class:AndroidMkWriter +ExpandMacros tools/gyp/build/lib/gyp/msvs_emulation.py /^def ExpandMacros(string, expansions):$/;" f +ExpandMacros tools/gyp/pylib/gyp/msvs_emulation.py /^def ExpandMacros(string, expansions):$/;" f +ExpandRuleVariables tools/gyp/build/lib/gyp/generator/ninja.py /^ def ExpandRuleVariables(self, path, root, dirname, source, ext, name):$/;" m class:NinjaWriter +ExpandRuleVariables tools/gyp/pylib/gyp/generator/ninja.py /^ def ExpandRuleVariables(self, path, root, dirname, source, ext, name):$/;" m class:NinjaWriter +ExpandSpecial tools/gyp/build/lib/gyp/generator/ninja.py /^ def ExpandSpecial(self, path, product_dir=None):$/;" m class:NinjaWriter +ExpandSpecial tools/gyp/pylib/gyp/generator/ninja.py /^ def ExpandSpecial(self, path, product_dir=None):$/;" m class:NinjaWriter +ExpandVariables tools/gyp/build/lib/gyp/input.py /^def ExpandVariables(input, phase, variables, build_file):$/;" f +ExpandVariables tools/gyp/pylib/gyp/input.py /^def ExpandVariables(input, phase, variables, build_file):$/;" f +ExpandWildcardDependencies tools/gyp/build/lib/gyp/input.py /^def ExpandWildcardDependencies(targets, data):$/;" f +ExpandWildcardDependencies tools/gyp/pylib/gyp/input.py /^def ExpandWildcardDependencies(targets, data):$/;" f +ExpandXcodeVariables tools/gyp/build/lib/gyp/generator/xcode.py /^def ExpandXcodeVariables(string, expansions):$/;" f +ExpandXcodeVariables tools/gyp/pylib/gyp/generator/xcode.py /^def ExpandXcodeVariables(string, expansions):$/;" f +Expat_External_INCLUDED android/expat/lib/expat_external.h /^#define Expat_External_INCLUDED /;" d +Expat_External_INCLUDED include/expat_external.h /^#define Expat_External_INCLUDED /;" d +Expat_INCLUDED android/expat/lib/expat.h /^#define Expat_INCLUDED /;" d +Expat_INCLUDED include/expat.h /^#define Expat_INCLUDED /;" d +ExtractIncludesFromCFlags tools/gyp/build/lib/gyp/generator/android.py /^ def ExtractIncludesFromCFlags(self, cflags):$/;" m class:AndroidMkWriter +ExtractIncludesFromCFlags tools/gyp/pylib/gyp/generator/android.py /^ def ExtractIncludesFromCFlags(self, cflags):$/;" m class:AndroidMkWriter +F2DOT14_TO_FIXED android/freetype/include/freetype/internal/ftcalc.h /^#define F2DOT14_TO_FIXED(/;" d +F2DOT14_TO_FIXED include/freetype/internal/ftcalc.h /^#define F2DOT14_TO_FIXED(/;" d +FAILURE android/freetype/src/raster/ftraster.c /^#define FAILURE /;" d file: +FAILURE android/freetype/src/truetype/ttinterp.c /^#define FAILURE /;" d file: +FAILURE android/freetype/src/truetype/ttinterp.c /^#undef FAILURE$/;" d file: +FALSE android/freetype/include/freetype/internal/ftobjs.h /^#define FALSE /;" d +FALSE android/freetype/src/raster/ftraster.c /^#define FALSE /;" d file: +FALSE include/freetype/internal/ftobjs.h /^#define FALSE /;" d +FASTCALL android/expat/lib/internal.h /^#define FASTCALL /;" d +FASTCALL android/expat/lib/internal.h /^#define FASTCALL$/;" d +FDefs android/freetype/src/truetype/ttinterp.h /^ TT_DefArray FDefs; \/* table of FDefs entries *\/$/;" m struct:TT_ExecContextRec_ +FIA_FILL_RULE src/picasso_raster_adapter.h /^ FIA_FILL_RULE,$/;" e enum:__anon229 +FILL_RULE_ERROR include/picasso.h /^ FILL_RULE_ERROR,$/;" e enum:_ps_fill_rule +FILL_RULE_EVEN_ODD include/picasso.h /^ FILL_RULE_EVEN_ODD,$/;" e enum:_ps_fill_rule +FILL_RULE_WINDING include/picasso.h /^ FILL_RULE_WINDING,$/;" e enum:_ps_fill_rule +FILTER_BILINEAR include/picasso.h /^ FILTER_BILINEAR,$/;" e enum:_ps_filter +FILTER_GAUSSIAN include/picasso.h /^ FILTER_GAUSSIAN,$/;" e enum:_ps_filter +FILTER_NEAREST include/picasso.h /^ FILTER_NEAREST,$/;" e enum:_ps_filter +FILTER_UNKNOWN include/picasso.h /^ FILTER_UNKNOWN,$/;" e enum:_ps_filter +FIXED_0_5 src/include/fixedopt.h /^#define FIXED_0_5 /;" d +FIXED_1 src/include/fixedopt.h /^#define FIXED_1 /;" d +FIXED_BITS src/include/fixedopt.h /^#define FIXED_BITS /;" d +FIXED_FRACTION src/include/fixedopt.h /^#define FIXED_FRACTION(/;" d +FIXED_MAX src/include/fixedopt.h /^#define FIXED_MAX /;" d +FIXED_MIN src/include/fixedopt.h /^#define FIXED_MIN /;" d +FIXED_Q src/include/fixedopt.h /^#define FIXED_Q /;" d +FIXED_TO_INT include/freetype/internal/ftcalc.h /^#define FIXED_TO_INT(/;" d +FIXED_VALID src/include/fixedopt.h /^#define FIXED_VALID(/;" d +FLOAT_F_MAX src/include/fixedopt.h /^#define FLOAT_F_MAX /;" d +FLOAT_F_MIN src/include/fixedopt.h /^#define FLOAT_F_MIN /;" d +FLOAT_TO_FIXED android/freetype/include/freetype/internal/ftcalc.h /^#define FLOAT_TO_FIXED(/;" d +FLOAT_TO_FIXED include/freetype/internal/ftcalc.h /^#define FLOAT_TO_FIXED(/;" d +FLOOR android/freetype/src/raster/ftraster.c /^#define FLOOR(/;" d file: +FLOOR android/freetype/src/smooth/ftgrays.c /^#define FLOOR(/;" d file: +FLT_TO_SCALAR src/include/math_type.h /^#define FLT_TO_SCALAR(/;" d +FMulDiv android/freetype/src/raster/ftraster.c /^#define FMulDiv(/;" d file: +FONT_WEIGHT_BOLD include/picasso.h /^ FONT_WEIGHT_BOLD = 700,$/;" e enum:_ps_font_weight +FONT_WEIGHT_HEAVY include/picasso.h /^ FONT_WEIGHT_HEAVY = 900,$/;" e enum:_ps_font_weight +FONT_WEIGHT_MEDIUM include/picasso.h /^ FONT_WEIGHT_MEDIUM = 500,$/;" e enum:_ps_font_weight +FONT_WEIGHT_REGULAR include/picasso.h /^ FONT_WEIGHT_REGULAR = 400,$/;" e enum:_ps_font_weight +FRAC android/freetype/src/raster/ftraster.c /^#define FRAC(/;" d file: +FREE android/expat/lib/xmlparse.c /^#define FREE(/;" d file: +FREETYPE_MAJOR android/freetype/include/freetype/freetype.h /^#define FREETYPE_MAJOR /;" d +FREETYPE_MAJOR include/freetype/freetype.h /^#define FREETYPE_MAJOR /;" d +FREETYPE_MINOR android/freetype/include/freetype/freetype.h /^#define FREETYPE_MINOR /;" d +FREETYPE_MINOR include/freetype/freetype.h /^#define FREETYPE_MINOR /;" d +FREETYPE_PATCH android/freetype/include/freetype/freetype.h /^#define FREETYPE_PATCH /;" d +FREETYPE_PATCH include/freetype/freetype.h /^#define FREETYPE_PATCH /;" d +FREETYPE_VER_FIXED android/freetype/src/base/ftobjs.c /^#define FREETYPE_VER_FIXED /;" d file: +FTC_CMapCache android/freetype/include/freetype/ftcache.h /^ typedef struct FTC_CMapCacheRec_* FTC_CMapCache;$/;" t typeref:struct:FTC_CMapCacheRec_ +FTC_CMapCache include/freetype/ftcache.h /^ typedef struct FTC_CMapCacheRec_* FTC_CMapCache;$/;" t typeref:struct:FTC_CMapCacheRec_ +FTC_FACE_ID_HASH android/freetype/include/freetype/ftcache.h /^#define FTC_FACE_ID_HASH(/;" d +FTC_FACE_ID_HASH include/freetype/ftcache.h /^#define FTC_FACE_ID_HASH(/;" d +FTC_FONT_COMPARE android/freetype/include/freetype/ftcache.h /^#define FTC_FONT_COMPARE(/;" d +FTC_FONT_COMPARE include/freetype/ftcache.h /^#define FTC_FONT_COMPARE(/;" d +FTC_FONT_HASH android/freetype/include/freetype/ftcache.h /^#define FTC_FONT_HASH(/;" d +FTC_FONT_HASH include/freetype/ftcache.h /^#define FTC_FONT_HASH(/;" d +FTC_FaceID android/freetype/include/freetype/ftcache.h /^ typedef FT_Pointer FTC_FaceID;$/;" t +FTC_FaceID include/freetype/ftcache.h /^ typedef FT_Pointer FTC_FaceID;$/;" t +FTC_Face_Requester android/freetype/include/freetype/ftcache.h /^ (*FTC_Face_Requester)( FTC_FaceID face_id,$/;" t +FTC_Face_Requester include/freetype/ftcache.h /^ (*FTC_Face_Requester)( FTC_FaceID face_id,$/;" t +FTC_Font android/freetype/include/freetype/ftcache.h /^ typedef FTC_FontRec* FTC_Font;$/;" t +FTC_Font include/freetype/ftcache.h /^ typedef FTC_FontRec* FTC_Font;$/;" t +FTC_FontRec android/freetype/include/freetype/ftcache.h /^ } FTC_FontRec;$/;" t typeref:struct:FTC_FontRec_ +FTC_FontRec include/freetype/ftcache.h /^ } FTC_FontRec;$/;" t typeref:struct:FTC_FontRec_ +FTC_FontRec_ android/freetype/include/freetype/ftcache.h /^ typedef struct FTC_FontRec_$/;" s +FTC_FontRec_ include/freetype/ftcache.h /^ typedef struct FTC_FontRec_$/;" s +FTC_IMAGE_TYPE_COMPARE android/freetype/include/freetype/ftcache.h /^#define FTC_IMAGE_TYPE_COMPARE(/;" d +FTC_IMAGE_TYPE_COMPARE include/freetype/ftcache.h /^#define FTC_IMAGE_TYPE_COMPARE(/;" d +FTC_IMAGE_TYPE_HASH android/freetype/include/freetype/ftcache.h /^#define FTC_IMAGE_TYPE_HASH(/;" d +FTC_IMAGE_TYPE_HASH include/freetype/ftcache.h /^#define FTC_IMAGE_TYPE_HASH(/;" d +FTC_ImageCache android/freetype/include/freetype/ftcache.h /^ typedef struct FTC_ImageCacheRec_* FTC_ImageCache;$/;" t typeref:struct:FTC_ImageCacheRec_ +FTC_ImageCache include/freetype/ftcache.h /^ typedef struct FTC_ImageCacheRec_* FTC_ImageCache;$/;" t typeref:struct:FTC_ImageCacheRec_ +FTC_ImageType android/freetype/include/freetype/ftcache.h /^ typedef struct FTC_ImageTypeRec_* FTC_ImageType;$/;" t typeref:struct:FTC_ImageTypeRec_ +FTC_ImageType include/freetype/ftcache.h /^ typedef struct FTC_ImageTypeRec_* FTC_ImageType;$/;" t typeref:struct:FTC_ImageTypeRec_ +FTC_ImageTypeRec android/freetype/include/freetype/ftcache.h /^ } FTC_ImageTypeRec;$/;" t typeref:struct:FTC_ImageTypeRec_ +FTC_ImageTypeRec include/freetype/ftcache.h /^ } FTC_ImageTypeRec;$/;" t typeref:struct:FTC_ImageTypeRec_ +FTC_ImageTypeRec_ android/freetype/include/freetype/ftcache.h /^ typedef struct FTC_ImageTypeRec_$/;" s +FTC_ImageTypeRec_ include/freetype/ftcache.h /^ typedef struct FTC_ImageTypeRec_$/;" s +FTC_Manager android/freetype/include/freetype/ftcache.h /^ typedef struct FTC_ManagerRec_* FTC_Manager;$/;" t typeref:struct:FTC_ManagerRec_ +FTC_Manager include/freetype/ftcache.h /^ typedef struct FTC_ManagerRec_* FTC_Manager;$/;" t typeref:struct:FTC_ManagerRec_ +FTC_Node android/freetype/include/freetype/ftcache.h /^ typedef struct FTC_NodeRec_* FTC_Node;$/;" t typeref:struct:FTC_NodeRec_ +FTC_Node include/freetype/ftcache.h /^ typedef struct FTC_NodeRec_* FTC_Node;$/;" t typeref:struct:FTC_NodeRec_ +FTC_SBit android/freetype/include/freetype/ftcache.h /^ typedef struct FTC_SBitRec_* FTC_SBit;$/;" t typeref:struct:FTC_SBitRec_ +FTC_SBit include/freetype/ftcache.h /^ typedef struct FTC_SBitRec_* FTC_SBit;$/;" t typeref:struct:FTC_SBitRec_ +FTC_SBitCache android/freetype/include/freetype/ftcache.h /^ typedef struct FTC_SBitCacheRec_* FTC_SBitCache;$/;" t typeref:struct:FTC_SBitCacheRec_ +FTC_SBitCache include/freetype/ftcache.h /^ typedef struct FTC_SBitCacheRec_* FTC_SBitCache;$/;" t typeref:struct:FTC_SBitCacheRec_ +FTC_SBitRec android/freetype/include/freetype/ftcache.h /^ } FTC_SBitRec;$/;" t typeref:struct:FTC_SBitRec_ +FTC_SBitRec include/freetype/ftcache.h /^ } FTC_SBitRec;$/;" t typeref:struct:FTC_SBitRec_ +FTC_SBitRec_ android/freetype/include/freetype/ftcache.h /^ typedef struct FTC_SBitRec_$/;" s +FTC_SBitRec_ include/freetype/ftcache.h /^ typedef struct FTC_SBitRec_$/;" s +FTC_Scaler android/freetype/include/freetype/ftcache.h /^ typedef struct FTC_ScalerRec_* FTC_Scaler;$/;" t typeref:struct:FTC_ScalerRec_ +FTC_Scaler include/freetype/ftcache.h /^ typedef struct FTC_ScalerRec_* FTC_Scaler;$/;" t typeref:struct:FTC_ScalerRec_ +FTC_ScalerRec android/freetype/include/freetype/ftcache.h /^ } FTC_ScalerRec;$/;" t typeref:struct:FTC_ScalerRec_ +FTC_ScalerRec include/freetype/ftcache.h /^ } FTC_ScalerRec;$/;" t typeref:struct:FTC_ScalerRec_ +FTC_ScalerRec_ android/freetype/include/freetype/ftcache.h /^ typedef struct FTC_ScalerRec_$/;" s +FTC_ScalerRec_ include/freetype/ftcache.h /^ typedef struct FTC_ScalerRec_$/;" s +FTRenderer_getCBox android/freetype/include/freetype/ftrender.h /^#define FTRenderer_getCBox /;" d +FTRenderer_getCBox include/freetype/ftrender.h /^#define FTRenderer_getCBox /;" d +FTRenderer_render android/freetype/include/freetype/ftrender.h /^#define FTRenderer_render /;" d +FTRenderer_render include/freetype/ftrender.h /^#define FTRenderer_render /;" d +FTRenderer_setMode android/freetype/include/freetype/ftrender.h /^#define FTRenderer_setMode /;" d +FTRenderer_setMode include/freetype/ftrender.h /^#define FTRenderer_setMode /;" d +FTRenderer_transform android/freetype/include/freetype/ftrender.h /^#define FTRenderer_transform /;" d +FTRenderer_transform include/freetype/ftrender.h /^#define FTRenderer_transform /;" d +FT_ABS android/freetype/include/freetype/internal/ftobjs.h /^#define FT_ABS(/;" d +FT_ABS include/freetype/internal/ftobjs.h /^#define FT_ABS(/;" d +FT_ADVANCES_H android/freetype/include/freetype/config/ftheader.h /^#define FT_ADVANCES_H /;" d +FT_ADVANCES_H include/freetype/config/ftheader.h /^#define FT_ADVANCES_H /;" d +FT_ADVANCE_FLAG_FAST_ONLY android/freetype/include/freetype/ftadvanc.h /^#define FT_ADVANCE_FLAG_FAST_ONLY /;" d +FT_ADVANCE_FLAG_FAST_ONLY include/freetype/ftadvanc.h /^#define FT_ADVANCE_FLAG_FAST_ONLY /;" d +FT_ALIGNMENT android/freetype/include/freetype/config/ftconfig.h /^#define FT_ALIGNMENT /;" d +FT_ALIGNMENT include/freetype/config/ftconfig.h /^#define FT_ALIGNMENT /;" d +FT_ALLOC android/freetype/include/freetype/internal/ftmemory.h /^#define FT_ALLOC(/;" d +FT_ALLOC include/freetype/internal/ftmemory.h /^#define FT_ALLOC(/;" d +FT_ALLOC_MULT android/freetype/include/freetype/internal/ftmemory.h /^#define FT_ALLOC_MULT(/;" d +FT_ALLOC_MULT include/freetype/internal/ftmemory.h /^#define FT_ALLOC_MULT(/;" d +FT_ANGLE_2PI android/freetype/include/freetype/fttrigon.h /^#define FT_ANGLE_2PI /;" d +FT_ANGLE_2PI include/freetype/fttrigon.h /^#define FT_ANGLE_2PI /;" d +FT_ANGLE_PI android/freetype/include/freetype/fttrigon.h /^#define FT_ANGLE_PI /;" d +FT_ANGLE_PI include/freetype/fttrigon.h /^#define FT_ANGLE_PI /;" d +FT_ANGLE_PI2 android/freetype/include/freetype/fttrigon.h /^#define FT_ANGLE_PI2 /;" d +FT_ANGLE_PI2 include/freetype/fttrigon.h /^#define FT_ANGLE_PI2 /;" d +FT_ANGLE_PI4 android/freetype/include/freetype/fttrigon.h /^#define FT_ANGLE_PI4 /;" d +FT_ANGLE_PI4 include/freetype/fttrigon.h /^#define FT_ANGLE_PI4 /;" d +FT_ARC_CUBIC_ANGLE android/freetype/src/base/ftstroke.c /^#define FT_ARC_CUBIC_ANGLE /;" d file: +FT_ARRAY_CHECK android/freetype/include/freetype/internal/ftmemory.h /^#define FT_ARRAY_CHECK(/;" d +FT_ARRAY_CHECK include/freetype/internal/ftmemory.h /^#define FT_ARRAY_CHECK(/;" d +FT_ARRAY_COPY android/freetype/include/freetype/internal/ftmemory.h /^#define FT_ARRAY_COPY(/;" d +FT_ARRAY_COPY include/freetype/internal/ftmemory.h /^#define FT_ARRAY_COPY(/;" d +FT_ARRAY_MAX android/freetype/include/freetype/internal/ftmemory.h /^#define FT_ARRAY_MAX(/;" d +FT_ARRAY_MAX include/freetype/internal/ftmemory.h /^#define FT_ARRAY_MAX(/;" d +FT_ARRAY_MOVE android/freetype/include/freetype/internal/ftmemory.h /^#define FT_ARRAY_MOVE(/;" d +FT_ARRAY_MOVE include/freetype/internal/ftmemory.h /^#define FT_ARRAY_MOVE(/;" d +FT_ARRAY_ZERO android/freetype/include/freetype/internal/ftmemory.h /^#define FT_ARRAY_ZERO(/;" d +FT_ARRAY_ZERO include/freetype/internal/ftmemory.h /^#define FT_ARRAY_ZERO(/;" d +FT_ASSERT android/freetype/include/freetype/internal/ftdebug.h /^#define FT_ASSERT(/;" d +FT_ASSERT include/freetype/internal/ftdebug.h /^#define FT_ASSERT(/;" d +FT_ASSIGNP android/freetype/include/freetype/internal/ftmemory.h /^#define FT_ASSIGNP(/;" d +FT_ASSIGNP include/freetype/internal/ftmemory.h /^#define FT_ASSIGNP(/;" d +FT_ASSIGNP_INNER android/freetype/include/freetype/internal/ftmemory.h /^#define FT_ASSIGNP_INNER(/;" d +FT_ASSIGNP_INNER include/freetype/internal/ftmemory.h /^#define FT_ASSIGNP_INNER(/;" d +FT_Add64 android/freetype/src/base/ftcalc.c /^ FT_Add64( FT_Int64* x,$/;" f file: +FT_Add_Default_Modules android/freetype/src/base/ftinit.c /^ FT_Add_Default_Modules( FT_Library library )$/;" f +FT_Alloc_Func android/freetype/include/freetype/ftsystem.h /^ (*FT_Alloc_Func)( FT_Memory memory,$/;" t +FT_Alloc_Func include/freetype/ftsystem.h /^ (*FT_Alloc_Func)( FT_Memory memory,$/;" t +FT_Angle android/freetype/include/freetype/fttrigon.h /^ typedef FT_Fixed FT_Angle;$/;" t +FT_Angle include/freetype/fttrigon.h /^ typedef FT_Fixed FT_Angle;$/;" t +FT_AutoHinter android/freetype/include/freetype/internal/autohint.h /^ typedef struct FT_AutoHinterRec_ *FT_AutoHinter;$/;" t typeref:struct:FT_AutoHinterRec_ +FT_AutoHinter include/freetype/internal/autohint.h /^ typedef struct FT_AutoHinterRec_ *FT_AutoHinter;$/;" t typeref:struct:FT_AutoHinterRec_ +FT_AutoHinter_GlobalDoneFunc android/freetype/include/freetype/internal/autohint.h /^ (*FT_AutoHinter_GlobalDoneFunc)( FT_AutoHinter hinter,$/;" t +FT_AutoHinter_GlobalDoneFunc include/freetype/internal/autohint.h /^ (*FT_AutoHinter_GlobalDoneFunc)( FT_AutoHinter hinter,$/;" t +FT_AutoHinter_GlobalGetFunc android/freetype/include/freetype/internal/autohint.h /^ (*FT_AutoHinter_GlobalGetFunc)( FT_AutoHinter hinter,$/;" t +FT_AutoHinter_GlobalGetFunc include/freetype/internal/autohint.h /^ (*FT_AutoHinter_GlobalGetFunc)( FT_AutoHinter hinter,$/;" t +FT_AutoHinter_GlobalResetFunc android/freetype/include/freetype/internal/autohint.h /^ (*FT_AutoHinter_GlobalResetFunc)( FT_AutoHinter hinter,$/;" t +FT_AutoHinter_GlobalResetFunc include/freetype/internal/autohint.h /^ (*FT_AutoHinter_GlobalResetFunc)( FT_AutoHinter hinter,$/;" t +FT_AutoHinter_GlyphLoadFunc android/freetype/include/freetype/internal/autohint.h /^ (*FT_AutoHinter_GlyphLoadFunc)( FT_AutoHinter hinter,$/;" t +FT_AutoHinter_GlyphLoadFunc include/freetype/internal/autohint.h /^ (*FT_AutoHinter_GlyphLoadFunc)( FT_AutoHinter hinter,$/;" t +FT_AutoHinter_Service android/freetype/include/freetype/internal/autohint.h /^ } FT_AutoHinter_ServiceRec, *FT_AutoHinter_Service;$/;" t typeref:struct:FT_AutoHinter_ServiceRec_ +FT_AutoHinter_Service include/freetype/internal/autohint.h /^ } FT_AutoHinter_ServiceRec, *FT_AutoHinter_Service;$/;" t typeref:struct:FT_AutoHinter_ServiceRec_ +FT_AutoHinter_ServiceRec android/freetype/include/freetype/internal/autohint.h /^ } FT_AutoHinter_ServiceRec, *FT_AutoHinter_Service;$/;" t typeref:struct:FT_AutoHinter_ServiceRec_ +FT_AutoHinter_ServiceRec include/freetype/internal/autohint.h /^ } FT_AutoHinter_ServiceRec, *FT_AutoHinter_Service;$/;" t typeref:struct:FT_AutoHinter_ServiceRec_ +FT_AutoHinter_ServiceRec_ android/freetype/include/freetype/internal/autohint.h /^ typedef struct FT_AutoHinter_ServiceRec_$/;" s +FT_AutoHinter_ServiceRec_ include/freetype/internal/autohint.h /^ typedef struct FT_AutoHinter_ServiceRec_$/;" s +FT_Autofitter android/freetype/src/autofit/afmodule.c /^ } FT_AutofitterRec, *FT_Autofitter;$/;" t typeref:struct:FT_AutofitterRec_ file: +FT_AutofitterRec android/freetype/src/autofit/afmodule.c /^ } FT_AutofitterRec, *FT_Autofitter;$/;" t typeref:struct:FT_AutofitterRec_ file: +FT_AutofitterRec_ android/freetype/src/autofit/afmodule.c /^ typedef struct FT_AutofitterRec_$/;" s file: +FT_BASE android/freetype/include/freetype/config/ftconfig.h /^#define FT_BASE(/;" d +FT_BASE include/freetype/config/ftconfig.h /^#define FT_BASE(/;" d +FT_BASE_DEF android/freetype/include/freetype/config/ftconfig.h /^#define FT_BASE_DEF(/;" d +FT_BASE_DEF android/freetype/src/base/ftapi.c /^ FT_BASE_DEF( FT_Error )$/;" f +FT_BASE_DEF android/freetype/src/base/ftcalc.c /^ FT_BASE_DEF( FT_Int )$/;" f +FT_BASE_DEF android/freetype/src/base/ftcalc.c /^ FT_BASE_DEF( FT_Int32 )$/;" f +FT_BASE_DEF android/freetype/src/base/ftcalc.c /^ FT_BASE_DEF( FT_Long )$/;" f +FT_BASE_DEF android/freetype/src/base/ftdebug.c /^ FT_BASE_DEF( FT_Int )$/;" f +FT_BASE_DEF android/freetype/src/base/ftgloadr.c /^ FT_BASE_DEF( FT_Error )$/;" f +FT_BASE_DEF android/freetype/src/base/ftobjs.c /^ FT_BASE_DEF( FT_Error )$/;" f +FT_BASE_DEF android/freetype/src/base/ftobjs.c /^ FT_BASE_DEF( FT_Int )$/;" f +FT_BASE_DEF android/freetype/src/base/ftobjs.c /^ FT_BASE_DEF( FT_Pointer )$/;" f +FT_BASE_DEF android/freetype/src/base/ftobjs.c /^ FT_BASE_DEF( FT_Renderer )$/;" f +FT_BASE_DEF android/freetype/src/base/ftrfork.c /^ FT_BASE_DEF( FT_Error )$/;" f +FT_BASE_DEF android/freetype/src/base/ftstream.c /^ FT_BASE_DEF( FT_Char )$/;" f +FT_BASE_DEF android/freetype/src/base/ftstream.c /^ FT_BASE_DEF( FT_Error )$/;" f +FT_BASE_DEF android/freetype/src/base/ftstream.c /^ FT_BASE_DEF( FT_Long )$/;" f +FT_BASE_DEF android/freetype/src/base/ftstream.c /^ FT_BASE_DEF( FT_Short )$/;" f +FT_BASE_DEF android/freetype/src/base/ftstream.c /^ FT_BASE_DEF( FT_ULong )$/;" f +FT_BASE_DEF android/freetype/src/base/ftsystem.c /^ FT_BASE_DEF( FT_Error )$/;" f +FT_BASE_DEF android/freetype/src/base/ftsystem.c /^ FT_BASE_DEF( FT_Memory )$/;" f +FT_BASE_DEF android/freetype/src/base/ftutil.c /^ FT_BASE_DEF( FT_Error )$/;" f +FT_BASE_DEF android/freetype/src/base/ftutil.c /^ FT_BASE_DEF( FT_Int )$/;" f +FT_BASE_DEF android/freetype/src/base/ftutil.c /^ FT_BASE_DEF( FT_Pointer )$/;" f +FT_BASE_DEF android/freetype/src/base/ftutil.c /^ FT_BASE_DEF( FT_UInt32 )$/;" f +FT_BASE_DEF include/freetype/config/ftconfig.h /^#define FT_BASE_DEF(/;" d +FT_BBOX_H android/freetype/include/freetype/config/ftheader.h /^#define FT_BBOX_H /;" d +FT_BBOX_H include/freetype/config/ftheader.h /^#define FT_BBOX_H /;" d +FT_BBox android/freetype/include/freetype/ftimage.h /^ } FT_BBox;$/;" t typeref:struct:FT_BBox_ +FT_BBox include/freetype/ftimage.h /^ } FT_BBox;$/;" t typeref:struct:FT_BBox_ +FT_BBox_ android/freetype/include/freetype/ftimage.h /^ typedef struct FT_BBox_$/;" s +FT_BBox_ include/freetype/ftimage.h /^ typedef struct FT_BBox_$/;" s +FT_BDF_GetCharsetIdFunc android/freetype/include/freetype/internal/services/svbdf.h /^ (*FT_BDF_GetCharsetIdFunc)( FT_Face face,$/;" t +FT_BDF_GetCharsetIdFunc include/freetype/internal/services/svbdf.h /^ (*FT_BDF_GetCharsetIdFunc)( FT_Face face,$/;" t +FT_BDF_GetPropertyFunc android/freetype/include/freetype/internal/services/svbdf.h /^ (*FT_BDF_GetPropertyFunc)( FT_Face face,$/;" t +FT_BDF_GetPropertyFunc include/freetype/internal/services/svbdf.h /^ (*FT_BDF_GetPropertyFunc)( FT_Face face,$/;" t +FT_BDF_H android/freetype/include/freetype/config/ftheader.h /^#define FT_BDF_H /;" d +FT_BDF_H include/freetype/config/ftheader.h /^#define FT_BDF_H /;" d +FT_BEGIN_HEADER android/freetype/include/freetype/config/ftheader.h /^#define FT_BEGIN_HEADER /;" d +FT_BEGIN_HEADER android/freetype/src/raster/ftmisc.h /^#define FT_BEGIN_HEADER$/;" d +FT_BEGIN_HEADER android/freetype/src/smooth/ftgrays.c /^#define FT_BEGIN_HEADER$/;" d file: +FT_BEGIN_HEADER include/freetype/config/ftheader.h /^#define FT_BEGIN_HEADER /;" d +FT_BEGIN_STMNT android/freetype/include/freetype/config/ftconfig.h /^#define FT_BEGIN_STMNT /;" d +FT_BEGIN_STMNT include/freetype/config/ftconfig.h /^#define FT_BEGIN_STMNT /;" d +FT_BITMAP_GLYPH android/freetype/include/freetype/internal/ftobjs.h /^#define FT_BITMAP_GLYPH(/;" d +FT_BITMAP_GLYPH include/freetype/internal/ftobjs.h /^#define FT_BITMAP_GLYPH(/;" d +FT_BITMAP_H android/freetype/include/freetype/config/ftheader.h /^#define FT_BITMAP_H /;" d +FT_BITMAP_H include/freetype/config/ftheader.h /^#define FT_BITMAP_H /;" d +FT_BOOL android/freetype/include/freetype/fttypes.h /^#define FT_BOOL(/;" d +FT_BOOL include/freetype/fttypes.h /^#define FT_BOOL(/;" d +FT_BYTE_ android/freetype/include/freetype/internal/ftstream.h /^#define FT_BYTE_(/;" d +FT_BYTE_ include/freetype/internal/ftstream.h /^#define FT_BYTE_(/;" d +FT_BYTE_I16 android/freetype/include/freetype/internal/ftstream.h /^#define FT_BYTE_I16(/;" d +FT_BYTE_I16 include/freetype/internal/ftstream.h /^#define FT_BYTE_I16(/;" d +FT_BYTE_I32 android/freetype/include/freetype/internal/ftstream.h /^#define FT_BYTE_I32(/;" d +FT_BYTE_I32 include/freetype/internal/ftstream.h /^#define FT_BYTE_I32(/;" d +FT_BYTE_U16 android/freetype/include/freetype/internal/ftstream.h /^#define FT_BYTE_U16(/;" d +FT_BYTE_U16 include/freetype/internal/ftstream.h /^#define FT_BYTE_U16(/;" d +FT_BYTE_U32 android/freetype/include/freetype/internal/ftstream.h /^#define FT_BYTE_U32(/;" d +FT_BYTE_U32 include/freetype/internal/ftstream.h /^#define FT_BYTE_U32(/;" d +FT_Bitmap android/freetype/include/freetype/ftimage.h /^ } FT_Bitmap;$/;" t typeref:struct:FT_Bitmap_ +FT_Bitmap include/freetype/ftimage.h /^ } FT_Bitmap;$/;" t typeref:struct:FT_Bitmap_ +FT_BitmapGlyph android/freetype/include/freetype/ftglyph.h /^ typedef struct FT_BitmapGlyphRec_* FT_BitmapGlyph;$/;" t typeref:struct:FT_BitmapGlyphRec_ +FT_BitmapGlyph include/freetype/ftglyph.h /^ typedef struct FT_BitmapGlyphRec_* FT_BitmapGlyph;$/;" t typeref:struct:FT_BitmapGlyphRec_ +FT_BitmapGlyphRec android/freetype/include/freetype/ftglyph.h /^ } FT_BitmapGlyphRec;$/;" t typeref:struct:FT_BitmapGlyphRec_ +FT_BitmapGlyphRec include/freetype/ftglyph.h /^ } FT_BitmapGlyphRec;$/;" t typeref:struct:FT_BitmapGlyphRec_ +FT_BitmapGlyphRec_ android/freetype/include/freetype/ftglyph.h /^ typedef struct FT_BitmapGlyphRec_$/;" s +FT_BitmapGlyphRec_ include/freetype/ftglyph.h /^ typedef struct FT_BitmapGlyphRec_$/;" s +FT_Bitmap_ android/freetype/include/freetype/ftimage.h /^ typedef struct FT_Bitmap_$/;" s +FT_Bitmap_ include/freetype/ftimage.h /^ typedef struct FT_Bitmap_$/;" s +FT_Bitmap_LcdFilterFunc android/freetype/include/freetype/internal/ftobjs.h /^ typedef void (*FT_Bitmap_LcdFilterFunc)( FT_Bitmap* bitmap,$/;" t +FT_Bitmap_LcdFilterFunc include/freetype/internal/ftobjs.h /^ typedef void (*FT_Bitmap_LcdFilterFunc)( FT_Bitmap* bitmap,$/;" t +FT_Bitmap_New android/freetype/src/base/ftbitmap.c /^ FT_Bitmap_New( FT_Bitmap *abitmap )$/;" f +FT_Bitmap_Size android/freetype/include/freetype/freetype.h /^ } FT_Bitmap_Size;$/;" t typeref:struct:FT_Bitmap_Size_ +FT_Bitmap_Size include/freetype/freetype.h /^ } FT_Bitmap_Size;$/;" t typeref:struct:FT_Bitmap_Size_ +FT_Bitmap_Size_ android/freetype/include/freetype/freetype.h /^ typedef struct FT_Bitmap_Size_$/;" s +FT_Bitmap_Size_ include/freetype/freetype.h /^ typedef struct FT_Bitmap_Size_$/;" s +FT_Bool android/freetype/include/freetype/fttypes.h /^ typedef unsigned char FT_Bool;$/;" t +FT_Bool include/freetype/fttypes.h /^ typedef unsigned char FT_Bool;$/;" t +FT_Byte android/freetype/include/freetype/fttypes.h /^ typedef unsigned char FT_Byte;$/;" t +FT_Byte android/freetype/src/raster/ftmisc.h /^ typedef unsigned char FT_Byte;$/;" t +FT_Byte include/freetype/fttypes.h /^ typedef unsigned char FT_Byte;$/;" t +FT_Bytes android/freetype/include/freetype/fttypes.h /^ typedef const FT_Byte* FT_Bytes;$/;" t +FT_Bytes include/freetype/fttypes.h /^ typedef const FT_Byte* FT_Bytes;$/;" t +FT_CACHE_CHARMAP_H android/freetype/include/freetype/config/ftheader.h /^#define FT_CACHE_CHARMAP_H /;" d +FT_CACHE_CHARMAP_H include/freetype/config/ftheader.h /^#define FT_CACHE_CHARMAP_H /;" d +FT_CACHE_H android/freetype/include/freetype/config/ftheader.h /^#define FT_CACHE_H /;" d +FT_CACHE_H include/freetype/config/ftheader.h /^#define FT_CACHE_H /;" d +FT_CACHE_IMAGE_H android/freetype/include/freetype/config/ftheader.h /^#define FT_CACHE_IMAGE_H /;" d +FT_CACHE_IMAGE_H include/freetype/config/ftheader.h /^#define FT_CACHE_IMAGE_H /;" d +FT_CACHE_INTERNAL_CACHE_H android/freetype/include/freetype/config/ftheader.h /^#define FT_CACHE_INTERNAL_CACHE_H /;" d +FT_CACHE_INTERNAL_CACHE_H include/freetype/config/ftheader.h /^#define FT_CACHE_INTERNAL_CACHE_H /;" d +FT_CACHE_INTERNAL_GLYPH_H android/freetype/include/freetype/config/ftheader.h /^#define FT_CACHE_INTERNAL_GLYPH_H /;" d +FT_CACHE_INTERNAL_GLYPH_H include/freetype/config/ftheader.h /^#define FT_CACHE_INTERNAL_GLYPH_H /;" d +FT_CACHE_INTERNAL_IMAGE_H android/freetype/include/freetype/config/ftheader.h /^#define FT_CACHE_INTERNAL_IMAGE_H /;" d +FT_CACHE_INTERNAL_IMAGE_H include/freetype/config/ftheader.h /^#define FT_CACHE_INTERNAL_IMAGE_H /;" d +FT_CACHE_INTERNAL_MANAGER_H android/freetype/include/freetype/config/ftheader.h /^#define FT_CACHE_INTERNAL_MANAGER_H /;" d +FT_CACHE_INTERNAL_MANAGER_H include/freetype/config/ftheader.h /^#define FT_CACHE_INTERNAL_MANAGER_H /;" d +FT_CACHE_INTERNAL_MRU_H android/freetype/include/freetype/config/ftheader.h /^#define FT_CACHE_INTERNAL_MRU_H /;" d +FT_CACHE_INTERNAL_MRU_H include/freetype/config/ftheader.h /^#define FT_CACHE_INTERNAL_MRU_H /;" d +FT_CACHE_INTERNAL_SBITS_H android/freetype/include/freetype/config/ftheader.h /^#define FT_CACHE_INTERNAL_SBITS_H /;" d +FT_CACHE_INTERNAL_SBITS_H include/freetype/config/ftheader.h /^#define FT_CACHE_INTERNAL_SBITS_H /;" d +FT_CACHE_MANAGER_H android/freetype/include/freetype/config/ftheader.h /^#define FT_CACHE_MANAGER_H /;" d +FT_CACHE_MANAGER_H include/freetype/config/ftheader.h /^#define FT_CACHE_MANAGER_H /;" d +FT_CACHE_SMALL_BITMAPS_H android/freetype/include/freetype/config/ftheader.h /^#define FT_CACHE_SMALL_BITMAPS_H /;" d +FT_CACHE_SMALL_BITMAPS_H include/freetype/config/ftheader.h /^#define FT_CACHE_SMALL_BITMAPS_H /;" d +FT_CALLBACK_DEF android/freetype/include/freetype/config/ftconfig.h /^#define FT_CALLBACK_DEF(/;" d +FT_CALLBACK_DEF android/freetype/src/autofit/afmodule.c /^ FT_CALLBACK_DEF( FT_Error )$/;" f +FT_CALLBACK_DEF android/freetype/src/base/ftglyph.c /^ FT_CALLBACK_DEF( FT_Error )$/;" f +FT_CALLBACK_DEF android/freetype/src/cff/cffcmap.c /^ FT_CALLBACK_DEF( FT_Error )$/;" f +FT_CALLBACK_DEF android/freetype/src/cff/cffcmap.c /^ FT_CALLBACK_DEF( FT_UInt )$/;" f +FT_CALLBACK_DEF android/freetype/src/cff/cffdrivr.c /^ FT_CALLBACK_DEF( FT_Error )$/;" f +FT_CALLBACK_DEF android/freetype/src/cff/cffdrivr.c /^ FT_CALLBACK_DEF( FT_Module_Interface )$/;" f +FT_CALLBACK_DEF android/freetype/src/cff/cffdrivr.c /^ FT_CALLBACK_DEF(FT_Error)$/;" f +FT_CALLBACK_DEF android/freetype/src/psaux/t1cmap.c /^ FT_CALLBACK_DEF( FT_Error )$/;" f +FT_CALLBACK_DEF android/freetype/src/psaux/t1cmap.c /^ FT_CALLBACK_DEF( FT_UInt )$/;" f +FT_CALLBACK_DEF android/freetype/src/pshinter/pshmod.c /^ FT_CALLBACK_DEF( FT_Error )$/;" f +FT_CALLBACK_DEF android/freetype/src/pshinter/pshmod.c /^ FT_CALLBACK_DEF( PSH_Globals_Funcs )$/;" f +FT_CALLBACK_DEF android/freetype/src/pshinter/pshmod.c /^ FT_CALLBACK_DEF( T1_Hints_Funcs )$/;" f +FT_CALLBACK_DEF android/freetype/src/pshinter/pshmod.c /^ FT_CALLBACK_DEF( T2_Hints_Funcs )$/;" f +FT_CALLBACK_DEF android/freetype/src/sfnt/sfdriver.c /^ FT_CALLBACK_DEF( FT_Error )$/;" f +FT_CALLBACK_DEF android/freetype/src/sfnt/sfdriver.c /^ FT_CALLBACK_DEF( FT_Module_Interface )$/;" f +FT_CALLBACK_DEF android/freetype/src/sfnt/ttcmap.c /^ FT_CALLBACK_DEF( FT_Error )$/;" f +FT_CALLBACK_DEF android/freetype/src/sfnt/ttcmap.c /^ FT_CALLBACK_DEF( FT_Int )$/;" f +FT_CALLBACK_DEF android/freetype/src/sfnt/ttcmap.c /^ FT_CALLBACK_DEF( FT_UInt )$/;" f +FT_CALLBACK_DEF android/freetype/src/truetype/ttdriver.c /^ FT_CALLBACK_DEF( FT_Module_Interface )$/;" f +FT_CALLBACK_DEF android/freetype/src/truetype/ttgload.c /^ FT_CALLBACK_DEF( FT_Error )$/;" f +FT_CALLBACK_DEF android/freetype/src/truetype/ttinterp.c /^ FT_CALLBACK_DEF( FT_F26Dot6 )$/;" f +FT_CALLBACK_DEF include/freetype/config/ftconfig.h /^#define FT_CALLBACK_DEF(/;" d +FT_CALLBACK_TABLE android/freetype/include/freetype/config/ftconfig.h /^#define FT_CALLBACK_TABLE /;" d +FT_CALLBACK_TABLE include/freetype/config/ftconfig.h /^#define FT_CALLBACK_TABLE /;" d +FT_CALLBACK_TABLE_DEF android/freetype/include/freetype/config/ftconfig.h /^#define FT_CALLBACK_TABLE_DEF /;" d +FT_CALLBACK_TABLE_DEF include/freetype/config/ftconfig.h /^#define FT_CALLBACK_TABLE_DEF /;" d +FT_CHAR_BIT android/freetype/include/freetype/config/ftconfig.h /^#define FT_CHAR_BIT /;" d +FT_CHAR_BIT android/freetype/include/freetype/config/ftstdlib.h /^#define FT_CHAR_BIT /;" d +FT_CHAR_BIT include/freetype/config/ftconfig.h /^#define FT_CHAR_BIT /;" d +FT_CHAR_BIT include/freetype/config/ftstdlib.h /^#define FT_CHAR_BIT /;" d +FT_CID_GetCIDFromGlyphIndexFunc include/freetype/internal/services/svcid.h /^ (*FT_CID_GetCIDFromGlyphIndexFunc)( FT_Face face,$/;" t +FT_CID_GetIsInternallyCIDKeyedFunc include/freetype/internal/services/svcid.h /^ (*FT_CID_GetIsInternallyCIDKeyedFunc)( FT_Face face,$/;" t +FT_CID_GetRegistryOrderingSupplementFunc android/freetype/include/freetype/internal/services/svcid.h /^ (*FT_CID_GetRegistryOrderingSupplementFunc)( FT_Face face,$/;" t +FT_CID_GetRegistryOrderingSupplementFunc include/freetype/internal/services/svcid.h /^ (*FT_CID_GetRegistryOrderingSupplementFunc)( FT_Face face,$/;" t +FT_CID_H android/freetype/include/freetype/config/ftheader.h /^#define FT_CID_H /;" d +FT_CID_H include/freetype/config/ftheader.h /^#define FT_CID_H /;" d +FT_CMAP android/freetype/include/freetype/internal/ftobjs.h /^#define FT_CMAP(/;" d +FT_CMAP include/freetype/internal/ftobjs.h /^#define FT_CMAP(/;" d +FT_CMAP_ENCODING android/freetype/include/freetype/internal/ftobjs.h /^#define FT_CMAP_ENCODING(/;" d +FT_CMAP_ENCODING include/freetype/internal/ftobjs.h /^#define FT_CMAP_ENCODING(/;" d +FT_CMAP_ENCODING_ID android/freetype/include/freetype/internal/ftobjs.h /^#define FT_CMAP_ENCODING_ID(/;" d +FT_CMAP_ENCODING_ID include/freetype/internal/ftobjs.h /^#define FT_CMAP_ENCODING_ID(/;" d +FT_CMAP_FACE android/freetype/include/freetype/internal/ftobjs.h /^#define FT_CMAP_FACE(/;" d +FT_CMAP_FACE include/freetype/internal/ftobjs.h /^#define FT_CMAP_FACE(/;" d +FT_CMAP_PLATFORM_ID android/freetype/include/freetype/internal/ftobjs.h /^#define FT_CMAP_PLATFORM_ID(/;" d +FT_CMAP_PLATFORM_ID include/freetype/internal/ftobjs.h /^#define FT_CMAP_PLATFORM_ID(/;" d +FT_CMap android/freetype/include/freetype/internal/ftobjs.h /^ typedef struct FT_CMapRec_* FT_CMap;$/;" t typeref:struct:FT_CMapRec_ +FT_CMap include/freetype/internal/ftobjs.h /^ typedef struct FT_CMapRec_* FT_CMap;$/;" t typeref:struct:FT_CMapRec_ +FT_CMapRec android/freetype/include/freetype/internal/ftobjs.h /^ } FT_CMapRec;$/;" t typeref:struct:FT_CMapRec_ +FT_CMapRec include/freetype/internal/ftobjs.h /^ } FT_CMapRec;$/;" t typeref:struct:FT_CMapRec_ +FT_CMapRec_ android/freetype/include/freetype/internal/ftobjs.h /^ typedef struct FT_CMapRec_$/;" s +FT_CMapRec_ include/freetype/internal/ftobjs.h /^ typedef struct FT_CMapRec_$/;" s +FT_CMap_CharIndexFunc android/freetype/include/freetype/internal/ftobjs.h /^ (*FT_CMap_CharIndexFunc)( FT_CMap cmap,$/;" t +FT_CMap_CharIndexFunc include/freetype/internal/ftobjs.h /^ (*FT_CMap_CharIndexFunc)( FT_CMap cmap,$/;" t +FT_CMap_CharNextFunc android/freetype/include/freetype/internal/ftobjs.h /^ (*FT_CMap_CharNextFunc)( FT_CMap cmap,$/;" t +FT_CMap_CharNextFunc include/freetype/internal/ftobjs.h /^ (*FT_CMap_CharNextFunc)( FT_CMap cmap,$/;" t +FT_CMap_CharVarIndexFunc android/freetype/include/freetype/internal/ftobjs.h /^ (*FT_CMap_CharVarIndexFunc)( FT_CMap cmap,$/;" t +FT_CMap_CharVarIndexFunc include/freetype/internal/ftobjs.h /^ (*FT_CMap_CharVarIndexFunc)( FT_CMap cmap,$/;" t +FT_CMap_CharVarIsDefaultFunc android/freetype/include/freetype/internal/ftobjs.h /^ (*FT_CMap_CharVarIsDefaultFunc)( FT_CMap cmap,$/;" t +FT_CMap_CharVarIsDefaultFunc include/freetype/internal/ftobjs.h /^ (*FT_CMap_CharVarIsDefaultFunc)( FT_CMap cmap,$/;" t +FT_CMap_CharVariantListFunc android/freetype/include/freetype/internal/ftobjs.h /^ (*FT_CMap_CharVariantListFunc)( FT_CMap cmap,$/;" t +FT_CMap_CharVariantListFunc include/freetype/internal/ftobjs.h /^ (*FT_CMap_CharVariantListFunc)( FT_CMap cmap,$/;" t +FT_CMap_Class android/freetype/include/freetype/internal/ftobjs.h /^ typedef const struct FT_CMap_ClassRec_* FT_CMap_Class;$/;" t typeref:struct:FT_CMap_ClassRec_ +FT_CMap_Class include/freetype/internal/ftobjs.h /^ typedef const struct FT_CMap_ClassRec_* FT_CMap_Class;$/;" t typeref:struct:FT_CMap_ClassRec_ +FT_CMap_ClassRec android/freetype/include/freetype/internal/ftobjs.h /^ } FT_CMap_ClassRec;$/;" t typeref:struct:FT_CMap_ClassRec_ +FT_CMap_ClassRec include/freetype/internal/ftobjs.h /^ } FT_CMap_ClassRec;$/;" t typeref:struct:FT_CMap_ClassRec_ +FT_CMap_ClassRec_ android/freetype/include/freetype/internal/ftobjs.h /^ typedef struct FT_CMap_ClassRec_$/;" s +FT_CMap_ClassRec_ include/freetype/internal/ftobjs.h /^ typedef struct FT_CMap_ClassRec_$/;" s +FT_CMap_Done android/freetype/src/base/ftobjs.c /^ FT_CMap_Done( FT_CMap cmap )$/;" f +FT_CMap_DoneFunc android/freetype/include/freetype/internal/ftobjs.h /^ (*FT_CMap_DoneFunc)( FT_CMap cmap );$/;" t +FT_CMap_DoneFunc include/freetype/internal/ftobjs.h /^ (*FT_CMap_DoneFunc)( FT_CMap cmap );$/;" t +FT_CMap_InitFunc android/freetype/include/freetype/internal/ftobjs.h /^ (*FT_CMap_InitFunc)( FT_CMap cmap,$/;" t +FT_CMap_InitFunc include/freetype/internal/ftobjs.h /^ (*FT_CMap_InitFunc)( FT_CMap cmap,$/;" t +FT_CMap_VariantCharListFunc android/freetype/include/freetype/internal/ftobjs.h /^ (*FT_CMap_VariantCharListFunc)( FT_CMap cmap,$/;" t +FT_CMap_VariantCharListFunc include/freetype/internal/ftobjs.h /^ (*FT_CMap_VariantCharListFunc)( FT_CMap cmap,$/;" t +FT_CMap_VariantListFunc android/freetype/include/freetype/internal/ftobjs.h /^ (*FT_CMap_VariantListFunc)( FT_CMap cmap,$/;" t +FT_CMap_VariantListFunc include/freetype/internal/ftobjs.h /^ (*FT_CMap_VariantListFunc)( FT_CMap cmap,$/;" t +FT_COMPONENT android/freetype/src/base/ftcalc.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/base/ftcalc.c /^#undef FT_COMPONENT$/;" d file: +FT_COMPONENT android/freetype/src/base/ftgloadr.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/base/ftgloadr.c /^#undef FT_COMPONENT$/;" d file: +FT_COMPONENT android/freetype/src/base/ftglyph.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/base/ftglyph.c /^#undef FT_COMPONENT$/;" d file: +FT_COMPONENT android/freetype/src/base/ftinit.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/base/ftinit.c /^#undef FT_COMPONENT$/;" d file: +FT_COMPONENT android/freetype/src/base/ftmm.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/base/ftmm.c /^#undef FT_COMPONENT$/;" d file: +FT_COMPONENT android/freetype/src/base/ftobjs.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/base/ftobjs.c /^#undef FT_COMPONENT$/;" d file: +FT_COMPONENT android/freetype/src/base/ftoutln.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/base/ftoutln.c /^#undef FT_COMPONENT$/;" d file: +FT_COMPONENT android/freetype/src/base/ftrfork.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/base/ftrfork.c /^#undef FT_COMPONENT$/;" d file: +FT_COMPONENT android/freetype/src/base/ftstream.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/base/ftstream.c /^#undef FT_COMPONENT$/;" d file: +FT_COMPONENT android/freetype/src/base/ftsystem.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/base/ftsystem.c /^#undef FT_COMPONENT$/;" d file: +FT_COMPONENT android/freetype/src/base/ftutil.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/base/ftutil.c /^#undef FT_COMPONENT$/;" d file: +FT_COMPONENT android/freetype/src/cff/cffdrivr.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/cff/cffdrivr.c /^#undef FT_COMPONENT$/;" d file: +FT_COMPONENT android/freetype/src/cff/cffgload.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/cff/cffgload.c /^#undef FT_COMPONENT$/;" d file: +FT_COMPONENT android/freetype/src/cff/cffload.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/cff/cffload.c /^#undef FT_COMPONENT$/;" d file: +FT_COMPONENT android/freetype/src/cff/cffobjs.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/cff/cffobjs.c /^#undef FT_COMPONENT$/;" d file: +FT_COMPONENT android/freetype/src/cff/cffparse.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/cff/cffparse.c /^#undef FT_COMPONENT$/;" d file: +FT_COMPONENT android/freetype/src/psaux/psobjs.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/psaux/psobjs.c /^#undef FT_COMPONENT$/;" d file: +FT_COMPONENT android/freetype/src/psaux/t1decode.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/psaux/t1decode.c /^#undef FT_COMPONENT$/;" d file: +FT_COMPONENT android/freetype/src/pshinter/pshalgo.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/pshinter/pshalgo.c /^#undef FT_COMPONENT$/;" d file: +FT_COMPONENT android/freetype/src/pshinter/pshrec.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/pshinter/pshrec.c /^#undef FT_COMPONENT$/;" d file: +FT_COMPONENT android/freetype/src/raster/ftraster.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/raster/ftraster.c /^#undef FT_COMPONENT$/;" d file: +FT_COMPONENT android/freetype/src/sfnt/sfobjs.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/sfnt/sfobjs.c /^#undef FT_COMPONENT$/;" d file: +FT_COMPONENT android/freetype/src/sfnt/ttbdf.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/sfnt/ttbdf.c /^#undef FT_COMPONENT$/;" d file: +FT_COMPONENT android/freetype/src/sfnt/ttcmap.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/sfnt/ttcmap.c /^#undef FT_COMPONENT$/;" d file: +FT_COMPONENT android/freetype/src/sfnt/ttkern.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/sfnt/ttkern.c /^#undef FT_COMPONENT$/;" d file: +FT_COMPONENT android/freetype/src/sfnt/ttload.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/sfnt/ttload.c /^#undef FT_COMPONENT$/;" d file: +FT_COMPONENT android/freetype/src/sfnt/ttmtx.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/sfnt/ttmtx.c /^#undef FT_COMPONENT$/;" d file: +FT_COMPONENT android/freetype/src/sfnt/ttpost.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/sfnt/ttpost.c /^#undef FT_COMPONENT$/;" d file: +FT_COMPONENT android/freetype/src/sfnt/ttsbit.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/sfnt/ttsbit.c /^#undef FT_COMPONENT$/;" d file: +FT_COMPONENT android/freetype/src/sfnt/ttsbit0.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/sfnt/ttsbit0.c /^#undef FT_COMPONENT$/;" d file: +FT_COMPONENT android/freetype/src/smooth/ftgrays.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/smooth/ftgrays.c /^#undef FT_COMPONENT$/;" d file: +FT_COMPONENT android/freetype/src/truetype/ttdriver.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/truetype/ttdriver.c /^#undef FT_COMPONENT$/;" d file: +FT_COMPONENT android/freetype/src/truetype/ttgload.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/truetype/ttgload.c /^#undef FT_COMPONENT$/;" d file: +FT_COMPONENT android/freetype/src/truetype/ttgxvar.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/truetype/ttgxvar.c /^#undef FT_COMPONENT$/;" d file: +FT_COMPONENT android/freetype/src/truetype/ttinterp.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/truetype/ttinterp.c /^#undef FT_COMPONENT$/;" d file: +FT_COMPONENT android/freetype/src/truetype/ttobjs.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/truetype/ttobjs.c /^#undef FT_COMPONENT$/;" d file: +FT_COMPONENT android/freetype/src/truetype/ttpload.c /^#define FT_COMPONENT /;" d file: +FT_COMPONENT android/freetype/src/truetype/ttpload.c /^#undef FT_COMPONENT$/;" d file: +FT_CONFIG_CONFIG_H android/freetype/include/freetype/config/ftheader.h /^#define FT_CONFIG_CONFIG_H /;" d +FT_CONFIG_CONFIG_H include/freetype/config/ftheader.h /^#define FT_CONFIG_CONFIG_H /;" d +FT_CONFIG_MODULES_H android/freetype/include/freetype/config/ftheader.h /^#define FT_CONFIG_MODULES_H /;" d +FT_CONFIG_MODULES_H include/freetype/config/ftheader.h /^#define FT_CONFIG_MODULES_H /;" d +FT_CONFIG_OPTIONS_H android/freetype/include/freetype/config/ftheader.h /^#define FT_CONFIG_OPTIONS_H /;" d +FT_CONFIG_OPTIONS_H include/freetype/config/ftheader.h /^#define FT_CONFIG_OPTIONS_H /;" d +FT_CONFIG_OPTION_ADOBE_GLYPH_LIST android/freetype/include/freetype/config/ftoption.h /^#define FT_CONFIG_OPTION_ADOBE_GLYPH_LIST$/;" d +FT_CONFIG_OPTION_ADOBE_GLYPH_LIST include/freetype/config/ftoption.h /^#define FT_CONFIG_OPTION_ADOBE_GLYPH_LIST$/;" d +FT_CONFIG_OPTION_FORCE_INT64 android/freetype/include/freetype/config/ftoption.h /^#undef FT_CONFIG_OPTION_FORCE_INT64$/;" d +FT_CONFIG_OPTION_FORCE_INT64 include/freetype/config/ftoption.h /^#undef FT_CONFIG_OPTION_FORCE_INT64$/;" d +FT_CONFIG_OPTION_GUESSING_EMBEDDED_RFORK android/freetype/include/freetype/config/ftoption.h /^#define FT_CONFIG_OPTION_GUESSING_EMBEDDED_RFORK$/;" d +FT_CONFIG_OPTION_GUESSING_EMBEDDED_RFORK include/freetype/config/ftoption.h /^#define FT_CONFIG_OPTION_GUESSING_EMBEDDED_RFORK$/;" d +FT_CONFIG_OPTION_INCREMENTAL include/freetype/config/ftoption.h /^#define FT_CONFIG_OPTION_INCREMENTAL$/;" d +FT_CONFIG_OPTION_INLINE_MULFIX android/freetype/include/freetype/config/ftoption.h /^#define FT_CONFIG_OPTION_INLINE_MULFIX$/;" d +FT_CONFIG_OPTION_INLINE_MULFIX include/freetype/config/ftoption.h /^#define FT_CONFIG_OPTION_INLINE_MULFIX$/;" d +FT_CONFIG_OPTION_MAC_FONTS android/freetype/include/freetype/config/ftoption.h /^#define FT_CONFIG_OPTION_MAC_FONTS$/;" d +FT_CONFIG_OPTION_MAC_FONTS include/freetype/config/ftoption.h /^#define FT_CONFIG_OPTION_MAC_FONTS$/;" d +FT_CONFIG_OPTION_OLD_INTERNALS android/freetype/include/freetype/config/ftoption.h /^#define FT_CONFIG_OPTION_OLD_INTERNALS$/;" d +FT_CONFIG_OPTION_OLD_INTERNALS include/freetype/config/ftoption.h /^#define FT_CONFIG_OPTION_OLD_INTERNALS$/;" d +FT_CONFIG_OPTION_POSTSCRIPT_NAMES android/freetype/include/freetype/config/ftoption.h /^#define FT_CONFIG_OPTION_POSTSCRIPT_NAMES$/;" d +FT_CONFIG_OPTION_POSTSCRIPT_NAMES include/freetype/config/ftoption.h /^#define FT_CONFIG_OPTION_POSTSCRIPT_NAMES$/;" d +FT_CONFIG_OPTION_USE_LZW android/freetype/include/freetype/config/ftoption.h /^#define FT_CONFIG_OPTION_USE_LZW$/;" d +FT_CONFIG_OPTION_USE_LZW include/freetype/config/ftoption.h /^#define FT_CONFIG_OPTION_USE_LZW$/;" d +FT_CONFIG_OPTION_USE_MODULE_ERRORS android/freetype/include/freetype/config/ftoption.h /^#undef FT_CONFIG_OPTION_USE_MODULE_ERRORS$/;" d +FT_CONFIG_OPTION_USE_MODULE_ERRORS include/freetype/config/ftoption.h /^#undef FT_CONFIG_OPTION_USE_MODULE_ERRORS$/;" d +FT_CONFIG_OPTION_USE_ZLIB android/freetype/include/freetype/config/ftoption.h /^#define FT_CONFIG_OPTION_USE_ZLIB$/;" d +FT_CONFIG_OPTION_USE_ZLIB include/freetype/config/ftoption.h /^#define FT_CONFIG_OPTION_USE_ZLIB$/;" d +FT_CONFIG_STANDARD_LIBRARY_H android/freetype/include/freetype/config/ftheader.h /^#define FT_CONFIG_STANDARD_LIBRARY_H /;" d +FT_CONFIG_STANDARD_LIBRARY_H include/freetype/config/ftheader.h /^#define FT_CONFIG_STANDARD_LIBRARY_H /;" d +FT_CURVE_TAG android/freetype/include/freetype/ftimage.h /^#define FT_CURVE_TAG(/;" d +FT_CURVE_TAG include/freetype/ftimage.h /^#define FT_CURVE_TAG(/;" d +FT_CURVE_TAG_CONIC android/freetype/include/freetype/ftimage.h /^#define FT_CURVE_TAG_CONIC /;" d +FT_CURVE_TAG_CONIC include/freetype/ftimage.h /^#define FT_CURVE_TAG_CONIC /;" d +FT_CURVE_TAG_CUBIC android/freetype/include/freetype/ftimage.h /^#define FT_CURVE_TAG_CUBIC /;" d +FT_CURVE_TAG_CUBIC include/freetype/ftimage.h /^#define FT_CURVE_TAG_CUBIC /;" d +FT_CURVE_TAG_HAS_SCANMODE include/freetype/ftimage.h /^#define FT_CURVE_TAG_HAS_SCANMODE /;" d +FT_CURVE_TAG_ON android/freetype/include/freetype/ftimage.h /^#define FT_CURVE_TAG_ON /;" d +FT_CURVE_TAG_ON include/freetype/ftimage.h /^#define FT_CURVE_TAG_ON /;" d +FT_CURVE_TAG_TOUCH_BOTH android/freetype/include/freetype/ftimage.h /^#define FT_CURVE_TAG_TOUCH_BOTH /;" d +FT_CURVE_TAG_TOUCH_BOTH include/freetype/ftimage.h /^#define FT_CURVE_TAG_TOUCH_BOTH /;" d +FT_CURVE_TAG_TOUCH_X android/freetype/include/freetype/ftimage.h /^#define FT_CURVE_TAG_TOUCH_X /;" d +FT_CURVE_TAG_TOUCH_X include/freetype/ftimage.h /^#define FT_CURVE_TAG_TOUCH_X /;" d +FT_CURVE_TAG_TOUCH_Y android/freetype/include/freetype/ftimage.h /^#define FT_CURVE_TAG_TOUCH_Y /;" d +FT_CURVE_TAG_TOUCH_Y include/freetype/ftimage.h /^#define FT_CURVE_TAG_TOUCH_Y /;" d +FT_Char android/freetype/include/freetype/fttypes.h /^ typedef signed char FT_Char;$/;" t +FT_Char include/freetype/fttypes.h /^ typedef signed char FT_Char;$/;" t +FT_CharMap android/freetype/include/freetype/freetype.h /^ typedef struct FT_CharMapRec_* FT_CharMap;$/;" t typeref:struct:FT_CharMapRec_ +FT_CharMap include/freetype/freetype.h /^ typedef struct FT_CharMapRec_* FT_CharMap;$/;" t typeref:struct:FT_CharMapRec_ +FT_CharMapRec android/freetype/include/freetype/freetype.h /^ } FT_CharMapRec;$/;" t typeref:struct:FT_CharMapRec_ +FT_CharMapRec include/freetype/freetype.h /^ } FT_CharMapRec;$/;" t typeref:struct:FT_CharMapRec_ +FT_CharMapRec_ android/freetype/include/freetype/freetype.h /^ typedef struct FT_CharMapRec_$/;" s +FT_CharMapRec_ include/freetype/freetype.h /^ typedef struct FT_CharMapRec_$/;" s +FT_CharMap_CharIndexFunc android/freetype/include/freetype/internal/ftdriver.h /^ (*FT_CharMap_CharIndexFunc)( FT_CharMap charmap,$/;" t +FT_CharMap_CharIndexFunc include/freetype/internal/ftdriver.h /^ (*FT_CharMap_CharIndexFunc)( FT_CharMap charmap,$/;" t +FT_CharMap_CharNextFunc android/freetype/include/freetype/internal/ftdriver.h /^ (*FT_CharMap_CharNextFunc)( FT_CharMap charmap,$/;" t +FT_CharMap_CharNextFunc include/freetype/internal/ftdriver.h /^ (*FT_CharMap_CharNextFunc)( FT_CharMap charmap,$/;" t +FT_Curve_Tag_Conic android/freetype/include/freetype/ftimage.h /^#define FT_Curve_Tag_Conic /;" d +FT_Curve_Tag_Conic include/freetype/ftimage.h /^#define FT_Curve_Tag_Conic /;" d +FT_Curve_Tag_Cubic android/freetype/include/freetype/ftimage.h /^#define FT_Curve_Tag_Cubic /;" d +FT_Curve_Tag_Cubic include/freetype/ftimage.h /^#define FT_Curve_Tag_Cubic /;" d +FT_Curve_Tag_On android/freetype/include/freetype/ftimage.h /^#define FT_Curve_Tag_On /;" d +FT_Curve_Tag_On include/freetype/ftimage.h /^#define FT_Curve_Tag_On /;" d +FT_Curve_Tag_Touch_X android/freetype/include/freetype/ftimage.h /^#define FT_Curve_Tag_Touch_X /;" d +FT_Curve_Tag_Touch_X include/freetype/ftimage.h /^#define FT_Curve_Tag_Touch_X /;" d +FT_Curve_Tag_Touch_Y android/freetype/include/freetype/ftimage.h /^#define FT_Curve_Tag_Touch_Y /;" d +FT_Curve_Tag_Touch_Y include/freetype/ftimage.h /^#define FT_Curve_Tag_Touch_Y /;" d +FT_DEBUG_HOOK_TRUETYPE android/freetype/include/freetype/internal/ftobjs.h /^#define FT_DEBUG_HOOK_TRUETYPE /;" d +FT_DEBUG_HOOK_TRUETYPE include/freetype/internal/ftobjs.h /^#define FT_DEBUG_HOOK_TRUETYPE /;" d +FT_DEBUG_HOOK_UNPATENTED_HINTING android/freetype/include/freetype/internal/ftobjs.h /^#define FT_DEBUG_HOOK_UNPATENTED_HINTING /;" d +FT_DEBUG_HOOK_UNPATENTED_HINTING include/freetype/internal/ftobjs.h /^#define FT_DEBUG_HOOK_UNPATENTED_HINTING /;" d +FT_DEBUG_INNER android/freetype/include/freetype/internal/ftmemory.h /^#define FT_DEBUG_INNER(/;" d +FT_DEBUG_INNER include/freetype/internal/ftmemory.h /^#define FT_DEBUG_INNER(/;" d +FT_DEBUG_LEVEL_ERROR android/freetype/include/freetype/internal/ftdebug.h /^#define FT_DEBUG_LEVEL_ERROR$/;" d +FT_DEBUG_LEVEL_ERROR android/freetype/include/freetype/internal/ftdebug.h /^#undef FT_DEBUG_LEVEL_ERROR$/;" d +FT_DEBUG_LEVEL_ERROR include/freetype/internal/ftdebug.h /^#define FT_DEBUG_LEVEL_ERROR$/;" d +FT_DEBUG_LEVEL_ERROR include/freetype/internal/ftdebug.h /^#undef FT_DEBUG_LEVEL_ERROR$/;" d +FT_DECLARE_CMAP_CLASS include/freetype/internal/ftobjs.h /^#define FT_DECLARE_CMAP_CLASS(/;" d +FT_DECLARE_DRIVER include/freetype/internal/ftdriver.h /^#define FT_DECLARE_DRIVER(/;" d +FT_DECLARE_MODULE include/freetype/internal/ftobjs.h /^#define FT_DECLARE_MODULE(/;" d +FT_DECLARE_RENDERER include/freetype/internal/ftobjs.h /^#define FT_DECLARE_RENDERER(/;" d +FT_DEFINE_AUTOHINTER_SERVICE include/freetype/internal/autohint.h /^#define FT_DEFINE_AUTOHINTER_SERVICE(/;" d +FT_DEFINE_CMAP_CLASS include/freetype/internal/ftobjs.h /^#define FT_DEFINE_CMAP_CLASS(/;" d +FT_DEFINE_DRIVER include/freetype/internal/ftdriver.h /^#define FT_DEFINE_DRIVER(/;" d +FT_DEFINE_DRIVERS_OLD_INTERNAL include/freetype/internal/sfnt.h /^ #define FT_DEFINE_DRIVERS_OLD_INTERNAL(/;" d +FT_DEFINE_DRIVERS_OLD_INTERNAL include/freetype/internal/sfnt.h /^#define FT_DEFINE_DRIVERS_OLD_INTERNAL(/;" d +FT_DEFINE_DRIVERS_OLD_INTERNALS include/freetype/internal/ftdriver.h /^ #define FT_DEFINE_DRIVERS_OLD_INTERNALS(/;" d +FT_DEFINE_DRIVERS_OLD_INTERNALS include/freetype/internal/ftdriver.h /^#define FT_DEFINE_DRIVERS_OLD_INTERNALS(/;" d +FT_DEFINE_GLYPH include/freetype/internal/ftobjs.h /^#define FT_DEFINE_GLYPH(/;" d +FT_DEFINE_MODULE include/freetype/internal/ftobjs.h /^#define FT_DEFINE_MODULE(/;" d +FT_DEFINE_OUTLINE_FUNCS include/freetype/internal/ftobjs.h /^#define FT_DEFINE_OUTLINE_FUNCS(/;" d +FT_DEFINE_PSHINTER_INTERFACE include/freetype/internal/pshints.h /^#define FT_DEFINE_PSHINTER_INTERFACE(/;" d +FT_DEFINE_RASTER_FUNCS include/freetype/internal/ftobjs.h /^#define FT_DEFINE_RASTER_FUNCS(/;" d +FT_DEFINE_RENDERER include/freetype/internal/ftobjs.h /^#define FT_DEFINE_RENDERER(/;" d +FT_DEFINE_ROOT_MODULE include/freetype/internal/ftobjs.h /^#define FT_DEFINE_ROOT_MODULE(/;" d +FT_DEFINE_SERVICE android/freetype/include/freetype/internal/ftserv.h /^#define FT_DEFINE_SERVICE(/;" d +FT_DEFINE_SERVICE android/freetype/include/freetype/internal/services/svbdf.h /^ FT_DEFINE_SERVICE( BDF )$/;" f +FT_DEFINE_SERVICE android/freetype/include/freetype/internal/services/svcid.h /^ FT_DEFINE_SERVICE( CID )$/;" f +FT_DEFINE_SERVICE android/freetype/include/freetype/internal/services/svgldict.h /^ FT_DEFINE_SERVICE( GlyphDict )$/;" f +FT_DEFINE_SERVICE android/freetype/include/freetype/internal/services/svgxval.h /^ FT_DEFINE_SERVICE( CKERNvalidate )$/;" f +FT_DEFINE_SERVICE android/freetype/include/freetype/internal/services/svgxval.h /^ FT_DEFINE_SERVICE( GXvalidate )$/;" f +FT_DEFINE_SERVICE android/freetype/include/freetype/internal/services/svkern.h /^ FT_DEFINE_SERVICE( Kerning )$/;" f +FT_DEFINE_SERVICE android/freetype/include/freetype/internal/services/svmm.h /^ FT_DEFINE_SERVICE( MultiMasters )$/;" f +FT_DEFINE_SERVICE android/freetype/include/freetype/internal/services/svotval.h /^ FT_DEFINE_SERVICE( OTvalidate )$/;" f +FT_DEFINE_SERVICE android/freetype/include/freetype/internal/services/svpfr.h /^ FT_DEFINE_SERVICE( PfrMetrics )$/;" f +FT_DEFINE_SERVICE android/freetype/include/freetype/internal/services/svpostnm.h /^ FT_DEFINE_SERVICE( PsFontName )$/;" f +FT_DEFINE_SERVICE android/freetype/include/freetype/internal/services/svpscmap.h /^ FT_DEFINE_SERVICE( PsCMaps )$/;" f +FT_DEFINE_SERVICE android/freetype/include/freetype/internal/services/svpsinfo.h /^ FT_DEFINE_SERVICE( PsInfo )$/;" f +FT_DEFINE_SERVICE android/freetype/include/freetype/internal/services/svsfnt.h /^ FT_DEFINE_SERVICE( SFNT_Table )$/;" f +FT_DEFINE_SERVICE android/freetype/include/freetype/internal/services/svttcmap.h /^ FT_DEFINE_SERVICE( TTCMaps )$/;" f +FT_DEFINE_SERVICE android/freetype/include/freetype/internal/services/svtteng.h /^ FT_DEFINE_SERVICE( TrueTypeEngine )$/;" f +FT_DEFINE_SERVICE android/freetype/include/freetype/internal/services/svttglyf.h /^ FT_DEFINE_SERVICE( TTGlyf )$/;" f +FT_DEFINE_SERVICE android/freetype/include/freetype/internal/services/svwinfnt.h /^ FT_DEFINE_SERVICE( WinFnt )$/;" f +FT_DEFINE_SERVICE include/freetype/internal/ftserv.h /^#define FT_DEFINE_SERVICE(/;" d +FT_DEFINE_SERVICE include/freetype/internal/services/svbdf.h /^ FT_DEFINE_SERVICE( BDF )$/;" f +FT_DEFINE_SERVICE include/freetype/internal/services/svcid.h /^ FT_DEFINE_SERVICE( CID )$/;" f +FT_DEFINE_SERVICE include/freetype/internal/services/svgldict.h /^ FT_DEFINE_SERVICE( GlyphDict )$/;" f +FT_DEFINE_SERVICE include/freetype/internal/services/svgxval.h /^ FT_DEFINE_SERVICE( CKERNvalidate )$/;" f +FT_DEFINE_SERVICE include/freetype/internal/services/svgxval.h /^ FT_DEFINE_SERVICE( GXvalidate )$/;" f +FT_DEFINE_SERVICE include/freetype/internal/services/svkern.h /^ FT_DEFINE_SERVICE( Kerning )$/;" f +FT_DEFINE_SERVICE include/freetype/internal/services/svmm.h /^ FT_DEFINE_SERVICE( MultiMasters )$/;" f +FT_DEFINE_SERVICE include/freetype/internal/services/svotval.h /^ FT_DEFINE_SERVICE( OTvalidate )$/;" f +FT_DEFINE_SERVICE include/freetype/internal/services/svpfr.h /^ FT_DEFINE_SERVICE( PfrMetrics )$/;" f +FT_DEFINE_SERVICE include/freetype/internal/services/svpostnm.h /^ FT_DEFINE_SERVICE( PsFontName )$/;" f +FT_DEFINE_SERVICE include/freetype/internal/services/svpscmap.h /^ FT_DEFINE_SERVICE( PsCMaps )$/;" f +FT_DEFINE_SERVICE include/freetype/internal/services/svpsinfo.h /^ FT_DEFINE_SERVICE( PsInfo )$/;" f +FT_DEFINE_SERVICE include/freetype/internal/services/svsfnt.h /^ FT_DEFINE_SERVICE( SFNT_Table )$/;" f +FT_DEFINE_SERVICE include/freetype/internal/services/svttcmap.h /^ FT_DEFINE_SERVICE( TTCMaps )$/;" f +FT_DEFINE_SERVICE include/freetype/internal/services/svtteng.h /^ FT_DEFINE_SERVICE( TrueTypeEngine )$/;" f +FT_DEFINE_SERVICE include/freetype/internal/services/svttglyf.h /^ FT_DEFINE_SERVICE( TTGlyf )$/;" f +FT_DEFINE_SERVICE include/freetype/internal/services/svwinfnt.h /^ FT_DEFINE_SERVICE( WinFnt )$/;" f +FT_DEFINE_SERVICEDESCREC1 include/freetype/internal/ftserv.h /^#define FT_DEFINE_SERVICEDESCREC1(/;" d +FT_DEFINE_SERVICEDESCREC2 include/freetype/internal/ftserv.h /^#define FT_DEFINE_SERVICEDESCREC2(/;" d +FT_DEFINE_SERVICEDESCREC3 include/freetype/internal/ftserv.h /^#define FT_DEFINE_SERVICEDESCREC3(/;" d +FT_DEFINE_SERVICEDESCREC4 include/freetype/internal/ftserv.h /^#define FT_DEFINE_SERVICEDESCREC4(/;" d +FT_DEFINE_SERVICEDESCREC5 include/freetype/internal/ftserv.h /^#define FT_DEFINE_SERVICEDESCREC5(/;" d +FT_DEFINE_SERVICEDESCREC6 include/freetype/internal/ftserv.h /^#define FT_DEFINE_SERVICEDESCREC6(/;" d +FT_DEFINE_SERVICE_BDFRec include/freetype/internal/services/svbdf.h /^#define FT_DEFINE_SERVICE_BDFRec(/;" d +FT_DEFINE_SERVICE_CIDREC include/freetype/internal/services/svcid.h /^#define FT_DEFINE_SERVICE_CIDREC(/;" d +FT_DEFINE_SERVICE_GLYPHDICTREC include/freetype/internal/services/svgldict.h /^#define FT_DEFINE_SERVICE_GLYPHDICTREC(/;" d +FT_DEFINE_SERVICE_MULTIMASTERSREC include/freetype/internal/services/svmm.h /^#define FT_DEFINE_SERVICE_MULTIMASTERSREC(/;" d +FT_DEFINE_SERVICE_PSCMAPSREC include/freetype/internal/services/svpscmap.h /^#define FT_DEFINE_SERVICE_PSCMAPSREC(/;" d +FT_DEFINE_SERVICE_PSFONTNAMEREC include/freetype/internal/services/svpostnm.h /^#define FT_DEFINE_SERVICE_PSFONTNAMEREC(/;" d +FT_DEFINE_SERVICE_PSINFOREC include/freetype/internal/services/svpsinfo.h /^#define FT_DEFINE_SERVICE_PSINFOREC(/;" d +FT_DEFINE_SERVICE_SFNT_TABLEREC include/freetype/internal/services/svsfnt.h /^#define FT_DEFINE_SERVICE_SFNT_TABLEREC(/;" d +FT_DEFINE_SERVICE_TTCMAPSREC include/freetype/internal/services/svttcmap.h /^#define FT_DEFINE_SERVICE_TTCMAPSREC(/;" d +FT_DEFINE_SERVICE_TTGLYFREC include/freetype/internal/services/svttglyf.h /^#define FT_DEFINE_SERVICE_TTGLYFREC(/;" d +FT_DEFINE_SFNT_INTERFACE include/freetype/internal/sfnt.h /^#define FT_DEFINE_SFNT_INTERFACE(/;" d +FT_DEPRECATED_ATTRIBUTE android/freetype/include/freetype/ftmac.h /^#define FT_DEPRECATED_ATTRIBUTE /;" d +FT_DEPRECATED_ATTRIBUTE include/freetype/ftmac.h /^#define FT_DEPRECATED_ATTRIBUTE /;" d +FT_DRIVER android/freetype/include/freetype/internal/ftobjs.h /^#define FT_DRIVER(/;" d +FT_DRIVER include/freetype/internal/ftobjs.h /^#define FT_DRIVER(/;" d +FT_DRIVER_CLASS android/freetype/include/freetype/internal/ftobjs.h /^#define FT_DRIVER_CLASS(/;" d +FT_DRIVER_CLASS include/freetype/internal/ftobjs.h /^#define FT_DRIVER_CLASS(/;" d +FT_DRIVER_HAS_HINTER android/freetype/include/freetype/internal/ftobjs.h /^#define FT_DRIVER_HAS_HINTER(/;" d +FT_DRIVER_HAS_HINTER include/freetype/internal/ftobjs.h /^#define FT_DRIVER_HAS_HINTER(/;" d +FT_DRIVER_IS_SCALABLE android/freetype/include/freetype/internal/ftobjs.h /^#define FT_DRIVER_IS_SCALABLE(/;" d +FT_DRIVER_IS_SCALABLE include/freetype/internal/ftobjs.h /^#define FT_DRIVER_IS_SCALABLE(/;" d +FT_DRIVER_USES_OUTLINES android/freetype/include/freetype/internal/ftobjs.h /^#define FT_DRIVER_USES_OUTLINES(/;" d +FT_DRIVER_USES_OUTLINES include/freetype/internal/ftobjs.h /^#define FT_DRIVER_USES_OUTLINES(/;" d +FT_DUMMY_STMNT android/freetype/include/freetype/config/ftconfig.h /^#define FT_DUMMY_STMNT /;" d +FT_DUMMY_STMNT include/freetype/config/ftconfig.h /^#define FT_DUMMY_STMNT /;" d +FT_DUP android/freetype/include/freetype/internal/ftmemory.h /^#define FT_DUP(/;" d +FT_DUP include/freetype/internal/ftmemory.h /^#define FT_DUP(/;" d +FT_Data android/freetype/include/freetype/fttypes.h /^ } FT_Data;$/;" t typeref:struct:FT_Data_ +FT_Data include/freetype/fttypes.h /^ } FT_Data;$/;" t typeref:struct:FT_Data_ +FT_Data_ android/freetype/include/freetype/fttypes.h /^ typedef struct FT_Data_$/;" s +FT_Data_ include/freetype/fttypes.h /^ typedef struct FT_Data_$/;" s +FT_DebugHook_Func android/freetype/include/freetype/ftmodapi.h /^ (*FT_DebugHook_Func)( void* arg );$/;" t +FT_DebugHook_Func include/freetype/ftmodapi.h /^ (*FT_DebugHook_Func)( void* arg );$/;" t +FT_Done_Glyph android/freetype/src/base/ftglyph.c /^ FT_Done_Glyph( FT_Glyph glyph )$/;" f +FT_Done_GlyphSlot android/freetype/src/base/ftobjs.c /^ FT_Done_GlyphSlot( FT_GlyphSlot slot )$/;" f +FT_Done_Memory android/freetype/src/base/ftsystem.c /^ FT_Done_Memory( FT_Memory memory )$/;" f +FT_Driver android/freetype/include/freetype/freetype.h /^ typedef struct FT_DriverRec_* FT_Driver;$/;" t typeref:struct:FT_DriverRec_ +FT_Driver include/freetype/freetype.h /^ typedef struct FT_DriverRec_* FT_Driver;$/;" t typeref:struct:FT_DriverRec_ +FT_DriverRec android/freetype/include/freetype/internal/ftobjs.h /^ } FT_DriverRec;$/;" t typeref:struct:FT_DriverRec_ +FT_DriverRec include/freetype/internal/ftobjs.h /^ } FT_DriverRec;$/;" t typeref:struct:FT_DriverRec_ +FT_DriverRec_ android/freetype/include/freetype/internal/ftobjs.h /^ typedef struct FT_DriverRec_$/;" s +FT_DriverRec_ include/freetype/internal/ftobjs.h /^ typedef struct FT_DriverRec_$/;" s +FT_Driver_Class android/freetype/include/freetype/internal/ftdriver.h /^ } FT_Driver_ClassRec, *FT_Driver_Class;$/;" t typeref:struct:FT_Driver_ClassRec_ +FT_Driver_Class include/freetype/internal/ftdriver.h /^ } FT_Driver_ClassRec, *FT_Driver_Class;$/;" t typeref:struct:FT_Driver_ClassRec_ +FT_Driver_ClassRec android/freetype/include/freetype/internal/ftdriver.h /^ } FT_Driver_ClassRec, *FT_Driver_Class;$/;" t typeref:struct:FT_Driver_ClassRec_ +FT_Driver_ClassRec include/freetype/internal/ftdriver.h /^ } FT_Driver_ClassRec, *FT_Driver_Class;$/;" t typeref:struct:FT_Driver_ClassRec_ +FT_Driver_ClassRec_ android/freetype/include/freetype/internal/ftdriver.h /^ typedef struct FT_Driver_ClassRec_$/;" s +FT_Driver_ClassRec_ include/freetype/internal/ftdriver.h /^ typedef struct FT_Driver_ClassRec_$/;" s +FT_DumpMemory android/freetype/src/base/ftdbgmem.c /^ FT_DumpMemory( FT_Memory memory )$/;" f +FT_ENCODING_MS_BIG5 android/freetype/include/freetype/freetype.h /^ FT_ENCODING_MS_BIG5 = FT_ENCODING_BIG5,$/;" e enum:FT_Encoding_ +FT_ENCODING_MS_BIG5 include/freetype/freetype.h /^ FT_ENCODING_MS_BIG5 = FT_ENCODING_BIG5,$/;" e enum:FT_Encoding_ +FT_ENCODING_MS_GB2312 android/freetype/include/freetype/freetype.h /^ FT_ENCODING_MS_GB2312 = FT_ENCODING_GB2312,$/;" e enum:FT_Encoding_ +FT_ENCODING_MS_GB2312 include/freetype/freetype.h /^ FT_ENCODING_MS_GB2312 = FT_ENCODING_GB2312,$/;" e enum:FT_Encoding_ +FT_ENCODING_MS_JOHAB android/freetype/include/freetype/freetype.h /^ FT_ENCODING_MS_JOHAB = FT_ENCODING_JOHAB,$/;" e enum:FT_Encoding_ +FT_ENCODING_MS_JOHAB include/freetype/freetype.h /^ FT_ENCODING_MS_JOHAB = FT_ENCODING_JOHAB,$/;" e enum:FT_Encoding_ +FT_ENCODING_MS_SJIS android/freetype/include/freetype/freetype.h /^ FT_ENCODING_MS_SJIS = FT_ENCODING_SJIS,$/;" e enum:FT_Encoding_ +FT_ENCODING_MS_SJIS include/freetype/freetype.h /^ FT_ENCODING_MS_SJIS = FT_ENCODING_SJIS,$/;" e enum:FT_Encoding_ +FT_ENCODING_MS_WANSUNG android/freetype/include/freetype/freetype.h /^ FT_ENCODING_MS_WANSUNG = FT_ENCODING_WANSUNG,$/;" e enum:FT_Encoding_ +FT_ENCODING_MS_WANSUNG include/freetype/freetype.h /^ FT_ENCODING_MS_WANSUNG = FT_ENCODING_WANSUNG,$/;" e enum:FT_Encoding_ +FT_ENC_TAG android/freetype/include/freetype/freetype.h /^ FT_ENC_TAG( FT_ENCODING_ADOBE_CUSTOM, 'A', 'D', 'B', 'C' ),$/;" e enum:FT_Encoding_ +FT_ENC_TAG android/freetype/include/freetype/freetype.h /^ FT_ENC_TAG( FT_ENCODING_ADOBE_EXPERT, 'A', 'D', 'B', 'E' ),$/;" e enum:FT_Encoding_ +FT_ENC_TAG android/freetype/include/freetype/freetype.h /^ FT_ENC_TAG( FT_ENCODING_ADOBE_LATIN_1, 'l', 'a', 't', '1' ),$/;" e enum:FT_Encoding_ +FT_ENC_TAG android/freetype/include/freetype/freetype.h /^ FT_ENC_TAG( FT_ENCODING_ADOBE_STANDARD, 'A', 'D', 'O', 'B' ),$/;" e enum:FT_Encoding_ +FT_ENC_TAG android/freetype/include/freetype/freetype.h /^ FT_ENC_TAG( FT_ENCODING_APPLE_ROMAN, 'a', 'r', 'm', 'n' )$/;" e enum:FT_Encoding_ +FT_ENC_TAG android/freetype/include/freetype/freetype.h /^ FT_ENC_TAG( FT_ENCODING_BIG5, 'b', 'i', 'g', '5' ),$/;" e enum:FT_Encoding_ +FT_ENC_TAG android/freetype/include/freetype/freetype.h /^ FT_ENC_TAG( FT_ENCODING_GB2312, 'g', 'b', ' ', ' ' ),$/;" e enum:FT_Encoding_ +FT_ENC_TAG android/freetype/include/freetype/freetype.h /^ FT_ENC_TAG( FT_ENCODING_JOHAB, 'j', 'o', 'h', 'a' ),$/;" e enum:FT_Encoding_ +FT_ENC_TAG android/freetype/include/freetype/freetype.h /^ FT_ENC_TAG( FT_ENCODING_MS_SYMBOL, 's', 'y', 'm', 'b' ),$/;" e enum:FT_Encoding_ +FT_ENC_TAG android/freetype/include/freetype/freetype.h /^ FT_ENC_TAG( FT_ENCODING_NONE, 0, 0, 0, 0 ),$/;" e enum:FT_Encoding_ +FT_ENC_TAG android/freetype/include/freetype/freetype.h /^ FT_ENC_TAG( FT_ENCODING_OLD_LATIN_2, 'l', 'a', 't', '2' ),$/;" e enum:FT_Encoding_ +FT_ENC_TAG android/freetype/include/freetype/freetype.h /^ FT_ENC_TAG( FT_ENCODING_SJIS, 's', 'j', 'i', 's' ),$/;" e enum:FT_Encoding_ +FT_ENC_TAG android/freetype/include/freetype/freetype.h /^ FT_ENC_TAG( FT_ENCODING_UNICODE, 'u', 'n', 'i', 'c' ),$/;" e enum:FT_Encoding_ +FT_ENC_TAG android/freetype/include/freetype/freetype.h /^ FT_ENC_TAG( FT_ENCODING_WANSUNG, 'w', 'a', 'n', 's' ),$/;" e enum:FT_Encoding_ +FT_ENC_TAG android/freetype/include/freetype/freetype.h /^#define FT_ENC_TAG(/;" d +FT_ENC_TAG include/freetype/freetype.h /^ FT_ENC_TAG( FT_ENCODING_ADOBE_CUSTOM, 'A', 'D', 'B', 'C' ),$/;" e enum:FT_Encoding_ +FT_ENC_TAG include/freetype/freetype.h /^ FT_ENC_TAG( FT_ENCODING_ADOBE_EXPERT, 'A', 'D', 'B', 'E' ),$/;" e enum:FT_Encoding_ +FT_ENC_TAG include/freetype/freetype.h /^ FT_ENC_TAG( FT_ENCODING_ADOBE_LATIN_1, 'l', 'a', 't', '1' ),$/;" e enum:FT_Encoding_ +FT_ENC_TAG include/freetype/freetype.h /^ FT_ENC_TAG( FT_ENCODING_ADOBE_STANDARD, 'A', 'D', 'O', 'B' ),$/;" e enum:FT_Encoding_ +FT_ENC_TAG include/freetype/freetype.h /^ FT_ENC_TAG( FT_ENCODING_APPLE_ROMAN, 'a', 'r', 'm', 'n' )$/;" e enum:FT_Encoding_ +FT_ENC_TAG include/freetype/freetype.h /^ FT_ENC_TAG( FT_ENCODING_BIG5, 'b', 'i', 'g', '5' ),$/;" e enum:FT_Encoding_ +FT_ENC_TAG include/freetype/freetype.h /^ FT_ENC_TAG( FT_ENCODING_GB2312, 'g', 'b', ' ', ' ' ),$/;" e enum:FT_Encoding_ +FT_ENC_TAG include/freetype/freetype.h /^ FT_ENC_TAG( FT_ENCODING_JOHAB, 'j', 'o', 'h', 'a' ),$/;" e enum:FT_Encoding_ +FT_ENC_TAG include/freetype/freetype.h /^ FT_ENC_TAG( FT_ENCODING_MS_SYMBOL, 's', 'y', 'm', 'b' ),$/;" e enum:FT_Encoding_ +FT_ENC_TAG include/freetype/freetype.h /^ FT_ENC_TAG( FT_ENCODING_NONE, 0, 0, 0, 0 ),$/;" e enum:FT_Encoding_ +FT_ENC_TAG include/freetype/freetype.h /^ FT_ENC_TAG( FT_ENCODING_OLD_LATIN_2, 'l', 'a', 't', '2' ),$/;" e enum:FT_Encoding_ +FT_ENC_TAG include/freetype/freetype.h /^ FT_ENC_TAG( FT_ENCODING_SJIS, 's', 'j', 'i', 's' ),$/;" e enum:FT_Encoding_ +FT_ENC_TAG include/freetype/freetype.h /^ FT_ENC_TAG( FT_ENCODING_UNICODE, 'u', 'n', 'i', 'c' ),$/;" e enum:FT_Encoding_ +FT_ENC_TAG include/freetype/freetype.h /^ FT_ENC_TAG( FT_ENCODING_WANSUNG, 'w', 'a', 'n', 's' ),$/;" e enum:FT_Encoding_ +FT_ENC_TAG include/freetype/freetype.h /^#define FT_ENC_TAG(/;" d +FT_END_HEADER android/freetype/include/freetype/config/ftheader.h /^#define FT_END_HEADER /;" d +FT_END_HEADER android/freetype/src/raster/ftmisc.h /^#define FT_END_HEADER$/;" d +FT_END_HEADER android/freetype/src/smooth/ftgrays.c /^#define FT_END_HEADER$/;" d file: +FT_END_HEADER include/freetype/config/ftheader.h /^#define FT_END_HEADER /;" d +FT_END_STMNT android/freetype/include/freetype/config/ftconfig.h /^#define FT_END_STMNT /;" d +FT_END_STMNT include/freetype/config/ftconfig.h /^#define FT_END_STMNT /;" d +FT_EPSILON android/freetype/src/base/ftstroke.c /^#define FT_EPSILON /;" d file: +FT_ERROR android/freetype/include/freetype/internal/ftdebug.h /^#define FT_ERROR(/;" d +FT_ERROR android/freetype/src/raster/ftraster.c /^#define FT_ERROR(/;" d file: +FT_ERROR android/freetype/src/smooth/ftgrays.c /^#define FT_ERROR(/;" d file: +FT_ERROR include/freetype/internal/ftdebug.h /^#define FT_ERROR(/;" d +FT_ERRORDEF android/freetype/include/freetype/fterrors.h /^#define FT_ERRORDEF(/;" d +FT_ERRORDEF android/freetype/include/freetype/fterrors.h /^#undef FT_ERRORDEF$/;" d +FT_ERRORDEF include/freetype/fterrors.h /^#define FT_ERRORDEF(/;" d +FT_ERRORDEF include/freetype/fterrors.h /^#undef FT_ERRORDEF$/;" d +FT_ERRORDEF_ android/freetype/include/freetype/fterrors.h /^#define FT_ERRORDEF_(/;" d +FT_ERRORDEF_ android/freetype/include/freetype/fterrors.h /^#undef FT_ERRORDEF_$/;" d +FT_ERRORDEF_ include/freetype/fterrors.h /^#define FT_ERRORDEF_(/;" d +FT_ERRORDEF_ include/freetype/fterrors.h /^#undef FT_ERRORDEF_$/;" d +FT_ERRORS_H android/freetype/include/freetype/config/ftheader.h /^#define FT_ERRORS_H /;" d +FT_ERRORS_H include/freetype/config/ftheader.h /^#define FT_ERRORS_H /;" d +FT_ERROR_BASE android/freetype/include/freetype/fttypes.h /^#define FT_ERROR_BASE(/;" d +FT_ERROR_BASE include/freetype/fttypes.h /^#define FT_ERROR_BASE(/;" d +FT_ERROR_DEFINITIONS_H android/freetype/include/freetype/config/ftheader.h /^#define FT_ERROR_DEFINITIONS_H /;" d +FT_ERROR_DEFINITIONS_H include/freetype/config/ftheader.h /^#define FT_ERROR_DEFINITIONS_H /;" d +FT_ERROR_END_LIST android/freetype/include/freetype/fterrors.h /^#define FT_ERROR_END_LIST /;" d +FT_ERROR_END_LIST android/freetype/include/freetype/fterrors.h /^#undef FT_ERROR_END_LIST$/;" d +FT_ERROR_END_LIST include/freetype/fterrors.h /^#define FT_ERROR_END_LIST /;" d +FT_ERROR_END_LIST include/freetype/fterrors.h /^#undef FT_ERROR_END_LIST$/;" d +FT_ERROR_MODULE android/freetype/include/freetype/fttypes.h /^#define FT_ERROR_MODULE(/;" d +FT_ERROR_MODULE include/freetype/fttypes.h /^#define FT_ERROR_MODULE(/;" d +FT_ERROR_START_LIST android/freetype/include/freetype/fterrors.h /^#define FT_ERROR_START_LIST /;" d +FT_ERROR_START_LIST android/freetype/include/freetype/fterrors.h /^#undef FT_ERROR_START_LIST$/;" d +FT_ERROR_START_LIST include/freetype/fterrors.h /^#define FT_ERROR_START_LIST /;" d +FT_ERROR_START_LIST include/freetype/fterrors.h /^#undef FT_ERROR_START_LIST$/;" d +FT_ERR_BASE android/freetype/include/freetype/fterrors.h /^#define FT_ERR_BASE /;" d +FT_ERR_BASE android/freetype/include/freetype/fterrors.h /^#undef FT_ERR_BASE$/;" d +FT_ERR_BASE android/freetype/src/autofit/aferrors.h /^#define FT_ERR_BASE /;" d +FT_ERR_BASE android/freetype/src/cff/cfferrs.h /^#define FT_ERR_BASE /;" d +FT_ERR_BASE android/freetype/src/psaux/psauxerr.h /^#define FT_ERR_BASE /;" d +FT_ERR_BASE android/freetype/src/pshinter/pshnterr.h /^#define FT_ERR_BASE /;" d +FT_ERR_BASE android/freetype/src/psnames/psnamerr.h /^#define FT_ERR_BASE /;" d +FT_ERR_BASE android/freetype/src/raster/rasterrs.h /^#define FT_ERR_BASE /;" d +FT_ERR_BASE android/freetype/src/sfnt/sferrors.h /^#define FT_ERR_BASE /;" d +FT_ERR_BASE android/freetype/src/smooth/ftsmerrs.h /^#define FT_ERR_BASE /;" d +FT_ERR_BASE android/freetype/src/truetype/tterrors.h /^#define FT_ERR_BASE /;" d +FT_ERR_BASE include/freetype/fterrors.h /^#define FT_ERR_BASE /;" d +FT_ERR_BASE include/freetype/fterrors.h /^#undef FT_ERR_BASE$/;" d +FT_ERR_CAT android/freetype/include/freetype/fterrors.h /^#define FT_ERR_CAT(/;" d +FT_ERR_CAT android/freetype/include/freetype/fterrors.h /^#undef FT_ERR_CAT$/;" d +FT_ERR_CAT include/freetype/fterrors.h /^#define FT_ERR_CAT(/;" d +FT_ERR_CAT include/freetype/fterrors.h /^#undef FT_ERR_CAT$/;" d +FT_ERR_CONCAT android/freetype/include/freetype/fterrors.h /^#undef FT_ERR_CONCAT$/;" d +FT_ERR_CONCAT include/freetype/fterrors.h /^#undef FT_ERR_CONCAT$/;" d +FT_ERR_PREFIX android/freetype/include/freetype/fterrors.h /^#define FT_ERR_PREFIX /;" d +FT_ERR_PREFIX android/freetype/include/freetype/fterrors.h /^#undef FT_ERR_PREFIX$/;" d +FT_ERR_PREFIX android/freetype/src/autofit/aferrors.h /^#define FT_ERR_PREFIX /;" d +FT_ERR_PREFIX android/freetype/src/cff/cfferrs.h /^#define FT_ERR_PREFIX /;" d +FT_ERR_PREFIX android/freetype/src/psaux/psauxerr.h /^#define FT_ERR_PREFIX /;" d +FT_ERR_PREFIX android/freetype/src/pshinter/pshnterr.h /^#define FT_ERR_PREFIX /;" d +FT_ERR_PREFIX android/freetype/src/psnames/psnamerr.h /^#define FT_ERR_PREFIX /;" d +FT_ERR_PREFIX android/freetype/src/raster/rasterrs.h /^#define FT_ERR_PREFIX /;" d +FT_ERR_PREFIX android/freetype/src/sfnt/sferrors.h /^#define FT_ERR_PREFIX /;" d +FT_ERR_PREFIX android/freetype/src/smooth/ftsmerrs.h /^#define FT_ERR_PREFIX /;" d +FT_ERR_PREFIX android/freetype/src/truetype/tterrors.h /^#define FT_ERR_PREFIX /;" d +FT_ERR_PREFIX include/freetype/fterrors.h /^#define FT_ERR_PREFIX /;" d +FT_ERR_PREFIX include/freetype/fterrors.h /^#undef FT_ERR_PREFIX$/;" d +FT_ERR_XCAT android/freetype/include/freetype/fterrors.h /^#define FT_ERR_XCAT(/;" d +FT_ERR_XCAT android/freetype/include/freetype/fterrors.h /^#undef FT_ERR_XCAT$/;" d +FT_ERR_XCAT include/freetype/fterrors.h /^#define FT_ERR_XCAT(/;" d +FT_ERR_XCAT include/freetype/fterrors.h /^#undef FT_ERR_XCAT$/;" d +FT_EXPORT android/freetype/include/freetype/config/ftconfig.h /^#define FT_EXPORT(/;" d +FT_EXPORT android/freetype/src/base/ftlcdfil.c /^ FT_EXPORT( FT_Error )$/;" f +FT_EXPORT include/freetype/config/ftconfig.h /^#define FT_EXPORT(/;" d +FT_EXPORT_DEF android/freetype/include/freetype/config/ftconfig.h /^#define FT_EXPORT_DEF(/;" d +FT_EXPORT_DEF android/freetype/src/base/ftadvanc.c /^ FT_EXPORT_DEF(FT_Error)$/;" f +FT_EXPORT_DEF android/freetype/src/base/ftbbox.c /^ FT_EXPORT_DEF( FT_Error )$/;" f +FT_EXPORT_DEF android/freetype/src/base/ftbitmap.c /^ FT_EXPORT_DEF( FT_Error )$/;" f +FT_EXPORT_DEF android/freetype/src/base/ftcalc.c /^ FT_EXPORT_DEF( FT_Fixed )$/;" f +FT_EXPORT_DEF android/freetype/src/base/ftcalc.c /^ FT_EXPORT_DEF( FT_Int32 )$/;" f +FT_EXPORT_DEF android/freetype/src/base/ftcalc.c /^ FT_EXPORT_DEF( FT_Long )$/;" f +FT_EXPORT_DEF android/freetype/src/base/ftgasp.c /^ FT_EXPORT_DEF( FT_Int )$/;" f +FT_EXPORT_DEF android/freetype/src/base/ftglyph.c /^ FT_EXPORT_DEF( FT_Error )$/;" f +FT_EXPORT_DEF android/freetype/src/base/ftinit.c /^ FT_EXPORT_DEF( FT_Error )$/;" f +FT_EXPORT_DEF android/freetype/src/base/ftmm.c /^ FT_EXPORT_DEF( FT_Error )$/;" f +FT_EXPORT_DEF android/freetype/src/base/ftnames.c /^ FT_EXPORT_DEF( FT_Error )$/;" f +FT_EXPORT_DEF android/freetype/src/base/ftnames.c /^ FT_EXPORT_DEF( FT_UInt )$/;" f +FT_EXPORT_DEF android/freetype/src/base/ftobjs.c /^ FT_EXPORT_DEF( FT_Error )$/;" f +FT_EXPORT_DEF android/freetype/src/base/ftobjs.c /^ FT_EXPORT_DEF( FT_Int )$/;" f +FT_EXPORT_DEF android/freetype/src/base/ftobjs.c /^ FT_EXPORT_DEF( FT_Long )$/;" f +FT_EXPORT_DEF android/freetype/src/base/ftobjs.c /^ FT_EXPORT_DEF( FT_Module )$/;" f +FT_EXPORT_DEF android/freetype/src/base/ftobjs.c /^ FT_EXPORT_DEF( FT_Renderer )$/;" f +FT_EXPORT_DEF android/freetype/src/base/ftobjs.c /^ FT_EXPORT_DEF( FT_TrueTypeEngineType )$/;" f +FT_EXPORT_DEF android/freetype/src/base/ftobjs.c /^ FT_EXPORT_DEF( FT_UInt )$/;" f +FT_EXPORT_DEF android/freetype/src/base/ftobjs.c /^ FT_EXPORT_DEF( FT_ULong )$/;" f +FT_EXPORT_DEF android/freetype/src/base/ftoutln.c /^ FT_EXPORT_DEF( FT_Error )$/;" f +FT_EXPORT_DEF android/freetype/src/base/ftoutln.c /^ FT_EXPORT_DEF( FT_Orientation )$/;" f +FT_EXPORT_DEF android/freetype/src/base/ftpatent.c /^ FT_EXPORT_DEF( FT_Bool )$/;" f +FT_EXPORT_DEF android/freetype/src/base/ftstroke.c /^ FT_EXPORT_DEF( FT_Error )$/;" f +FT_EXPORT_DEF android/freetype/src/base/ftstroke.c /^ FT_EXPORT_DEF( FT_StrokerBorder )$/;" f +FT_EXPORT_DEF android/freetype/src/base/ftsynth.c /^ FT_EXPORT_DEF( FT_Error )$/;" f +FT_EXPORT_DEF android/freetype/src/base/fttrigon.c /^ FT_EXPORT_DEF( FT_Angle )$/;" f +FT_EXPORT_DEF android/freetype/src/base/fttrigon.c /^ FT_EXPORT_DEF( FT_Fixed )$/;" f +FT_EXPORT_DEF android/freetype/src/base/ftutil.c /^ FT_EXPORT_DEF( FT_Error )$/;" f +FT_EXPORT_DEF android/freetype/src/base/ftutil.c /^ FT_EXPORT_DEF( FT_ListNode )$/;" f +FT_EXPORT_DEF android/freetype/src/base/ftwinfnt.c /^ FT_EXPORT_DEF( FT_Error )$/;" f +FT_EXPORT_DEF android/freetype/src/truetype/ttinterp.c /^ FT_EXPORT_DEF( FT_Error )$/;" f +FT_EXPORT_DEF android/freetype/src/truetype/ttinterp.c /^ FT_EXPORT_DEF( TT_ExecContext )$/;" f +FT_EXPORT_DEF include/freetype/config/ftconfig.h /^#define FT_EXPORT_DEF(/;" d +FT_EXPORT_VAR android/freetype/include/freetype/config/ftconfig.h /^#define FT_EXPORT_VAR(/;" d +FT_EXPORT_VAR android/freetype/src/smooth/ftgrays.h /^#define FT_EXPORT_VAR(/;" d +FT_EXPORT_VAR include/freetype/config/ftconfig.h /^#define FT_EXPORT_VAR(/;" d +FT_Encoding android/freetype/include/freetype/freetype.h /^ } FT_Encoding;$/;" t typeref:enum:FT_Encoding_ +FT_Encoding include/freetype/freetype.h /^ } FT_Encoding;$/;" t typeref:enum:FT_Encoding_ +FT_Encoding_ android/freetype/include/freetype/freetype.h /^ typedef enum FT_Encoding_$/;" g +FT_Encoding_ include/freetype/freetype.h /^ typedef enum FT_Encoding_$/;" g +FT_Error android/freetype/include/freetype/fttypes.h /^ typedef int FT_Error;$/;" t +FT_Error android/freetype/src/raster/ftmisc.h /^ typedef int FT_Error;$/;" t +FT_Error include/freetype/fttypes.h /^ typedef int FT_Error;$/;" t +FT_F26Dot6 android/freetype/include/freetype/fttypes.h /^ typedef signed long FT_F26Dot6;$/;" t +FT_F26Dot6 android/freetype/src/raster/ftmisc.h /^ typedef signed long FT_F26Dot6;$/;" t +FT_F26Dot6 include/freetype/fttypes.h /^ typedef signed long FT_F26Dot6;$/;" t +FT_F2Dot14 android/freetype/include/freetype/fttypes.h /^ typedef signed short FT_F2Dot14;$/;" t +FT_F2Dot14 include/freetype/fttypes.h /^ typedef signed short FT_F2Dot14;$/;" t +FT_FACE android/freetype/include/freetype/internal/ftobjs.h /^#define FT_FACE(/;" d +FT_FACE include/freetype/internal/ftobjs.h /^#define FT_FACE(/;" d +FT_FACE_DRIVER android/freetype/include/freetype/internal/ftobjs.h /^#define FT_FACE_DRIVER(/;" d +FT_FACE_DRIVER include/freetype/internal/ftobjs.h /^#define FT_FACE_DRIVER(/;" d +FT_FACE_FIND_GLOBAL_SERVICE android/freetype/include/freetype/internal/ftserv.h /^#define FT_FACE_FIND_GLOBAL_SERVICE(/;" d +FT_FACE_FIND_GLOBAL_SERVICE include/freetype/internal/ftserv.h /^#define FT_FACE_FIND_GLOBAL_SERVICE(/;" d +FT_FACE_FIND_SERVICE android/freetype/include/freetype/internal/ftserv.h /^#define FT_FACE_FIND_SERVICE(/;" d +FT_FACE_FIND_SERVICE include/freetype/internal/ftserv.h /^#define FT_FACE_FIND_SERVICE(/;" d +FT_FACE_FLAG_CID_KEYED android/freetype/include/freetype/freetype.h /^#define FT_FACE_FLAG_CID_KEYED /;" d +FT_FACE_FLAG_CID_KEYED include/freetype/freetype.h /^#define FT_FACE_FLAG_CID_KEYED /;" d +FT_FACE_FLAG_EXTERNAL_STREAM android/freetype/include/freetype/freetype.h /^#define FT_FACE_FLAG_EXTERNAL_STREAM /;" d +FT_FACE_FLAG_EXTERNAL_STREAM include/freetype/freetype.h /^#define FT_FACE_FLAG_EXTERNAL_STREAM /;" d +FT_FACE_FLAG_FAST_GLYPHS android/freetype/include/freetype/freetype.h /^#define FT_FACE_FLAG_FAST_GLYPHS /;" d +FT_FACE_FLAG_FAST_GLYPHS include/freetype/freetype.h /^#define FT_FACE_FLAG_FAST_GLYPHS /;" d +FT_FACE_FLAG_FIXED_SIZES android/freetype/include/freetype/freetype.h /^#define FT_FACE_FLAG_FIXED_SIZES /;" d +FT_FACE_FLAG_FIXED_SIZES include/freetype/freetype.h /^#define FT_FACE_FLAG_FIXED_SIZES /;" d +FT_FACE_FLAG_FIXED_WIDTH android/freetype/include/freetype/freetype.h /^#define FT_FACE_FLAG_FIXED_WIDTH /;" d +FT_FACE_FLAG_FIXED_WIDTH include/freetype/freetype.h /^#define FT_FACE_FLAG_FIXED_WIDTH /;" d +FT_FACE_FLAG_GLYPH_NAMES android/freetype/include/freetype/freetype.h /^#define FT_FACE_FLAG_GLYPH_NAMES /;" d +FT_FACE_FLAG_GLYPH_NAMES include/freetype/freetype.h /^#define FT_FACE_FLAG_GLYPH_NAMES /;" d +FT_FACE_FLAG_HINTER android/freetype/include/freetype/freetype.h /^#define FT_FACE_FLAG_HINTER /;" d +FT_FACE_FLAG_HINTER include/freetype/freetype.h /^#define FT_FACE_FLAG_HINTER /;" d +FT_FACE_FLAG_HORIZONTAL android/freetype/include/freetype/freetype.h /^#define FT_FACE_FLAG_HORIZONTAL /;" d +FT_FACE_FLAG_HORIZONTAL include/freetype/freetype.h /^#define FT_FACE_FLAG_HORIZONTAL /;" d +FT_FACE_FLAG_KERNING android/freetype/include/freetype/freetype.h /^#define FT_FACE_FLAG_KERNING /;" d +FT_FACE_FLAG_KERNING include/freetype/freetype.h /^#define FT_FACE_FLAG_KERNING /;" d +FT_FACE_FLAG_MULTIPLE_MASTERS android/freetype/include/freetype/freetype.h /^#define FT_FACE_FLAG_MULTIPLE_MASTERS /;" d +FT_FACE_FLAG_MULTIPLE_MASTERS include/freetype/freetype.h /^#define FT_FACE_FLAG_MULTIPLE_MASTERS /;" d +FT_FACE_FLAG_SCALABLE android/freetype/include/freetype/freetype.h /^#define FT_FACE_FLAG_SCALABLE /;" d +FT_FACE_FLAG_SCALABLE include/freetype/freetype.h /^#define FT_FACE_FLAG_SCALABLE /;" d +FT_FACE_FLAG_SFNT android/freetype/include/freetype/freetype.h /^#define FT_FACE_FLAG_SFNT /;" d +FT_FACE_FLAG_SFNT include/freetype/freetype.h /^#define FT_FACE_FLAG_SFNT /;" d +FT_FACE_FLAG_TRICKY include/freetype/freetype.h /^#define FT_FACE_FLAG_TRICKY /;" d +FT_FACE_FLAG_VERTICAL android/freetype/include/freetype/freetype.h /^#define FT_FACE_FLAG_VERTICAL /;" d +FT_FACE_FLAG_VERTICAL include/freetype/freetype.h /^#define FT_FACE_FLAG_VERTICAL /;" d +FT_FACE_LIBRARY android/freetype/include/freetype/internal/ftobjs.h /^#define FT_FACE_LIBRARY(/;" d +FT_FACE_LIBRARY include/freetype/internal/ftobjs.h /^#define FT_FACE_LIBRARY(/;" d +FT_FACE_LOOKUP_SERVICE android/freetype/include/freetype/internal/ftserv.h /^#define FT_FACE_LOOKUP_SERVICE(/;" d +FT_FACE_LOOKUP_SERVICE include/freetype/internal/ftserv.h /^#define FT_FACE_LOOKUP_SERVICE(/;" d +FT_FACE_MEMORY android/freetype/include/freetype/internal/ftobjs.h /^#define FT_FACE_MEMORY(/;" d +FT_FACE_MEMORY include/freetype/internal/ftobjs.h /^#define FT_FACE_MEMORY(/;" d +FT_FACE_SIZE android/freetype/include/freetype/internal/ftobjs.h /^#define FT_FACE_SIZE(/;" d +FT_FACE_SIZE include/freetype/internal/ftobjs.h /^#define FT_FACE_SIZE(/;" d +FT_FACE_SLOT android/freetype/include/freetype/internal/ftobjs.h /^#define FT_FACE_SLOT(/;" d +FT_FACE_SLOT include/freetype/internal/ftobjs.h /^#define FT_FACE_SLOT(/;" d +FT_FACE_STREAM android/freetype/include/freetype/internal/ftobjs.h /^#define FT_FACE_STREAM(/;" d +FT_FACE_STREAM include/freetype/internal/ftobjs.h /^#define FT_FACE_STREAM(/;" d +FT_FIELD_OFFSET android/freetype/include/freetype/internal/ftstream.h /^#define FT_FIELD_OFFSET(/;" d +FT_FIELD_OFFSET include/freetype/internal/ftstream.h /^#define FT_FIELD_OFFSET(/;" d +FT_FIELD_SIZE android/freetype/include/freetype/internal/ftstream.h /^#define FT_FIELD_SIZE(/;" d +FT_FIELD_SIZE include/freetype/internal/ftstream.h /^#define FT_FIELD_SIZE(/;" d +FT_FIELD_SIZE_DELTA android/freetype/include/freetype/internal/ftstream.h /^#define FT_FIELD_SIZE_DELTA(/;" d +FT_FIELD_SIZE_DELTA include/freetype/internal/ftstream.h /^#define FT_FIELD_SIZE_DELTA(/;" d +FT_FILE android/freetype/include/freetype/config/ftstdlib.h /^#define FT_FILE /;" d +FT_FILE include/freetype/config/ftstdlib.h /^#define FT_FILE /;" d +FT_FILENAME android/freetype/src/base/ftdbgmem.c /^#define FT_FILENAME(/;" d file: +FT_FRAME_BYTE android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_BYTE(/;" d +FT_FRAME_BYTE include/freetype/internal/ftstream.h /^#define FT_FRAME_BYTE(/;" d +FT_FRAME_BYTES android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_BYTES(/;" d +FT_FRAME_BYTES include/freetype/internal/ftstream.h /^#define FT_FRAME_BYTES(/;" d +FT_FRAME_CHAR android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_CHAR(/;" d +FT_FRAME_CHAR include/freetype/internal/ftstream.h /^#define FT_FRAME_CHAR(/;" d +FT_FRAME_END android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_END /;" d +FT_FRAME_END include/freetype/internal/ftstream.h /^#define FT_FRAME_END /;" d +FT_FRAME_ENTER android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_ENTER(/;" d +FT_FRAME_ENTER include/freetype/internal/ftstream.h /^#define FT_FRAME_ENTER(/;" d +FT_FRAME_EXIT android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_EXIT(/;" d +FT_FRAME_EXIT include/freetype/internal/ftstream.h /^#define FT_FRAME_EXIT(/;" d +FT_FRAME_EXTRACT android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_EXTRACT(/;" d +FT_FRAME_EXTRACT include/freetype/internal/ftstream.h /^#define FT_FRAME_EXTRACT(/;" d +FT_FRAME_FIELD android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_FIELD(/;" d +FT_FRAME_FIELD include/freetype/internal/ftstream.h /^#define FT_FRAME_FIELD(/;" d +FT_FRAME_LONG android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_LONG(/;" d +FT_FRAME_LONG include/freetype/internal/ftstream.h /^#define FT_FRAME_LONG(/;" d +FT_FRAME_LONG_LE android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_LONG_LE(/;" d +FT_FRAME_LONG_LE include/freetype/internal/ftstream.h /^#define FT_FRAME_LONG_LE(/;" d +FT_FRAME_OFF3 android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_OFF3(/;" d +FT_FRAME_OFF3 include/freetype/internal/ftstream.h /^#define FT_FRAME_OFF3(/;" d +FT_FRAME_OFF3_LE android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_OFF3_LE(/;" d +FT_FRAME_OFF3_LE include/freetype/internal/ftstream.h /^#define FT_FRAME_OFF3_LE(/;" d +FT_FRAME_OP_BYTE android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_OP_BYTE /;" d +FT_FRAME_OP_BYTE include/freetype/internal/ftstream.h /^#define FT_FRAME_OP_BYTE /;" d +FT_FRAME_OP_BYTES android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_OP_BYTES /;" d +FT_FRAME_OP_BYTES include/freetype/internal/ftstream.h /^#define FT_FRAME_OP_BYTES /;" d +FT_FRAME_OP_COMMAND android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_OP_COMMAND(/;" d +FT_FRAME_OP_COMMAND include/freetype/internal/ftstream.h /^#define FT_FRAME_OP_COMMAND(/;" d +FT_FRAME_OP_END android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_OP_END /;" d +FT_FRAME_OP_END include/freetype/internal/ftstream.h /^#define FT_FRAME_OP_END /;" d +FT_FRAME_OP_LITTLE android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_OP_LITTLE /;" d +FT_FRAME_OP_LITTLE include/freetype/internal/ftstream.h /^#define FT_FRAME_OP_LITTLE /;" d +FT_FRAME_OP_LONG android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_OP_LONG /;" d +FT_FRAME_OP_LONG include/freetype/internal/ftstream.h /^#define FT_FRAME_OP_LONG /;" d +FT_FRAME_OP_OFF3 android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_OP_OFF3 /;" d +FT_FRAME_OP_OFF3 include/freetype/internal/ftstream.h /^#define FT_FRAME_OP_OFF3 /;" d +FT_FRAME_OP_SHIFT android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_OP_SHIFT /;" d +FT_FRAME_OP_SHIFT include/freetype/internal/ftstream.h /^#define FT_FRAME_OP_SHIFT /;" d +FT_FRAME_OP_SHORT android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_OP_SHORT /;" d +FT_FRAME_OP_SHORT include/freetype/internal/ftstream.h /^#define FT_FRAME_OP_SHORT /;" d +FT_FRAME_OP_SIGNED android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_OP_SIGNED /;" d +FT_FRAME_OP_SIGNED include/freetype/internal/ftstream.h /^#define FT_FRAME_OP_SIGNED /;" d +FT_FRAME_OP_START android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_OP_START /;" d +FT_FRAME_OP_START include/freetype/internal/ftstream.h /^#define FT_FRAME_OP_START /;" d +FT_FRAME_RELEASE android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_RELEASE(/;" d +FT_FRAME_RELEASE include/freetype/internal/ftstream.h /^#define FT_FRAME_RELEASE(/;" d +FT_FRAME_SHORT android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_SHORT(/;" d +FT_FRAME_SHORT include/freetype/internal/ftstream.h /^#define FT_FRAME_SHORT(/;" d +FT_FRAME_SHORT_LE android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_SHORT_LE(/;" d +FT_FRAME_SHORT_LE include/freetype/internal/ftstream.h /^#define FT_FRAME_SHORT_LE(/;" d +FT_FRAME_SKIP_BYTE android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_SKIP_BYTE /;" d +FT_FRAME_SKIP_BYTE include/freetype/internal/ftstream.h /^#define FT_FRAME_SKIP_BYTE /;" d +FT_FRAME_SKIP_BYTES android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_SKIP_BYTES(/;" d +FT_FRAME_SKIP_BYTES include/freetype/internal/ftstream.h /^#define FT_FRAME_SKIP_BYTES(/;" d +FT_FRAME_SKIP_LONG android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_SKIP_LONG /;" d +FT_FRAME_SKIP_LONG include/freetype/internal/ftstream.h /^#define FT_FRAME_SKIP_LONG /;" d +FT_FRAME_SKIP_SHORT android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_SKIP_SHORT /;" d +FT_FRAME_SKIP_SHORT include/freetype/internal/ftstream.h /^#define FT_FRAME_SKIP_SHORT /;" d +FT_FRAME_START android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_START(/;" d +FT_FRAME_START include/freetype/internal/ftstream.h /^#define FT_FRAME_START(/;" d +FT_FRAME_ULONG android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_ULONG(/;" d +FT_FRAME_ULONG include/freetype/internal/ftstream.h /^#define FT_FRAME_ULONG(/;" d +FT_FRAME_ULONG_LE android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_ULONG_LE(/;" d +FT_FRAME_ULONG_LE include/freetype/internal/ftstream.h /^#define FT_FRAME_ULONG_LE(/;" d +FT_FRAME_UOFF3 android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_UOFF3(/;" d +FT_FRAME_UOFF3 include/freetype/internal/ftstream.h /^#define FT_FRAME_UOFF3(/;" d +FT_FRAME_UOFF3_LE android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_UOFF3_LE(/;" d +FT_FRAME_UOFF3_LE include/freetype/internal/ftstream.h /^#define FT_FRAME_UOFF3_LE(/;" d +FT_FRAME_USHORT android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_USHORT(/;" d +FT_FRAME_USHORT include/freetype/internal/ftstream.h /^#define FT_FRAME_USHORT(/;" d +FT_FRAME_USHORT_LE android/freetype/include/freetype/internal/ftstream.h /^#define FT_FRAME_USHORT_LE(/;" d +FT_FRAME_USHORT_LE include/freetype/internal/ftstream.h /^#define FT_FRAME_USHORT_LE(/;" d +FT_FREE android/freetype/include/freetype/internal/ftmemory.h /^#define FT_FREE(/;" d +FT_FREE include/freetype/internal/ftmemory.h /^#define FT_FREE(/;" d +FT_FREETYPE_H android/freetype/include/freetype/config/ftheader.h /^#define FT_FREETYPE_H /;" d +FT_FREETYPE_H include/freetype/config/ftheader.h /^#define FT_FREETYPE_H /;" d +FT_FSTYPE_BITMAP_EMBEDDING_ONLY include/freetype/freetype.h /^#define FT_FSTYPE_BITMAP_EMBEDDING_ONLY /;" d +FT_FSTYPE_EDITABLE_EMBEDDING include/freetype/freetype.h /^#define FT_FSTYPE_EDITABLE_EMBEDDING /;" d +FT_FSTYPE_INSTALLABLE_EMBEDDING include/freetype/freetype.h /^#define FT_FSTYPE_INSTALLABLE_EMBEDDING /;" d +FT_FSTYPE_NO_SUBSETTING include/freetype/freetype.h /^#define FT_FSTYPE_NO_SUBSETTING /;" d +FT_FSTYPE_PREVIEW_AND_PRINT_EMBEDDING include/freetype/freetype.h /^#define FT_FSTYPE_PREVIEW_AND_PRINT_EMBEDDING /;" d +FT_FSTYPE_RESTRICTED_LICENSE_EMBEDDING include/freetype/freetype.h /^#define FT_FSTYPE_RESTRICTED_LICENSE_EMBEDDING /;" d +FT_FWord android/freetype/include/freetype/fttypes.h /^ typedef signed short FT_FWord; \/* distance in FUnits *\/$/;" t +FT_FWord include/freetype/fttypes.h /^ typedef signed short FT_FWord; \/* distance in FUnits *\/$/;" t +FT_Face android/freetype/include/freetype/freetype.h /^ typedef struct FT_FaceRec_* FT_Face;$/;" t typeref:struct:FT_FaceRec_ +FT_Face include/freetype/freetype.h /^ typedef struct FT_FaceRec_* FT_Face;$/;" t typeref:struct:FT_FaceRec_ +FT_FaceRec android/freetype/include/freetype/freetype.h /^ } FT_FaceRec;$/;" t typeref:struct:FT_FaceRec_ +FT_FaceRec include/freetype/freetype.h /^ } FT_FaceRec;$/;" t typeref:struct:FT_FaceRec_ +FT_FaceRec_ android/freetype/include/freetype/freetype.h /^ typedef struct FT_FaceRec_$/;" s +FT_FaceRec_ include/freetype/freetype.h /^ typedef struct FT_FaceRec_$/;" s +FT_Face_AttachFunc android/freetype/include/freetype/internal/ftdriver.h /^ (*FT_Face_AttachFunc)( FT_Face face,$/;" t +FT_Face_AttachFunc include/freetype/internal/ftdriver.h /^ (*FT_Face_AttachFunc)( FT_Face face,$/;" t +FT_Face_DoneFunc android/freetype/include/freetype/internal/ftdriver.h /^ (*FT_Face_DoneFunc)( FT_Face face );$/;" t +FT_Face_DoneFunc include/freetype/internal/ftdriver.h /^ (*FT_Face_DoneFunc)( FT_Face face );$/;" t +FT_Face_GetAdvancesFunc android/freetype/include/freetype/internal/ftdriver.h /^ (*FT_Face_GetAdvancesFunc)( FT_Face face,$/;" t +FT_Face_GetAdvancesFunc include/freetype/internal/ftdriver.h /^ (*FT_Face_GetAdvancesFunc)( FT_Face face,$/;" t +FT_Face_GetCharsOfVariant android/freetype/src/base/ftobjs.c /^ FT_Face_GetCharsOfVariant( FT_Face face,$/;" f +FT_Face_GetGlyphNameFunc android/freetype/include/freetype/internal/ftobjs.h /^ (*FT_Face_GetGlyphNameFunc)( FT_Face face,$/;" t +FT_Face_GetGlyphNameFunc include/freetype/internal/ftobjs.h /^ (*FT_Face_GetGlyphNameFunc)( FT_Face face,$/;" t +FT_Face_GetGlyphNameIndexFunc android/freetype/include/freetype/internal/ftobjs.h /^ (*FT_Face_GetGlyphNameIndexFunc)( FT_Face face,$/;" t +FT_Face_GetGlyphNameIndexFunc include/freetype/internal/ftobjs.h /^ (*FT_Face_GetGlyphNameIndexFunc)( FT_Face face,$/;" t +FT_Face_GetKerningFunc android/freetype/include/freetype/internal/ftdriver.h /^ (*FT_Face_GetKerningFunc)( FT_Face face,$/;" t +FT_Face_GetKerningFunc include/freetype/internal/ftdriver.h /^ (*FT_Face_GetKerningFunc)( FT_Face face,$/;" t +FT_Face_GetPostscriptNameFunc android/freetype/include/freetype/internal/ftobjs.h /^ (*FT_Face_GetPostscriptNameFunc)( FT_Face face );$/;" t +FT_Face_GetPostscriptNameFunc include/freetype/internal/ftobjs.h /^ (*FT_Face_GetPostscriptNameFunc)( FT_Face face );$/;" t +FT_Face_GetVariantSelectors android/freetype/src/base/ftobjs.c /^ FT_Face_GetVariantSelectors( FT_Face face )$/;" f +FT_Face_GetVariantsOfChar android/freetype/src/base/ftobjs.c /^ FT_Face_GetVariantsOfChar( FT_Face face,$/;" f +FT_Face_InitFunc android/freetype/include/freetype/internal/ftdriver.h /^ (*FT_Face_InitFunc)( FT_Stream stream,$/;" t +FT_Face_InitFunc include/freetype/internal/ftdriver.h /^ (*FT_Face_InitFunc)( FT_Stream stream,$/;" t +FT_Face_Internal android/freetype/include/freetype/freetype.h /^ typedef struct FT_Face_InternalRec_* FT_Face_Internal;$/;" t typeref:struct:FT_Face_InternalRec_ +FT_Face_Internal include/freetype/freetype.h /^ typedef struct FT_Face_InternalRec_* FT_Face_Internal;$/;" t typeref:struct:FT_Face_InternalRec_ +FT_Face_InternalRec android/freetype/include/freetype/internal/ftobjs.h /^ } FT_Face_InternalRec;$/;" t typeref:struct:FT_Face_InternalRec_ +FT_Face_InternalRec include/freetype/internal/ftobjs.h /^ } FT_Face_InternalRec;$/;" t typeref:struct:FT_Face_InternalRec_ +FT_Face_InternalRec_ android/freetype/include/freetype/internal/ftobjs.h /^ typedef struct FT_Face_InternalRec_$/;" s +FT_Face_InternalRec_ include/freetype/internal/ftobjs.h /^ typedef struct FT_Face_InternalRec_$/;" s +FT_Fast android/freetype/include/freetype/config/ftconfig.h /^ typedef int FT_Fast;$/;" t +FT_Fast android/freetype/include/freetype/config/ftconfig.h /^ typedef long FT_Fast;$/;" t +FT_Fast include/freetype/config/ftconfig.h /^ typedef int FT_Fast;$/;" t +FT_Fast include/freetype/config/ftconfig.h /^ typedef long FT_Fast;$/;" t +FT_Fixed android/freetype/include/freetype/fttypes.h /^ typedef signed long FT_Fixed;$/;" t +FT_Fixed include/freetype/fttypes.h /^ typedef signed long FT_Fixed;$/;" t +FT_Forget_Frame android/freetype/src/base/ftapi.c /^ FT_Forget_Frame( FT_Stream stream )$/;" f +FT_Frame_Field android/freetype/include/freetype/internal/ftstream.h /^ } FT_Frame_Field;$/;" t typeref:struct:FT_Frame_Field_ +FT_Frame_Field include/freetype/internal/ftstream.h /^ } FT_Frame_Field;$/;" t typeref:struct:FT_Frame_Field_ +FT_Frame_Field_ android/freetype/include/freetype/internal/ftstream.h /^ typedef struct FT_Frame_Field_$/;" s +FT_Frame_Field_ include/freetype/internal/ftstream.h /^ typedef struct FT_Frame_Field_$/;" s +FT_Frame_Op android/freetype/include/freetype/internal/ftstream.h /^ } FT_Frame_Op;$/;" t typeref:enum:FT_Frame_Op_ +FT_Frame_Op include/freetype/internal/ftstream.h /^ } FT_Frame_Op;$/;" t typeref:enum:FT_Frame_Op_ +FT_Frame_Op_ android/freetype/include/freetype/internal/ftstream.h /^ typedef enum FT_Frame_Op_$/;" g +FT_Frame_Op_ include/freetype/internal/ftstream.h /^ typedef enum FT_Frame_Op_$/;" g +FT_Free android/freetype/src/base/ftutil.c /^ FT_Free( FT_Memory memory,$/;" f +FT_Free_Func android/freetype/include/freetype/ftsystem.h /^ (*FT_Free_Func)( FT_Memory memory,$/;" t +FT_Free_Func include/freetype/ftsystem.h /^ (*FT_Free_Func)( FT_Memory memory,$/;" t +FT_GASP_DO_GRAY android/freetype/include/freetype/ftgasp.h /^#define FT_GASP_DO_GRAY /;" d +FT_GASP_DO_GRAY include/freetype/ftgasp.h /^#define FT_GASP_DO_GRAY /;" d +FT_GASP_DO_GRIDFIT android/freetype/include/freetype/ftgasp.h /^#define FT_GASP_DO_GRIDFIT /;" d +FT_GASP_DO_GRIDFIT include/freetype/ftgasp.h /^#define FT_GASP_DO_GRIDFIT /;" d +FT_GASP_H android/freetype/include/freetype/config/ftheader.h /^#define FT_GASP_H /;" d +FT_GASP_H include/freetype/config/ftheader.h /^#define FT_GASP_H /;" d +FT_GASP_NO_TABLE android/freetype/include/freetype/ftgasp.h /^#define FT_GASP_NO_TABLE /;" d +FT_GASP_NO_TABLE include/freetype/ftgasp.h /^#define FT_GASP_NO_TABLE /;" d +FT_GASP_SYMMETRIC_GRIDFIT android/freetype/include/freetype/ftgasp.h /^#define FT_GASP_SYMMETRIC_GRIDFIT /;" d +FT_GASP_SYMMETRIC_GRIDFIT include/freetype/ftgasp.h /^#define FT_GASP_SYMMETRIC_GRIDFIT /;" d +FT_GASP_SYMMETRIC_SMOOTHING android/freetype/include/freetype/ftgasp.h /^#define FT_GASP_SYMMETRIC_SMOOTHING /;" d +FT_GASP_SYMMETRIC_SMOOTHING include/freetype/ftgasp.h /^#define FT_GASP_SYMMETRIC_SMOOTHING /;" d +FT_GET_BYTE android/freetype/include/freetype/internal/ftstream.h /^#define FT_GET_BYTE(/;" d +FT_GET_BYTE include/freetype/internal/ftstream.h /^#define FT_GET_BYTE(/;" d +FT_GET_CHAR android/freetype/include/freetype/internal/ftstream.h /^#define FT_GET_CHAR(/;" d +FT_GET_CHAR include/freetype/internal/ftstream.h /^#define FT_GET_CHAR(/;" d +FT_GET_LONG android/freetype/include/freetype/internal/ftstream.h /^#define FT_GET_LONG(/;" d +FT_GET_LONG include/freetype/internal/ftstream.h /^#define FT_GET_LONG(/;" d +FT_GET_LONG_LE android/freetype/include/freetype/internal/ftstream.h /^#define FT_GET_LONG_LE(/;" d +FT_GET_LONG_LE include/freetype/internal/ftstream.h /^#define FT_GET_LONG_LE(/;" d +FT_GET_MACRO android/freetype/include/freetype/internal/ftstream.h /^#define FT_GET_MACRO(/;" d +FT_GET_MACRO include/freetype/internal/ftstream.h /^#define FT_GET_MACRO(/;" d +FT_GET_OFF3 android/freetype/include/freetype/internal/ftstream.h /^#define FT_GET_OFF3(/;" d +FT_GET_OFF3 include/freetype/internal/ftstream.h /^#define FT_GET_OFF3(/;" d +FT_GET_SHORT android/freetype/include/freetype/internal/ftstream.h /^#define FT_GET_SHORT(/;" d +FT_GET_SHORT include/freetype/internal/ftstream.h /^#define FT_GET_SHORT(/;" d +FT_GET_SHORT_LE android/freetype/include/freetype/internal/ftstream.h /^#define FT_GET_SHORT_LE(/;" d +FT_GET_SHORT_LE include/freetype/internal/ftstream.h /^#define FT_GET_SHORT_LE(/;" d +FT_GET_TAG4 android/freetype/include/freetype/internal/ftstream.h /^#define FT_GET_TAG4(/;" d +FT_GET_TAG4 include/freetype/internal/ftstream.h /^#define FT_GET_TAG4(/;" d +FT_GET_ULONG android/freetype/include/freetype/internal/ftstream.h /^#define FT_GET_ULONG(/;" d +FT_GET_ULONG include/freetype/internal/ftstream.h /^#define FT_GET_ULONG(/;" d +FT_GET_ULONG_LE android/freetype/include/freetype/internal/ftstream.h /^#define FT_GET_ULONG_LE(/;" d +FT_GET_ULONG_LE include/freetype/internal/ftstream.h /^#define FT_GET_ULONG_LE(/;" d +FT_GET_UOFF3 android/freetype/include/freetype/internal/ftstream.h /^#define FT_GET_UOFF3(/;" d +FT_GET_UOFF3 include/freetype/internal/ftstream.h /^#define FT_GET_UOFF3(/;" d +FT_GET_USHORT android/freetype/include/freetype/internal/ftstream.h /^#define FT_GET_USHORT(/;" d +FT_GET_USHORT include/freetype/internal/ftstream.h /^#define FT_GET_USHORT(/;" d +FT_GET_USHORT_LE android/freetype/include/freetype/internal/ftstream.h /^#define FT_GET_USHORT_LE(/;" d +FT_GET_USHORT_LE include/freetype/internal/ftstream.h /^#define FT_GET_USHORT_LE(/;" d +FT_GLYPH android/freetype/include/freetype/internal/ftobjs.h /^#define FT_GLYPH(/;" d +FT_GLYPH include/freetype/internal/ftobjs.h /^#define FT_GLYPH(/;" d +FT_GLYPHLOADER_CHECK_C android/freetype/include/freetype/internal/ftgloadr.h /^#define FT_GLYPHLOADER_CHECK_C(/;" d +FT_GLYPHLOADER_CHECK_C include/freetype/internal/ftgloadr.h /^#define FT_GLYPHLOADER_CHECK_C(/;" d +FT_GLYPHLOADER_CHECK_P android/freetype/include/freetype/internal/ftgloadr.h /^#define FT_GLYPHLOADER_CHECK_P(/;" d +FT_GLYPHLOADER_CHECK_P include/freetype/internal/ftgloadr.h /^#define FT_GLYPHLOADER_CHECK_P(/;" d +FT_GLYPHLOADER_CHECK_POINTS android/freetype/include/freetype/internal/ftgloadr.h /^#define FT_GLYPHLOADER_CHECK_POINTS(/;" d +FT_GLYPHLOADER_CHECK_POINTS include/freetype/internal/ftgloadr.h /^#define FT_GLYPHLOADER_CHECK_POINTS(/;" d +FT_GLYPH_BBOX_GRIDFIT android/freetype/include/freetype/ftglyph.h /^ FT_GLYPH_BBOX_GRIDFIT = 1,$/;" e enum:FT_Glyph_BBox_Mode_ +FT_GLYPH_BBOX_GRIDFIT include/freetype/ftglyph.h /^ FT_GLYPH_BBOX_GRIDFIT = 1,$/;" e enum:FT_Glyph_BBox_Mode_ +FT_GLYPH_BBOX_PIXELS android/freetype/include/freetype/ftglyph.h /^ FT_GLYPH_BBOX_PIXELS = 3$/;" e enum:FT_Glyph_BBox_Mode_ +FT_GLYPH_BBOX_PIXELS include/freetype/ftglyph.h /^ FT_GLYPH_BBOX_PIXELS = 3$/;" e enum:FT_Glyph_BBox_Mode_ +FT_GLYPH_BBOX_SUBPIXELS android/freetype/include/freetype/ftglyph.h /^ FT_GLYPH_BBOX_SUBPIXELS = 0,$/;" e enum:FT_Glyph_BBox_Mode_ +FT_GLYPH_BBOX_SUBPIXELS include/freetype/ftglyph.h /^ FT_GLYPH_BBOX_SUBPIXELS = 0,$/;" e enum:FT_Glyph_BBox_Mode_ +FT_GLYPH_BBOX_TRUNCATE android/freetype/include/freetype/ftglyph.h /^ FT_GLYPH_BBOX_TRUNCATE = 2,$/;" e enum:FT_Glyph_BBox_Mode_ +FT_GLYPH_BBOX_TRUNCATE include/freetype/ftglyph.h /^ FT_GLYPH_BBOX_TRUNCATE = 2,$/;" e enum:FT_Glyph_BBox_Mode_ +FT_GLYPH_BBOX_UNSCALED android/freetype/include/freetype/ftglyph.h /^ FT_GLYPH_BBOX_UNSCALED = 0,$/;" e enum:FT_Glyph_BBox_Mode_ +FT_GLYPH_BBOX_UNSCALED include/freetype/ftglyph.h /^ FT_GLYPH_BBOX_UNSCALED = 0,$/;" e enum:FT_Glyph_BBox_Mode_ +FT_GLYPH_H android/freetype/include/freetype/config/ftheader.h /^#define FT_GLYPH_H /;" d +FT_GLYPH_H include/freetype/config/ftheader.h /^#define FT_GLYPH_H /;" d +FT_GLYPH_OWN_BITMAP android/freetype/include/freetype/internal/ftobjs.h /^#define FT_GLYPH_OWN_BITMAP /;" d +FT_GLYPH_OWN_BITMAP include/freetype/internal/ftobjs.h /^#define FT_GLYPH_OWN_BITMAP /;" d +FT_GX_VALIDATE_H android/freetype/include/freetype/config/ftheader.h /^#define FT_GX_VALIDATE_H /;" d +FT_GX_VALIDATE_H include/freetype/config/ftheader.h /^#define FT_GX_VALIDATE_H /;" d +FT_GZIP_H android/freetype/include/freetype/config/ftheader.h /^#define FT_GZIP_H /;" d +FT_GZIP_H include/freetype/config/ftheader.h /^#define FT_GZIP_H /;" d +FT_Generic android/freetype/include/freetype/fttypes.h /^ } FT_Generic;$/;" t typeref:struct:FT_Generic_ +FT_Generic include/freetype/fttypes.h /^ } FT_Generic;$/;" t typeref:struct:FT_Generic_ +FT_Generic_ android/freetype/include/freetype/fttypes.h /^ typedef struct FT_Generic_$/;" s +FT_Generic_ include/freetype/fttypes.h /^ typedef struct FT_Generic_$/;" s +FT_Generic_Finalizer android/freetype/include/freetype/fttypes.h /^ typedef void (*FT_Generic_Finalizer)(void* object);$/;" t +FT_Generic_Finalizer include/freetype/fttypes.h /^ typedef void (*FT_Generic_Finalizer)(void* object);$/;" t +FT_Get_MM_Func android/freetype/include/freetype/internal/services/svmm.h /^ (*FT_Get_MM_Func)( FT_Face face,$/;" t +FT_Get_MM_Func include/freetype/internal/services/svmm.h /^ (*FT_Get_MM_Func)( FT_Face face,$/;" t +FT_Get_MM_Var_Func android/freetype/include/freetype/internal/services/svmm.h /^ (*FT_Get_MM_Var_Func)( FT_Face face,$/;" t +FT_Get_MM_Var_Func include/freetype/internal/services/svmm.h /^ (*FT_Get_MM_Var_Func)( FT_Face face,$/;" t +FT_Get_Module_Interface android/freetype/src/base/ftobjs.c /^ FT_Get_Module_Interface( FT_Library library,$/;" f +FT_Get_Postscript_Name android/freetype/src/base/ftobjs.c /^ FT_Get_Postscript_Name( FT_Face face )$/;" f +FT_Get_Sfnt_Table android/freetype/src/base/ftobjs.c /^ FT_Get_Sfnt_Table( FT_Face face,$/;" f +FT_Get_X11_Font_Format android/freetype/src/base/ftxf86.c /^ FT_Get_X11_Font_Format( FT_Face face )$/;" f +FT_Glyph android/freetype/include/freetype/ftglyph.h /^ typedef struct FT_GlyphRec_* FT_Glyph;$/;" t typeref:struct:FT_GlyphRec_ +FT_Glyph include/freetype/ftglyph.h /^ typedef struct FT_GlyphRec_* FT_Glyph;$/;" t typeref:struct:FT_GlyphRec_ +FT_GlyphDict_GetNameFunc android/freetype/include/freetype/internal/services/svgldict.h /^ (*FT_GlyphDict_GetNameFunc)( FT_Face face,$/;" t +FT_GlyphDict_GetNameFunc include/freetype/internal/services/svgldict.h /^ (*FT_GlyphDict_GetNameFunc)( FT_Face face,$/;" t +FT_GlyphDict_NameIndexFunc android/freetype/include/freetype/internal/services/svgldict.h /^ (*FT_GlyphDict_NameIndexFunc)( FT_Face face,$/;" t +FT_GlyphDict_NameIndexFunc include/freetype/internal/services/svgldict.h /^ (*FT_GlyphDict_NameIndexFunc)( FT_Face face,$/;" t +FT_GlyphLoad android/freetype/include/freetype/internal/ftgloadr.h /^ } FT_GlyphLoadRec, *FT_GlyphLoad;$/;" t typeref:struct:FT_GlyphLoadRec_ +FT_GlyphLoad include/freetype/internal/ftgloadr.h /^ } FT_GlyphLoadRec, *FT_GlyphLoad;$/;" t typeref:struct:FT_GlyphLoadRec_ +FT_GlyphLoadRec android/freetype/include/freetype/internal/ftgloadr.h /^ } FT_GlyphLoadRec, *FT_GlyphLoad;$/;" t typeref:struct:FT_GlyphLoadRec_ +FT_GlyphLoadRec include/freetype/internal/ftgloadr.h /^ } FT_GlyphLoadRec, *FT_GlyphLoad;$/;" t typeref:struct:FT_GlyphLoadRec_ +FT_GlyphLoadRec_ android/freetype/include/freetype/internal/ftgloadr.h /^ typedef struct FT_GlyphLoadRec_$/;" s +FT_GlyphLoadRec_ include/freetype/internal/ftgloadr.h /^ typedef struct FT_GlyphLoadRec_$/;" s +FT_GlyphLoader android/freetype/include/freetype/internal/ftgloadr.h /^ typedef struct FT_GlyphLoaderRec_* FT_GlyphLoader ;$/;" t typeref:struct:FT_GlyphLoaderRec_ +FT_GlyphLoader include/freetype/internal/ftgloadr.h /^ typedef struct FT_GlyphLoaderRec_* FT_GlyphLoader ;$/;" t typeref:struct:FT_GlyphLoaderRec_ +FT_GlyphLoaderRec android/freetype/include/freetype/internal/ftgloadr.h /^ } FT_GlyphLoaderRec;$/;" t typeref:struct:FT_GlyphLoaderRec_ +FT_GlyphLoaderRec include/freetype/internal/ftgloadr.h /^ } FT_GlyphLoaderRec;$/;" t typeref:struct:FT_GlyphLoaderRec_ +FT_GlyphLoaderRec_ android/freetype/include/freetype/internal/ftgloadr.h /^ typedef struct FT_GlyphLoaderRec_$/;" s +FT_GlyphLoaderRec_ include/freetype/internal/ftgloadr.h /^ typedef struct FT_GlyphLoaderRec_$/;" s +FT_GlyphLoader_Add android/freetype/src/base/ftgloadr.c /^ FT_GlyphLoader_Add( FT_GlyphLoader loader )$/;" f +FT_GlyphLoader_Adjust_Points android/freetype/src/base/ftgloadr.c /^ FT_GlyphLoader_Adjust_Points( FT_GlyphLoader loader )$/;" f file: +FT_GlyphLoader_Adjust_Subglyphs android/freetype/src/base/ftgloadr.c /^ FT_GlyphLoader_Adjust_Subglyphs( FT_GlyphLoader loader )$/;" f file: +FT_GlyphLoader_Done android/freetype/src/base/ftgloadr.c /^ FT_GlyphLoader_Done( FT_GlyphLoader loader )$/;" f +FT_GlyphLoader_Prepare android/freetype/src/base/ftgloadr.c /^ FT_GlyphLoader_Prepare( FT_GlyphLoader loader )$/;" f +FT_GlyphLoader_Reset android/freetype/src/base/ftgloadr.c /^ FT_GlyphLoader_Reset( FT_GlyphLoader loader )$/;" f +FT_GlyphLoader_Rewind android/freetype/src/base/ftgloadr.c /^ FT_GlyphLoader_Rewind( FT_GlyphLoader loader )$/;" f +FT_GlyphRec android/freetype/include/freetype/ftglyph.h /^ } FT_GlyphRec;$/;" t typeref:struct:FT_GlyphRec_ +FT_GlyphRec include/freetype/ftglyph.h /^ } FT_GlyphRec;$/;" t typeref:struct:FT_GlyphRec_ +FT_GlyphRec_ android/freetype/include/freetype/ftglyph.h /^ typedef struct FT_GlyphRec_$/;" s +FT_GlyphRec_ include/freetype/ftglyph.h /^ typedef struct FT_GlyphRec_$/;" s +FT_GlyphSlot android/freetype/include/freetype/freetype.h /^ typedef struct FT_GlyphSlotRec_* FT_GlyphSlot;$/;" t typeref:struct:FT_GlyphSlotRec_ +FT_GlyphSlot include/freetype/freetype.h /^ typedef struct FT_GlyphSlotRec_* FT_GlyphSlot;$/;" t typeref:struct:FT_GlyphSlotRec_ +FT_GlyphSlotRec android/freetype/include/freetype/freetype.h /^ } FT_GlyphSlotRec;$/;" t typeref:struct:FT_GlyphSlotRec_ +FT_GlyphSlotRec include/freetype/freetype.h /^ } FT_GlyphSlotRec;$/;" t typeref:struct:FT_GlyphSlotRec_ +FT_GlyphSlotRec_ android/freetype/include/freetype/freetype.h /^ typedef struct FT_GlyphSlotRec_$/;" s +FT_GlyphSlotRec_ include/freetype/freetype.h /^ typedef struct FT_GlyphSlotRec_$/;" s +FT_GlyphSlot_Embolden android/freetype/src/base/ftsynth.c /^ FT_GlyphSlot_Embolden( FT_GlyphSlot slot )$/;" f +FT_GlyphSlot_InternalRec android/freetype/include/freetype/internal/ftobjs.h /^ } FT_GlyphSlot_InternalRec;$/;" t typeref:struct:FT_Slot_InternalRec_ +FT_GlyphSlot_InternalRec include/freetype/internal/ftobjs.h /^ } FT_GlyphSlot_InternalRec;$/;" t typeref:struct:FT_Slot_InternalRec_ +FT_GlyphSlot_Oblique android/freetype/src/base/ftsynth.c /^ FT_GlyphSlot_Oblique( FT_GlyphSlot slot )$/;" f +FT_Glyph_BBox_Func android/freetype/include/freetype/ftrender.h /^#define FT_Glyph_BBox_Func /;" d +FT_Glyph_BBox_Func include/freetype/ftrender.h /^#define FT_Glyph_BBox_Func /;" d +FT_Glyph_BBox_Mode android/freetype/include/freetype/ftglyph.h /^ } FT_Glyph_BBox_Mode;$/;" t typeref:enum:FT_Glyph_BBox_Mode_ +FT_Glyph_BBox_Mode include/freetype/ftglyph.h /^ } FT_Glyph_BBox_Mode;$/;" t typeref:enum:FT_Glyph_BBox_Mode_ +FT_Glyph_BBox_Mode_ android/freetype/include/freetype/ftglyph.h /^ typedef enum FT_Glyph_BBox_Mode_$/;" g +FT_Glyph_BBox_Mode_ include/freetype/ftglyph.h /^ typedef enum FT_Glyph_BBox_Mode_$/;" g +FT_Glyph_Class android/freetype/include/freetype/ftglyph.h /^ typedef struct FT_Glyph_Class_ FT_Glyph_Class;$/;" t typeref:struct:FT_Glyph_Class_ +FT_Glyph_Class include/freetype/ftglyph.h /^ typedef struct FT_Glyph_Class_ FT_Glyph_Class;$/;" t typeref:struct:FT_Glyph_Class_ +FT_Glyph_Class_ android/freetype/include/freetype/ftrender.h /^ struct FT_Glyph_Class_$/;" s +FT_Glyph_Class_ include/freetype/ftrender.h /^ struct FT_Glyph_Class_$/;" s +FT_Glyph_CopyFunc android/freetype/include/freetype/ftrender.h /^ (*FT_Glyph_CopyFunc)( FT_Glyph source,$/;" t +FT_Glyph_CopyFunc include/freetype/ftrender.h /^ (*FT_Glyph_CopyFunc)( FT_Glyph source,$/;" t +FT_Glyph_Copy_Func android/freetype/include/freetype/ftrender.h /^#define FT_Glyph_Copy_Func /;" d +FT_Glyph_Copy_Func include/freetype/ftrender.h /^#define FT_Glyph_Copy_Func /;" d +FT_Glyph_DoneFunc android/freetype/include/freetype/ftrender.h /^ (*FT_Glyph_DoneFunc)( FT_Glyph glyph );$/;" t +FT_Glyph_DoneFunc include/freetype/ftrender.h /^ (*FT_Glyph_DoneFunc)( FT_Glyph glyph );$/;" t +FT_Glyph_Done_Func android/freetype/include/freetype/ftrender.h /^#define FT_Glyph_Done_Func /;" d +FT_Glyph_Done_Func include/freetype/ftrender.h /^#define FT_Glyph_Done_Func /;" d +FT_Glyph_Format android/freetype/include/freetype/ftimage.h /^ } FT_Glyph_Format;$/;" t typeref:enum:FT_Glyph_Format_ +FT_Glyph_Format include/freetype/ftimage.h /^ } FT_Glyph_Format;$/;" t typeref:enum:FT_Glyph_Format_ +FT_Glyph_Format_ android/freetype/include/freetype/ftimage.h /^ typedef enum FT_Glyph_Format_$/;" g +FT_Glyph_Format_ include/freetype/ftimage.h /^ typedef enum FT_Glyph_Format_$/;" g +FT_Glyph_GetBBoxFunc android/freetype/include/freetype/ftrender.h /^ (*FT_Glyph_GetBBoxFunc)( FT_Glyph glyph,$/;" t +FT_Glyph_GetBBoxFunc include/freetype/ftrender.h /^ (*FT_Glyph_GetBBoxFunc)( FT_Glyph glyph,$/;" t +FT_Glyph_Get_CBox android/freetype/src/base/ftglyph.c /^ FT_Glyph_Get_CBox( FT_Glyph glyph,$/;" f +FT_Glyph_InitFunc android/freetype/include/freetype/ftrender.h /^ (*FT_Glyph_InitFunc)( FT_Glyph glyph,$/;" t +FT_Glyph_InitFunc include/freetype/ftrender.h /^ (*FT_Glyph_InitFunc)( FT_Glyph glyph,$/;" t +FT_Glyph_Init_Func android/freetype/include/freetype/ftrender.h /^#define FT_Glyph_Init_Func /;" d +FT_Glyph_Init_Func include/freetype/ftrender.h /^#define FT_Glyph_Init_Func /;" d +FT_Glyph_Metrics android/freetype/include/freetype/freetype.h /^ } FT_Glyph_Metrics;$/;" t typeref:struct:FT_Glyph_Metrics_ +FT_Glyph_Metrics include/freetype/freetype.h /^ } FT_Glyph_Metrics;$/;" t typeref:struct:FT_Glyph_Metrics_ +FT_Glyph_Metrics_ android/freetype/include/freetype/freetype.h /^ typedef struct FT_Glyph_Metrics_$/;" s +FT_Glyph_Metrics_ include/freetype/freetype.h /^ typedef struct FT_Glyph_Metrics_$/;" s +FT_Glyph_PrepareFunc android/freetype/include/freetype/ftrender.h /^ (*FT_Glyph_PrepareFunc)( FT_Glyph glyph,$/;" t +FT_Glyph_PrepareFunc include/freetype/ftrender.h /^ (*FT_Glyph_PrepareFunc)( FT_Glyph glyph,$/;" t +FT_Glyph_Prepare_Func android/freetype/include/freetype/ftrender.h /^#define FT_Glyph_Prepare_Func /;" d +FT_Glyph_Prepare_Func include/freetype/ftrender.h /^#define FT_Glyph_Prepare_Func /;" d +FT_Glyph_TransformFunc android/freetype/include/freetype/ftrender.h /^ (*FT_Glyph_TransformFunc)( FT_Glyph glyph,$/;" t +FT_Glyph_TransformFunc include/freetype/ftrender.h /^ (*FT_Glyph_TransformFunc)( FT_Glyph glyph,$/;" t +FT_Glyph_Transform_Func android/freetype/include/freetype/ftrender.h /^#define FT_Glyph_Transform_Func /;" d +FT_Glyph_Transform_Func include/freetype/ftrender.h /^#define FT_Glyph_Transform_Func /;" d +FT_HAS_FAST_GLYPHS android/freetype/include/freetype/freetype.h /^#define FT_HAS_FAST_GLYPHS(/;" d +FT_HAS_FAST_GLYPHS include/freetype/freetype.h /^#define FT_HAS_FAST_GLYPHS(/;" d +FT_HAS_FIXED_SIZES android/freetype/include/freetype/freetype.h /^#define FT_HAS_FIXED_SIZES(/;" d +FT_HAS_FIXED_SIZES include/freetype/freetype.h /^#define FT_HAS_FIXED_SIZES(/;" d +FT_HAS_GLYPH_NAMES android/freetype/include/freetype/freetype.h /^#define FT_HAS_GLYPH_NAMES(/;" d +FT_HAS_GLYPH_NAMES include/freetype/freetype.h /^#define FT_HAS_GLYPH_NAMES(/;" d +FT_HAS_HORIZONTAL android/freetype/include/freetype/freetype.h /^#define FT_HAS_HORIZONTAL(/;" d +FT_HAS_HORIZONTAL include/freetype/freetype.h /^#define FT_HAS_HORIZONTAL(/;" d +FT_HAS_KERNING android/freetype/include/freetype/freetype.h /^#define FT_HAS_KERNING(/;" d +FT_HAS_KERNING include/freetype/freetype.h /^#define FT_HAS_KERNING(/;" d +FT_HAS_MULTIPLE_MASTERS android/freetype/include/freetype/freetype.h /^#define FT_HAS_MULTIPLE_MASTERS(/;" d +FT_HAS_MULTIPLE_MASTERS include/freetype/freetype.h /^#define FT_HAS_MULTIPLE_MASTERS(/;" d +FT_HAS_VERTICAL android/freetype/include/freetype/freetype.h /^#define FT_HAS_VERTICAL(/;" d +FT_HAS_VERTICAL include/freetype/freetype.h /^#define FT_HAS_VERTICAL(/;" d +FT_IMAGE_H android/freetype/include/freetype/config/ftheader.h /^#define FT_IMAGE_H /;" d +FT_IMAGE_H include/freetype/config/ftheader.h /^#define FT_IMAGE_H /;" d +FT_IMAGE_TAG android/freetype/include/freetype/ftimage.h /^ FT_IMAGE_TAG( FT_GLYPH_FORMAT_BITMAP, 'b', 'i', 't', 's' ),$/;" e enum:FT_Glyph_Format_ +FT_IMAGE_TAG android/freetype/include/freetype/ftimage.h /^ FT_IMAGE_TAG( FT_GLYPH_FORMAT_COMPOSITE, 'c', 'o', 'm', 'p' ),$/;" e enum:FT_Glyph_Format_ +FT_IMAGE_TAG android/freetype/include/freetype/ftimage.h /^ FT_IMAGE_TAG( FT_GLYPH_FORMAT_NONE, 0, 0, 0, 0 ),$/;" e enum:FT_Glyph_Format_ +FT_IMAGE_TAG android/freetype/include/freetype/ftimage.h /^ FT_IMAGE_TAG( FT_GLYPH_FORMAT_OUTLINE, 'o', 'u', 't', 'l' ),$/;" e enum:FT_Glyph_Format_ +FT_IMAGE_TAG android/freetype/include/freetype/ftimage.h /^ FT_IMAGE_TAG( FT_GLYPH_FORMAT_PLOTTER, 'p', 'l', 'o', 't' )$/;" e enum:FT_Glyph_Format_ +FT_IMAGE_TAG android/freetype/include/freetype/ftimage.h /^#define FT_IMAGE_TAG(/;" d +FT_IMAGE_TAG include/freetype/ftimage.h /^ FT_IMAGE_TAG( FT_GLYPH_FORMAT_BITMAP, 'b', 'i', 't', 's' ),$/;" e enum:FT_Glyph_Format_ +FT_IMAGE_TAG include/freetype/ftimage.h /^ FT_IMAGE_TAG( FT_GLYPH_FORMAT_COMPOSITE, 'c', 'o', 'm', 'p' ),$/;" e enum:FT_Glyph_Format_ +FT_IMAGE_TAG include/freetype/ftimage.h /^ FT_IMAGE_TAG( FT_GLYPH_FORMAT_NONE, 0, 0, 0, 0 ),$/;" e enum:FT_Glyph_Format_ +FT_IMAGE_TAG include/freetype/ftimage.h /^ FT_IMAGE_TAG( FT_GLYPH_FORMAT_OUTLINE, 'o', 'u', 't', 'l' ),$/;" e enum:FT_Glyph_Format_ +FT_IMAGE_TAG include/freetype/ftimage.h /^ FT_IMAGE_TAG( FT_GLYPH_FORMAT_PLOTTER, 'p', 'l', 'o', 't' )$/;" e enum:FT_Glyph_Format_ +FT_IMAGE_TAG include/freetype/ftimage.h /^#define FT_IMAGE_TAG(/;" d +FT_INCREMENTAL_H android/freetype/include/freetype/config/ftheader.h /^#define FT_INCREMENTAL_H /;" d +FT_INCREMENTAL_H include/freetype/config/ftheader.h /^#define FT_INCREMENTAL_H /;" d +FT_INT16 android/freetype/include/freetype/internal/ftstream.h /^#define FT_INT16(/;" d +FT_INT16 include/freetype/internal/ftstream.h /^#define FT_INT16(/;" d +FT_INT32 android/freetype/include/freetype/internal/ftstream.h /^#define FT_INT32(/;" d +FT_INT32 include/freetype/internal/ftstream.h /^#define FT_INT32(/;" d +FT_INT64 android/freetype/include/freetype/config/ftconfig.h /^#define FT_INT64 /;" d +FT_INT64 android/freetype/include/freetype/config/ftconfig.h /^#undef FT_INT64$/;" d +FT_INT64 include/freetype/config/ftconfig.h /^#define FT_INT64 /;" d +FT_INT64 include/freetype/config/ftconfig.h /^#undef FT_INT64$/;" d +FT_INT8_ android/freetype/include/freetype/internal/ftstream.h /^#define FT_INT8_(/;" d +FT_INT8_ include/freetype/internal/ftstream.h /^#define FT_INT8_(/;" d +FT_INT8_I16 android/freetype/include/freetype/internal/ftstream.h /^#define FT_INT8_I16(/;" d +FT_INT8_I16 include/freetype/internal/ftstream.h /^#define FT_INT8_I16(/;" d +FT_INT8_I32 android/freetype/include/freetype/internal/ftstream.h /^#define FT_INT8_I32(/;" d +FT_INT8_I32 include/freetype/internal/ftstream.h /^#define FT_INT8_I32(/;" d +FT_INT8_U16 android/freetype/include/freetype/internal/ftstream.h /^#define FT_INT8_U16(/;" d +FT_INT8_U16 include/freetype/internal/ftstream.h /^#define FT_INT8_U16(/;" d +FT_INT8_U32 android/freetype/include/freetype/internal/ftstream.h /^#define FT_INT8_U32(/;" d +FT_INT8_U32 include/freetype/internal/ftstream.h /^#define FT_INT8_U32(/;" d +FT_INTERNAL include/freetype/internal/sfnt.h /^#define FT_INTERNAL(/;" d +FT_INTERNAL_AUTOHINT_H android/freetype/include/freetype/internal/internal.h /^#define FT_INTERNAL_AUTOHINT_H /;" d +FT_INTERNAL_AUTOHINT_H include/freetype/internal/internal.h /^#define FT_INTERNAL_AUTOHINT_H /;" d +FT_INTERNAL_CALC_H android/freetype/include/freetype/internal/internal.h /^#define FT_INTERNAL_CALC_H /;" d +FT_INTERNAL_CALC_H include/freetype/internal/internal.h /^#define FT_INTERNAL_CALC_H /;" d +FT_INTERNAL_DEBUG_H android/freetype/include/freetype/internal/internal.h /^#define FT_INTERNAL_DEBUG_H /;" d +FT_INTERNAL_DEBUG_H include/freetype/internal/internal.h /^#define FT_INTERNAL_DEBUG_H /;" d +FT_INTERNAL_DRIVER_H android/freetype/include/freetype/internal/internal.h /^#define FT_INTERNAL_DRIVER_H /;" d +FT_INTERNAL_DRIVER_H include/freetype/internal/internal.h /^#define FT_INTERNAL_DRIVER_H /;" d +FT_INTERNAL_GLYPH_LOADER_H android/freetype/include/freetype/internal/internal.h /^#define FT_INTERNAL_GLYPH_LOADER_H /;" d +FT_INTERNAL_GLYPH_LOADER_H include/freetype/internal/internal.h /^#define FT_INTERNAL_GLYPH_LOADER_H /;" d +FT_INTERNAL_INTERNAL_H android/freetype/include/freetype/config/ftheader.h /^#define FT_INTERNAL_INTERNAL_H /;" d +FT_INTERNAL_INTERNAL_H include/freetype/config/ftheader.h /^#define FT_INTERNAL_INTERNAL_H /;" d +FT_INTERNAL_MEMORY_H android/freetype/include/freetype/internal/internal.h /^#define FT_INTERNAL_MEMORY_H /;" d +FT_INTERNAL_MEMORY_H include/freetype/internal/internal.h /^#define FT_INTERNAL_MEMORY_H /;" d +FT_INTERNAL_OBJECTS_H android/freetype/include/freetype/internal/internal.h /^#define FT_INTERNAL_OBJECTS_H /;" d +FT_INTERNAL_OBJECTS_H include/freetype/internal/internal.h /^#define FT_INTERNAL_OBJECTS_H /;" d +FT_INTERNAL_PIC_H include/freetype/internal/internal.h /^#define FT_INTERNAL_PIC_H /;" d +FT_INTERNAL_POSTSCRIPT_AUX_H android/freetype/include/freetype/internal/internal.h /^#define FT_INTERNAL_POSTSCRIPT_AUX_H /;" d +FT_INTERNAL_POSTSCRIPT_AUX_H include/freetype/internal/internal.h /^#define FT_INTERNAL_POSTSCRIPT_AUX_H /;" d +FT_INTERNAL_POSTSCRIPT_GLOBALS_H android/freetype/include/freetype/internal/internal.h /^#define FT_INTERNAL_POSTSCRIPT_GLOBALS_H /;" d +FT_INTERNAL_POSTSCRIPT_GLOBALS_H include/freetype/internal/internal.h /^#define FT_INTERNAL_POSTSCRIPT_GLOBALS_H /;" d +FT_INTERNAL_POSTSCRIPT_HINTS_H android/freetype/include/freetype/internal/internal.h /^#define FT_INTERNAL_POSTSCRIPT_HINTS_H /;" d +FT_INTERNAL_POSTSCRIPT_HINTS_H include/freetype/internal/internal.h /^#define FT_INTERNAL_POSTSCRIPT_HINTS_H /;" d +FT_INTERNAL_RFORK_H android/freetype/include/freetype/internal/internal.h /^#define FT_INTERNAL_RFORK_H /;" d +FT_INTERNAL_RFORK_H include/freetype/internal/internal.h /^#define FT_INTERNAL_RFORK_H /;" d +FT_INTERNAL_SERVICE_H android/freetype/include/freetype/internal/internal.h /^#define FT_INTERNAL_SERVICE_H /;" d +FT_INTERNAL_SERVICE_H include/freetype/internal/internal.h /^#define FT_INTERNAL_SERVICE_H /;" d +FT_INTERNAL_SFNT_H android/freetype/include/freetype/internal/internal.h /^#define FT_INTERNAL_SFNT_H /;" d +FT_INTERNAL_SFNT_H include/freetype/internal/internal.h /^#define FT_INTERNAL_SFNT_H /;" d +FT_INTERNAL_STREAM_H android/freetype/include/freetype/internal/internal.h /^#define FT_INTERNAL_STREAM_H /;" d +FT_INTERNAL_STREAM_H include/freetype/internal/internal.h /^#define FT_INTERNAL_STREAM_H /;" d +FT_INTERNAL_TRACE_H android/freetype/include/freetype/internal/internal.h /^#define FT_INTERNAL_TRACE_H /;" d +FT_INTERNAL_TRACE_H include/freetype/internal/internal.h /^#define FT_INTERNAL_TRACE_H /;" d +FT_INTERNAL_TRUETYPE_TYPES_H android/freetype/include/freetype/internal/internal.h /^#define FT_INTERNAL_TRUETYPE_TYPES_H /;" d +FT_INTERNAL_TRUETYPE_TYPES_H include/freetype/internal/internal.h /^#define FT_INTERNAL_TRUETYPE_TYPES_H /;" d +FT_INTERNAL_TYPE1_TYPES_H android/freetype/include/freetype/internal/internal.h /^#define FT_INTERNAL_TYPE1_TYPES_H /;" d +FT_INTERNAL_TYPE1_TYPES_H include/freetype/internal/internal.h /^#define FT_INTERNAL_TYPE1_TYPES_H /;" d +FT_INTERNAL_VALIDATE_H android/freetype/include/freetype/internal/internal.h /^#define FT_INTERNAL_VALIDATE_H /;" d +FT_INTERNAL_VALIDATE_H include/freetype/internal/internal.h /^#define FT_INTERNAL_VALIDATE_H /;" d +FT_INT_MAX android/freetype/include/freetype/config/ftstdlib.h /^#define FT_INT_MAX /;" d +FT_INT_MAX include/freetype/config/ftstdlib.h /^#define FT_INT_MAX /;" d +FT_INT_MIN include/freetype/config/ftstdlib.h /^#define FT_INT_MIN /;" d +FT_INVALID android/freetype/include/freetype/internal/ftvalid.h /^#define FT_INVALID(/;" d +FT_INVALID include/freetype/internal/ftvalid.h /^#define FT_INVALID(/;" d +FT_INVALID_ android/freetype/include/freetype/internal/ftvalid.h /^#define FT_INVALID_(/;" d +FT_INVALID_ include/freetype/internal/ftvalid.h /^#define FT_INVALID_(/;" d +FT_INVALID_DATA android/freetype/include/freetype/internal/ftvalid.h /^#define FT_INVALID_DATA /;" d +FT_INVALID_DATA include/freetype/internal/ftvalid.h /^#define FT_INVALID_DATA /;" d +FT_INVALID_FORMAT android/freetype/include/freetype/internal/ftvalid.h /^#define FT_INVALID_FORMAT /;" d +FT_INVALID_FORMAT include/freetype/internal/ftvalid.h /^#define FT_INVALID_FORMAT /;" d +FT_INVALID_GLYPH_ID android/freetype/include/freetype/internal/ftvalid.h /^#define FT_INVALID_GLYPH_ID /;" d +FT_INVALID_GLYPH_ID include/freetype/internal/ftvalid.h /^#define FT_INVALID_GLYPH_ID /;" d +FT_INVALID_OFFSET android/freetype/include/freetype/internal/ftvalid.h /^#define FT_INVALID_OFFSET /;" d +FT_INVALID_OFFSET include/freetype/internal/ftvalid.h /^#define FT_INVALID_OFFSET /;" d +FT_INVALID_TOO_SHORT android/freetype/include/freetype/internal/ftvalid.h /^#define FT_INVALID_TOO_SHORT /;" d +FT_INVALID_TOO_SHORT include/freetype/internal/ftvalid.h /^#define FT_INVALID_TOO_SHORT /;" d +FT_IS_CID_KEYED android/freetype/include/freetype/freetype.h /^#define FT_IS_CID_KEYED(/;" d +FT_IS_CID_KEYED include/freetype/freetype.h /^#define FT_IS_CID_KEYED(/;" d +FT_IS_EMPTY android/freetype/include/freetype/fttypes.h /^#define FT_IS_EMPTY(/;" d +FT_IS_EMPTY include/freetype/fttypes.h /^#define FT_IS_EMPTY(/;" d +FT_IS_FIXED_WIDTH android/freetype/include/freetype/freetype.h /^#define FT_IS_FIXED_WIDTH(/;" d +FT_IS_FIXED_WIDTH include/freetype/freetype.h /^#define FT_IS_FIXED_WIDTH(/;" d +FT_IS_SCALABLE android/freetype/include/freetype/freetype.h /^#define FT_IS_SCALABLE(/;" d +FT_IS_SCALABLE include/freetype/freetype.h /^#define FT_IS_SCALABLE(/;" d +FT_IS_SFNT android/freetype/include/freetype/freetype.h /^#define FT_IS_SFNT(/;" d +FT_IS_SFNT include/freetype/freetype.h /^#define FT_IS_SFNT(/;" d +FT_IS_SMALL android/freetype/src/base/ftstroke.c /^#define FT_IS_SMALL(/;" d file: +FT_IS_TRICKY include/freetype/freetype.h /^#define FT_IS_TRICKY(/;" d +FT_Incremental android/freetype/include/freetype/ftincrem.h /^ typedef struct FT_IncrementalRec_* FT_Incremental;$/;" t typeref:struct:FT_IncrementalRec_ +FT_Incremental include/freetype/ftincrem.h /^ typedef struct FT_IncrementalRec_* FT_Incremental;$/;" t typeref:struct:FT_IncrementalRec_ +FT_Incremental_FreeGlyphDataFunc android/freetype/include/freetype/ftincrem.h /^ (*FT_Incremental_FreeGlyphDataFunc)( FT_Incremental incremental,$/;" t +FT_Incremental_FreeGlyphDataFunc include/freetype/ftincrem.h /^ (*FT_Incremental_FreeGlyphDataFunc)( FT_Incremental incremental,$/;" t +FT_Incremental_FuncsRec android/freetype/include/freetype/ftincrem.h /^ } FT_Incremental_FuncsRec;$/;" t typeref:struct:FT_Incremental_FuncsRec_ +FT_Incremental_FuncsRec include/freetype/ftincrem.h /^ } FT_Incremental_FuncsRec;$/;" t typeref:struct:FT_Incremental_FuncsRec_ +FT_Incremental_FuncsRec_ android/freetype/include/freetype/ftincrem.h /^ typedef struct FT_Incremental_FuncsRec_$/;" s +FT_Incremental_FuncsRec_ include/freetype/ftincrem.h /^ typedef struct FT_Incremental_FuncsRec_$/;" s +FT_Incremental_GetGlyphDataFunc android/freetype/include/freetype/ftincrem.h /^ (*FT_Incremental_GetGlyphDataFunc)( FT_Incremental incremental,$/;" t +FT_Incremental_GetGlyphDataFunc include/freetype/ftincrem.h /^ (*FT_Incremental_GetGlyphDataFunc)( FT_Incremental incremental,$/;" t +FT_Incremental_GetGlyphMetricsFunc android/freetype/include/freetype/ftincrem.h /^ (*FT_Incremental_GetGlyphMetricsFunc)$/;" t +FT_Incremental_GetGlyphMetricsFunc include/freetype/ftincrem.h /^ (*FT_Incremental_GetGlyphMetricsFunc)$/;" t +FT_Incremental_Interface android/freetype/include/freetype/ftincrem.h /^ typedef FT_Incremental_InterfaceRec* FT_Incremental_Interface;$/;" t +FT_Incremental_Interface include/freetype/ftincrem.h /^ typedef FT_Incremental_InterfaceRec* FT_Incremental_Interface;$/;" t +FT_Incremental_InterfaceRec android/freetype/include/freetype/ftincrem.h /^ } FT_Incremental_InterfaceRec;$/;" t typeref:struct:FT_Incremental_InterfaceRec_ +FT_Incremental_InterfaceRec include/freetype/ftincrem.h /^ } FT_Incremental_InterfaceRec;$/;" t typeref:struct:FT_Incremental_InterfaceRec_ +FT_Incremental_InterfaceRec_ android/freetype/include/freetype/ftincrem.h /^ typedef struct FT_Incremental_InterfaceRec_$/;" s +FT_Incremental_InterfaceRec_ include/freetype/ftincrem.h /^ typedef struct FT_Incremental_InterfaceRec_$/;" s +FT_Incremental_Metrics android/freetype/include/freetype/ftincrem.h /^ typedef struct FT_Incremental_MetricsRec_* FT_Incremental_Metrics;$/;" t typeref:struct:FT_Incremental_MetricsRec_ +FT_Incremental_Metrics include/freetype/ftincrem.h /^ typedef struct FT_Incremental_MetricsRec_* FT_Incremental_Metrics;$/;" t typeref:struct:FT_Incremental_MetricsRec_ +FT_Incremental_MetricsRec android/freetype/include/freetype/ftincrem.h /^ } FT_Incremental_MetricsRec;$/;" t typeref:struct:FT_Incremental_MetricsRec_ +FT_Incremental_MetricsRec include/freetype/ftincrem.h /^ } FT_Incremental_MetricsRec;$/;" t typeref:struct:FT_Incremental_MetricsRec_ +FT_Incremental_MetricsRec_ android/freetype/include/freetype/ftincrem.h /^ typedef struct FT_Incremental_MetricsRec_$/;" s +FT_Incremental_MetricsRec_ include/freetype/ftincrem.h /^ typedef struct FT_Incremental_MetricsRec_$/;" s +FT_Int android/freetype/include/freetype/fttypes.h /^ typedef signed int FT_Int;$/;" t +FT_Int android/freetype/src/raster/ftmisc.h /^ typedef signed int FT_Int;$/;" t +FT_Int include/freetype/fttypes.h /^ typedef signed int FT_Int;$/;" t +FT_Int16 android/freetype/include/freetype/config/ftconfig.h /^ typedef signed short FT_Int16;$/;" t +FT_Int16 include/freetype/config/ftconfig.h /^ typedef signed short FT_Int16;$/;" t +FT_Int32 android/freetype/include/freetype/config/ftconfig.h /^ typedef signed int FT_Int32;$/;" t +FT_Int32 android/freetype/include/freetype/config/ftconfig.h /^ typedef signed long FT_Int32;$/;" t +FT_Int32 include/freetype/config/ftconfig.h /^ typedef signed int FT_Int32;$/;" t +FT_Int32 include/freetype/config/ftconfig.h /^ typedef signed long FT_Int32;$/;" t +FT_Int64 android/freetype/src/base/ftcalc.c /^ typedef FT_INT64 FT_Int64;$/;" t file: +FT_Int64 android/freetype/src/base/ftcalc.c /^ } FT_Int64;$/;" t typeref:struct:FT_Int64_ file: +FT_Int64 android/freetype/src/raster/ftmisc.h /^ typedef int64_t FT_Int64;$/;" t +FT_Int64_ android/freetype/src/base/ftcalc.c /^ typedef struct FT_Int64_$/;" s file: +FT_KEEP_ERR_PREFIX android/freetype/src/sfnt/sferrors.h /^#define FT_KEEP_ERR_PREFIX$/;" d +FT_KERNING_DEFAULT android/freetype/include/freetype/freetype.h /^ FT_KERNING_DEFAULT = 0,$/;" e enum:FT_Kerning_Mode_ +FT_KERNING_DEFAULT include/freetype/freetype.h /^ FT_KERNING_DEFAULT = 0,$/;" e enum:FT_Kerning_Mode_ +FT_KERNING_UNFITTED android/freetype/include/freetype/freetype.h /^ FT_KERNING_UNFITTED,$/;" e enum:FT_Kerning_Mode_ +FT_KERNING_UNFITTED include/freetype/freetype.h /^ FT_KERNING_UNFITTED,$/;" e enum:FT_Kerning_Mode_ +FT_KERNING_UNSCALED android/freetype/include/freetype/freetype.h /^ FT_KERNING_UNSCALED$/;" e enum:FT_Kerning_Mode_ +FT_KERNING_UNSCALED include/freetype/freetype.h /^ FT_KERNING_UNSCALED$/;" e enum:FT_Kerning_Mode_ +FT_Kerning_Mode android/freetype/include/freetype/freetype.h /^ } FT_Kerning_Mode;$/;" t typeref:enum:FT_Kerning_Mode_ +FT_Kerning_Mode include/freetype/freetype.h /^ } FT_Kerning_Mode;$/;" t typeref:enum:FT_Kerning_Mode_ +FT_Kerning_Mode_ android/freetype/include/freetype/freetype.h /^ typedef enum FT_Kerning_Mode_$/;" g +FT_Kerning_Mode_ include/freetype/freetype.h /^ typedef enum FT_Kerning_Mode_$/;" g +FT_Kerning_TrackGetFunc android/freetype/include/freetype/internal/services/svkern.h /^ (*FT_Kerning_TrackGetFunc)( FT_Face face,$/;" t +FT_Kerning_TrackGetFunc include/freetype/internal/services/svkern.h /^ (*FT_Kerning_TrackGetFunc)( FT_Face face,$/;" t +FT_LCD_FILTER_DEFAULT android/freetype/include/freetype/ftlcdfil.h /^ FT_LCD_FILTER_DEFAULT = 1,$/;" e enum:FT_LcdFilter_ +FT_LCD_FILTER_DEFAULT include/freetype/ftlcdfil.h /^ FT_LCD_FILTER_DEFAULT = 1,$/;" e enum:FT_LcdFilter_ +FT_LCD_FILTER_H android/freetype/include/freetype/config/ftheader.h /^#define FT_LCD_FILTER_H /;" d +FT_LCD_FILTER_H include/freetype/config/ftheader.h /^#define FT_LCD_FILTER_H /;" d +FT_LCD_FILTER_LEGACY android/freetype/include/freetype/ftlcdfil.h /^ FT_LCD_FILTER_LEGACY = 16,$/;" e enum:FT_LcdFilter_ +FT_LCD_FILTER_LEGACY include/freetype/ftlcdfil.h /^ FT_LCD_FILTER_LEGACY = 16,$/;" e enum:FT_LcdFilter_ +FT_LCD_FILTER_LIGHT android/freetype/include/freetype/ftlcdfil.h /^ FT_LCD_FILTER_LIGHT = 2,$/;" e enum:FT_LcdFilter_ +FT_LCD_FILTER_LIGHT include/freetype/ftlcdfil.h /^ FT_LCD_FILTER_LIGHT = 2,$/;" e enum:FT_LcdFilter_ +FT_LCD_FILTER_MAX android/freetype/include/freetype/ftlcdfil.h /^ FT_LCD_FILTER_MAX \/* do not remove *\/$/;" e enum:FT_LcdFilter_ +FT_LCD_FILTER_MAX include/freetype/ftlcdfil.h /^ FT_LCD_FILTER_MAX \/* do not remove *\/$/;" e enum:FT_LcdFilter_ +FT_LCD_FILTER_NONE android/freetype/include/freetype/ftlcdfil.h /^ FT_LCD_FILTER_NONE = 0,$/;" e enum:FT_LcdFilter_ +FT_LCD_FILTER_NONE include/freetype/ftlcdfil.h /^ FT_LCD_FILTER_NONE = 0,$/;" e enum:FT_LcdFilter_ +FT_LIST_H android/freetype/include/freetype/config/ftheader.h /^#define FT_LIST_H /;" d +FT_LIST_H include/freetype/config/ftheader.h /^#define FT_LIST_H /;" d +FT_LOAD_ADVANCE_ONLY android/freetype/include/freetype/freetype.h /^#define FT_LOAD_ADVANCE_ONLY /;" d +FT_LOAD_ADVANCE_ONLY include/freetype/freetype.h /^#define FT_LOAD_ADVANCE_ONLY /;" d +FT_LOAD_CROP_BITMAP android/freetype/include/freetype/freetype.h /^#define FT_LOAD_CROP_BITMAP /;" d +FT_LOAD_CROP_BITMAP include/freetype/freetype.h /^#define FT_LOAD_CROP_BITMAP /;" d +FT_LOAD_DEFAULT android/freetype/include/freetype/freetype.h /^#define FT_LOAD_DEFAULT /;" d +FT_LOAD_DEFAULT include/freetype/freetype.h /^#define FT_LOAD_DEFAULT /;" d +FT_LOAD_FORCE_AUTOHINT android/freetype/include/freetype/freetype.h /^#define FT_LOAD_FORCE_AUTOHINT /;" d +FT_LOAD_FORCE_AUTOHINT include/freetype/freetype.h /^#define FT_LOAD_FORCE_AUTOHINT /;" d +FT_LOAD_IGNORE_GLOBAL_ADVANCE_WIDTH android/freetype/include/freetype/freetype.h /^#define FT_LOAD_IGNORE_GLOBAL_ADVANCE_WIDTH /;" d +FT_LOAD_IGNORE_GLOBAL_ADVANCE_WIDTH include/freetype/freetype.h /^#define FT_LOAD_IGNORE_GLOBAL_ADVANCE_WIDTH /;" d +FT_LOAD_IGNORE_TRANSFORM android/freetype/include/freetype/freetype.h /^#define FT_LOAD_IGNORE_TRANSFORM /;" d +FT_LOAD_IGNORE_TRANSFORM include/freetype/freetype.h /^#define FT_LOAD_IGNORE_TRANSFORM /;" d +FT_LOAD_LINEAR_DESIGN android/freetype/include/freetype/freetype.h /^#define FT_LOAD_LINEAR_DESIGN /;" d +FT_LOAD_LINEAR_DESIGN include/freetype/freetype.h /^#define FT_LOAD_LINEAR_DESIGN /;" d +FT_LOAD_MONOCHROME android/freetype/include/freetype/freetype.h /^#define FT_LOAD_MONOCHROME /;" d +FT_LOAD_MONOCHROME include/freetype/freetype.h /^#define FT_LOAD_MONOCHROME /;" d +FT_LOAD_NO_AUTOHINT android/freetype/include/freetype/freetype.h /^#define FT_LOAD_NO_AUTOHINT /;" d +FT_LOAD_NO_AUTOHINT include/freetype/freetype.h /^#define FT_LOAD_NO_AUTOHINT /;" d +FT_LOAD_NO_BITMAP android/freetype/include/freetype/freetype.h /^#define FT_LOAD_NO_BITMAP /;" d +FT_LOAD_NO_BITMAP include/freetype/freetype.h /^#define FT_LOAD_NO_BITMAP /;" d +FT_LOAD_NO_HINTING android/freetype/include/freetype/freetype.h /^#define FT_LOAD_NO_HINTING /;" d +FT_LOAD_NO_HINTING include/freetype/freetype.h /^#define FT_LOAD_NO_HINTING /;" d +FT_LOAD_NO_RECURSE android/freetype/include/freetype/freetype.h /^#define FT_LOAD_NO_RECURSE /;" d +FT_LOAD_NO_RECURSE include/freetype/freetype.h /^#define FT_LOAD_NO_RECURSE /;" d +FT_LOAD_NO_SCALE android/freetype/include/freetype/freetype.h /^#define FT_LOAD_NO_SCALE /;" d +FT_LOAD_NO_SCALE include/freetype/freetype.h /^#define FT_LOAD_NO_SCALE /;" d +FT_LOAD_PEDANTIC android/freetype/include/freetype/freetype.h /^#define FT_LOAD_PEDANTIC /;" d +FT_LOAD_PEDANTIC include/freetype/freetype.h /^#define FT_LOAD_PEDANTIC /;" d +FT_LOAD_RENDER android/freetype/include/freetype/freetype.h /^#define FT_LOAD_RENDER /;" d +FT_LOAD_RENDER include/freetype/freetype.h /^#define FT_LOAD_RENDER /;" d +FT_LOAD_SBITS_ONLY android/freetype/include/freetype/freetype.h /^#define FT_LOAD_SBITS_ONLY /;" d +FT_LOAD_SBITS_ONLY include/freetype/freetype.h /^#define FT_LOAD_SBITS_ONLY /;" d +FT_LOAD_TARGET_ android/freetype/include/freetype/freetype.h /^#define FT_LOAD_TARGET_(/;" d +FT_LOAD_TARGET_ include/freetype/freetype.h /^#define FT_LOAD_TARGET_(/;" d +FT_LOAD_TARGET_LCD android/freetype/include/freetype/freetype.h /^#define FT_LOAD_TARGET_LCD /;" d +FT_LOAD_TARGET_LCD include/freetype/freetype.h /^#define FT_LOAD_TARGET_LCD /;" d +FT_LOAD_TARGET_LCD_V android/freetype/include/freetype/freetype.h /^#define FT_LOAD_TARGET_LCD_V /;" d +FT_LOAD_TARGET_LCD_V include/freetype/freetype.h /^#define FT_LOAD_TARGET_LCD_V /;" d +FT_LOAD_TARGET_LIGHT android/freetype/include/freetype/freetype.h /^#define FT_LOAD_TARGET_LIGHT /;" d +FT_LOAD_TARGET_LIGHT include/freetype/freetype.h /^#define FT_LOAD_TARGET_LIGHT /;" d +FT_LOAD_TARGET_MODE android/freetype/include/freetype/freetype.h /^#define FT_LOAD_TARGET_MODE(/;" d +FT_LOAD_TARGET_MODE include/freetype/freetype.h /^#define FT_LOAD_TARGET_MODE(/;" d +FT_LOAD_TARGET_MONO android/freetype/include/freetype/freetype.h /^#define FT_LOAD_TARGET_MONO /;" d +FT_LOAD_TARGET_MONO include/freetype/freetype.h /^#define FT_LOAD_TARGET_MONO /;" d +FT_LOAD_TARGET_NORMAL android/freetype/include/freetype/freetype.h /^#define FT_LOAD_TARGET_NORMAL /;" d +FT_LOAD_TARGET_NORMAL include/freetype/freetype.h /^#define FT_LOAD_TARGET_NORMAL /;" d +FT_LOAD_VERTICAL_LAYOUT android/freetype/include/freetype/freetype.h /^#define FT_LOAD_VERTICAL_LAYOUT /;" d +FT_LOAD_VERTICAL_LAYOUT include/freetype/freetype.h /^#define FT_LOAD_VERTICAL_LAYOUT /;" d +FT_LOCAL android/freetype/include/freetype/config/ftconfig.h /^#define FT_LOCAL(/;" d +FT_LOCAL android/freetype/src/autofit/afhints.c /^ FT_LOCAL( FT_Error )$/;" f +FT_LOCAL android/freetype/src/pshinter/pshrec.c /^ FT_LOCAL( FT_Error )$/;" f +FT_LOCAL android/freetype/src/sfnt/ttcmap.c /^ FT_LOCAL( FT_Error )$/;" f +FT_LOCAL android/freetype/src/sfnt/ttsbit.c /^ FT_LOCAL( FT_Error )$/;" f +FT_LOCAL android/freetype/src/sfnt/ttsbit0.c /^ FT_LOCAL( FT_Error )$/;" f +FT_LOCAL include/freetype/config/ftconfig.h /^#define FT_LOCAL(/;" d +FT_LOCAL_DEF android/freetype/include/freetype/config/ftconfig.h /^#define FT_LOCAL_DEF(/;" d +FT_LOCAL_DEF android/freetype/src/autofit/afangles.c /^ FT_LOCAL_DEF( AF_Angle )$/;" f +FT_LOCAL_DEF android/freetype/src/autofit/afcjk.c /^ FT_LOCAL_DEF( FT_Error )$/;" f +FT_LOCAL_DEF android/freetype/src/autofit/afglobal.c /^ FT_LOCAL_DEF( FT_Error )$/;" f +FT_LOCAL_DEF android/freetype/src/autofit/afhints.c /^ FT_LOCAL_DEF( AF_Direction )$/;" f +FT_LOCAL_DEF android/freetype/src/autofit/afhints.c /^ FT_LOCAL_DEF( FT_Error )$/;" f +FT_LOCAL_DEF android/freetype/src/autofit/aflatin.c /^ FT_LOCAL_DEF( FT_Error )$/;" f +FT_LOCAL_DEF android/freetype/src/autofit/aflatin2.c /^ FT_LOCAL_DEF( FT_Error )$/;" f +FT_LOCAL_DEF android/freetype/src/autofit/afloader.c /^ FT_LOCAL_DEF( FT_Error )$/;" f +FT_LOCAL_DEF android/freetype/src/cff/cffgload.c /^ FT_LOCAL_DEF( FT_Error )$/;" f +FT_LOCAL_DEF android/freetype/src/cff/cffload.c /^ FT_LOCAL_DEF( FT_Byte )$/;" f +FT_LOCAL_DEF android/freetype/src/cff/cffload.c /^ FT_LOCAL_DEF( FT_Error )$/;" f +FT_LOCAL_DEF android/freetype/src/cff/cffload.c /^ FT_LOCAL_DEF( FT_UInt )$/;" f +FT_LOCAL_DEF android/freetype/src/cff/cffload.c /^ FT_LOCAL_DEF( FT_UShort )$/;" f +FT_LOCAL_DEF android/freetype/src/cff/cffobjs.c /^ FT_LOCAL_DEF( FT_Error )$/;" f +FT_LOCAL_DEF android/freetype/src/cff/cffparse.c /^ FT_LOCAL_DEF( FT_Error )$/;" f +FT_LOCAL_DEF android/freetype/src/psaux/afmparse.c /^ FT_LOCAL_DEF( FT_Error )$/;" f +FT_LOCAL_DEF android/freetype/src/psaux/afmparse.c /^ FT_LOCAL_DEF( FT_Int )$/;" f +FT_LOCAL_DEF android/freetype/src/psaux/psconv.c /^ FT_LOCAL_DEF( FT_Fixed )$/;" f +FT_LOCAL_DEF android/freetype/src/psaux/psconv.c /^ FT_LOCAL_DEF( FT_Int )$/;" f +FT_LOCAL_DEF android/freetype/src/psaux/psconv.c /^ FT_LOCAL_DEF( FT_UInt )$/;" f +FT_LOCAL_DEF android/freetype/src/psaux/psobjs.c /^ FT_LOCAL_DEF( FT_Error )$/;" f +FT_LOCAL_DEF android/freetype/src/psaux/psobjs.c /^ FT_LOCAL_DEF( FT_Fixed )$/;" f +FT_LOCAL_DEF android/freetype/src/psaux/psobjs.c /^ FT_LOCAL_DEF( FT_Int )$/;" f +FT_LOCAL_DEF android/freetype/src/psaux/psobjs.c /^ FT_LOCAL_DEF( FT_Long )$/;" f +FT_LOCAL_DEF android/freetype/src/psaux/t1decode.c /^ FT_LOCAL_DEF( FT_Error )$/;" f +FT_LOCAL_DEF android/freetype/src/pshinter/pshalgo.c /^ FT_LOCAL_DEF( FT_Int )$/;" f +FT_LOCAL_DEF android/freetype/src/pshinter/pshglob.c /^ FT_LOCAL_DEF( FT_Error )$/;" f +FT_LOCAL_DEF android/freetype/src/raster/ftmisc.h /^#define FT_LOCAL_DEF(/;" d +FT_LOCAL_DEF android/freetype/src/raster/ftraster.c /^ FT_LOCAL_DEF( FT_Error )$/;" f +FT_LOCAL_DEF android/freetype/src/sfnt/sfobjs.c /^ FT_LOCAL_DEF( FT_Error )$/;" f +FT_LOCAL_DEF android/freetype/src/sfnt/ttbdf.c /^ FT_LOCAL_DEF( FT_Error )$/;" f +FT_LOCAL_DEF android/freetype/src/sfnt/ttcmap.c /^ FT_LOCAL_DEF( FT_Error )$/;" f +FT_LOCAL_DEF android/freetype/src/sfnt/ttkern.c /^ FT_LOCAL_DEF( FT_Error )$/;" f +FT_LOCAL_DEF android/freetype/src/sfnt/ttkern.c /^ FT_LOCAL_DEF( FT_Int )$/;" f +FT_LOCAL_DEF android/freetype/src/sfnt/ttload.c /^ FT_LOCAL_DEF( FT_Error )$/;" f +FT_LOCAL_DEF android/freetype/src/sfnt/ttload.c /^ FT_LOCAL_DEF( TT_Table )$/;" f +FT_LOCAL_DEF android/freetype/src/sfnt/ttmtx.c /^ FT_LOCAL_DEF( FT_Error )$/;" f +FT_LOCAL_DEF android/freetype/src/sfnt/ttpost.c /^ FT_LOCAL_DEF( FT_Error )$/;" f +FT_LOCAL_DEF android/freetype/src/sfnt/ttsbit.c /^ FT_LOCAL_DEF( FT_Error )$/;" f +FT_LOCAL_DEF android/freetype/src/sfnt/ttsbit0.c /^ FT_LOCAL_DEF( FT_Error )$/;" f +FT_LOCAL_DEF android/freetype/src/truetype/ttgload.c /^ FT_LOCAL_DEF( FT_Error )$/;" f +FT_LOCAL_DEF android/freetype/src/truetype/ttgxvar.c /^ FT_LOCAL_DEF( FT_Error )$/;" f +FT_LOCAL_DEF android/freetype/src/truetype/ttinterp.c /^ FT_LOCAL_DEF( FT_Error )$/;" f +FT_LOCAL_DEF android/freetype/src/truetype/ttobjs.c /^ FT_LOCAL_DEF( FT_Error )$/;" f +FT_LOCAL_DEF android/freetype/src/truetype/ttpload.c /^ FT_LOCAL_DEF( FT_Error )$/;" f +FT_LOCAL_DEF android/freetype/src/truetype/ttpload.c /^ FT_LOCAL_DEF( FT_ULong )$/;" f +FT_LOCAL_DEF include/freetype/config/ftconfig.h /^#define FT_LOCAL_DEF(/;" d +FT_LONG64 android/freetype/include/freetype/config/ftconfig.h /^#define FT_LONG64$/;" d +FT_LONG64 android/freetype/include/freetype/config/ftconfig.h /^#undef FT_LONG64$/;" d +FT_LONG64 include/freetype/config/ftconfig.h /^#define FT_LONG64$/;" d +FT_LONG64 include/freetype/config/ftconfig.h /^#undef FT_LONG64$/;" d +FT_LZW_H android/freetype/include/freetype/config/ftheader.h /^#define FT_LZW_H /;" d +FT_LZW_H include/freetype/config/ftheader.h /^#define FT_LZW_H /;" d +FT_LcdFilter android/freetype/include/freetype/ftlcdfil.h /^ } FT_LcdFilter;$/;" t typeref:enum:FT_LcdFilter_ +FT_LcdFilter include/freetype/ftlcdfil.h /^ } FT_LcdFilter;$/;" t typeref:enum:FT_LcdFilter_ +FT_LcdFilter_ android/freetype/include/freetype/ftlcdfil.h /^ typedef enum FT_LcdFilter_$/;" g +FT_LcdFilter_ include/freetype/ftlcdfil.h /^ typedef enum FT_LcdFilter_$/;" g +FT_Library android/freetype/include/freetype/freetype.h /^ typedef struct FT_LibraryRec_ *FT_Library;$/;" t typeref:struct:FT_LibraryRec_ +FT_Library include/freetype/freetype.h /^ typedef struct FT_LibraryRec_ *FT_Library;$/;" t typeref:struct:FT_LibraryRec_ +FT_LibraryRec android/freetype/include/freetype/internal/ftobjs.h /^ } FT_LibraryRec;$/;" t typeref:struct:FT_LibraryRec_ +FT_LibraryRec include/freetype/internal/ftobjs.h /^ } FT_LibraryRec;$/;" t typeref:struct:FT_LibraryRec_ +FT_LibraryRec_ android/freetype/include/freetype/internal/ftobjs.h /^ typedef struct FT_LibraryRec_$/;" s +FT_LibraryRec_ include/freetype/internal/ftobjs.h /^ typedef struct FT_LibraryRec_$/;" s +FT_Library_Version android/freetype/src/base/ftobjs.c /^ FT_Library_Version( FT_Library library,$/;" f +FT_List android/freetype/include/freetype/fttypes.h /^ typedef struct FT_ListRec_* FT_List;$/;" t typeref:struct:FT_ListRec_ +FT_List include/freetype/fttypes.h /^ typedef struct FT_ListRec_* FT_List;$/;" t typeref:struct:FT_ListRec_ +FT_ListNode android/freetype/include/freetype/fttypes.h /^ typedef struct FT_ListNodeRec_* FT_ListNode;$/;" t typeref:struct:FT_ListNodeRec_ +FT_ListNode include/freetype/fttypes.h /^ typedef struct FT_ListNodeRec_* FT_ListNode;$/;" t typeref:struct:FT_ListNodeRec_ +FT_ListNodeRec android/freetype/include/freetype/fttypes.h /^ } FT_ListNodeRec;$/;" t typeref:struct:FT_ListNodeRec_ +FT_ListNodeRec include/freetype/fttypes.h /^ } FT_ListNodeRec;$/;" t typeref:struct:FT_ListNodeRec_ +FT_ListNodeRec_ android/freetype/include/freetype/fttypes.h /^ typedef struct FT_ListNodeRec_$/;" s +FT_ListNodeRec_ include/freetype/fttypes.h /^ typedef struct FT_ListNodeRec_$/;" s +FT_ListRec android/freetype/include/freetype/fttypes.h /^ } FT_ListRec;$/;" t typeref:struct:FT_ListRec_ +FT_ListRec include/freetype/fttypes.h /^ } FT_ListRec;$/;" t typeref:struct:FT_ListRec_ +FT_ListRec_ android/freetype/include/freetype/fttypes.h /^ typedef struct FT_ListRec_$/;" s +FT_ListRec_ include/freetype/fttypes.h /^ typedef struct FT_ListRec_$/;" s +FT_List_Add android/freetype/src/base/ftutil.c /^ FT_List_Add( FT_List list,$/;" f +FT_List_Destructor android/freetype/include/freetype/ftlist.h /^ (*FT_List_Destructor)( FT_Memory memory,$/;" t +FT_List_Destructor include/freetype/ftlist.h /^ (*FT_List_Destructor)( FT_Memory memory,$/;" t +FT_List_Finalize android/freetype/src/base/ftutil.c /^ FT_List_Finalize( FT_List list,$/;" f +FT_List_Insert android/freetype/src/base/ftutil.c /^ FT_List_Insert( FT_List list,$/;" f +FT_List_Iterator android/freetype/include/freetype/ftlist.h /^ (*FT_List_Iterator)( FT_ListNode node,$/;" t +FT_List_Iterator include/freetype/ftlist.h /^ (*FT_List_Iterator)( FT_ListNode node,$/;" t +FT_List_Remove android/freetype/src/base/ftutil.c /^ FT_List_Remove( FT_List list,$/;" f +FT_List_Up android/freetype/src/base/ftutil.c /^ FT_List_Up( FT_List list,$/;" f +FT_Long android/freetype/include/freetype/fttypes.h /^ typedef signed long FT_Long;$/;" t +FT_Long android/freetype/src/raster/ftmisc.h /^ typedef signed long FT_Long;$/;" t +FT_Long include/freetype/fttypes.h /^ typedef signed long FT_Long;$/;" t +FT_MAC_H android/freetype/include/freetype/config/ftheader.h /^#define FT_MAC_H /;" d +FT_MAC_H include/freetype/config/ftheader.h /^#define FT_MAC_H /;" d +FT_MAKE_EMPTY_FIELD android/freetype/include/freetype/internal/ftstream.h /^#define FT_MAKE_EMPTY_FIELD(/;" d +FT_MAKE_EMPTY_FIELD include/freetype/internal/ftstream.h /^#define FT_MAKE_EMPTY_FIELD(/;" d +FT_MAKE_FRAME_OP android/freetype/include/freetype/internal/ftstream.h /^#define FT_MAKE_FRAME_OP(/;" d +FT_MAKE_FRAME_OP include/freetype/internal/ftstream.h /^#define FT_MAKE_FRAME_OP(/;" d +FT_MAKE_OPTION_SINGLE_OBJECT android/freetype/src/autofit/autofit.c /^#define FT_MAKE_OPTION_SINGLE_OBJECT$/;" d file: +FT_MAKE_OPTION_SINGLE_OBJECT android/freetype/src/base/ftbase.c /^#define FT_MAKE_OPTION_SINGLE_OBJECT$/;" d file: +FT_MAKE_OPTION_SINGLE_OBJECT android/freetype/src/cff/cff.c /^#define FT_MAKE_OPTION_SINGLE_OBJECT$/;" d file: +FT_MAKE_OPTION_SINGLE_OBJECT android/freetype/src/psaux/psaux.c /^#define FT_MAKE_OPTION_SINGLE_OBJECT$/;" d file: +FT_MAKE_OPTION_SINGLE_OBJECT android/freetype/src/pshinter/pshinter.c /^#define FT_MAKE_OPTION_SINGLE_OBJECT$/;" d file: +FT_MAKE_OPTION_SINGLE_OBJECT android/freetype/src/psnames/psnames.c /^#define FT_MAKE_OPTION_SINGLE_OBJECT$/;" d file: +FT_MAKE_OPTION_SINGLE_OBJECT android/freetype/src/raster/raster.c /^#define FT_MAKE_OPTION_SINGLE_OBJECT$/;" d file: +FT_MAKE_OPTION_SINGLE_OBJECT android/freetype/src/sfnt/sfnt.c /^#define FT_MAKE_OPTION_SINGLE_OBJECT$/;" d file: +FT_MAKE_OPTION_SINGLE_OBJECT android/freetype/src/smooth/smooth.c /^#define FT_MAKE_OPTION_SINGLE_OBJECT$/;" d file: +FT_MAKE_OPTION_SINGLE_OBJECT android/freetype/src/truetype/truetype.c /^#define FT_MAKE_OPTION_SINGLE_OBJECT$/;" d file: +FT_MAKE_TAG android/freetype/include/freetype/fttypes.h /^#define FT_MAKE_TAG(/;" d +FT_MAKE_TAG android/freetype/src/raster/ftmisc.h /^#define FT_MAKE_TAG(/;" d +FT_MAKE_TAG include/freetype/fttypes.h /^#define FT_MAKE_TAG(/;" d +FT_MAX android/freetype/include/freetype/internal/ftobjs.h /^#define FT_MAX(/;" d +FT_MAX include/freetype/internal/ftobjs.h /^#define FT_MAX(/;" d +FT_MAX_CHARMAP_CACHEABLE include/freetype/config/ftoption.h /^#define FT_MAX_CHARMAP_CACHEABLE /;" d +FT_MAX_GRAY_SPANS android/freetype/src/smooth/ftgrays.c /^#define FT_MAX_GRAY_SPANS /;" d file: +FT_MAX_MODULES android/freetype/include/freetype/config/ftoption.h /^#define FT_MAX_MODULES /;" d +FT_MAX_MODULES include/freetype/config/ftoption.h /^#define FT_MAX_MODULES /;" d +FT_MEM_ALLOC android/freetype/include/freetype/internal/ftmemory.h /^#define FT_MEM_ALLOC(/;" d +FT_MEM_ALLOC include/freetype/internal/ftmemory.h /^#define FT_MEM_ALLOC(/;" d +FT_MEM_ALLOC_MULT android/freetype/include/freetype/internal/ftmemory.h /^#define FT_MEM_ALLOC_MULT(/;" d +FT_MEM_ALLOC_MULT include/freetype/internal/ftmemory.h /^#define FT_MEM_ALLOC_MULT(/;" d +FT_MEM_COPY android/freetype/include/freetype/internal/ftmemory.h /^#define FT_MEM_COPY(/;" d +FT_MEM_COPY include/freetype/internal/ftmemory.h /^#define FT_MEM_COPY(/;" d +FT_MEM_DUP android/freetype/include/freetype/internal/ftmemory.h /^#define FT_MEM_DUP(/;" d +FT_MEM_DUP include/freetype/internal/ftmemory.h /^#define FT_MEM_DUP(/;" d +FT_MEM_FREE android/freetype/include/freetype/internal/ftmemory.h /^#define FT_MEM_FREE(/;" d +FT_MEM_FREE include/freetype/internal/ftmemory.h /^#define FT_MEM_FREE(/;" d +FT_MEM_MOVE android/freetype/include/freetype/internal/ftmemory.h /^#define FT_MEM_MOVE(/;" d +FT_MEM_MOVE include/freetype/internal/ftmemory.h /^#define FT_MEM_MOVE(/;" d +FT_MEM_NEW android/freetype/include/freetype/internal/ftmemory.h /^#define FT_MEM_NEW(/;" d +FT_MEM_NEW include/freetype/internal/ftmemory.h /^#define FT_MEM_NEW(/;" d +FT_MEM_NEW_ARRAY android/freetype/include/freetype/internal/ftmemory.h /^#define FT_MEM_NEW_ARRAY(/;" d +FT_MEM_NEW_ARRAY include/freetype/internal/ftmemory.h /^#define FT_MEM_NEW_ARRAY(/;" d +FT_MEM_QALLOC android/freetype/include/freetype/internal/ftmemory.h /^#define FT_MEM_QALLOC(/;" d +FT_MEM_QALLOC include/freetype/internal/ftmemory.h /^#define FT_MEM_QALLOC(/;" d +FT_MEM_QALLOC_MULT android/freetype/include/freetype/internal/ftmemory.h /^#define FT_MEM_QALLOC_MULT(/;" d +FT_MEM_QALLOC_MULT include/freetype/internal/ftmemory.h /^#define FT_MEM_QALLOC_MULT(/;" d +FT_MEM_QNEW android/freetype/include/freetype/internal/ftmemory.h /^#define FT_MEM_QNEW(/;" d +FT_MEM_QNEW include/freetype/internal/ftmemory.h /^#define FT_MEM_QNEW(/;" d +FT_MEM_QNEW_ARRAY android/freetype/include/freetype/internal/ftmemory.h /^#define FT_MEM_QNEW_ARRAY(/;" d +FT_MEM_QNEW_ARRAY include/freetype/internal/ftmemory.h /^#define FT_MEM_QNEW_ARRAY(/;" d +FT_MEM_QREALLOC android/freetype/include/freetype/internal/ftmemory.h /^#define FT_MEM_QREALLOC(/;" d +FT_MEM_QREALLOC include/freetype/internal/ftmemory.h /^#define FT_MEM_QREALLOC(/;" d +FT_MEM_QREALLOC_MULT android/freetype/include/freetype/internal/ftmemory.h /^#define FT_MEM_QREALLOC_MULT(/;" d +FT_MEM_QREALLOC_MULT include/freetype/internal/ftmemory.h /^#define FT_MEM_QREALLOC_MULT(/;" d +FT_MEM_QRENEW_ARRAY android/freetype/include/freetype/internal/ftmemory.h /^#define FT_MEM_QRENEW_ARRAY(/;" d +FT_MEM_QRENEW_ARRAY include/freetype/internal/ftmemory.h /^#define FT_MEM_QRENEW_ARRAY(/;" d +FT_MEM_REALLOC android/freetype/include/freetype/internal/ftmemory.h /^#define FT_MEM_REALLOC(/;" d +FT_MEM_REALLOC include/freetype/internal/ftmemory.h /^#define FT_MEM_REALLOC(/;" d +FT_MEM_REALLOC_MULT android/freetype/include/freetype/internal/ftmemory.h /^#define FT_MEM_REALLOC_MULT(/;" d +FT_MEM_REALLOC_MULT include/freetype/internal/ftmemory.h /^#define FT_MEM_REALLOC_MULT(/;" d +FT_MEM_RENEW_ARRAY android/freetype/include/freetype/internal/ftmemory.h /^#define FT_MEM_RENEW_ARRAY(/;" d +FT_MEM_RENEW_ARRAY include/freetype/internal/ftmemory.h /^#define FT_MEM_RENEW_ARRAY(/;" d +FT_MEM_SET android/freetype/include/freetype/internal/ftmemory.h /^#define FT_MEM_SET(/;" d +FT_MEM_SET android/freetype/src/raster/ftraster.c /^#define FT_MEM_SET(/;" d file: +FT_MEM_SET android/freetype/src/smooth/ftgrays.c /^#define FT_MEM_SET(/;" d file: +FT_MEM_SET include/freetype/internal/ftmemory.h /^#define FT_MEM_SET(/;" d +FT_MEM_SET_ERROR android/freetype/include/freetype/internal/ftmemory.h /^#define FT_MEM_SET_ERROR(/;" d +FT_MEM_SET_ERROR include/freetype/internal/ftmemory.h /^#define FT_MEM_SET_ERROR(/;" d +FT_MEM_SIZE_MAX android/freetype/src/base/ftdbgmem.c /^#define FT_MEM_SIZE_MAX /;" d file: +FT_MEM_SIZE_MIN android/freetype/src/base/ftdbgmem.c /^#define FT_MEM_SIZE_MIN /;" d file: +FT_MEM_SOURCE_BUCKETS android/freetype/src/base/ftdbgmem.c /^#define FT_MEM_SOURCE_BUCKETS /;" d file: +FT_MEM_STRDUP android/freetype/include/freetype/internal/ftmemory.h /^#define FT_MEM_STRDUP(/;" d +FT_MEM_STRDUP include/freetype/internal/ftmemory.h /^#define FT_MEM_STRDUP(/;" d +FT_MEM_VAL android/freetype/src/base/ftdbgmem.c /^#define FT_MEM_VAL(/;" d file: +FT_MEM_ZERO android/freetype/include/freetype/internal/ftmemory.h /^#define FT_MEM_ZERO(/;" d +FT_MEM_ZERO android/freetype/src/raster/ftraster.c /^#define FT_MEM_ZERO(/;" d file: +FT_MEM_ZERO android/freetype/src/smooth/ftgrays.c /^#define FT_MEM_ZERO(/;" d file: +FT_MEM_ZERO include/freetype/internal/ftmemory.h /^#define FT_MEM_ZERO(/;" d +FT_MIN android/freetype/include/freetype/internal/ftobjs.h /^#define FT_MIN(/;" d +FT_MIN include/freetype/internal/ftobjs.h /^#define FT_MIN(/;" d +FT_MM_Axis android/freetype/include/freetype/ftmm.h /^ } FT_MM_Axis;$/;" t typeref:struct:FT_MM_Axis_ +FT_MM_Axis include/freetype/ftmm.h /^ } FT_MM_Axis;$/;" t typeref:struct:FT_MM_Axis_ +FT_MM_Axis_ android/freetype/include/freetype/ftmm.h /^ typedef struct FT_MM_Axis_$/;" s +FT_MM_Axis_ include/freetype/ftmm.h /^ typedef struct FT_MM_Axis_$/;" s +FT_MM_Var android/freetype/include/freetype/ftmm.h /^ } FT_MM_Var;$/;" t typeref:struct:FT_MM_Var_ +FT_MM_Var include/freetype/ftmm.h /^ } FT_MM_Var;$/;" t typeref:struct:FT_MM_Var_ +FT_MM_Var_ android/freetype/include/freetype/ftmm.h /^ typedef struct FT_MM_Var_$/;" s +FT_MM_Var_ include/freetype/ftmm.h /^ typedef struct FT_MM_Var_$/;" s +FT_MODERRDEF android/freetype/include/freetype/ftmoderr.h /^#define FT_MODERRDEF(/;" d +FT_MODERRDEF android/freetype/include/freetype/ftmoderr.h /^#undef FT_MODERRDEF$/;" d +FT_MODERRDEF include/freetype/ftmoderr.h /^#define FT_MODERRDEF(/;" d +FT_MODERRDEF include/freetype/ftmoderr.h /^#undef FT_MODERRDEF$/;" d +FT_MODERR_END_LIST android/freetype/include/freetype/ftmoderr.h /^#define FT_MODERR_END_LIST /;" d +FT_MODERR_END_LIST android/freetype/include/freetype/ftmoderr.h /^#undef FT_MODERR_END_LIST$/;" d +FT_MODERR_END_LIST include/freetype/ftmoderr.h /^#define FT_MODERR_END_LIST /;" d +FT_MODERR_END_LIST include/freetype/ftmoderr.h /^#undef FT_MODERR_END_LIST$/;" d +FT_MODERR_START_LIST android/freetype/include/freetype/ftmoderr.h /^#define FT_MODERR_START_LIST /;" d +FT_MODERR_START_LIST android/freetype/include/freetype/ftmoderr.h /^#undef FT_MODERR_START_LIST$/;" d +FT_MODERR_START_LIST include/freetype/ftmoderr.h /^#define FT_MODERR_START_LIST /;" d +FT_MODERR_START_LIST include/freetype/ftmoderr.h /^#undef FT_MODERR_START_LIST$/;" d +FT_MODULE android/freetype/include/freetype/internal/ftobjs.h /^#define FT_MODULE(/;" d +FT_MODULE include/freetype/internal/ftobjs.h /^#define FT_MODULE(/;" d +FT_MODULE_CLASS android/freetype/include/freetype/internal/ftobjs.h /^#define FT_MODULE_CLASS(/;" d +FT_MODULE_CLASS include/freetype/internal/ftobjs.h /^#define FT_MODULE_CLASS(/;" d +FT_MODULE_DRIVER_HAS_HINTER android/freetype/include/freetype/ftmodapi.h /^#define FT_MODULE_DRIVER_HAS_HINTER /;" d +FT_MODULE_DRIVER_HAS_HINTER include/freetype/ftmodapi.h /^#define FT_MODULE_DRIVER_HAS_HINTER /;" d +FT_MODULE_DRIVER_NO_OUTLINES android/freetype/include/freetype/ftmodapi.h /^#define FT_MODULE_DRIVER_NO_OUTLINES /;" d +FT_MODULE_DRIVER_NO_OUTLINES include/freetype/ftmodapi.h /^#define FT_MODULE_DRIVER_NO_OUTLINES /;" d +FT_MODULE_DRIVER_SCALABLE android/freetype/include/freetype/ftmodapi.h /^#define FT_MODULE_DRIVER_SCALABLE /;" d +FT_MODULE_DRIVER_SCALABLE include/freetype/ftmodapi.h /^#define FT_MODULE_DRIVER_SCALABLE /;" d +FT_MODULE_ERRORS_H android/freetype/include/freetype/config/ftheader.h /^#define FT_MODULE_ERRORS_H /;" d +FT_MODULE_ERRORS_H include/freetype/config/ftheader.h /^#define FT_MODULE_ERRORS_H /;" d +FT_MODULE_FONT_DRIVER android/freetype/include/freetype/ftmodapi.h /^#define FT_MODULE_FONT_DRIVER /;" d +FT_MODULE_FONT_DRIVER include/freetype/ftmodapi.h /^#define FT_MODULE_FONT_DRIVER /;" d +FT_MODULE_H android/freetype/include/freetype/config/ftheader.h /^#define FT_MODULE_H /;" d +FT_MODULE_H include/freetype/config/ftheader.h /^#define FT_MODULE_H /;" d +FT_MODULE_HINTER android/freetype/include/freetype/ftmodapi.h /^#define FT_MODULE_HINTER /;" d +FT_MODULE_HINTER include/freetype/ftmodapi.h /^#define FT_MODULE_HINTER /;" d +FT_MODULE_IS_DRIVER android/freetype/include/freetype/internal/ftobjs.h /^#define FT_MODULE_IS_DRIVER(/;" d +FT_MODULE_IS_DRIVER include/freetype/internal/ftobjs.h /^#define FT_MODULE_IS_DRIVER(/;" d +FT_MODULE_IS_HINTER android/freetype/include/freetype/internal/ftobjs.h /^#define FT_MODULE_IS_HINTER(/;" d +FT_MODULE_IS_HINTER include/freetype/internal/ftobjs.h /^#define FT_MODULE_IS_HINTER(/;" d +FT_MODULE_IS_RENDERER android/freetype/include/freetype/internal/ftobjs.h /^#define FT_MODULE_IS_RENDERER(/;" d +FT_MODULE_IS_RENDERER include/freetype/internal/ftobjs.h /^#define FT_MODULE_IS_RENDERER(/;" d +FT_MODULE_IS_STYLER android/freetype/include/freetype/internal/ftobjs.h /^#define FT_MODULE_IS_STYLER(/;" d +FT_MODULE_IS_STYLER include/freetype/internal/ftobjs.h /^#define FT_MODULE_IS_STYLER(/;" d +FT_MODULE_LIBRARY android/freetype/include/freetype/internal/ftobjs.h /^#define FT_MODULE_LIBRARY(/;" d +FT_MODULE_LIBRARY include/freetype/internal/ftobjs.h /^#define FT_MODULE_LIBRARY(/;" d +FT_MODULE_MEMORY android/freetype/include/freetype/internal/ftobjs.h /^#define FT_MODULE_MEMORY(/;" d +FT_MODULE_MEMORY include/freetype/internal/ftobjs.h /^#define FT_MODULE_MEMORY(/;" d +FT_MODULE_RENDERER android/freetype/include/freetype/ftmodapi.h /^#define FT_MODULE_RENDERER /;" d +FT_MODULE_RENDERER include/freetype/ftmodapi.h /^#define FT_MODULE_RENDERER /;" d +FT_MODULE_STYLER android/freetype/include/freetype/ftmodapi.h /^#define FT_MODULE_STYLER /;" d +FT_MODULE_STYLER include/freetype/ftmodapi.h /^#define FT_MODULE_STYLER /;" d +FT_MULFIX_ASSEMBLER android/freetype/include/freetype/config/ftconfig.h /^# define FT_MULFIX_ASSEMBLER /;" d +FT_MULFIX_ASSEMBLER include/freetype/config/ftconfig.h /^#define FT_MULFIX_ASSEMBLER /;" d +FT_MULFIX_INLINED android/freetype/include/freetype/config/ftconfig.h /^# define FT_MULFIX_INLINED /;" d +FT_MULFIX_INLINED include/freetype/config/ftconfig.h /^#define FT_MULFIX_INLINED /;" d +FT_MULTIPLE_MASTERS_H android/freetype/include/freetype/config/ftheader.h /^#define FT_MULTIPLE_MASTERS_H /;" d +FT_MULTIPLE_MASTERS_H include/freetype/config/ftheader.h /^#define FT_MULTIPLE_MASTERS_H /;" d +FT_Matrix android/freetype/include/freetype/fttypes.h /^ } FT_Matrix;$/;" t typeref:struct:FT_Matrix_ +FT_Matrix include/freetype/fttypes.h /^ } FT_Matrix;$/;" t typeref:struct:FT_Matrix_ +FT_Matrix_ android/freetype/include/freetype/fttypes.h /^ typedef struct FT_Matrix_$/;" s +FT_Matrix_ include/freetype/fttypes.h /^ typedef struct FT_Matrix_$/;" s +FT_Matrix_Multiply android/freetype/src/base/ftglyph.c /^ FT_Matrix_Multiply( const FT_Matrix* a,$/;" f +FT_Matrix_Multiply_Scaled android/freetype/src/base/ftcalc.c /^ FT_Matrix_Multiply_Scaled( const FT_Matrix* a,$/;" f +FT_MemNode android/freetype/src/base/ftdbgmem.c /^ typedef struct FT_MemNodeRec_* FT_MemNode;$/;" t typeref:struct:FT_MemNodeRec_ file: +FT_MemNodeRec android/freetype/src/base/ftdbgmem.c /^ } FT_MemNodeRec;$/;" t typeref:struct:FT_MemNodeRec_ file: +FT_MemNodeRec_ android/freetype/src/base/ftdbgmem.c /^ typedef struct FT_MemNodeRec_$/;" s file: +FT_MemSource android/freetype/src/base/ftdbgmem.c /^ typedef struct FT_MemSourceRec_* FT_MemSource;$/;" t typeref:struct:FT_MemSourceRec_ file: +FT_MemSourceRec android/freetype/src/base/ftdbgmem.c /^ } FT_MemSourceRec;$/;" t typeref:struct:FT_MemSourceRec_ file: +FT_MemSourceRec_ android/freetype/src/base/ftdbgmem.c /^ typedef struct FT_MemSourceRec_$/;" s file: +FT_MemTable android/freetype/src/base/ftdbgmem.c /^ typedef struct FT_MemTableRec_* FT_MemTable;$/;" t typeref:struct:FT_MemTableRec_ file: +FT_MemTableRec android/freetype/src/base/ftdbgmem.c /^ } FT_MemTableRec;$/;" t typeref:struct:FT_MemTableRec_ file: +FT_MemTableRec_ android/freetype/src/base/ftdbgmem.c /^ typedef struct FT_MemTableRec_$/;" s file: +FT_Memory android/freetype/include/freetype/ftsystem.h /^ typedef struct FT_MemoryRec_* FT_Memory;$/;" t typeref:struct:FT_MemoryRec_ +FT_Memory include/freetype/ftsystem.h /^ typedef struct FT_MemoryRec_* FT_Memory;$/;" t typeref:struct:FT_MemoryRec_ +FT_MemoryRec_ android/freetype/include/freetype/ftsystem.h /^ struct FT_MemoryRec_$/;" s +FT_MemoryRec_ include/freetype/ftsystem.h /^ struct FT_MemoryRec_$/;" s +FT_Message android/freetype/src/base/ftdebug.c /^ FT_Message( const char* fmt, ... )$/;" f +FT_Module android/freetype/include/freetype/freetype.h /^ typedef struct FT_ModuleRec_* FT_Module;$/;" t typeref:struct:FT_ModuleRec_ +FT_Module include/freetype/freetype.h /^ typedef struct FT_ModuleRec_* FT_Module;$/;" t typeref:struct:FT_ModuleRec_ +FT_ModuleRec android/freetype/include/freetype/internal/ftobjs.h /^ } FT_ModuleRec;$/;" t typeref:struct:FT_ModuleRec_ +FT_ModuleRec include/freetype/internal/ftobjs.h /^ } FT_ModuleRec;$/;" t typeref:struct:FT_ModuleRec_ +FT_ModuleRec_ android/freetype/include/freetype/internal/ftobjs.h /^ typedef struct FT_ModuleRec_$/;" s +FT_ModuleRec_ include/freetype/internal/ftobjs.h /^ typedef struct FT_ModuleRec_$/;" s +FT_Module_Class android/freetype/include/freetype/ftmodapi.h /^ } FT_Module_Class;$/;" t typeref:struct:FT_Module_Class_ +FT_Module_Class include/freetype/ftmodapi.h /^ } FT_Module_Class;$/;" t typeref:struct:FT_Module_Class_ +FT_Module_Class_ android/freetype/include/freetype/ftmodapi.h /^ typedef struct FT_Module_Class_$/;" s +FT_Module_Class_ include/freetype/ftmodapi.h /^ typedef struct FT_Module_Class_$/;" s +FT_Module_Constructor android/freetype/include/freetype/ftmodapi.h /^ (*FT_Module_Constructor)( FT_Module module );$/;" t +FT_Module_Constructor include/freetype/ftmodapi.h /^ (*FT_Module_Constructor)( FT_Module module );$/;" t +FT_Module_Creator include/freetype/internal/ftobjs.h /^ (*FT_Module_Creator)( FT_Memory memory,$/;" t +FT_Module_Destroyer include/freetype/internal/ftobjs.h /^ (*FT_Module_Destroyer)( FT_Memory memory,$/;" t +FT_Module_Destructor android/freetype/include/freetype/ftmodapi.h /^ (*FT_Module_Destructor)( FT_Module module );$/;" t +FT_Module_Destructor include/freetype/ftmodapi.h /^ (*FT_Module_Destructor)( FT_Module module );$/;" t +FT_Module_Interface android/freetype/include/freetype/ftmodapi.h /^ typedef FT_Pointer FT_Module_Interface;$/;" t +FT_Module_Interface include/freetype/ftmodapi.h /^ typedef FT_Pointer FT_Module_Interface;$/;" t +FT_Module_Requester android/freetype/include/freetype/ftmodapi.h /^ (*FT_Module_Requester)( FT_Module module,$/;" t +FT_Module_Requester include/freetype/ftmodapi.h /^ (*FT_Module_Requester)( FT_Module module,$/;" t +FT_MulDiv android/freetype/src/raster/ftmisc.h /^ FT_MulDiv( FT_Long a,$/;" f +FT_MulFix android/freetype/include/freetype/freetype.h /^# define FT_MulFix(/;" d +FT_MulFix android/freetype/src/base/ftcalc.c /^#undef FT_MulFix$/;" d file: +FT_MulFix include/freetype/freetype.h /^#define FT_MulFix(/;" d +FT_MulFix_arm android/freetype/include/freetype/config/ftconfig.h /^ FT_MulFix_arm( FT_Int32 a, FT_Int32 b )$/;" f +FT_MulFix_arm include/freetype/config/ftconfig.h /^ FT_MulFix_arm( FT_Int32 a,$/;" f +FT_MulFix_i386 android/freetype/include/freetype/config/ftconfig.h /^ FT_MulFix_i386( FT_Int32 a, FT_Int32 b )$/;" f +FT_MulFix_i386 include/freetype/config/ftconfig.h /^ FT_MulFix_i386( FT_Int32 a,$/;" f +FT_Multi_Master android/freetype/include/freetype/ftmm.h /^ } FT_Multi_Master;$/;" t typeref:struct:FT_Multi_Master_ +FT_Multi_Master include/freetype/ftmm.h /^ } FT_Multi_Master;$/;" t typeref:struct:FT_Multi_Master_ +FT_Multi_Master_ android/freetype/include/freetype/ftmm.h /^ typedef struct FT_Multi_Master_$/;" s +FT_Multi_Master_ include/freetype/ftmm.h /^ typedef struct FT_Multi_Master_$/;" s +FT_NEED_EXTERN_C android/freetype/include/freetype/fterrors.h /^#define FT_NEED_EXTERN_C$/;" d +FT_NEED_EXTERN_C android/freetype/include/freetype/fterrors.h /^#undef FT_NEED_EXTERN_C$/;" d +FT_NEED_EXTERN_C android/freetype/include/freetype/fterrors.h /^#undef FT_NEED_EXTERN_C$/;" d +FT_NEED_EXTERN_C android/freetype/include/freetype/ftmoderr.h /^#define FT_NEED_EXTERN_C$/;" d +FT_NEED_EXTERN_C android/freetype/include/freetype/ftmoderr.h /^#undef FT_NEED_EXTERN_C$/;" d +FT_NEED_EXTERN_C android/freetype/include/freetype/ftmoderr.h /^#undef FT_NEED_EXTERN_C$/;" d +FT_NEED_EXTERN_C include/freetype/fterrors.h /^#define FT_NEED_EXTERN_C$/;" d +FT_NEED_EXTERN_C include/freetype/fterrors.h /^#undef FT_NEED_EXTERN_C$/;" d +FT_NEED_EXTERN_C include/freetype/fterrors.h /^#undef FT_NEED_EXTERN_C$/;" d +FT_NEED_EXTERN_C include/freetype/ftmoderr.h /^#define FT_NEED_EXTERN_C$/;" d +FT_NEED_EXTERN_C include/freetype/ftmoderr.h /^#undef FT_NEED_EXTERN_C$/;" d +FT_NEED_EXTERN_C include/freetype/ftmoderr.h /^#undef FT_NEED_EXTERN_C$/;" d +FT_NEW android/freetype/include/freetype/internal/ftmemory.h /^#define FT_NEW(/;" d +FT_NEW include/freetype/internal/ftmemory.h /^#define FT_NEW(/;" d +FT_NEW_ARRAY android/freetype/include/freetype/internal/ftmemory.h /^#define FT_NEW_ARRAY(/;" d +FT_NEW_ARRAY include/freetype/internal/ftmemory.h /^#define FT_NEW_ARRAY(/;" d +FT_NEXT_BYTE android/freetype/include/freetype/internal/ftstream.h /^#define FT_NEXT_BYTE(/;" d +FT_NEXT_BYTE include/freetype/internal/ftstream.h /^#define FT_NEXT_BYTE(/;" d +FT_NEXT_CHAR android/freetype/include/freetype/internal/ftstream.h /^#define FT_NEXT_CHAR(/;" d +FT_NEXT_CHAR include/freetype/internal/ftstream.h /^#define FT_NEXT_CHAR(/;" d +FT_NEXT_LONG android/freetype/include/freetype/internal/ftstream.h /^#define FT_NEXT_LONG(/;" d +FT_NEXT_LONG include/freetype/internal/ftstream.h /^#define FT_NEXT_LONG(/;" d +FT_NEXT_LONG_LE android/freetype/include/freetype/internal/ftstream.h /^#define FT_NEXT_LONG_LE(/;" d +FT_NEXT_LONG_LE include/freetype/internal/ftstream.h /^#define FT_NEXT_LONG_LE(/;" d +FT_NEXT_OFF3 android/freetype/include/freetype/internal/ftstream.h /^#define FT_NEXT_OFF3(/;" d +FT_NEXT_OFF3 include/freetype/internal/ftstream.h /^#define FT_NEXT_OFF3(/;" d +FT_NEXT_OFF3_LE android/freetype/include/freetype/internal/ftstream.h /^#define FT_NEXT_OFF3_LE(/;" d +FT_NEXT_OFF3_LE include/freetype/internal/ftstream.h /^#define FT_NEXT_OFF3_LE(/;" d +FT_NEXT_SHORT android/freetype/include/freetype/internal/ftstream.h /^#define FT_NEXT_SHORT(/;" d +FT_NEXT_SHORT include/freetype/internal/ftstream.h /^#define FT_NEXT_SHORT(/;" d +FT_NEXT_SHORT_LE android/freetype/include/freetype/internal/ftstream.h /^#define FT_NEXT_SHORT_LE(/;" d +FT_NEXT_SHORT_LE include/freetype/internal/ftstream.h /^#define FT_NEXT_SHORT_LE(/;" d +FT_NEXT_ULONG android/freetype/include/freetype/internal/ftstream.h /^#define FT_NEXT_ULONG(/;" d +FT_NEXT_ULONG include/freetype/internal/ftstream.h /^#define FT_NEXT_ULONG(/;" d +FT_NEXT_ULONG_LE android/freetype/include/freetype/internal/ftstream.h /^#define FT_NEXT_ULONG_LE(/;" d +FT_NEXT_ULONG_LE include/freetype/internal/ftstream.h /^#define FT_NEXT_ULONG_LE(/;" d +FT_NEXT_UOFF3 android/freetype/include/freetype/internal/ftstream.h /^#define FT_NEXT_UOFF3(/;" d +FT_NEXT_UOFF3 include/freetype/internal/ftstream.h /^#define FT_NEXT_UOFF3(/;" d +FT_NEXT_UOFF3_LE android/freetype/include/freetype/internal/ftstream.h /^#define FT_NEXT_UOFF3_LE(/;" d +FT_NEXT_UOFF3_LE include/freetype/internal/ftstream.h /^#define FT_NEXT_UOFF3_LE(/;" d +FT_NEXT_USHORT android/freetype/include/freetype/internal/ftstream.h /^#define FT_NEXT_USHORT(/;" d +FT_NEXT_USHORT include/freetype/internal/ftstream.h /^#define FT_NEXT_USHORT(/;" d +FT_NEXT_USHORT_LE android/freetype/include/freetype/internal/ftstream.h /^#define FT_NEXT_USHORT_LE(/;" d +FT_NEXT_USHORT_LE include/freetype/internal/ftstream.h /^#define FT_NEXT_USHORT_LE(/;" d +FT_NOERRORDEF_ android/freetype/include/freetype/fterrors.h /^#define FT_NOERRORDEF_(/;" d +FT_NOERRORDEF_ android/freetype/include/freetype/fterrors.h /^#undef FT_NOERRORDEF_$/;" d +FT_NOERRORDEF_ include/freetype/fterrors.h /^#define FT_NOERRORDEF_(/;" d +FT_NOERRORDEF_ include/freetype/fterrors.h /^#undef FT_NOERRORDEF_$/;" d +FT_NUM_MAC_NAMES android/freetype/src/psnames/pstables.h /^#define FT_NUM_MAC_NAMES /;" d +FT_NUM_SID_NAMES android/freetype/src/psnames/pstables.h /^#define FT_NUM_SID_NAMES /;" d +FT_New_Memory_Stream android/freetype/src/base/ftapi.c /^ FT_New_Memory_Stream( FT_Library library,$/;" f +FT_OPENTYPE_VALIDATE_H android/freetype/include/freetype/config/ftheader.h /^#define FT_OPENTYPE_VALIDATE_H /;" d +FT_OPENTYPE_VALIDATE_H include/freetype/config/ftheader.h /^#define FT_OPENTYPE_VALIDATE_H /;" d +FT_OPEN_DRIVER android/freetype/include/freetype/freetype.h /^#define FT_OPEN_DRIVER /;" d +FT_OPEN_DRIVER include/freetype/freetype.h /^#define FT_OPEN_DRIVER /;" d +FT_OPEN_MEMORY android/freetype/include/freetype/freetype.h /^#define FT_OPEN_MEMORY /;" d +FT_OPEN_MEMORY include/freetype/freetype.h /^#define FT_OPEN_MEMORY /;" d +FT_OPEN_PARAMS android/freetype/include/freetype/freetype.h /^#define FT_OPEN_PARAMS /;" d +FT_OPEN_PARAMS include/freetype/freetype.h /^#define FT_OPEN_PARAMS /;" d +FT_OPEN_PATHNAME android/freetype/include/freetype/freetype.h /^#define FT_OPEN_PATHNAME /;" d +FT_OPEN_PATHNAME include/freetype/freetype.h /^#define FT_OPEN_PATHNAME /;" d +FT_OPEN_STREAM android/freetype/include/freetype/freetype.h /^#define FT_OPEN_STREAM /;" d +FT_OPEN_STREAM include/freetype/freetype.h /^#define FT_OPEN_STREAM /;" d +FT_ORIENTATION_FILL_LEFT android/freetype/include/freetype/ftoutln.h /^ FT_ORIENTATION_FILL_LEFT = FT_ORIENTATION_POSTSCRIPT,$/;" e enum:FT_Orientation_ +FT_ORIENTATION_FILL_LEFT include/freetype/ftoutln.h /^ FT_ORIENTATION_FILL_LEFT = FT_ORIENTATION_POSTSCRIPT,$/;" e enum:FT_Orientation_ +FT_ORIENTATION_FILL_RIGHT android/freetype/include/freetype/ftoutln.h /^ FT_ORIENTATION_FILL_RIGHT = FT_ORIENTATION_TRUETYPE,$/;" e enum:FT_Orientation_ +FT_ORIENTATION_FILL_RIGHT include/freetype/ftoutln.h /^ FT_ORIENTATION_FILL_RIGHT = FT_ORIENTATION_TRUETYPE,$/;" e enum:FT_Orientation_ +FT_ORIENTATION_NONE android/freetype/include/freetype/ftoutln.h /^ FT_ORIENTATION_NONE$/;" e enum:FT_Orientation_ +FT_ORIENTATION_NONE include/freetype/ftoutln.h /^ FT_ORIENTATION_NONE$/;" e enum:FT_Orientation_ +FT_ORIENTATION_POSTSCRIPT android/freetype/include/freetype/ftoutln.h /^ FT_ORIENTATION_POSTSCRIPT = 1,$/;" e enum:FT_Orientation_ +FT_ORIENTATION_POSTSCRIPT include/freetype/ftoutln.h /^ FT_ORIENTATION_POSTSCRIPT = 1,$/;" e enum:FT_Orientation_ +FT_ORIENTATION_TRUETYPE android/freetype/include/freetype/ftoutln.h /^ FT_ORIENTATION_TRUETYPE = 0,$/;" e enum:FT_Orientation_ +FT_ORIENTATION_TRUETYPE include/freetype/ftoutln.h /^ FT_ORIENTATION_TRUETYPE = 0,$/;" e enum:FT_Orientation_ +FT_OUTLINE_CONTOURS_MAX include/freetype/ftimage.h /^#define FT_OUTLINE_CONTOURS_MAX /;" d +FT_OUTLINE_EVEN_ODD_FILL android/freetype/include/freetype/ftimage.h /^#define FT_OUTLINE_EVEN_ODD_FILL /;" d +FT_OUTLINE_EVEN_ODD_FILL include/freetype/ftimage.h /^#define FT_OUTLINE_EVEN_ODD_FILL /;" d +FT_OUTLINE_GLYPH android/freetype/include/freetype/internal/ftobjs.h /^#define FT_OUTLINE_GLYPH(/;" d +FT_OUTLINE_GLYPH include/freetype/internal/ftobjs.h /^#define FT_OUTLINE_GLYPH(/;" d +FT_OUTLINE_H android/freetype/include/freetype/config/ftheader.h /^#define FT_OUTLINE_H /;" d +FT_OUTLINE_H include/freetype/config/ftheader.h /^#define FT_OUTLINE_H /;" d +FT_OUTLINE_HIGH_PRECISION android/freetype/include/freetype/ftimage.h /^#define FT_OUTLINE_HIGH_PRECISION /;" d +FT_OUTLINE_HIGH_PRECISION include/freetype/ftimage.h /^#define FT_OUTLINE_HIGH_PRECISION /;" d +FT_OUTLINE_IGNORE_DROPOUTS android/freetype/include/freetype/ftimage.h /^#define FT_OUTLINE_IGNORE_DROPOUTS /;" d +FT_OUTLINE_IGNORE_DROPOUTS include/freetype/ftimage.h /^#define FT_OUTLINE_IGNORE_DROPOUTS /;" d +FT_OUTLINE_INCLUDE_STUBS include/freetype/ftimage.h /^#define FT_OUTLINE_INCLUDE_STUBS /;" d +FT_OUTLINE_NONE android/freetype/include/freetype/ftimage.h /^#define FT_OUTLINE_NONE /;" d +FT_OUTLINE_NONE include/freetype/ftimage.h /^#define FT_OUTLINE_NONE /;" d +FT_OUTLINE_OWNER android/freetype/include/freetype/ftimage.h /^#define FT_OUTLINE_OWNER /;" d +FT_OUTLINE_OWNER include/freetype/ftimage.h /^#define FT_OUTLINE_OWNER /;" d +FT_OUTLINE_POINTS_MAX include/freetype/ftimage.h /^#define FT_OUTLINE_POINTS_MAX /;" d +FT_OUTLINE_REVERSE_FILL android/freetype/include/freetype/ftimage.h /^#define FT_OUTLINE_REVERSE_FILL /;" d +FT_OUTLINE_REVERSE_FILL include/freetype/ftimage.h /^#define FT_OUTLINE_REVERSE_FILL /;" d +FT_OUTLINE_SINGLE_PASS android/freetype/include/freetype/ftimage.h /^#define FT_OUTLINE_SINGLE_PASS /;" d +FT_OUTLINE_SINGLE_PASS include/freetype/ftimage.h /^#define FT_OUTLINE_SINGLE_PASS /;" d +FT_OUTLINE_SMART_DROPOUTS include/freetype/ftimage.h /^#define FT_OUTLINE_SMART_DROPOUTS /;" d +FT_Offset android/freetype/include/freetype/fttypes.h /^ typedef size_t FT_Offset;$/;" t +FT_Offset include/freetype/fttypes.h /^ typedef size_t FT_Offset;$/;" t +FT_Open_Args android/freetype/include/freetype/freetype.h /^ } FT_Open_Args;$/;" t typeref:struct:FT_Open_Args_ +FT_Open_Args include/freetype/freetype.h /^ } FT_Open_Args;$/;" t typeref:struct:FT_Open_Args_ +FT_Open_Args_ android/freetype/include/freetype/freetype.h /^ typedef struct FT_Open_Args_$/;" s +FT_Open_Args_ include/freetype/freetype.h /^ typedef struct FT_Open_Args_$/;" s +FT_Orientation android/freetype/include/freetype/ftoutln.h /^ } FT_Orientation;$/;" t typeref:enum:FT_Orientation_ +FT_Orientation include/freetype/ftoutln.h /^ } FT_Orientation;$/;" t typeref:enum:FT_Orientation_ +FT_Orientation_ android/freetype/include/freetype/ftoutln.h /^ typedef enum FT_Orientation_$/;" g +FT_Orientation_ include/freetype/ftoutln.h /^ typedef enum FT_Orientation_$/;" g +FT_Outline android/freetype/include/freetype/ftimage.h /^ } FT_Outline;$/;" t typeref:struct:FT_Outline_ +FT_Outline include/freetype/ftimage.h /^ } FT_Outline;$/;" t typeref:struct:FT_Outline_ +FT_OutlineGlyph android/freetype/include/freetype/ftglyph.h /^ typedef struct FT_OutlineGlyphRec_* FT_OutlineGlyph;$/;" t typeref:struct:FT_OutlineGlyphRec_ +FT_OutlineGlyph include/freetype/ftglyph.h /^ typedef struct FT_OutlineGlyphRec_* FT_OutlineGlyph;$/;" t typeref:struct:FT_OutlineGlyphRec_ +FT_OutlineGlyphRec android/freetype/include/freetype/ftglyph.h /^ } FT_OutlineGlyphRec;$/;" t typeref:struct:FT_OutlineGlyphRec_ +FT_OutlineGlyphRec include/freetype/ftglyph.h /^ } FT_OutlineGlyphRec;$/;" t typeref:struct:FT_OutlineGlyphRec_ +FT_OutlineGlyphRec_ android/freetype/include/freetype/ftglyph.h /^ typedef struct FT_OutlineGlyphRec_$/;" s +FT_OutlineGlyphRec_ include/freetype/ftglyph.h /^ typedef struct FT_OutlineGlyphRec_$/;" s +FT_Outline_ android/freetype/include/freetype/ftimage.h /^ typedef struct FT_Outline_$/;" s +FT_Outline_ include/freetype/ftimage.h /^ typedef struct FT_Outline_$/;" s +FT_Outline_ConicToFunc android/freetype/include/freetype/ftimage.h /^ (*FT_Outline_ConicToFunc)( const FT_Vector* control,$/;" t +FT_Outline_ConicToFunc include/freetype/ftimage.h /^ (*FT_Outline_ConicToFunc)( const FT_Vector* control,$/;" t +FT_Outline_ConicTo_Func android/freetype/include/freetype/ftimage.h /^#define FT_Outline_ConicTo_Func /;" d +FT_Outline_ConicTo_Func include/freetype/ftimage.h /^#define FT_Outline_ConicTo_Func /;" d +FT_Outline_CubicToFunc android/freetype/include/freetype/ftimage.h /^ (*FT_Outline_CubicToFunc)( const FT_Vector* control1,$/;" t +FT_Outline_CubicToFunc include/freetype/ftimage.h /^ (*FT_Outline_CubicToFunc)( const FT_Vector* control1,$/;" t +FT_Outline_CubicTo_Func android/freetype/include/freetype/ftimage.h /^#define FT_Outline_CubicTo_Func /;" d +FT_Outline_CubicTo_Func include/freetype/ftimage.h /^#define FT_Outline_CubicTo_Func /;" d +FT_Outline_Decompose android/freetype/src/smooth/ftgrays.c /^ int FT_Outline_Decompose( const FT_Outline* outline,$/;" f file: +FT_Outline_Funcs android/freetype/include/freetype/ftimage.h /^ } FT_Outline_Funcs;$/;" t typeref:struct:FT_Outline_Funcs_ +FT_Outline_Funcs include/freetype/ftimage.h /^ } FT_Outline_Funcs;$/;" t typeref:struct:FT_Outline_Funcs_ +FT_Outline_Funcs_ android/freetype/include/freetype/ftimage.h /^ typedef struct FT_Outline_Funcs_$/;" s +FT_Outline_Funcs_ include/freetype/ftimage.h /^ typedef struct FT_Outline_Funcs_$/;" s +FT_Outline_Get_CBox android/freetype/src/base/ftoutln.c /^ FT_Outline_Get_CBox( const FT_Outline* outline,$/;" f +FT_Outline_LineToFunc android/freetype/include/freetype/ftimage.h /^ (*FT_Outline_LineToFunc)( const FT_Vector* to,$/;" t +FT_Outline_LineToFunc include/freetype/ftimage.h /^ (*FT_Outline_LineToFunc)( const FT_Vector* to,$/;" t +FT_Outline_LineTo_Func android/freetype/include/freetype/ftimage.h /^#define FT_Outline_LineTo_Func /;" d +FT_Outline_LineTo_Func include/freetype/ftimage.h /^#define FT_Outline_LineTo_Func /;" d +FT_Outline_MoveToFunc android/freetype/include/freetype/ftimage.h /^ (*FT_Outline_MoveToFunc)( const FT_Vector* to,$/;" t +FT_Outline_MoveToFunc include/freetype/ftimage.h /^ (*FT_Outline_MoveToFunc)( const FT_Vector* to,$/;" t +FT_Outline_MoveTo_Func android/freetype/include/freetype/ftimage.h /^#define FT_Outline_MoveTo_Func /;" d +FT_Outline_MoveTo_Func include/freetype/ftimage.h /^#define FT_Outline_MoveTo_Func /;" d +FT_Outline_Reverse android/freetype/src/base/ftoutln.c /^ FT_Outline_Reverse( FT_Outline* outline )$/;" f +FT_Outline_Transform android/freetype/src/base/ftoutln.c /^ FT_Outline_Transform( const FT_Outline* outline,$/;" f +FT_Outline_Translate android/freetype/src/base/ftoutln.c /^ FT_Outline_Translate( const FT_Outline* outline,$/;" f +FT_PAD_CEIL android/freetype/include/freetype/internal/ftobjs.h /^#define FT_PAD_CEIL(/;" d +FT_PAD_CEIL include/freetype/internal/ftobjs.h /^#define FT_PAD_CEIL(/;" d +FT_PAD_FLOOR android/freetype/include/freetype/internal/ftobjs.h /^#define FT_PAD_FLOOR(/;" d +FT_PAD_FLOOR include/freetype/internal/ftobjs.h /^#define FT_PAD_FLOOR(/;" d +FT_PAD_ROUND android/freetype/include/freetype/internal/ftobjs.h /^#define FT_PAD_ROUND(/;" d +FT_PAD_ROUND include/freetype/internal/ftobjs.h /^#define FT_PAD_ROUND(/;" d +FT_PARAM_TAG_IGNORE_PREFERRED_FAMILY include/freetype/ftsnames.h /^#define FT_PARAM_TAG_IGNORE_PREFERRED_FAMILY /;" d +FT_PARAM_TAG_IGNORE_PREFERRED_SUBFAMILY include/freetype/ftsnames.h /^#define FT_PARAM_TAG_IGNORE_PREFERRED_SUBFAMILY /;" d +FT_PARAM_TAG_INCREMENTAL android/freetype/include/freetype/ftincrem.h /^#define FT_PARAM_TAG_INCREMENTAL /;" d +FT_PARAM_TAG_INCREMENTAL include/freetype/ftincrem.h /^#define FT_PARAM_TAG_INCREMENTAL /;" d +FT_PARAM_TAG_UNPATENTED_HINTING android/freetype/include/freetype/ttunpat.h /^#define FT_PARAM_TAG_UNPATENTED_HINTING /;" d +FT_PARAM_TAG_UNPATENTED_HINTING include/freetype/ttunpat.h /^#define FT_PARAM_TAG_UNPATENTED_HINTING /;" d +FT_PEEK_LONG android/freetype/include/freetype/internal/ftstream.h /^#define FT_PEEK_LONG(/;" d +FT_PEEK_LONG include/freetype/internal/ftstream.h /^#define FT_PEEK_LONG(/;" d +FT_PEEK_LONG_LE android/freetype/include/freetype/internal/ftstream.h /^#define FT_PEEK_LONG_LE(/;" d +FT_PEEK_LONG_LE include/freetype/internal/ftstream.h /^#define FT_PEEK_LONG_LE(/;" d +FT_PEEK_OFF3 android/freetype/include/freetype/internal/ftstream.h /^#define FT_PEEK_OFF3(/;" d +FT_PEEK_OFF3 include/freetype/internal/ftstream.h /^#define FT_PEEK_OFF3(/;" d +FT_PEEK_OFF3_LE android/freetype/include/freetype/internal/ftstream.h /^#define FT_PEEK_OFF3_LE(/;" d +FT_PEEK_OFF3_LE include/freetype/internal/ftstream.h /^#define FT_PEEK_OFF3_LE(/;" d +FT_PEEK_SHORT android/freetype/include/freetype/internal/ftstream.h /^#define FT_PEEK_SHORT(/;" d +FT_PEEK_SHORT include/freetype/internal/ftstream.h /^#define FT_PEEK_SHORT(/;" d +FT_PEEK_SHORT_LE android/freetype/include/freetype/internal/ftstream.h /^#define FT_PEEK_SHORT_LE(/;" d +FT_PEEK_SHORT_LE include/freetype/internal/ftstream.h /^#define FT_PEEK_SHORT_LE(/;" d +FT_PEEK_ULONG android/freetype/include/freetype/internal/ftstream.h /^#define FT_PEEK_ULONG(/;" d +FT_PEEK_ULONG include/freetype/internal/ftstream.h /^#define FT_PEEK_ULONG(/;" d +FT_PEEK_ULONG_LE android/freetype/include/freetype/internal/ftstream.h /^#define FT_PEEK_ULONG_LE(/;" d +FT_PEEK_ULONG_LE include/freetype/internal/ftstream.h /^#define FT_PEEK_ULONG_LE(/;" d +FT_PEEK_UOFF3 android/freetype/include/freetype/internal/ftstream.h /^#define FT_PEEK_UOFF3(/;" d +FT_PEEK_UOFF3 include/freetype/internal/ftstream.h /^#define FT_PEEK_UOFF3(/;" d +FT_PEEK_UOFF3_LE android/freetype/include/freetype/internal/ftstream.h /^#define FT_PEEK_UOFF3_LE(/;" d +FT_PEEK_UOFF3_LE include/freetype/internal/ftstream.h /^#define FT_PEEK_UOFF3_LE(/;" d +FT_PEEK_USHORT android/freetype/include/freetype/internal/ftstream.h /^#define FT_PEEK_USHORT(/;" d +FT_PEEK_USHORT include/freetype/internal/ftstream.h /^#define FT_PEEK_USHORT(/;" d +FT_PEEK_USHORT_LE android/freetype/include/freetype/internal/ftstream.h /^#define FT_PEEK_USHORT_LE(/;" d +FT_PEEK_USHORT_LE include/freetype/internal/ftstream.h /^#define FT_PEEK_USHORT_LE(/;" d +FT_PFR_GetAdvanceFunc android/freetype/include/freetype/internal/services/svpfr.h /^ (*FT_PFR_GetAdvanceFunc)( FT_Face face,$/;" t +FT_PFR_GetAdvanceFunc include/freetype/internal/services/svpfr.h /^ (*FT_PFR_GetAdvanceFunc)( FT_Face face,$/;" t +FT_PFR_GetKerningFunc android/freetype/include/freetype/internal/services/svpfr.h /^ (*FT_PFR_GetKerningFunc)( FT_Face face,$/;" t +FT_PFR_GetKerningFunc include/freetype/internal/services/svpfr.h /^ (*FT_PFR_GetKerningFunc)( FT_Face face,$/;" t +FT_PFR_GetMetricsFunc android/freetype/include/freetype/internal/services/svpfr.h /^ (*FT_PFR_GetMetricsFunc)( FT_Face face,$/;" t +FT_PFR_GetMetricsFunc include/freetype/internal/services/svpfr.h /^ (*FT_PFR_GetMetricsFunc)( FT_Face face,$/;" t +FT_PFR_H android/freetype/include/freetype/config/ftheader.h /^#define FT_PFR_H /;" d +FT_PFR_H include/freetype/config/ftheader.h /^#define FT_PFR_H /;" d +FT_PIC_Container include/freetype/internal/ftpic.h /^ } FT_PIC_Container;$/;" t typeref:struct:FT_PIC_Container_ +FT_PIC_Container_ include/freetype/internal/ftpic.h /^ typedef struct FT_PIC_Container_$/;" s +FT_PIXEL_MODE_GRAY android/freetype/include/freetype/ftimage.h /^ FT_PIXEL_MODE_GRAY,$/;" e enum:FT_Pixel_Mode_ +FT_PIXEL_MODE_GRAY include/freetype/ftimage.h /^ FT_PIXEL_MODE_GRAY,$/;" e enum:FT_Pixel_Mode_ +FT_PIXEL_MODE_GRAY2 android/freetype/include/freetype/ftimage.h /^ FT_PIXEL_MODE_GRAY2,$/;" e enum:FT_Pixel_Mode_ +FT_PIXEL_MODE_GRAY2 include/freetype/ftimage.h /^ FT_PIXEL_MODE_GRAY2,$/;" e enum:FT_Pixel_Mode_ +FT_PIXEL_MODE_GRAY4 android/freetype/include/freetype/ftimage.h /^ FT_PIXEL_MODE_GRAY4,$/;" e enum:FT_Pixel_Mode_ +FT_PIXEL_MODE_GRAY4 include/freetype/ftimage.h /^ FT_PIXEL_MODE_GRAY4,$/;" e enum:FT_Pixel_Mode_ +FT_PIXEL_MODE_LCD android/freetype/include/freetype/ftimage.h /^ FT_PIXEL_MODE_LCD,$/;" e enum:FT_Pixel_Mode_ +FT_PIXEL_MODE_LCD include/freetype/ftimage.h /^ FT_PIXEL_MODE_LCD,$/;" e enum:FT_Pixel_Mode_ +FT_PIXEL_MODE_LCD_V android/freetype/include/freetype/ftimage.h /^ FT_PIXEL_MODE_LCD_V,$/;" e enum:FT_Pixel_Mode_ +FT_PIXEL_MODE_LCD_V include/freetype/ftimage.h /^ FT_PIXEL_MODE_LCD_V,$/;" e enum:FT_Pixel_Mode_ +FT_PIXEL_MODE_MAX android/freetype/include/freetype/ftimage.h /^ FT_PIXEL_MODE_MAX \/* do not remove *\/$/;" e enum:FT_Pixel_Mode_ +FT_PIXEL_MODE_MAX include/freetype/ftimage.h /^ FT_PIXEL_MODE_MAX \/* do not remove *\/$/;" e enum:FT_Pixel_Mode_ +FT_PIXEL_MODE_MONO android/freetype/include/freetype/ftimage.h /^ FT_PIXEL_MODE_MONO,$/;" e enum:FT_Pixel_Mode_ +FT_PIXEL_MODE_MONO include/freetype/ftimage.h /^ FT_PIXEL_MODE_MONO,$/;" e enum:FT_Pixel_Mode_ +FT_PIXEL_MODE_NONE android/freetype/include/freetype/ftimage.h /^ FT_PIXEL_MODE_NONE = 0,$/;" e enum:FT_Pixel_Mode_ +FT_PIXEL_MODE_NONE include/freetype/ftimage.h /^ FT_PIXEL_MODE_NONE = 0,$/;" e enum:FT_Pixel_Mode_ +FT_PIX_CEIL android/freetype/include/freetype/internal/ftobjs.h /^#define FT_PIX_CEIL(/;" d +FT_PIX_CEIL include/freetype/internal/ftobjs.h /^#define FT_PIX_CEIL(/;" d +FT_PIX_FLOOR android/freetype/include/freetype/internal/ftobjs.h /^#define FT_PIX_FLOOR(/;" d +FT_PIX_FLOOR include/freetype/internal/ftobjs.h /^#define FT_PIX_FLOOR(/;" d +FT_PIX_ROUND android/freetype/include/freetype/internal/ftobjs.h /^#define FT_PIX_ROUND(/;" d +FT_PIX_ROUND include/freetype/internal/ftobjs.h /^#define FT_PIX_ROUND(/;" d +FT_POINTER_TO_ULONG android/freetype/include/freetype/ftcache.h /^#define FT_POINTER_TO_ULONG(/;" d +FT_POINTER_TO_ULONG include/freetype/ftcache.h /^#define FT_POINTER_TO_ULONG(/;" d +FT_Panic android/freetype/src/base/ftdebug.c /^ FT_Panic( const char* fmt, ... )$/;" f +FT_Parameter android/freetype/include/freetype/freetype.h /^ } FT_Parameter;$/;" t typeref:struct:FT_Parameter_ +FT_Parameter include/freetype/freetype.h /^ } FT_Parameter;$/;" t typeref:struct:FT_Parameter_ +FT_Parameter_ android/freetype/include/freetype/freetype.h /^ typedef struct FT_Parameter_$/;" s +FT_Parameter_ include/freetype/freetype.h /^ typedef struct FT_Parameter_$/;" s +FT_Pixel_Mode android/freetype/include/freetype/ftimage.h /^ } FT_Pixel_Mode;$/;" t typeref:enum:FT_Pixel_Mode_ +FT_Pixel_Mode include/freetype/ftimage.h /^ } FT_Pixel_Mode;$/;" t typeref:enum:FT_Pixel_Mode_ +FT_Pixel_Mode_ android/freetype/include/freetype/ftimage.h /^ typedef enum FT_Pixel_Mode_$/;" g +FT_Pixel_Mode_ include/freetype/ftimage.h /^ typedef enum FT_Pixel_Mode_$/;" g +FT_Pointer android/freetype/include/freetype/fttypes.h /^ typedef void* FT_Pointer;$/;" t +FT_Pointer include/freetype/fttypes.h /^ typedef void* FT_Pointer;$/;" t +FT_Pos android/freetype/include/freetype/ftimage.h /^ typedef signed long FT_Pos;$/;" t +FT_Pos include/freetype/ftimage.h /^ typedef signed long FT_Pos;$/;" t +FT_PsName_GetFunc android/freetype/include/freetype/internal/services/svpostnm.h /^ (*FT_PsName_GetFunc)( FT_Face face );$/;" t +FT_PsName_GetFunc include/freetype/internal/services/svpostnm.h /^ (*FT_PsName_GetFunc)( FT_Face face );$/;" t +FT_PtrDist android/freetype/include/freetype/fttypes.h /^ typedef ft_ptrdiff_t FT_PtrDist;$/;" t +FT_PtrDist include/freetype/fttypes.h /^ typedef ft_ptrdiff_t FT_PtrDist;$/;" t +FT_QALLOC android/freetype/include/freetype/internal/ftmemory.h /^#define FT_QALLOC(/;" d +FT_QALLOC include/freetype/internal/ftmemory.h /^#define FT_QALLOC(/;" d +FT_QALLOC_MULT android/freetype/include/freetype/internal/ftmemory.h /^#define FT_QALLOC_MULT(/;" d +FT_QALLOC_MULT include/freetype/internal/ftmemory.h /^#define FT_QALLOC_MULT(/;" d +FT_QNEW android/freetype/include/freetype/internal/ftmemory.h /^#define FT_QNEW(/;" d +FT_QNEW include/freetype/internal/ftmemory.h /^#define FT_QNEW(/;" d +FT_QNEW_ARRAY android/freetype/include/freetype/internal/ftmemory.h /^#define FT_QNEW_ARRAY(/;" d +FT_QNEW_ARRAY include/freetype/internal/ftmemory.h /^#define FT_QNEW_ARRAY(/;" d +FT_QREALLOC android/freetype/include/freetype/internal/ftmemory.h /^#define FT_QREALLOC(/;" d +FT_QREALLOC include/freetype/internal/ftmemory.h /^#define FT_QREALLOC(/;" d +FT_QREALLOC_MULT android/freetype/include/freetype/internal/ftmemory.h /^#define FT_QREALLOC_MULT(/;" d +FT_QREALLOC_MULT include/freetype/internal/ftmemory.h /^#define FT_QREALLOC_MULT(/;" d +FT_QRENEW_ARRAY android/freetype/include/freetype/internal/ftmemory.h /^#define FT_QRENEW_ARRAY(/;" d +FT_QRENEW_ARRAY include/freetype/internal/ftmemory.h /^#define FT_QRENEW_ARRAY(/;" d +FT_RACCESS_N_RULES android/freetype/include/freetype/internal/ftrfork.h /^#define FT_RACCESS_N_RULES /;" d +FT_RACCESS_N_RULES include/freetype/internal/ftrfork.h /^#define FT_RACCESS_N_RULES /;" d +FT_RASTER_FLAG_AA android/freetype/include/freetype/ftimage.h /^#define FT_RASTER_FLAG_AA /;" d +FT_RASTER_FLAG_AA include/freetype/ftimage.h /^#define FT_RASTER_FLAG_AA /;" d +FT_RASTER_FLAG_CLIP android/freetype/include/freetype/ftimage.h /^#define FT_RASTER_FLAG_CLIP /;" d +FT_RASTER_FLAG_CLIP include/freetype/ftimage.h /^#define FT_RASTER_FLAG_CLIP /;" d +FT_RASTER_FLAG_DEFAULT android/freetype/include/freetype/ftimage.h /^#define FT_RASTER_FLAG_DEFAULT /;" d +FT_RASTER_FLAG_DEFAULT include/freetype/ftimage.h /^#define FT_RASTER_FLAG_DEFAULT /;" d +FT_RASTER_FLAG_DIRECT android/freetype/include/freetype/ftimage.h /^#define FT_RASTER_FLAG_DIRECT /;" d +FT_RASTER_FLAG_DIRECT include/freetype/ftimage.h /^#define FT_RASTER_FLAG_DIRECT /;" d +FT_RASTER_OPTION_ANTI_ALIASING android/freetype/src/raster/ftraster.c /^#undef FT_RASTER_OPTION_ANTI_ALIASING$/;" d file: +FT_READ_BYTE android/freetype/include/freetype/internal/ftstream.h /^#define FT_READ_BYTE(/;" d +FT_READ_BYTE include/freetype/internal/ftstream.h /^#define FT_READ_BYTE(/;" d +FT_READ_CHAR android/freetype/include/freetype/internal/ftstream.h /^#define FT_READ_CHAR(/;" d +FT_READ_CHAR include/freetype/internal/ftstream.h /^#define FT_READ_CHAR(/;" d +FT_READ_LONG android/freetype/include/freetype/internal/ftstream.h /^#define FT_READ_LONG(/;" d +FT_READ_LONG include/freetype/internal/ftstream.h /^#define FT_READ_LONG(/;" d +FT_READ_LONG_LE android/freetype/include/freetype/internal/ftstream.h /^#define FT_READ_LONG_LE(/;" d +FT_READ_LONG_LE include/freetype/internal/ftstream.h /^#define FT_READ_LONG_LE(/;" d +FT_READ_MACRO android/freetype/include/freetype/internal/ftstream.h /^#define FT_READ_MACRO(/;" d +FT_READ_MACRO include/freetype/internal/ftstream.h /^#define FT_READ_MACRO(/;" d +FT_READ_OFF3 android/freetype/include/freetype/internal/ftstream.h /^#define FT_READ_OFF3(/;" d +FT_READ_OFF3 include/freetype/internal/ftstream.h /^#define FT_READ_OFF3(/;" d +FT_READ_SHORT android/freetype/include/freetype/internal/ftstream.h /^#define FT_READ_SHORT(/;" d +FT_READ_SHORT include/freetype/internal/ftstream.h /^#define FT_READ_SHORT(/;" d +FT_READ_SHORT_LE android/freetype/include/freetype/internal/ftstream.h /^#define FT_READ_SHORT_LE(/;" d +FT_READ_SHORT_LE include/freetype/internal/ftstream.h /^#define FT_READ_SHORT_LE(/;" d +FT_READ_ULONG android/freetype/include/freetype/internal/ftstream.h /^#define FT_READ_ULONG(/;" d +FT_READ_ULONG include/freetype/internal/ftstream.h /^#define FT_READ_ULONG(/;" d +FT_READ_ULONG_LE android/freetype/include/freetype/internal/ftstream.h /^#define FT_READ_ULONG_LE(/;" d +FT_READ_ULONG_LE include/freetype/internal/ftstream.h /^#define FT_READ_ULONG_LE(/;" d +FT_READ_UOFF3 android/freetype/include/freetype/internal/ftstream.h /^#define FT_READ_UOFF3(/;" d +FT_READ_UOFF3 include/freetype/internal/ftstream.h /^#define FT_READ_UOFF3(/;" d +FT_READ_USHORT android/freetype/include/freetype/internal/ftstream.h /^#define FT_READ_USHORT(/;" d +FT_READ_USHORT include/freetype/internal/ftstream.h /^#define FT_READ_USHORT(/;" d +FT_READ_USHORT_LE android/freetype/include/freetype/internal/ftstream.h /^#define FT_READ_USHORT_LE(/;" d +FT_READ_USHORT_LE include/freetype/internal/ftstream.h /^#define FT_READ_USHORT_LE(/;" d +FT_REALLOC android/freetype/include/freetype/internal/ftmemory.h /^#define FT_REALLOC(/;" d +FT_REALLOC include/freetype/internal/ftmemory.h /^#define FT_REALLOC(/;" d +FT_REALLOC_MULT android/freetype/include/freetype/internal/ftmemory.h /^#define FT_REALLOC_MULT(/;" d +FT_REALLOC_MULT include/freetype/internal/ftmemory.h /^#define FT_REALLOC_MULT(/;" d +FT_RENDERER android/freetype/include/freetype/internal/ftobjs.h /^#define FT_RENDERER(/;" d +FT_RENDERER include/freetype/internal/ftobjs.h /^#define FT_RENDERER(/;" d +FT_RENDER_H android/freetype/include/freetype/config/ftheader.h /^#define FT_RENDER_H /;" d +FT_RENDER_H include/freetype/config/ftheader.h /^#define FT_RENDER_H /;" d +FT_RENDER_MODE_LCD android/freetype/include/freetype/freetype.h /^ FT_RENDER_MODE_LCD,$/;" e enum:FT_Render_Mode_ +FT_RENDER_MODE_LCD include/freetype/freetype.h /^ FT_RENDER_MODE_LCD,$/;" e enum:FT_Render_Mode_ +FT_RENDER_MODE_LCD_V android/freetype/include/freetype/freetype.h /^ FT_RENDER_MODE_LCD_V,$/;" e enum:FT_Render_Mode_ +FT_RENDER_MODE_LCD_V include/freetype/freetype.h /^ FT_RENDER_MODE_LCD_V,$/;" e enum:FT_Render_Mode_ +FT_RENDER_MODE_LIGHT android/freetype/include/freetype/freetype.h /^ FT_RENDER_MODE_LIGHT,$/;" e enum:FT_Render_Mode_ +FT_RENDER_MODE_LIGHT include/freetype/freetype.h /^ FT_RENDER_MODE_LIGHT,$/;" e enum:FT_Render_Mode_ +FT_RENDER_MODE_MAX android/freetype/include/freetype/freetype.h /^ FT_RENDER_MODE_MAX$/;" e enum:FT_Render_Mode_ +FT_RENDER_MODE_MAX include/freetype/freetype.h /^ FT_RENDER_MODE_MAX$/;" e enum:FT_Render_Mode_ +FT_RENDER_MODE_MONO android/freetype/include/freetype/freetype.h /^ FT_RENDER_MODE_MONO,$/;" e enum:FT_Render_Mode_ +FT_RENDER_MODE_MONO include/freetype/freetype.h /^ FT_RENDER_MODE_MONO,$/;" e enum:FT_Render_Mode_ +FT_RENDER_MODE_NORMAL android/freetype/include/freetype/freetype.h /^ FT_RENDER_MODE_NORMAL = 0,$/;" e enum:FT_Render_Mode_ +FT_RENDER_MODE_NORMAL include/freetype/freetype.h /^ FT_RENDER_MODE_NORMAL = 0,$/;" e enum:FT_Render_Mode_ +FT_RENDER_POOL_SIZE android/freetype/include/freetype/config/ftoption.h /^#define FT_RENDER_POOL_SIZE /;" d +FT_RENDER_POOL_SIZE include/freetype/config/ftoption.h /^#define FT_RENDER_POOL_SIZE /;" d +FT_RENEW_ARRAY android/freetype/include/freetype/internal/ftmemory.h /^#define FT_RENEW_ARRAY(/;" d +FT_RENEW_ARRAY include/freetype/internal/ftmemory.h /^#define FT_RENEW_ARRAY(/;" d +FT_REQUEST_HEIGHT android/freetype/include/freetype/internal/ftobjs.h /^#define FT_REQUEST_HEIGHT(/;" d +FT_REQUEST_HEIGHT include/freetype/internal/ftobjs.h /^#define FT_REQUEST_HEIGHT(/;" d +FT_REQUEST_WIDTH android/freetype/include/freetype/internal/ftobjs.h /^#define FT_REQUEST_WIDTH(/;" d +FT_REQUEST_WIDTH include/freetype/internal/ftobjs.h /^#define FT_REQUEST_WIDTH(/;" d +FT_RFork_Ref android/freetype/include/freetype/internal/ftrfork.h /^ } FT_RFork_Ref;$/;" t typeref:struct:FT_RFork_Ref_ +FT_RFork_Ref include/freetype/internal/ftrfork.h /^ } FT_RFork_Ref;$/;" t typeref:struct:FT_RFork_Ref_ +FT_RFork_Ref_ android/freetype/include/freetype/internal/ftrfork.h /^ typedef struct FT_RFork_Ref_$/;" s +FT_RFork_Ref_ include/freetype/internal/ftrfork.h /^ typedef struct FT_RFork_Ref_$/;" s +FT_Raccess_Guess android/freetype/src/base/ftrfork.c /^ FT_Raccess_Guess( FT_Library library,$/;" f +FT_Raster android/freetype/include/freetype/ftimage.h /^ typedef struct FT_RasterRec_* FT_Raster;$/;" t typeref:struct:FT_RasterRec_ +FT_Raster include/freetype/ftimage.h /^ typedef struct FT_RasterRec_* FT_Raster;$/;" t typeref:struct:FT_RasterRec_ +FT_Raster_BitSet_Func android/freetype/include/freetype/ftimage.h /^ (*FT_Raster_BitSet_Func)( int y,$/;" t +FT_Raster_BitSet_Func include/freetype/ftimage.h /^ (*FT_Raster_BitSet_Func)( int y,$/;" t +FT_Raster_BitTest_Func android/freetype/include/freetype/ftimage.h /^ (*FT_Raster_BitTest_Func)( int y,$/;" t +FT_Raster_BitTest_Func include/freetype/ftimage.h /^ (*FT_Raster_BitTest_Func)( int y,$/;" t +FT_Raster_DoneFunc android/freetype/include/freetype/ftimage.h /^ (*FT_Raster_DoneFunc)( FT_Raster raster );$/;" t +FT_Raster_DoneFunc include/freetype/ftimage.h /^ (*FT_Raster_DoneFunc)( FT_Raster raster );$/;" t +FT_Raster_Done_Func android/freetype/include/freetype/ftimage.h /^#define FT_Raster_Done_Func /;" d +FT_Raster_Done_Func include/freetype/ftimage.h /^#define FT_Raster_Done_Func /;" d +FT_Raster_Funcs android/freetype/include/freetype/ftimage.h /^ } FT_Raster_Funcs;$/;" t typeref:struct:FT_Raster_Funcs_ +FT_Raster_Funcs include/freetype/ftimage.h /^ } FT_Raster_Funcs;$/;" t typeref:struct:FT_Raster_Funcs_ +FT_Raster_Funcs_ android/freetype/include/freetype/ftimage.h /^ typedef struct FT_Raster_Funcs_$/;" s +FT_Raster_Funcs_ include/freetype/ftimage.h /^ typedef struct FT_Raster_Funcs_$/;" s +FT_Raster_NewFunc android/freetype/include/freetype/ftimage.h /^ (*FT_Raster_NewFunc)( void* memory,$/;" t +FT_Raster_NewFunc include/freetype/ftimage.h /^ (*FT_Raster_NewFunc)( void* memory,$/;" t +FT_Raster_New_Func android/freetype/include/freetype/ftimage.h /^#define FT_Raster_New_Func /;" d +FT_Raster_New_Func include/freetype/ftimage.h /^#define FT_Raster_New_Func /;" d +FT_Raster_Params android/freetype/include/freetype/ftimage.h /^ } FT_Raster_Params;$/;" t typeref:struct:FT_Raster_Params_ +FT_Raster_Params include/freetype/ftimage.h /^ } FT_Raster_Params;$/;" t typeref:struct:FT_Raster_Params_ +FT_Raster_Params_ android/freetype/include/freetype/ftimage.h /^ typedef struct FT_Raster_Params_$/;" s +FT_Raster_Params_ include/freetype/ftimage.h /^ typedef struct FT_Raster_Params_$/;" s +FT_Raster_RenderFunc android/freetype/include/freetype/ftimage.h /^ (*FT_Raster_RenderFunc)( FT_Raster raster,$/;" t +FT_Raster_RenderFunc include/freetype/ftimage.h /^ (*FT_Raster_RenderFunc)( FT_Raster raster,$/;" t +FT_Raster_Render_Func android/freetype/include/freetype/ftimage.h /^#define FT_Raster_Render_Func /;" d +FT_Raster_Render_Func include/freetype/ftimage.h /^#define FT_Raster_Render_Func /;" d +FT_Raster_ResetFunc android/freetype/include/freetype/ftimage.h /^ (*FT_Raster_ResetFunc)( FT_Raster raster,$/;" t +FT_Raster_ResetFunc include/freetype/ftimage.h /^ (*FT_Raster_ResetFunc)( FT_Raster raster,$/;" t +FT_Raster_Reset_Func android/freetype/include/freetype/ftimage.h /^#define FT_Raster_Reset_Func /;" d +FT_Raster_Reset_Func include/freetype/ftimage.h /^#define FT_Raster_Reset_Func /;" d +FT_Raster_SetModeFunc android/freetype/include/freetype/ftimage.h /^ (*FT_Raster_SetModeFunc)( FT_Raster raster,$/;" t +FT_Raster_SetModeFunc include/freetype/ftimage.h /^ (*FT_Raster_SetModeFunc)( FT_Raster raster,$/;" t +FT_Raster_Set_Mode_Func android/freetype/include/freetype/ftimage.h /^#define FT_Raster_Set_Mode_Func /;" d +FT_Raster_Set_Mode_Func include/freetype/ftimage.h /^#define FT_Raster_Set_Mode_Func /;" d +FT_Raster_Span_Func android/freetype/include/freetype/ftimage.h /^#define FT_Raster_Span_Func /;" d +FT_Raster_Span_Func include/freetype/ftimage.h /^#define FT_Raster_Span_Func /;" d +FT_Realloc_Func android/freetype/include/freetype/ftsystem.h /^ (*FT_Realloc_Func)( FT_Memory memory,$/;" t +FT_Realloc_Func include/freetype/ftsystem.h /^ (*FT_Realloc_Func)( FT_Memory memory,$/;" t +FT_Release_Frame android/freetype/src/base/ftapi.c /^ FT_Release_Frame( FT_Stream stream,$/;" f +FT_Render_Mode android/freetype/include/freetype/freetype.h /^ } FT_Render_Mode;$/;" t typeref:enum:FT_Render_Mode_ +FT_Render_Mode include/freetype/freetype.h /^ } FT_Render_Mode;$/;" t typeref:enum:FT_Render_Mode_ +FT_Render_Mode_ android/freetype/include/freetype/freetype.h /^ typedef enum FT_Render_Mode_$/;" g +FT_Render_Mode_ include/freetype/freetype.h /^ typedef enum FT_Render_Mode_$/;" g +FT_Renderer android/freetype/include/freetype/freetype.h /^ typedef struct FT_RendererRec_* FT_Renderer;$/;" t typeref:struct:FT_RendererRec_ +FT_Renderer include/freetype/freetype.h /^ typedef struct FT_RendererRec_* FT_Renderer;$/;" t typeref:struct:FT_RendererRec_ +FT_RendererRec android/freetype/include/freetype/internal/ftobjs.h /^ } FT_RendererRec;$/;" t typeref:struct:FT_RendererRec_ +FT_RendererRec include/freetype/internal/ftobjs.h /^ } FT_RendererRec;$/;" t typeref:struct:FT_RendererRec_ +FT_RendererRec_ android/freetype/include/freetype/internal/ftobjs.h /^ typedef struct FT_RendererRec_$/;" s +FT_RendererRec_ include/freetype/internal/ftobjs.h /^ typedef struct FT_RendererRec_$/;" s +FT_Renderer_Class android/freetype/include/freetype/ftrender.h /^ } FT_Renderer_Class;$/;" t typeref:struct:FT_Renderer_Class_ +FT_Renderer_Class include/freetype/ftrender.h /^ } FT_Renderer_Class;$/;" t typeref:struct:FT_Renderer_Class_ +FT_Renderer_Class_ android/freetype/include/freetype/ftrender.h /^ typedef struct FT_Renderer_Class_$/;" s +FT_Renderer_Class_ include/freetype/ftrender.h /^ typedef struct FT_Renderer_Class_$/;" s +FT_Renderer_GetCBoxFunc android/freetype/include/freetype/ftrender.h /^ (*FT_Renderer_GetCBoxFunc)( FT_Renderer renderer,$/;" t +FT_Renderer_GetCBoxFunc include/freetype/ftrender.h /^ (*FT_Renderer_GetCBoxFunc)( FT_Renderer renderer,$/;" t +FT_Renderer_RenderFunc android/freetype/include/freetype/ftrender.h /^ (*FT_Renderer_RenderFunc)( FT_Renderer renderer,$/;" t +FT_Renderer_RenderFunc include/freetype/ftrender.h /^ (*FT_Renderer_RenderFunc)( FT_Renderer renderer,$/;" t +FT_Renderer_SetModeFunc android/freetype/include/freetype/ftrender.h /^ (*FT_Renderer_SetModeFunc)( FT_Renderer renderer,$/;" t +FT_Renderer_SetModeFunc include/freetype/ftrender.h /^ (*FT_Renderer_SetModeFunc)( FT_Renderer renderer,$/;" t +FT_Renderer_TransformFunc android/freetype/include/freetype/ftrender.h /^ (*FT_Renderer_TransformFunc)( FT_Renderer renderer,$/;" t +FT_Renderer_TransformFunc include/freetype/ftrender.h /^ (*FT_Renderer_TransformFunc)( FT_Renderer renderer,$/;" t +FT_Request_Metrics android/freetype/src/base/ftobjs.c /^ FT_Request_Metrics( FT_Face face,$/;" f +FT_SERVICE_BDF_H android/freetype/include/freetype/internal/ftserv.h /^#define FT_SERVICE_BDF_H /;" d +FT_SERVICE_BDF_H include/freetype/internal/ftserv.h /^#define FT_SERVICE_BDF_H /;" d +FT_SERVICE_CID_H android/freetype/include/freetype/internal/ftserv.h /^#define FT_SERVICE_CID_H /;" d +FT_SERVICE_CID_H include/freetype/internal/ftserv.h /^#define FT_SERVICE_CID_H /;" d +FT_SERVICE_GLYPH_DICT_H android/freetype/include/freetype/internal/ftserv.h /^#define FT_SERVICE_GLYPH_DICT_H /;" d +FT_SERVICE_GLYPH_DICT_H include/freetype/internal/ftserv.h /^#define FT_SERVICE_GLYPH_DICT_H /;" d +FT_SERVICE_GX_VALIDATE_H android/freetype/include/freetype/internal/ftserv.h /^#define FT_SERVICE_GX_VALIDATE_H /;" d +FT_SERVICE_GX_VALIDATE_H include/freetype/internal/ftserv.h /^#define FT_SERVICE_GX_VALIDATE_H /;" d +FT_SERVICE_ID_BDF android/freetype/include/freetype/internal/services/svbdf.h /^#define FT_SERVICE_ID_BDF /;" d +FT_SERVICE_ID_BDF include/freetype/internal/services/svbdf.h /^#define FT_SERVICE_ID_BDF /;" d +FT_SERVICE_ID_CID android/freetype/include/freetype/internal/services/svcid.h /^#define FT_SERVICE_ID_CID /;" d +FT_SERVICE_ID_CID include/freetype/internal/services/svcid.h /^#define FT_SERVICE_ID_CID /;" d +FT_SERVICE_ID_CLASSICKERN_VALIDATE android/freetype/include/freetype/internal/services/svgxval.h /^#define FT_SERVICE_ID_CLASSICKERN_VALIDATE /;" d +FT_SERVICE_ID_CLASSICKERN_VALIDATE include/freetype/internal/services/svgxval.h /^#define FT_SERVICE_ID_CLASSICKERN_VALIDATE /;" d +FT_SERVICE_ID_GLYPH_DICT android/freetype/include/freetype/internal/services/svgldict.h /^#define FT_SERVICE_ID_GLYPH_DICT /;" d +FT_SERVICE_ID_GLYPH_DICT include/freetype/internal/services/svgldict.h /^#define FT_SERVICE_ID_GLYPH_DICT /;" d +FT_SERVICE_ID_GX_VALIDATE android/freetype/include/freetype/internal/services/svgxval.h /^#define FT_SERVICE_ID_GX_VALIDATE /;" d +FT_SERVICE_ID_GX_VALIDATE include/freetype/internal/services/svgxval.h /^#define FT_SERVICE_ID_GX_VALIDATE /;" d +FT_SERVICE_ID_KERNING android/freetype/include/freetype/internal/services/svkern.h /^#define FT_SERVICE_ID_KERNING /;" d +FT_SERVICE_ID_KERNING include/freetype/internal/services/svkern.h /^#define FT_SERVICE_ID_KERNING /;" d +FT_SERVICE_ID_MULTI_MASTERS android/freetype/include/freetype/internal/services/svmm.h /^#define FT_SERVICE_ID_MULTI_MASTERS /;" d +FT_SERVICE_ID_MULTI_MASTERS include/freetype/internal/services/svmm.h /^#define FT_SERVICE_ID_MULTI_MASTERS /;" d +FT_SERVICE_ID_OPENTYPE_VALIDATE android/freetype/include/freetype/internal/services/svotval.h /^#define FT_SERVICE_ID_OPENTYPE_VALIDATE /;" d +FT_SERVICE_ID_OPENTYPE_VALIDATE include/freetype/internal/services/svotval.h /^#define FT_SERVICE_ID_OPENTYPE_VALIDATE /;" d +FT_SERVICE_ID_PFR_METRICS android/freetype/include/freetype/internal/services/svpfr.h /^#define FT_SERVICE_ID_PFR_METRICS /;" d +FT_SERVICE_ID_PFR_METRICS include/freetype/internal/services/svpfr.h /^#define FT_SERVICE_ID_PFR_METRICS /;" d +FT_SERVICE_ID_POSTSCRIPT_CMAPS android/freetype/include/freetype/internal/services/svpscmap.h /^#define FT_SERVICE_ID_POSTSCRIPT_CMAPS /;" d +FT_SERVICE_ID_POSTSCRIPT_CMAPS include/freetype/internal/services/svpscmap.h /^#define FT_SERVICE_ID_POSTSCRIPT_CMAPS /;" d +FT_SERVICE_ID_POSTSCRIPT_FONT_NAME android/freetype/include/freetype/internal/services/svpostnm.h /^#define FT_SERVICE_ID_POSTSCRIPT_FONT_NAME /;" d +FT_SERVICE_ID_POSTSCRIPT_FONT_NAME include/freetype/internal/services/svpostnm.h /^#define FT_SERVICE_ID_POSTSCRIPT_FONT_NAME /;" d +FT_SERVICE_ID_POSTSCRIPT_INFO android/freetype/include/freetype/internal/services/svpsinfo.h /^#define FT_SERVICE_ID_POSTSCRIPT_INFO /;" d +FT_SERVICE_ID_POSTSCRIPT_INFO include/freetype/internal/services/svpsinfo.h /^#define FT_SERVICE_ID_POSTSCRIPT_INFO /;" d +FT_SERVICE_ID_SFNT_TABLE android/freetype/include/freetype/internal/services/svsfnt.h /^#define FT_SERVICE_ID_SFNT_TABLE /;" d +FT_SERVICE_ID_SFNT_TABLE include/freetype/internal/services/svsfnt.h /^#define FT_SERVICE_ID_SFNT_TABLE /;" d +FT_SERVICE_ID_TRUETYPE_ENGINE android/freetype/include/freetype/internal/services/svtteng.h /^#define FT_SERVICE_ID_TRUETYPE_ENGINE /;" d +FT_SERVICE_ID_TRUETYPE_ENGINE include/freetype/internal/services/svtteng.h /^#define FT_SERVICE_ID_TRUETYPE_ENGINE /;" d +FT_SERVICE_ID_TT_CMAP android/freetype/include/freetype/internal/services/svttcmap.h /^#define FT_SERVICE_ID_TT_CMAP /;" d +FT_SERVICE_ID_TT_CMAP include/freetype/internal/services/svttcmap.h /^#define FT_SERVICE_ID_TT_CMAP /;" d +FT_SERVICE_ID_TT_GLYF android/freetype/include/freetype/internal/services/svttglyf.h /^#define FT_SERVICE_ID_TT_GLYF /;" d +FT_SERVICE_ID_TT_GLYF include/freetype/internal/services/svttglyf.h /^#define FT_SERVICE_ID_TT_GLYF /;" d +FT_SERVICE_ID_WINFNT android/freetype/include/freetype/internal/services/svwinfnt.h /^#define FT_SERVICE_ID_WINFNT /;" d +FT_SERVICE_ID_WINFNT include/freetype/internal/services/svwinfnt.h /^#define FT_SERVICE_ID_WINFNT /;" d +FT_SERVICE_ID_XF86_NAME android/freetype/include/freetype/internal/services/svxf86nm.h /^#define FT_SERVICE_ID_XF86_NAME /;" d +FT_SERVICE_ID_XF86_NAME include/freetype/internal/services/svxf86nm.h /^#define FT_SERVICE_ID_XF86_NAME /;" d +FT_SERVICE_KERNING_H android/freetype/include/freetype/internal/ftserv.h /^#define FT_SERVICE_KERNING_H /;" d +FT_SERVICE_KERNING_H include/freetype/internal/ftserv.h /^#define FT_SERVICE_KERNING_H /;" d +FT_SERVICE_MULTIPLE_MASTERS_H android/freetype/include/freetype/internal/ftserv.h /^#define FT_SERVICE_MULTIPLE_MASTERS_H /;" d +FT_SERVICE_MULTIPLE_MASTERS_H include/freetype/internal/ftserv.h /^#define FT_SERVICE_MULTIPLE_MASTERS_H /;" d +FT_SERVICE_OPENTYPE_VALIDATE_H android/freetype/include/freetype/internal/ftserv.h /^#define FT_SERVICE_OPENTYPE_VALIDATE_H /;" d +FT_SERVICE_OPENTYPE_VALIDATE_H include/freetype/internal/ftserv.h /^#define FT_SERVICE_OPENTYPE_VALIDATE_H /;" d +FT_SERVICE_PFR_H android/freetype/include/freetype/internal/ftserv.h /^#define FT_SERVICE_PFR_H /;" d +FT_SERVICE_PFR_H include/freetype/internal/ftserv.h /^#define FT_SERVICE_PFR_H /;" d +FT_SERVICE_POSTSCRIPT_CMAPS_H android/freetype/include/freetype/internal/ftserv.h /^#define FT_SERVICE_POSTSCRIPT_CMAPS_H /;" d +FT_SERVICE_POSTSCRIPT_CMAPS_H include/freetype/internal/ftserv.h /^#define FT_SERVICE_POSTSCRIPT_CMAPS_H /;" d +FT_SERVICE_POSTSCRIPT_INFO_H android/freetype/include/freetype/internal/ftserv.h /^#define FT_SERVICE_POSTSCRIPT_INFO_H /;" d +FT_SERVICE_POSTSCRIPT_INFO_H include/freetype/internal/ftserv.h /^#define FT_SERVICE_POSTSCRIPT_INFO_H /;" d +FT_SERVICE_POSTSCRIPT_NAME_H android/freetype/include/freetype/internal/ftserv.h /^#define FT_SERVICE_POSTSCRIPT_NAME_H /;" d +FT_SERVICE_POSTSCRIPT_NAME_H include/freetype/internal/ftserv.h /^#define FT_SERVICE_POSTSCRIPT_NAME_H /;" d +FT_SERVICE_SFNT_H android/freetype/include/freetype/internal/ftserv.h /^#define FT_SERVICE_SFNT_H /;" d +FT_SERVICE_SFNT_H include/freetype/internal/ftserv.h /^#define FT_SERVICE_SFNT_H /;" d +FT_SERVICE_TRUETYPE_ENGINE_H android/freetype/include/freetype/internal/ftserv.h /^#define FT_SERVICE_TRUETYPE_ENGINE_H /;" d +FT_SERVICE_TRUETYPE_ENGINE_H include/freetype/internal/ftserv.h /^#define FT_SERVICE_TRUETYPE_ENGINE_H /;" d +FT_SERVICE_TRUETYPE_GLYF_H android/freetype/include/freetype/internal/ftserv.h /^#define FT_SERVICE_TRUETYPE_GLYF_H /;" d +FT_SERVICE_TRUETYPE_GLYF_H include/freetype/internal/ftserv.h /^#define FT_SERVICE_TRUETYPE_GLYF_H /;" d +FT_SERVICE_TT_CMAP_H android/freetype/include/freetype/internal/ftserv.h /^#define FT_SERVICE_TT_CMAP_H /;" d +FT_SERVICE_TT_CMAP_H include/freetype/internal/ftserv.h /^#define FT_SERVICE_TT_CMAP_H /;" d +FT_SERVICE_UNAVAILABLE android/freetype/include/freetype/internal/ftserv.h /^#define FT_SERVICE_UNAVAILABLE /;" d +FT_SERVICE_UNAVAILABLE include/freetype/internal/ftserv.h /^#define FT_SERVICE_UNAVAILABLE /;" d +FT_SERVICE_WINFNT_H android/freetype/include/freetype/internal/ftserv.h /^#define FT_SERVICE_WINFNT_H /;" d +FT_SERVICE_WINFNT_H include/freetype/internal/ftserv.h /^#define FT_SERVICE_WINFNT_H /;" d +FT_SERVICE_XFREE86_NAME_H android/freetype/include/freetype/internal/ftserv.h /^#define FT_SERVICE_XFREE86_NAME_H /;" d +FT_SERVICE_XFREE86_NAME_H include/freetype/internal/ftserv.h /^#define FT_SERVICE_XFREE86_NAME_H /;" d +FT_SET_ERROR android/freetype/include/freetype/internal/ftmemory.h /^#define FT_SET_ERROR(/;" d +FT_SET_ERROR android/freetype/include/freetype/internal/ftmemory.h /^#undef FT_SET_ERROR$/;" d +FT_SET_ERROR include/freetype/internal/ftmemory.h /^#define FT_SET_ERROR(/;" d +FT_SET_ERROR include/freetype/internal/ftmemory.h /^#undef FT_SET_ERROR$/;" d +FT_SFNT_NAMES_H android/freetype/include/freetype/config/ftheader.h /^#define FT_SFNT_NAMES_H /;" d +FT_SFNT_NAMES_H include/freetype/config/ftheader.h /^#define FT_SFNT_NAMES_H /;" d +FT_SFNT_TableGetFunc android/freetype/include/freetype/internal/services/svsfnt.h /^ (*FT_SFNT_TableGetFunc)( FT_Face face,$/;" t +FT_SFNT_TableGetFunc include/freetype/internal/services/svsfnt.h /^ (*FT_SFNT_TableGetFunc)( FT_Face face,$/;" t +FT_SFNT_TableInfoFunc android/freetype/include/freetype/internal/services/svsfnt.h /^ (*FT_SFNT_TableInfoFunc)( FT_Face face,$/;" t +FT_SFNT_TableInfoFunc include/freetype/internal/services/svsfnt.h /^ (*FT_SFNT_TableInfoFunc)( FT_Face face,$/;" t +FT_SFNT_TableLoadFunc android/freetype/include/freetype/internal/services/svsfnt.h /^ (*FT_SFNT_TableLoadFunc)( FT_Face face,$/;" t +FT_SFNT_TableLoadFunc include/freetype/internal/services/svsfnt.h /^ (*FT_SFNT_TableLoadFunc)( FT_Face face,$/;" t +FT_SIDE_TO_ROTATE android/freetype/src/base/ftstroke.c /^#define FT_SIDE_TO_ROTATE(/;" d file: +FT_SIGN_INT android/freetype/src/base/fttrigon.c /^#define FT_SIGN_INT(/;" d file: +FT_SIGN_INT16 android/freetype/src/base/fttrigon.c /^#define FT_SIGN_INT16(/;" d file: +FT_SIGN_INT32 android/freetype/src/base/fttrigon.c /^#define FT_SIGN_INT32(/;" d file: +FT_SIGN_LONG android/freetype/src/base/fttrigon.c /^#define FT_SIGN_LONG(/;" d file: +FT_SIZE android/freetype/include/freetype/internal/ftobjs.h /^#define FT_SIZE(/;" d +FT_SIZE include/freetype/internal/ftobjs.h /^#define FT_SIZE(/;" d +FT_SIZEOF_INT android/freetype/include/freetype/config/ftconfig.h /^#define FT_SIZEOF_INT /;" d +FT_SIZEOF_INT include/freetype/config/ftconfig.h /^#define FT_SIZEOF_INT /;" d +FT_SIZEOF_LONG android/freetype/include/freetype/config/ftconfig.h /^#define FT_SIZEOF_LONG /;" d +FT_SIZEOF_LONG include/freetype/config/ftconfig.h /^#define FT_SIZEOF_LONG /;" d +FT_SIZES_H android/freetype/include/freetype/config/ftheader.h /^#define FT_SIZES_H /;" d +FT_SIZES_H include/freetype/config/ftheader.h /^#define FT_SIZES_H /;" d +FT_SIZE_FACE android/freetype/include/freetype/internal/ftobjs.h /^#define FT_SIZE_FACE(/;" d +FT_SIZE_FACE include/freetype/internal/ftobjs.h /^#define FT_SIZE_FACE(/;" d +FT_SIZE_REQUEST_TYPE_BBOX android/freetype/include/freetype/freetype.h /^ FT_SIZE_REQUEST_TYPE_BBOX,$/;" e enum:FT_Size_Request_Type_ +FT_SIZE_REQUEST_TYPE_BBOX include/freetype/freetype.h /^ FT_SIZE_REQUEST_TYPE_BBOX,$/;" e enum:FT_Size_Request_Type_ +FT_SIZE_REQUEST_TYPE_CELL android/freetype/include/freetype/freetype.h /^ FT_SIZE_REQUEST_TYPE_CELL,$/;" e enum:FT_Size_Request_Type_ +FT_SIZE_REQUEST_TYPE_CELL include/freetype/freetype.h /^ FT_SIZE_REQUEST_TYPE_CELL,$/;" e enum:FT_Size_Request_Type_ +FT_SIZE_REQUEST_TYPE_MAX android/freetype/include/freetype/freetype.h /^ FT_SIZE_REQUEST_TYPE_MAX$/;" e enum:FT_Size_Request_Type_ +FT_SIZE_REQUEST_TYPE_MAX include/freetype/freetype.h /^ FT_SIZE_REQUEST_TYPE_MAX$/;" e enum:FT_Size_Request_Type_ +FT_SIZE_REQUEST_TYPE_NOMINAL android/freetype/include/freetype/freetype.h /^ FT_SIZE_REQUEST_TYPE_NOMINAL,$/;" e enum:FT_Size_Request_Type_ +FT_SIZE_REQUEST_TYPE_NOMINAL include/freetype/freetype.h /^ FT_SIZE_REQUEST_TYPE_NOMINAL,$/;" e enum:FT_Size_Request_Type_ +FT_SIZE_REQUEST_TYPE_REAL_DIM android/freetype/include/freetype/freetype.h /^ FT_SIZE_REQUEST_TYPE_REAL_DIM,$/;" e enum:FT_Size_Request_Type_ +FT_SIZE_REQUEST_TYPE_REAL_DIM include/freetype/freetype.h /^ FT_SIZE_REQUEST_TYPE_REAL_DIM,$/;" e enum:FT_Size_Request_Type_ +FT_SIZE_REQUEST_TYPE_SCALES android/freetype/include/freetype/freetype.h /^ FT_SIZE_REQUEST_TYPE_SCALES,$/;" e enum:FT_Size_Request_Type_ +FT_SIZE_REQUEST_TYPE_SCALES include/freetype/freetype.h /^ FT_SIZE_REQUEST_TYPE_SCALES,$/;" e enum:FT_Size_Request_Type_ +FT_SLOT android/freetype/include/freetype/internal/ftobjs.h /^#define FT_SLOT(/;" d +FT_SLOT include/freetype/internal/ftobjs.h /^#define FT_SLOT(/;" d +FT_SLOT_FACE android/freetype/include/freetype/internal/ftobjs.h /^#define FT_SLOT_FACE(/;" d +FT_SLOT_FACE include/freetype/internal/ftobjs.h /^#define FT_SLOT_FACE(/;" d +FT_SMALL_CONIC_THRESHOLD android/freetype/src/base/ftstroke.c /^#define FT_SMALL_CONIC_THRESHOLD /;" d file: +FT_SMALL_CUBIC_THRESHOLD android/freetype/src/base/ftstroke.c /^#define FT_SMALL_CUBIC_THRESHOLD /;" d file: +FT_STRCPYN android/freetype/include/freetype/internal/ftmemory.h /^#define FT_STRCPYN(/;" d +FT_STRCPYN include/freetype/internal/ftmemory.h /^#define FT_STRCPYN(/;" d +FT_STRDUP android/freetype/include/freetype/internal/ftmemory.h /^#define FT_STRDUP(/;" d +FT_STRDUP include/freetype/internal/ftmemory.h /^#define FT_STRDUP(/;" d +FT_STREAM_POS android/freetype/include/freetype/internal/ftstream.h /^#define FT_STREAM_POS(/;" d +FT_STREAM_POS include/freetype/internal/ftstream.h /^#define FT_STREAM_POS(/;" d +FT_STREAM_READ android/freetype/include/freetype/internal/ftstream.h /^#define FT_STREAM_READ(/;" d +FT_STREAM_READ include/freetype/internal/ftstream.h /^#define FT_STREAM_READ(/;" d +FT_STREAM_READ_AT android/freetype/include/freetype/internal/ftstream.h /^#define FT_STREAM_READ_AT(/;" d +FT_STREAM_READ_AT include/freetype/internal/ftstream.h /^#define FT_STREAM_READ_AT(/;" d +FT_STREAM_READ_FIELDS android/freetype/include/freetype/internal/ftstream.h /^#define FT_STREAM_READ_FIELDS(/;" d +FT_STREAM_READ_FIELDS include/freetype/internal/ftstream.h /^#define FT_STREAM_READ_FIELDS(/;" d +FT_STREAM_SEEK android/freetype/include/freetype/internal/ftstream.h /^#define FT_STREAM_SEEK(/;" d +FT_STREAM_SEEK include/freetype/internal/ftstream.h /^#define FT_STREAM_SEEK(/;" d +FT_STREAM_SKIP android/freetype/include/freetype/internal/ftstream.h /^#define FT_STREAM_SKIP(/;" d +FT_STREAM_SKIP include/freetype/internal/ftstream.h /^#define FT_STREAM_SKIP(/;" d +FT_STROKER_BORDER_LEFT android/freetype/include/freetype/ftstroke.h /^ FT_STROKER_BORDER_LEFT = 0,$/;" e enum:FT_StrokerBorder_ +FT_STROKER_BORDER_LEFT include/freetype/ftstroke.h /^ FT_STROKER_BORDER_LEFT = 0,$/;" e enum:FT_StrokerBorder_ +FT_STROKER_BORDER_RIGHT android/freetype/include/freetype/ftstroke.h /^ FT_STROKER_BORDER_RIGHT$/;" e enum:FT_StrokerBorder_ +FT_STROKER_BORDER_RIGHT include/freetype/ftstroke.h /^ FT_STROKER_BORDER_RIGHT$/;" e enum:FT_StrokerBorder_ +FT_STROKER_H android/freetype/include/freetype/config/ftheader.h /^#define FT_STROKER_H /;" d +FT_STROKER_H include/freetype/config/ftheader.h /^#define FT_STROKER_H /;" d +FT_STROKER_LINECAP_BUTT android/freetype/include/freetype/ftstroke.h /^ FT_STROKER_LINECAP_BUTT = 0,$/;" e enum:FT_Stroker_LineCap_ +FT_STROKER_LINECAP_BUTT include/freetype/ftstroke.h /^ FT_STROKER_LINECAP_BUTT = 0,$/;" e enum:FT_Stroker_LineCap_ +FT_STROKER_LINECAP_ROUND android/freetype/include/freetype/ftstroke.h /^ FT_STROKER_LINECAP_ROUND,$/;" e enum:FT_Stroker_LineCap_ +FT_STROKER_LINECAP_ROUND include/freetype/ftstroke.h /^ FT_STROKER_LINECAP_ROUND,$/;" e enum:FT_Stroker_LineCap_ +FT_STROKER_LINECAP_SQUARE android/freetype/include/freetype/ftstroke.h /^ FT_STROKER_LINECAP_SQUARE$/;" e enum:FT_Stroker_LineCap_ +FT_STROKER_LINECAP_SQUARE include/freetype/ftstroke.h /^ FT_STROKER_LINECAP_SQUARE$/;" e enum:FT_Stroker_LineCap_ +FT_STROKER_LINEJOIN_BEVEL android/freetype/include/freetype/ftstroke.h /^ FT_STROKER_LINEJOIN_BEVEL,$/;" e enum:FT_Stroker_LineJoin_ +FT_STROKER_LINEJOIN_BEVEL include/freetype/ftstroke.h /^ FT_STROKER_LINEJOIN_BEVEL,$/;" e enum:FT_Stroker_LineJoin_ +FT_STROKER_LINEJOIN_MITER android/freetype/include/freetype/ftstroke.h /^ FT_STROKER_LINEJOIN_MITER$/;" e enum:FT_Stroker_LineJoin_ +FT_STROKER_LINEJOIN_MITER include/freetype/ftstroke.h /^ FT_STROKER_LINEJOIN_MITER$/;" e enum:FT_Stroker_LineJoin_ +FT_STROKER_LINEJOIN_ROUND android/freetype/include/freetype/ftstroke.h /^ FT_STROKER_LINEJOIN_ROUND = 0,$/;" e enum:FT_Stroker_LineJoin_ +FT_STROKER_LINEJOIN_ROUND include/freetype/ftstroke.h /^ FT_STROKER_LINEJOIN_ROUND = 0,$/;" e enum:FT_Stroker_LineJoin_ +FT_STROKE_TAG_BEGIN android/freetype/src/base/ftstroke.c /^ FT_STROKE_TAG_BEGIN = 4, \/* sub-path start *\/$/;" e enum:FT_StrokeTags_ file: +FT_STROKE_TAG_BEGIN_END android/freetype/src/base/ftstroke.c /^#define FT_STROKE_TAG_BEGIN_END /;" d file: +FT_STROKE_TAG_CUBIC android/freetype/src/base/ftstroke.c /^ FT_STROKE_TAG_CUBIC = 2, \/* cubic off-point *\/$/;" e enum:FT_StrokeTags_ file: +FT_STROKE_TAG_END android/freetype/src/base/ftstroke.c /^ FT_STROKE_TAG_END = 8 \/* sub-path end *\/$/;" e enum:FT_StrokeTags_ file: +FT_STROKE_TAG_ON android/freetype/src/base/ftstroke.c /^ FT_STROKE_TAG_ON = 1, \/* on-curve point *\/$/;" e enum:FT_StrokeTags_ file: +FT_STRUCTURE android/freetype/src/cff/cffload.c /^#define FT_STRUCTURE /;" d file: +FT_STRUCTURE android/freetype/src/cff/cffload.c /^#undef FT_STRUCTURE$/;" d file: +FT_STRUCTURE android/freetype/src/cff/cfftoken.h /^#define FT_STRUCTURE /;" d +FT_STRUCTURE android/freetype/src/cff/cfftoken.h /^#undef FT_STRUCTURE$/;" d +FT_STRUCTURE android/freetype/src/sfnt/sfobjs.c /^#define FT_STRUCTURE /;" d file: +FT_STRUCTURE android/freetype/src/sfnt/sfobjs.c /^#undef FT_STRUCTURE$/;" d file: +FT_STRUCTURE android/freetype/src/sfnt/ttload.c /^#define FT_STRUCTURE /;" d file: +FT_STRUCTURE android/freetype/src/sfnt/ttload.c /^#undef FT_STRUCTURE$/;" d file: +FT_STRUCTURE android/freetype/src/sfnt/ttmtx.c /^#define FT_STRUCTURE /;" d file: +FT_STRUCTURE android/freetype/src/sfnt/ttmtx.c /^#undef FT_STRUCTURE$/;" d file: +FT_STRUCTURE android/freetype/src/sfnt/ttsbit.c /^#define FT_STRUCTURE /;" d file: +FT_STRUCTURE android/freetype/src/sfnt/ttsbit.c /^#undef FT_STRUCTURE$/;" d file: +FT_STRUCTURE android/freetype/src/sfnt/ttsbit0.c /^#define FT_STRUCTURE /;" d file: +FT_STRUCTURE android/freetype/src/sfnt/ttsbit0.c /^#undef FT_STRUCTURE$/;" d file: +FT_STRUCTURE android/freetype/src/truetype/ttgxvar.c /^#define FT_STRUCTURE /;" d file: +FT_STRUCTURE android/freetype/src/truetype/ttgxvar.c /^#undef FT_STRUCTURE$/;" d file: +FT_STYLE_FLAG_BOLD android/freetype/include/freetype/freetype.h /^#define FT_STYLE_FLAG_BOLD /;" d +FT_STYLE_FLAG_BOLD include/freetype/freetype.h /^#define FT_STYLE_FLAG_BOLD /;" d +FT_STYLE_FLAG_ITALIC android/freetype/include/freetype/freetype.h /^#define FT_STYLE_FLAG_ITALIC /;" d +FT_STYLE_FLAG_ITALIC include/freetype/freetype.h /^#define FT_STYLE_FLAG_ITALIC /;" d +FT_SUBGLYPH_FLAG_2X2 android/freetype/include/freetype/freetype.h /^#define FT_SUBGLYPH_FLAG_2X2 /;" d +FT_SUBGLYPH_FLAG_2X2 include/freetype/freetype.h /^#define FT_SUBGLYPH_FLAG_2X2 /;" d +FT_SUBGLYPH_FLAG_ARGS_ARE_WORDS android/freetype/include/freetype/freetype.h /^#define FT_SUBGLYPH_FLAG_ARGS_ARE_WORDS /;" d +FT_SUBGLYPH_FLAG_ARGS_ARE_WORDS include/freetype/freetype.h /^#define FT_SUBGLYPH_FLAG_ARGS_ARE_WORDS /;" d +FT_SUBGLYPH_FLAG_ARGS_ARE_XY_VALUES android/freetype/include/freetype/freetype.h /^#define FT_SUBGLYPH_FLAG_ARGS_ARE_XY_VALUES /;" d +FT_SUBGLYPH_FLAG_ARGS_ARE_XY_VALUES include/freetype/freetype.h /^#define FT_SUBGLYPH_FLAG_ARGS_ARE_XY_VALUES /;" d +FT_SUBGLYPH_FLAG_ROUND_XY_TO_GRID android/freetype/include/freetype/freetype.h /^#define FT_SUBGLYPH_FLAG_ROUND_XY_TO_GRID /;" d +FT_SUBGLYPH_FLAG_ROUND_XY_TO_GRID include/freetype/freetype.h /^#define FT_SUBGLYPH_FLAG_ROUND_XY_TO_GRID /;" d +FT_SUBGLYPH_FLAG_SCALE android/freetype/include/freetype/freetype.h /^#define FT_SUBGLYPH_FLAG_SCALE /;" d +FT_SUBGLYPH_FLAG_SCALE include/freetype/freetype.h /^#define FT_SUBGLYPH_FLAG_SCALE /;" d +FT_SUBGLYPH_FLAG_USE_MY_METRICS android/freetype/include/freetype/freetype.h /^#define FT_SUBGLYPH_FLAG_USE_MY_METRICS /;" d +FT_SUBGLYPH_FLAG_USE_MY_METRICS include/freetype/freetype.h /^#define FT_SUBGLYPH_FLAG_USE_MY_METRICS /;" d +FT_SUBGLYPH_FLAG_XY_SCALE android/freetype/include/freetype/freetype.h /^#define FT_SUBGLYPH_FLAG_XY_SCALE /;" d +FT_SUBGLYPH_FLAG_XY_SCALE include/freetype/freetype.h /^#define FT_SUBGLYPH_FLAG_XY_SCALE /;" d +FT_SYNTHESIS_H android/freetype/include/freetype/config/ftheader.h /^#define FT_SYNTHESIS_H /;" d +FT_SYNTHESIS_H include/freetype/config/ftheader.h /^#define FT_SYNTHESIS_H /;" d +FT_SYSTEM_H android/freetype/include/freetype/config/ftheader.h /^#define FT_SYSTEM_H /;" d +FT_SYSTEM_H include/freetype/config/ftheader.h /^#define FT_SYSTEM_H /;" d +FT_Select_Metrics android/freetype/src/base/ftobjs.c /^ FT_Select_Metrics( FT_Face face,$/;" f +FT_ServiceCache android/freetype/include/freetype/internal/ftserv.h /^ } FT_ServiceCacheRec, *FT_ServiceCache;$/;" t typeref:struct:FT_ServiceCacheRec_ +FT_ServiceCache include/freetype/internal/ftserv.h /^ } FT_ServiceCacheRec, *FT_ServiceCache;$/;" t typeref:struct:FT_ServiceCacheRec_ +FT_ServiceCacheRec android/freetype/include/freetype/internal/ftserv.h /^ } FT_ServiceCacheRec, *FT_ServiceCache;$/;" t typeref:struct:FT_ServiceCacheRec_ +FT_ServiceCacheRec include/freetype/internal/ftserv.h /^ } FT_ServiceCacheRec, *FT_ServiceCache;$/;" t typeref:struct:FT_ServiceCacheRec_ +FT_ServiceCacheRec_ android/freetype/include/freetype/internal/ftserv.h /^ typedef struct FT_ServiceCacheRec_$/;" s +FT_ServiceCacheRec_ include/freetype/internal/ftserv.h /^ typedef struct FT_ServiceCacheRec_$/;" s +FT_ServiceDesc android/freetype/include/freetype/internal/ftserv.h /^ typedef const FT_ServiceDescRec* FT_ServiceDesc;$/;" t +FT_ServiceDesc include/freetype/internal/ftserv.h /^ typedef const FT_ServiceDescRec* FT_ServiceDesc;$/;" t +FT_ServiceDescRec android/freetype/include/freetype/internal/ftserv.h /^ } FT_ServiceDescRec;$/;" t typeref:struct:FT_ServiceDescRec_ +FT_ServiceDescRec include/freetype/internal/ftserv.h /^ } FT_ServiceDescRec;$/;" t typeref:struct:FT_ServiceDescRec_ +FT_ServiceDescRec_ android/freetype/include/freetype/internal/ftserv.h /^ typedef struct FT_ServiceDescRec_$/;" s +FT_ServiceDescRec_ include/freetype/internal/ftserv.h /^ typedef struct FT_ServiceDescRec_$/;" s +FT_Set_Debug_Hook android/freetype/src/base/ftobjs.c /^ FT_Set_Debug_Hook( FT_Library library,$/;" f +FT_Set_MM_Blend_Func android/freetype/include/freetype/internal/services/svmm.h /^ (*FT_Set_MM_Blend_Func)( FT_Face face,$/;" t +FT_Set_MM_Blend_Func include/freetype/internal/services/svmm.h /^ (*FT_Set_MM_Blend_Func)( FT_Face face,$/;" t +FT_Set_MM_Design_Func android/freetype/include/freetype/internal/services/svmm.h /^ (*FT_Set_MM_Design_Func)( FT_Face face,$/;" t +FT_Set_MM_Design_Func include/freetype/internal/services/svmm.h /^ (*FT_Set_MM_Design_Func)( FT_Face face,$/;" t +FT_Set_Transform android/freetype/src/base/ftobjs.c /^ FT_Set_Transform( FT_Face face,$/;" f +FT_Set_Var_Design_Func android/freetype/include/freetype/internal/services/svmm.h /^ (*FT_Set_Var_Design_Func)( FT_Face face,$/;" t +FT_Set_Var_Design_Func include/freetype/internal/services/svmm.h /^ (*FT_Set_Var_Design_Func)( FT_Face face,$/;" t +FT_SfntName android/freetype/include/freetype/ftsnames.h /^ } FT_SfntName;$/;" t typeref:struct:FT_SfntName_ +FT_SfntName include/freetype/ftsnames.h /^ } FT_SfntName;$/;" t typeref:struct:FT_SfntName_ +FT_SfntName_ android/freetype/include/freetype/ftsnames.h /^ typedef struct FT_SfntName_$/;" s +FT_SfntName_ include/freetype/ftsnames.h /^ typedef struct FT_SfntName_$/;" s +FT_Sfnt_Tag android/freetype/include/freetype/tttables.h /^ } FT_Sfnt_Tag;$/;" t typeref:enum:FT_Sfnt_Tag_ +FT_Sfnt_Tag include/freetype/tttables.h /^ } FT_Sfnt_Tag;$/;" t typeref:enum:FT_Sfnt_Tag_ +FT_Sfnt_Tag_ android/freetype/include/freetype/tttables.h /^ typedef enum FT_Sfnt_Tag_$/;" g +FT_Sfnt_Tag_ include/freetype/tttables.h /^ typedef enum FT_Sfnt_Tag_$/;" g +FT_Short android/freetype/include/freetype/fttypes.h /^ typedef signed short FT_Short;$/;" t +FT_Short include/freetype/fttypes.h /^ typedef signed short FT_Short;$/;" t +FT_Size android/freetype/include/freetype/freetype.h /^ typedef struct FT_SizeRec_* FT_Size;$/;" t typeref:struct:FT_SizeRec_ +FT_Size include/freetype/freetype.h /^ typedef struct FT_SizeRec_* FT_Size;$/;" t typeref:struct:FT_SizeRec_ +FT_SizeRec android/freetype/include/freetype/freetype.h /^ } FT_SizeRec;$/;" t typeref:struct:FT_SizeRec_ +FT_SizeRec include/freetype/freetype.h /^ } FT_SizeRec;$/;" t typeref:struct:FT_SizeRec_ +FT_SizeRec_ android/freetype/include/freetype/freetype.h /^ typedef struct FT_SizeRec_$/;" s +FT_SizeRec_ include/freetype/freetype.h /^ typedef struct FT_SizeRec_$/;" s +FT_Size_DoneFunc android/freetype/include/freetype/internal/ftdriver.h /^ (*FT_Size_DoneFunc)( FT_Size size );$/;" t +FT_Size_DoneFunc include/freetype/internal/ftdriver.h /^ (*FT_Size_DoneFunc)( FT_Size size );$/;" t +FT_Size_InitFunc android/freetype/include/freetype/internal/ftdriver.h /^ (*FT_Size_InitFunc)( FT_Size size );$/;" t +FT_Size_InitFunc include/freetype/internal/ftdriver.h /^ (*FT_Size_InitFunc)( FT_Size size );$/;" t +FT_Size_Internal android/freetype/include/freetype/freetype.h /^ typedef struct FT_Size_InternalRec_* FT_Size_Internal;$/;" t typeref:struct:FT_Size_InternalRec_ +FT_Size_Internal include/freetype/freetype.h /^ typedef struct FT_Size_InternalRec_* FT_Size_Internal;$/;" t typeref:struct:FT_Size_InternalRec_ +FT_Size_Metrics android/freetype/include/freetype/freetype.h /^ } FT_Size_Metrics;$/;" t typeref:struct:FT_Size_Metrics_ +FT_Size_Metrics include/freetype/freetype.h /^ } FT_Size_Metrics;$/;" t typeref:struct:FT_Size_Metrics_ +FT_Size_Metrics_ android/freetype/include/freetype/freetype.h /^ typedef struct FT_Size_Metrics_$/;" s +FT_Size_Metrics_ include/freetype/freetype.h /^ typedef struct FT_Size_Metrics_$/;" s +FT_Size_Request android/freetype/include/freetype/freetype.h /^ typedef struct FT_Size_RequestRec_ *FT_Size_Request;$/;" t typeref:struct:FT_Size_RequestRec_ +FT_Size_Request include/freetype/freetype.h /^ typedef struct FT_Size_RequestRec_ *FT_Size_Request;$/;" t typeref:struct:FT_Size_RequestRec_ +FT_Size_RequestFunc android/freetype/include/freetype/internal/ftdriver.h /^ (*FT_Size_RequestFunc)( FT_Size size,$/;" t +FT_Size_RequestFunc include/freetype/internal/ftdriver.h /^ (*FT_Size_RequestFunc)( FT_Size size,$/;" t +FT_Size_RequestRec android/freetype/include/freetype/freetype.h /^ } FT_Size_RequestRec;$/;" t typeref:struct:FT_Size_RequestRec_ +FT_Size_RequestRec include/freetype/freetype.h /^ } FT_Size_RequestRec;$/;" t typeref:struct:FT_Size_RequestRec_ +FT_Size_RequestRec_ android/freetype/include/freetype/freetype.h /^ typedef struct FT_Size_RequestRec_$/;" s +FT_Size_RequestRec_ include/freetype/freetype.h /^ typedef struct FT_Size_RequestRec_$/;" s +FT_Size_Request_Type android/freetype/include/freetype/freetype.h /^ } FT_Size_Request_Type;$/;" t typeref:enum:FT_Size_Request_Type_ +FT_Size_Request_Type include/freetype/freetype.h /^ } FT_Size_Request_Type;$/;" t typeref:enum:FT_Size_Request_Type_ +FT_Size_Request_Type_ android/freetype/include/freetype/freetype.h /^ typedef enum FT_Size_Request_Type_$/;" g +FT_Size_Request_Type_ include/freetype/freetype.h /^ typedef enum FT_Size_Request_Type_$/;" g +FT_Size_ResetPixelsFunc android/freetype/include/freetype/internal/ftdriver.h /^ (*FT_Size_ResetPixelsFunc)( FT_Size size,$/;" t +FT_Size_ResetPixelsFunc include/freetype/internal/ftdriver.h /^ (*FT_Size_ResetPixelsFunc)( FT_Size size,$/;" t +FT_Size_ResetPointsFunc android/freetype/include/freetype/internal/ftdriver.h /^ (*FT_Size_ResetPointsFunc)( FT_Size size,$/;" t +FT_Size_ResetPointsFunc include/freetype/internal/ftdriver.h /^ (*FT_Size_ResetPointsFunc)( FT_Size size,$/;" t +FT_Size_SelectFunc android/freetype/include/freetype/internal/ftdriver.h /^ (*FT_Size_SelectFunc)( FT_Size size,$/;" t +FT_Size_SelectFunc include/freetype/internal/ftdriver.h /^ (*FT_Size_SelectFunc)( FT_Size size,$/;" t +FT_Slot_DoneFunc android/freetype/include/freetype/internal/ftdriver.h /^ (*FT_Slot_DoneFunc)( FT_GlyphSlot slot );$/;" t +FT_Slot_DoneFunc include/freetype/internal/ftdriver.h /^ (*FT_Slot_DoneFunc)( FT_GlyphSlot slot );$/;" t +FT_Slot_InitFunc android/freetype/include/freetype/internal/ftdriver.h /^ (*FT_Slot_InitFunc)( FT_GlyphSlot slot );$/;" t +FT_Slot_InitFunc include/freetype/internal/ftdriver.h /^ (*FT_Slot_InitFunc)( FT_GlyphSlot slot );$/;" t +FT_Slot_Internal android/freetype/include/freetype/freetype.h /^ typedef struct FT_Slot_InternalRec_* FT_Slot_Internal;$/;" t typeref:struct:FT_Slot_InternalRec_ +FT_Slot_Internal include/freetype/freetype.h /^ typedef struct FT_Slot_InternalRec_* FT_Slot_Internal;$/;" t typeref:struct:FT_Slot_InternalRec_ +FT_Slot_InternalRec_ android/freetype/include/freetype/internal/ftobjs.h /^ typedef struct FT_Slot_InternalRec_$/;" s +FT_Slot_InternalRec_ include/freetype/internal/ftobjs.h /^ typedef struct FT_Slot_InternalRec_$/;" s +FT_Slot_LoadFunc android/freetype/include/freetype/internal/ftdriver.h /^ (*FT_Slot_LoadFunc)( FT_GlyphSlot slot,$/;" t +FT_Slot_LoadFunc include/freetype/internal/ftdriver.h /^ (*FT_Slot_LoadFunc)( FT_GlyphSlot slot,$/;" t +FT_Span android/freetype/include/freetype/ftimage.h /^ } FT_Span;$/;" t typeref:struct:FT_Span_ +FT_Span include/freetype/ftimage.h /^ } FT_Span;$/;" t typeref:struct:FT_Span_ +FT_SpanFunc android/freetype/include/freetype/ftimage.h /^ (*FT_SpanFunc)( int y,$/;" t +FT_SpanFunc include/freetype/ftimage.h /^ (*FT_SpanFunc)( int y,$/;" t +FT_Span_ android/freetype/include/freetype/ftimage.h /^ typedef struct FT_Span_$/;" s +FT_Span_ include/freetype/ftimage.h /^ typedef struct FT_Span_$/;" s +FT_Stream android/freetype/include/freetype/ftsystem.h /^ typedef struct FT_StreamRec_* FT_Stream;$/;" t typeref:struct:FT_StreamRec_ +FT_Stream include/freetype/ftsystem.h /^ typedef struct FT_StreamRec_* FT_Stream;$/;" t typeref:struct:FT_StreamRec_ +FT_StreamDesc android/freetype/include/freetype/ftsystem.h /^ } FT_StreamDesc;$/;" t typeref:union:FT_StreamDesc_ +FT_StreamDesc include/freetype/ftsystem.h /^ } FT_StreamDesc;$/;" t typeref:union:FT_StreamDesc_ +FT_StreamDesc_ android/freetype/include/freetype/ftsystem.h /^ typedef union FT_StreamDesc_$/;" u +FT_StreamDesc_ include/freetype/ftsystem.h /^ typedef union FT_StreamDesc_$/;" u +FT_StreamRec android/freetype/include/freetype/ftsystem.h /^ } FT_StreamRec;$/;" t typeref:struct:FT_StreamRec_ +FT_StreamRec include/freetype/ftsystem.h /^ } FT_StreamRec;$/;" t typeref:struct:FT_StreamRec_ +FT_StreamRec_ android/freetype/include/freetype/ftsystem.h /^ typedef struct FT_StreamRec_$/;" s +FT_StreamRec_ include/freetype/ftsystem.h /^ typedef struct FT_StreamRec_$/;" s +FT_Stream_Close android/freetype/src/base/ftstream.c /^ FT_Stream_Close( FT_Stream stream )$/;" f +FT_Stream_CloseFunc android/freetype/include/freetype/ftsystem.h /^ (*FT_Stream_CloseFunc)( FT_Stream stream );$/;" t +FT_Stream_CloseFunc include/freetype/ftsystem.h /^ (*FT_Stream_CloseFunc)( FT_Stream stream );$/;" t +FT_Stream_ExitFrame android/freetype/src/base/ftstream.c /^ FT_Stream_ExitFrame( FT_Stream stream )$/;" f +FT_Stream_FTell android/freetype/src/truetype/ttgxvar.c /^#define FT_Stream_FTell(/;" d file: +FT_Stream_Free android/freetype/src/base/ftobjs.c /^ FT_Stream_Free( FT_Stream stream,$/;" f +FT_Stream_IoFunc android/freetype/include/freetype/ftsystem.h /^ (*FT_Stream_IoFunc)( FT_Stream stream,$/;" t +FT_Stream_IoFunc include/freetype/ftsystem.h /^ (*FT_Stream_IoFunc)( FT_Stream stream,$/;" t +FT_Stream_OpenMemory android/freetype/src/base/ftstream.c /^ FT_Stream_OpenMemory( FT_Stream stream,$/;" f +FT_Stream_ReleaseFrame android/freetype/src/base/ftstream.c /^ FT_Stream_ReleaseFrame( FT_Stream stream,$/;" f +FT_Stream_SeekSet android/freetype/src/truetype/ttgxvar.c /^#define FT_Stream_SeekSet(/;" d file: +FT_String android/freetype/include/freetype/fttypes.h /^ typedef char FT_String;$/;" t +FT_String include/freetype/fttypes.h /^ typedef char FT_String;$/;" t +FT_StrokeBorder android/freetype/src/base/ftstroke.c /^ } FT_StrokeBorderRec, *FT_StrokeBorder;$/;" t typeref:struct:FT_StrokeBorderRec_ file: +FT_StrokeBorderRec android/freetype/src/base/ftstroke.c /^ } FT_StrokeBorderRec, *FT_StrokeBorder;$/;" t typeref:struct:FT_StrokeBorderRec_ file: +FT_StrokeBorderRec_ android/freetype/src/base/ftstroke.c /^ typedef struct FT_StrokeBorderRec_$/;" s file: +FT_StrokeTags android/freetype/src/base/ftstroke.c /^ } FT_StrokeTags;$/;" t typeref:enum:FT_StrokeTags_ file: +FT_StrokeTags_ android/freetype/src/base/ftstroke.c /^ typedef enum FT_StrokeTags_$/;" g file: +FT_Stroker android/freetype/include/freetype/ftstroke.h /^ typedef struct FT_StrokerRec_* FT_Stroker;$/;" t typeref:struct:FT_StrokerRec_ +FT_Stroker include/freetype/ftstroke.h /^ typedef struct FT_StrokerRec_* FT_Stroker;$/;" t typeref:struct:FT_StrokerRec_ +FT_StrokerBorder android/freetype/include/freetype/ftstroke.h /^ } FT_StrokerBorder;$/;" t typeref:enum:FT_StrokerBorder_ +FT_StrokerBorder include/freetype/ftstroke.h /^ } FT_StrokerBorder;$/;" t typeref:enum:FT_StrokerBorder_ +FT_StrokerBorder_ android/freetype/include/freetype/ftstroke.h /^ typedef enum FT_StrokerBorder_$/;" g +FT_StrokerBorder_ include/freetype/ftstroke.h /^ typedef enum FT_StrokerBorder_$/;" g +FT_StrokerRec android/freetype/src/base/ftstroke.c /^ } FT_StrokerRec;$/;" t typeref:struct:FT_StrokerRec_ file: +FT_StrokerRec_ android/freetype/src/base/ftstroke.c /^ typedef struct FT_StrokerRec_$/;" s file: +FT_Stroker_Done android/freetype/src/base/ftstroke.c /^ FT_Stroker_Done( FT_Stroker stroker )$/;" f +FT_Stroker_Export android/freetype/src/base/ftstroke.c /^ FT_Stroker_Export( FT_Stroker stroker,$/;" f +FT_Stroker_ExportBorder android/freetype/src/base/ftstroke.c /^ FT_Stroker_ExportBorder( FT_Stroker stroker,$/;" f +FT_Stroker_LineCap android/freetype/include/freetype/ftstroke.h /^ } FT_Stroker_LineCap;$/;" t typeref:enum:FT_Stroker_LineCap_ +FT_Stroker_LineCap include/freetype/ftstroke.h /^ } FT_Stroker_LineCap;$/;" t typeref:enum:FT_Stroker_LineCap_ +FT_Stroker_LineCap_ android/freetype/include/freetype/ftstroke.h /^ typedef enum FT_Stroker_LineCap_$/;" g +FT_Stroker_LineCap_ include/freetype/ftstroke.h /^ typedef enum FT_Stroker_LineCap_$/;" g +FT_Stroker_LineJoin android/freetype/include/freetype/ftstroke.h /^ } FT_Stroker_LineJoin;$/;" t typeref:enum:FT_Stroker_LineJoin_ +FT_Stroker_LineJoin include/freetype/ftstroke.h /^ } FT_Stroker_LineJoin;$/;" t typeref:enum:FT_Stroker_LineJoin_ +FT_Stroker_LineJoin_ android/freetype/include/freetype/ftstroke.h /^ typedef enum FT_Stroker_LineJoin_$/;" g +FT_Stroker_LineJoin_ include/freetype/ftstroke.h /^ typedef enum FT_Stroker_LineJoin_$/;" g +FT_Stroker_Rewind android/freetype/src/base/ftstroke.c /^ FT_Stroker_Rewind( FT_Stroker stroker )$/;" f +FT_Stroker_Set android/freetype/src/base/ftstroke.c /^ FT_Stroker_Set( FT_Stroker stroker,$/;" f +FT_SubGlyph android/freetype/include/freetype/freetype.h /^ typedef struct FT_SubGlyphRec_* FT_SubGlyph;$/;" t typeref:struct:FT_SubGlyphRec_ +FT_SubGlyph include/freetype/freetype.h /^ typedef struct FT_SubGlyphRec_* FT_SubGlyph;$/;" t typeref:struct:FT_SubGlyphRec_ +FT_SubGlyphRec android/freetype/include/freetype/internal/ftgloadr.h /^ } FT_SubGlyphRec;$/;" t typeref:struct:FT_SubGlyphRec_ +FT_SubGlyphRec include/freetype/internal/ftgloadr.h /^ } FT_SubGlyphRec;$/;" t typeref:struct:FT_SubGlyphRec_ +FT_SubGlyphRec_ android/freetype/include/freetype/internal/ftgloadr.h /^ typedef struct FT_SubGlyphRec_$/;" s +FT_SubGlyphRec_ include/freetype/internal/ftgloadr.h /^ typedef struct FT_SubGlyphRec_$/;" s +FT_TRACE android/freetype/include/freetype/internal/ftdebug.h /^#define FT_TRACE(/;" d +FT_TRACE android/freetype/src/raster/ftraster.c /^#define FT_TRACE(/;" d file: +FT_TRACE android/freetype/src/smooth/ftgrays.c /^#define FT_TRACE(/;" d file: +FT_TRACE include/freetype/internal/ftdebug.h /^#define FT_TRACE(/;" d +FT_TRACE0 android/freetype/include/freetype/internal/ftdebug.h /^#define FT_TRACE0(/;" d +FT_TRACE0 include/freetype/internal/ftdebug.h /^#define FT_TRACE0(/;" d +FT_TRACE1 android/freetype/include/freetype/internal/ftdebug.h /^#define FT_TRACE1(/;" d +FT_TRACE1 android/freetype/src/raster/ftraster.c /^#define FT_TRACE1(/;" d file: +FT_TRACE1 include/freetype/internal/ftdebug.h /^#define FT_TRACE1(/;" d +FT_TRACE2 android/freetype/include/freetype/internal/ftdebug.h /^#define FT_TRACE2(/;" d +FT_TRACE2 include/freetype/internal/ftdebug.h /^#define FT_TRACE2(/;" d +FT_TRACE3 android/freetype/include/freetype/internal/ftdebug.h /^#define FT_TRACE3(/;" d +FT_TRACE3 include/freetype/internal/ftdebug.h /^#define FT_TRACE3(/;" d +FT_TRACE4 android/freetype/include/freetype/internal/ftdebug.h /^#define FT_TRACE4(/;" d +FT_TRACE4 include/freetype/internal/ftdebug.h /^#define FT_TRACE4(/;" d +FT_TRACE5 android/freetype/include/freetype/internal/ftdebug.h /^#define FT_TRACE5(/;" d +FT_TRACE5 include/freetype/internal/ftdebug.h /^#define FT_TRACE5(/;" d +FT_TRACE6 android/freetype/include/freetype/internal/ftdebug.h /^#define FT_TRACE6(/;" d +FT_TRACE6 android/freetype/src/raster/ftraster.c /^#define FT_TRACE6(/;" d file: +FT_TRACE6 include/freetype/internal/ftdebug.h /^#define FT_TRACE6(/;" d +FT_TRACE7 android/freetype/include/freetype/internal/ftdebug.h /^#define FT_TRACE7(/;" d +FT_TRACE7 include/freetype/internal/ftdebug.h /^#define FT_TRACE7(/;" d +FT_TRACE_DEF android/freetype/include/freetype/internal/ftdebug.h /^#define FT_TRACE_DEF(/;" d +FT_TRACE_DEF android/freetype/include/freetype/internal/ftdebug.h /^#undef FT_TRACE_DEF$/;" d +FT_TRACE_DEF android/freetype/src/base/ftdebug.c /^#define FT_TRACE_DEF(/;" d file: +FT_TRACE_DEF android/freetype/src/base/ftdebug.c /^#undef FT_TRACE_DEF$/;" d file: +FT_TRACE_DEF include/freetype/internal/ftdebug.h /^#define FT_TRACE_DEF(/;" d +FT_TRACE_DEF include/freetype/internal/ftdebug.h /^#undef FT_TRACE_DEF$/;" d +FT_TRIGONOMETRY_H android/freetype/include/freetype/config/ftheader.h /^#define FT_TRIGONOMETRY_H /;" d +FT_TRIGONOMETRY_H include/freetype/config/ftheader.h /^#define FT_TRIGONOMETRY_H /;" d +FT_TRIG_COSCALE android/freetype/src/base/fttrigon.c /^#define FT_TRIG_COSCALE /;" d file: +FT_TRIG_MAX_ITERS android/freetype/src/base/fttrigon.c /^#define FT_TRIG_MAX_ITERS /;" d file: +FT_TRIG_SCALE android/freetype/src/base/fttrigon.c /^#define FT_TRIG_SCALE /;" d file: +FT_TRUETYPE_ENGINE_TYPE_NONE android/freetype/include/freetype/ftmodapi.h /^ FT_TRUETYPE_ENGINE_TYPE_NONE = 0,$/;" e enum:FT_TrueTypeEngineType_ +FT_TRUETYPE_ENGINE_TYPE_NONE include/freetype/ftmodapi.h /^ FT_TRUETYPE_ENGINE_TYPE_NONE = 0,$/;" e enum:FT_TrueTypeEngineType_ +FT_TRUETYPE_ENGINE_TYPE_PATENTED android/freetype/include/freetype/ftmodapi.h /^ FT_TRUETYPE_ENGINE_TYPE_PATENTED$/;" e enum:FT_TrueTypeEngineType_ +FT_TRUETYPE_ENGINE_TYPE_PATENTED include/freetype/ftmodapi.h /^ FT_TRUETYPE_ENGINE_TYPE_PATENTED$/;" e enum:FT_TrueTypeEngineType_ +FT_TRUETYPE_ENGINE_TYPE_UNPATENTED android/freetype/include/freetype/ftmodapi.h /^ FT_TRUETYPE_ENGINE_TYPE_UNPATENTED,$/;" e enum:FT_TrueTypeEngineType_ +FT_TRUETYPE_ENGINE_TYPE_UNPATENTED include/freetype/ftmodapi.h /^ FT_TRUETYPE_ENGINE_TYPE_UNPATENTED,$/;" e enum:FT_TrueTypeEngineType_ +FT_TRUETYPE_IDS_H android/freetype/include/freetype/config/ftheader.h /^#define FT_TRUETYPE_IDS_H /;" d +FT_TRUETYPE_IDS_H include/freetype/config/ftheader.h /^#define FT_TRUETYPE_IDS_H /;" d +FT_TRUETYPE_TABLES_H android/freetype/include/freetype/config/ftheader.h /^#define FT_TRUETYPE_TABLES_H /;" d +FT_TRUETYPE_TABLES_H include/freetype/config/ftheader.h /^#define FT_TRUETYPE_TABLES_H /;" d +FT_TRUETYPE_TAGS_H android/freetype/include/freetype/config/ftheader.h /^#define FT_TRUETYPE_TAGS_H /;" d +FT_TRUETYPE_TAGS_H include/freetype/config/ftheader.h /^#define FT_TRUETYPE_TAGS_H /;" d +FT_TRUETYPE_UNPATENTED_H android/freetype/include/freetype/config/ftheader.h /^#define FT_TRUETYPE_UNPATENTED_H /;" d +FT_TRUETYPE_UNPATENTED_H include/freetype/config/ftheader.h /^#define FT_TRUETYPE_UNPATENTED_H /;" d +FT_TYPE1_TABLES_H android/freetype/include/freetype/config/ftheader.h /^#define FT_TYPE1_TABLES_H /;" d +FT_TYPE1_TABLES_H include/freetype/config/ftheader.h /^#define FT_TYPE1_TABLES_H /;" d +FT_TYPES_H android/freetype/include/freetype/config/ftheader.h /^#define FT_TYPES_H /;" d +FT_TYPES_H include/freetype/config/ftheader.h /^#define FT_TYPES_H /;" d +FT_Tag android/freetype/include/freetype/fttypes.h /^ typedef FT_UInt32 FT_Tag;$/;" t +FT_Tag include/freetype/fttypes.h /^ typedef FT_UInt32 FT_Tag;$/;" t +FT_Trace android/freetype/include/freetype/internal/ftdebug.h /^ } FT_Trace;$/;" t typeref:enum:FT_Trace_ +FT_Trace include/freetype/internal/ftdebug.h /^ } FT_Trace;$/;" t typeref:enum:FT_Trace_ +FT_Trace_ android/freetype/include/freetype/internal/ftdebug.h /^ typedef enum FT_Trace_$/;" g +FT_Trace_ include/freetype/internal/ftdebug.h /^ typedef enum FT_Trace_$/;" g +FT_Trace_Get_Name android/freetype/src/base/ftdebug.c /^ FT_Trace_Get_Name( FT_Int idx )$/;" f +FT_TrueTypeEngineType android/freetype/include/freetype/ftmodapi.h /^ } FT_TrueTypeEngineType;$/;" t typeref:enum:FT_TrueTypeEngineType_ +FT_TrueTypeEngineType include/freetype/ftmodapi.h /^ } FT_TrueTypeEngineType;$/;" t typeref:enum:FT_TrueTypeEngineType_ +FT_TrueTypeEngineType_ android/freetype/include/freetype/ftmodapi.h /^ typedef enum FT_TrueTypeEngineType_$/;" g +FT_TrueTypeEngineType_ include/freetype/ftmodapi.h /^ typedef enum FT_TrueTypeEngineType_$/;" g +FT_UFWord android/freetype/include/freetype/fttypes.h /^ typedef unsigned short FT_UFWord; \/* unsigned distance *\/$/;" t +FT_UFWord include/freetype/fttypes.h /^ typedef unsigned short FT_UFWord; \/* unsigned distance *\/$/;" t +FT_UFast android/freetype/include/freetype/config/ftconfig.h /^ typedef unsigned int FT_UFast;$/;" t +FT_UFast android/freetype/include/freetype/config/ftconfig.h /^ typedef unsigned long FT_UFast;$/;" t +FT_UFast include/freetype/config/ftconfig.h /^ typedef unsigned int FT_UFast;$/;" t +FT_UFast include/freetype/config/ftconfig.h /^ typedef unsigned long FT_UFast;$/;" t +FT_UINT16 android/freetype/include/freetype/internal/ftstream.h /^#define FT_UINT16(/;" d +FT_UINT16 include/freetype/internal/ftstream.h /^#define FT_UINT16(/;" d +FT_UINT32 android/freetype/include/freetype/internal/ftstream.h /^#define FT_UINT32(/;" d +FT_UINT32 include/freetype/internal/ftstream.h /^#define FT_UINT32(/;" d +FT_UINT_MAX android/freetype/include/freetype/config/ftstdlib.h /^#define FT_UINT_MAX /;" d +FT_UINT_MAX android/freetype/src/smooth/ftgrays.c /^#define FT_UINT_MAX /;" d file: +FT_UINT_MAX include/freetype/config/ftstdlib.h /^#define FT_UINT_MAX /;" d +FT_UInt android/freetype/include/freetype/fttypes.h /^ typedef unsigned int FT_UInt;$/;" t +FT_UInt android/freetype/src/raster/ftmisc.h /^ typedef unsigned int FT_UInt;$/;" t +FT_UInt include/freetype/fttypes.h /^ typedef unsigned int FT_UInt;$/;" t +FT_UInt16 android/freetype/include/freetype/config/ftconfig.h /^ typedef unsigned short FT_UInt16;$/;" t +FT_UInt16 include/freetype/config/ftconfig.h /^ typedef unsigned short FT_UInt16;$/;" t +FT_UInt32 android/freetype/include/freetype/config/ftconfig.h /^ typedef unsigned int FT_UInt32;$/;" t +FT_UInt32 android/freetype/include/freetype/config/ftconfig.h /^ typedef unsigned long FT_UInt32;$/;" t +FT_UInt32 include/freetype/config/ftconfig.h /^ typedef unsigned int FT_UInt32;$/;" t +FT_UInt32 include/freetype/config/ftconfig.h /^ typedef unsigned long FT_UInt32;$/;" t +FT_ULONG_MAX android/freetype/include/freetype/config/ftstdlib.h /^#define FT_ULONG_MAX /;" d +FT_ULONG_MAX include/freetype/config/ftstdlib.h /^#define FT_ULONG_MAX /;" d +FT_ULong android/freetype/include/freetype/fttypes.h /^ typedef unsigned long FT_ULong;$/;" t +FT_ULong android/freetype/src/raster/ftmisc.h /^ typedef unsigned long FT_ULong;$/;" t +FT_ULong include/freetype/fttypes.h /^ typedef unsigned long FT_ULong;$/;" t +FT_UNPATENTED_HINTING_H android/freetype/include/freetype/config/ftheader.h /^#define FT_UNPATENTED_HINTING_H /;" d +FT_UNPATENTED_HINTING_H include/freetype/config/ftheader.h /^#define FT_UNPATENTED_HINTING_H /;" d +FT_UNUSED android/freetype/include/freetype/config/ftconfig.h /^#define FT_UNUSED(/;" d +FT_UNUSED android/freetype/src/raster/ftraster.c /^#define FT_UNUSED(/;" d file: +FT_UNUSED android/freetype/src/smooth/ftgrays.c /^#define FT_UNUSED(/;" d file: +FT_UNUSED include/freetype/config/ftconfig.h /^#define FT_UNUSED(/;" d +FT_UNUSED_ARG android/freetype/src/truetype/ttinterp.c /^#define FT_UNUSED_ARG /;" d file: +FT_UNUSED_EXEC android/freetype/src/truetype/ttinterp.c /^#define FT_UNUSED_EXEC /;" d file: +FT_UNUSED_RASTER android/freetype/src/raster/ftraster.c /^#define FT_UNUSED_RASTER /;" d file: +FT_USE_MODULE android/freetype/src/base/ftinit.c /^#define FT_USE_MODULE(/;" d file: +FT_USE_MODULE android/freetype/src/base/ftinit.c /^#undef FT_USE_MODULE$/;" d file: +FT_UShort android/freetype/include/freetype/fttypes.h /^ typedef unsigned short FT_UShort;$/;" t +FT_UShort include/freetype/fttypes.h /^ typedef unsigned short FT_UShort;$/;" t +FT_UnitVector android/freetype/include/freetype/fttypes.h /^ } FT_UnitVector;$/;" t typeref:struct:FT_UnitVector_ +FT_UnitVector include/freetype/fttypes.h /^ } FT_UnitVector;$/;" t typeref:struct:FT_UnitVector_ +FT_UnitVector_ android/freetype/include/freetype/fttypes.h /^ typedef struct FT_UnitVector_$/;" s +FT_UnitVector_ include/freetype/fttypes.h /^ typedef struct FT_UnitVector_$/;" s +FT_VALIDATE_APPLE android/freetype/include/freetype/ftgxval.h /^#define FT_VALIDATE_APPLE /;" d +FT_VALIDATE_APPLE include/freetype/ftgxval.h /^#define FT_VALIDATE_APPLE /;" d +FT_VALIDATE_BASE android/freetype/include/freetype/ftotval.h /^#define FT_VALIDATE_BASE /;" d +FT_VALIDATE_BASE include/freetype/ftotval.h /^#define FT_VALIDATE_BASE /;" d +FT_VALIDATE_CKERN android/freetype/include/freetype/ftgxval.h /^#define FT_VALIDATE_CKERN /;" d +FT_VALIDATE_CKERN include/freetype/ftgxval.h /^#define FT_VALIDATE_CKERN /;" d +FT_VALIDATE_DEFAULT android/freetype/include/freetype/internal/ftvalid.h /^ FT_VALIDATE_DEFAULT = 0,$/;" e enum:FT_ValidationLevel_ +FT_VALIDATE_DEFAULT include/freetype/internal/ftvalid.h /^ FT_VALIDATE_DEFAULT = 0,$/;" e enum:FT_ValidationLevel_ +FT_VALIDATE_GDEF android/freetype/include/freetype/ftotval.h /^#define FT_VALIDATE_GDEF /;" d +FT_VALIDATE_GDEF include/freetype/ftotval.h /^#define FT_VALIDATE_GDEF /;" d +FT_VALIDATE_GPOS android/freetype/include/freetype/ftotval.h /^#define FT_VALIDATE_GPOS /;" d +FT_VALIDATE_GPOS include/freetype/ftotval.h /^#define FT_VALIDATE_GPOS /;" d +FT_VALIDATE_GSUB android/freetype/include/freetype/ftotval.h /^#define FT_VALIDATE_GSUB /;" d +FT_VALIDATE_GSUB include/freetype/ftotval.h /^#define FT_VALIDATE_GSUB /;" d +FT_VALIDATE_GX android/freetype/include/freetype/ftgxval.h /^#define FT_VALIDATE_GX /;" d +FT_VALIDATE_GX include/freetype/ftgxval.h /^#define FT_VALIDATE_GX /;" d +FT_VALIDATE_GX_BITFIELD android/freetype/include/freetype/ftgxval.h /^#define FT_VALIDATE_GX_BITFIELD(/;" d +FT_VALIDATE_GX_BITFIELD include/freetype/ftgxval.h /^#define FT_VALIDATE_GX_BITFIELD(/;" d +FT_VALIDATE_GX_LAST_INDEX android/freetype/include/freetype/ftgxval.h /^#define FT_VALIDATE_GX_LAST_INDEX /;" d +FT_VALIDATE_GX_LAST_INDEX include/freetype/ftgxval.h /^#define FT_VALIDATE_GX_LAST_INDEX /;" d +FT_VALIDATE_GX_LENGTH android/freetype/include/freetype/ftgxval.h /^#define FT_VALIDATE_GX_LENGTH /;" d +FT_VALIDATE_GX_LENGTH include/freetype/ftgxval.h /^#define FT_VALIDATE_GX_LENGTH /;" d +FT_VALIDATE_GX_START android/freetype/include/freetype/ftgxval.h /^#define FT_VALIDATE_GX_START /;" d +FT_VALIDATE_GX_START include/freetype/ftgxval.h /^#define FT_VALIDATE_GX_START /;" d +FT_VALIDATE_JSTF android/freetype/include/freetype/ftotval.h /^#define FT_VALIDATE_JSTF /;" d +FT_VALIDATE_JSTF include/freetype/ftotval.h /^#define FT_VALIDATE_JSTF /;" d +FT_VALIDATE_MATH android/freetype/include/freetype/ftotval.h /^#define FT_VALIDATE_MATH /;" d +FT_VALIDATE_MATH include/freetype/ftotval.h /^#define FT_VALIDATE_MATH /;" d +FT_VALIDATE_MS android/freetype/include/freetype/ftgxval.h /^#define FT_VALIDATE_MS /;" d +FT_VALIDATE_MS include/freetype/ftgxval.h /^#define FT_VALIDATE_MS /;" d +FT_VALIDATE_OT android/freetype/include/freetype/ftotval.h /^#define FT_VALIDATE_OT /;" d +FT_VALIDATE_OT include/freetype/ftotval.h /^#define FT_VALIDATE_OT /;" d +FT_VALIDATE_PARANOID android/freetype/include/freetype/internal/ftvalid.h /^ FT_VALIDATE_PARANOID$/;" e enum:FT_ValidationLevel_ +FT_VALIDATE_PARANOID include/freetype/internal/ftvalid.h /^ FT_VALIDATE_PARANOID$/;" e enum:FT_ValidationLevel_ +FT_VALIDATE_TIGHT android/freetype/include/freetype/internal/ftvalid.h /^ FT_VALIDATE_TIGHT,$/;" e enum:FT_ValidationLevel_ +FT_VALIDATE_TIGHT include/freetype/internal/ftvalid.h /^ FT_VALIDATE_TIGHT,$/;" e enum:FT_ValidationLevel_ +FT_VALIDATE_bsln android/freetype/include/freetype/ftgxval.h /^#define FT_VALIDATE_bsln /;" d +FT_VALIDATE_bsln include/freetype/ftgxval.h /^#define FT_VALIDATE_bsln /;" d +FT_VALIDATE_bsln_INDEX android/freetype/include/freetype/ftgxval.h /^#define FT_VALIDATE_bsln_INDEX /;" d +FT_VALIDATE_bsln_INDEX include/freetype/ftgxval.h /^#define FT_VALIDATE_bsln_INDEX /;" d +FT_VALIDATE_feat android/freetype/include/freetype/ftgxval.h /^#define FT_VALIDATE_feat /;" d +FT_VALIDATE_feat include/freetype/ftgxval.h /^#define FT_VALIDATE_feat /;" d +FT_VALIDATE_feat_INDEX android/freetype/include/freetype/ftgxval.h /^#define FT_VALIDATE_feat_INDEX /;" d +FT_VALIDATE_feat_INDEX include/freetype/ftgxval.h /^#define FT_VALIDATE_feat_INDEX /;" d +FT_VALIDATE_just android/freetype/include/freetype/ftgxval.h /^#define FT_VALIDATE_just /;" d +FT_VALIDATE_just include/freetype/ftgxval.h /^#define FT_VALIDATE_just /;" d +FT_VALIDATE_just_INDEX android/freetype/include/freetype/ftgxval.h /^#define FT_VALIDATE_just_INDEX /;" d +FT_VALIDATE_just_INDEX include/freetype/ftgxval.h /^#define FT_VALIDATE_just_INDEX /;" d +FT_VALIDATE_kern android/freetype/include/freetype/ftgxval.h /^#define FT_VALIDATE_kern /;" d +FT_VALIDATE_kern include/freetype/ftgxval.h /^#define FT_VALIDATE_kern /;" d +FT_VALIDATE_kern_INDEX android/freetype/include/freetype/ftgxval.h /^#define FT_VALIDATE_kern_INDEX /;" d +FT_VALIDATE_kern_INDEX include/freetype/ftgxval.h /^#define FT_VALIDATE_kern_INDEX /;" d +FT_VALIDATE_lcar android/freetype/include/freetype/ftgxval.h /^#define FT_VALIDATE_lcar /;" d +FT_VALIDATE_lcar include/freetype/ftgxval.h /^#define FT_VALIDATE_lcar /;" d +FT_VALIDATE_lcar_INDEX android/freetype/include/freetype/ftgxval.h /^#define FT_VALIDATE_lcar_INDEX /;" d +FT_VALIDATE_lcar_INDEX include/freetype/ftgxval.h /^#define FT_VALIDATE_lcar_INDEX /;" d +FT_VALIDATE_mort android/freetype/include/freetype/ftgxval.h /^#define FT_VALIDATE_mort /;" d +FT_VALIDATE_mort include/freetype/ftgxval.h /^#define FT_VALIDATE_mort /;" d +FT_VALIDATE_mort_INDEX android/freetype/include/freetype/ftgxval.h /^#define FT_VALIDATE_mort_INDEX /;" d +FT_VALIDATE_mort_INDEX include/freetype/ftgxval.h /^#define FT_VALIDATE_mort_INDEX /;" d +FT_VALIDATE_morx android/freetype/include/freetype/ftgxval.h /^#define FT_VALIDATE_morx /;" d +FT_VALIDATE_morx include/freetype/ftgxval.h /^#define FT_VALIDATE_morx /;" d +FT_VALIDATE_morx_INDEX android/freetype/include/freetype/ftgxval.h /^#define FT_VALIDATE_morx_INDEX /;" d +FT_VALIDATE_morx_INDEX include/freetype/ftgxval.h /^#define FT_VALIDATE_morx_INDEX /;" d +FT_VALIDATE_opbd android/freetype/include/freetype/ftgxval.h /^#define FT_VALIDATE_opbd /;" d +FT_VALIDATE_opbd include/freetype/ftgxval.h /^#define FT_VALIDATE_opbd /;" d +FT_VALIDATE_opbd_INDEX android/freetype/include/freetype/ftgxval.h /^#define FT_VALIDATE_opbd_INDEX /;" d +FT_VALIDATE_opbd_INDEX include/freetype/ftgxval.h /^#define FT_VALIDATE_opbd_INDEX /;" d +FT_VALIDATE_prop android/freetype/include/freetype/ftgxval.h /^#define FT_VALIDATE_prop /;" d +FT_VALIDATE_prop include/freetype/ftgxval.h /^#define FT_VALIDATE_prop /;" d +FT_VALIDATE_prop_INDEX android/freetype/include/freetype/ftgxval.h /^#define FT_VALIDATE_prop_INDEX /;" d +FT_VALIDATE_prop_INDEX include/freetype/ftgxval.h /^#define FT_VALIDATE_prop_INDEX /;" d +FT_VALIDATE_trak android/freetype/include/freetype/ftgxval.h /^#define FT_VALIDATE_trak /;" d +FT_VALIDATE_trak include/freetype/ftgxval.h /^#define FT_VALIDATE_trak /;" d +FT_VALIDATE_trak_INDEX android/freetype/include/freetype/ftgxval.h /^#define FT_VALIDATE_trak_INDEX /;" d +FT_VALIDATE_trak_INDEX include/freetype/ftgxval.h /^#define FT_VALIDATE_trak_INDEX /;" d +FT_VALIDATOR android/freetype/include/freetype/internal/ftvalid.h /^#define FT_VALIDATOR(/;" d +FT_VALIDATOR include/freetype/internal/ftvalid.h /^#define FT_VALIDATOR(/;" d +FT_ValidationLevel android/freetype/include/freetype/internal/ftvalid.h /^ } FT_ValidationLevel;$/;" t typeref:enum:FT_ValidationLevel_ +FT_ValidationLevel include/freetype/internal/ftvalid.h /^ } FT_ValidationLevel;$/;" t typeref:enum:FT_ValidationLevel_ +FT_ValidationLevel_ android/freetype/include/freetype/internal/ftvalid.h /^ typedef enum FT_ValidationLevel_$/;" g +FT_ValidationLevel_ include/freetype/internal/ftvalid.h /^ typedef enum FT_ValidationLevel_$/;" g +FT_Validator android/freetype/include/freetype/internal/ftvalid.h /^ typedef struct FT_ValidatorRec_ volatile* FT_Validator;$/;" t +FT_Validator include/freetype/internal/ftvalid.h /^ typedef struct FT_ValidatorRec_ volatile* FT_Validator;$/;" t +FT_ValidatorRec android/freetype/include/freetype/internal/ftvalid.h /^ } FT_ValidatorRec;$/;" t typeref:struct:FT_ValidatorRec_ +FT_ValidatorRec include/freetype/internal/ftvalid.h /^ } FT_ValidatorRec;$/;" t typeref:struct:FT_ValidatorRec_ +FT_ValidatorRec_ android/freetype/include/freetype/internal/ftvalid.h /^ typedef struct FT_ValidatorRec_$/;" s +FT_ValidatorRec_ include/freetype/internal/ftvalid.h /^ typedef struct FT_ValidatorRec_$/;" s +FT_Var_Axis android/freetype/include/freetype/ftmm.h /^ } FT_Var_Axis;$/;" t typeref:struct:FT_Var_Axis_ +FT_Var_Axis include/freetype/ftmm.h /^ } FT_Var_Axis;$/;" t typeref:struct:FT_Var_Axis_ +FT_Var_Axis_ android/freetype/include/freetype/ftmm.h /^ typedef struct FT_Var_Axis_$/;" s +FT_Var_Axis_ include/freetype/ftmm.h /^ typedef struct FT_Var_Axis_$/;" s +FT_Var_Named_Style android/freetype/include/freetype/ftmm.h /^ } FT_Var_Named_Style;$/;" t typeref:struct:FT_Var_Named_Style_ +FT_Var_Named_Style include/freetype/ftmm.h /^ } FT_Var_Named_Style;$/;" t typeref:struct:FT_Var_Named_Style_ +FT_Var_Named_Style_ android/freetype/include/freetype/ftmm.h /^ typedef struct FT_Var_Named_Style_$/;" s +FT_Var_Named_Style_ include/freetype/ftmm.h /^ typedef struct FT_Var_Named_Style_$/;" s +FT_Vector android/freetype/include/freetype/ftimage.h /^ } FT_Vector;$/;" t typeref:struct:FT_Vector_ +FT_Vector include/freetype/ftimage.h /^ } FT_Vector;$/;" t typeref:struct:FT_Vector_ +FT_Vector_ android/freetype/include/freetype/ftimage.h /^ typedef struct FT_Vector_$/;" s +FT_Vector_ include/freetype/ftimage.h /^ typedef struct FT_Vector_$/;" s +FT_Vector_From_Polar android/freetype/src/base/fttrigon.c /^ FT_Vector_From_Polar( FT_Vector* vec,$/;" f +FT_Vector_Polarize android/freetype/src/base/fttrigon.c /^ FT_Vector_Polarize( FT_Vector* vec,$/;" f +FT_Vector_Rotate android/freetype/src/base/fttrigon.c /^ FT_Vector_Rotate( FT_Vector* vec,$/;" f +FT_Vector_Transform android/freetype/src/base/ftoutln.c /^ FT_Vector_Transform( FT_Vector* vector,$/;" f +FT_Vector_Transform_Scaled android/freetype/src/base/ftcalc.c /^ FT_Vector_Transform_Scaled( FT_Vector* vector,$/;" f +FT_Vector_Unit android/freetype/src/base/fttrigon.c /^ FT_Vector_Unit( FT_Vector* vec,$/;" f +FT_WINFONTS_H android/freetype/include/freetype/config/ftheader.h /^#define FT_WINFONTS_H /;" d +FT_WINFONTS_H include/freetype/config/ftheader.h /^#define FT_WINFONTS_H /;" d +FT_WinFNT_Header android/freetype/include/freetype/ftwinfnt.h /^ typedef struct FT_WinFNT_HeaderRec_* FT_WinFNT_Header;$/;" t typeref:struct:FT_WinFNT_HeaderRec_ +FT_WinFNT_Header include/freetype/ftwinfnt.h /^ typedef struct FT_WinFNT_HeaderRec_* FT_WinFNT_Header;$/;" t typeref:struct:FT_WinFNT_HeaderRec_ +FT_WinFNT_HeaderRec android/freetype/include/freetype/ftwinfnt.h /^ } FT_WinFNT_HeaderRec;$/;" t typeref:struct:FT_WinFNT_HeaderRec_ +FT_WinFNT_HeaderRec include/freetype/ftwinfnt.h /^ } FT_WinFNT_HeaderRec;$/;" t typeref:struct:FT_WinFNT_HeaderRec_ +FT_WinFNT_HeaderRec_ android/freetype/include/freetype/ftwinfnt.h /^ typedef struct FT_WinFNT_HeaderRec_$/;" s +FT_WinFNT_HeaderRec_ include/freetype/ftwinfnt.h /^ typedef struct FT_WinFNT_HeaderRec_$/;" s +FT_WinFNT_ID_CP1250 android/freetype/include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_CP1250 /;" d +FT_WinFNT_ID_CP1250 include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_CP1250 /;" d +FT_WinFNT_ID_CP1251 android/freetype/include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_CP1251 /;" d +FT_WinFNT_ID_CP1251 include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_CP1251 /;" d +FT_WinFNT_ID_CP1252 android/freetype/include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_CP1252 /;" d +FT_WinFNT_ID_CP1252 include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_CP1252 /;" d +FT_WinFNT_ID_CP1253 android/freetype/include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_CP1253 /;" d +FT_WinFNT_ID_CP1253 include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_CP1253 /;" d +FT_WinFNT_ID_CP1254 android/freetype/include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_CP1254 /;" d +FT_WinFNT_ID_CP1254 include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_CP1254 /;" d +FT_WinFNT_ID_CP1255 android/freetype/include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_CP1255 /;" d +FT_WinFNT_ID_CP1255 include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_CP1255 /;" d +FT_WinFNT_ID_CP1256 android/freetype/include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_CP1256 /;" d +FT_WinFNT_ID_CP1256 include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_CP1256 /;" d +FT_WinFNT_ID_CP1257 android/freetype/include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_CP1257 /;" d +FT_WinFNT_ID_CP1257 include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_CP1257 /;" d +FT_WinFNT_ID_CP1258 android/freetype/include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_CP1258 /;" d +FT_WinFNT_ID_CP1258 include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_CP1258 /;" d +FT_WinFNT_ID_CP1361 android/freetype/include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_CP1361 /;" d +FT_WinFNT_ID_CP1361 include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_CP1361 /;" d +FT_WinFNT_ID_CP874 android/freetype/include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_CP874 /;" d +FT_WinFNT_ID_CP874 include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_CP874 /;" d +FT_WinFNT_ID_CP932 android/freetype/include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_CP932 /;" d +FT_WinFNT_ID_CP932 include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_CP932 /;" d +FT_WinFNT_ID_CP936 android/freetype/include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_CP936 /;" d +FT_WinFNT_ID_CP936 include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_CP936 /;" d +FT_WinFNT_ID_CP949 android/freetype/include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_CP949 /;" d +FT_WinFNT_ID_CP949 include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_CP949 /;" d +FT_WinFNT_ID_CP950 android/freetype/include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_CP950 /;" d +FT_WinFNT_ID_CP950 include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_CP950 /;" d +FT_WinFNT_ID_DEFAULT android/freetype/include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_DEFAULT /;" d +FT_WinFNT_ID_DEFAULT include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_DEFAULT /;" d +FT_WinFNT_ID_MAC android/freetype/include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_MAC /;" d +FT_WinFNT_ID_MAC include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_MAC /;" d +FT_WinFNT_ID_OEM android/freetype/include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_OEM /;" d +FT_WinFNT_ID_OEM include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_OEM /;" d +FT_WinFNT_ID_SYMBOL android/freetype/include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_SYMBOL /;" d +FT_WinFNT_ID_SYMBOL include/freetype/ftwinfnt.h /^#define FT_WinFNT_ID_SYMBOL /;" d +FT_WinFnt_GetHeaderFunc android/freetype/include/freetype/internal/services/svwinfnt.h /^ (*FT_WinFnt_GetHeaderFunc)( FT_Face face,$/;" t +FT_WinFnt_GetHeaderFunc include/freetype/internal/services/svwinfnt.h /^ (*FT_WinFnt_GetHeaderFunc)( FT_Face face,$/;" t +FT_XF86_FORMAT_BDF android/freetype/include/freetype/internal/services/svxf86nm.h /^#define FT_XF86_FORMAT_BDF /;" d +FT_XF86_FORMAT_BDF include/freetype/internal/services/svxf86nm.h /^#define FT_XF86_FORMAT_BDF /;" d +FT_XF86_FORMAT_CFF android/freetype/include/freetype/internal/services/svxf86nm.h /^#define FT_XF86_FORMAT_CFF /;" d +FT_XF86_FORMAT_CFF include/freetype/internal/services/svxf86nm.h /^#define FT_XF86_FORMAT_CFF /;" d +FT_XF86_FORMAT_CID android/freetype/include/freetype/internal/services/svxf86nm.h /^#define FT_XF86_FORMAT_CID /;" d +FT_XF86_FORMAT_CID include/freetype/internal/services/svxf86nm.h /^#define FT_XF86_FORMAT_CID /;" d +FT_XF86_FORMAT_PCF android/freetype/include/freetype/internal/services/svxf86nm.h /^#define FT_XF86_FORMAT_PCF /;" d +FT_XF86_FORMAT_PCF include/freetype/internal/services/svxf86nm.h /^#define FT_XF86_FORMAT_PCF /;" d +FT_XF86_FORMAT_PFR android/freetype/include/freetype/internal/services/svxf86nm.h /^#define FT_XF86_FORMAT_PFR /;" d +FT_XF86_FORMAT_PFR include/freetype/internal/services/svxf86nm.h /^#define FT_XF86_FORMAT_PFR /;" d +FT_XF86_FORMAT_TRUETYPE android/freetype/include/freetype/internal/services/svxf86nm.h /^#define FT_XF86_FORMAT_TRUETYPE /;" d +FT_XF86_FORMAT_TRUETYPE include/freetype/internal/services/svxf86nm.h /^#define FT_XF86_FORMAT_TRUETYPE /;" d +FT_XF86_FORMAT_TYPE_1 android/freetype/include/freetype/internal/services/svxf86nm.h /^#define FT_XF86_FORMAT_TYPE_1 /;" d +FT_XF86_FORMAT_TYPE_1 include/freetype/internal/services/svxf86nm.h /^#define FT_XF86_FORMAT_TYPE_1 /;" d +FT_XF86_FORMAT_TYPE_42 android/freetype/include/freetype/internal/services/svxf86nm.h /^#define FT_XF86_FORMAT_TYPE_42 /;" d +FT_XF86_FORMAT_TYPE_42 include/freetype/internal/services/svxf86nm.h /^#define FT_XF86_FORMAT_TYPE_42 /;" d +FT_XF86_FORMAT_WINFNT android/freetype/include/freetype/internal/services/svxf86nm.h /^#define FT_XF86_FORMAT_WINFNT /;" d +FT_XF86_FORMAT_WINFNT include/freetype/internal/services/svxf86nm.h /^#define FT_XF86_FORMAT_WINFNT /;" d +FT_XFREE86_H android/freetype/include/freetype/config/ftheader.h /^#define FT_XFREE86_H /;" d +FT_XFREE86_H include/freetype/config/ftheader.h /^#define FT_XFREE86_H /;" d +FT_ZERO android/freetype/include/freetype/internal/ftmemory.h /^#define FT_ZERO(/;" d +FT_ZERO include/freetype/internal/ftmemory.h /^#define FT_ZERO(/;" d +FT__MULFIX_ASSEMBLER android/freetype/include/freetype/config/ftconfig.h /^# define FT__MULFIX_ASSEMBLER /;" d +FUL src/picasso_gpc.cpp /^ FUL \/* Full non-intersection *\/$/;" e enum:picasso::__anon216 file: +FWD_MIN src/picasso_gpc.cpp /^#define FWD_MIN(/;" d file: +F_dot_P android/freetype/src/truetype/ttinterp.h /^ FT_Long F_dot_P; \/* dot product of freedom and projection *\/$/;" m struct:TT_ExecContextRec_ +Fabs src/include/math_type.h /^#define Fabs(/;" d +False include/picasso.h /^#define False /;" d +FileGroup tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def FileGroup(self, path):$/;" m class:PBXCopyFilesBuildPhase +FileGroup tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def FileGroup(self, path):$/;" m class:PBXFrameworksBuildPhase +FileGroup tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def FileGroup(self, path):$/;" m class:PBXHeadersBuildPhase +FileGroup tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def FileGroup(self, path):$/;" m class:PBXResourcesBuildPhase +FileGroup tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def FileGroup(self, path):$/;" m class:PBXSourcesBuildPhase +FileGroup tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def FileGroup(self, path):$/;" m class:XCBuildPhase +FileGroup tools/gyp/pylib/gyp/xcodeproj_file.py /^ def FileGroup(self, path):$/;" m class:PBXCopyFilesBuildPhase +FileGroup tools/gyp/pylib/gyp/xcodeproj_file.py /^ def FileGroup(self, path):$/;" m class:PBXFrameworksBuildPhase +FileGroup tools/gyp/pylib/gyp/xcodeproj_file.py /^ def FileGroup(self, path):$/;" m class:PBXHeadersBuildPhase +FileGroup tools/gyp/pylib/gyp/xcodeproj_file.py /^ def FileGroup(self, path):$/;" m class:PBXResourcesBuildPhase +FileGroup tools/gyp/pylib/gyp/xcodeproj_file.py /^ def FileGroup(self, path):$/;" m class:PBXSourcesBuildPhase +FileGroup tools/gyp/pylib/gyp/xcodeproj_file.py /^ def FileGroup(self, path):$/;" m class:XCBuildPhase +FileName android/freetype/include/freetype/tttables.h /^ FT_Char FileName[6];$/;" m struct:TT_PCLT_ +FileName include/freetype/tttables.h /^ FT_Char FileName[6];$/;" m struct:TT_PCLT_ +Filter tools/gyp/build/lib/gyp/MSVSProject.py /^class Filter(object):$/;" c +Filter tools/gyp/pylib/gyp/MSVSProject.py /^class Filter(object):$/;" c +FinalOutput tools/gyp/build/lib/gyp/generator/ninja.py /^ def FinalOutput(self):$/;" m class:Target +FinalOutput tools/gyp/pylib/gyp/generator/ninja.py /^ def FinalOutput(self):$/;" m class:Target +Finalize1 tools/gyp/build/lib/gyp/generator/xcode.py /^ def Finalize1(self, xcode_targets, serialize_all_tests):$/;" m class:XcodeProject +Finalize1 tools/gyp/pylib/gyp/generator/xcode.py /^ def Finalize1(self, xcode_targets, serialize_all_tests):$/;" m class:XcodeProject +Finalize2 tools/gyp/build/lib/gyp/generator/xcode.py /^ def Finalize2(self, xcode_targets, xcode_target_to_target_dict):$/;" m class:XcodeProject +Finalize2 tools/gyp/pylib/gyp/generator/xcode.py /^ def Finalize2(self, xcode_targets, xcode_target_to_target_dict):$/;" m class:XcodeProject +Finalize_Profile_Table android/freetype/src/raster/ftraster.c /^ Finalize_Profile_Table( RAS_ARG )$/;" f file: +FindBuildFiles tools/gyp/build/lib/gyp/__init__.py /^def FindBuildFiles():$/;" f +FindBuildFiles tools/gyp/pylib/gyp/__init__.py /^def FindBuildFiles():$/;" f +FindEnclosingBracketGroup tools/gyp/build/lib/gyp/input.py /^def FindEnclosingBracketGroup(input):$/;" f +FindEnclosingBracketGroup tools/gyp/pylib/gyp/input.py /^def FindEnclosingBracketGroup(input):$/;" f +FixFilenames tools/gyp/tools/pretty_vcproj.py /^def FixFilenames(filenames, current_directory):$/;" f +FixIfRelativePath tools/gyp/build/lib/gyp/common.py /^def FixIfRelativePath(path, relative_to):$/;" f +FixIfRelativePath tools/gyp/pylib/gyp/common.py /^def FixIfRelativePath(path, relative_to):$/;" f +FixPath tools/gyp/build/lib/gyp/__init__.py /^ def FixPath(path):$/;" f function:RegenerateFlags +FixPath tools/gyp/build/lib/gyp/generator/scons.py /^def FixPath(path, prefix):$/;" f +FixPath tools/gyp/pylib/gyp/__init__.py /^ def FixPath(path):$/;" f function:RegenerateFlags +FixPath tools/gyp/pylib/gyp/generator/scons.py /^def FixPath(path, prefix):$/;" f +FixVCMacroSlashes tools/gyp/build/lib/gyp/MSVSSettings.py /^def FixVCMacroSlashes(s):$/;" f +FixVCMacroSlashes tools/gyp/pylib/gyp/MSVSSettings.py /^def FixVCMacroSlashes(s):$/;" f +FixupPlatformCommand tools/gyp/build/lib/gyp/input.py /^def FixupPlatformCommand(cmd):$/;" f +FixupPlatformCommand tools/gyp/pylib/gyp/input.py /^def FixupPlatformCommand(cmd):$/;" f +Flags android/freetype/include/freetype/tttables.h /^ FT_UShort Flags;$/;" m struct:TT_Header_ +Flags include/freetype/tttables.h /^ FT_UShort Flags;$/;" m struct:TT_Header_ +FlatSolution tools/gyp/build/lib/gyp/MSVSVersion.py /^ def FlatSolution(self):$/;" m class:VisualStudioVersion +FlatSolution tools/gyp/pylib/gyp/MSVSVersion.py /^ def FlatSolution(self):$/;" m class:VisualStudioVersion +Flat_State android/freetype/src/raster/ftraster.c /^ Flat_State$/;" e enum:TStates_ file: +FlattenFilter tools/gyp/tools/pretty_vcproj.py /^def FlattenFilter(node):$/;" f +FlattenToList tools/gyp/build/lib/gyp/input.py /^ def FlattenToList(self):$/;" m class:DependencyGraphNode +FlattenToList tools/gyp/pylib/gyp/input.py /^ def FlattenToList(self):$/;" m class:DependencyGraphNode +Floor src/include/math_type.h /^#define Floor(/;" d +Flow_Down android/freetype/src/raster/ftraster.c /^ Flow_Down = -1$/;" e enum:TFlow_ file: +Flow_None android/freetype/src/raster/ftraster.c /^ Flow_None = 0,$/;" e enum:TFlow_ file: +Flow_Up android/freetype/src/raster/ftraster.c /^ Flow_Up = 1,$/;" e enum:TFlow_ file: +Fmod src/include/math_type.h /^#define Fmod(/;" d +FontBBox android/freetype/include/freetype/internal/t1types.h /^ FT_BBox FontBBox;$/;" m struct:AFM_FontInfoRec_ +FontBBox include/freetype/internal/t1types.h /^ FT_BBox FontBBox;$/;" m struct:AFM_FontInfoRec_ +FontInfo android/freetype/include/freetype/internal/psaux.h /^ AFM_FontInfo FontInfo;$/;" m struct:AFM_ParserRec_ +FontInfo include/freetype/internal/psaux.h /^ AFM_FontInfo FontInfo;$/;" m struct:AFM_ParserRec_ +FontNumber android/freetype/include/freetype/tttables.h /^ FT_ULong FontNumber;$/;" m struct:TT_PCLT_ +FontNumber include/freetype/tttables.h /^ FT_ULong FontNumber;$/;" m struct:TT_PCLT_ +Font_Direction android/freetype/include/freetype/tttables.h /^ FT_Short Font_Direction;$/;" m struct:TT_Header_ +Font_Direction include/freetype/tttables.h /^ FT_Short Font_Direction;$/;" m struct:TT_Header_ +Font_Revision android/freetype/include/freetype/tttables.h /^ FT_Fixed Font_Revision;$/;" m struct:TT_Header_ +Font_Revision include/freetype/tttables.h /^ FT_Fixed Font_Revision;$/;" m struct:TT_Header_ +FormatOpt tools/gyp/build/lib/gyp/__init__.py /^def FormatOpt(opt, value):$/;" f +FormatOpt tools/gyp/pylib/gyp/__init__.py /^def FormatOpt(opt, value):$/;" f +FormatType android/freetype/include/freetype/tttables.h /^ FT_Fixed FormatType;$/;" m struct:TT_Postscript_ +FormatType include/freetype/tttables.h /^ FT_Fixed FormatType;$/;" m struct:TT_Postscript_ +FrameworksGroup tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def FrameworksGroup(self):$/;" m class:PBXProject +FrameworksGroup tools/gyp/pylib/gyp/xcodeproj_file.py /^ def FrameworksGroup(self):$/;" m class:PBXProject +FrameworksPhase tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def FrameworksPhase(self):$/;" m class:PBXNativeTarget +FrameworksPhase tools/gyp/pylib/gyp/xcodeproj_file.py /^ def FrameworksPhase(self):$/;" m class:PBXNativeTarget +FullPath tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def FullPath(self):$/;" m class:XCHierarchicalElement +FullPath tools/gyp/pylib/gyp/xcodeproj_file.py /^ def FullPath(self):$/;" m class:XCHierarchicalElement +Function_Sweep_Init android/freetype/src/raster/ftraster.c /^ Function_Sweep_Init( RAS_ARGS Short* min,$/;" t file: +Function_Sweep_Span android/freetype/src/raster/ftraster.c /^ Function_Sweep_Span( RAS_ARGS Short y,$/;" t file: +Function_Sweep_Step android/freetype/src/raster/ftraster.c /^ Function_Sweep_Step( RAS_ARG );$/;" t file: +G src/include/color_type.h /^struct order_abgr { enum { A=0, B=1, G=2, R=3, rgba_tag }; }; \/\/ order_abgr$/;" e enum:picasso::order_abgr::__anon180 +G src/include/color_type.h /^struct order_argb { enum { A=0, R=1, G=2, B=3, rgba_tag }; }; \/\/ order_argb$/;" e enum:picasso::order_argb::__anon179 +G src/include/color_type.h /^struct order_bgr { enum { B=0, G=1, R=2, rgb_tag }; }; \/\/ order_bgr$/;" e enum:picasso::order_bgr::__anon177 +G src/include/color_type.h /^struct order_bgra { enum { B=0, G=1, R=2, A=3, rgba_tag }; }; \/\/ order_bgra$/;" e enum:picasso::order_bgra::__anon181 +G src/include/color_type.h /^struct order_rgb { enum { R=0, G=1, B=2, rgb_tag }; }; \/\/ order_rgb$/;" e enum:picasso::order_rgb::__anon176 +G src/include/color_type.h /^struct order_rgb555 { enum {R=5, G=5, B=5, rgbp_tag }; }; \/\/ order_rgb555$/;" e enum:picasso::order_rgb555::__anon183 +G src/include/color_type.h /^struct order_rgb565 { enum {R=5, G=6, B=5, rgbp_tag }; }; \/\/ order_rgb565$/;" e enum:picasso::order_rgb565::__anon182 +G src/include/color_type.h /^struct order_rgba { enum { R=0, G=1, B=2, A=3, rgba_tag }; }; \/\/ order_rgba$/;" e enum:picasso::order_rgba::__anon178 +GET_HI android/expat/lib/xmltok.c /^#define GET_HI(/;" d file: +GET_HI android/expat/lib/xmltok.c /^#undef GET_HI$/;" d file: +GET_LO android/expat/lib/xmltok.c /^#define GET_LO(/;" d file: +GET_LO android/expat/lib/xmltok.c /^#undef GET_LO$/;" d file: +GET_ShortIns android/freetype/src/truetype/ttinterp.c /^#define GET_ShortIns(/;" d file: +GPC_DIFF src/picasso_gpc.h /^ GPC_DIFF, \/\/ difference$/;" e enum:picasso::__anon219 +GPC_INT src/picasso_gpc.h /^ GPC_INT, \/\/ intersection$/;" e enum:picasso::__anon219 +GPC_UNION src/picasso_gpc.h /^ GPC_UNION \/\/ union$/;" e enum:picasso::__anon219 +GPC_XOR src/picasso_gpc.h /^ GPC_XOR, \/\/ exclusive or$/;" e enum:picasso::__anon219 +GRADIENT_SPREAD_PAD include/picasso.h /^ GRADIENT_SPREAD_PAD,$/;" e enum:_ps_gradient_spread +GRADIENT_SPREAD_REFLECT include/picasso.h /^ GRADIENT_SPREAD_REFLECT,$/;" e enum:_ps_gradient_spread +GRADIENT_SPREAD_REPEAT include/picasso.h /^ GRADIENT_SPREAD_REPEAT,$/;" e enum:_ps_gradient_spread +GRID_FIT_METRICS android/freetype/src/base/ftobjs.c /^#define GRID_FIT_METRICS$/;" d file: +GS android/freetype/src/truetype/ttinterp.h /^ TT_GraphicsState GS; \/* current graphics state *\/$/;" m struct:TT_ExecContextRec_ +GS android/freetype/src/truetype/ttobjs.h /^ TT_GraphicsState GS;$/;" m struct:TT_SizeRec_ +GUESS_VECTOR android/freetype/src/truetype/ttinterp.c /^#define GUESS_VECTOR(/;" d file: +GX_AVarCorrespondence android/freetype/src/truetype/ttgxvar.h /^ } GX_AVarCorrespondenceRec_, *GX_AVarCorrespondence;$/;" t typeref:struct:GX_AVarCorrespondenceRec_ +GX_AVarCorrespondenceRec_ android/freetype/src/truetype/ttgxvar.h /^ typedef struct GX_AVarCorrespondenceRec_$/;" s +GX_AVarCorrespondenceRec_ android/freetype/src/truetype/ttgxvar.h /^ } GX_AVarCorrespondenceRec_, *GX_AVarCorrespondence;$/;" t typeref:struct:GX_AVarCorrespondenceRec_ +GX_AVarSegment android/freetype/src/truetype/ttgxvar.h /^ } GX_AVarSegmentRec, *GX_AVarSegment;$/;" t typeref:struct:GX_AVarSegmentRec_ +GX_AVarSegmentRec android/freetype/src/truetype/ttgxvar.h /^ } GX_AVarSegmentRec, *GX_AVarSegment;$/;" t typeref:struct:GX_AVarSegmentRec_ +GX_AVarSegmentRec_ android/freetype/src/truetype/ttgxvar.h /^ typedef struct GX_AVarSegmentRec_$/;" s +GX_Blend android/freetype/include/freetype/internal/tttypes.h /^ typedef struct GX_BlendRec_ *GX_Blend;$/;" t typeref:struct:GX_BlendRec_ +GX_Blend include/freetype/internal/tttypes.h /^ typedef struct GX_BlendRec_ *GX_Blend;$/;" t typeref:struct:GX_BlendRec_ +GX_BlendRec android/freetype/src/truetype/ttgxvar.h /^ } GX_BlendRec;$/;" t typeref:struct:GX_BlendRec_ +GX_BlendRec_ android/freetype/src/truetype/ttgxvar.h /^ typedef struct GX_BlendRec_$/;" s +GX_DT_DELTAS_ARE_WORDS android/freetype/src/truetype/ttgxvar.c /^ GX_DT_DELTAS_ARE_WORDS = 0x40,$/;" e enum:__anon36 file: +GX_DT_DELTAS_ARE_ZERO android/freetype/src/truetype/ttgxvar.c /^ GX_DT_DELTAS_ARE_ZERO = 0x80,$/;" e enum:__anon36 file: +GX_DT_DELTA_RUN_COUNT_MASK android/freetype/src/truetype/ttgxvar.c /^ GX_DT_DELTA_RUN_COUNT_MASK = 0x3F$/;" e enum:__anon36 file: +GX_FVar_Axis android/freetype/src/truetype/ttgxvar.c /^ } GX_FVar_Axis;$/;" t typeref:struct:fvar_axis_ file: +GX_FVar_Head android/freetype/src/truetype/ttgxvar.c /^ } GX_FVar_Head;$/;" t typeref:struct:GX_FVar_Head_ file: +GX_FVar_Head_ android/freetype/src/truetype/ttgxvar.c /^ typedef struct GX_FVar_Head_$/;" s file: +GX_GVar_Head android/freetype/src/truetype/ttgxvar.c /^ } GX_GVar_Head;$/;" t typeref:struct:GX_GVar_Head_ file: +GX_GVar_Head_ android/freetype/src/truetype/ttgxvar.c /^ typedef struct GX_GVar_Head_$/;" s file: +GX_PT_POINTS_ARE_WORDS android/freetype/src/truetype/ttgxvar.c /^ GX_PT_POINTS_ARE_WORDS = 0x80,$/;" e enum:__anon35 file: +GX_PT_POINT_RUN_COUNT_MASK android/freetype/src/truetype/ttgxvar.c /^ GX_PT_POINT_RUN_COUNT_MASK = 0x7F$/;" e enum:__anon35 file: +GX_TC_RESERVED_TUPLE_FLAGS android/freetype/src/truetype/ttgxvar.h /^ GX_TC_RESERVED_TUPLE_FLAGS = 0x7000,$/;" e enum:GX_TupleCountFlags_ +GX_TC_TUPLES_SHARE_POINT_NUMBERS android/freetype/src/truetype/ttgxvar.h /^ GX_TC_TUPLES_SHARE_POINT_NUMBERS = 0x8000,$/;" e enum:GX_TupleCountFlags_ +GX_TC_TUPLE_COUNT_MASK android/freetype/src/truetype/ttgxvar.h /^ GX_TC_TUPLE_COUNT_MASK = 0x0FFF$/;" e enum:GX_TupleCountFlags_ +GX_TI_EMBEDDED_TUPLE_COORD android/freetype/src/truetype/ttgxvar.h /^ GX_TI_EMBEDDED_TUPLE_COORD = 0x8000,$/;" e enum:GX_TupleIndexFlags_ +GX_TI_INTERMEDIATE_TUPLE android/freetype/src/truetype/ttgxvar.h /^ GX_TI_INTERMEDIATE_TUPLE = 0x4000,$/;" e enum:GX_TupleIndexFlags_ +GX_TI_PRIVATE_POINT_NUMBERS android/freetype/src/truetype/ttgxvar.h /^ GX_TI_PRIVATE_POINT_NUMBERS = 0x2000,$/;" e enum:GX_TupleIndexFlags_ +GX_TI_RESERVED_TUPLE_FLAG android/freetype/src/truetype/ttgxvar.h /^ GX_TI_RESERVED_TUPLE_FLAG = 0x1000,$/;" e enum:GX_TupleIndexFlags_ +GX_TI_TUPLE_INDEX_MASK android/freetype/src/truetype/ttgxvar.h /^ GX_TI_TUPLE_INDEX_MASK = 0x0FFF$/;" e enum:GX_TupleIndexFlags_ +GX_TupleCountFlags android/freetype/src/truetype/ttgxvar.h /^ } GX_TupleCountFlags;$/;" t typeref:enum:GX_TupleCountFlags_ +GX_TupleCountFlags_ android/freetype/src/truetype/ttgxvar.h /^ typedef enum GX_TupleCountFlags_$/;" g +GX_TupleIndexFlags android/freetype/src/truetype/ttgxvar.h /^ } GX_TupleIndexFlags;$/;" t typeref:enum:GX_TupleIndexFlags_ +GX_TupleIndexFlags_ android/freetype/src/truetype/ttgxvar.h /^ typedef enum GX_TupleIndexFlags_$/;" g +GenerateConfig tools/gyp/build/lib/gyp/generator/scons.py /^def GenerateConfig(fp, config, indent='', src_dir=''):$/;" f +GenerateConfig tools/gyp/pylib/gyp/generator/scons.py /^def GenerateConfig(fp, config, indent='', src_dir=''):$/;" f +GenerateDescription tools/gyp/build/lib/gyp/generator/ninja.py /^ def GenerateDescription(self, verb, message, fallback):$/;" m class:NinjaWriter +GenerateDescription tools/gyp/pylib/gyp/generator/ninja.py /^ def GenerateDescription(self, verb, message, fallback):$/;" m class:NinjaWriter +GenerateEnvironmentFiles tools/gyp/build/lib/gyp/msvs_emulation.py /^def GenerateEnvironmentFiles(toplevel_build_dir, generator_flags, open_out):$/;" f +GenerateEnvironmentFiles tools/gyp/pylib/gyp/msvs_emulation.py /^def GenerateEnvironmentFiles(toplevel_build_dir, generator_flags, open_out):$/;" f +GenerateOutput tools/gyp/build/lib/gyp/generator/android.py /^def GenerateOutput(target_list, target_dicts, data, params):$/;" f +GenerateOutput tools/gyp/build/lib/gyp/generator/dump_dependency_json.py /^def GenerateOutput(target_list, target_dicts, data, params):$/;" f +GenerateOutput tools/gyp/build/lib/gyp/generator/eclipse.py /^def GenerateOutput(target_list, target_dicts, data, params):$/;" f +GenerateOutput tools/gyp/build/lib/gyp/generator/gypd.py /^def GenerateOutput(target_list, target_dicts, data, params):$/;" f +GenerateOutput tools/gyp/build/lib/gyp/generator/gypsh.py /^def GenerateOutput(target_list, target_dicts, data, params):$/;" f +GenerateOutput tools/gyp/build/lib/gyp/generator/msvs.py /^def GenerateOutput(target_list, target_dicts, data, params):$/;" f +GenerateOutput tools/gyp/build/lib/gyp/generator/ninja.py /^def GenerateOutput(target_list, target_dicts, data, params):$/;" f +GenerateOutput tools/gyp/build/lib/gyp/generator/scons.py /^def GenerateOutput(target_list, target_dicts, data, params):$/;" f +GenerateOutput tools/gyp/build/lib/gyp/generator/xcode.py /^def GenerateOutput(target_list, target_dicts, data, params):$/;" f +GenerateOutput tools/gyp/pylib/gyp/generator/android.py /^def GenerateOutput(target_list, target_dicts, data, params):$/;" f +GenerateOutput tools/gyp/pylib/gyp/generator/dump_dependency_json.py /^def GenerateOutput(target_list, target_dicts, data, params):$/;" f +GenerateOutput tools/gyp/pylib/gyp/generator/eclipse.py /^def GenerateOutput(target_list, target_dicts, data, params):$/;" f +GenerateOutput tools/gyp/pylib/gyp/generator/gypd.py /^def GenerateOutput(target_list, target_dicts, data, params):$/;" f +GenerateOutput tools/gyp/pylib/gyp/generator/gypsh.py /^def GenerateOutput(target_list, target_dicts, data, params):$/;" f +GenerateOutput tools/gyp/pylib/gyp/generator/msvs.py /^def GenerateOutput(target_list, target_dicts, data, params):$/;" f +GenerateOutput tools/gyp/pylib/gyp/generator/ninja.py /^def GenerateOutput(target_list, target_dicts, data, params):$/;" f +GenerateOutput tools/gyp/pylib/gyp/generator/scons.py /^def GenerateOutput(target_list, target_dicts, data, params):$/;" f +GenerateOutput tools/gyp/pylib/gyp/generator/xcode.py /^def GenerateOutput(target_list, target_dicts, data, params):$/;" f +GenerateOutputForConfig tools/gyp/build/lib/gyp/generator/eclipse.py /^def GenerateOutputForConfig(target_list, target_dicts, data, params,$/;" f +GenerateOutputForConfig tools/gyp/build/lib/gyp/generator/ninja.py /^def GenerateOutputForConfig(target_list, target_dicts, data, params,$/;" f +GenerateOutputForConfig tools/gyp/pylib/gyp/generator/eclipse.py /^def GenerateOutputForConfig(target_list, target_dicts, data, params,$/;" f +GenerateOutputForConfig tools/gyp/pylib/gyp/generator/ninja.py /^def GenerateOutputForConfig(target_list, target_dicts, data, params,$/;" f +GenerateSConscript tools/gyp/build/lib/gyp/generator/scons.py /^def GenerateSConscript(output_filename, spec, build_file, build_file_data):$/;" f +GenerateSConscript tools/gyp/pylib/gyp/generator/scons.py /^def GenerateSConscript(output_filename, spec, build_file, build_file_data):$/;" f +GenerateSConscriptWrapper tools/gyp/build/lib/gyp/generator/scons.py /^def GenerateSConscriptWrapper(build_file, build_file_data, name,$/;" f +GenerateSConscriptWrapper tools/gyp/pylib/gyp/generator/scons.py /^def GenerateSConscriptWrapper(build_file, build_file_data, name,$/;" f +GetAllDefines tools/gyp/build/lib/gyp/generator/eclipse.py /^def GetAllDefines(target_list, target_dicts, data, config_name):$/;" f +GetAllDefines tools/gyp/pylib/gyp/generator/eclipse.py /^def GetAllDefines(target_list, target_dicts, data, config_name):$/;" f +GetAllIncludeDirectories tools/gyp/build/lib/gyp/generator/eclipse.py /^def GetAllIncludeDirectories(target_list, target_dicts,$/;" f +GetAllIncludeDirectories tools/gyp/pylib/gyp/generator/eclipse.py /^def GetAllIncludeDirectories(target_list, target_dicts,$/;" f +GetArch tools/gyp/build/lib/gyp/msvs_emulation.py /^ def GetArch(self, config):$/;" m class:MsvsSettings +GetArch tools/gyp/pylib/gyp/msvs_emulation.py /^ def GetArch(self, config):$/;" m class:MsvsSettings +GetBuildPhaseByType tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def GetBuildPhaseByType(self, type):$/;" m class:PBXNativeTarget +GetBuildPhaseByType tools/gyp/pylib/gyp/xcodeproj_file.py /^ def GetBuildPhaseByType(self, type):$/;" m class:PBXNativeTarget +GetBuildSetting tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def GetBuildSetting(self, key):$/;" m class:XCBuildConfiguration +GetBuildSetting tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def GetBuildSetting(self, key):$/;" m class:XCConfigurationList +GetBuildSetting tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def GetBuildSetting(self, key):$/;" m class:XCTarget +GetBuildSetting tools/gyp/pylib/gyp/xcodeproj_file.py /^ def GetBuildSetting(self, key):$/;" m class:XCBuildConfiguration +GetBuildSetting tools/gyp/pylib/gyp/xcodeproj_file.py /^ def GetBuildSetting(self, key):$/;" m class:XCConfigurationList +GetBuildSetting tools/gyp/pylib/gyp/xcodeproj_file.py /^ def GetBuildSetting(self, key):$/;" m class:XCTarget +GetBundleContentsFolderPath tools/gyp/build/lib/gyp/xcode_emulation.py /^ def GetBundleContentsFolderPath(self):$/;" m class:XcodeSettings +GetBundleContentsFolderPath tools/gyp/pylib/gyp/xcode_emulation.py /^ def GetBundleContentsFolderPath(self):$/;" m class:XcodeSettings +GetBundlePlistPath tools/gyp/build/lib/gyp/xcode_emulation.py /^ def GetBundlePlistPath(self):$/;" m class:XcodeSettings +GetBundlePlistPath tools/gyp/pylib/gyp/xcode_emulation.py /^ def GetBundlePlistPath(self):$/;" m class:XcodeSettings +GetBundleResourceFolder tools/gyp/build/lib/gyp/xcode_emulation.py /^ def GetBundleResourceFolder(self):$/;" m class:XcodeSettings +GetBundleResourceFolder tools/gyp/pylib/gyp/xcode_emulation.py /^ def GetBundleResourceFolder(self):$/;" m class:XcodeSettings +GetCflags tools/gyp/build/lib/gyp/msvs_emulation.py /^ def GetCflags(self, config):$/;" m class:MsvsSettings +GetCflags tools/gyp/build/lib/gyp/xcode_emulation.py /^ def GetCflags(self, configname):$/;" m class:XcodeSettings +GetCflags tools/gyp/pylib/gyp/msvs_emulation.py /^ def GetCflags(self, config):$/;" m class:MsvsSettings +GetCflags tools/gyp/pylib/gyp/xcode_emulation.py /^ def GetCflags(self, configname):$/;" m class:XcodeSettings +GetCflagsC tools/gyp/build/lib/gyp/msvs_emulation.py /^ def GetCflagsC(self, config):$/;" m class:MsvsSettings +GetCflagsC tools/gyp/build/lib/gyp/xcode_emulation.py /^ def GetCflagsC(self, configname):$/;" m class:XcodeSettings +GetCflagsC tools/gyp/pylib/gyp/msvs_emulation.py /^ def GetCflagsC(self, config):$/;" m class:MsvsSettings +GetCflagsC tools/gyp/pylib/gyp/xcode_emulation.py /^ def GetCflagsC(self, configname):$/;" m class:XcodeSettings +GetCflagsCC tools/gyp/build/lib/gyp/msvs_emulation.py /^ def GetCflagsCC(self, config):$/;" m class:MsvsSettings +GetCflagsCC tools/gyp/build/lib/gyp/xcode_emulation.py /^ def GetCflagsCC(self, configname):$/;" m class:XcodeSettings +GetCflagsCC tools/gyp/pylib/gyp/msvs_emulation.py /^ def GetCflagsCC(self, config):$/;" m class:MsvsSettings +GetCflagsCC tools/gyp/pylib/gyp/xcode_emulation.py /^ def GetCflagsCC(self, configname):$/;" m class:XcodeSettings +GetCflagsObjC tools/gyp/build/lib/gyp/xcode_emulation.py /^ def GetCflagsObjC(self, configname):$/;" m class:XcodeSettings +GetCflagsObjC tools/gyp/pylib/gyp/xcode_emulation.py /^ def GetCflagsObjC(self, configname):$/;" m class:XcodeSettings +GetCflagsObjCC tools/gyp/build/lib/gyp/xcode_emulation.py /^ def GetCflagsObjCC(self, configname):$/;" m class:XcodeSettings +GetCflagsObjCC tools/gyp/pylib/gyp/xcode_emulation.py /^ def GetCflagsObjCC(self, configname):$/;" m class:XcodeSettings +GetChildByName tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def GetChildByName(self, name):$/;" m class:PBXGroup +GetChildByName tools/gyp/pylib/gyp/xcodeproj_file.py /^ def GetChildByName(self, name):$/;" m class:PBXGroup +GetChildByPath tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def GetChildByPath(self, path):$/;" m class:PBXGroup +GetChildByPath tools/gyp/pylib/gyp/xcodeproj_file.py /^ def GetChildByPath(self, path):$/;" m class:PBXGroup +GetChildByRemoteObject tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def GetChildByRemoteObject(self, remote_object):$/;" m class:PBXGroup +GetChildByRemoteObject tools/gyp/pylib/gyp/xcodeproj_file.py /^ def GetChildByRemoteObject(self, remote_object):$/;" m class:PBXGroup +GetChildrenVsprops tools/gyp/tools/pretty_vcproj.py /^def GetChildrenVsprops(filename):$/;" f +GetCompilerPath tools/gyp/build/lib/gyp/generator/eclipse.py /^def GetCompilerPath(target_list, target_dicts, data):$/;" f +GetCompilerPath tools/gyp/pylib/gyp/generator/eclipse.py /^def GetCompilerPath(target_list, target_dicts, data):$/;" f +GetCompilerPdbName tools/gyp/build/lib/gyp/msvs_emulation.py /^ def GetCompilerPdbName(self, config, expand_special):$/;" m class:MsvsSettings +GetCompilerPdbName tools/gyp/pylib/gyp/msvs_emulation.py /^ def GetCompilerPdbName(self, config, expand_special):$/;" m class:MsvsSettings +GetComputedDefines tools/gyp/build/lib/gyp/msvs_emulation.py /^ def GetComputedDefines(self, config):$/;" m class:MsvsSettings +GetComputedDefines tools/gyp/pylib/gyp/msvs_emulation.py /^ def GetComputedDefines(self, config):$/;" m class:MsvsSettings +GetConfiguationNodes tools/gyp/tools/pretty_vcproj.py /^def GetConfiguationNodes(vcproj):$/;" f +GetEdge tools/gyp/build/lib/gyp/common_test.py /^ def GetEdge(node):$/;" f function:TestTopologicallySorted.test_Cycle +GetEdge tools/gyp/build/lib/gyp/common_test.py /^ def GetEdge(node):$/;" f function:TestTopologicallySorted.test_Valid +GetEdge tools/gyp/pylib/gyp/common_test.py /^ def GetEdge(node):$/;" f function:TestTopologicallySorted.test_Cycle +GetEdge tools/gyp/pylib/gyp/common_test.py /^ def GetEdge(node):$/;" f function:TestTopologicallySorted.test_Valid +GetEdges tools/gyp/build/lib/gyp/generator/msvs.py /^ def GetEdges(node):$/;" f function:_GetMSBuildPropertyGroup +GetEdges tools/gyp/build/lib/gyp/xcode_emulation.py /^ def GetEdges(node):$/;" f function:_TopologicallySortedEnvVarKeys +GetEdges tools/gyp/pylib/gyp/generator/msvs.py /^ def GetEdges(node):$/;" f function:_GetMSBuildPropertyGroup +GetEdges tools/gyp/pylib/gyp/xcode_emulation.py /^ def GetEdges(node):$/;" f function:_TopologicallySortedEnvVarKeys +GetEnvironFallback tools/gyp/build/lib/gyp/common.py /^def GetEnvironFallback(var_list, default):$/;" f +GetEnvironFallback tools/gyp/build/lib/gyp/generator/make.py /^from gyp.common import GetEnvironFallback$/;" i +GetEnvironFallback tools/gyp/build/lib/gyp/generator/ninja.py /^from gyp.common import GetEnvironFallback$/;" i +GetEnvironFallback tools/gyp/pylib/gyp/common.py /^def GetEnvironFallback(var_list, default):$/;" f +GetEnvironFallback tools/gyp/pylib/gyp/generator/make.py /^from gyp.common import GetEnvironFallback$/;" i +GetEnvironFallback tools/gyp/pylib/gyp/generator/ninja.py /^from gyp.common import GetEnvironFallback$/;" i +GetExecutableName tools/gyp/build/lib/gyp/xcode_emulation.py /^ def GetExecutableName(self):$/;" m class:XcodeSettings +GetExecutableName tools/gyp/pylib/gyp/xcode_emulation.py /^ def GetExecutableName(self):$/;" m class:XcodeSettings +GetExecutablePath tools/gyp/build/lib/gyp/xcode_emulation.py /^ def GetExecutablePath(self):$/;" m class:XcodeSettings +GetExecutablePath tools/gyp/pylib/gyp/xcode_emulation.py /^ def GetExecutablePath(self):$/;" m class:XcodeSettings +GetFlagsModifications tools/gyp/build/lib/gyp/msvs_emulation.py /^ def GetFlagsModifications(self, input, output, implicit, command,$/;" m class:PrecompiledHeader +GetFlagsModifications tools/gyp/pylib/gyp/msvs_emulation.py /^ def GetFlagsModifications(self, input, output, implicit, command,$/;" m class:PrecompiledHeader +GetFlavor tools/gyp/build/lib/gyp/common.py /^def GetFlavor(params):$/;" f +GetFlavor tools/gyp/pylib/gyp/common.py /^def GetFlavor(params):$/;" f +GetFrameworkVersion tools/gyp/build/lib/gyp/xcode_emulation.py /^ def GetFrameworkVersion(self):$/;" m class:XcodeSettings +GetFrameworkVersion tools/gyp/pylib/gyp/xcode_emulation.py /^ def GetFrameworkVersion(self):$/;" m class:XcodeSettings +GetFullProductName tools/gyp/build/lib/gyp/xcode_emulation.py /^ def GetFullProductName(self):$/;" m class:XcodeSettings +GetFullProductName tools/gyp/pylib/gyp/xcode_emulation.py /^ def GetFullProductName(self):$/;" m class:XcodeSettings +GetIdlBuildData tools/gyp/build/lib/gyp/msvs_emulation.py /^ def GetIdlBuildData(self, source, config):$/;" m class:MsvsSettings +GetIdlBuildData tools/gyp/pylib/gyp/msvs_emulation.py /^ def GetIdlBuildData(self, source, config):$/;" m class:MsvsSettings +GetInclude tools/gyp/build/lib/gyp/xcode_emulation.py /^ def GetInclude(self, lang):$/;" m class:MacPrefixHeader +GetInclude tools/gyp/pylib/gyp/xcode_emulation.py /^ def GetInclude(self, lang):$/;" m class:MacPrefixHeader +GetIncludedBuildFiles tools/gyp/build/lib/gyp/input.py /^def GetIncludedBuildFiles(build_file_path, aux_data, included=None):$/;" f +GetIncludedBuildFiles tools/gyp/pylib/gyp/input.py /^def GetIncludedBuildFiles(build_file_path, aux_data, included=None):$/;" f +GetInstallName tools/gyp/build/lib/gyp/xcode_emulation.py /^ def GetInstallName(self):$/;" m class:XcodeSettings +GetInstallName tools/gyp/pylib/gyp/xcode_emulation.py /^ def GetInstallName(self):$/;" m class:XcodeSettings +GetInstallNameBase tools/gyp/build/lib/gyp/xcode_emulation.py /^ def GetInstallNameBase(self):$/;" m class:XcodeSettings +GetInstallNameBase tools/gyp/pylib/gyp/xcode_emulation.py /^ def GetInstallNameBase(self):$/;" m class:XcodeSettings +GetLdflags tools/gyp/build/lib/gyp/msvs_emulation.py /^ def GetLdflags(self, config, gyp_to_build_path, expand_special,$/;" m class:MsvsSettings +GetLdflags tools/gyp/build/lib/gyp/xcode_emulation.py /^ def GetLdflags(self, configname, product_dir, gyp_to_build_path):$/;" m class:XcodeSettings +GetLdflags tools/gyp/pylib/gyp/msvs_emulation.py /^ def GetLdflags(self, config, gyp_to_build_path, expand_special,$/;" m class:MsvsSettings +GetLdflags tools/gyp/pylib/gyp/xcode_emulation.py /^ def GetLdflags(self, configname, product_dir, gyp_to_build_path):$/;" m class:XcodeSettings +GetLibFlags tools/gyp/build/lib/gyp/msvs_emulation.py /^ def GetLibFlags(self, config, gyp_to_build_path):$/;" m class:MsvsSettings +GetLibFlags tools/gyp/pylib/gyp/msvs_emulation.py /^ def GetLibFlags(self, config, gyp_to_build_path):$/;" m class:MsvsSettings +GetLibtoolflags tools/gyp/build/lib/gyp/xcode_emulation.py /^ def GetLibtoolflags(self, configname):$/;" m class:XcodeSettings +GetLibtoolflags tools/gyp/pylib/gyp/xcode_emulation.py /^ def GetLibtoolflags(self, configname):$/;" m class:XcodeSettings +GetMacBundleResources tools/gyp/build/lib/gyp/xcode_emulation.py /^def GetMacBundleResources(product_dir, xcode_settings, resources):$/;" f +GetMacBundleResources tools/gyp/pylib/gyp/xcode_emulation.py /^def GetMacBundleResources(product_dir, xcode_settings, resources):$/;" f +GetMacInfoPlist tools/gyp/build/lib/gyp/xcode_emulation.py /^def GetMacInfoPlist(product_dir, xcode_settings, gyp_path_to_build_path):$/;" f +GetMacInfoPlist tools/gyp/pylib/gyp/xcode_emulation.py /^def GetMacInfoPlist(product_dir, xcode_settings, gyp_path_to_build_path):$/;" f +GetMachOType tools/gyp/build/lib/gyp/xcode_emulation.py /^ def GetMachOType(self):$/;" m class:XcodeSettings +GetMachOType tools/gyp/pylib/gyp/xcode_emulation.py /^ def GetMachOType(self):$/;" m class:XcodeSettings +GetObjDependencies tools/gyp/build/lib/gyp/msvs_emulation.py /^ def GetObjDependencies(self, sources, objs):$/;" m class:PrecompiledHeader +GetObjDependencies tools/gyp/build/lib/gyp/xcode_emulation.py /^ def GetObjDependencies(self, sources, objs):$/;" m class:MacPrefixHeader +GetObjDependencies tools/gyp/pylib/gyp/msvs_emulation.py /^ def GetObjDependencies(self, sources, objs):$/;" m class:PrecompiledHeader +GetObjDependencies tools/gyp/pylib/gyp/xcode_emulation.py /^ def GetObjDependencies(self, sources, objs):$/;" m class:MacPrefixHeader +GetOutputName tools/gyp/build/lib/gyp/msvs_emulation.py /^ def GetOutputName(self, config, expand_special):$/;" m class:MsvsSettings +GetOutputName tools/gyp/pylib/gyp/msvs_emulation.py /^ def GetOutputName(self, config, expand_special):$/;" m class:MsvsSettings +GetPDBName tools/gyp/build/lib/gyp/msvs_emulation.py /^ def GetPDBName(self, config, expand_special):$/;" m class:MsvsSettings +GetPDBName tools/gyp/pylib/gyp/msvs_emulation.py /^ def GetPDBName(self, config, expand_special):$/;" m class:MsvsSettings +GetPchBuildCommands tools/gyp/build/lib/gyp/msvs_emulation.py /^ def GetPchBuildCommands(self):$/;" m class:PrecompiledHeader +GetPchBuildCommands tools/gyp/build/lib/gyp/xcode_emulation.py /^ def GetPchBuildCommands(self):$/;" m class:MacPrefixHeader +GetPchBuildCommands tools/gyp/pylib/gyp/msvs_emulation.py /^ def GetPchBuildCommands(self):$/;" m class:PrecompiledHeader +GetPchBuildCommands tools/gyp/pylib/gyp/xcode_emulation.py /^ def GetPchBuildCommands(self):$/;" m class:MacPrefixHeader +GetPerTargetSetting tools/gyp/build/lib/gyp/xcode_emulation.py /^ def GetPerTargetSetting(self, setting, default=None):$/;" m class:XcodeSettings +GetPerTargetSetting tools/gyp/pylib/gyp/xcode_emulation.py /^ def GetPerTargetSetting(self, setting, default=None):$/;" m class:XcodeSettings +GetPerTargetSettings tools/gyp/build/lib/gyp/xcode_emulation.py /^ def GetPerTargetSettings(self):$/;" m class:XcodeSettings +GetPerTargetSettings tools/gyp/pylib/gyp/xcode_emulation.py /^ def GetPerTargetSettings(self):$/;" m class:XcodeSettings +GetPostbuildCommand tools/gyp/build/lib/gyp/generator/ninja.py /^ def GetPostbuildCommand(self, spec, output, output_binary,$/;" m class:NinjaWriter +GetPostbuildCommand tools/gyp/pylib/gyp/generator/ninja.py /^ def GetPostbuildCommand(self, spec, output, output_binary,$/;" m class:NinjaWriter +GetPrecompiledHeader tools/gyp/build/lib/gyp/msvs_emulation.py /^ def GetPrecompiledHeader(self, config, gyp_to_build_path):$/;" m class:MsvsSettings +GetPrecompiledHeader tools/gyp/pylib/gyp/msvs_emulation.py /^ def GetPrecompiledHeader(self, config, gyp_to_build_path):$/;" m class:MsvsSettings +GetPreferredTrySlaves tools/gyp/PRESUBMIT.py /^def GetPreferredTrySlaves():$/;" f +GetProductName tools/gyp/build/lib/gyp/xcode_emulation.py /^ def GetProductName(self):$/;" m class:XcodeSettings +GetProductName tools/gyp/pylib/gyp/xcode_emulation.py /^ def GetProductName(self):$/;" m class:XcodeSettings +GetProductType tools/gyp/build/lib/gyp/xcode_emulation.py /^ def GetProductType(self):$/;" m class:XcodeSettings +GetProductType tools/gyp/pylib/gyp/xcode_emulation.py /^ def GetProductType(self):$/;" m class:XcodeSettings +GetProperty tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def GetProperty(self, key):$/;" m class:XCObject +GetProperty tools/gyp/pylib/gyp/xcodeproj_file.py /^ def GetProperty(self, key):$/;" m class:XCObject +GetRcflags tools/gyp/build/lib/gyp/msvs_emulation.py /^ def GetRcflags(self, config, gyp_to_ninja_path):$/;" m class:MsvsSettings +GetRcflags tools/gyp/pylib/gyp/msvs_emulation.py /^ def GetRcflags(self, config, gyp_to_ninja_path):$/;" m class:MsvsSettings +GetShortIns android/freetype/src/truetype/ttinterp.c /^ GetShortIns( EXEC_OP )$/;" f file: +GetSortedXcodeEnv tools/gyp/build/lib/gyp/generator/ninja.py /^ def GetSortedXcodeEnv(self, additional_settings=None):$/;" m class:NinjaWriter +GetSortedXcodeEnv tools/gyp/build/lib/gyp/xcode_emulation.py /^def GetSortedXcodeEnv(xcode_settings, built_products_dir, srcroot,$/;" f +GetSortedXcodeEnv tools/gyp/pylib/gyp/generator/ninja.py /^ def GetSortedXcodeEnv(self, additional_settings=None):$/;" m class:NinjaWriter +GetSortedXcodeEnv tools/gyp/pylib/gyp/xcode_emulation.py /^def GetSortedXcodeEnv(xcode_settings, built_products_dir, srcroot,$/;" f +GetSortedXcodePostbuildEnv tools/gyp/build/lib/gyp/generator/ninja.py /^ def GetSortedXcodePostbuildEnv(self):$/;" m class:NinjaWriter +GetSortedXcodePostbuildEnv tools/gyp/pylib/gyp/generator/ninja.py /^ def GetSortedXcodePostbuildEnv(self):$/;" m class:NinjaWriter +GetSpecPostbuildCommands tools/gyp/build/lib/gyp/xcode_emulation.py /^def GetSpecPostbuildCommands(spec, quiet=False):$/;" f +GetSpecPostbuildCommands tools/gyp/pylib/gyp/xcode_emulation.py /^def GetSpecPostbuildCommands(spec, quiet=False):$/;" f +GetTargetPostbuilds tools/gyp/build/lib/gyp/xcode_emulation.py /^ def GetTargetPostbuilds(self, configname, output, output_binary, quiet=False):$/;" m class:XcodeSettings +GetTargetPostbuilds tools/gyp/pylib/gyp/xcode_emulation.py /^ def GetTargetPostbuilds(self, configname, output, output_binary, quiet=False):$/;" m class:XcodeSettings +GetVSMacroEnv tools/gyp/build/lib/gyp/msvs_emulation.py /^ def GetVSMacroEnv(self, base_to_build=None, config=None):$/;" m class:MsvsSettings +GetVSMacroEnv tools/gyp/pylib/gyp/msvs_emulation.py /^ def GetVSMacroEnv(self, base_to_build=None, config=None):$/;" m class:MsvsSettings +GetVSVersion tools/gyp/build/lib/gyp/msvs_emulation.py /^def GetVSVersion(generator_flags):$/;" f +GetVSVersion tools/gyp/pylib/gyp/msvs_emulation.py /^def GetVSVersion(generator_flags):$/;" f +GetWrapperExtension tools/gyp/build/lib/gyp/xcode_emulation.py /^ def GetWrapperExtension(self):$/;" m class:XcodeSettings +GetWrapperExtension tools/gyp/pylib/gyp/xcode_emulation.py /^ def GetWrapperExtension(self):$/;" m class:XcodeSettings +GetWrapperName tools/gyp/build/lib/gyp/xcode_emulation.py /^ def GetWrapperName(self):$/;" m class:XcodeSettings +GetWrapperName tools/gyp/pylib/gyp/xcode_emulation.py /^ def GetWrapperName(self):$/;" m class:XcodeSettings +Glyph_Data_Format android/freetype/include/freetype/tttables.h /^ FT_Short Glyph_Data_Format;$/;" m struct:TT_Header_ +Glyph_Data_Format include/freetype/tttables.h /^ FT_Short Glyph_Data_Format;$/;" m struct:TT_Header_ +GypBuild tools/gyp/buildbot/buildbot_run.py /^def GypBuild():$/;" f +GypError tools/gyp/build/lib/gyp/__init__.py /^from gyp.common import GypError$/;" i +GypError tools/gyp/build/lib/gyp/common.py /^class GypError(Exception):$/;" c +GypError tools/gyp/build/lib/gyp/generator/msvs.py /^from gyp.common import GypError$/;" i +GypError tools/gyp/build/lib/gyp/input.py /^from gyp.common import GypError$/;" i +GypError tools/gyp/pylib/gyp/__init__.py /^from gyp.common import GypError$/;" i +GypError tools/gyp/pylib/gyp/common.py /^class GypError(Exception):$/;" c +GypError tools/gyp/pylib/gyp/generator/msvs.py /^from gyp.common import GypError$/;" i +GypError tools/gyp/pylib/gyp/input.py /^from gyp.common import GypError$/;" i +GypPathToNinja tools/gyp/build/lib/gyp/generator/ninja.py /^ def GypPathToNinja(self, path, env=None):$/;" m class:NinjaWriter +GypPathToNinja tools/gyp/pylib/gyp/generator/ninja.py /^ def GypPathToNinja(self, path, env=None):$/;" m class:NinjaWriter +GypPathToUniqueOutput tools/gyp/build/lib/gyp/generator/ninja.py /^ def GypPathToUniqueOutput(self, path, qualified=True):$/;" m class:NinjaWriter +GypPathToUniqueOutput tools/gyp/pylib/gyp/generator/ninja.py /^ def GypPathToUniqueOutput(self, path, qualified=True):$/;" m class:NinjaWriter +GypTestFormat tools/gyp/buildbot/buildbot_run.py /^def GypTestFormat(title, format=None, msvs_version=None):$/;" f +HASH_TABLE android/expat/lib/xmlparse.c /^} HASH_TABLE;$/;" t typeref:struct:__anon8 file: +HASH_TABLE_ITER android/expat/lib/xmlparse.c /^} HASH_TABLE_ITER;$/;" t typeref:struct:__anon9 file: +HAVE_BCOPY android/expat/expat_config.h /^#define HAVE_BCOPY /;" d +HAVE_BCOPY android/expat/lib/amigaconfig.h /^#define HAVE_BCOPY /;" d +HAVE_BCOPY android/expat/lib/macconfig.h /^#undef HAVE_BCOPY$/;" d +HAVE_CHECK_H android/expat/lib/amigaconfig.h /^#undef HAVE_CHECK_H$/;" d +HAVE_DLFCN_H android/expat/expat_config.h /^#define HAVE_DLFCN_H /;" d +HAVE_FCNTL_H android/expat/expat_config.h /^#define HAVE_FCNTL_H /;" d +HAVE_GETPAGESIZE android/expat/expat_config.h /^#define HAVE_GETPAGESIZE /;" d +HAVE_INTTYPES_H android/expat/expat_config.h /^#define HAVE_INTTYPES_H /;" d +HAVE_LIMIT_ON_IDENTS android/freetype/include/freetype/ttnameid.h /^#define HAVE_LIMIT_ON_IDENTS$/;" d +HAVE_LIMIT_ON_IDENTS include/freetype/ttnameid.h /^#define HAVE_LIMIT_ON_IDENTS$/;" d +HAVE_MEMMOVE android/expat/expat_config.h /^#define HAVE_MEMMOVE /;" d +HAVE_MEMMOVE android/expat/lib/amigaconfig.h /^#define HAVE_MEMMOVE /;" d +HAVE_MEMMOVE android/expat/lib/macconfig.h /^#define HAVE_MEMMOVE$/;" d +HAVE_MEMMOVE android/expat/lib/winconfig.h /^#define HAVE_MEMMOVE$/;" d +HAVE_MEMORY_H android/expat/expat_config.h /^#define HAVE_MEMORY_H /;" d +HAVE_MMAP android/expat/expat_config.h /^#define HAVE_MMAP /;" d +HAVE_MMAP android/expat/lib/macconfig.h /^#undef HAVE_MMAP$/;" d +HAVE_STDINT_H android/expat/expat_config.h /^#define HAVE_STDINT_H /;" d +HAVE_STDLIB_H android/expat/expat_config.h /^#define HAVE_STDLIB_H /;" d +HAVE_STRINGS_H android/expat/expat_config.h /^#define HAVE_STRINGS_H /;" d +HAVE_STRING_H android/expat/expat_config.h /^#define HAVE_STRING_H /;" d +HAVE_SYS_PARAM_H android/expat/expat_config.h /^#define HAVE_SYS_PARAM_H /;" d +HAVE_SYS_STAT_H android/expat/expat_config.h /^#define HAVE_SYS_STAT_H /;" d +HAVE_SYS_TYPES_H android/expat/expat_config.h /^#define HAVE_SYS_TYPES_H /;" d +HAVE_UNISTD_H android/expat/expat_config.h /^#define HAVE_UNISTD_H /;" d +HAVE_UNISTD_H android/expat/lib/amigaconfig.h /^#define HAVE_UNISTD_H /;" d +HAVE_UNISTD_H android/expat/lib/macconfig.h /^#undef HAVE_UNISTD_H$/;" d +HasBuildSetting tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def HasBuildSetting(self, key):$/;" m class:XCBuildConfiguration +HasBuildSetting tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def HasBuildSetting(self, key):$/;" m class:XCConfigurationList +HasBuildSetting tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def HasBuildSetting(self, key):$/;" m class:XCTarget +HasBuildSetting tools/gyp/pylib/gyp/xcodeproj_file.py /^ def HasBuildSetting(self, key):$/;" m class:XCBuildConfiguration +HasBuildSetting tools/gyp/pylib/gyp/xcodeproj_file.py /^ def HasBuildSetting(self, key):$/;" m class:XCConfigurationList +HasBuildSetting tools/gyp/pylib/gyp/xcodeproj_file.py /^ def HasBuildSetting(self, key):$/;" m class:XCTarget +HasExplicitAsmRules tools/gyp/build/lib/gyp/msvs_emulation.py /^ def HasExplicitAsmRules(self, spec):$/;" m class:MsvsSettings +HasExplicitAsmRules tools/gyp/pylib/gyp/msvs_emulation.py /^ def HasExplicitAsmRules(self, spec):$/;" m class:MsvsSettings +HasExplicitIdlRules tools/gyp/build/lib/gyp/msvs_emulation.py /^ def HasExplicitIdlRules(self, spec):$/;" m class:MsvsSettings +HasExplicitIdlRules tools/gyp/pylib/gyp/msvs_emulation.py /^ def HasExplicitIdlRules(self, spec):$/;" m class:MsvsSettings +HasProperty tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def HasProperty(self, key):$/;" m class:XCObject +HasProperty tools/gyp/pylib/gyp/xcodeproj_file.py /^ def HasProperty(self, key):$/;" m class:XCObject +Hashables tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def Hashables(self):$/;" m class:PBXBuildFile +Hashables tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def Hashables(self):$/;" m class:PBXBuildRule +Hashables tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def Hashables(self):$/;" m class:PBXContainerItemProxy +Hashables tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def Hashables(self):$/;" m class:PBXGroup +Hashables tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def Hashables(self):$/;" m class:PBXTargetDependency +Hashables tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def Hashables(self):$/;" m class:XCHierarchicalElement +Hashables tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def Hashables(self):$/;" m class:XCObject +Hashables tools/gyp/pylib/gyp/xcodeproj_file.py /^ def Hashables(self):$/;" m class:PBXBuildFile +Hashables tools/gyp/pylib/gyp/xcodeproj_file.py /^ def Hashables(self):$/;" m class:PBXBuildRule +Hashables tools/gyp/pylib/gyp/xcodeproj_file.py /^ def Hashables(self):$/;" m class:PBXContainerItemProxy +Hashables tools/gyp/pylib/gyp/xcodeproj_file.py /^ def Hashables(self):$/;" m class:PBXGroup +Hashables tools/gyp/pylib/gyp/xcodeproj_file.py /^ def Hashables(self):$/;" m class:PBXTargetDependency +Hashables tools/gyp/pylib/gyp/xcodeproj_file.py /^ def Hashables(self):$/;" m class:XCHierarchicalElement +Hashables tools/gyp/pylib/gyp/xcodeproj_file.py /^ def Hashables(self):$/;" m class:XCObject +HashablesForChild tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def HashablesForChild(self):$/;" m class:PBXGroup +HashablesForChild tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def HashablesForChild(self):$/;" m class:XCObject +HashablesForChild tools/gyp/pylib/gyp/xcodeproj_file.py /^ def HashablesForChild(self):$/;" m class:PBXGroup +HashablesForChild tools/gyp/pylib/gyp/xcodeproj_file.py /^ def HashablesForChild(self):$/;" m class:XCObject +HeadersPhase tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def HeadersPhase(self):$/;" m class:PBXNativeTarget +HeadersPhase tools/gyp/pylib/gyp/xcodeproj_file.py /^ def HeadersPhase(self):$/;" m class:PBXNativeTarget +Horizontal_Gray_Sweep_Drop android/freetype/src/raster/ftraster.c /^ Horizontal_Gray_Sweep_Drop( RAS_ARGS Short y,$/;" f file: +Horizontal_Gray_Sweep_Span android/freetype/src/raster/ftraster.c /^ Horizontal_Gray_Sweep_Span( RAS_ARGS Short y,$/;" f file: +Horizontal_Sweep_Drop android/freetype/src/raster/ftraster.c /^ Horizontal_Sweep_Drop( RAS_ARGS Short y,$/;" f file: +Horizontal_Sweep_Init android/freetype/src/raster/ftraster.c /^ Horizontal_Sweep_Init( RAS_ARGS Short* min,$/;" f file: +Horizontal_Sweep_Span android/freetype/src/raster/ftraster.c /^ Horizontal_Sweep_Span( RAS_ARGS Short y,$/;" f file: +Horizontal_Sweep_Step android/freetype/src/raster/ftraster.c /^ Horizontal_Sweep_Step( RAS_ARG )$/;" f file: +ICHAR android/expat/lib/xmlparse.c /^typedef char ICHAR;$/;" t file: +ICHAR android/expat/lib/xmlparse.c /^typedef unsigned short ICHAR;$/;" t file: +IDefs android/freetype/src/truetype/ttinterp.h /^ TT_DefArray IDefs; \/* table of IDefs entries *\/$/;" m struct:TT_ExecContextRec_ +IGNORE_SECTION_TOK_VTABLE android/expat/lib/xmltok.c /^#define IGNORE_SECTION_TOK_VTABLE /;" d file: +ILI src/picasso_gpc.cpp /^ ILI, \/* Internal left intermediate *\/$/;" e enum:picasso::__anon216 file: +IMM src/picasso_gpc.cpp /^ IMM, \/* Internal maximum and minimum *\/$/;" e enum:picasso::__anon216 file: +IMN src/picasso_gpc.cpp /^ IMN, \/* Internal minimum *\/$/;" e enum:picasso::__anon216 file: +IMX src/picasso_gpc.cpp /^ IMX, \/* Internal maximum *\/$/;" e enum:picasso::__anon216 file: +INIT_ATTS_SIZE android/expat/lib/xmlparse.c /^#define INIT_ATTS_SIZE /;" d file: +INIT_ATTS_VERSION android/expat/lib/xmlparse.c /^#define INIT_ATTS_VERSION /;" d file: +INIT_BLOCK_SIZE android/expat/lib/xmlparse.c /^#define INIT_BLOCK_SIZE /;" d file: +INIT_BUFFER_SIZE android/expat/lib/xmlparse.c /^#define INIT_BUFFER_SIZE /;" d file: +INIT_DATA_BUF_SIZE android/expat/lib/xmlparse.c /^#define INIT_DATA_BUF_SIZE /;" d file: +INIT_ENCODING android/expat/lib/xmltok.h /^} INIT_ENCODING;$/;" t typeref:struct:__anon22 +INIT_ENC_INDEX android/expat/lib/xmltok.c /^#define INIT_ENC_INDEX(/;" d file: +INIT_POWER android/expat/lib/xmlparse.c /^#define INIT_POWER /;" d file: +INIT_SCAFFOLD_ELEMENTS android/expat/lib/xmlparse.c /^#define INIT_SCAFFOLD_ELEMENTS /;" d file: +INIT_TAG_BUF_SIZE android/expat/lib/xmlparse.c /^#define INIT_TAG_BUF_SIZE /;" d file: +INS_ARG android/freetype/src/truetype/ttinterp.c /^#define INS_ARG /;" d file: +INS_Goto_CodeRange android/freetype/src/truetype/ttinterp.c /^#define INS_Goto_CodeRange(/;" d file: +INS_SxVTL android/freetype/src/truetype/ttinterp.c /^#define INS_SxVTL(/;" d file: +INT_TO_F26DOT6 android/freetype/include/freetype/internal/ftcalc.h /^#define INT_TO_F26DOT6(/;" d +INT_TO_F26DOT6 include/freetype/internal/ftcalc.h /^#define INT_TO_F26DOT6(/;" d +INT_TO_F2DOT14 android/freetype/include/freetype/internal/ftcalc.h /^#define INT_TO_F2DOT14(/;" d +INT_TO_F2DOT14 include/freetype/internal/ftcalc.h /^#define INT_TO_F2DOT14(/;" d +INT_TO_FIXED android/freetype/include/freetype/internal/ftcalc.h /^#define INT_TO_FIXED(/;" d +INT_TO_FIXED include/freetype/internal/ftcalc.h /^#define INT_TO_FIXED(/;" d +INT_TO_SCALAR src/include/math_type.h /^#define INT_TO_SCALAR(/;" d +INVALID_CASES android/expat/lib/xmltok_impl.c /^#define INVALID_CASES(/;" d file: +INVALID_CASES android/expat/lib/xmltok_impl.c /^#undef INVALID_CASES$/;" d file: +INVALID_LEAD_CASE android/expat/lib/xmltok_impl.c /^#define INVALID_LEAD_CASE(/;" d file: +IP android/freetype/src/truetype/ttinterp.h /^ FT_Long IP; \/* current instruction pointer *\/$/;" m struct:TT_ExecContextRec_ +IRI src/picasso_gpc.cpp /^ IRI, \/* Internal right intermediate *\/$/;" e enum:picasso::__anon216 file: +ISO_8859_1_ENC android/expat/lib/xmltok.c /^ ISO_8859_1_ENC = 0,$/;" e enum:__anon20 file: +IS_HINTED android/freetype/src/truetype/ttgload.c /^#define IS_HINTED(/;" d file: +IS_HINTED android/freetype/src/truetype/ttgload.c /^#undef IS_HINTED$/;" d file: +IS_INVALID_CHAR android/expat/lib/xmltok.c /^#define IS_INVALID_CHAR(/;" d file: +IS_INVALID_CHAR android/expat/lib/xmltok.c /^#undef IS_INVALID_CHAR$/;" d file: +IS_INVALID_CHAR android/expat/lib/xmltok_impl.c /^#define IS_INVALID_CHAR(/;" d file: +IS_NAME_CHAR android/expat/lib/xmltok.c /^#define IS_NAME_CHAR(/;" d file: +IS_NAME_CHAR android/expat/lib/xmltok.c /^#undef IS_NAME_CHAR$/;" d file: +IS_NAME_CHAR_MINBPC android/expat/lib/xmltok.c /^#define IS_NAME_CHAR_MINBPC(/;" d file: +IS_NAME_CHAR_MINBPC android/expat/lib/xmltok.c /^#undef IS_NAME_CHAR_MINBPC$/;" d file: +IS_NMSTRT_CHAR android/expat/lib/xmltok.c /^#define IS_NMSTRT_CHAR(/;" d file: +IS_NMSTRT_CHAR android/expat/lib/xmltok.c /^#undef IS_NMSTRT_CHAR$/;" d file: +IS_NMSTRT_CHAR_MINBPC android/expat/lib/xmltok.c /^#define IS_NMSTRT_CHAR_MINBPC(/;" d file: +IS_NMSTRT_CHAR_MINBPC android/expat/lib/xmltok.c /^#undef IS_NMSTRT_CHAR_MINBPC$/;" d file: +IS_OCTAL_DIGIT android/freetype/src/psaux/psobjs.c /^#define IS_OCTAL_DIGIT(/;" d file: +IS_PS_BASE85 android/freetype/include/freetype/internal/psaux.h /^#define IS_PS_BASE85(/;" d +IS_PS_BASE85 include/freetype/internal/psaux.h /^#define IS_PS_BASE85(/;" d +IS_PS_DELIM android/freetype/include/freetype/internal/psaux.h /^#define IS_PS_DELIM(/;" d +IS_PS_DELIM include/freetype/internal/psaux.h /^#define IS_PS_DELIM(/;" d +IS_PS_DIGIT android/freetype/include/freetype/internal/psaux.h /^#define IS_PS_DIGIT(/;" d +IS_PS_DIGIT include/freetype/internal/psaux.h /^#define IS_PS_DIGIT(/;" d +IS_PS_NEWLINE android/freetype/include/freetype/internal/psaux.h /^#define IS_PS_NEWLINE(/;" d +IS_PS_NEWLINE include/freetype/internal/psaux.h /^#define IS_PS_NEWLINE(/;" d +IS_PS_SPACE android/freetype/include/freetype/internal/psaux.h /^#define IS_PS_SPACE(/;" d +IS_PS_SPACE include/freetype/internal/psaux.h /^#define IS_PS_SPACE(/;" d +IS_PS_SPECIAL android/freetype/include/freetype/internal/psaux.h /^#define IS_PS_SPECIAL(/;" d +IS_PS_SPECIAL include/freetype/internal/psaux.h /^#define IS_PS_SPECIAL(/;" d +IS_PS_TOKEN android/freetype/include/freetype/internal/psaux.h /^#define IS_PS_TOKEN(/;" d +IS_PS_TOKEN include/freetype/internal/psaux.h /^#define IS_PS_TOKEN(/;" d +IS_PS_XDIGIT android/freetype/include/freetype/internal/psaux.h /^#define IS_PS_XDIGIT(/;" d +IS_PS_XDIGIT include/freetype/internal/psaux.h /^#define IS_PS_XDIGIT(/;" d +IUP_Worker android/freetype/src/truetype/ttinterp.c /^ } IUP_WorkerRec, *IUP_Worker;$/;" t typeref:struct:IUP_WorkerRec_ file: +IUP_WorkerRec android/freetype/src/truetype/ttinterp.c /^ } IUP_WorkerRec, *IUP_Worker;$/;" t typeref:struct:IUP_WorkerRec_ file: +IUP_WorkerRec_ android/freetype/src/truetype/ttinterp.c /^ typedef struct IUP_WorkerRec_$/;" s file: +Index_To_Loc_Format android/freetype/include/freetype/tttables.h /^ FT_Short Index_To_Loc_Format;$/;" m struct:TT_Header_ +Index_To_Loc_Format include/freetype/tttables.h /^ FT_Short Index_To_Loc_Format;$/;" m struct:TT_Header_ +InitInstance demos/platform_win32.c /^BOOL InitInstance(HINSTANCE hInstance, int nCmdShow)$/;" f +InitInstance test/testWin.c /^BOOL InitInstance(HINSTANCE hInstance, int nCmdShow)$/;" f +Init_Context android/freetype/src/truetype/ttinterp.c /^ Init_Context( TT_ExecContext exec,$/;" f file: +Init_Linked android/freetype/src/raster/ftraster.c /^ Init_Linked( TProfileList* l )$/;" f file: +InsNew android/freetype/src/raster/ftraster.c /^ InsNew( PProfileList list,$/;" f file: +Ins_AA android/freetype/src/truetype/ttinterp.c /^ Ins_AA( INS_ARG )$/;" f file: +Ins_ABS android/freetype/src/truetype/ttinterp.c /^ Ins_ABS( INS_ARG )$/;" f file: +Ins_ADD android/freetype/src/truetype/ttinterp.c /^ Ins_ADD( INS_ARG )$/;" f file: +Ins_ALIGNPTS android/freetype/src/truetype/ttinterp.c /^ Ins_ALIGNPTS( INS_ARG )$/;" f file: +Ins_ALIGNRP android/freetype/src/truetype/ttinterp.c /^ Ins_ALIGNRP( INS_ARG )$/;" f file: +Ins_AND android/freetype/src/truetype/ttinterp.c /^ Ins_AND( INS_ARG )$/;" f file: +Ins_CALL android/freetype/src/truetype/ttinterp.c /^ Ins_CALL( INS_ARG )$/;" f file: +Ins_CEILING android/freetype/src/truetype/ttinterp.c /^ Ins_CEILING( INS_ARG )$/;" f file: +Ins_CINDEX android/freetype/src/truetype/ttinterp.c /^ Ins_CINDEX( INS_ARG )$/;" f file: +Ins_CLEAR android/freetype/src/truetype/ttinterp.c /^ Ins_CLEAR( INS_ARG )$/;" f file: +Ins_DEBUG android/freetype/src/truetype/ttinterp.c /^ Ins_DEBUG( INS_ARG )$/;" f file: +Ins_DELTAC android/freetype/src/truetype/ttinterp.c /^ Ins_DELTAC( INS_ARG )$/;" f file: +Ins_DELTAP android/freetype/src/truetype/ttinterp.c /^ Ins_DELTAP( INS_ARG )$/;" f file: +Ins_DEPTH android/freetype/src/truetype/ttinterp.c /^ Ins_DEPTH( INS_ARG )$/;" f file: +Ins_DIV android/freetype/src/truetype/ttinterp.c /^ Ins_DIV( INS_ARG )$/;" f file: +Ins_DUP android/freetype/src/truetype/ttinterp.c /^ Ins_DUP( INS_ARG )$/;" f file: +Ins_EIF android/freetype/src/truetype/ttinterp.c /^ Ins_EIF( INS_ARG )$/;" f file: +Ins_ELSE android/freetype/src/truetype/ttinterp.c /^ Ins_ELSE( INS_ARG )$/;" f file: +Ins_ENDF android/freetype/src/truetype/ttinterp.c /^ Ins_ENDF( INS_ARG )$/;" f file: +Ins_EQ android/freetype/src/truetype/ttinterp.c /^ Ins_EQ( INS_ARG )$/;" f file: +Ins_EVEN android/freetype/src/truetype/ttinterp.c /^ Ins_EVEN( INS_ARG )$/;" f file: +Ins_FDEF android/freetype/src/truetype/ttinterp.c /^ Ins_FDEF( INS_ARG )$/;" f file: +Ins_FLIPOFF android/freetype/src/truetype/ttinterp.c /^ Ins_FLIPOFF( INS_ARG )$/;" f file: +Ins_FLIPON android/freetype/src/truetype/ttinterp.c /^ Ins_FLIPON( INS_ARG )$/;" f file: +Ins_FLIPPT android/freetype/src/truetype/ttinterp.c /^ Ins_FLIPPT( INS_ARG )$/;" f file: +Ins_FLIPRGOFF android/freetype/src/truetype/ttinterp.c /^ Ins_FLIPRGOFF( INS_ARG )$/;" f file: +Ins_FLIPRGON android/freetype/src/truetype/ttinterp.c /^ Ins_FLIPRGON( INS_ARG )$/;" f file: +Ins_FLOOR android/freetype/src/truetype/ttinterp.c /^ Ins_FLOOR( INS_ARG )$/;" f file: +Ins_GC android/freetype/src/truetype/ttinterp.c /^ Ins_GC( INS_ARG )$/;" f file: +Ins_GETINFO android/freetype/src/truetype/ttinterp.c /^ Ins_GETINFO( INS_ARG )$/;" f file: +Ins_GFV android/freetype/src/truetype/ttinterp.c /^ Ins_GFV( INS_ARG )$/;" f file: +Ins_GPV android/freetype/src/truetype/ttinterp.c /^ Ins_GPV( INS_ARG )$/;" f file: +Ins_GT android/freetype/src/truetype/ttinterp.c /^ Ins_GT( INS_ARG )$/;" f file: +Ins_GTEQ android/freetype/src/truetype/ttinterp.c /^ Ins_GTEQ( INS_ARG )$/;" f file: +Ins_Goto_CodeRange android/freetype/src/truetype/ttinterp.c /^ Ins_Goto_CodeRange( EXEC_OP_ FT_Int aRange,$/;" f file: +Ins_IDEF android/freetype/src/truetype/ttinterp.c /^ Ins_IDEF( INS_ARG )$/;" f file: +Ins_IF android/freetype/src/truetype/ttinterp.c /^ Ins_IF( INS_ARG )$/;" f file: +Ins_INSTCTRL android/freetype/src/truetype/ttinterp.c /^ Ins_INSTCTRL( INS_ARG )$/;" f file: +Ins_IP android/freetype/src/truetype/ttinterp.c /^ Ins_IP( INS_ARG )$/;" f file: +Ins_ISECT android/freetype/src/truetype/ttinterp.c /^ Ins_ISECT( INS_ARG )$/;" f file: +Ins_IUP android/freetype/src/truetype/ttinterp.c /^ Ins_IUP( INS_ARG )$/;" f file: +Ins_JMPR android/freetype/src/truetype/ttinterp.c /^ Ins_JMPR( INS_ARG )$/;" f file: +Ins_JROF android/freetype/src/truetype/ttinterp.c /^ Ins_JROF( INS_ARG )$/;" f file: +Ins_JROT android/freetype/src/truetype/ttinterp.c /^ Ins_JROT( INS_ARG )$/;" f file: +Ins_LOOPCALL android/freetype/src/truetype/ttinterp.c /^ Ins_LOOPCALL( INS_ARG )$/;" f file: +Ins_LT android/freetype/src/truetype/ttinterp.c /^ Ins_LT( INS_ARG )$/;" f file: +Ins_LTEQ android/freetype/src/truetype/ttinterp.c /^ Ins_LTEQ( INS_ARG )$/;" f file: +Ins_MAX android/freetype/src/truetype/ttinterp.c /^ Ins_MAX( INS_ARG )$/;" f file: +Ins_MD android/freetype/src/truetype/ttinterp.c /^ Ins_MD( INS_ARG )$/;" f file: +Ins_MDAP android/freetype/src/truetype/ttinterp.c /^ Ins_MDAP( INS_ARG )$/;" f file: +Ins_MDRP android/freetype/src/truetype/ttinterp.c /^ Ins_MDRP( INS_ARG )$/;" f file: +Ins_MIAP android/freetype/src/truetype/ttinterp.c /^ Ins_MIAP( INS_ARG )$/;" f file: +Ins_MIN android/freetype/src/truetype/ttinterp.c /^ Ins_MIN( INS_ARG )$/;" f file: +Ins_MINDEX android/freetype/src/truetype/ttinterp.c /^ Ins_MINDEX( INS_ARG )$/;" f file: +Ins_MIRP android/freetype/src/truetype/ttinterp.c /^ Ins_MIRP( INS_ARG )$/;" f file: +Ins_MPPEM android/freetype/src/truetype/ttinterp.c /^ Ins_MPPEM( INS_ARG )$/;" f file: +Ins_MPS android/freetype/src/truetype/ttinterp.c /^ Ins_MPS( INS_ARG )$/;" f file: +Ins_MSIRP android/freetype/src/truetype/ttinterp.c /^ Ins_MSIRP( INS_ARG )$/;" f file: +Ins_MUL android/freetype/src/truetype/ttinterp.c /^ Ins_MUL( INS_ARG )$/;" f file: +Ins_NEG android/freetype/src/truetype/ttinterp.c /^ Ins_NEG( INS_ARG )$/;" f file: +Ins_NEQ android/freetype/src/truetype/ttinterp.c /^ Ins_NEQ( INS_ARG )$/;" f file: +Ins_NOT android/freetype/src/truetype/ttinterp.c /^ Ins_NOT( INS_ARG )$/;" f file: +Ins_NPUSHB android/freetype/src/truetype/ttinterp.c /^ Ins_NPUSHB( INS_ARG )$/;" f file: +Ins_NPUSHW android/freetype/src/truetype/ttinterp.c /^ Ins_NPUSHW( INS_ARG )$/;" f file: +Ins_NROUND android/freetype/src/truetype/ttinterp.c /^ Ins_NROUND( INS_ARG )$/;" f file: +Ins_ODD android/freetype/src/truetype/ttinterp.c /^ Ins_ODD( INS_ARG )$/;" f file: +Ins_OR android/freetype/src/truetype/ttinterp.c /^ Ins_OR( INS_ARG )$/;" f file: +Ins_POP android/freetype/src/truetype/ttinterp.c /^ Ins_POP( INS_ARG )$/;" f file: +Ins_PUSHB android/freetype/src/truetype/ttinterp.c /^ Ins_PUSHB( INS_ARG )$/;" f file: +Ins_PUSHW android/freetype/src/truetype/ttinterp.c /^ Ins_PUSHW( INS_ARG )$/;" f file: +Ins_RCVT android/freetype/src/truetype/ttinterp.c /^ Ins_RCVT( INS_ARG )$/;" f file: +Ins_RDTG android/freetype/src/truetype/ttinterp.c /^ Ins_RDTG( INS_ARG )$/;" f file: +Ins_ROFF android/freetype/src/truetype/ttinterp.c /^ Ins_ROFF( INS_ARG )$/;" f file: +Ins_ROLL android/freetype/src/truetype/ttinterp.c /^ Ins_ROLL( INS_ARG )$/;" f file: +Ins_ROUND android/freetype/src/truetype/ttinterp.c /^ Ins_ROUND( INS_ARG )$/;" f file: +Ins_RS android/freetype/src/truetype/ttinterp.c /^ Ins_RS( INS_ARG )$/;" f file: +Ins_RTDG android/freetype/src/truetype/ttinterp.c /^ Ins_RTDG( INS_ARG )$/;" f file: +Ins_RTG android/freetype/src/truetype/ttinterp.c /^ Ins_RTG( INS_ARG )$/;" f file: +Ins_RTHG android/freetype/src/truetype/ttinterp.c /^ Ins_RTHG( INS_ARG )$/;" f file: +Ins_RUTG android/freetype/src/truetype/ttinterp.c /^ Ins_RUTG( INS_ARG )$/;" f file: +Ins_S45ROUND android/freetype/src/truetype/ttinterp.c /^ Ins_S45ROUND( INS_ARG )$/;" f file: +Ins_SANGW android/freetype/src/truetype/ttinterp.c /^ Ins_SANGW( INS_ARG )$/;" f file: +Ins_SCANCTRL android/freetype/src/truetype/ttinterp.c /^ Ins_SCANCTRL( INS_ARG )$/;" f file: +Ins_SCANTYPE android/freetype/src/truetype/ttinterp.c /^ Ins_SCANTYPE( INS_ARG )$/;" f file: +Ins_SCFS android/freetype/src/truetype/ttinterp.c /^ Ins_SCFS( INS_ARG )$/;" f file: +Ins_SCVTCI android/freetype/src/truetype/ttinterp.c /^ Ins_SCVTCI( INS_ARG )$/;" f file: +Ins_SDB android/freetype/src/truetype/ttinterp.c /^ Ins_SDB( INS_ARG )$/;" f file: +Ins_SDPVTL android/freetype/src/truetype/ttinterp.c /^ Ins_SDPVTL( INS_ARG )$/;" f file: +Ins_SDS android/freetype/src/truetype/ttinterp.c /^ Ins_SDS( INS_ARG )$/;" f file: +Ins_SFVFS android/freetype/src/truetype/ttinterp.c /^ Ins_SFVFS( INS_ARG )$/;" f file: +Ins_SFVTCA android/freetype/src/truetype/ttinterp.c /^ Ins_SFVTCA( INS_ARG )$/;" f file: +Ins_SFVTL android/freetype/src/truetype/ttinterp.c /^ Ins_SFVTL( INS_ARG )$/;" f file: +Ins_SFVTPV android/freetype/src/truetype/ttinterp.c /^ Ins_SFVTPV( INS_ARG )$/;" f file: +Ins_SHC android/freetype/src/truetype/ttinterp.c /^ Ins_SHC( INS_ARG )$/;" f file: +Ins_SHP android/freetype/src/truetype/ttinterp.c /^ Ins_SHP( INS_ARG )$/;" f file: +Ins_SHPIX android/freetype/src/truetype/ttinterp.c /^ Ins_SHPIX( INS_ARG )$/;" f file: +Ins_SHZ android/freetype/src/truetype/ttinterp.c /^ Ins_SHZ( INS_ARG )$/;" f file: +Ins_SLOOP android/freetype/src/truetype/ttinterp.c /^ Ins_SLOOP( INS_ARG )$/;" f file: +Ins_SMD android/freetype/src/truetype/ttinterp.c /^ Ins_SMD( INS_ARG )$/;" f file: +Ins_SPVFS android/freetype/src/truetype/ttinterp.c /^ Ins_SPVFS( INS_ARG )$/;" f file: +Ins_SPVTCA android/freetype/src/truetype/ttinterp.c /^ Ins_SPVTCA( INS_ARG )$/;" f file: +Ins_SPVTL android/freetype/src/truetype/ttinterp.c /^ Ins_SPVTL( INS_ARG )$/;" f file: +Ins_SROUND android/freetype/src/truetype/ttinterp.c /^ Ins_SROUND( INS_ARG )$/;" f file: +Ins_SRP0 android/freetype/src/truetype/ttinterp.c /^ Ins_SRP0( INS_ARG )$/;" f file: +Ins_SRP1 android/freetype/src/truetype/ttinterp.c /^ Ins_SRP1( INS_ARG )$/;" f file: +Ins_SRP2 android/freetype/src/truetype/ttinterp.c /^ Ins_SRP2( INS_ARG )$/;" f file: +Ins_SSW android/freetype/src/truetype/ttinterp.c /^ Ins_SSW( INS_ARG )$/;" f file: +Ins_SSWCI android/freetype/src/truetype/ttinterp.c /^ Ins_SSWCI( INS_ARG )$/;" f file: +Ins_SUB android/freetype/src/truetype/ttinterp.c /^ Ins_SUB( INS_ARG )$/;" f file: +Ins_SVTCA android/freetype/src/truetype/ttinterp.c /^ Ins_SVTCA( INS_ARG )$/;" f file: +Ins_SWAP android/freetype/src/truetype/ttinterp.c /^ Ins_SWAP( INS_ARG )$/;" f file: +Ins_SZP0 android/freetype/src/truetype/ttinterp.c /^ Ins_SZP0( INS_ARG )$/;" f file: +Ins_SZP1 android/freetype/src/truetype/ttinterp.c /^ Ins_SZP1( INS_ARG )$/;" f file: +Ins_SZP2 android/freetype/src/truetype/ttinterp.c /^ Ins_SZP2( INS_ARG )$/;" f file: +Ins_SZPS android/freetype/src/truetype/ttinterp.c /^ Ins_SZPS( INS_ARG )$/;" f file: +Ins_SxVTL android/freetype/src/truetype/ttinterp.c /^ Ins_SxVTL( EXEC_OP_ FT_UShort aIdx1,$/;" f file: +Ins_UNKNOWN android/freetype/src/truetype/ttinterp.c /^ Ins_UNKNOWN( INS_ARG )$/;" f file: +Ins_UTP android/freetype/src/truetype/ttinterp.c /^ Ins_UTP( INS_ARG )$/;" f file: +Ins_WCVTF android/freetype/src/truetype/ttinterp.c /^ Ins_WCVTF( INS_ARG )$/;" f file: +Ins_WCVTP android/freetype/src/truetype/ttinterp.c /^ Ins_WCVTP( INS_ARG )$/;" f file: +Ins_WS android/freetype/src/truetype/ttinterp.c /^ Ins_WS( INS_ARG )$/;" f file: +Insert_Y_Turn android/freetype/src/raster/ftraster.c /^ Insert_Y_Turn( RAS_ARGS Int y )$/;" f file: +InstalledXcodeVersion tools/gyp/build/lib/gyp/generator/xcode.py /^def InstalledXcodeVersion():$/;" f +InstalledXcodeVersion tools/gyp/pylib/gyp/generator/xcode.py /^def InstalledXcodeVersion():$/;" f +Instruct_Dispatch android/freetype/src/truetype/ttinterp.c /^ TInstruction_Function Instruct_Dispatch[256] =$/;" v file: +Int android/freetype/src/raster/ftraster.c /^ typedef int Int;$/;" t file: +IntermediatesGroup tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def IntermediatesGroup(self):$/;" m class:PBXProject +IntermediatesGroup tools/gyp/pylib/gyp/xcodeproj_file.py /^ def IntermediatesGroup(self):$/;" m class:PBXProject +InvertNaiveSConsQuoting tools/gyp/build/lib/gyp/generator/scons.py /^def InvertNaiveSConsQuoting(s):$/;" f +InvertNaiveSConsQuoting tools/gyp/pylib/gyp/generator/scons.py /^def InvertNaiveSConsQuoting(s):$/;" f +InvertRelativePath tools/gyp/build/lib/gyp/common.py /^def InvertRelativePath(path, toplevel_dir=None):$/;" f +InvertRelativePath tools/gyp/pylib/gyp/common.py /^def InvertRelativePath(path, toplevel_dir=None):$/;" f +IsCIDFont android/freetype/include/freetype/internal/t1types.h /^ FT_Bool IsCIDFont;$/;" m struct:AFM_FontInfoRec_ +IsCIDFont include/freetype/internal/t1types.h /^ FT_Bool IsCIDFont;$/;" m struct:AFM_FontInfoRec_ +IsCPPExtension tools/gyp/build/lib/gyp/generator/android.py /^def IsCPPExtension(ext):$/;" f +IsCPPExtension tools/gyp/pylib/gyp/generator/android.py /^def IsCPPExtension(ext):$/;" f +IsMacBinary android/freetype/src/base/ftobjs.c /^ IsMacBinary( FT_Library library,$/;" f file: +IsMacBundle tools/gyp/build/lib/gyp/xcode_emulation.py /^def IsMacBundle(flavor, spec):$/;" f +IsMacBundle tools/gyp/pylib/gyp/xcode_emulation.py /^def IsMacBundle(flavor, spec):$/;" f +IsMacResource android/freetype/src/base/ftobjs.c /^ IsMacResource( FT_Library library,$/;" f file: +IsPathSection tools/gyp/build/lib/gyp/input.py /^def IsPathSection(section):$/;" f +IsPathSection tools/gyp/pylib/gyp/input.py /^def IsPathSection(section):$/;" f +IsRuleRunUnderCygwin tools/gyp/build/lib/gyp/msvs_emulation.py /^ def IsRuleRunUnderCygwin(self, rule):$/;" m class:MsvsSettings +IsRuleRunUnderCygwin tools/gyp/pylib/gyp/msvs_emulation.py /^ def IsRuleRunUnderCygwin(self, rule):$/;" m class:MsvsSettings +IsStrCanonicalInt tools/gyp/build/lib/gyp/input.py /^def IsStrCanonicalInt(string):$/;" f +IsStrCanonicalInt tools/gyp/pylib/gyp/input.py /^def IsStrCanonicalInt(string):$/;" f +IsUseLibraryDependencyInputs tools/gyp/build/lib/gyp/msvs_emulation.py /^ def IsUseLibraryDependencyInputs(self, config):$/;" m class:MsvsSettings +IsUseLibraryDependencyInputs tools/gyp/pylib/gyp/msvs_emulation.py /^ def IsUseLibraryDependencyInputs(self, config):$/;" m class:MsvsSettings +KEEPALIVE android/freetype/src/base/ftdbgmem.c /^#define KEEPALIVE /;" d file: +KERN_INDEX android/freetype/src/psaux/afmparse.c /^#define KERN_INDEX(/;" d file: +KERN_INDEX android/freetype/src/psaux/afmparse.c /^#undef KERN_INDEX$/;" d file: +KEY android/expat/lib/xmlparse.c /^typedef const XML_Char *KEY;$/;" t file: +KEY_0 demos/interface.h /^ KEY_0 = 0x30,$/;" e enum:__anon41 +KEY_1 demos/interface.h /^ KEY_1 = 0x31,$/;" e enum:__anon41 +KEY_2 demos/interface.h /^ KEY_2 = 0x32,$/;" e enum:__anon41 +KEY_3 demos/interface.h /^ KEY_3 = 0x33,$/;" e enum:__anon41 +KEY_4 demos/interface.h /^ KEY_4 = 0x34,$/;" e enum:__anon41 +KEY_5 demos/interface.h /^ KEY_5 = 0x35,$/;" e enum:__anon41 +KEY_6 demos/interface.h /^ KEY_6 = 0x36,$/;" e enum:__anon41 +KEY_7 demos/interface.h /^ KEY_7 = 0x37,$/;" e enum:__anon41 +KEY_8 demos/interface.h /^ KEY_8 = 0x38,$/;" e enum:__anon41 +KEY_9 demos/interface.h /^ KEY_9 = 0x39,$/;" e enum:__anon41 +KEY_A demos/interface.h /^ KEY_A = 0x41,$/;" e enum:__anon41 +KEY_ACCEPT demos/interface.h /^ KEY_ACCEPT = 0x1E,$/;" e enum:__anon41 +KEY_ADD demos/interface.h /^ KEY_ADD = 0x6B,$/;" e enum:__anon41 +KEY_APPS demos/interface.h /^ KEY_APPS = 0x5D,$/;" e enum:__anon41 +KEY_ATTN demos/interface.h /^ KEY_ATTN = 0xF6,$/;" e enum:__anon41 +KEY_B demos/interface.h /^ KEY_B = 0x42,$/;" e enum:__anon41 +KEY_BACK demos/interface.h /^ KEY_BACK = 0x08,$/;" e enum:__anon41 +KEY_BROWSER_BACK demos/interface.h /^ KEY_BROWSER_BACK = 0xA6,$/;" e enum:__anon41 +KEY_BROWSER_FAVORITES demos/interface.h /^ KEY_BROWSER_FAVORITES = 0xAB,$/;" e enum:__anon41 +KEY_BROWSER_FORWARD demos/interface.h /^ KEY_BROWSER_FORWARD = 0xA7,$/;" e enum:__anon41 +KEY_BROWSER_HOME demos/interface.h /^ KEY_BROWSER_HOME = 0xAC,$/;" e enum:__anon41 +KEY_BROWSER_REFRESH demos/interface.h /^ KEY_BROWSER_REFRESH = 0xA8,$/;" e enum:__anon41 +KEY_BROWSER_SEARCH demos/interface.h /^ KEY_BROWSER_SEARCH = 0xAA,$/;" e enum:__anon41 +KEY_BROWSER_STOP demos/interface.h /^ KEY_BROWSER_STOP = 0xA9,$/;" e enum:__anon41 +KEY_C demos/interface.h /^ KEY_C = 0x43,$/;" e enum:__anon41 +KEY_CAPITAL demos/interface.h /^ KEY_CAPITAL = 0x14,$/;" e enum:__anon41 +KEY_CLEAR demos/interface.h /^ KEY_CLEAR = 0x0C,$/;" e enum:__anon41 +KEY_CONTROL demos/interface.h /^ KEY_CONTROL = 0x11,$/;" e enum:__anon41 +KEY_CONVERT demos/interface.h /^ KEY_CONVERT = 0x1C,$/;" e enum:__anon41 +KEY_CRSEL demos/interface.h /^ KEY_CRSEL = 0xF7,$/;" e enum:__anon41 +KEY_D demos/interface.h /^ KEY_D = 0x44,$/;" e enum:__anon41 +KEY_DECIMAL demos/interface.h /^ KEY_DECIMAL = 0x6E,$/;" e enum:__anon41 +KEY_DELETE demos/interface.h /^ KEY_DELETE = 0x2E,$/;" e enum:__anon41 +KEY_DIVIDE demos/interface.h /^ KEY_DIVIDE = 0x6F,$/;" e enum:__anon41 +KEY_DOWN demos/interface.h /^ KEY_DOWN = 0x28,$/;" e enum:__anon41 +KEY_E demos/interface.h /^ KEY_E = 0x45,$/;" e enum:__anon41 +KEY_END demos/interface.h /^ KEY_END = 0x23,$/;" e enum:__anon41 +KEY_EREOF demos/interface.h /^ KEY_EREOF = 0xF9,$/;" e enum:__anon41 +KEY_ESCAPE demos/interface.h /^ KEY_ESCAPE = 0x1B,$/;" e enum:__anon41 +KEY_EVENT_DOWN demos/interface.h /^ KEY_EVENT_DOWN,$/;" e enum:__anon40 +KEY_EVENT_UP demos/interface.h /^ KEY_EVENT_UP,$/;" e enum:__anon40 +KEY_EXEC demos/interface.h /^ KEY_EXEC = 0x2B,$/;" e enum:__anon41 +KEY_EXSEL demos/interface.h /^ KEY_EXSEL = 0xF8,$/;" e enum:__anon41 +KEY_F demos/interface.h /^ KEY_F = 0x46,$/;" e enum:__anon41 +KEY_F1 demos/interface.h /^ KEY_F1 = 0x70,$/;" e enum:__anon41 +KEY_F10 demos/interface.h /^ KEY_F10 = 0x79,$/;" e enum:__anon41 +KEY_F11 demos/interface.h /^ KEY_F11 = 0x7A,$/;" e enum:__anon41 +KEY_F12 demos/interface.h /^ KEY_F12 = 0x7B,$/;" e enum:__anon41 +KEY_F13 demos/interface.h /^ KEY_F13 = 0x7C,$/;" e enum:__anon41 +KEY_F14 demos/interface.h /^ KEY_F14 = 0x7D,$/;" e enum:__anon41 +KEY_F15 demos/interface.h /^ KEY_F15 = 0x7E,$/;" e enum:__anon41 +KEY_F16 demos/interface.h /^ KEY_F16 = 0x7F,$/;" e enum:__anon41 +KEY_F17 demos/interface.h /^ KEY_F17 = 0x80,$/;" e enum:__anon41 +KEY_F18 demos/interface.h /^ KEY_F18 = 0x81,$/;" e enum:__anon41 +KEY_F19 demos/interface.h /^ KEY_F19 = 0x82,$/;" e enum:__anon41 +KEY_F2 demos/interface.h /^ KEY_F2 = 0x71,$/;" e enum:__anon41 +KEY_F20 demos/interface.h /^ KEY_F20 = 0x83,$/;" e enum:__anon41 +KEY_F21 demos/interface.h /^ KEY_F21 = 0x84,$/;" e enum:__anon41 +KEY_F22 demos/interface.h /^ KEY_F22 = 0x85,$/;" e enum:__anon41 +KEY_F23 demos/interface.h /^ KEY_F23 = 0x86,$/;" e enum:__anon41 +KEY_F24 demos/interface.h /^ KEY_F24 = 0x87,$/;" e enum:__anon41 +KEY_F3 demos/interface.h /^ KEY_F3 = 0x72,$/;" e enum:__anon41 +KEY_F4 demos/interface.h /^ KEY_F4 = 0x73,$/;" e enum:__anon41 +KEY_F5 demos/interface.h /^ KEY_F5 = 0x74,$/;" e enum:__anon41 +KEY_F6 demos/interface.h /^ KEY_F6 = 0x75,$/;" e enum:__anon41 +KEY_F7 demos/interface.h /^ KEY_F7 = 0x76,$/;" e enum:__anon41 +KEY_F8 demos/interface.h /^ KEY_F8 = 0x77,$/;" e enum:__anon41 +KEY_F9 demos/interface.h /^ KEY_F9 = 0x78,$/;" e enum:__anon41 +KEY_FINAL demos/interface.h /^ KEY_FINAL = 0x18,$/;" e enum:__anon41 +KEY_G demos/interface.h /^ KEY_G = 0x47,$/;" e enum:__anon41 +KEY_H demos/interface.h /^ KEY_H = 0x48,$/;" e enum:__anon41 +KEY_HANGUL demos/interface.h /^ KEY_HANGUL = 0x15,$/;" e enum:__anon41 +KEY_HANJA demos/interface.h /^ KEY_HANJA = 0x19,$/;" e enum:__anon41 +KEY_HELP demos/interface.h /^ KEY_HELP = 0x2F,$/;" e enum:__anon41 +KEY_HOME demos/interface.h /^ KEY_HOME = 0x24,$/;" e enum:__anon41 +KEY_I demos/interface.h /^ KEY_I = 0x49,$/;" e enum:__anon41 +KEY_INSERT demos/interface.h /^ KEY_INSERT = 0x2D,$/;" e enum:__anon41 +KEY_J demos/interface.h /^ KEY_J = 0x4A,$/;" e enum:__anon41 +KEY_JUNJA demos/interface.h /^ KEY_JUNJA = 0x17,$/;" e enum:__anon41 +KEY_K demos/interface.h /^ KEY_K = 0x4B,$/;" e enum:__anon41 +KEY_KANA demos/interface.h /^ KEY_KANA = 0x15,$/;" e enum:__anon41 +KEY_KANJI demos/interface.h /^ KEY_KANJI = 0x19,$/;" e enum:__anon41 +KEY_L demos/interface.h /^ KEY_L = 0x4C,$/;" e enum:__anon41 +KEY_LCONTROL demos/interface.h /^ KEY_LCONTROL = 0xA2,$/;" e enum:__anon41 +KEY_LEFT demos/interface.h /^ KEY_LEFT = 0x25,$/;" e enum:__anon41 +KEY_LMENU demos/interface.h /^ KEY_LMENU = 0xA4,$/;" e enum:__anon41 +KEY_LSHIFT demos/interface.h /^ KEY_LSHIFT = 0xA0,$/;" e enum:__anon41 +KEY_LWIN demos/interface.h /^ KEY_LWIN = 0x5B,$/;" e enum:__anon41 +KEY_M demos/interface.h /^ KEY_M = 0x4D,$/;" e enum:__anon41 +KEY_MEDIA_LAUNCH_APP1 demos/interface.h /^ KEY_MEDIA_LAUNCH_APP1 = 0xB6,$/;" e enum:__anon41 +KEY_MEDIA_LAUNCH_APP2 demos/interface.h /^ KEY_MEDIA_LAUNCH_APP2 = 0xB7,$/;" e enum:__anon41 +KEY_MEDIA_LAUNCH_MAIL demos/interface.h /^ KEY_MEDIA_LAUNCH_MAIL = 0xB4,$/;" e enum:__anon41 +KEY_MEDIA_LAUNCH_MEDIA_SELECT demos/interface.h /^ KEY_MEDIA_LAUNCH_MEDIA_SELECT = 0xB5,$/;" e enum:__anon41 +KEY_MEDIA_NEXT_TRACK demos/interface.h /^ KEY_MEDIA_NEXT_TRACK = 0xB0,$/;" e enum:__anon41 +KEY_MEDIA_PLAY_PAUSE demos/interface.h /^ KEY_MEDIA_PLAY_PAUSE = 0xB3,$/;" e enum:__anon41 +KEY_MEDIA_PREV_TRACK demos/interface.h /^ KEY_MEDIA_PREV_TRACK = 0xB1,$/;" e enum:__anon41 +KEY_MEDIA_STOP demos/interface.h /^ KEY_MEDIA_STOP = 0xB2,$/;" e enum:__anon41 +KEY_MENU demos/interface.h /^ KEY_MENU = 0x12,$/;" e enum:__anon41 +KEY_MODECHANGE demos/interface.h /^ KEY_MODECHANGE = 0x1F,$/;" e enum:__anon41 +KEY_MULTIPLY demos/interface.h /^ KEY_MULTIPLY = 0x6A,$/;" e enum:__anon41 +KEY_N demos/interface.h /^ KEY_N = 0x4E,$/;" e enum:__anon41 +KEY_NEXT demos/interface.h /^ KEY_NEXT = 0x22,$/;" e enum:__anon41 +KEY_NONAME demos/interface.h /^ KEY_NONAME = 0xFC,$/;" e enum:__anon41 +KEY_NONCONVERT demos/interface.h /^ KEY_NONCONVERT = 0x1D,$/;" e enum:__anon41 +KEY_NUMLOCK demos/interface.h /^ KEY_NUMLOCK = 0x90,$/;" e enum:__anon41 +KEY_NUMPAD0 demos/interface.h /^ KEY_NUMPAD0 = 0x60,$/;" e enum:__anon41 +KEY_NUMPAD1 demos/interface.h /^ KEY_NUMPAD1 = 0x61,$/;" e enum:__anon41 +KEY_NUMPAD2 demos/interface.h /^ KEY_NUMPAD2 = 0x62,$/;" e enum:__anon41 +KEY_NUMPAD3 demos/interface.h /^ KEY_NUMPAD3 = 0x63,$/;" e enum:__anon41 +KEY_NUMPAD4 demos/interface.h /^ KEY_NUMPAD4 = 0x64,$/;" e enum:__anon41 +KEY_NUMPAD5 demos/interface.h /^ KEY_NUMPAD5 = 0x65,$/;" e enum:__anon41 +KEY_NUMPAD6 demos/interface.h /^ KEY_NUMPAD6 = 0x66,$/;" e enum:__anon41 +KEY_NUMPAD7 demos/interface.h /^ KEY_NUMPAD7 = 0x67,$/;" e enum:__anon41 +KEY_NUMPAD8 demos/interface.h /^ KEY_NUMPAD8 = 0x68,$/;" e enum:__anon41 +KEY_NUMPAD9 demos/interface.h /^ KEY_NUMPAD9 = 0x69,$/;" e enum:__anon41 +KEY_O demos/interface.h /^ KEY_O = 0x4F,$/;" e enum:__anon41 +KEY_OEM_1 demos/interface.h /^ KEY_OEM_1 = 0xBA,$/;" e enum:__anon41 +KEY_OEM_102 demos/interface.h /^ KEY_OEM_102 = 0xE2,$/;" e enum:__anon41 +KEY_OEM_2 demos/interface.h /^ KEY_OEM_2 = 0xBF,$/;" e enum:__anon41 +KEY_OEM_3 demos/interface.h /^ KEY_OEM_3 = 0xC0,$/;" e enum:__anon41 +KEY_OEM_4 demos/interface.h /^ KEY_OEM_4 = 0xDB,$/;" e enum:__anon41 +KEY_OEM_5 demos/interface.h /^ KEY_OEM_5 = 0xDC,$/;" e enum:__anon41 +KEY_OEM_6 demos/interface.h /^ KEY_OEM_6 = 0xDD,$/;" e enum:__anon41 +KEY_OEM_7 demos/interface.h /^ KEY_OEM_7 = 0xDE,$/;" e enum:__anon41 +KEY_OEM_8 demos/interface.h /^ KEY_OEM_8 = 0xDF,$/;" e enum:__anon41 +KEY_OEM_CLEAR demos/interface.h /^ KEY_OEM_CLEAR = 0xFE,$/;" e enum:__anon41 +KEY_OEM_COMMA demos/interface.h /^ KEY_OEM_COMMA = 0xBC,$/;" e enum:__anon41 +KEY_OEM_MINUS demos/interface.h /^ KEY_OEM_MINUS = 0xBD,$/;" e enum:__anon41 +KEY_OEM_PERIOD demos/interface.h /^ KEY_OEM_PERIOD = 0xBE,$/;" e enum:__anon41 +KEY_OEM_PLUS demos/interface.h /^ KEY_OEM_PLUS = 0xBB,$/;" e enum:__anon41 +KEY_P demos/interface.h /^ KEY_P = 0x50,$/;" e enum:__anon41 +KEY_PA1 demos/interface.h /^ KEY_PA1 = 0xFD,$/;" e enum:__anon41 +KEY_PACKET demos/interface.h /^ KEY_PACKET = 0xE7,$/;" e enum:__anon41 +KEY_PAUSE demos/interface.h /^ KEY_PAUSE = 0x13,$/;" e enum:__anon41 +KEY_PLAY demos/interface.h /^ KEY_PLAY = 0xFA,$/;" e enum:__anon41 +KEY_PRINT demos/interface.h /^ KEY_PRINT = 0x2A,$/;" e enum:__anon41 +KEY_PRIOR demos/interface.h /^ KEY_PRIOR = 0x21,$/;" e enum:__anon41 +KEY_PROCESSKEY demos/interface.h /^ KEY_PROCESSKEY = 0xE5,$/;" e enum:__anon41 +KEY_Q demos/interface.h /^ KEY_Q = 0x51,$/;" e enum:__anon41 +KEY_R demos/interface.h /^ KEY_R = 0x52,$/;" e enum:__anon41 +KEY_RCONTROL demos/interface.h /^ KEY_RCONTROL = 0xA3,$/;" e enum:__anon41 +KEY_RETURN demos/interface.h /^ KEY_RETURN = 0x0D,$/;" e enum:__anon41 +KEY_RIGHT demos/interface.h /^ KEY_RIGHT = 0x27,$/;" e enum:__anon41 +KEY_RMENU demos/interface.h /^ KEY_RMENU = 0xA5,$/;" e enum:__anon41 +KEY_RSHIFT demos/interface.h /^ KEY_RSHIFT = 0xA1,$/;" e enum:__anon41 +KEY_RWIN demos/interface.h /^ KEY_RWIN = 0x5C,$/;" e enum:__anon41 +KEY_S demos/interface.h /^ KEY_S = 0x53,$/;" e enum:__anon41 +KEY_SCROLL demos/interface.h /^ KEY_SCROLL = 0x91,$/;" e enum:__anon41 +KEY_SELECT demos/interface.h /^ KEY_SELECT = 0x29,$/;" e enum:__anon41 +KEY_SEPARATOR demos/interface.h /^ KEY_SEPARATOR = 0x6C,$/;" e enum:__anon41 +KEY_SHIFT demos/interface.h /^ KEY_SHIFT = 0x10,$/;" e enum:__anon41 +KEY_SLEEP demos/interface.h /^ KEY_SLEEP = 0x5F,$/;" e enum:__anon41 +KEY_SNAPSHOT demos/interface.h /^ KEY_SNAPSHOT = 0x2C,$/;" e enum:__anon41 +KEY_SPACE demos/interface.h /^ KEY_SPACE = 0x20,$/;" e enum:__anon41 +KEY_SUBTRACT demos/interface.h /^ KEY_SUBTRACT = 0x6D,$/;" e enum:__anon41 +KEY_T demos/interface.h /^ KEY_T = 0x54,$/;" e enum:__anon41 +KEY_TAB demos/interface.h /^ KEY_TAB = 0x09,$/;" e enum:__anon41 +KEY_U demos/interface.h /^ KEY_U = 0x55,$/;" e enum:__anon41 +KEY_UNKNOWN demos/interface.h /^ KEY_UNKNOWN = 0,$/;" e enum:__anon41 +KEY_UP demos/interface.h /^ KEY_UP = 0x26,$/;" e enum:__anon41 +KEY_V demos/interface.h /^ KEY_V = 0x56,$/;" e enum:__anon41 +KEY_VOLUME_DOWN demos/interface.h /^ KEY_VOLUME_DOWN = 0xAE,$/;" e enum:__anon41 +KEY_VOLUME_MUTE demos/interface.h /^ KEY_VOLUME_MUTE = 0xAD,$/;" e enum:__anon41 +KEY_VOLUME_UP demos/interface.h /^ KEY_VOLUME_UP = 0xAF,$/;" e enum:__anon41 +KEY_W demos/interface.h /^ KEY_W = 0x57,$/;" e enum:__anon41 +KEY_X demos/interface.h /^ KEY_X = 0x58,$/;" e enum:__anon41 +KEY_Y demos/interface.h /^ KEY_Y = 0x59,$/;" e enum:__anon41 +KEY_Z demos/interface.h /^ KEY_Z = 0x5A,$/;" e enum:__anon41 +KEY_ZOOM demos/interface.h /^ KEY_ZOOM = 0xFB,$/;" e enum:__anon41 +KW_ANY android/expat/lib/xmlrole.c /^static const char KW_ANY[] = {$/;" v file: +KW_ATTLIST android/expat/lib/xmlrole.c /^static const char KW_ATTLIST[] = {$/;" v file: +KW_CDATA android/expat/lib/xmlrole.c /^static const char KW_CDATA[] = {$/;" v file: +KW_DOCTYPE android/expat/lib/xmlrole.c /^static const char KW_DOCTYPE[] = {$/;" v file: +KW_ELEMENT android/expat/lib/xmlrole.c /^static const char KW_ELEMENT[] = {$/;" v file: +KW_EMPTY android/expat/lib/xmlrole.c /^static const char KW_EMPTY[] = {$/;" v file: +KW_ENTITIES android/expat/lib/xmlrole.c /^static const char KW_ENTITIES[] = {$/;" v file: +KW_ENTITY android/expat/lib/xmlrole.c /^static const char KW_ENTITY[] = {$/;" v file: +KW_FIXED android/expat/lib/xmlrole.c /^static const char KW_FIXED[] = {$/;" v file: +KW_ID android/expat/lib/xmlrole.c /^static const char KW_ID[] = {$/;" v file: +KW_IDREF android/expat/lib/xmlrole.c /^static const char KW_IDREF[] = {$/;" v file: +KW_IDREFS android/expat/lib/xmlrole.c /^static const char KW_IDREFS[] = {$/;" v file: +KW_IGNORE android/expat/lib/xmlrole.c /^static const char KW_IGNORE[] = {$/;" v file: +KW_IMPLIED android/expat/lib/xmlrole.c /^static const char KW_IMPLIED[] = {$/;" v file: +KW_INCLUDE android/expat/lib/xmlrole.c /^static const char KW_INCLUDE[] = {$/;" v file: +KW_ISO_8859_1 android/expat/lib/xmltok.c /^static const char KW_ISO_8859_1[] = {$/;" v file: +KW_NDATA android/expat/lib/xmlrole.c /^static const char KW_NDATA[] = {$/;" v file: +KW_NMTOKEN android/expat/lib/xmlrole.c /^static const char KW_NMTOKEN[] = {$/;" v file: +KW_NMTOKENS android/expat/lib/xmlrole.c /^static const char KW_NMTOKENS[] = {$/;" v file: +KW_NOTATION android/expat/lib/xmlrole.c /^static const char KW_NOTATION[] =$/;" v file: +KW_PCDATA android/expat/lib/xmlrole.c /^static const char KW_PCDATA[] = {$/;" v file: +KW_PUBLIC android/expat/lib/xmlrole.c /^static const char KW_PUBLIC[] = {$/;" v file: +KW_REQUIRED android/expat/lib/xmlrole.c /^static const char KW_REQUIRED[] = {$/;" v file: +KW_SYSTEM android/expat/lib/xmlrole.c /^static const char KW_SYSTEM[] = {$/;" v file: +KW_US_ASCII android/expat/lib/xmltok.c /^static const char KW_US_ASCII[] = {$/;" v file: +KW_UTF_16 android/expat/lib/xmltok.c /^static const char KW_UTF_16[] = {$/;" v file: +KW_UTF_16BE android/expat/lib/xmltok.c /^static const char KW_UTF_16BE[] = {$/;" v file: +KW_UTF_16LE android/expat/lib/xmltok.c /^static const char KW_UTF_16LE[] = {$/;" v file: +KW_UTF_8 android/expat/lib/xmltok.c /^static const char KW_UTF_8[] = {$/;" v file: +KW_encoding android/expat/lib/xmltok.c /^static const char KW_encoding[] = {$/;" v file: +KW_no android/expat/lib/xmltok.c /^static const char KW_no[] = {$/;" v file: +KW_standalone android/expat/lib/xmltok.c /^static const char KW_standalone[] = {$/;" v file: +KW_version android/expat/lib/xmltok.c /^static const char KW_version[] = {$/;" v file: +KW_yes android/expat/lib/xmltok.c /^static const char KW_yes[] = {$/;" v file: +KernPairs android/freetype/include/freetype/internal/t1types.h /^ AFM_KernPair KernPairs; \/* free if non-NULL *\/$/;" m struct:AFM_FontInfoRec_ +KernPairs include/freetype/internal/t1types.h /^ AFM_KernPair KernPairs; \/* free if non-NULL *\/$/;" m struct:AFM_FontInfoRec_ +KeyEntities demos/platform_gix.c /^}KeyEntities;$/;" t typeref:struct:__anon42 file: +KeyEntities demos/platform_gtk2.c /^}KeyEntities;$/;" t typeref:struct:__anon43 file: +KeyEntities demos/platform_minigui.c /^}KeyEntities;$/;" t typeref:struct:__anon44 file: +KeyEntities demos/platform_qt4.cpp /^}KeyEntities;$/;" t typeref:struct:__anon45 file: +LEAD_CASE android/expat/lib/xmltok_impl.c /^#define LEAD_CASE(/;" d file: +LEAD_CASE android/expat/lib/xmltok_impl.c /^#undef LEAD_CASE$/;" d file: +LED src/picasso_gpc.cpp /^ LED, \/* Left edge *\/$/;" e enum:picasso::__anon216 file: +LEFT src/picasso_gpc.cpp /^#define LEFT /;" d file: +LEFT_BUTTON_DOWN demos/interface.h /^ LEFT_BUTTON_DOWN,$/;" e enum:__anon38 +LEFT_BUTTON_UP demos/interface.h /^ LEFT_BUTTON_UP,$/;" e enum:__anon38 +LINE_CAP_BUTT include/picasso.h /^ LINE_CAP_BUTT,$/;" e enum:_ps_line_cap +LINE_CAP_ROUND include/picasso.h /^ LINE_CAP_ROUND,$/;" e enum:_ps_line_cap +LINE_CAP_SQUARE include/picasso.h /^ LINE_CAP_SQUARE,$/;" e enum:_ps_line_cap +LINE_INNER_BEVEL include/picasso.h /^ LINE_INNER_BEVEL,$/;" e enum:_ps_line_inner_join +LINE_INNER_JAG include/picasso.h /^ LINE_INNER_JAG,$/;" e enum:_ps_line_inner_join +LINE_INNER_MITER include/picasso.h /^ LINE_INNER_MITER,$/;" e enum:_ps_line_inner_join +LINE_INNER_ROUND include/picasso.h /^ LINE_INNER_ROUND,$/;" e enum:_ps_line_inner_join +LINE_JOIN_BEVEL include/picasso.h /^ LINE_JOIN_BEVEL,$/;" e enum:_ps_line_join +LINE_JOIN_MITER include/picasso.h /^ LINE_JOIN_MITER,$/;" e enum:_ps_line_join +LINE_JOIN_MITER_REVERT include/picasso.h /^ LINE_JOIN_MITER_REVERT,$/;" e enum:_ps_line_join +LINE_JOIN_MITER_ROUND include/picasso.h /^ LINE_JOIN_MITER_ROUND,$/;" e enum:_ps_line_join +LINE_JOIN_ROUND include/picasso.h /^ LINE_JOIN_ROUND,$/;" e enum:_ps_line_join +LITTLE2_BYTE_TO_ASCII android/expat/lib/xmltok.c /^#define LITTLE2_BYTE_TO_ASCII(/;" d file: +LITTLE2_BYTE_TYPE android/expat/lib/xmltok.c /^#define LITTLE2_BYTE_TYPE(/;" d file: +LITTLE2_CHAR_MATCHES android/expat/lib/xmltok.c /^#define LITTLE2_CHAR_MATCHES(/;" d file: +LITTLE2_IS_NAME_CHAR_MINBPC android/expat/lib/xmltok.c /^#define LITTLE2_IS_NAME_CHAR_MINBPC(/;" d file: +LITTLE2_IS_NMSTRT_CHAR_MINBPC android/expat/lib/xmltok.c /^#define LITTLE2_IS_NMSTRT_CHAR_MINBPC(/;" d file: +LOADM_ android/freetype/src/sfnt/sfobjs.c /^#define LOADM_(/;" d file: +LOADM_ android/freetype/src/sfnt/sfobjs.c /^#undef LOADM_$/;" d file: +LOAD_ android/freetype/src/sfnt/sfobjs.c /^#define LOAD_(/;" d file: +LOAD_ android/freetype/src/sfnt/sfobjs.c /^#undef LOAD_$/;" d file: +LOAD_ADVANCE_FAST_CHECK android/freetype/src/base/ftadvanc.c /^#define LOAD_ADVANCE_FAST_CHECK(/;" d file: +LOCAL_ADDITIONAL_DEPENDENCIES android/expat/Android.mk /^LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)\/Android.mk$/;" m +LOCAL_ARM_MODE android/freetype/Android.mk /^LOCAL_ARM_MODE := arm$/;" m +LOCAL_CFLAGS android/jni/Android.mk /^LOCAL_CFLAGS := $(LOCAL_CPPFLAGS)$/;" m +LOCAL_COPY_HEADERS android/expat/Android.mk /^LOCAL_COPY_HEADERS := $(common_COPY_HEADERS)$/;" m +LOCAL_COPY_HEADERS_TO android/expat/Android.mk /^LOCAL_COPY_HEADERS_TO := $(common_COPY_HEADERS_TO)$/;" m +LOCAL_CPPFLAGS android/jni/Android.mk /^LOCAL_CPPFLAGS := -DEXPORT=1 -DNDEBUG=1 -D__ANDROID__=1 \\$/;" m +LOCAL_CPPFLAGS android/jni/Android.mk /^LOCAL_CPPFLAGS := -O3 -Wall$/;" m +LOCAL_C_INCLUDES android/jni/Android.mk /^LOCAL_C_INCLUDES := \\$/;" m +LOCAL_LDFLAGS android/jni/Android.mk /^LOCAL_LDFLAGS := \\$/;" m +LOCAL_LDLIBS android/jni/Android.mk /^LOCAL_LDLIBS := -llog -landroid -lEGL -lGLESv1_CM$/;" m +LOCAL_LDLIBS android/jni/Android.mk /^LOCAL_LDLIBS := \\$/;" m +LOCAL_MODULE android/expat/Android.mk /^LOCAL_MODULE:= libexpat$/;" m +LOCAL_MODULE android/expat/Android.mk /^LOCAL_MODULE:= libexpat_static$/;" m +LOCAL_MODULE android/expat/jni/Android.mk /^LOCAL_MODULE:= libexpat$/;" m +LOCAL_MODULE android/freetype/Android.mk /^LOCAL_MODULE:= libft2$/;" m +LOCAL_MODULE android/freetype/jni/Android.mk /^LOCAL_MODULE := libft2$/;" m +LOCAL_MODULE android/jni/Android.mk /^LOCAL_MODULE := picasso$/;" m +LOCAL_MODULE android/jni/Android.mk /^LOCAL_MODULE := picasso-test$/;" m +LOCAL_MODULE_TAGS android/expat/Android.mk /^LOCAL_MODULE_TAGS := optional$/;" m +LOCAL_PATH android/expat/Android.mk /^LOCAL_PATH:= $(call my-dir)$/;" m +LOCAL_PATH android/expat/jni/Android.mk /^LOCAL_PATH:= $(call my-dir)$/;" m +LOCAL_PATH android/freetype/Android.mk /^LOCAL_PATH:= $(call my-dir)$/;" m +LOCAL_PATH android/freetype/jni/Android.mk /^LOCAL_PATH := $(call my-dir)$/;" m +LOCAL_PATH android/jni/Android.mk /^LOCAL_PATH := $(call my-dir)$/;" m +LOCAL_SDK_VERSION android/expat/Android.mk /^LOCAL_SDK_VERSION := 8$/;" m +LOCAL_SDK_VERSION android/expat/jni/Android.mk /^LOCAL_SDK_VERSION := 8$/;" m +LOCAL_SRC_FILES android/expat/Android.mk /^LOCAL_SRC_FILES := $(common_SRC_FILES)$/;" m +LOCAL_SRC_FILES android/expat/jni/Android.mk /^LOCAL_SRC_FILES := $(common_SRC_FILES)$/;" m +LOCAL_SRC_FILES android/freetype/Android.mk /^LOCAL_SRC_FILES:= \\$/;" m +LOCAL_SRC_FILES android/freetype/jni/Android.mk /^LOCAL_SRC_FILES := \\$/;" m +LOCAL_SRC_FILES android/jni/Android.mk /^LOCAL_SRC_FILES := \\$/;" m +LOCAL_SRC_FILES android/jni/Android.mk /^LOCAL_SRC_FILES := test_android.cpp \\$/;" m +LOCAL_STATIC_LIBRARIES android/jni/Android.mk /^LOCAL_STATIC_LIBRARIES := android_native_app_glue picasso$/;" m +LOGI android/jni/test_android.cpp /^#define LOGI(/;" d file: +LOGW android/jni/test_android.cpp /^#define LOGW(/;" d file: +LT_OBJDIR android/expat/expat_config.h /^#define LT_OBJDIR /;" d +Length android/freetype/include/freetype/internal/tttypes.h /^ FT_ULong Length; \/* table length *\/$/;" m struct:TT_TableRec_ +Length include/freetype/internal/tttypes.h /^ FT_ULong Length; \/* table length *\/$/;" m struct:TT_TableRec_ +Line_Down android/freetype/src/raster/ftraster.c /^ Line_Down( RAS_ARGS Long x1,$/;" f file: +Line_Gap android/freetype/include/freetype/tttables.h /^ FT_Short Line_Gap;$/;" m struct:TT_HoriHeader_ +Line_Gap android/freetype/include/freetype/tttables.h /^ FT_Short Line_Gap;$/;" m struct:TT_VertHeader_ +Line_Gap include/freetype/tttables.h /^ FT_Short Line_Gap;$/;" m struct:TT_HoriHeader_ +Line_Gap include/freetype/tttables.h /^ FT_Short Line_Gap;$/;" m struct:TT_VertHeader_ +Line_To android/freetype/src/raster/ftraster.c /^ Line_To( RAS_ARGS Long x,$/;" f file: +Line_Up android/freetype/src/raster/ftraster.c /^ Line_Up( RAS_ARGS Long x1,$/;" f file: +LinkDependencies tools/gyp/build/lib/gyp/input.py /^ def LinkDependencies(self, targets, dependencies=None, initial=True):$/;" m class:DependencyGraphNode +LinkDependencies tools/gyp/pylib/gyp/input.py /^ def LinkDependencies(self, targets, dependencies=None, initial=True):$/;" m class:DependencyGraphNode +LinkLock tools/gyp/build/lib/gyp/win_tool.py /^class LinkLock(object):$/;" c +LinkLock tools/gyp/pylib/gyp/win_tool.py /^class LinkLock(object):$/;" c +Linkable tools/gyp/build/lib/gyp/generator/make.py /^def Linkable(filename):$/;" f +Linkable tools/gyp/build/lib/gyp/generator/ninja.py /^ def Linkable(self):$/;" m class:Target +Linkable tools/gyp/pylib/gyp/generator/make.py /^def Linkable(filename):$/;" f +Linkable tools/gyp/pylib/gyp/generator/ninja.py /^ def Linkable(self):$/;" m class:Target +List tools/gyp/build/lib/gyp/input.py /^from compiler.ast import List$/;" i +List tools/gyp/pylib/gyp/input.py /^from compiler.ast import List$/;" i +Load tools/gyp/build/lib/gyp/__init__.py /^def Load(build_files, format, default_variables={},$/;" f +Load tools/gyp/build/lib/gyp/input.py /^def Load(build_files, variables, includes, depth, generator_input_info, check,$/;" f +Load tools/gyp/pylib/gyp/__init__.py /^def Load(build_files, format, default_variables={},$/;" f +Load tools/gyp/pylib/gyp/input.py /^def Load(build_files, variables, includes, depth, generator_input_info, check,$/;" f +LoadAutomaticVariablesFromDict tools/gyp/build/lib/gyp/input.py /^def LoadAutomaticVariablesFromDict(variables, the_dict):$/;" f +LoadAutomaticVariablesFromDict tools/gyp/pylib/gyp/input.py /^def LoadAutomaticVariablesFromDict(variables, the_dict):$/;" f +LoadBmpWinProc test/testMg.c /^static int LoadBmpWinProc(HWND hWnd, int message, WPARAM wParam, LPARAM lParam)$/;" f file: +LoadBuildFileIncludesIntoDict tools/gyp/build/lib/gyp/input.py /^def LoadBuildFileIncludesIntoDict(subdict, subdict_path, data, aux_data,$/;" f +LoadBuildFileIncludesIntoDict tools/gyp/pylib/gyp/input.py /^def LoadBuildFileIncludesIntoDict(subdict, subdict_path, data, aux_data,$/;" f +LoadBuildFileIncludesIntoList tools/gyp/build/lib/gyp/input.py /^def LoadBuildFileIncludesIntoList(sublist, sublist_path, data, aux_data,$/;" f +LoadBuildFileIncludesIntoList tools/gyp/pylib/gyp/input.py /^def LoadBuildFileIncludesIntoList(sublist, sublist_path, data, aux_data,$/;" f +LoadEdges tools/gyp/tools/graphviz.py /^def LoadEdges(filename, targets):$/;" f +LoadOneBuildFile tools/gyp/build/lib/gyp/input.py /^def LoadOneBuildFile(build_file_path, data, aux_data, variables, includes,$/;" f +LoadOneBuildFile tools/gyp/pylib/gyp/input.py /^def LoadOneBuildFile(build_file_path, data, aux_data, variables, includes,$/;" f +LoadTargetBuildFile tools/gyp/build/lib/gyp/input.py /^def LoadTargetBuildFile(build_file_path, data, aux_data, variables, includes,$/;" f +LoadTargetBuildFile tools/gyp/pylib/gyp/input.py /^def LoadTargetBuildFile(build_file_path, data, aux_data, variables, includes,$/;" f +LoadTargetBuildFileCallback tools/gyp/build/lib/gyp/input.py /^ def LoadTargetBuildFileCallback(self, result):$/;" m class:ParallelState +LoadTargetBuildFileCallback tools/gyp/pylib/gyp/input.py /^ def LoadTargetBuildFileCallback(self, result):$/;" m class:ParallelState +LoadTargetBuildFileParallel tools/gyp/build/lib/gyp/input.py /^def LoadTargetBuildFileParallel(build_file_path, data, aux_data,$/;" f +LoadTargetBuildFileParallel tools/gyp/pylib/gyp/input.py /^def LoadTargetBuildFileParallel(build_file_path, data, aux_data,$/;" f +LoadVariablesFromVariablesDict tools/gyp/build/lib/gyp/input.py /^def LoadVariablesFromVariablesDict(variables, the_dict, the_dict_key):$/;" f +LoadVariablesFromVariablesDict tools/gyp/pylib/gyp/input.py /^def LoadVariablesFromVariablesDict(variables, the_dict, the_dict_key):$/;" f +Load_Glyph android/freetype/src/truetype/ttdriver.c /^ Load_Glyph( FT_GlyphSlot ttslot, \/* TT_GlyphSlot *\/$/;" f file: +Load_SBit_Const_Metrics android/freetype/src/sfnt/ttsbit.c /^ Load_SBit_Const_Metrics( TT_SBit_Range range,$/;" f file: +Load_SBit_Image android/freetype/src/sfnt/ttsbit.c /^ Load_SBit_Image( TT_SBit_Strike strike,$/;" f file: +Load_SBit_Range android/freetype/src/sfnt/ttsbit.c /^ Load_SBit_Range( TT_SBit_Range range,$/;" f file: +Load_SBit_Range_Codes android/freetype/src/sfnt/ttsbit.c /^ Load_SBit_Range_Codes( TT_SBit_Range range,$/;" f file: +Load_SBit_Single android/freetype/src/sfnt/ttsbit.c /^ Load_SBit_Single( FT_Bitmap* map,$/;" f file: +LoadableModuleTarget tools/gyp/build/lib/gyp/SCons.py /^class LoadableModuleTarget(CompilableSourcesTargetBase):$/;" c +LoadableModuleTarget tools/gyp/pylib/gyp/SCons.py /^class LoadableModuleTarget(CompilableSourcesTargetBase):$/;" c +LocalPathify tools/gyp/build/lib/gyp/generator/android.py /^ def LocalPathify(self, path):$/;" m class:AndroidMkWriter +LocalPathify tools/gyp/pylib/gyp/generator/android.py /^ def LocalPathify(self, path):$/;" m class:AndroidMkWriter +Long android/freetype/src/raster/ftraster.c /^ typedef long Long, *PLong;$/;" t file: +Lowest_Rec_PPEM android/freetype/include/freetype/tttables.h /^ FT_UShort Lowest_Rec_PPEM;$/;" m struct:TT_Header_ +Lowest_Rec_PPEM include/freetype/tttables.h /^ FT_UShort Lowest_Rec_PPEM;$/;" m struct:TT_Header_ +MACCONFIG_H android/expat/lib/macconfig.h /^#define MACCONFIG_H$/;" d +MAC_NAME android/freetype/src/sfnt/ttpost.c /^#define MAC_NAME(/;" d file: +MALLOC android/expat/lib/xmlparse.c /^#define MALLOC(/;" d file: +MAP_HEIGHT demos/subwaymap.c /^#define MAP_HEIGHT /;" d file: +MAP_WIDTH demos/subwaymap.c /^#define MAP_WIDTH /;" d file: +MASK_ALPHA src/picasso_mask.h /^ MASK_ALPHA,$/;" e enum:__anon223 +MASK_COLORS src/picasso_mask.h /^ MASK_COLORS,$/;" e enum:__anon223 +MAX src/picasso_global.h /^#define MAX(/;" d +MAX_CACHE src/picasso_font_cache.h /^#define MAX_CACHE /;" d +MAX_FLOWERS demos/flowers.c /^#define MAX_FLOWERS /;" d file: +MAX_FONTS src/picasso_font.h /^#define MAX_FONTS /;" d +MAX_FONT_NAME_LENGTH src/picasso_font.h /^#define MAX_FONT_NAME_LENGTH /;" d +MAX_PAINTS demos/flowers.c /^#define MAX_PAINTS /;" d file: +MAX_RUNNABLE_OPCODES android/freetype/src/truetype/ttinterp.c /^#define MAX_RUNNABLE_OPCODES /;" d file: +MIDDLE_BUTTON_DOWN demos/interface.h /^ MIDDLE_BUTTON_DOWN,$/;" e enum:__anon38 +MIDDLE_BUTTON_UP demos/interface.h /^ MIDDLE_BUTTON_UP,$/;" e enum:__anon38 +MIN src/picasso_global.h /^#define MIN(/;" d +MINBPC android/expat/lib/xmltok.c /^#define MINBPC(/;" d file: +MINBPC android/expat/lib/xmltok.c /^#undef MINBPC$/;" d file: +MIN_BYTES_PER_CHAR android/expat/lib/xmlrole.c /^#define MIN_BYTES_PER_CHAR(/;" d file: +MODULE_CLASSES tools/gyp/build/lib/gyp/generator/android.py /^MODULE_CLASSES = {$/;" v +MODULE_CLASSES tools/gyp/pylib/gyp/generator/android.py /^MODULE_CLASSES = {$/;" v +MORE_COMPONENTS android/freetype/src/truetype/ttgload.c /^#define MORE_COMPONENTS /;" d file: +MOUSE_MOVE demos/interface.h /^ MOUSE_MOVE,$/;" e enum:__anon38 +MOUSE_WHEEL demos/interface.h /^ MOUSE_WHEEL,$/;" e enum:__anon38 +MOVE_Zp2_Point android/freetype/src/truetype/ttinterp.c /^#define MOVE_Zp2_Point(/;" d file: +MSBuildRule tools/gyp/build/lib/gyp/generator/msvs.py /^class MSBuildRule(object):$/;" c +MSBuildRule tools/gyp/pylib/gyp/generator/msvs.py /^class MSBuildRule(object):$/;" c +MSVSFolder tools/gyp/build/lib/gyp/MSVSNew.py /^class MSVSFolder(MSVSSolutionEntry):$/;" c +MSVSFolder tools/gyp/pylib/gyp/MSVSNew.py /^class MSVSFolder(MSVSSolutionEntry):$/;" c +MSVSNew tools/gyp/build/lib/gyp/generator/msvs.py /^import gyp.MSVSNew as MSVSNew$/;" i +MSVSNew tools/gyp/pylib/gyp/generator/msvs.py /^import gyp.MSVSNew as MSVSNew$/;" i +MSVSProject tools/gyp/build/lib/gyp/MSVSNew.py /^class MSVSProject(MSVSSolutionEntry):$/;" c +MSVSProject tools/gyp/build/lib/gyp/generator/msvs.py /^import gyp.MSVSProject as MSVSProject$/;" i +MSVSProject tools/gyp/pylib/gyp/MSVSNew.py /^class MSVSProject(MSVSSolutionEntry):$/;" c +MSVSProject tools/gyp/pylib/gyp/generator/msvs.py /^import gyp.MSVSProject as MSVSProject$/;" i +MSVSSettings tools/gyp/build/lib/gyp/MSVSSettings_test.py /^import gyp.MSVSSettings as MSVSSettings$/;" i +MSVSSettings tools/gyp/build/lib/gyp/generator/msvs.py /^import gyp.MSVSSettings as MSVSSettings$/;" i +MSVSSettings tools/gyp/pylib/gyp/MSVSSettings_test.py /^import gyp.MSVSSettings as MSVSSettings$/;" i +MSVSSettings tools/gyp/pylib/gyp/generator/msvs.py /^import gyp.MSVSSettings as MSVSSettings$/;" i +MSVSSolution tools/gyp/build/lib/gyp/MSVSNew.py /^class MSVSSolution:$/;" c +MSVSSolution tools/gyp/pylib/gyp/MSVSNew.py /^class MSVSSolution:$/;" c +MSVSSolutionEntry tools/gyp/build/lib/gyp/MSVSNew.py /^class MSVSSolutionEntry(object):$/;" c +MSVSSolutionEntry tools/gyp/pylib/gyp/MSVSNew.py /^class MSVSSolutionEntry(object):$/;" c +MSVSToolFile tools/gyp/build/lib/gyp/generator/msvs.py /^import gyp.MSVSToolFile as MSVSToolFile$/;" i +MSVSToolFile tools/gyp/pylib/gyp/generator/msvs.py /^import gyp.MSVSToolFile as MSVSToolFile$/;" i +MSVSUserFile tools/gyp/build/lib/gyp/generator/msvs.py /^import gyp.MSVSUserFile as MSVSUserFile$/;" i +MSVSUserFile tools/gyp/pylib/gyp/generator/msvs.py /^import gyp.MSVSUserFile as MSVSUserFile$/;" i +MSVSUtil tools/gyp/build/lib/gyp/generator/msvs.py /^import gyp.MSVSUtil as MSVSUtil$/;" i +MSVSUtil tools/gyp/build/lib/gyp/generator/ninja.py /^import gyp.MSVSUtil as MSVSUtil$/;" i +MSVSUtil tools/gyp/pylib/gyp/generator/msvs.py /^import gyp.MSVSUtil as MSVSUtil$/;" i +MSVSUtil tools/gyp/pylib/gyp/generator/ninja.py /^import gyp.MSVSUtil as MSVSUtil$/;" i +MSVSVersion tools/gyp/build/lib/gyp/generator/msvs.py /^import gyp.MSVSVersion as MSVSVersion$/;" i +MSVSVersion tools/gyp/build/lib/gyp/msvs_emulation.py /^import gyp.MSVSVersion$/;" i +MSVSVersion tools/gyp/pylib/gyp/generator/msvs.py /^import gyp.MSVSVersion as MSVSVersion$/;" i +MSVSVersion tools/gyp/pylib/gyp/msvs_emulation.py /^import gyp.MSVSVersion$/;" i +MSVS_VARIABLE_REFERENCE tools/gyp/build/lib/gyp/generator/msvs.py /^MSVS_VARIABLE_REFERENCE = re.compile('\\$\\(([a-zA-Z_][a-zA-Z0-9_]*)\\)')$/;" v +MSVS_VARIABLE_REFERENCE tools/gyp/pylib/gyp/generator/msvs.py /^MSVS_VARIABLE_REFERENCE = re.compile('\\$\\(([a-zA-Z_][a-zA-Z0-9_]*)\\)')$/;" v +MULTIBYTE_CASES android/expat/lib/xmltok_impl.c /^#undef MULTIBYTE_CASES$/;" d file: +MUST_CONVERT android/expat/lib/xmlparse.c /^#define MUST_CONVERT(/;" d file: +MacPrefixHeader tools/gyp/build/lib/gyp/xcode_emulation.py /^class MacPrefixHeader(object):$/;" c +MacPrefixHeader tools/gyp/pylib/gyp/xcode_emulation.py /^class MacPrefixHeader(object):$/;" c +MacTool tools/gyp/build/lib/gyp/mac_tool.py /^class MacTool(object):$/;" c +MacTool tools/gyp/pylib/gyp/mac_tool.py /^class MacTool(object):$/;" c +Mac_Read_POST_Resource android/freetype/src/base/ftobjs.c /^ Mac_Read_POST_Resource( FT_Library library,$/;" f file: +Mac_Read_sfnt_Resource android/freetype/src/base/ftobjs.c /^ Mac_Read_sfnt_Resource( FT_Library library,$/;" f file: +Mac_Style android/freetype/include/freetype/tttables.h /^ FT_UShort Mac_Style;$/;" m struct:TT_Header_ +Mac_Style include/freetype/tttables.h /^ FT_UShort Mac_Style;$/;" m struct:TT_Header_ +Magic_Number android/freetype/include/freetype/tttables.h /^ FT_Long Magic_Number;$/;" m struct:TT_Header_ +Magic_Number include/freetype/tttables.h /^ FT_Long Magic_Number;$/;" m struct:TT_Header_ +Main tools/cp.py /^def Main(src, dst):$/;" f +MakeGuid tools/gyp/build/lib/gyp/MSVSNew.py /^def MakeGuid(name, seed='msvs_new'):$/;" f +MakeGuid tools/gyp/pylib/gyp/MSVSNew.py /^def MakeGuid(name, seed='msvs_new'):$/;" f +MakePathRelative tools/gyp/build/lib/gyp/input.py /^def MakePathRelative(to_file, fro_file, item):$/;" f +MakePathRelative tools/gyp/pylib/gyp/input.py /^def MakePathRelative(to_file, fro_file, item):$/;" f +MakefileWriter tools/gyp/build/lib/gyp/generator/make.py /^class MakefileWriter:$/;" c +MakefileWriter tools/gyp/pylib/gyp/generator/make.py /^class MakefileWriter:$/;" c +Max src/include/math_type.h /^template inline T Max(T a, T b) { return (a > b) ? a : b; }$/;" f +MaxBezier android/freetype/src/raster/ftraster.c /^#define MaxBezier /;" d file: +MergeAttributes tools/gyp/tools/pretty_vcproj.py /^def MergeAttributes(node1, node2):$/;" f +MergeConfigWithInheritance tools/gyp/build/lib/gyp/input.py /^def MergeConfigWithInheritance(new_configuration_dict, build_file,$/;" f +MergeConfigWithInheritance tools/gyp/pylib/gyp/input.py /^def MergeConfigWithInheritance(new_configuration_dict, build_file,$/;" f +MergeDicts tools/gyp/build/lib/gyp/input.py /^def MergeDicts(to, fro, to_file, fro_file):$/;" f +MergeDicts tools/gyp/pylib/gyp/input.py /^def MergeDicts(to, fro, to_file, fro_file):$/;" f +MergeGlobalXcodeSettingsToSpec tools/gyp/build/lib/gyp/xcode_emulation.py /^def MergeGlobalXcodeSettingsToSpec(global_dict, spec):$/;" f +MergeGlobalXcodeSettingsToSpec tools/gyp/pylib/gyp/xcode_emulation.py /^def MergeGlobalXcodeSettingsToSpec(global_dict, spec):$/;" f +MergeLists tools/gyp/build/lib/gyp/input.py /^def MergeLists(to, fro, to_file, fro_file, is_paths=False, append=True):$/;" f +MergeLists tools/gyp/pylib/gyp/input.py /^def MergeLists(to, fro, to_file, fro_file, is_paths=False, append=True):$/;" f +MergeProperties tools/gyp/tools/pretty_vcproj.py /^def MergeProperties(node1, node2):$/;" f +Min src/include/math_type.h /^template inline T Min(T a, T b) { return (a < b) ? a : b; }$/;" f +MiniGUIMain demos/platform_minigui.c /^int MiniGUIMain (int argc, const char* argv[])$/;" f +MiniGUIMain test/testMg.c /^int MiniGUIMain (int argc, const char* argv[])$/;" f +Modified android/freetype/include/freetype/tttables.h /^ FT_Long Modified[2];$/;" m struct:TT_Header_ +Modified include/freetype/tttables.h /^ FT_Long Modified[2];$/;" m struct:TT_Header_ +Module tools/gyp/build/lib/gyp/input.py /^from compiler.ast import Module$/;" i +Module tools/gyp/pylib/gyp/input.py /^from compiler.ast import Module$/;" i +Move_CVT android/freetype/src/truetype/ttinterp.c /^ Move_CVT( EXEC_OP_ FT_ULong idx,$/;" f +Move_CVT_Stretched android/freetype/src/truetype/ttinterp.c /^ Move_CVT_Stretched( EXEC_OP_ FT_ULong idx,$/;" f +Move_Zp2_Point android/freetype/src/truetype/ttinterp.c /^ Move_Zp2_Point( EXEC_OP_ FT_UShort point,$/;" f file: +MsvsSettings tools/gyp/build/lib/gyp/msvs_emulation.py /^class MsvsSettings(object):$/;" c +MsvsSettings tools/gyp/pylib/gyp/msvs_emulation.py /^class MsvsSettings(object):$/;" c +MyRegisterClass demos/platform_win32.c /^ATOM MyRegisterClass(HINSTANCE hInstance)$/;" f +MyRegisterClass test/testWin.c /^ATOM MyRegisterClass(HINSTANCE hInstance)$/;" f +NAMED android/expat/lib/xmlparse.c /^} NAMED;$/;" t typeref:struct:__anon7 file: +NEXT_INDEX src/picasso_gpc.cpp /^#define NEXT_INDEX(/;" d file: +NH src/picasso_gpc.cpp /^ NH, \/* No horizontal edge *\/$/;" e enum:picasso::__anon217 file: +NORMAL_VTABLE android/expat/lib/xmltok.c /^#define NORMAL_VTABLE(/;" d file: +NORMalize android/freetype/src/truetype/ttinterp.c /^#define NORMalize(/;" d file: +NOT_FMAX src/picasso_gpc.cpp /^#define NOT_FMAX(/;" d file: +NOT_RMAX src/picasso_gpc.cpp /^#define NOT_RMAX(/;" d file: +NO_ENC android/expat/lib/xmltok.c /^ NO_ENC$/;" e enum:__anon20 file: +NS android/expat/lib/xmltok.c /^#define NS(/;" d file: +NS android/expat/lib/xmltok.c /^#undef NS$/;" d file: +NS_ATT android/expat/lib/xmlparse.c /^} NS_ATT;$/;" t typeref:struct:__anon15 file: +NUL src/picasso_gpc.cpp /^ NUL, \/* Empty non-intersection *\/$/;" e enum:picasso::__anon216 file: +NULL android/freetype/include/freetype/internal/ftobjs.h /^#define NULL /;" d +NULL android/freetype/src/raster/ftraster.c /^#define NULL /;" d file: +NULL include/freetype/internal/ftobjs.h /^#define NULL /;" d +NUM_PATHS demos/subwaymap.c /^#define NUM_PATHS /;" d file: +N_AFM_TOKENS android/freetype/src/psaux/afmparse.c /^ N_AFM_TOKENS,$/;" e enum:AFM_Token_ file: +N_EDGE src/picasso_gpc.cpp /^#define N_EDGE(/;" d file: +Name tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def Name(self):$/;" m class:PBXBuildFile +Name tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def Name(self):$/;" m class:PBXBuildRule +Name tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def Name(self):$/;" m class:PBXContainerItemProxy +Name tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def Name(self):$/;" m class:PBXCopyFilesBuildPhase +Name tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def Name(self):$/;" m class:PBXFrameworksBuildPhase +Name tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def Name(self):$/;" m class:PBXHeadersBuildPhase +Name tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def Name(self):$/;" m class:PBXProject +Name tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def Name(self):$/;" m class:PBXResourcesBuildPhase +Name tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def Name(self):$/;" m class:PBXShellScriptBuildPhase +Name tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def Name(self):$/;" m class:PBXSourcesBuildPhase +Name tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def Name(self):$/;" m class:PBXTargetDependency +Name tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def Name(self):$/;" m class:XCConfigurationList +Name tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def Name(self):$/;" m class:XCHierarchicalElement +Name tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def Name(self):$/;" m class:XCObject +Name tools/gyp/pylib/gyp/xcodeproj_file.py /^ def Name(self):$/;" m class:PBXBuildFile +Name tools/gyp/pylib/gyp/xcodeproj_file.py /^ def Name(self):$/;" m class:PBXBuildRule +Name tools/gyp/pylib/gyp/xcodeproj_file.py /^ def Name(self):$/;" m class:PBXContainerItemProxy +Name tools/gyp/pylib/gyp/xcodeproj_file.py /^ def Name(self):$/;" m class:PBXCopyFilesBuildPhase +Name tools/gyp/pylib/gyp/xcodeproj_file.py /^ def Name(self):$/;" m class:PBXFrameworksBuildPhase +Name tools/gyp/pylib/gyp/xcodeproj_file.py /^ def Name(self):$/;" m class:PBXHeadersBuildPhase +Name tools/gyp/pylib/gyp/xcodeproj_file.py /^ def Name(self):$/;" m class:PBXProject +Name tools/gyp/pylib/gyp/xcodeproj_file.py /^ def Name(self):$/;" m class:PBXResourcesBuildPhase +Name tools/gyp/pylib/gyp/xcodeproj_file.py /^ def Name(self):$/;" m class:PBXShellScriptBuildPhase +Name tools/gyp/pylib/gyp/xcodeproj_file.py /^ def Name(self):$/;" m class:PBXSourcesBuildPhase +Name tools/gyp/pylib/gyp/xcodeproj_file.py /^ def Name(self):$/;" m class:PBXTargetDependency +Name tools/gyp/pylib/gyp/xcodeproj_file.py /^ def Name(self):$/;" m class:XCConfigurationList +Name tools/gyp/pylib/gyp/xcodeproj_file.py /^ def Name(self):$/;" m class:XCHierarchicalElement +Name tools/gyp/pylib/gyp/xcodeproj_file.py /^ def Name(self):$/;" m class:XCObject +NameValueListToDict tools/gyp/build/lib/gyp/__init__.py /^def NameValueListToDict(name_value_list):$/;" f +NameValueListToDict tools/gyp/pylib/gyp/__init__.py /^def NameValueListToDict(name_value_list):$/;" f +New_Profile android/freetype/src/raster/ftraster.c /^ New_Profile( RAS_ARGS TStates aState )$/;" f file: +NinjaWriter tools/gyp/build/lib/gyp/generator/ninja.py /^class NinjaWriter:$/;" c +NinjaWriter tools/gyp/pylib/gyp/generator/ninja.py /^class NinjaWriter:$/;" c +Node tools/gyp/build/lib/gyp/input.py /^from compiler.ast import Node$/;" i +Node tools/gyp/pylib/gyp/input.py /^from compiler.ast import Node$/;" i +Node tools/gyp/tools/pretty_vcproj.py /^from xml.dom.minidom import Node$/;" i +NoneTarget tools/gyp/build/lib/gyp/SCons.py /^class NoneTarget(TargetBase):$/;" c +NoneTarget tools/gyp/pylib/gyp/SCons.py /^class NoneTarget(TargetBase):$/;" c +Noop tools/gyp/build/lib/gyp/__init__.py /^ def Noop(value):$/;" f function:RegenerateFlags +Noop tools/gyp/pylib/gyp/__init__.py /^ def Noop(value):$/;" f function:RegenerateFlags +Normalize android/freetype/src/truetype/ttinterp.c /^ Normalize( EXEC_OP_ FT_F26Dot6 Vx,$/;" f file: +NormalizeIncludePaths tools/gyp/build/lib/gyp/generator/android.py /^ def NormalizeIncludePaths(self, include_paths):$/;" m class:AndroidMkWriter +NormalizeIncludePaths tools/gyp/pylib/gyp/generator/android.py /^ def NormalizeIncludePaths(self, include_paths):$/;" m class:AndroidMkWriter +NormalizeLdFlags tools/gyp/build/lib/gyp/generator/android.py /^ def NormalizeLdFlags(self, ld_flags):$/;" m class:AndroidMkWriter +NormalizeLdFlags tools/gyp/pylib/gyp/generator/android.py /^ def NormalizeLdFlags(self, ld_flags):$/;" m class:AndroidMkWriter +NumKernPair android/freetype/include/freetype/internal/t1types.h /^ FT_Int NumKernPair;$/;" m struct:AFM_FontInfoRec_ +NumKernPair include/freetype/internal/t1types.h /^ FT_Int NumKernPair;$/;" m struct:AFM_FontInfoRec_ +NumTrackKern android/freetype/include/freetype/internal/t1types.h /^ FT_Int NumTrackKern;$/;" m struct:AFM_FontInfoRec_ +NumTrackKern include/freetype/internal/t1types.h /^ FT_Int NumTrackKern;$/;" m struct:AFM_FontInfoRec_ +ONE_PIXEL android/freetype/src/smooth/ftgrays.c /^#define ONE_PIXEL /;" d file: +OP android/freetype/src/psaux/psconv.c /^#define OP /;" d file: +OPEN_INTERNAL_ENTITY android/expat/lib/xmlparse.c /^} OPEN_INTERNAL_ENTITY;$/;" t typeref:struct:open_internal_entity file: +OPTIMAL src/picasso_gpc.cpp /^#define OPTIMAL(/;" d file: +OUT_DIR tools/gyp/buildbot/buildbot_run.py /^OUT_DIR = os.path.join(TRUNK_DIR, 'out')$/;" v +OVERLAP_COMPOUND android/freetype/src/truetype/ttgload.c /^#define OVERLAP_COMPOUND /;" d file: +OVG_RGB demos/subwaymap.c /^#define OVG_RGB(/;" d file: +Offset android/freetype/include/freetype/internal/tttypes.h /^ FT_ULong Offset; \/* table file offset *\/$/;" m struct:TT_TableRec_ +Offset include/freetype/internal/tttypes.h /^ FT_ULong Offset; \/* table file offset *\/$/;" m struct:TT_TableRec_ +OpenOutput tools/gyp/build/lib/gyp/generator/ninja.py /^def OpenOutput(path, mode='w'):$/;" f +OpenOutput tools/gyp/pylib/gyp/generator/ninja.py /^def OpenOutput(path, mode='w'):$/;" f +PACK android/freetype/src/truetype/ttinterp.c /^#define PACK(/;" d file: +PACK android/freetype/src/truetype/ttinterp.c /^#undef PACK$/;" d file: +PACK android/freetype/src/truetype/ttinterp.c /^#undef PACK$/;" d file: +PACKAGE_BUGREPORT android/expat/expat_config.h /^#define PACKAGE_BUGREPORT /;" d +PACKAGE_NAME android/expat/expat_config.h /^#define PACKAGE_NAME /;" d +PACKAGE_STRING android/expat/expat_config.h /^#define PACKAGE_STRING /;" d +PACKAGE_TARNAME android/expat/expat_config.h /^#define PACKAGE_TARNAME /;" d +PACKAGE_URL android/expat/expat_config.h /^#define PACKAGE_URL /;" d +PACKAGE_VERSION android/expat/expat_config.h /^#define PACKAGE_VERSION /;" d +PAIR_TAG android/freetype/src/cff/cffdrivr.c /^#define PAIR_TAG(/;" d file: +PAIR_TAG android/freetype/src/cff/cffdrivr.c /^#undef PAIR_TAG$/;" d file: +PAIR_TAG android/freetype/src/cff/cffdrivr.c /^#undef PAIR_TAG$/;" d file: +PAIR_TAG android/freetype/src/truetype/ttdriver.c /^#define PAIR_TAG(/;" d file: +PAIR_TAG android/freetype/src/truetype/ttdriver.c /^#undef PAIR_TAG$/;" d file: +PAIR_TAG android/freetype/src/truetype/ttdriver.c /^#undef PAIR_TAG$/;" d file: +PATH_CMD_CURVE3 include/picasso.h /^ PATH_CMD_CURVE3 = 3,$/;" e enum:_ps_path_cmd +PATH_CMD_CURVE4 include/picasso.h /^ PATH_CMD_CURVE4 = 4,$/;" e enum:_ps_path_cmd +PATH_CMD_END_POLY include/picasso.h /^ PATH_CMD_END_POLY = 0x0F,$/;" e enum:_ps_path_cmd +PATH_CMD_LINE_TO include/picasso.h /^ PATH_CMD_LINE_TO = 2,$/;" e enum:_ps_path_cmd +PATH_CMD_MOVE_TO include/picasso.h /^ PATH_CMD_MOVE_TO = 1,$/;" e enum:_ps_path_cmd +PATH_CMD_STOP include/picasso.h /^ PATH_CMD_STOP = 0,$/;" e enum:_ps_path_cmd +PATH_OP_DIFF include/picasso.h /^ PATH_OP_DIFF,$/;" e enum:_ps_path_op +PATH_OP_INTERSECT include/picasso.h /^ PATH_OP_INTERSECT,$/;" e enum:_ps_path_op +PATH_OP_UNION include/picasso.h /^ PATH_OP_UNION,$/;" e enum:_ps_path_op +PATH_OP_XOR include/picasso.h /^ PATH_OP_XOR,$/;" e enum:_ps_path_op +PAlignment android/freetype/src/raster/ftraster.c /^ } Alignment, *PAlignment;$/;" t typeref:union:Alignment_ file: +PBXAggregateTarget tools/gyp/build/lib/gyp/xcodeproj_file.py /^class PBXAggregateTarget(XCTarget):$/;" c +PBXAggregateTarget tools/gyp/pylib/gyp/xcodeproj_file.py /^class PBXAggregateTarget(XCTarget):$/;" c +PBXBuildFile tools/gyp/build/lib/gyp/xcodeproj_file.py /^class PBXBuildFile(XCObject):$/;" c +PBXBuildFile tools/gyp/pylib/gyp/xcodeproj_file.py /^class PBXBuildFile(XCObject):$/;" c +PBXBuildRule tools/gyp/build/lib/gyp/xcodeproj_file.py /^class PBXBuildRule(XCObject):$/;" c +PBXBuildRule tools/gyp/pylib/gyp/xcodeproj_file.py /^class PBXBuildRule(XCObject):$/;" c +PBXContainerItemProxy tools/gyp/build/lib/gyp/xcodeproj_file.py /^class PBXContainerItemProxy(XCObject):$/;" c +PBXContainerItemProxy tools/gyp/pylib/gyp/xcodeproj_file.py /^class PBXContainerItemProxy(XCObject):$/;" c +PBXCopyFilesBuildPhase tools/gyp/build/lib/gyp/xcodeproj_file.py /^class PBXCopyFilesBuildPhase(XCBuildPhase):$/;" c +PBXCopyFilesBuildPhase tools/gyp/pylib/gyp/xcodeproj_file.py /^class PBXCopyFilesBuildPhase(XCBuildPhase):$/;" c +PBXFileReference tools/gyp/build/lib/gyp/xcodeproj_file.py /^class PBXFileReference(XCFileLikeElement, XCContainerPortal, XCRemoteObject):$/;" c +PBXFileReference tools/gyp/pylib/gyp/xcodeproj_file.py /^class PBXFileReference(XCFileLikeElement, XCContainerPortal, XCRemoteObject):$/;" c +PBXFrameworksBuildPhase tools/gyp/build/lib/gyp/xcodeproj_file.py /^class PBXFrameworksBuildPhase(XCBuildPhase):$/;" c +PBXFrameworksBuildPhase tools/gyp/pylib/gyp/xcodeproj_file.py /^class PBXFrameworksBuildPhase(XCBuildPhase):$/;" c +PBXGroup tools/gyp/build/lib/gyp/xcodeproj_file.py /^class PBXGroup(XCHierarchicalElement):$/;" c +PBXGroup tools/gyp/pylib/gyp/xcodeproj_file.py /^class PBXGroup(XCHierarchicalElement):$/;" c +PBXHeadersBuildPhase tools/gyp/build/lib/gyp/xcodeproj_file.py /^class PBXHeadersBuildPhase(XCBuildPhase):$/;" c +PBXHeadersBuildPhase tools/gyp/pylib/gyp/xcodeproj_file.py /^class PBXHeadersBuildPhase(XCBuildPhase):$/;" c +PBXNativeTarget tools/gyp/build/lib/gyp/xcodeproj_file.py /^class PBXNativeTarget(XCTarget):$/;" c +PBXNativeTarget tools/gyp/pylib/gyp/xcodeproj_file.py /^class PBXNativeTarget(XCTarget):$/;" c +PBXProject tools/gyp/build/lib/gyp/xcodeproj_file.py /^class PBXProject(XCContainerPortal):$/;" c +PBXProject tools/gyp/pylib/gyp/xcodeproj_file.py /^class PBXProject(XCContainerPortal):$/;" c +PBXProjectAncestor tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def PBXProjectAncestor(self):$/;" m class:PBXProject +PBXProjectAncestor tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def PBXProjectAncestor(self):$/;" m class:XCObject +PBXProjectAncestor tools/gyp/pylib/gyp/xcodeproj_file.py /^ def PBXProjectAncestor(self):$/;" m class:PBXProject +PBXProjectAncestor tools/gyp/pylib/gyp/xcodeproj_file.py /^ def PBXProjectAncestor(self):$/;" m class:XCObject +PBXReferenceProxy tools/gyp/build/lib/gyp/xcodeproj_file.py /^class PBXReferenceProxy(XCFileLikeElement):$/;" c +PBXReferenceProxy tools/gyp/pylib/gyp/xcodeproj_file.py /^class PBXReferenceProxy(XCFileLikeElement):$/;" c +PBXResourcesBuildPhase tools/gyp/build/lib/gyp/xcodeproj_file.py /^class PBXResourcesBuildPhase(XCBuildPhase):$/;" c +PBXResourcesBuildPhase tools/gyp/pylib/gyp/xcodeproj_file.py /^class PBXResourcesBuildPhase(XCBuildPhase):$/;" c +PBXShellScriptBuildPhase tools/gyp/build/lib/gyp/xcodeproj_file.py /^class PBXShellScriptBuildPhase(XCBuildPhase):$/;" c +PBXShellScriptBuildPhase tools/gyp/pylib/gyp/xcodeproj_file.py /^class PBXShellScriptBuildPhase(XCBuildPhase):$/;" c +PBXSourcesBuildPhase tools/gyp/build/lib/gyp/xcodeproj_file.py /^class PBXSourcesBuildPhase(XCBuildPhase):$/;" c +PBXSourcesBuildPhase tools/gyp/pylib/gyp/xcodeproj_file.py /^class PBXSourcesBuildPhase(XCBuildPhase):$/;" c +PBXTargetDependency tools/gyp/build/lib/gyp/xcodeproj_file.py /^class PBXTargetDependency(XCObject):$/;" c +PBXTargetDependency tools/gyp/pylib/gyp/xcodeproj_file.py /^class PBXTargetDependency(XCObject):$/;" c +PBXVariantGroup tools/gyp/build/lib/gyp/xcodeproj_file.py /^class PBXVariantGroup(PBXGroup, XCFileLikeElement):$/;" c +PBXVariantGroup tools/gyp/pylib/gyp/xcodeproj_file.py /^class PBXVariantGroup(PBXGroup, XCFileLikeElement):$/;" c +PByte android/freetype/src/raster/ftraster.c /^ typedef unsigned char Byte, *PByte;$/;" t file: +PCF_Public_Face android/freetype/include/freetype/internal/pcftypes.h /^ } PCF_Public_FaceRec, *PCF_Public_Face;$/;" t typeref:struct:PCF_Public_FaceRec_ +PCF_Public_Face include/freetype/internal/pcftypes.h /^ } PCF_Public_FaceRec, *PCF_Public_Face;$/;" t typeref:struct:PCF_Public_FaceRec_ +PCF_Public_FaceRec android/freetype/include/freetype/internal/pcftypes.h /^ } PCF_Public_FaceRec, *PCF_Public_Face;$/;" t typeref:struct:PCF_Public_FaceRec_ +PCF_Public_FaceRec include/freetype/internal/pcftypes.h /^ } PCF_Public_FaceRec, *PCF_Public_Face;$/;" t typeref:struct:PCF_Public_FaceRec_ +PCF_Public_FaceRec_ android/freetype/include/freetype/internal/pcftypes.h /^ typedef struct PCF_Public_FaceRec_$/;" s +PCF_Public_FaceRec_ include/freetype/internal/pcftypes.h /^ typedef struct PCF_Public_FaceRec_$/;" s +PCell android/freetype/src/smooth/ftgrays.c /^ typedef struct TCell_* PCell;$/;" t typeref:struct:TCell_ file: +PEXPORT include/picasso.h /^ #define PEXPORT /;" d +PEXPORT include/picasso.h /^ #define PEXPORT$/;" d +PEXPORT include/picasso.h /^#define PEXPORT$/;" d +PHASE_EARLY tools/gyp/build/lib/gyp/input.py /^PHASE_EARLY = 0$/;" v +PHASE_EARLY tools/gyp/pylib/gyp/input.py /^PHASE_EARLY = 0$/;" v +PHASE_LATE tools/gyp/build/lib/gyp/input.py /^PHASE_LATE = 1$/;" v +PHASE_LATE tools/gyp/pylib/gyp/input.py /^PHASE_LATE = 1$/;" v +PHASE_LATELATE tools/gyp/build/lib/gyp/input.py /^PHASE_LATELATE = 2$/;" v +PHASE_LATELATE tools/gyp/pylib/gyp/input.py /^PHASE_LATELATE = 2$/;" v +PI demos/clock.c /^#define PI /;" d file: +PI demos/flowers.c /^#define PI /;" d file: +PI src/include/math_type.h /^#define PI /;" d +PICAPI include/picasso.h /^ #define PICAPI /;" d +PICAPI include/picasso.h /^ #define PICAPI$/;" d +PICAPI include/picasso.h /^#define PICAPI$/;" d +PICASSO_VERSION src/picasso_api.cpp /^#define PICASSO_VERSION /;" d file: +PIXEL_BITS android/freetype/src/smooth/ftgrays.c /^#define PIXEL_BITS /;" d file: +PIXEL_MASK android/freetype/src/smooth/ftgrays.c /^#define PIXEL_MASK /;" d file: +PLong android/freetype/src/raster/ftraster.c /^ typedef long Long, *PLong;$/;" t file: +POSITION android/expat/lib/xmltok.h /^} POSITION;$/;" t typeref:struct:position +PProfile android/freetype/src/raster/ftraster.c /^ typedef TProfile* PProfile;$/;" t file: +PProfileList android/freetype/src/raster/ftraster.c /^ typedef PProfile* PProfileList;$/;" t file: +PREFIX android/expat/lib/xmlparse.c /^} PREFIX;$/;" t typeref:struct:prefix file: +PREFIX android/expat/lib/xmltok.c /^#define PREFIX(/;" d file: +PREFIX android/expat/lib/xmltok.c /^#undef PREFIX$/;" d file: +PREFIX android/expat/lib/xmltok_impl.c /^#define PREFIX(/;" d file: +PREV_INDEX src/picasso_gpc.cpp /^#define PREV_INDEX(/;" d file: +PROBE_STEP android/expat/lib/xmlparse.c /^#define PROBE_STEP(/;" d file: +PROLOG_HANDLER android/expat/lib/xmlrole.c /^typedef int PTRCALL PROLOG_HANDLER(PROLOG_STATE *state,$/;" t file: +PROLOG_STATE android/expat/lib/xmlrole.h /^} PROLOG_STATE;$/;" t typeref:struct:prolog_state +PRaster android/freetype/src/raster/ftraster.c /^ } TRaster, *PRaster;$/;" t typeref:struct:TRaster_ file: +PRaster android/freetype/src/smooth/ftgrays.c /^ } TRaster, *PRaster;$/;" t typeref:struct:TRaster_ file: +PS demos/tiger.c /^}PS;$/;" t typeref:struct:_PS file: +PSAux_Interface android/freetype/include/freetype/internal/psaux.h /^ typedef PSAux_ServiceRec PSAux_Interface;$/;" t +PSAux_Interface include/freetype/internal/psaux.h /^ typedef PSAux_ServiceRec PSAux_Interface;$/;" t +PSAux_Service android/freetype/include/freetype/internal/psaux.h /^ } PSAux_ServiceRec, *PSAux_Service;$/;" t typeref:struct:PSAux_ServiceRec_ +PSAux_Service include/freetype/internal/psaux.h /^ } PSAux_ServiceRec, *PSAux_Service;$/;" t typeref:struct:PSAux_ServiceRec_ +PSAux_ServiceRec android/freetype/include/freetype/internal/psaux.h /^ } PSAux_ServiceRec, *PSAux_Service;$/;" t typeref:struct:PSAux_ServiceRec_ +PSAux_ServiceRec include/freetype/internal/psaux.h /^ } PSAux_ServiceRec, *PSAux_Service;$/;" t typeref:struct:PSAux_ServiceRec_ +PSAux_ServiceRec_ android/freetype/include/freetype/internal/psaux.h /^ typedef struct PSAux_ServiceRec_$/;" s +PSAux_ServiceRec_ include/freetype/internal/psaux.h /^ typedef struct PSAux_ServiceRec_$/;" s +PSH_Alignment android/freetype/src/pshinter/pshglob.h /^ } PSH_AlignmentRec, *PSH_Alignment;$/;" t typeref:struct:PSH_AlignmentRec_ +PSH_AlignmentRec android/freetype/src/pshinter/pshglob.h /^ } PSH_AlignmentRec, *PSH_Alignment;$/;" t typeref:struct:PSH_AlignmentRec_ +PSH_AlignmentRec_ android/freetype/src/pshinter/pshglob.h /^ typedef struct PSH_AlignmentRec_$/;" s +PSH_BLUE_ALIGN_BOT android/freetype/src/pshinter/pshglob.h /^#define PSH_BLUE_ALIGN_BOT /;" d +PSH_BLUE_ALIGN_NONE android/freetype/src/pshinter/pshglob.h /^#define PSH_BLUE_ALIGN_NONE /;" d +PSH_BLUE_ALIGN_TOP android/freetype/src/pshinter/pshglob.h /^#define PSH_BLUE_ALIGN_TOP /;" d +PSH_Blue_Table android/freetype/src/pshinter/pshglob.h /^ } PSH_Blue_TableRec, *PSH_Blue_Table;$/;" t typeref:struct:PSH_Blue_TableRec_ +PSH_Blue_TableRec android/freetype/src/pshinter/pshglob.h /^ } PSH_Blue_TableRec, *PSH_Blue_Table;$/;" t typeref:struct:PSH_Blue_TableRec_ +PSH_Blue_TableRec_ android/freetype/src/pshinter/pshglob.h /^ typedef struct PSH_Blue_TableRec_$/;" s +PSH_Blue_Zone android/freetype/src/pshinter/pshglob.h /^ } PSH_Blue_ZoneRec, *PSH_Blue_Zone;$/;" t typeref:struct:PSH_Blue_ZoneRec_ +PSH_Blue_ZoneRec android/freetype/src/pshinter/pshglob.h /^ } PSH_Blue_ZoneRec, *PSH_Blue_Zone;$/;" t typeref:struct:PSH_Blue_ZoneRec_ +PSH_Blue_ZoneRec_ android/freetype/src/pshinter/pshglob.h /^ typedef struct PSH_Blue_ZoneRec_$/;" s +PSH_Blues android/freetype/src/pshinter/pshglob.h /^ } PSH_BluesRec, *PSH_Blues;$/;" t typeref:struct:PSH_BluesRec_ +PSH_BluesRec android/freetype/src/pshinter/pshglob.h /^ } PSH_BluesRec, *PSH_Blues;$/;" t typeref:struct:PSH_BluesRec_ +PSH_BluesRec_ android/freetype/src/pshinter/pshglob.h /^ typedef struct PSH_BluesRec_$/;" s +PSH_Contour android/freetype/src/pshinter/pshalgo.h /^ typedef struct PSH_ContourRec_* PSH_Contour;$/;" t typeref:struct:PSH_ContourRec_ +PSH_ContourRec android/freetype/src/pshinter/pshalgo.h /^ } PSH_ContourRec;$/;" t typeref:struct:PSH_ContourRec_ +PSH_ContourRec_ android/freetype/src/pshinter/pshalgo.h /^ typedef struct PSH_ContourRec_$/;" s +PSH_DIR_COMPARE android/freetype/src/pshinter/pshalgo.h /^#define PSH_DIR_COMPARE(/;" d +PSH_DIR_DOWN android/freetype/src/pshinter/pshalgo.h /^ PSH_DIR_DOWN = 1,$/;" e enum:__anon32 +PSH_DIR_HORIZONTAL android/freetype/src/pshinter/pshalgo.h /^#define PSH_DIR_HORIZONTAL /;" d +PSH_DIR_IS_HORIZONTAL android/freetype/src/pshinter/pshalgo.h /^#define PSH_DIR_IS_HORIZONTAL(/;" d +PSH_DIR_IS_VERTICAL android/freetype/src/pshinter/pshalgo.h /^#define PSH_DIR_IS_VERTICAL(/;" d +PSH_DIR_LEFT android/freetype/src/pshinter/pshalgo.h /^ PSH_DIR_LEFT = -2,$/;" e enum:__anon32 +PSH_DIR_NONE android/freetype/src/pshinter/pshalgo.h /^ PSH_DIR_NONE = 4,$/;" e enum:__anon32 +PSH_DIR_RIGHT android/freetype/src/pshinter/pshalgo.h /^ PSH_DIR_RIGHT = 2$/;" e enum:__anon32 +PSH_DIR_UP android/freetype/src/pshinter/pshalgo.h /^ PSH_DIR_UP = -1,$/;" e enum:__anon32 +PSH_DIR_VERTICAL android/freetype/src/pshinter/pshalgo.h /^#define PSH_DIR_VERTICAL /;" d +PSH_Dimension android/freetype/src/pshinter/pshglob.h /^ } PSH_DimensionRec, *PSH_Dimension;$/;" t typeref:struct:PSH_DimensionRec_ +PSH_DimensionRec android/freetype/src/pshinter/pshglob.h /^ } PSH_DimensionRec, *PSH_Dimension;$/;" t typeref:struct:PSH_DimensionRec_ +PSH_DimensionRec_ android/freetype/src/pshinter/pshglob.h /^ typedef struct PSH_DimensionRec_$/;" s +PSH_Globals android/freetype/include/freetype/internal/pshints.h /^ typedef struct PSH_GlobalsRec_* PSH_Globals;$/;" t typeref:struct:PSH_GlobalsRec_ +PSH_Globals include/freetype/internal/pshints.h /^ typedef struct PSH_GlobalsRec_* PSH_Globals;$/;" t typeref:struct:PSH_GlobalsRec_ +PSH_GlobalsRec android/freetype/src/pshinter/pshglob.h /^ } PSH_GlobalsRec;$/;" t typeref:struct:PSH_GlobalsRec_ +PSH_GlobalsRec_ android/freetype/src/pshinter/pshglob.h /^ typedef struct PSH_GlobalsRec_$/;" s +PSH_Globals_DestroyFunc android/freetype/include/freetype/internal/pshints.h /^ (*PSH_Globals_DestroyFunc)( PSH_Globals globals );$/;" t +PSH_Globals_DestroyFunc include/freetype/internal/pshints.h /^ (*PSH_Globals_DestroyFunc)( PSH_Globals globals );$/;" t +PSH_Globals_Funcs android/freetype/include/freetype/internal/pshints.h /^ } PSH_Globals_FuncsRec, *PSH_Globals_Funcs;$/;" t typeref:struct:PSH_Globals_FuncsRec_ +PSH_Globals_Funcs include/freetype/internal/pshints.h /^ } PSH_Globals_FuncsRec, *PSH_Globals_Funcs;$/;" t typeref:struct:PSH_Globals_FuncsRec_ +PSH_Globals_FuncsRec android/freetype/include/freetype/internal/pshints.h /^ } PSH_Globals_FuncsRec, *PSH_Globals_Funcs;$/;" t typeref:struct:PSH_Globals_FuncsRec_ +PSH_Globals_FuncsRec include/freetype/internal/pshints.h /^ } PSH_Globals_FuncsRec, *PSH_Globals_Funcs;$/;" t typeref:struct:PSH_Globals_FuncsRec_ +PSH_Globals_FuncsRec_ android/freetype/include/freetype/internal/pshints.h /^ typedef struct PSH_Globals_FuncsRec_$/;" s +PSH_Globals_FuncsRec_ include/freetype/internal/pshints.h /^ typedef struct PSH_Globals_FuncsRec_$/;" s +PSH_Globals_NewFunc android/freetype/include/freetype/internal/pshints.h /^ (*PSH_Globals_NewFunc)( FT_Memory memory,$/;" t +PSH_Globals_NewFunc include/freetype/internal/pshints.h /^ (*PSH_Globals_NewFunc)( FT_Memory memory,$/;" t +PSH_Globals_SetScaleFunc android/freetype/include/freetype/internal/pshints.h /^ (*PSH_Globals_SetScaleFunc)( PSH_Globals globals,$/;" t +PSH_Globals_SetScaleFunc include/freetype/internal/pshints.h /^ (*PSH_Globals_SetScaleFunc)( PSH_Globals globals,$/;" t +PSH_Glyph android/freetype/src/pshinter/pshalgo.h /^ } PSH_GlyphRec, *PSH_Glyph;$/;" t typeref:struct:PSH_GlyphRec_ +PSH_GlyphRec android/freetype/src/pshinter/pshalgo.h /^ } PSH_GlyphRec, *PSH_Glyph;$/;" t typeref:struct:PSH_GlyphRec_ +PSH_GlyphRec_ android/freetype/src/pshinter/pshalgo.h /^ typedef struct PSH_GlyphRec_$/;" s +PSH_HINT_ACTIVE android/freetype/src/pshinter/pshalgo.h /^ PSH_HINT_ACTIVE = 4,$/;" e enum:PSH_Hint_Flags_ +PSH_HINT_BOTTOM android/freetype/src/pshinter/pshalgo.h /^ PSH_HINT_BOTTOM = PS_HINT_FLAG_BOTTOM,$/;" e enum:PSH_Hint_Flags_ +PSH_HINT_FITTED android/freetype/src/pshinter/pshalgo.h /^ PSH_HINT_FITTED = 8$/;" e enum:PSH_Hint_Flags_ +PSH_HINT_GHOST android/freetype/src/pshinter/pshalgo.h /^ PSH_HINT_GHOST = PS_HINT_FLAG_GHOST,$/;" e enum:PSH_Hint_Flags_ +PSH_Hint android/freetype/src/pshinter/pshalgo.h /^ typedef struct PSH_HintRec_* PSH_Hint;$/;" t typeref:struct:PSH_HintRec_ +PSH_HintFunc android/freetype/src/pshinter/pshalgo.h /^ (*PSH_HintFunc)( PSH_Hint hint,$/;" t +PSH_HintRec android/freetype/src/pshinter/pshalgo.h /^ } PSH_HintRec;$/;" t typeref:struct:PSH_HintRec_ +PSH_HintRec_ android/freetype/src/pshinter/pshalgo.h /^ typedef struct PSH_HintRec_$/;" s +PSH_Hint_Flags android/freetype/src/pshinter/pshalgo.h /^ } PSH_Hint_Flags;$/;" t typeref:enum:PSH_Hint_Flags_ +PSH_Hint_Flags_ android/freetype/src/pshinter/pshalgo.h /^ typedef enum PSH_Hint_Flags_$/;" g +PSH_Hint_Table android/freetype/src/pshinter/pshalgo.h /^ } PSH_Hint_TableRec, *PSH_Hint_Table;$/;" t typeref:struct:PSH_Hint_TableRec_ +PSH_Hint_TableRec android/freetype/src/pshinter/pshalgo.h /^ } PSH_Hint_TableRec, *PSH_Hint_Table;$/;" t typeref:struct:PSH_Hint_TableRec_ +PSH_Hint_TableRec_ android/freetype/src/pshinter/pshalgo.h /^ typedef struct PSH_Hint_TableRec_$/;" s +PSH_MAX_STRONG_INTERNAL android/freetype/src/pshinter/pshalgo.c /^#define PSH_MAX_STRONG_INTERNAL /;" d file: +PSH_POINT_ANGLE android/freetype/src/pshinter/pshalgo.h /^#define PSH_POINT_ANGLE(/;" d +PSH_POINT_EDGE_MAX android/freetype/src/pshinter/pshalgo.h /^ PSH_POINT_EDGE_MAX = 1024 \/* point is aligned to top\/right stem edge *\/$/;" e enum:__anon34 +PSH_POINT_EDGE_MIN android/freetype/src/pshinter/pshalgo.h /^ PSH_POINT_EDGE_MIN = 512, \/* point is aligned to left\/bottom stem edge *\/$/;" e enum:__anon34 +PSH_POINT_EQUAL_ORG android/freetype/src/pshinter/pshalgo.h /^#define PSH_POINT_EQUAL_ORG(/;" d +PSH_POINT_EXTREMUM android/freetype/src/pshinter/pshalgo.h /^ PSH_POINT_EXTREMUM = 64, \/* point is local extremum *\/$/;" e enum:__anon34 +PSH_POINT_FITTED android/freetype/src/pshinter/pshalgo.h /^ PSH_POINT_FITTED = 32, \/* point is already fitted *\/$/;" e enum:__anon34 +PSH_POINT_INFLEX android/freetype/src/pshinter/pshalgo.h /^ PSH_POINT_INFLEX = 4 \/* point is inflection *\/$/;" e enum:__anon33 +PSH_POINT_NEGATIVE android/freetype/src/pshinter/pshalgo.h /^ PSH_POINT_NEGATIVE = 256, \/* extremum has negative contour flow *\/$/;" e enum:__anon34 +PSH_POINT_OFF android/freetype/src/pshinter/pshalgo.h /^ PSH_POINT_OFF = 1, \/* point is off the curve *\/$/;" e enum:__anon33 +PSH_POINT_POSITIVE android/freetype/src/pshinter/pshalgo.h /^ PSH_POINT_POSITIVE = 128, \/* extremum has positive contour flow *\/$/;" e enum:__anon34 +PSH_POINT_SMOOTH android/freetype/src/pshinter/pshalgo.h /^ PSH_POINT_SMOOTH = 2, \/* point is smooth *\/$/;" e enum:__anon33 +PSH_POINT_STRONG android/freetype/src/pshinter/pshalgo.h /^ PSH_POINT_STRONG = 16, \/* point is strong *\/$/;" e enum:__anon34 +PSH_Point android/freetype/src/pshinter/pshalgo.h /^ typedef struct PSH_PointRec_* PSH_Point;$/;" t typeref:struct:PSH_PointRec_ +PSH_PointRec android/freetype/src/pshinter/pshalgo.h /^ } PSH_PointRec;$/;" t typeref:struct:PSH_PointRec_ +PSH_PointRec_ android/freetype/src/pshinter/pshalgo.h /^ typedef struct PSH_PointRec_$/;" s +PSH_STRONG_THRESHOLD android/freetype/src/pshinter/pshalgo.c /^#define PSH_STRONG_THRESHOLD /;" d file: +PSH_STRONG_THRESHOLD_MAXIMUM android/freetype/src/pshinter/pshalgo.c /^#define PSH_STRONG_THRESHOLD_MAXIMUM /;" d file: +PSH_Width android/freetype/src/pshinter/pshglob.h /^ } PSH_WidthRec, *PSH_Width;$/;" t typeref:struct:PSH_WidthRec_ +PSH_WidthRec android/freetype/src/pshinter/pshglob.h /^ } PSH_WidthRec, *PSH_Width;$/;" t typeref:struct:PSH_WidthRec_ +PSH_WidthRec_ android/freetype/src/pshinter/pshglob.h /^ typedef struct PSH_WidthRec_$/;" s +PSH_Widths android/freetype/src/pshinter/pshglob.h /^ } PSH_WidthsRec, *PSH_Widths;$/;" t typeref:struct:PSH_WidthsRec_ +PSH_WidthsRec android/freetype/src/pshinter/pshglob.h /^ } PSH_WidthsRec, *PSH_Widths;$/;" t typeref:struct:PSH_WidthsRec_ +PSH_WidthsRec_ android/freetype/src/pshinter/pshglob.h /^ typedef struct PSH_WidthsRec_$/;" s +PSH_ZONE_MAX android/freetype/src/pshinter/pshalgo.c /^#define PSH_ZONE_MAX /;" d file: +PSH_ZONE_MIN android/freetype/src/pshinter/pshalgo.c /^#define PSH_ZONE_MIN /;" d file: +PSH_Zone android/freetype/src/pshinter/pshalgo.h /^ } PSH_ZoneRec, *PSH_Zone;$/;" t typeref:struct:PSH_ZoneRec_ +PSH_ZoneRec android/freetype/src/pshinter/pshalgo.h /^ } PSH_ZoneRec, *PSH_Zone;$/;" t typeref:struct:PSH_ZoneRec_ +PSH_ZoneRec_ android/freetype/src/pshinter/pshalgo.h /^ typedef struct PSH_ZoneRec_$/;" s +PSHinter_Interface android/freetype/include/freetype/internal/pshints.h /^ } PSHinter_Interface;$/;" t typeref:struct:PSHinter_Interface_ +PSHinter_Interface include/freetype/internal/pshints.h /^ } PSHinter_Interface;$/;" t typeref:struct:PSHinter_Interface_ +PSHinter_Interface_ android/freetype/include/freetype/internal/pshints.h /^ typedef struct PSHinter_Interface_$/;" s +PSHinter_Interface_ include/freetype/internal/pshints.h /^ typedef struct PSHinter_Interface_$/;" s +PSHinter_Service android/freetype/include/freetype/internal/pshints.h /^ typedef PSHinter_Interface* PSHinter_Service;$/;" t +PSHinter_Service include/freetype/internal/pshints.h /^ typedef PSHinter_Interface* PSHinter_Service;$/;" t +PS_Adobe_Std_StringsFunc android/freetype/include/freetype/internal/services/svpscmap.h /^ (*PS_Adobe_Std_StringsFunc)( FT_UInt string_index );$/;" t +PS_Adobe_Std_StringsFunc include/freetype/internal/services/svpscmap.h /^ (*PS_Adobe_Std_StringsFunc)( FT_UInt string_index );$/;" t +PS_Blend android/freetype/include/freetype/t1tables.h /^ } PS_BlendRec, *PS_Blend;$/;" t typeref:struct:PS_BlendRec_ +PS_Blend include/freetype/t1tables.h /^ } PS_BlendRec, *PS_Blend;$/;" t typeref:struct:PS_BlendRec_ +PS_BlendRec android/freetype/include/freetype/t1tables.h /^ } PS_BlendRec, *PS_Blend;$/;" t typeref:struct:PS_BlendRec_ +PS_BlendRec include/freetype/t1tables.h /^ } PS_BlendRec, *PS_Blend;$/;" t typeref:struct:PS_BlendRec_ +PS_BlendRec_ android/freetype/include/freetype/t1tables.h /^ typedef struct PS_BlendRec_$/;" s +PS_BlendRec_ include/freetype/t1tables.h /^ typedef struct PS_BlendRec_$/;" s +PS_DesignMap android/freetype/include/freetype/t1tables.h /^ } PS_DesignMapRec, *PS_DesignMap;$/;" t typeref:struct:PS_DesignMap_ +PS_DesignMap include/freetype/t1tables.h /^ } PS_DesignMapRec, *PS_DesignMap;$/;" t typeref:struct:PS_DesignMap_ +PS_DesignMapRec android/freetype/include/freetype/t1tables.h /^ } PS_DesignMapRec, *PS_DesignMap;$/;" t typeref:struct:PS_DesignMap_ +PS_DesignMapRec include/freetype/t1tables.h /^ } PS_DesignMapRec, *PS_DesignMap;$/;" t typeref:struct:PS_DesignMap_ +PS_DesignMap_ android/freetype/include/freetype/t1tables.h /^ typedef struct PS_DesignMap_$/;" s +PS_DesignMap_ include/freetype/t1tables.h /^ typedef struct PS_DesignMap_$/;" s +PS_Dimension android/freetype/src/pshinter/pshrec.h /^ } PS_DimensionRec, *PS_Dimension;$/;" t typeref:struct:PS_DimensionRec_ +PS_DimensionRec android/freetype/src/pshinter/pshrec.h /^ } PS_DimensionRec, *PS_Dimension;$/;" t typeref:struct:PS_DimensionRec_ +PS_DimensionRec_ android/freetype/src/pshinter/pshrec.h /^ typedef struct PS_DimensionRec_$/;" s +PS_FontExtraRec include/freetype/internal/t1types.h /^ } PS_FontExtraRec;$/;" t typeref:struct:PS_FontExtraRec_ +PS_FontExtraRec_ include/freetype/internal/t1types.h /^ typedef struct PS_FontExtraRec_$/;" s +PS_FontInfo android/freetype/include/freetype/t1tables.h /^ typedef struct PS_FontInfoRec_* PS_FontInfo;$/;" t typeref:struct:PS_FontInfoRec_ +PS_FontInfo include/freetype/t1tables.h /^ typedef struct PS_FontInfoRec_* PS_FontInfo;$/;" t typeref:struct:PS_FontInfoRec_ +PS_FontInfoRec android/freetype/include/freetype/t1tables.h /^ } PS_FontInfoRec;$/;" t typeref:struct:PS_FontInfoRec_ +PS_FontInfoRec include/freetype/t1tables.h /^ } PS_FontInfoRec;$/;" t typeref:struct:PS_FontInfoRec_ +PS_FontInfoRec_ android/freetype/include/freetype/t1tables.h /^ typedef struct PS_FontInfoRec_$/;" s +PS_FontInfoRec_ include/freetype/t1tables.h /^ typedef struct PS_FontInfoRec_$/;" s +PS_FreeGlyphNameFunc android/freetype/include/freetype/internal/services/svpscmap.h /^ (*PS_FreeGlyphNameFunc)( FT_Pointer data,$/;" t +PS_FreeGlyphNameFunc include/freetype/internal/services/svpscmap.h /^ (*PS_FreeGlyphNameFunc)( FT_Pointer data,$/;" t +PS_GLOBALS_MAX_BLUE_ZONES android/freetype/src/pshinter/pshglob.h /^#define PS_GLOBALS_MAX_BLUE_ZONES /;" d +PS_GLOBALS_MAX_STD_WIDTHS android/freetype/src/pshinter/pshglob.h /^#define PS_GLOBALS_MAX_STD_WIDTHS /;" d +PS_GetFontExtraFunc include/freetype/internal/services/svpsinfo.h /^ (*PS_GetFontExtraFunc)( FT_Face face,$/;" t +PS_GetFontInfoFunc android/freetype/include/freetype/internal/services/svpsinfo.h /^ (*PS_GetFontInfoFunc)( FT_Face face,$/;" t +PS_GetFontInfoFunc include/freetype/internal/services/svpsinfo.h /^ (*PS_GetFontInfoFunc)( FT_Face face,$/;" t +PS_GetFontPrivateFunc android/freetype/include/freetype/internal/services/svpsinfo.h /^ (*PS_GetFontPrivateFunc)( FT_Face face,$/;" t +PS_GetFontPrivateFunc include/freetype/internal/services/svpsinfo.h /^ (*PS_GetFontPrivateFunc)( FT_Face face,$/;" t +PS_GetGlyphNameFunc android/freetype/include/freetype/internal/services/svpscmap.h /^ (*PS_GetGlyphNameFunc)( FT_Pointer data,$/;" t +PS_GetGlyphNameFunc include/freetype/internal/services/svpscmap.h /^ (*PS_GetGlyphNameFunc)( FT_Pointer data,$/;" t +PS_HINT_FLAG_BOTTOM android/freetype/src/pshinter/pshrec.h /^ PS_HINT_FLAG_BOTTOM = 2$/;" e enum:PS_Hint_Flags_ +PS_HINT_FLAG_GHOST android/freetype/src/pshinter/pshrec.h /^ PS_HINT_FLAG_GHOST = 1,$/;" e enum:PS_Hint_Flags_ +PS_HINT_TYPE_1 android/freetype/src/pshinter/pshrec.h /^ PS_HINT_TYPE_1 = 1,$/;" e enum:PS_Hint_Type_ +PS_HINT_TYPE_2 android/freetype/src/pshinter/pshrec.h /^ PS_HINT_TYPE_2 = 2$/;" e enum:PS_Hint_Type_ +PS_HasGlyphNamesFunc android/freetype/include/freetype/internal/services/svpsinfo.h /^ (*PS_HasGlyphNamesFunc)( FT_Face face );$/;" t +PS_HasGlyphNamesFunc include/freetype/internal/services/svpsinfo.h /^ (*PS_HasGlyphNamesFunc)( FT_Face face );$/;" t +PS_Hint android/freetype/src/pshinter/pshrec.h /^ typedef struct PS_HintRec_* PS_Hint;$/;" t typeref:struct:PS_HintRec_ +PS_HintRec android/freetype/src/pshinter/pshrec.h /^ } PS_HintRec;$/;" t typeref:struct:PS_HintRec_ +PS_HintRec_ android/freetype/src/pshinter/pshrec.h /^ typedef struct PS_HintRec_$/;" s +PS_Hint_Flags android/freetype/src/pshinter/pshrec.h /^ } PS_Hint_Flags;$/;" t typeref:enum:PS_Hint_Flags_ +PS_Hint_Flags_ android/freetype/src/pshinter/pshrec.h /^ typedef enum PS_Hint_Flags_$/;" g +PS_Hint_Table android/freetype/src/pshinter/pshrec.h /^ } PS_Hint_TableRec, *PS_Hint_Table;$/;" t typeref:struct:PS_Hint_TableRec_ +PS_Hint_TableRec android/freetype/src/pshinter/pshrec.h /^ } PS_Hint_TableRec, *PS_Hint_Table;$/;" t typeref:struct:PS_Hint_TableRec_ +PS_Hint_TableRec_ android/freetype/src/pshinter/pshrec.h /^ typedef struct PS_Hint_TableRec_$/;" s +PS_Hint_Type android/freetype/src/pshinter/pshrec.h /^ } PS_Hint_Type;$/;" t typeref:enum:PS_Hint_Type_ +PS_Hint_Type_ android/freetype/src/pshinter/pshrec.h /^ typedef enum PS_Hint_Type_$/;" g +PS_Hinter_Module android/freetype/src/pshinter/pshmod.c /^ } PS_Hinter_ModuleRec, *PS_Hinter_Module;$/;" t typeref:struct:PS_Hinter_Module_Rec_ file: +PS_Hinter_ModuleRec android/freetype/src/pshinter/pshmod.c /^ } PS_Hinter_ModuleRec, *PS_Hinter_Module;$/;" t typeref:struct:PS_Hinter_Module_Rec_ file: +PS_Hinter_Module_Rec_ android/freetype/src/pshinter/pshmod.c /^ typedef struct PS_Hinter_Module_Rec_$/;" s file: +PS_Hints android/freetype/src/pshinter/pshrec.h /^ } PS_HintsRec, *PS_Hints;$/;" t typeref:struct:PS_HintsRec_ +PS_HintsRec android/freetype/src/pshinter/pshrec.h /^ } PS_HintsRec, *PS_Hints;$/;" t typeref:struct:PS_HintsRec_ +PS_HintsRec_ android/freetype/src/pshinter/pshrec.h /^ typedef struct PS_HintsRec_$/;" s +PS_Macintosh_NameFunc android/freetype/include/freetype/internal/services/svpscmap.h /^ (*PS_Macintosh_NameFunc)( FT_UInt name_index );$/;" t +PS_Macintosh_NameFunc include/freetype/internal/services/svpscmap.h /^ (*PS_Macintosh_NameFunc)( FT_UInt name_index );$/;" t +PS_Mask android/freetype/src/pshinter/pshrec.h /^ } PS_MaskRec, *PS_Mask;$/;" t typeref:struct:PS_MaskRec_ +PS_MaskRec android/freetype/src/pshinter/pshrec.h /^ } PS_MaskRec, *PS_Mask;$/;" t typeref:struct:PS_MaskRec_ +PS_MaskRec_ android/freetype/src/pshinter/pshrec.h /^ typedef struct PS_MaskRec_$/;" s +PS_Mask_Table android/freetype/src/pshinter/pshrec.h /^ } PS_Mask_TableRec, *PS_Mask_Table;$/;" t typeref:struct:PS_Mask_TableRec_ +PS_Mask_TableRec android/freetype/src/pshinter/pshrec.h /^ } PS_Mask_TableRec, *PS_Mask_Table;$/;" t typeref:struct:PS_Mask_TableRec_ +PS_Mask_TableRec_ android/freetype/src/pshinter/pshrec.h /^ typedef struct PS_Mask_TableRec_$/;" s +PS_Parser android/freetype/include/freetype/internal/psaux.h /^ typedef struct PS_ParserRec_* PS_Parser;$/;" t typeref:struct:PS_ParserRec_ +PS_Parser include/freetype/internal/psaux.h /^ typedef struct PS_ParserRec_* PS_Parser;$/;" t typeref:struct:PS_ParserRec_ +PS_ParserRec android/freetype/include/freetype/internal/psaux.h /^ } PS_ParserRec;$/;" t typeref:struct:PS_ParserRec_ +PS_ParserRec include/freetype/internal/psaux.h /^ } PS_ParserRec;$/;" t typeref:struct:PS_ParserRec_ +PS_ParserRec_ android/freetype/include/freetype/internal/psaux.h /^ typedef struct PS_ParserRec_$/;" s +PS_ParserRec_ include/freetype/internal/psaux.h /^ typedef struct PS_ParserRec_$/;" s +PS_Parser_Funcs android/freetype/include/freetype/internal/psaux.h /^ typedef const struct PS_Parser_FuncsRec_* PS_Parser_Funcs;$/;" t typeref:struct:PS_Parser_FuncsRec_ +PS_Parser_Funcs include/freetype/internal/psaux.h /^ typedef const struct PS_Parser_FuncsRec_* PS_Parser_Funcs;$/;" t typeref:struct:PS_Parser_FuncsRec_ +PS_Parser_FuncsRec android/freetype/include/freetype/internal/psaux.h /^ } PS_Parser_FuncsRec;$/;" t typeref:struct:PS_Parser_FuncsRec_ +PS_Parser_FuncsRec include/freetype/internal/psaux.h /^ } PS_Parser_FuncsRec;$/;" t typeref:struct:PS_Parser_FuncsRec_ +PS_Parser_FuncsRec_ android/freetype/include/freetype/internal/psaux.h /^ typedef struct PS_Parser_FuncsRec_$/;" s +PS_Parser_FuncsRec_ include/freetype/internal/psaux.h /^ typedef struct PS_Parser_FuncsRec_$/;" s +PS_Private android/freetype/include/freetype/t1tables.h /^ typedef struct PS_PrivateRec_* PS_Private;$/;" t typeref:struct:PS_PrivateRec_ +PS_Private include/freetype/t1tables.h /^ typedef struct PS_PrivateRec_* PS_Private;$/;" t typeref:struct:PS_PrivateRec_ +PS_PrivateRec android/freetype/include/freetype/t1tables.h /^ } PS_PrivateRec;$/;" t typeref:struct:PS_PrivateRec_ +PS_PrivateRec include/freetype/t1tables.h /^ } PS_PrivateRec;$/;" t typeref:struct:PS_PrivateRec_ +PS_PrivateRec_ android/freetype/include/freetype/t1tables.h /^ typedef struct PS_PrivateRec_$/;" s +PS_PrivateRec_ include/freetype/t1tables.h /^ typedef struct PS_PrivateRec_$/;" s +PS_Table android/freetype/include/freetype/internal/psaux.h /^ typedef struct PS_TableRec_* PS_Table;$/;" t typeref:struct:PS_TableRec_ +PS_Table include/freetype/internal/psaux.h /^ typedef struct PS_TableRec_* PS_Table;$/;" t typeref:struct:PS_TableRec_ +PS_TableRec android/freetype/include/freetype/internal/psaux.h /^ } PS_TableRec;$/;" t typeref:struct:PS_TableRec_ +PS_TableRec include/freetype/internal/psaux.h /^ } PS_TableRec;$/;" t typeref:struct:PS_TableRec_ +PS_TableRec_ android/freetype/include/freetype/internal/psaux.h /^ typedef struct PS_TableRec_$/;" s +PS_TableRec_ include/freetype/internal/psaux.h /^ typedef struct PS_TableRec_$/;" s +PS_Table_Funcs android/freetype/include/freetype/internal/psaux.h /^ typedef const struct PS_Table_FuncsRec_* PS_Table_Funcs;$/;" t typeref:struct:PS_Table_FuncsRec_ +PS_Table_Funcs include/freetype/internal/psaux.h /^ typedef const struct PS_Table_FuncsRec_* PS_Table_Funcs;$/;" t typeref:struct:PS_Table_FuncsRec_ +PS_Table_FuncsRec android/freetype/include/freetype/internal/psaux.h /^ } PS_Table_FuncsRec;$/;" t typeref:struct:PS_Table_FuncsRec_ +PS_Table_FuncsRec include/freetype/internal/psaux.h /^ } PS_Table_FuncsRec;$/;" t typeref:struct:PS_Table_FuncsRec_ +PS_Table_FuncsRec_ android/freetype/include/freetype/internal/psaux.h /^ typedef struct PS_Table_FuncsRec_$/;" s +PS_Table_FuncsRec_ include/freetype/internal/psaux.h /^ typedef struct PS_Table_FuncsRec_$/;" s +PS_UniMap android/freetype/include/freetype/internal/services/svpscmap.h /^ } PS_UniMap;$/;" t typeref:struct:PS_UniMap_ +PS_UniMap include/freetype/internal/services/svpscmap.h /^ } PS_UniMap;$/;" t typeref:struct:PS_UniMap_ +PS_UniMap_ android/freetype/include/freetype/internal/services/svpscmap.h /^ typedef struct PS_UniMap_$/;" s +PS_UniMap_ include/freetype/internal/services/svpscmap.h /^ typedef struct PS_UniMap_$/;" s +PS_Unicode_ValueFunc android/freetype/include/freetype/internal/services/svpscmap.h /^ (*PS_Unicode_ValueFunc)( const char* glyph_name );$/;" t +PS_Unicode_ValueFunc include/freetype/internal/services/svpscmap.h /^ (*PS_Unicode_ValueFunc)( const char* glyph_name );$/;" t +PS_Unicodes android/freetype/include/freetype/internal/services/svpscmap.h /^ typedef struct PS_UnicodesRec_* PS_Unicodes;$/;" t typeref:struct:PS_UnicodesRec_ +PS_Unicodes include/freetype/internal/services/svpscmap.h /^ typedef struct PS_UnicodesRec_* PS_Unicodes;$/;" t typeref:struct:PS_UnicodesRec_ +PS_UnicodesRec android/freetype/include/freetype/internal/services/svpscmap.h /^ } PS_UnicodesRec;$/;" t typeref:struct:PS_UnicodesRec_ +PS_UnicodesRec include/freetype/internal/services/svpscmap.h /^ } PS_UnicodesRec;$/;" t typeref:struct:PS_UnicodesRec_ +PS_UnicodesRec_ android/freetype/include/freetype/internal/services/svpscmap.h /^ typedef struct PS_UnicodesRec_$/;" s +PS_UnicodesRec_ include/freetype/internal/services/svpscmap.h /^ typedef struct PS_UnicodesRec_$/;" s +PS_Unicodes_CharIndexFunc android/freetype/include/freetype/internal/services/svpscmap.h /^ (*PS_Unicodes_CharIndexFunc)( PS_Unicodes unicodes,$/;" t +PS_Unicodes_CharIndexFunc include/freetype/internal/services/svpscmap.h /^ (*PS_Unicodes_CharIndexFunc)( PS_Unicodes unicodes,$/;" t +PS_Unicodes_CharNextFunc android/freetype/include/freetype/internal/services/svpscmap.h /^ (*PS_Unicodes_CharNextFunc)( PS_Unicodes unicodes,$/;" t +PS_Unicodes_CharNextFunc include/freetype/internal/services/svpscmap.h /^ (*PS_Unicodes_CharNextFunc)( PS_Unicodes unicodes,$/;" t +PS_Unicodes_InitFunc android/freetype/include/freetype/internal/services/svpscmap.h /^ (*PS_Unicodes_InitFunc)( FT_Memory memory,$/;" t +PS_Unicodes_InitFunc include/freetype/internal/services/svpscmap.h /^ (*PS_Unicodes_InitFunc)( FT_Memory memory,$/;" t +PS_construct demos/tiger.c /^static PS* PS_construct(const char* commands, int commandCount, const float* points, int pointCount)$/;" f file: +PS_destruct demos/tiger.c /^static void PS_destruct(PS* ps)$/;" f file: +PTRCALL android/expat/lib/internal.h /^#define PTRCALL$/;" d +PTRFASTCALL android/expat/lib/internal.h /^#define PTRFASTCALL /;" d +PTRFASTCALL android/expat/lib/internal.h /^#define PTRFASTCALL$/;" d +PTimer demos/platform_qt4.cpp /^ PTimer(QWidget* parent = 0)$/;" f class:PTimer +PTimer demos/platform_qt4.cpp /^class PTimer : public QTimer$/;" c file: +PUShort android/freetype/src/raster/ftraster.c /^ typedef unsigned short UShort, *PUShort;$/;" t file: +PWindow demos/platform_qt4.cpp /^ PWindow(QWidget* parent = 0)$/;" f class:PWindow +PWindow demos/platform_qt4.cpp /^class PWindow : public QMainWindow$/;" c file: +PWindow test/testQt4.cpp /^ PWindow(QWidget* parent = 0)$/;" f class:PWindow +PWindow test/testQt4.cpp /^class PWindow : public QMainWindow, public QTimer$/;" c file: +PWorker android/freetype/src/raster/ftraster.c /^ typedef struct TWorker_ TWorker, *PWorker;$/;" t typeref:struct: file: +PWorker android/freetype/src/smooth/ftgrays.c /^ } TWorker, *PWorker;$/;" t typeref:struct:TWorker_ file: +PYLINT_BLACKLIST tools/gyp/PRESUBMIT.py /^PYLINT_BLACKLIST = [$/;" v +PYLINT_DISABLED_WARNINGS tools/gyp/PRESUBMIT.py /^PYLINT_DISABLED_WARNINGS = [$/;" v +P_EDGE src/picasso_gpc.cpp /^#define P_EDGE(/;" d file: +ParallelProcessingError tools/gyp/build/lib/gyp/input.py /^class ParallelProcessingError(Exception):$/;" c +ParallelProcessingError tools/gyp/pylib/gyp/input.py /^class ParallelProcessingError(Exception):$/;" c +ParallelState tools/gyp/build/lib/gyp/input.py /^class ParallelState(object):$/;" c +ParallelState tools/gyp/pylib/gyp/input.py /^class ParallelState(object):$/;" c +ParseQualifiedTarget tools/gyp/build/lib/gyp/common.py /^def ParseQualifiedTarget(target):$/;" f +ParseQualifiedTarget tools/gyp/pylib/gyp/common.py /^def ParseQualifiedTarget(target):$/;" f +ParseSolution tools/gyp/tools/pretty_sln.py /^def ParseSolution(solution_file):$/;" f +ParseTarget tools/gyp/tools/graphviz.py /^def ParseTarget(target):$/;" f +Path tools/gyp/build/lib/gyp/MSVSVersion.py /^ def Path(self):$/;" m class:VisualStudioVersion +Path tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def Path(self):$/;" m class:PBXProject +Path tools/gyp/pylib/gyp/MSVSVersion.py /^ def Path(self):$/;" m class:VisualStudioVersion +Path tools/gyp/pylib/gyp/xcodeproj_file.py /^ def Path(self):$/;" m class:PBXProject +PathData demos/subwaymap.c /^}PathData;$/;" t typeref:struct:__anon46 file: +PathFromSourceTreeAndPath tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def PathFromSourceTreeAndPath(self):$/;" m class:XCHierarchicalElement +PathFromSourceTreeAndPath tools/gyp/pylib/gyp/xcodeproj_file.py /^ def PathFromSourceTreeAndPath(self):$/;" m class:XCHierarchicalElement +PathHashables tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def PathHashables(self):$/;" m class:XCFileLikeElement +PathHashables tools/gyp/pylib/gyp/xcodeproj_file.py /^ def PathHashables(self):$/;" m class:XCFileLikeElement +PerformBuild tools/gyp/build/lib/gyp/generator/android.py /^def PerformBuild(data, configurations, params):$/;" f +PerformBuild tools/gyp/build/lib/gyp/generator/msvs.py /^def PerformBuild(data, configurations, params):$/;" f +PerformBuild tools/gyp/build/lib/gyp/generator/ninja.py /^def PerformBuild(data, configurations, params):$/;" f +PerformBuild tools/gyp/build/lib/gyp/generator/scons.py /^def PerformBuild(data, configurations, params):$/;" f +PerformBuild tools/gyp/build/lib/gyp/generator/xcode.py /^def PerformBuild(data, configurations, params):$/;" f +PerformBuild tools/gyp/pylib/gyp/generator/android.py /^def PerformBuild(data, configurations, params):$/;" f +PerformBuild tools/gyp/pylib/gyp/generator/msvs.py /^def PerformBuild(data, configurations, params):$/;" f +PerformBuild tools/gyp/pylib/gyp/generator/ninja.py /^def PerformBuild(data, configurations, params):$/;" f +PerformBuild tools/gyp/pylib/gyp/generator/scons.py /^def PerformBuild(data, configurations, params):$/;" f +PerformBuild tools/gyp/pylib/gyp/generator/xcode.py /^def PerformBuild(data, configurations, params):$/;" f +Pitch android/freetype/include/freetype/tttables.h /^ FT_UShort Pitch;$/;" m struct:TT_PCLT_ +Pitch include/freetype/tttables.h /^ FT_UShort Pitch;$/;" m struct:TT_PCLT_ +Pixel_Bits android/freetype/src/raster/ftraster.c /^#define Pixel_Bits /;" d file: +PlatformProc demos/platform_minigui.c /^static int PlatformProc(HWND hWnd, int message, WPARAM wParam, LPARAM lParam)$/;" f file: +Pop_Push_Count android/freetype/src/truetype/ttinterp.c /^ const FT_Byte Pop_Push_Count[256] =$/;" v file: +Pow src/include/math_type.h /^#define Pow(/;" d +PreActionInput tools/gyp/build/lib/gyp/generator/ninja.py /^ def PreActionInput(self, flavor):$/;" m class:Target +PreActionInput tools/gyp/pylib/gyp/generator/ninja.py /^ def PreActionInput(self, flavor):$/;" m class:Target +PreCompileInput tools/gyp/build/lib/gyp/generator/ninja.py /^ def PreCompileInput(self):$/;" m class:Target +PreCompileInput tools/gyp/pylib/gyp/generator/ninja.py /^ def PreCompileInput(self):$/;" m class:Target +PrecompiledHeader tools/gyp/build/lib/gyp/msvs_emulation.py /^class PrecompiledHeader(object):$/;" c +PrecompiledHeader tools/gyp/pylib/gyp/msvs_emulation.py /^class PrecompiledHeader(object):$/;" c +PrepareAndroidTree tools/gyp/buildbot/buildbot_run.py /^def PrepareAndroidTree():$/;" f +PrettyPrintNode tools/gyp/tools/pretty_vcproj.py /^def PrettyPrintNode(node, indent=0):$/;" f +Print tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def Print(self, file=sys.stdout):$/;" m class:XCObject +Print tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def Print(self, file=sys.stdout):$/;" m class:XCProjectFile +Print tools/gyp/pylib/gyp/xcodeproj_file.py /^ def Print(self, file=sys.stdout):$/;" m class:XCObject +Print tools/gyp/pylib/gyp/xcodeproj_file.py /^ def Print(self, file=sys.stdout):$/;" m class:XCProjectFile +PrintBuildOrder tools/gyp/tools/pretty_sln.py /^def PrintBuildOrder(projects, deps):$/;" f +PrintDependencies tools/gyp/tools/pretty_sln.py /^def PrintDependencies(projects, deps):$/;" f +PrintVCProj tools/gyp/tools/pretty_sln.py /^def PrintVCProj(projects):$/;" f +Proc_Sweep_Drop android/freetype/src/raster/ftraster.c /^ Function_Sweep_Span* Proc_Sweep_Drop;$/;" m struct:TWorker_ file: +Proc_Sweep_Init android/freetype/src/raster/ftraster.c /^ Function_Sweep_Init* Proc_Sweep_Init;$/;" m struct:TWorker_ file: +Proc_Sweep_Span android/freetype/src/raster/ftraster.c /^ Function_Sweep_Span* Proc_Sweep_Span;$/;" m struct:TWorker_ file: +Proc_Sweep_Step android/freetype/src/raster/ftraster.c /^ Function_Sweep_Step* Proc_Sweep_Step;$/;" m struct:TWorker_ file: +ProcessConditionsInDict tools/gyp/build/lib/gyp/input.py /^def ProcessConditionsInDict(the_dict, phase, variables, build_file):$/;" f +ProcessConditionsInDict tools/gyp/pylib/gyp/input.py /^def ProcessConditionsInDict(the_dict, phase, variables, build_file):$/;" f +ProcessListFiltersInDict tools/gyp/build/lib/gyp/input.py /^def ProcessListFiltersInDict(name, the_dict):$/;" f +ProcessListFiltersInDict tools/gyp/pylib/gyp/input.py /^def ProcessListFiltersInDict(name, the_dict):$/;" f +ProcessListFiltersInList tools/gyp/build/lib/gyp/input.py /^def ProcessListFiltersInList(name, the_list):$/;" f +ProcessListFiltersInList tools/gyp/pylib/gyp/input.py /^def ProcessListFiltersInList(name, the_list):$/;" f +ProcessToolsetsInDict tools/gyp/build/lib/gyp/input.py /^def ProcessToolsetsInDict(data):$/;" f +ProcessToolsetsInDict tools/gyp/pylib/gyp/input.py /^def ProcessToolsetsInDict(data):$/;" f +ProcessVariablesAndConditionsInDict tools/gyp/build/lib/gyp/input.py /^def ProcessVariablesAndConditionsInDict(the_dict, phase, variables_in,$/;" f +ProcessVariablesAndConditionsInDict tools/gyp/pylib/gyp/input.py /^def ProcessVariablesAndConditionsInDict(the_dict, phase, variables_in,$/;" f +ProcessVariablesAndConditionsInList tools/gyp/build/lib/gyp/input.py /^def ProcessVariablesAndConditionsInList(the_list, phase, variables,$/;" f +ProcessVariablesAndConditionsInList tools/gyp/pylib/gyp/input.py /^def ProcessVariablesAndConditionsInList(the_list, phase, variables,$/;" f +Processor android/expat/lib/xmlparse.c /^typedef enum XML_Error PTRCALL Processor(XML_Parser parser,$/;" t typeref:enum:Processor file: +ProductsGroup tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def ProductsGroup(self):$/;" m class:PBXProject +ProductsGroup tools/gyp/pylib/gyp/xcodeproj_file.py /^ def ProductsGroup(self):$/;" m class:PBXProject +ProgramTarget tools/gyp/build/lib/gyp/SCons.py /^class ProgramTarget(CompilableSourcesTargetBase):$/;" c +ProgramTarget tools/gyp/pylib/gyp/SCons.py /^class ProgramTarget(CompilableSourcesTargetBase):$/;" c +Project android/freetype/src/truetype/ttinterp.c /^ Project( EXEC_OP_ FT_Pos dx,$/;" f file: +ProjectExtension tools/gyp/build/lib/gyp/MSVSVersion.py /^ def ProjectExtension(self):$/;" m class:VisualStudioVersion +ProjectExtension tools/gyp/pylib/gyp/MSVSVersion.py /^ def ProjectExtension(self):$/;" m class:VisualStudioVersion +ProjectVersion tools/gyp/build/lib/gyp/MSVSVersion.py /^ def ProjectVersion(self):$/;" m class:VisualStudioVersion +ProjectVersion tools/gyp/pylib/gyp/MSVSVersion.py /^ def ProjectVersion(self):$/;" m class:VisualStudioVersion +Project_x android/freetype/src/truetype/ttinterp.c /^ Project_x( EXEC_OP_ FT_Pos dx,$/;" f file: +Project_y android/freetype/src/truetype/ttinterp.c /^ Project_y( EXEC_OP_ FT_Pos dx,$/;" f file: +ProjectsGroup tools/gyp/build/lib/gyp/xcodeproj_file.py /^ def ProjectsGroup(self):$/;" m class:PBXProject +ProjectsGroup tools/gyp/pylib/gyp/xcodeproj_file.py /^ def ProjectsGroup(self):$/;" m class:PBXProject +QUOTE_RE tools/gyp/tools/pretty_gyp.py /^QUOTE_RE = re.compile(QUOTE_RE_STR)$/;" v +QUOTE_RE_STR tools/gyp/tools/pretty_gyp.py /^QUOTE_RE_STR = r'(?P[\\'"])(.*?)(??[{|}~]|^$')$/;" v +_quote tools/gyp/pylib/gyp/common.py /^_quote = re.compile('[\\t\\n #$%&\\'()*;<=>?[{|}~]|^$')$/;" v +_quoted tools/gyp/build/lib/gyp/xcodeproj_file.py /^_quoted = re.compile('___')$/;" v +_quoted tools/gyp/pylib/gyp/xcodeproj_file.py /^_quoted = re.compile('___')$/;" v +_rc tools/gyp/build/lib/gyp/MSVSSettings.py /^_rc = _Tool('VCResourceCompilerTool', 'ResourceCompile')$/;" v +_rc tools/gyp/pylib/gyp/MSVSSettings.py /^_rc = _Tool('VCResourceCompilerTool', 'ResourceCompile')$/;" v +_schema tools/gyp/build/lib/gyp/xcodeproj_file.py /^ _schema = XCBuildPhase._schema.copy()$/;" v class:PBXCopyFilesBuildPhase +_schema tools/gyp/build/lib/gyp/xcodeproj_file.py /^ _schema = XCBuildPhase._schema.copy()$/;" v class:PBXShellScriptBuildPhase +_schema tools/gyp/build/lib/gyp/xcodeproj_file.py /^ _schema = XCContainerPortal._schema.copy()$/;" v class:PBXProject +_schema tools/gyp/build/lib/gyp/xcodeproj_file.py /^ _schema = XCFileLikeElement._schema.copy()$/;" v class:PBXFileReference +_schema tools/gyp/build/lib/gyp/xcodeproj_file.py /^ _schema = XCFileLikeElement._schema.copy()$/;" v class:PBXReferenceProxy +_schema tools/gyp/build/lib/gyp/xcodeproj_file.py /^ _schema = XCHierarchicalElement._schema.copy()$/;" v class:PBXGroup +_schema tools/gyp/build/lib/gyp/xcodeproj_file.py /^ _schema = XCObject._schema.copy()$/;" v class:PBXBuildFile +_schema tools/gyp/build/lib/gyp/xcodeproj_file.py /^ _schema = XCObject._schema.copy()$/;" v class:PBXBuildRule +_schema tools/gyp/build/lib/gyp/xcodeproj_file.py /^ _schema = XCObject._schema.copy()$/;" v class:PBXContainerItemProxy +_schema tools/gyp/build/lib/gyp/xcodeproj_file.py /^ _schema = XCObject._schema.copy()$/;" v class:PBXTargetDependency +_schema tools/gyp/build/lib/gyp/xcodeproj_file.py /^ _schema = XCObject._schema.copy()$/;" v class:XCBuildConfiguration +_schema tools/gyp/build/lib/gyp/xcodeproj_file.py /^ _schema = XCObject._schema.copy()$/;" v class:XCBuildPhase +_schema tools/gyp/build/lib/gyp/xcodeproj_file.py /^ _schema = XCObject._schema.copy()$/;" v class:XCConfigurationList +_schema tools/gyp/build/lib/gyp/xcodeproj_file.py /^ _schema = XCObject._schema.copy()$/;" v class:XCHierarchicalElement +_schema tools/gyp/build/lib/gyp/xcodeproj_file.py /^ _schema = XCObject._schema.copy()$/;" v class:XCProjectFile +_schema tools/gyp/build/lib/gyp/xcodeproj_file.py /^ _schema = XCRemoteObject._schema.copy()$/;" v class:XCTarget +_schema tools/gyp/build/lib/gyp/xcodeproj_file.py /^ _schema = XCTarget._schema.copy()$/;" v class:PBXNativeTarget +_schema tools/gyp/build/lib/gyp/xcodeproj_file.py /^ _schema = {}$/;" v class:XCObject +_schema tools/gyp/pylib/gyp/xcodeproj_file.py /^ _schema = XCBuildPhase._schema.copy()$/;" v class:PBXCopyFilesBuildPhase +_schema tools/gyp/pylib/gyp/xcodeproj_file.py /^ _schema = XCBuildPhase._schema.copy()$/;" v class:PBXShellScriptBuildPhase +_schema tools/gyp/pylib/gyp/xcodeproj_file.py /^ _schema = XCContainerPortal._schema.copy()$/;" v class:PBXProject +_schema tools/gyp/pylib/gyp/xcodeproj_file.py /^ _schema = XCFileLikeElement._schema.copy()$/;" v class:PBXFileReference +_schema tools/gyp/pylib/gyp/xcodeproj_file.py /^ _schema = XCFileLikeElement._schema.copy()$/;" v class:PBXReferenceProxy +_schema tools/gyp/pylib/gyp/xcodeproj_file.py /^ _schema = XCHierarchicalElement._schema.copy()$/;" v class:PBXGroup +_schema tools/gyp/pylib/gyp/xcodeproj_file.py /^ _schema = XCObject._schema.copy()$/;" v class:PBXBuildFile +_schema tools/gyp/pylib/gyp/xcodeproj_file.py /^ _schema = XCObject._schema.copy()$/;" v class:PBXBuildRule +_schema tools/gyp/pylib/gyp/xcodeproj_file.py /^ _schema = XCObject._schema.copy()$/;" v class:PBXContainerItemProxy +_schema tools/gyp/pylib/gyp/xcodeproj_file.py /^ _schema = XCObject._schema.copy()$/;" v class:PBXTargetDependency +_schema tools/gyp/pylib/gyp/xcodeproj_file.py /^ _schema = XCObject._schema.copy()$/;" v class:XCBuildConfiguration +_schema tools/gyp/pylib/gyp/xcodeproj_file.py /^ _schema = XCObject._schema.copy()$/;" v class:XCBuildPhase +_schema tools/gyp/pylib/gyp/xcodeproj_file.py /^ _schema = XCObject._schema.copy()$/;" v class:XCConfigurationList +_schema tools/gyp/pylib/gyp/xcodeproj_file.py /^ _schema = XCObject._schema.copy()$/;" v class:XCHierarchicalElement +_schema tools/gyp/pylib/gyp/xcodeproj_file.py /^ _schema = XCObject._schema.copy()$/;" v class:XCProjectFile +_schema tools/gyp/pylib/gyp/xcodeproj_file.py /^ _schema = XCRemoteObject._schema.copy()$/;" v class:XCTarget +_schema tools/gyp/pylib/gyp/xcodeproj_file.py /^ _schema = XCTarget._schema.copy()$/;" v class:PBXNativeTarget +_schema tools/gyp/pylib/gyp/xcodeproj_file.py /^ _schema = {}$/;" v class:XCObject +_sdk_base_dir tools/gyp/build/lib/gyp/xcode_emulation.py /^ _sdk_base_dir = None$/;" v class:XcodeSettings +_sdk_base_dir tools/gyp/pylib/gyp/xcode_emulation.py /^ _sdk_base_dir = None$/;" v class:XcodeSettings +_selt2565 android/jni/selt2565.h /^struct _selt2565{$/;" s +_shared_intermediate_var tools/gyp/build/lib/gyp/generator/xcode.py /^_shared_intermediate_var = 'SHARED_INTERMEDIATE_DIR'$/;" v +_shared_intermediate_var tools/gyp/pylib/gyp/generator/xcode.py /^_shared_intermediate_var = 'SHARED_INTERMEDIATE_DIR'$/;" v +_should_print_single_line tools/gyp/build/lib/gyp/xcodeproj_file.py /^ _should_print_single_line = False$/;" v class:XCObject +_should_print_single_line tools/gyp/build/lib/gyp/xcodeproj_file.py /^ _should_print_single_line = True$/;" v class:PBXBuildFile +_should_print_single_line tools/gyp/build/lib/gyp/xcodeproj_file.py /^ _should_print_single_line = True$/;" v class:PBXFileReference +_should_print_single_line tools/gyp/pylib/gyp/xcodeproj_file.py /^ _should_print_single_line = False$/;" v class:XCObject +_should_print_single_line tools/gyp/pylib/gyp/xcodeproj_file.py /^ _should_print_single_line = True$/;" v class:PBXBuildFile +_should_print_single_line tools/gyp/pylib/gyp/xcodeproj_file.py /^ _should_print_single_line = True$/;" v class:PBXFileReference +_string tools/gyp/build/lib/gyp/MSVSSettings.py /^_string = _String()$/;" v +_string tools/gyp/pylib/gyp/MSVSSettings.py /^_string = _String()$/;" v +_string_list tools/gyp/build/lib/gyp/MSVSSettings.py /^_string_list = _StringList()$/;" v +_string_list tools/gyp/pylib/gyp/MSVSSettings.py /^_string_list = _StringList()$/;" v +_subsystem_enumeration tools/gyp/build/lib/gyp/MSVSSettings.py /^_subsystem_enumeration = _Enumeration($/;" v +_subsystem_enumeration tools/gyp/pylib/gyp/MSVSSettings.py /^_subsystem_enumeration = _Enumeration($/;" v +_target_machine_enumeration tools/gyp/build/lib/gyp/MSVSSettings.py /^_target_machine_enumeration = _Enumeration($/;" v +_target_machine_enumeration tools/gyp/pylib/gyp/MSVSSettings.py /^_target_machine_enumeration = _Enumeration($/;" v +_tt_check_patents_in_range android/freetype/src/base/ftpatent.c /^ _tt_check_patents_in_range( FT_Stream stream,$/;" f file: +_tt_check_patents_in_table android/freetype/src/base/ftpatent.c /^ _tt_check_patents_in_table( FT_Face face,$/;" f file: +_tt_face_check_patents android/freetype/src/base/ftpatent.c /^ _tt_face_check_patents( FT_Face face )$/;" f file: +_unquoted tools/gyp/build/lib/gyp/xcodeproj_file.py /^_unquoted = re.compile('^[A-Za-z0-9$.\/_]+$')$/;" v +_unquoted tools/gyp/pylib/gyp/xcodeproj_file.py /^_unquoted = re.compile('^[A-Za-z0-9$.\/_]+$')$/;" v +_uround src/include/math_type.h /^inline unsigned _uround(float v)$/;" f +_xcode_variable_re tools/gyp/build/lib/gyp/generator/xcode.py /^_xcode_variable_re = re.compile('(\\$\\((.*?)\\))')$/;" v +_xcode_variable_re tools/gyp/pylib/gyp/generator/xcode.py /^_xcode_variable_re = re.compile('(\\$\\((.*?)\\))')$/;" v +_xml_escape_map tools/gyp/build/lib/gyp/easy_xml.py /^_xml_escape_map = {$/;" v +_xml_escape_map tools/gyp/pylib/gyp/easy_xml.py /^_xml_escape_map = {$/;" v +_xml_escape_re tools/gyp/build/lib/gyp/easy_xml.py /^_xml_escape_re = re.compile($/;" v +_xml_escape_re tools/gyp/pylib/gyp/easy_xml.py /^_xml_escape_re = re.compile($/;" v +a android/freetype/include/freetype/freetype.h /^ FT_CeilFix( FT_Fixed a );$/;" v +a android/freetype/include/freetype/freetype.h /^ FT_FloorFix( FT_Fixed a );$/;" v +a android/freetype/include/freetype/freetype.h /^ FT_RoundFix( FT_Fixed a );$/;" v +a include/freetype/freetype.h /^ FT_CeilFix( FT_Fixed a );$/;" v +a include/freetype/freetype.h /^ FT_FloorFix( FT_Fixed a );$/;" v +a include/freetype/freetype.h /^ FT_RoundFix( FT_Fixed a );$/;" v +a include/picasso.h /^ float a;$/;" m struct:_ps_color +a src/gfx/gfx_blur.h /^ value_type a;$/;" m struct:gfx::stack_blur_calc_rgba +a src/gfx/gfx_gradient_adapter.cpp /^ gfx_dda_line_interpolator<14> a;$/;" m struct:gfx::color_interpolator file: +a src/include/color_type.h /^ scalar a;$/;" m struct:picasso::rgba +a src/include/color_type.h /^ value_type a;$/;" m struct:picasso::rgba8 +a test/alpha_func.c /^static float a = 1.0f;$/;" v file: +aa_mask src/gfx/gfx_rasterizer_scanline.h /^ aa_mask = aa_scale - 1,$/;" e enum:gfx::gfx_rasterizer_scanline_aa::__anon154 +aa_mask2 src/gfx/gfx_rasterizer_scanline.h /^ aa_mask2 = aa_scale2 - 1$/;" e enum:gfx::gfx_rasterizer_scanline_aa::__anon154 +aa_scale src/gfx/gfx_rasterizer_scanline.h /^ aa_scale = 1 << aa_shift,$/;" e enum:gfx::gfx_rasterizer_scanline_aa::__anon154 +aa_scale2 src/gfx/gfx_rasterizer_scanline.h /^ aa_scale2 = aa_scale << 1,$/;" e enum:gfx::gfx_rasterizer_scanline_aa::__anon154 +aa_shift src/gfx/gfx_rasterizer_scanline.h /^ aa_shift = 8,$/;" e enum:gfx::gfx_rasterizer_scanline_aa::__anon154 +abitmap android/freetype/include/freetype/ftbitmap.h /^ FT_Bitmap_New( FT_Bitmap *abitmap );$/;" v +abitmap include/freetype/ftbitmap.h /^ FT_Bitmap_New( FT_Bitmap *abitmap );$/;" v +abmp test/testMg.c /^static BITMAP abmp;$/;" v file: +abmp test/testWin.c /^BITMAP abmp;$/;" v +absolute_build_file_paths tools/gyp/build/lib/gyp/input.py /^absolute_build_file_paths = False$/;" v +absolute_build_file_paths tools/gyp/pylib/gyp/input.py /^absolute_build_file_paths = False$/;" v +absolute_offsize android/freetype/src/cff/cfftypes.h /^ FT_Byte absolute_offsize;$/;" m struct:CFF_FontRec_ +abstract_font_adapter src/include/interfaces.h /^ abstract_font_adapter() {}$/;" f class:picasso::abstract_font_adapter +abstract_font_adapter src/include/interfaces.h /^class abstract_font_adapter$/;" c namespace:picasso +abstract_gradient_adapter src/include/interfaces.h /^ abstract_gradient_adapter() {}$/;" f class:picasso::abstract_gradient_adapter +abstract_gradient_adapter src/include/interfaces.h /^class abstract_gradient_adapter$/;" c namespace:picasso +abstract_mask_layer src/include/interfaces.h /^ abstract_mask_layer() {}$/;" f class:picasso::abstract_mask_layer +abstract_mask_layer src/include/interfaces.h /^class abstract_mask_layer$/;" c namespace:picasso +abstract_painter src/include/interfaces.h /^ abstract_painter() {}$/;" f class:picasso::abstract_painter +abstract_painter src/include/interfaces.h /^class abstract_painter$/;" c namespace:picasso +abstract_raster_adapter src/include/interfaces.h /^ abstract_raster_adapter() {}$/;" f class:picasso::abstract_raster_adapter +abstract_raster_adapter src/include/interfaces.h /^class abstract_raster_adapter$/;" c namespace:picasso +abstract_rendering_buffer src/include/interfaces.h /^ abstract_rendering_buffer() {}$/;" f class:picasso::abstract_rendering_buffer +abstract_rendering_buffer src/include/interfaces.h /^class abstract_rendering_buffer$/;" c namespace:picasso +abstract_trans_affine src/include/interfaces.h /^ abstract_trans_affine() {}$/;" f class:picasso::abstract_trans_affine +abstract_trans_affine src/include/interfaces.h /^class abstract_trans_affine$/;" c namespace:picasso +acase test/alpha_func.c /^int acase = 1;$/;" v +access_glyph_frame android/freetype/include/freetype/internal/tttypes.h /^ TT_Loader_StartGlyphFunc access_glyph_frame;$/;" m struct:TT_FaceRec_ +access_glyph_frame include/freetype/internal/tttypes.h /^ TT_Loader_StartGlyphFunc access_glyph_frame;$/;" m struct:TT_FaceRec_ +achVendID android/freetype/include/freetype/tttables.h /^ FT_Char achVendID[4];$/;" m struct:TT_OS2_ +achVendID include/freetype/tttables.h /^ FT_Char achVendID[4];$/;" m struct:TT_OS2_ +acos src/core/fixedopt.cpp /^fixed acos(fixed x)$/;" f namespace:fxmath +acos_table src/core/fixedopt.cpp /^static fixed_type acos_table[513] =$/;" m namespace:fxmath file: +acosf src/include/platform.h /^#define acosf(/;" d +action_string_sh tools/gyp/build/lib/gyp/generator/xcode.py /^ action_string_sh = gyp.common.EncodePOSIXShellList(postbuild['action'])$/;" v +action_string_sh tools/gyp/pylib/gyp/generator/xcode.py /^ action_string_sh = gyp.common.EncodePOSIXShellList(postbuild['action'])$/;" v +active android/freetype/src/truetype/ttobjs.h /^ FT_Bool active; \/* is it active? *\/$/;" m struct:TT_DefRecord_ +active src/picasso_font.cpp /^void font_adapter::active(void)$/;" f class:picasso::font_adapter +active src/picasso_gpc.cpp /^ int active; \/* Active flag \/ vertex count *\/$/;" m struct:picasso::p_shape file: +active tools/gyp/gyptest.py /^ active = True$/;" v class:CommandRunner +add android/freetype/include/freetype/internal/psaux.h /^ (*add)( PS_Table table,$/;" m struct:PS_Table_FuncsRec_ +add include/freetype/internal/psaux.h /^ (*add)( PS_Table table,$/;" m struct:PS_Table_FuncsRec_ +add src/gfx/gfx_blur.h /^ template void add(const T& v)$/;" f struct:gfx::stack_blur_calc_rgba +add src/gfx/gfx_blur.h /^ template void add(const T& v, unsigned int k)$/;" f struct:gfx::stack_blur_calc_rgba +add src/include/convert.h /^ void add(gpc_polygon& p, vertex_source& src)$/;" f class:picasso::conv_clipper +add src/include/data_vector.h /^inline void pod_bvector::add(const T& v)$/;" f class:picasso::pod_bvector +add src/include/vertex_dist.h /^ void add(const T& val)$/;" f class:picasso::vertex_sequence +addBinding android/expat/lib/xmlparse.c /^addBinding(XML_Parser parser, PREFIX *prefix, const ATTRIBUTE_ID *attId,$/;" f file: +add_cell src/gfx/gfx_rasterizer_scanline.h /^ void add_cell(int x, int)$/;" f class:gfx::scanline_hit_test +add_cell src/gfx/gfx_scanline.h /^ void add_cell(int x, unsigned int cover)$/;" f class:gfx::gfx_scanline_p8 +add_cell src/gfx/gfx_scanline.h /^ void add_cell(int x, unsigned int cover)$/;" f class:gfx::gfx_scanline_u8 +add_cell src/gfx/gfx_scanline.h /^ void add_cell(int x, unsigned int)$/;" f class:gfx::gfx_scanline_bin +add_cells src/gfx/gfx_scanline.h /^ void add_cells(int x, unsigned int len, const cover_type* covers)$/;" f class:gfx::gfx_scanline_p8 +add_cells src/gfx/gfx_scanline.h /^ void add_cells(int x, unsigned int len, const cover_type* covers)$/;" f class:gfx::gfx_scanline_u8 +add_cells src/gfx/gfx_scanline.h /^ void add_cells(int x, unsigned len, const void*)$/;" f class:gfx::gfx_scanline_bin +add_cells src/gfx/gfx_scanline_storage.h /^ int add_cells(const T* cells, unsigned int num_cells)$/;" f class:gfx::gfx_scanline_cell_storage +add_clipping src/gfx/gfx_renderer.h /^ void add_clipping(vertex_source& p, filling_rule f)$/;" f class:gfx::gfx_renderer +add_color src/gfx/gfx_gradient_adapter.h /^ void add_color(scalar offset, const color_type& color)$/;" f class:gfx::gfx_gradient_table +add_color_stop src/gfx/gfx_gradient_adapter.h /^ virtual void add_color_stop(scalar offset, const picasso::rgba& c)$/;" f class:gfx::gfx_gradient_adapter +add_color_stop src/picasso_gradient.cpp /^void gradient_adapter::add_color_stop(scalar offset, const rgba& c)$/;" f class:picasso::gradient_adapter +add_contour android/freetype/include/freetype/internal/psaux.h /^ T1_Builder_Add_Contour_Func add_contour;$/;" m struct:T1_Builder_FuncsRec_ +add_contour android/freetype/src/psaux/t1decode.c /^#define add_contour /;" d file: +add_contour include/freetype/internal/psaux.h /^ T1_Builder_Add_Contour_Func add_contour;$/;" m struct:T1_Builder_FuncsRec_ +add_coord_vertex src/include/convert.h /^ void add_coord_vertex(coord_storage& cs, scalar x, scalar y)$/;" f class:picasso::conv_stroke +add_curr_cell src/gfx/gfx_rasterizer_cell.h /^ void add_curr_cell(void)$/;" f class:gfx::gfx_rasterizer_cells_aa +add_dash src/include/convert.h /^ void add_dash(scalar dash_len, scalar gap_len)$/;" f class:picasso::conv_dash +add_edge_to_aet src/picasso_gpc.cpp /^static void add_edge_to_aet(edge_node **aet, edge_node *edge, edge_node *prev)$/;" f namespace:picasso +add_filter_color src/gfx/gfx_mask_layer.h /^ virtual void add_filter_color(const picasso::rgba& c)$/;" f class:gfx::gfx_mask_layer +add_filter_color src/picasso_mask.cpp /^void mask_layer::add_filter_color(const rgba& c)$/;" f class:picasso::mask_layer +add_intersection src/picasso_gpc.cpp /^static void add_intersection(it_node **it, edge_node *edge0, edge_node *edge1,$/;" f namespace:picasso +add_kerning src/picasso_font.cpp /^void font_adapter::add_kerning(scalar* x, scalar* y)$/;" f class:picasso::font_adapter +add_left src/picasso_gpc.cpp /^static void add_left(polygon_node *p, float x, float y)$/;" f namespace:picasso +add_local_min src/picasso_gpc.cpp /^static void add_local_min(polygon_node **p, edge_node *edge,$/;" f namespace:picasso +add_option tools/gyp/build/lib/gyp/__init__.py /^ def add_option(self, *args, **kw):$/;" m class:RegeneratableOptionParser +add_option tools/gyp/pylib/gyp/__init__.py /^ def add_option(self, *args, **kw):$/;" m class:RegeneratableOptionParser +add_path src/gfx/gfx_rasterizer_scanline.h /^ void add_path(vertex_source& vs, unsigned int path_id = 0)$/;" f class:gfx::gfx_rasterizer_scanline_aa +add_point android/freetype/include/freetype/internal/psaux.h /^ T1_Builder_Add_Point_Func add_point;$/;" m struct:T1_Builder_FuncsRec_ +add_point android/freetype/src/psaux/t1decode.c /^#define add_point /;" d file: +add_point include/freetype/internal/psaux.h /^ T1_Builder_Add_Point_Func add_point;$/;" m struct:T1_Builder_FuncsRec_ +add_point1 android/freetype/include/freetype/internal/psaux.h /^ T1_Builder_Add_Point1_Func add_point1;$/;" m struct:T1_Builder_FuncsRec_ +add_point1 android/freetype/src/psaux/t1decode.c /^#define add_point1 /;" d file: +add_point1 include/freetype/internal/psaux.h /^ T1_Builder_Add_Point1_Func add_point1;$/;" m struct:T1_Builder_FuncsRec_ +add_right src/picasso_gpc.cpp /^static void add_right(polygon_node *p, float x, float y)$/;" f namespace:picasso +add_shape src/gfx/gfx_raster_adapter.cpp /^void gfx_raster_adapter::add_shape(const vertex_source& vs, unsigned int id)$/;" f class:gfx::gfx_raster_adapter +add_shape src/picasso_raster_adapter.cpp /^void raster_adapter::add_shape(const vertex_source& vs, unsigned int id)$/;" f class:picasso::raster_adapter +add_span src/gfx/gfx_rasterizer_scanline.h /^ void add_span(int x, int len, int)$/;" f class:gfx::scanline_hit_test +add_span src/gfx/gfx_scanline.h /^ void add_span(int x, unsigned int len, unsigned int cover)$/;" f class:gfx::gfx_scanline_p8 +add_span src/gfx/gfx_scanline.h /^ void add_span(int x, unsigned int len, unsigned int cover)$/;" f class:gfx::gfx_scanline_u8 +add_span src/gfx/gfx_scanline.h /^ void add_span(int x, unsigned int len, unsigned int)$/;" f class:gfx::gfx_scanline_bin +add_st_edge src/picasso_gpc.cpp /^static void add_st_edge(st_node **st, it_node **it, edge_node *edge,$/;" f namespace:picasso +add_to_sbtree src/picasso_gpc.cpp /^static void add_to_sbtree(int *entries, sb_tree **sbtree, float y)$/;" f namespace:picasso +add_vertex src/core/graphic_path.cpp /^ void add_vertex(scalar x, scalar y, unsigned int cmd)$/;" f class:picasso::graphic_path_impl +add_vertex src/core/graphic_path.cpp /^void graphic_path::add_vertex(scalar x, scalar y, unsigned int cmd)$/;" f class:picasso::graphic_path +add_vertex src/gfx/gfx_rasterizer_scanline.h /^ void add_vertex(scalar x, scalar y, unsigned int cmd)$/;" f class:gfx::gfx_rasterizer_scanline_aa +add_vertex src/include/convert.h /^ virtual void add_vertex(scalar x, scalar y, unsigned int cmd)$/;" f class:picasso::conv_dash +add_vertex src/include/convert.h /^ virtual void add_vertex(scalar x, scalar y, unsigned int cmd)$/;" f class:picasso::conv_stroke +add_vertex src/include/convert.h /^ void add_vertex(scalar x, scalar y)$/;" f class:picasso::conv_clipper +address android/freetype/src/base/ftdbgmem.c /^ FT_Byte* address;$/;" m struct:FT_MemNodeRec_ file: +adjust demos/clock.c /^static ps_matrix* adjust;$/;" v file: +adjust_backward src/gfx/gfx_line_generator.h /^ void adjust_backward(void)$/;" f class:gfx::gfx_dda2_line_interpolator +adjust_forward src/gfx/gfx_line_generator.h /^ void adjust_forward(void)$/;" f class:gfx::gfx_dda2_line_interpolator +advance android/freetype/include/freetype/freetype.h /^ FT_Vector advance;$/;" m struct:FT_GlyphSlotRec_ +advance android/freetype/include/freetype/ftglyph.h /^ FT_Vector advance;$/;" m struct:FT_GlyphRec_ +advance android/freetype/include/freetype/ftincrem.h /^ FT_Long advance;$/;" m struct:FT_Incremental_MetricsRec_ +advance android/freetype/include/freetype/internal/psaux.h /^ FT_Vector advance;$/;" m struct:T1_BuilderRec_ +advance android/freetype/include/freetype/internal/tttypes.h /^ FT_Byte advance;$/;" m struct:TT_SBit_Small_Metrics_ +advance android/freetype/include/freetype/internal/tttypes.h /^ FT_Int advance;$/;" m struct:TT_LoaderRec_ +advance android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort advance;$/;" m struct:TT_LongMetricsRec_ +advance android/freetype/src/autofit/aftypes.h /^ FT_Int advance;$/;" m struct:AF_OutlineRec_ +advance android/freetype/src/cff/cffgload.h /^ FT_Vector advance;$/;" m struct:CFF_Builder_ +advance android/freetype/src/truetype/ttobjs.h /^ FT_Pos advance;$/;" m struct:TT_SubglyphRec_ +advance include/freetype/freetype.h /^ FT_Vector advance;$/;" m struct:FT_GlyphSlotRec_ +advance include/freetype/ftglyph.h /^ FT_Vector advance;$/;" m struct:FT_GlyphRec_ +advance include/freetype/ftincrem.h /^ FT_Long advance;$/;" m struct:FT_Incremental_MetricsRec_ +advance include/freetype/internal/psaux.h /^ FT_Vector advance;$/;" m struct:T1_BuilderRec_ +advance include/freetype/internal/tttypes.h /^ FT_Byte advance;$/;" m struct:TT_SBit_Small_Metrics_ +advance include/freetype/internal/tttypes.h /^ FT_Int advance;$/;" m struct:TT_LoaderRec_ +advance include/freetype/internal/tttypes.h /^ FT_UShort advance;$/;" m struct:TT_LongMetricsRec_ +advance_Height_Max android/freetype/include/freetype/tttables.h /^ FT_UShort advance_Height_Max; \/* advance height maximum *\/$/;" m struct:TT_VertHeader_ +advance_Height_Max include/freetype/tttables.h /^ FT_UShort advance_Height_Max; \/* advance height maximum *\/$/;" m struct:TT_VertHeader_ +advance_Width_Max android/freetype/include/freetype/tttables.h /^ FT_UShort advance_Width_Max; \/* advance width maximum *\/$/;" m struct:TT_HoriHeader_ +advance_Width_Max include/freetype/tttables.h /^ FT_UShort advance_Width_Max; \/* advance width maximum *\/$/;" m struct:TT_HoriHeader_ +advance_v include/freetype/ftincrem.h /^ FT_Long advance_v; \/* since 2.3.12 *\/$/;" m struct:FT_Incremental_MetricsRec_ +advance_x src/include/graphic_base.h /^ scalar advance_x;$/;" m struct:picasso::_glyph +advance_y src/include/graphic_base.h /^ scalar advance_y;$/;" m struct:picasso::_glyph +af_arctan android/freetype/src/autofit/afangles.c /^ static const FT_Byte af_arctan[1L << AF_ATAN_BITS] =$/;" v file: +af_autofitter_done android/freetype/src/autofit/afmodule.c /^ af_autofitter_done( FT_Autofitter module )$/;" f +af_autofitter_service android/freetype/src/autofit/afmodule.c /^ const FT_AutoHinter_ServiceRec af_autofitter_service =$/;" v +af_cjk_align_edge_points android/freetype/src/autofit/afcjk.c /^ af_cjk_align_edge_points( AF_GlyphHints hints,$/;" f file: +af_cjk_align_linked_edge android/freetype/src/autofit/afcjk.c /^ af_cjk_align_linked_edge( AF_GlyphHints hints,$/;" f file: +af_cjk_align_serif_edge android/freetype/src/autofit/afcjk.c /^ af_cjk_align_serif_edge( AF_GlyphHints hints,$/;" f file: +af_cjk_compute_stem_width android/freetype/src/autofit/afcjk.c /^ af_cjk_compute_stem_width( AF_GlyphHints hints,$/;" f file: +af_cjk_hint_edges android/freetype/src/autofit/afcjk.c /^ af_cjk_hint_edges( AF_GlyphHints hints,$/;" f file: +af_cjk_hints_compute_edges android/freetype/src/autofit/afcjk.c /^ af_cjk_hints_compute_edges( AF_GlyphHints hints,$/;" f file: +af_cjk_hints_compute_segments android/freetype/src/autofit/afcjk.c /^ af_cjk_hints_compute_segments( AF_GlyphHints hints,$/;" f file: +af_cjk_hints_detect_features android/freetype/src/autofit/afcjk.c /^ af_cjk_hints_detect_features( AF_GlyphHints hints,$/;" f file: +af_cjk_hints_link_segments android/freetype/src/autofit/afcjk.c /^ af_cjk_hints_link_segments( AF_GlyphHints hints,$/;" f file: +af_cjk_metrics_scale android/freetype/src/autofit/afcjk.c /^ af_cjk_metrics_scale( AF_LatinMetrics metrics,$/;" f +af_cjk_metrics_scale_dim android/freetype/src/autofit/afcjk.c /^ af_cjk_metrics_scale_dim( AF_LatinMetrics metrics,$/;" f file: +af_cjk_script_class android/freetype/src/autofit/afcjk.c /^ af_cjk_script_class =$/;" v +af_cjk_script_class android/freetype/src/autofit/afcjk.h /^ af_cjk_script_class;$/;" v +af_cjk_snap_width android/freetype/src/autofit/afcjk.c /^ af_cjk_snap_width( AF_Width widths,$/;" f file: +af_cjk_uniranges android/freetype/src/autofit/afcjk.c /^ static const AF_Script_UniRangeRec af_cjk_uniranges[] =$/;" v file: +af_dir_str android/freetype/src/autofit/afhints.c /^ af_dir_str( AF_Direction dir )$/;" f file: +af_dummy_hints_apply android/freetype/src/autofit/afdummy.c /^ af_dummy_hints_apply( AF_GlyphHints hints,$/;" f file: +af_dummy_hints_init android/freetype/src/autofit/afdummy.c /^ af_dummy_hints_init( AF_GlyphHints hints,$/;" f file: +af_dummy_script_class android/freetype/src/autofit/afdummy.c /^ af_dummy_script_class =$/;" v +af_dummy_script_class android/freetype/src/autofit/afdummy.h /^ af_dummy_script_class;$/;" v +af_edge_flags_to_string android/freetype/src/autofit/afhints.c /^ af_edge_flags_to_string( AF_Edge_Flags flags )$/;" f file: +af_face_globals_compute_script_coverage android/freetype/src/autofit/afglobal.c /^ af_face_globals_compute_script_coverage( AF_FaceGlobals globals )$/;" f file: +af_face_globals_free android/freetype/src/autofit/afglobal.c /^ af_face_globals_free( AF_FaceGlobals globals )$/;" f +af_glyph_hints_align_edge_points android/freetype/src/autofit/afhints.c /^ af_glyph_hints_align_edge_points( AF_GlyphHints hints,$/;" f +af_glyph_hints_align_strong_points android/freetype/src/autofit/afhints.c /^ af_glyph_hints_align_strong_points( AF_GlyphHints hints,$/;" f +af_glyph_hints_align_weak_points android/freetype/src/autofit/afhints.c /^ af_glyph_hints_align_weak_points( AF_GlyphHints hints,$/;" f +af_glyph_hints_compute_inflections android/freetype/src/autofit/afhints.c /^ af_glyph_hints_compute_inflections( AF_GlyphHints hints )$/;" f file: +af_glyph_hints_done android/freetype/src/autofit/afhints.c /^ af_glyph_hints_done( AF_GlyphHints hints )$/;" f +af_glyph_hints_dump_edges android/freetype/src/autofit/afhints.c /^ af_glyph_hints_dump_edges( AF_GlyphHints hints )$/;" f +af_glyph_hints_dump_points android/freetype/src/autofit/afhints.c /^ af_glyph_hints_dump_points( AF_GlyphHints hints )$/;" f +af_glyph_hints_dump_segments android/freetype/src/autofit/afhints.c /^ af_glyph_hints_dump_segments( AF_GlyphHints hints )$/;" f +af_glyph_hints_init android/freetype/src/autofit/afhints.c /^ af_glyph_hints_init( AF_GlyphHints hints,$/;" f +af_glyph_hints_rescale android/freetype/src/autofit/afhints.c /^ af_glyph_hints_rescale( AF_GlyphHints hints,$/;" f +af_glyph_hints_save android/freetype/src/autofit/afhints.c /^ af_glyph_hints_save( AF_GlyphHints hints,$/;" f +af_glyph_hints_scale_dim android/freetype/src/autofit/afhints.c /^ af_glyph_hints_scale_dim( AF_GlyphHints hints,$/;" f +af_hint_normal_stem android/freetype/src/autofit/afcjk.c /^ af_hint_normal_stem( AF_GlyphHints hints,$/;" f file: +af_indic_hints_apply android/freetype/src/autofit/afindic.c /^ af_indic_hints_apply( AF_GlyphHints hints,$/;" f file: +af_indic_hints_init android/freetype/src/autofit/afindic.c /^ af_indic_hints_init( AF_GlyphHints hints,$/;" f file: +af_indic_metrics_init android/freetype/src/autofit/afindic.c /^ af_indic_metrics_init( AF_LatinMetrics metrics,$/;" f file: +af_indic_metrics_scale android/freetype/src/autofit/afindic.c /^ af_indic_metrics_scale( AF_LatinMetrics metrics,$/;" f file: +af_indic_script_class android/freetype/src/autofit/afindic.c /^ af_indic_script_class =$/;" v +af_indic_script_class android/freetype/src/autofit/afindic.h /^ af_indic_script_class;$/;" v +af_indic_uniranges android/freetype/src/autofit/afindic.c /^ static const AF_Script_UniRangeRec af_indic_uniranges[] =$/;" v file: +af_iup_interp android/freetype/src/autofit/afhints.c /^ af_iup_interp( AF_Point p1,$/;" f file: +af_iup_shift android/freetype/src/autofit/afhints.c /^ af_iup_shift( AF_Point p1,$/;" f file: +af_latin2_align_linked_edge android/freetype/src/autofit/aflatin2.c /^ af_latin2_align_linked_edge( AF_GlyphHints hints,$/;" f file: +af_latin2_align_serif_edge android/freetype/src/autofit/aflatin2.c /^ af_latin2_align_serif_edge( AF_GlyphHints hints,$/;" f file: +af_latin2_blue_chars android/freetype/src/autofit/aflatin2.c /^ static const char* const af_latin2_blue_chars[AF_LATIN_MAX_BLUES] =$/;" v file: +af_latin2_compute_stem_width android/freetype/src/autofit/aflatin2.c /^ af_latin2_compute_stem_width( AF_GlyphHints hints,$/;" f file: +af_latin2_hint_edges android/freetype/src/autofit/aflatin2.c /^ af_latin2_hint_edges( AF_GlyphHints hints,$/;" f +af_latin2_hints_apply android/freetype/src/autofit/aflatin2.c /^ af_latin2_hints_apply( AF_GlyphHints hints,$/;" f file: +af_latin2_hints_compute_blue_edges android/freetype/src/autofit/aflatin2.c /^ af_latin2_hints_compute_blue_edges( AF_GlyphHints hints,$/;" f +af_latin2_hints_init android/freetype/src/autofit/aflatin2.c /^ af_latin2_hints_init( AF_GlyphHints hints,$/;" f file: +af_latin2_hints_link_segments android/freetype/src/autofit/aflatin2.c /^ af_latin2_hints_link_segments( AF_GlyphHints hints,$/;" f +af_latin2_hints_link_segments android/freetype/src/autofit/aflatin2.c /^ af_latin2_hints_link_segments( AF_GlyphHints hints,$/;" v +af_latin2_metrics_init_blues android/freetype/src/autofit/aflatin2.c /^ af_latin2_metrics_init_blues( AF_LatinMetrics metrics,$/;" f file: +af_latin2_metrics_init_widths android/freetype/src/autofit/aflatin2.c /^ af_latin2_metrics_init_widths( AF_LatinMetrics metrics,$/;" f +af_latin2_metrics_scale android/freetype/src/autofit/aflatin2.c /^ af_latin2_metrics_scale( AF_LatinMetrics metrics,$/;" f +af_latin2_metrics_scale_dim android/freetype/src/autofit/aflatin2.c /^ af_latin2_metrics_scale_dim( AF_LatinMetrics metrics,$/;" f file: +af_latin2_script_class android/freetype/src/autofit/aflatin2.c /^ af_latin2_script_class =$/;" v +af_latin2_script_class android/freetype/src/autofit/aflatin2.h /^ af_latin2_script_class;$/;" v +af_latin2_snap_width android/freetype/src/autofit/aflatin2.c /^ af_latin2_snap_width( AF_Width widths,$/;" f file: +af_latin2_uniranges android/freetype/src/autofit/aflatin2.c /^ static const AF_Script_UniRangeRec af_latin2_uniranges[] =$/;" v file: +af_latin_align_linked_edge android/freetype/src/autofit/aflatin.c /^ af_latin_align_linked_edge( AF_GlyphHints hints,$/;" f file: +af_latin_align_serif_edge android/freetype/src/autofit/aflatin.c /^ af_latin_align_serif_edge( AF_GlyphHints hints,$/;" f file: +af_latin_blue_chars android/freetype/src/autofit/aflatin.c /^ static const char* const af_latin_blue_chars[AF_LATIN_MAX_BLUES] =$/;" v file: +af_latin_compute_stem_width android/freetype/src/autofit/aflatin.c /^ af_latin_compute_stem_width( AF_GlyphHints hints,$/;" f file: +af_latin_hint_edges android/freetype/src/autofit/aflatin.c /^ af_latin_hint_edges( AF_GlyphHints hints,$/;" f +af_latin_hints_apply android/freetype/src/autofit/aflatin.c /^ af_latin_hints_apply( AF_GlyphHints hints,$/;" f file: +af_latin_hints_compute_blue_edges android/freetype/src/autofit/aflatin.c /^ af_latin_hints_compute_blue_edges( AF_GlyphHints hints,$/;" f +af_latin_hints_init android/freetype/src/autofit/aflatin.c /^ af_latin_hints_init( AF_GlyphHints hints,$/;" f file: +af_latin_hints_link_segments android/freetype/src/autofit/aflatin.c /^ af_latin_hints_link_segments( AF_GlyphHints hints,$/;" f +af_latin_metrics_init_blues android/freetype/src/autofit/aflatin.c /^ af_latin_metrics_init_blues( AF_LatinMetrics metrics,$/;" f file: +af_latin_metrics_init_widths android/freetype/src/autofit/aflatin.c /^ af_latin_metrics_init_widths( AF_LatinMetrics metrics,$/;" f +af_latin_metrics_scale android/freetype/src/autofit/aflatin.c /^ af_latin_metrics_scale( AF_LatinMetrics metrics,$/;" f +af_latin_metrics_scale_dim android/freetype/src/autofit/aflatin.c /^ af_latin_metrics_scale_dim( AF_LatinMetrics metrics,$/;" f file: +af_latin_script_class android/freetype/src/autofit/aflatin.c /^ af_latin_script_class =$/;" v +af_latin_script_class android/freetype/src/autofit/aflatin.h /^ af_latin_script_class;$/;" v +af_latin_snap_width android/freetype/src/autofit/aflatin.c /^ af_latin_snap_width( AF_Width widths,$/;" f file: +af_latin_uniranges android/freetype/src/autofit/aflatin.c /^ static const AF_Script_UniRangeRec af_latin_uniranges[] =$/;" v file: +af_loader_done android/freetype/src/autofit/afloader.c /^ af_loader_done( AF_Loader loader )$/;" f +af_loader_load_g android/freetype/src/autofit/afloader.c /^ af_loader_load_g( AF_Loader loader,$/;" f file: +af_script_classes android/freetype/src/autofit/afglobal.c /^ static AF_ScriptClass const af_script_classes[] =$/;" v file: +af_sort_pos android/freetype/src/autofit/afangles.c /^ af_sort_pos( FT_UInt count,$/;" f +af_sort_widths android/freetype/src/autofit/afangles.c /^ af_sort_widths( FT_UInt count,$/;" f +af_warper_compute android/freetype/src/autofit/afwarp.c /^ af_warper_compute( AF_Warper warper,$/;" f +af_warper_compute_line_best android/freetype/src/autofit/afwarp.c /^ af_warper_compute_line_best( AF_Warper warper,$/;" f file: +af_warper_dummy android/freetype/src/autofit/afwarp.c /^char af_warper_dummy = 0; \/* make compiler happy *\/$/;" v +af_warper_weights android/freetype/src/autofit/afwarp.c /^ af_warper_weights[64] =$/;" v file: +affine_epsilon src/gfx/gfx_trans_affine.h /^const scalar affine_epsilon = FLT_TO_SCALAR(1e-14f); $/;" m namespace:gfx +afm_compare_kern_pairs android/freetype/src/psaux/afmparse.c /^ afm_compare_kern_pairs( const void* a,$/;" f +afm_data android/freetype/include/freetype/internal/t1types.h /^ const void* afm_data;$/;" m struct:T1_FaceRec_ +afm_data android/freetype/include/freetype/internal/t1types.h /^ void* afm_data;$/;" m struct:CID_FaceRec_ +afm_data include/freetype/internal/t1types.h /^ const void* afm_data;$/;" m struct:T1_FaceRec_ +afm_key_table android/freetype/src/psaux/afmparse.c /^ static const char* const afm_key_table[N_AFM_TOKENS] =$/;" v file: +afm_parse_kern_data android/freetype/src/psaux/afmparse.c /^ afm_parse_kern_data( AFM_Parser parser )$/;" f file: +afm_parse_kern_pairs android/freetype/src/psaux/afmparse.c /^ afm_parse_kern_pairs( AFM_Parser parser )$/;" f file: +afm_parse_track_kern android/freetype/src/psaux/afmparse.c /^ afm_parse_track_kern( AFM_Parser parser )$/;" f file: +afm_parser_done android/freetype/src/psaux/afmparse.c /^ afm_parser_done( AFM_Parser parser )$/;" f +afm_parser_funcs android/freetype/include/freetype/internal/psaux.h /^ const AFM_Parser_FuncsRec* afm_parser_funcs;$/;" m struct:PSAux_ServiceRec_ +afm_parser_funcs android/freetype/src/psaux/psauxmod.c /^ const AFM_Parser_FuncsRec afm_parser_funcs =$/;" v +afm_parser_funcs include/freetype/internal/psaux.h /^ const AFM_Parser_FuncsRec* afm_parser_funcs;$/;" m struct:PSAux_ServiceRec_ +afm_parser_next_key android/freetype/src/psaux/afmparse.c /^ afm_parser_next_key( AFM_Parser parser,$/;" f +afm_parser_skip_section android/freetype/src/psaux/afmparse.c /^ afm_parser_skip_section( AFM_Parser parser,$/;" f file: +afm_stream_read_one android/freetype/src/psaux/afmparse.c /^ afm_stream_read_one( AFM_Stream stream )$/;" f file: +afm_stream_read_string android/freetype/src/psaux/afmparse.c /^ afm_stream_read_string( AFM_Stream stream )$/;" f file: +afm_stream_skip_spaces android/freetype/src/psaux/afmparse.c /^ afm_stream_skip_spaces( AFM_Stream stream )$/;" f file: +afm_tokenize android/freetype/src/psaux/afmparse.c /^ afm_tokenize( const char* key,$/;" f file: +alibrary android/freetype/include/freetype/freetype.h /^ FT_Init_FreeType( FT_Library *alibrary );$/;" v +alibrary include/freetype/freetype.h /^ FT_Init_FreeType( FT_Library *alibrary );$/;" v +align android/freetype/src/pshinter/pshglob.h /^ int align;$/;" m struct:PSH_AlignmentRec_ +align_bot android/freetype/src/pshinter/pshglob.h /^ FT_Pos align_bot;$/;" m struct:PSH_AlignmentRec_ +align_top android/freetype/src/pshinter/pshglob.h /^ FT_Pos align_top;$/;" m struct:PSH_AlignmentRec_ +all_blocks android/freetype/src/base/ftdbgmem.c /^ FT_Long all_blocks; \/* total number of blocks allocated *\/$/;" m struct:FT_MemSourceRec_ file: +all_mem_used src/include/data_vector.h /^ unsigned int all_mem_used(void) const { return m_all_mem;}$/;" f class:picasso::block_allocator +all_size android/freetype/src/base/ftdbgmem.c /^ FT_Long all_size; \/* total cumulative allocated size *\/$/;" m struct:FT_MemSourceRec_ file: +alloc android/freetype/include/freetype/ftsystem.h /^ FT_Alloc_Func alloc;$/;" m struct:FT_MemoryRec_ +alloc android/freetype/src/base/ftdbgmem.c /^ FT_Alloc_Func alloc;$/;" m struct:FT_MemTableRec_ file: +alloc include/freetype/ftsystem.h /^ FT_Alloc_Func alloc;$/;" m struct:FT_MemoryRec_ +allocDefaultAtts android/expat/lib/xmlparse.c /^ int allocDefaultAtts;$/;" m struct:__anon16 file: +alloc_count android/freetype/src/base/ftdbgmem.c /^ FT_ULong alloc_count;$/;" m struct:FT_MemTableRec_ file: +alloc_count_max android/freetype/src/base/ftdbgmem.c /^ FT_ULong alloc_count_max;$/;" m struct:FT_MemTableRec_ file: +alloc_current android/freetype/src/base/ftdbgmem.c /^ FT_ULong alloc_current;$/;" m struct:FT_MemTableRec_ file: +alloc_max android/freetype/src/base/ftdbgmem.c /^ FT_ULong alloc_max;$/;" m struct:FT_MemTableRec_ file: +alloc_total android/freetype/src/base/ftdbgmem.c /^ FT_ULong alloc_total;$/;" m struct:FT_MemTableRec_ file: +alloc_total_max android/freetype/src/base/ftdbgmem.c /^ FT_ULong alloc_total_max;$/;" m struct:FT_MemTableRec_ file: +allocate src/gfx/gfx_span_generator.h /^ color_type* allocate(unsigned int span_len)$/;" f class:gfx::gfx_span_allocator +allocate src/include/data_vector.h /^ byte* allocate(unsigned int size, unsigned int alignment = 1)$/;" f class:picasso::block_allocator +allocate src/include/data_vector.h /^ static T* allocate(unsigned int num) { return new T [num]; }$/;" f struct:picasso::pod_allocator +allocate src/include/data_vector.h /^inline void pod_vector::allocate(unsigned int new_size)$/;" f class:picasso::pod_vector +allocate_block src/gfx/gfx_rasterizer_cell.h /^ void allocate_block(void)$/;" f class:gfx::gfx_rasterizer_cells_aa +allocate_block src/include/data_vector.h /^ void allocate_block(unsigned int size)$/;" f class:picasso::block_allocator +allocate_block src/include/data_vector.h /^inline void pod_bvector::allocate_block(unsigned int nb)$/;" f class:picasso::pod_bvector +alpha src/gfx/gfx_pixfmt_rgb.h /^ scalar alpha(void) const { return INT_TO_SCALAR(m_alpha_factor) \/ FLT_TO_SCALAR(255.0f); }$/;" f class:gfx::pixfmt_blender_rgb +alpha src/gfx/gfx_pixfmt_rgb.h /^ void alpha(scalar a) { m_alpha_factor = uround(a * base_mask); }$/;" f class:gfx::pixfmt_blender_rgb +alpha src/gfx/gfx_pixfmt_rgb16.h /^ scalar alpha(void) const { return INT_TO_SCALAR(m_alpha_factor) \/ FLT_TO_SCALAR(255.0f); }$/;" f class:gfx::pixfmt_blender_rgb16 +alpha src/gfx/gfx_pixfmt_rgb16.h /^ void alpha(scalar a) { m_alpha_factor = uround(a * base_mask); }$/;" f class:gfx::pixfmt_blender_rgb16 +alpha src/gfx/gfx_pixfmt_rgba.h /^ scalar alpha(void) const { return INT_TO_SCALAR(m_alpha_factor) \/ FLT_TO_SCALAR(255.0f); }$/;" f class:gfx::pixfmt_blender_rgba +alpha src/gfx/gfx_pixfmt_rgba.h /^ void alpha(scalar a) { m_alpha_factor = uround(a * base_mask); }$/;" f class:gfx::pixfmt_blender_rgba +alpha src/gfx/gfx_pixfmt_wrapper.h /^ scalar alpha(void) const { return m_fmt.alpha(); }$/;" f class:gfx::gfx_pixfmt_wrapper +alpha src/gfx/gfx_pixfmt_wrapper.h /^ void alpha(scalar a) { m_fmt.alpha(a); }$/;" f class:gfx::gfx_pixfmt_wrapper +alpha src/picasso_objects.h /^ scalar alpha;$/;" m struct:picasso::context_state +alpha_mul src/gfx/gfx_pixfmt_rgb.h /^ unsigned int alpha_mul(unsigned int a, unsigned int s)$/;" f class:gfx::pixfmt_blender_rgb +alpha_mul src/gfx/gfx_pixfmt_rgb16.h /^ unsigned int alpha_mul(unsigned int a, unsigned int s)$/;" f class:gfx::pixfmt_blender_rgb16 +alpha_mul src/gfx/gfx_pixfmt_rgba.h /^ unsigned int alpha_mul(unsigned int a, unsigned int s)$/;" f class:gfx::pixfmt_blender_rgba +amask_type src/gfx/gfx_mask_layer.h /^ typedef AlphaMask amask_type;$/;" t class:gfx::gfx_pixfmt_amask_adaptor +amask_type src/gfx/gfx_pixfmt_wrapper.h /^ typedef AlphaMask amask_type;$/;" t class:gfx::gfx_pixfmt_wrapper +android_main android/jni/test_android.cpp /^void android_main(struct android_app* state)$/;" f +android_standard_include_paths tools/gyp/build/lib/gyp/generator/android.py /^android_standard_include_paths = set([$/;" v +android_standard_include_paths tools/gyp/pylib/gyp/generator/android.py /^android_standard_include_paths = set([$/;" v +angle android/freetype/include/freetype/fttrigon.h /^ FT_Cos( FT_Angle angle );$/;" v +angle android/freetype/include/freetype/fttrigon.h /^ FT_Sin( FT_Angle angle );$/;" v +angle android/freetype/include/freetype/fttrigon.h /^ FT_Tan( FT_Angle angle );$/;" v +angle include/freetype/fttrigon.h /^ FT_Cos( FT_Angle angle );$/;" v +angle include/freetype/fttrigon.h /^ FT_Sin( FT_Angle angle );$/;" v +angle include/freetype/fttrigon.h /^ FT_Tan( FT_Angle angle );$/;" v +angle_in android/freetype/src/base/ftstroke.c /^ FT_Angle angle_in;$/;" m struct:FT_StrokerRec_ file: +angle_in android/freetype/src/pshinter/pshalgo.h /^ FT_Angle angle_in;$/;" m struct:PSH_PointRec_ +angle_out android/freetype/src/base/ftstroke.c /^ FT_Angle angle_out;$/;" m struct:FT_StrokerRec_ file: +angle_out android/freetype/src/pshinter/pshalgo.h /^ FT_Angle angle_out;$/;" m struct:PSH_PointRec_ +angle_tolerance src/include/curve.h /^ scalar angle_tolerance(void) const { return FLT_TO_SCALAR(0.0f); }$/;" f class:picasso::curve3_inc +angle_tolerance src/include/curve.h /^ scalar angle_tolerance(void) const { return FLT_TO_SCALAR(0.0f); }$/;" f class:picasso::curve4_inc +angle_tolerance src/include/curve.h /^ scalar angle_tolerance(void) const { return m_angle_tolerance; }$/;" f class:picasso::curve3_div +angle_tolerance src/include/curve.h /^ scalar angle_tolerance(void) const { return m_angle_tolerance; }$/;" f class:picasso::curve4_div +angle_tolerance src/include/curve.h /^ void angle_tolerance(scalar a) { m_angle_tolerance = a; }$/;" f class:picasso::curve3_div +angle_tolerance src/include/curve.h /^ void angle_tolerance(scalar a) { m_angle_tolerance = a; }$/;" f class:picasso::curve4_div +angle_tolerance src/include/curve.h /^ void angle_tolerance(scalar) {}$/;" f class:picasso::curve3_inc +angle_tolerance src/include/curve.h /^ void angle_tolerance(scalar) {}$/;" f class:picasso::curve4_inc +angle_tolerance src/include/geometry.h /^ scalar angle_tolerance() const $/;" f class:picasso::curve3 +angle_tolerance src/include/geometry.h /^ scalar angle_tolerance() const $/;" f class:picasso::curve4 +angle_tolerance src/include/geometry.h /^ void angle_tolerance(scalar v) $/;" f class:picasso::curve3 +angle_tolerance src/include/geometry.h /^ void angle_tolerance(scalar v) $/;" f class:picasso::curve4 +anti test/gamma_func.c /^static ps_bool anti = False;$/;" v file: +antialias src/picasso_font.h /^ bool antialias(void) const { return m_antialias; }$/;" f class:picasso::font_engine +antialias src/picasso_objects.h /^ bool antialias;$/;" m struct:picasso::context_state +app android/jni/test_android.cpp /^ struct android_app* app;$/;" m struct:engine typeref:struct:engine::android_app file: +appendAttributeValue android/expat/lib/xmlparse.c /^appendAttributeValue(XML_Parser parser, const ENCODING *enc, XML_Bool isCdata,$/;" f file: +apply android/freetype/include/freetype/internal/pshints.h /^ T1_Hints_ApplyFunc apply;$/;" m struct:T1_Hints_FuncsRec_ +apply android/freetype/include/freetype/internal/pshints.h /^ T2_Hints_ApplyFunc apply;$/;" m struct:T2_Hints_FuncsRec_ +apply include/freetype/internal/pshints.h /^ T1_Hints_ApplyFunc apply;$/;" m struct:T1_Hints_FuncsRec_ +apply include/freetype/internal/pshints.h /^ T2_Hints_ApplyFunc apply;$/;" m struct:T2_Hints_FuncsRec_ +apply_blur src/gfx/gfx_painter.h /^inline void gfx_painter::apply_blur(scalar blur)$/;" f class:gfx::gfx_painter +apply_clear src/gfx/gfx_painter.h /^inline void gfx_painter::apply_clear(const rgba& c)$/;" f class:gfx::gfx_painter +apply_clip_device src/gfx/gfx_painter.h /^inline void gfx_painter::apply_clip_device(const rect_s& rc, scalar xoffset, scalar yoffset)$/;" f class:gfx::gfx_painter +apply_clip_path src/gfx/gfx_painter.h /^inline void gfx_painter::apply_clip_path(const vertex_source& v, int rule, const abstract_trans_affine* mtx)$/;" f class:gfx::gfx_painter +apply_fill src/gfx/gfx_painter.h /^inline void gfx_painter::apply_fill(abstract_raster_adapter* raster)$/;" f class:gfx::gfx_painter +apply_gamma src/gfx/gfx_rasterizer_scanline.h /^ unsigned int apply_gamma(unsigned int cover) const $/;" f class:gfx::gfx_rasterizer_scanline_aa +apply_masking src/gfx/gfx_painter.h /^inline void gfx_painter::apply_masking(abstract_mask_layer* m)$/;" f class:gfx::gfx_painter +apply_mono_text_fill src/gfx/gfx_painter.h /^inline void gfx_painter::apply_mono_text_fill(void * storage)$/;" f class:gfx::gfx_painter +apply_shadow src/gfx/gfx_painter.h /^inline void gfx_painter::apply_shadow(abstract_raster_adapter* rs, $/;" f class:gfx::gfx_painter +apply_stroke src/gfx/gfx_painter.h /^inline void gfx_painter::apply_stroke(abstract_raster_adapter* raster)$/;" f class:gfx::gfx_painter +apply_text_fill src/gfx/gfx_painter.h /^inline void gfx_painter::apply_text_fill(abstract_raster_adapter* raster, text_style render_type)$/;" f class:gfx::gfx_painter +approximation_method src/include/curve.h /^ curve_approximation_method approximation_method() const { return curve_div; }$/;" f class:picasso::curve3_div +approximation_method src/include/curve.h /^ curve_approximation_method approximation_method() const { return curve_div; }$/;" f class:picasso::curve4_div +approximation_method src/include/curve.h /^ curve_approximation_method approximation_method(void) const { return curve_inc; }$/;" f class:picasso::curve3_inc +approximation_method src/include/curve.h /^ curve_approximation_method approximation_method(void) const { return curve_inc; }$/;" f class:picasso::curve4_inc +approximation_method src/include/curve.h /^ void approximation_method(curve_approximation_method) {}$/;" f class:picasso::curve3_div +approximation_method src/include/curve.h /^ void approximation_method(curve_approximation_method) {}$/;" f class:picasso::curve3_inc +approximation_method src/include/curve.h /^ void approximation_method(curve_approximation_method) {}$/;" f class:picasso::curve4_div +approximation_method src/include/curve.h /^ void approximation_method(curve_approximation_method) {}$/;" f class:picasso::curve4_inc +approximation_method src/include/geometry.h /^ curve_approximation_method approximation_method(void) const $/;" f class:picasso::curve3 +approximation_method src/include/geometry.h /^ curve_approximation_method approximation_method(void) const $/;" f class:picasso::curve4 +approximation_method src/include/geometry.h /^ void approximation_method(curve_approximation_method v) $/;" f class:picasso::curve3 +approximation_method src/include/geometry.h /^ void approximation_method(curve_approximation_method v) $/;" f class:picasso::curve4 +approximation_scale src/include/convert.h /^ scalar approximation_scale(void) const $/;" f class:picasso::conv_curve +approximation_scale src/include/convert.h /^ void approximation_scale(scalar s) $/;" f class:picasso::conv_curve +approximation_scale src/include/curve.h /^ scalar approximation_scale() const { return m_approximation_scale; }$/;" f class:picasso::curve3_div +approximation_scale src/include/curve.h /^ scalar approximation_scale(void) const { return m_approximation_scale; }$/;" f class:picasso::curve4_div +approximation_scale src/include/curve.h /^ scalar approximation_scale(void) const { return m_scale; }$/;" f class:picasso::curve3_inc +approximation_scale src/include/curve.h /^ scalar approximation_scale(void) const { return m_scale; }$/;" f class:picasso::curve4_inc +approximation_scale src/include/curve.h /^ void approximation_scale(scalar s) { m_approximation_scale = s; }$/;" f class:picasso::curve3_div +approximation_scale src/include/curve.h /^ void approximation_scale(scalar s) { m_approximation_scale = s; }$/;" f class:picasso::curve4_div +approximation_scale src/include/curve.h /^ void approximation_scale(scalar s) { m_scale = s; }$/;" f class:picasso::curve3_inc +approximation_scale src/include/curve.h /^ void approximation_scale(scalar s) { m_scale = s; }$/;" f class:picasso::curve4_inc +approximation_scale src/include/geometry.h /^ scalar approximation_scale(void) const $/;" f class:picasso::arc +approximation_scale src/include/geometry.h /^ scalar approximation_scale(void) const $/;" f class:picasso::curve3 +approximation_scale src/include/geometry.h /^ scalar approximation_scale(void) const $/;" f class:picasso::curve4 +approximation_scale src/include/geometry.h /^ scalar approximation_scale(void) const $/;" f class:picasso::ellipse +approximation_scale src/include/geometry.h /^ scalar approximation_scale(void) const $/;" f class:picasso::rounded_rect +approximation_scale src/include/geometry.h /^ void approximation_scale(scalar s) $/;" f class:picasso::curve3 +approximation_scale src/include/geometry.h /^ void approximation_scale(scalar s) $/;" f class:picasso::curve4 +approximation_scale src/include/geometry.h /^ void approximation_scale(scalar s) $/;" f class:picasso::rounded_rect +approximation_scale src/include/geometry.h /^ void approximation_scale(scalar s)$/;" f class:picasso::arc +approximation_scale src/include/geometry.h /^ void approximation_scale(scalar scale)$/;" f class:picasso::ellipse +arc android/freetype/src/raster/ftraster.c /^ TPoint* arc; \/* current Bezier arc pointer *\/$/;" m struct:TWorker_ file: +arc src/include/geometry.h /^ arc() $/;" f class:picasso::arc +arc src/include/geometry.h /^ arc(scalar x, scalar y, scalar rx, scalar ry, scalar a1, scalar a2, bool ccw = true)$/;" f class:picasso::arc +arc src/include/geometry.h /^class arc : public vertex_source$/;" c namespace:picasso +arc_rel src/core/graphic_path.cpp /^void graphic_path::arc_rel(scalar rx, scalar ry, scalar angle,$/;" f class:picasso::graphic_path +arc_to src/core/graphic_path.cpp /^void graphic_path::arc_to(scalar rx, scalar ry, scalar angle,$/;" f class:picasso::graphic_path +arc_to_bezier src/include/geometry.h /^ void arc_to_bezier(scalar cx, scalar cy, scalar rx, scalar ry, scalar start_angle, scalar sweep_angle, scalar* curve)$/;" f class:picasso::bezier_arc +arcs android/freetype/src/raster/ftraster.c /^ TPoint arcs[3 * MaxBezier + 1]; \/* The Bezier stack *\/$/;" m struct:TWorker_ file: +area android/freetype/src/smooth/ftgrays.c /^ TArea area;$/;" m struct:TWorker_ file: +area android/freetype/src/smooth/ftgrays.c /^ TArea area;$/;" m struct:TCell_ file: +area src/gfx/gfx_rasterizer_scanline.h /^ int area;$/;" m struct:gfx::cell +arg1 android/freetype/include/freetype/internal/ftgloadr.h /^ FT_Int arg1;$/;" m struct:FT_SubGlyphRec_ +arg1 android/freetype/src/truetype/ttobjs.h /^ FT_Long arg1; \/* first argument *\/$/;" m struct:TT_SubglyphRec_ +arg1 include/freetype/internal/ftgloadr.h /^ FT_Int arg1;$/;" m struct:FT_SubGlyphRec_ +arg2 android/freetype/include/freetype/internal/ftgloadr.h /^ FT_Int arg2;$/;" m struct:FT_SubGlyphRec_ +arg2 android/freetype/src/truetype/ttobjs.h /^ FT_Long arg2; \/* second argument *\/$/;" m struct:TT_SubglyphRec_ +arg2 include/freetype/internal/ftgloadr.h /^ FT_Int arg2;$/;" m struct:FT_SubGlyphRec_ +args android/freetype/src/truetype/ttinterp.h /^ FT_Long args;$/;" m struct:TT_ExecContextRec_ +arm_fixmul src/include/fixedopt.h /^inline fixed_type arm_fixmul (fixed_type a, fixed_type b)$/;" f namespace:fxmath +arrange_orientations src/core/graphic_path.cpp /^unsigned int graphic_path::arrange_orientations(unsigned int start, unsigned int flag_orientation)$/;" f class:picasso::graphic_path +arrange_orientations_all_paths src/core/graphic_path.cpp /^void graphic_path::arrange_orientations_all_paths(unsigned int flag_orientation)$/;" f class:picasso::graphic_path +arrange_polygon_orientation src/core/graphic_path.cpp /^unsigned int graphic_path::arrange_polygon_orientation(unsigned int start, unsigned int flag_orientation)$/;" f class:picasso::graphic_path +array_max android/freetype/include/freetype/internal/psaux.h /^ FT_UInt array_max; \/* maximal number of elements for *\/$/;" m struct:T1_FieldRec_ +array_max android/freetype/src/cff/cffparse.c /^ FT_UInt array_max;$/;" m struct:CFF_Field_Handler_ file: +array_max include/freetype/internal/psaux.h /^ FT_UInt array_max; \/* maximal number of elements for *\/$/;" m struct:T1_FieldRec_ +ascender android/freetype/include/freetype/freetype.h /^ FT_Pos ascender; \/* ascender in 26.6 frac. pixels *\/$/;" m struct:FT_Size_Metrics_ +ascender android/freetype/include/freetype/freetype.h /^ FT_Short ascender;$/;" m struct:FT_FaceRec_ +ascender android/freetype/include/freetype/internal/tttypes.h /^ FT_Char ascender;$/;" m struct:TT_SBit_LineMetricsRec_ +ascender include/freetype/freetype.h /^ FT_Pos ascender; \/* ascender in 26.6 frac. pixels *\/$/;" m struct:FT_Size_Metrics_ +ascender include/freetype/freetype.h /^ FT_Short ascender;$/;" m struct:FT_FaceRec_ +ascender include/freetype/internal/tttypes.h /^ FT_Char ascender;$/;" m struct:TT_SBit_LineMetricsRec_ +ascent android/freetype/include/freetype/ftwinfnt.h /^ FT_UShort ascent;$/;" m struct:FT_WinFNT_HeaderRec_ +ascent include/freetype/ftwinfnt.h /^ FT_UShort ascent;$/;" m struct:FT_WinFNT_HeaderRec_ +ascent include/picasso.h /^ float ascent;$/;" m struct:_ps_font_info +ascent src/picasso_font.h /^ scalar ascent(void) const { return m_impl->ascent(); }$/;" f class:picasso::font_adapter +ascii_encoding android/expat/lib/xmltok.c /^static const struct normal_encoding ascii_encoding = {$/;" v typeref:struct:normal_encoding file: +ascii_encoding_ns android/expat/lib/xmltok.c /^static const struct normal_encoding ascii_encoding_ns = {$/;" v typeref:struct:normal_encoding file: +ascii_toUtf8 android/expat/lib/xmltok.c /^ascii_toUtf8(const ENCODING *enc,$/;" f file: +asin src/core/fixedopt.cpp /^fixed asin(fixed x)$/;" f namespace:fxmath +asinf src/include/platform.h /^#define asinf(/;" d +assertFlavor tools/gyp/build/lib/gyp/common_test.py /^ def assertFlavor(self, expected, argument, param):$/;" m class:TestGetFlavor +assertFlavor tools/gyp/pylib/gyp/common_test.py /^ def assertFlavor(self, expected, argument, param):$/;" m class:TestGetFlavor +at src/include/data_vector.h /^ T& at(unsigned i) { return m_array[i]; }$/;" f class:picasso::pod_array +at src/include/data_vector.h /^ T& at(unsigned int i) $/;" f class:picasso::pod_bvector +at src/include/data_vector.h /^ const T& at(unsigned i) const { return m_array[i]; }$/;" f class:picasso::pod_array +atan src/core/fixedopt.cpp /^fixed atan(fixed r)$/;" f namespace:fxmath +atan2 src/core/fixedopt.cpp /^fixed atan2(fixed y, fixed x)$/;" f namespace:fxmath +atan2f src/include/platform.h /^#define atan2f(/;" d +atom android/freetype/include/freetype/ftbdf.h /^ const char* atom;$/;" m union:BDF_PropertyRec_::__anon24 +atom include/freetype/ftbdf.h /^ const char* atom;$/;" m union:BDF_PropertyRec_::__anon53 +attId android/expat/lib/xmlparse.c /^ const struct attribute_id *attId;$/;" m struct:binding typeref:struct:binding::attribute_id file: +attInfo android/expat/lib/xmlparse.c /^#define attInfo /;" d file: +attach src/gfx/gfx_mask_layer.h /^ virtual void attach(byte* buf, unsigned int width, unsigned int height, int stride)$/;" f class:gfx::gfx_mask_layer +attach src/gfx/gfx_mask_layer.h /^ void attach(gfx_rendering_buffer& buffer) { m_buffer = &buffer; }$/;" f class:gfx::gfx_alpha_mask_u8 +attach src/gfx/gfx_painter.h /^inline void gfx_painter::attach(abstract_rendering_buffer* buffer)$/;" f class:gfx::gfx_painter +attach src/gfx/gfx_pixfmt_rgb.h /^ void attach(buffer_type& rb) { m_buffer = &rb; }$/;" f class:gfx::pixfmt_blender_rgb +attach src/gfx/gfx_pixfmt_rgb16.h /^ void attach(buffer_type& rb) { m_buffer = &rb; }$/;" f class:gfx::pixfmt_blender_rgb16 +attach src/gfx/gfx_pixfmt_rgba.h /^ void attach(buffer_type& rb) { m_buffer = &rb; }$/;" f class:gfx::pixfmt_blender_rgba +attach src/gfx/gfx_pixfmt_wrapper.h /^ void attach(gfx_rendering_buffer& rb) { m_fmt.attach(rb); }$/;" f class:gfx::gfx_pixfmt_wrapper +attach src/gfx/gfx_renderer.h /^ void attach(pixfmt_type& fmt)$/;" f class:gfx::gfx_renderer +attach src/gfx/gfx_scanline_renderer.h /^ void attach(ren_type& ren)$/;" f class:gfx::gfx_renderer_scanline_aa_solid +attach src/gfx/gfx_scanline_renderer.h /^ void attach(ren_type& ren)$/;" f class:gfx::gfx_renderer_scanline_bin_solid +attach src/gfx/gfx_span_image_filters.h /^ void attach(source_type& v) { m_src = &v; }$/;" f class:gfx::gfx_span_image_filter +attach src/picasso_mask.cpp /^void mask_layer::attach(byte* buf, unsigned int width, unsigned int height, int stride)$/;" f class:picasso::mask_layer +attach src/picasso_painter.cpp /^void painter::attach(rendering_buffer& buf)$/;" f class:picasso::painter +attach src/picasso_rendering_buffer.cpp /^void rendering_buffer::attach(byte* buf, unsigned int width, unsigned int height, int stride)$/;" f class:picasso::rendering_buffer +attach_alpha_mask src/gfx/gfx_mask_layer.h /^ void attach_alpha_mask(const amask_type& mask) { m_mask = &mask; }$/;" f class:gfx::gfx_pixfmt_amask_adaptor +attach_file android/freetype/include/freetype/internal/ftdriver.h /^ FT_Face_AttachFunc attach_file;$/;" m struct:FT_Driver_ClassRec_ +attach_file include/freetype/internal/ftdriver.h /^ FT_Face_AttachFunc attach_file;$/;" m struct:FT_Driver_ClassRec_ +attach_mask src/gfx/gfx_pixfmt_wrapper.h /^ void attach_mask(gfx_mask_layer* mask)$/;" f class:gfx::gfx_pixfmt_wrapper +attach_pixfmt src/gfx/gfx_mask_layer.h /^ void attach_pixfmt(pixfmt_type& pixfmt) { m_pixfmt = &pixfmt; }$/;" f class:gfx::gfx_pixfmt_amask_adaptor +attlist0 android/expat/lib/xmlrole.c /^ attlist0, attlist1, attlist2, attlist3, attlist4, attlist5, attlist6,$/;" v file: +attlist0 android/expat/lib/xmlrole.c /^attlist0(PROLOG_STATE *state,$/;" f file: +attlist1 android/expat/lib/xmlrole.c /^ attlist0, attlist1, attlist2, attlist3, attlist4, attlist5, attlist6,$/;" v file: +attlist1 android/expat/lib/xmlrole.c /^attlist1(PROLOG_STATE *state,$/;" f file: +attlist2 android/expat/lib/xmlrole.c /^ attlist0, attlist1, attlist2, attlist3, attlist4, attlist5, attlist6,$/;" v file: +attlist2 android/expat/lib/xmlrole.c /^attlist2(PROLOG_STATE *state,$/;" f file: +attlist3 android/expat/lib/xmlrole.c /^ attlist0, attlist1, attlist2, attlist3, attlist4, attlist5, attlist6,$/;" v file: +attlist3 android/expat/lib/xmlrole.c /^attlist3(PROLOG_STATE *state,$/;" f file: +attlist4 android/expat/lib/xmlrole.c /^ attlist0, attlist1, attlist2, attlist3, attlist4, attlist5, attlist6,$/;" v file: +attlist4 android/expat/lib/xmlrole.c /^attlist4(PROLOG_STATE *state,$/;" f file: +attlist5 android/expat/lib/xmlrole.c /^ attlist0, attlist1, attlist2, attlist3, attlist4, attlist5, attlist6,$/;" v file: +attlist5 android/expat/lib/xmlrole.c /^attlist5(PROLOG_STATE *state,$/;" f file: +attlist6 android/expat/lib/xmlrole.c /^ attlist0, attlist1, attlist2, attlist3, attlist4, attlist5, attlist6,$/;" v file: +attlist6 android/expat/lib/xmlrole.c /^attlist6(PROLOG_STATE *state,$/;" f file: +attlist7 android/expat/lib/xmlrole.c /^ attlist7, attlist8, attlist9,$/;" v file: +attlist7 android/expat/lib/xmlrole.c /^attlist7(PROLOG_STATE *state,$/;" f file: +attlist8 android/expat/lib/xmlrole.c /^ attlist7, attlist8, attlist9,$/;" v file: +attlist8 android/expat/lib/xmlrole.c /^attlist8(PROLOG_STATE *state,$/;" f file: +attlist9 android/expat/lib/xmlrole.c /^ attlist7, attlist8, attlist9,$/;" v file: +attlist9 android/expat/lib/xmlrole.c /^attlist9(PROLOG_STATE *state,$/;" f file: +attlistDeclHandler android/expat/lib/xmlparse.c /^#define attlistDeclHandler /;" d file: +attributeIds android/expat/lib/xmlparse.c /^ HASH_TABLE attributeIds;$/;" m struct:__anon17 file: +attributeValueTok android/expat/lib/xmltok_impl.c /^PREFIX(attributeValueTok)(const ENCODING *enc, const char *ptr,$/;" f file: +attribute_id android/expat/lib/xmlparse.c /^typedef struct attribute_id {$/;" s file: +atts android/expat/lib/xmlparse.c /^#define atts /;" d file: +attsSize android/expat/lib/xmlparse.c /^#define attsSize /;" d file: +author tools/gyp/setup.py /^ author='Chromium Authors',$/;" v +author_email tools/gyp/setup.py /^ author_email='chromium-dev@googlegroups.com',$/;" v +auto_close src/gfx/gfx_rasterizer_scanline.h /^ void auto_close(bool flag)$/;" f class:gfx::gfx_rasterizer_scanline_aa +auto_flip android/freetype/src/truetype/ttobjs.h /^ FT_Bool auto_flip;$/;" m struct:TT_GraphicsState_ +auto_hinter android/freetype/include/freetype/internal/ftobjs.h /^ FT_Module auto_hinter;$/;" m struct:FT_LibraryRec_ +auto_hinter include/freetype/internal/ftobjs.h /^ FT_Module auto_hinter;$/;" m struct:FT_LibraryRec_ +autofit include/freetype/internal/ftpic.h /^ void* autofit; $/;" m struct:FT_PIC_Container_ +autofit_module_class android/freetype/src/autofit/afmodule.c /^ const FT_Module_Class autofit_module_class =$/;" v +autofit_module_class android/freetype/src/autofit/afmodule.h /^ const FT_Module_Class autofit_module_class;$/;" v +autohint android/freetype/include/freetype/freetype.h /^ FT_Generic autohint;$/;" m struct:FT_FaceRec_ +autohint include/freetype/freetype.h /^ FT_Generic autohint;$/;" m struct:FT_FaceRec_ +available_sizes android/freetype/include/freetype/freetype.h /^ FT_Bitmap_Size* available_sizes;$/;" m struct:FT_FaceRec_ +available_sizes include/freetype/freetype.h /^ FT_Bitmap_Size* available_sizes;$/;" m struct:FT_FaceRec_ +avar_checked android/freetype/src/truetype/ttgxvar.h /^ FT_Bool avar_checked;$/;" m struct:GX_BlendRec_ +avar_segment android/freetype/src/truetype/ttgxvar.h /^ GX_AVarSegment avar_segment;$/;" m struct:GX_BlendRec_ +avg_width android/freetype/include/freetype/ftwinfnt.h /^ FT_UShort avg_width;$/;" m struct:FT_WinFNT_HeaderRec_ +avg_width include/freetype/ftwinfnt.h /^ FT_UShort avg_width;$/;" m struct:FT_WinFNT_HeaderRec_ +axis android/freetype/include/freetype/ftmm.h /^ FT_MM_Axis axis[T1_MAX_MM_AXIS];$/;" m struct:FT_Multi_Master_ +axis android/freetype/include/freetype/ftmm.h /^ FT_Var_Axis* axis;$/;" m struct:FT_MM_Var_ +axis android/freetype/src/autofit/afhints.h /^ AF_AxisHintsRec axis[AF_DIMENSION_MAX];$/;" m struct:AF_GlyphHintsRec_ +axis android/freetype/src/autofit/aflatin.h /^ AF_LatinAxisRec axis[AF_DIMENSION_MAX];$/;" m struct:AF_LatinMetricsRec_ +axis include/freetype/ftmm.h /^ FT_MM_Axis axis[T1_MAX_MM_AXIS];$/;" m struct:FT_Multi_Master_ +axis include/freetype/ftmm.h /^ FT_Var_Axis* axis;$/;" m struct:FT_MM_Var_ +axisCount android/freetype/src/truetype/ttgxvar.c /^ FT_UShort axisCount;$/;" m struct:GX_FVar_Head_ file: +axisCount android/freetype/src/truetype/ttgxvar.c /^ FT_UShort axisCount;$/;" m struct:GX_GVar_Head_ file: +axisSize android/freetype/src/truetype/ttgxvar.c /^ FT_UShort axisSize;$/;" m struct:GX_FVar_Head_ file: +axisTag android/freetype/src/truetype/ttgxvar.c /^ FT_ULong axisTag;$/;" m struct:fvar_axis_ file: +axis_names android/freetype/include/freetype/t1tables.h /^ FT_String* axis_names[T1_MAX_MM_AXIS];$/;" m struct:PS_BlendRec_ +axis_names include/freetype/t1tables.h /^ FT_String* axis_names[T1_MAX_MM_AXIS];$/;" m struct:PS_BlendRec_ +b android/freetype/src/psaux/afmparse.h /^ FT_Bool b;$/;" m union:AFM_ValueRec_::__anon31 +b include/picasso.h /^ float b;$/;" m struct:_ps_color +b src/gfx/gfx_blur.h /^ value_type b;$/;" m struct:gfx::stack_blur_calc_rgba +b src/gfx/gfx_gradient_adapter.cpp /^ gfx_dda_line_interpolator<14> b;$/;" m struct:gfx::color_interpolator file: +b src/include/color_type.h /^ scalar b;$/;" m struct:picasso::rgba +b src/include/color_type.h /^ value_type b;$/;" m struct:picasso::rgba8 +bTarget android/freetype/src/raster/ftraster.c /^ PByte bTarget; \/* target bitmap buffer *\/$/;" m struct:TWorker_ file: +bWidth android/freetype/src/raster/ftraster.c /^ UShort bWidth; \/* target bitmap width *\/$/;" m struct:TWorker_ file: +b_mask src/gfx/gfx_span_image_filters.h /^ b_mask = ((color_mask) & (~(r_mask | g_mask))),$/;" e enum:gfx::gfx_span_image_filter_rgb16::__anon174 +b_mask src/gfx/gfx_span_image_filters.h /^ b_mask = ((color_mask) & (~(r_mask | g_mask))),$/;" e enum:gfx::gfx_span_image_filter_rgb16_nn::__anon175 +backend tools/gyp/build/lib/gyp/generator/android.py /^import gyp.generator.make as make # Reuse global functions from make backend.$/;" i +backend tools/gyp/pylib/gyp/generator/android.py /^import gyp.generator.make as make # Reuse global functions from make backend.$/;" i +badPtr android/expat/lib/xmltok.c /^ const char **badPtr,$/;" v file: +band_shoot android/freetype/src/smooth/ftgrays.c /^ int band_shoot;$/;" m struct:TWorker_ file: +band_size android/freetype/src/smooth/ftgrays.c /^ int band_size;$/;" m struct:TRaster_ file: +band_size android/freetype/src/smooth/ftgrays.c /^ int band_size;$/;" m struct:TWorker_ file: +band_stack android/freetype/src/raster/ftraster.c /^ TBand band_stack[16]; \/* band stack used for sub-banding *\/$/;" m struct:TWorker_ file: +band_top android/freetype/src/raster/ftraster.c /^ Int band_top; \/* band stack top *\/$/;" m struct:TWorker_ file: +base android/expat/lib/xmlparse.c /^ const XML_Char *base;$/;" m struct:__anon11 file: +base android/freetype/include/freetype/ftsystem.h /^ unsigned char* base;$/;" m struct:FT_StreamRec_ +base android/freetype/include/freetype/internal/ftgloadr.h /^ FT_GlyphLoadRec base;$/;" m struct:FT_GlyphLoaderRec_ +base android/freetype/include/freetype/internal/ftvalid.h /^ const FT_Byte* base; \/* address of table in memory *\/$/;" m struct:FT_ValidatorRec_ +base android/freetype/include/freetype/internal/psaux.h /^ FT_Byte* base;$/;" m struct:PS_ParserRec_ +base android/freetype/include/freetype/internal/psaux.h /^ FT_Byte* base;$/;" m struct:T1_Decoder_ZoneRec_ +base android/freetype/include/freetype/internal/psaux.h /^ FT_Outline* base;$/;" m struct:T1_BuilderRec_ +base android/freetype/include/freetype/internal/tttypes.h /^ TT_GlyphZoneRec base;$/;" m struct:TT_LoaderRec_ +base android/freetype/src/cff/cffgload.h /^ FT_Byte* base;$/;" m struct:CFF_Decoder_Zone_ +base android/freetype/src/cff/cffgload.h /^ FT_Outline* base;$/;" m struct:CFF_Builder_ +base android/freetype/src/psaux/afmparse.c /^ FT_Byte* base;$/;" m struct:AFM_StreamRec_ file: +base android/freetype/src/truetype/ttobjs.h /^ FT_Byte* base;$/;" m struct:TT_CodeRange_ +base include/freetype/ftsystem.h /^ unsigned char* base;$/;" m struct:FT_StreamRec_ +base include/freetype/internal/ftgloadr.h /^ FT_GlyphLoadRec base;$/;" m struct:FT_GlyphLoaderRec_ +base include/freetype/internal/ftpic.h /^ void* base;$/;" m struct:FT_PIC_Container_ +base include/freetype/internal/ftvalid.h /^ const FT_Byte* base; \/* address of table in memory *\/$/;" m struct:FT_ValidatorRec_ +base include/freetype/internal/psaux.h /^ FT_Byte* base;$/;" m struct:PS_ParserRec_ +base include/freetype/internal/psaux.h /^ FT_Byte* base;$/;" m struct:T1_Decoder_ZoneRec_ +base include/freetype/internal/psaux.h /^ FT_Outline* base;$/;" m struct:T1_BuilderRec_ +base include/freetype/internal/tttypes.h /^ TT_GlyphZoneRec base;$/;" m struct:TT_LoaderRec_ +base_mask src/gfx/gfx_pixfmt_rgb.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::blend_op_adaptor_rgb::__anon92 +base_mask src/gfx/gfx_pixfmt_rgb.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_color_burn::__anon84 +base_mask src/gfx/gfx_pixfmt_rgb.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_color_dodge::__anon83 +base_mask src/gfx/gfx_pixfmt_rgb.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_contrast::__anon89 +base_mask src/gfx/gfx_pixfmt_rgb.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_darken::__anon81 +base_mask src/gfx/gfx_pixfmt_rgb.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_difference::__anon87 +base_mask src/gfx/gfx_pixfmt_rgb.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_dst_atop::__anon74 +base_mask src/gfx/gfx_pixfmt_rgb.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_dst_in::__anon70 +base_mask src/gfx/gfx_pixfmt_rgb.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_dst_out::__anon72 +base_mask src/gfx/gfx_pixfmt_rgb.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_dst_over::__anon68 +base_mask src/gfx/gfx_pixfmt_rgb.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_exclusion::__anon88 +base_mask src/gfx/gfx_pixfmt_rgb.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_hard_light::__anon85 +base_mask src/gfx/gfx_pixfmt_rgb.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_invert::__anon90 +base_mask src/gfx/gfx_pixfmt_rgb.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_invert_rgb::__anon91 +base_mask src/gfx/gfx_pixfmt_rgb.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_lighten::__anon82 +base_mask src/gfx/gfx_pixfmt_rgb.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_minus::__anon77 +base_mask src/gfx/gfx_pixfmt_rgb.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_multiply::__anon78 +base_mask src/gfx/gfx_pixfmt_rgb.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_overlay::__anon80 +base_mask src/gfx/gfx_pixfmt_rgb.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_plus::__anon76 +base_mask src/gfx/gfx_pixfmt_rgb.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_screen::__anon79 +base_mask src/gfx/gfx_pixfmt_rgb.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_soft_light::__anon86 +base_mask src/gfx/gfx_pixfmt_rgb.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_src_atop::__anon73 +base_mask src/gfx/gfx_pixfmt_rgb.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_src_in::__anon69 +base_mask src/gfx/gfx_pixfmt_rgb.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_src_out::__anon71 +base_mask src/gfx/gfx_pixfmt_rgb.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_src_over::__anon67 +base_mask src/gfx/gfx_pixfmt_rgb.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_xor::__anon75 +base_mask src/gfx/gfx_pixfmt_rgb.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::pixfmt_blender_rgb::__anon93 +base_mask src/gfx/gfx_pixfmt_rgb16.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::blender_rgb555::__anon119 +base_mask src/gfx/gfx_pixfmt_rgb16.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::blender_rgb565::__anon120 +base_mask src/gfx/gfx_pixfmt_rgb16.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_16_color_burn::__anon111 +base_mask src/gfx/gfx_pixfmt_rgb16.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_16_color_dodge::__anon110 +base_mask src/gfx/gfx_pixfmt_rgb16.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_16_contrast::__anon116 +base_mask src/gfx/gfx_pixfmt_rgb16.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_16_darken::__anon108 +base_mask src/gfx/gfx_pixfmt_rgb16.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_16_difference::__anon114 +base_mask src/gfx/gfx_pixfmt_rgb16.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_16_dst_atop::__anon101 +base_mask src/gfx/gfx_pixfmt_rgb16.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_16_dst_in::__anon97 +base_mask src/gfx/gfx_pixfmt_rgb16.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_16_dst_out::__anon99 +base_mask src/gfx/gfx_pixfmt_rgb16.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_16_dst_over::__anon95 +base_mask src/gfx/gfx_pixfmt_rgb16.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_16_exclusion::__anon115 +base_mask src/gfx/gfx_pixfmt_rgb16.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_16_hard_light::__anon112 +base_mask src/gfx/gfx_pixfmt_rgb16.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_16_invert::__anon117 +base_mask src/gfx/gfx_pixfmt_rgb16.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_16_invert_rgb::__anon118 +base_mask src/gfx/gfx_pixfmt_rgb16.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_16_lighten::__anon109 +base_mask src/gfx/gfx_pixfmt_rgb16.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_16_minus::__anon104 +base_mask src/gfx/gfx_pixfmt_rgb16.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_16_multiply::__anon105 +base_mask src/gfx/gfx_pixfmt_rgb16.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_16_overlay::__anon107 +base_mask src/gfx/gfx_pixfmt_rgb16.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_16_plus::__anon103 +base_mask src/gfx/gfx_pixfmt_rgb16.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_16_screen::__anon106 +base_mask src/gfx/gfx_pixfmt_rgb16.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_16_soft_light::__anon113 +base_mask src/gfx/gfx_pixfmt_rgb16.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_16_src_atop::__anon100 +base_mask src/gfx/gfx_pixfmt_rgb16.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_16_src_in::__anon96 +base_mask src/gfx/gfx_pixfmt_rgb16.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_16_src_out::__anon98 +base_mask src/gfx/gfx_pixfmt_rgb16.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_16_src_over::__anon94 +base_mask src/gfx/gfx_pixfmt_rgb16.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgb_16_xor::__anon102 +base_mask src/gfx/gfx_pixfmt_rgb16.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::pixfmt_blender_rgb16::__anon121 +base_mask src/gfx/gfx_pixfmt_rgba.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::blend_op_adaptor_rgba::__anon147 +base_mask src/gfx/gfx_pixfmt_rgba.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgba_color_burn::__anon139 +base_mask src/gfx/gfx_pixfmt_rgba.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgba_color_dodge::__anon138 +base_mask src/gfx/gfx_pixfmt_rgba.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgba_contrast::__anon144 +base_mask src/gfx/gfx_pixfmt_rgba.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgba_darken::__anon136 +base_mask src/gfx/gfx_pixfmt_rgba.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgba_difference::__anon142 +base_mask src/gfx/gfx_pixfmt_rgba.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgba_dst_atop::__anon129 +base_mask src/gfx/gfx_pixfmt_rgba.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgba_dst_in::__anon125 +base_mask src/gfx/gfx_pixfmt_rgba.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgba_dst_out::__anon127 +base_mask src/gfx/gfx_pixfmt_rgba.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgba_dst_over::__anon123 +base_mask src/gfx/gfx_pixfmt_rgba.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgba_exclusion::__anon143 +base_mask src/gfx/gfx_pixfmt_rgba.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgba_hard_light::__anon140 +base_mask src/gfx/gfx_pixfmt_rgba.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgba_invert::__anon145 +base_mask src/gfx/gfx_pixfmt_rgba.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgba_invert_rgb::__anon146 +base_mask src/gfx/gfx_pixfmt_rgba.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgba_lighten::__anon137 +base_mask src/gfx/gfx_pixfmt_rgba.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgba_minus::__anon132 +base_mask src/gfx/gfx_pixfmt_rgba.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgba_multiply::__anon133 +base_mask src/gfx/gfx_pixfmt_rgba.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgba_overlay::__anon135 +base_mask src/gfx/gfx_pixfmt_rgba.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgba_plus::__anon131 +base_mask src/gfx/gfx_pixfmt_rgba.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgba_screen::__anon134 +base_mask src/gfx/gfx_pixfmt_rgba.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgba_soft_light::__anon141 +base_mask src/gfx/gfx_pixfmt_rgba.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgba_src_atop::__anon128 +base_mask src/gfx/gfx_pixfmt_rgba.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgba_src_in::__anon124 +base_mask src/gfx/gfx_pixfmt_rgba.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgba_src_out::__anon126 +base_mask src/gfx/gfx_pixfmt_rgba.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgba_src_over::__anon122 +base_mask src/gfx/gfx_pixfmt_rgba.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::composite_op_rgba_xor::__anon130 +base_mask src/gfx/gfx_pixfmt_rgba.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::pixfmt_blender_rgba::__anon148 +base_mask src/gfx/gfx_pixfmt_wrapper.h /^ base_mask = pixfmt_type::base_mask,$/;" e enum:gfx::gfx_pixfmt_wrapper::__anon149 +base_mask src/gfx/gfx_span_image_filters.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::gfx_span_image_filter_rgb16::__anon174 +base_mask src/gfx/gfx_span_image_filters.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::gfx_span_image_filter_rgb16_nn::__anon175 +base_mask src/gfx/gfx_span_image_filters.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::gfx_span_image_filter_rgb::__anon172 +base_mask src/gfx/gfx_span_image_filters.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::gfx_span_image_filter_rgb_nn::__anon173 +base_mask src/gfx/gfx_span_image_filters.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::gfx_span_image_filter_rgba::__anon168 +base_mask src/gfx/gfx_span_image_filters.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::gfx_span_image_filter_rgba_nb::__anon169 +base_mask src/gfx/gfx_span_image_filters.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::gfx_span_image_filter_rgba_nn::__anon170 +base_mask src/gfx/gfx_span_image_filters.h /^ base_mask = color_type::base_mask,$/;" e enum:gfx::gfx_span_image_filter_rgba_nn_nb::__anon171 +base_mask src/include/color_type.h /^ base_mask = base_scale - 1$/;" e enum:picasso::rgba8::__anon185 +base_non_configuration_keys tools/gyp/build/lib/gyp/input.py /^base_non_configuration_keys = [$/;" v +base_non_configuration_keys tools/gyp/pylib/gyp/input.py /^base_non_configuration_keys = [$/;" v +base_path_sections tools/gyp/build/lib/gyp/input.py /^base_path_sections = [$/;" v +base_path_sections tools/gyp/pylib/gyp/input.py /^base_path_sections = [$/;" v +base_scale src/gfx/gfx_pixfmt_rgb.h /^ base_scale = color_type::base_scale,$/;" e enum:gfx::pixfmt_blender_rgb::__anon93 +base_scale src/gfx/gfx_pixfmt_rgb16.h /^ base_scale = color_type::base_scale,$/;" e enum:gfx::pixfmt_blender_rgb16::__anon121 +base_scale src/gfx/gfx_pixfmt_rgba.h /^ base_scale = color_type::base_scale,$/;" e enum:gfx::pixfmt_blender_rgba::__anon148 +base_scale src/gfx/gfx_pixfmt_wrapper.h /^ base_scale = pixfmt_type::base_scale,$/;" e enum:gfx::gfx_pixfmt_wrapper::__anon149 +base_scale src/include/color_type.h /^ base_scale = 1 << base_shift,$/;" e enum:picasso::rgba8::__anon185 +base_shift src/gfx/gfx_pixfmt_rgb.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::blend_op_adaptor_rgb::__anon92 +base_shift src/gfx/gfx_pixfmt_rgb.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_color_burn::__anon84 +base_shift src/gfx/gfx_pixfmt_rgb.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_color_dodge::__anon83 +base_shift src/gfx/gfx_pixfmt_rgb.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_contrast::__anon89 +base_shift src/gfx/gfx_pixfmt_rgb.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_darken::__anon81 +base_shift src/gfx/gfx_pixfmt_rgb.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_difference::__anon87 +base_shift src/gfx/gfx_pixfmt_rgb.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_dst_atop::__anon74 +base_shift src/gfx/gfx_pixfmt_rgb.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_dst_in::__anon70 +base_shift src/gfx/gfx_pixfmt_rgb.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_dst_out::__anon72 +base_shift src/gfx/gfx_pixfmt_rgb.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_dst_over::__anon68 +base_shift src/gfx/gfx_pixfmt_rgb.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_exclusion::__anon88 +base_shift src/gfx/gfx_pixfmt_rgb.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_hard_light::__anon85 +base_shift src/gfx/gfx_pixfmt_rgb.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_invert::__anon90 +base_shift src/gfx/gfx_pixfmt_rgb.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_invert_rgb::__anon91 +base_shift src/gfx/gfx_pixfmt_rgb.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_lighten::__anon82 +base_shift src/gfx/gfx_pixfmt_rgb.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_minus::__anon77 +base_shift src/gfx/gfx_pixfmt_rgb.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_multiply::__anon78 +base_shift src/gfx/gfx_pixfmt_rgb.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_overlay::__anon80 +base_shift src/gfx/gfx_pixfmt_rgb.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_plus::__anon76 +base_shift src/gfx/gfx_pixfmt_rgb.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_screen::__anon79 +base_shift src/gfx/gfx_pixfmt_rgb.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_soft_light::__anon86 +base_shift src/gfx/gfx_pixfmt_rgb.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_src_atop::__anon73 +base_shift src/gfx/gfx_pixfmt_rgb.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_src_in::__anon69 +base_shift src/gfx/gfx_pixfmt_rgb.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_src_out::__anon71 +base_shift src/gfx/gfx_pixfmt_rgb.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_src_over::__anon67 +base_shift src/gfx/gfx_pixfmt_rgb.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_xor::__anon75 +base_shift src/gfx/gfx_pixfmt_rgb.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::pixfmt_blender_rgb::__anon93 +base_shift src/gfx/gfx_pixfmt_rgb16.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::blender_rgb555::__anon119 +base_shift src/gfx/gfx_pixfmt_rgb16.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::blender_rgb565::__anon120 +base_shift src/gfx/gfx_pixfmt_rgb16.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_16_color_burn::__anon111 +base_shift src/gfx/gfx_pixfmt_rgb16.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_16_color_dodge::__anon110 +base_shift src/gfx/gfx_pixfmt_rgb16.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_16_contrast::__anon116 +base_shift src/gfx/gfx_pixfmt_rgb16.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_16_darken::__anon108 +base_shift src/gfx/gfx_pixfmt_rgb16.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_16_difference::__anon114 +base_shift src/gfx/gfx_pixfmt_rgb16.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_16_dst_atop::__anon101 +base_shift src/gfx/gfx_pixfmt_rgb16.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_16_dst_in::__anon97 +base_shift src/gfx/gfx_pixfmt_rgb16.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_16_dst_out::__anon99 +base_shift src/gfx/gfx_pixfmt_rgb16.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_16_dst_over::__anon95 +base_shift src/gfx/gfx_pixfmt_rgb16.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_16_exclusion::__anon115 +base_shift src/gfx/gfx_pixfmt_rgb16.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_16_hard_light::__anon112 +base_shift src/gfx/gfx_pixfmt_rgb16.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_16_invert::__anon117 +base_shift src/gfx/gfx_pixfmt_rgb16.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_16_invert_rgb::__anon118 +base_shift src/gfx/gfx_pixfmt_rgb16.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_16_lighten::__anon109 +base_shift src/gfx/gfx_pixfmt_rgb16.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_16_minus::__anon104 +base_shift src/gfx/gfx_pixfmt_rgb16.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_16_multiply::__anon105 +base_shift src/gfx/gfx_pixfmt_rgb16.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_16_overlay::__anon107 +base_shift src/gfx/gfx_pixfmt_rgb16.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_16_plus::__anon103 +base_shift src/gfx/gfx_pixfmt_rgb16.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_16_screen::__anon106 +base_shift src/gfx/gfx_pixfmt_rgb16.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_16_soft_light::__anon113 +base_shift src/gfx/gfx_pixfmt_rgb16.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_16_src_atop::__anon100 +base_shift src/gfx/gfx_pixfmt_rgb16.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_16_src_in::__anon96 +base_shift src/gfx/gfx_pixfmt_rgb16.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_16_src_out::__anon98 +base_shift src/gfx/gfx_pixfmt_rgb16.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_16_src_over::__anon94 +base_shift src/gfx/gfx_pixfmt_rgb16.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgb_16_xor::__anon102 +base_shift src/gfx/gfx_pixfmt_rgb16.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::pixfmt_blender_rgb16::__anon121 +base_shift src/gfx/gfx_pixfmt_rgba.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::blend_op_adaptor_rgba::__anon147 +base_shift src/gfx/gfx_pixfmt_rgba.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgba_color_burn::__anon139 +base_shift src/gfx/gfx_pixfmt_rgba.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgba_color_dodge::__anon138 +base_shift src/gfx/gfx_pixfmt_rgba.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgba_contrast::__anon144 +base_shift src/gfx/gfx_pixfmt_rgba.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgba_darken::__anon136 +base_shift src/gfx/gfx_pixfmt_rgba.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgba_difference::__anon142 +base_shift src/gfx/gfx_pixfmt_rgba.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgba_dst_atop::__anon129 +base_shift src/gfx/gfx_pixfmt_rgba.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgba_dst_in::__anon125 +base_shift src/gfx/gfx_pixfmt_rgba.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgba_dst_out::__anon127 +base_shift src/gfx/gfx_pixfmt_rgba.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgba_dst_over::__anon123 +base_shift src/gfx/gfx_pixfmt_rgba.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgba_exclusion::__anon143 +base_shift src/gfx/gfx_pixfmt_rgba.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgba_hard_light::__anon140 +base_shift src/gfx/gfx_pixfmt_rgba.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgba_invert::__anon145 +base_shift src/gfx/gfx_pixfmt_rgba.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgba_invert_rgb::__anon146 +base_shift src/gfx/gfx_pixfmt_rgba.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgba_lighten::__anon137 +base_shift src/gfx/gfx_pixfmt_rgba.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgba_minus::__anon132 +base_shift src/gfx/gfx_pixfmt_rgba.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgba_multiply::__anon133 +base_shift src/gfx/gfx_pixfmt_rgba.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgba_overlay::__anon135 +base_shift src/gfx/gfx_pixfmt_rgba.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgba_plus::__anon131 +base_shift src/gfx/gfx_pixfmt_rgba.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgba_screen::__anon134 +base_shift src/gfx/gfx_pixfmt_rgba.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgba_soft_light::__anon141 +base_shift src/gfx/gfx_pixfmt_rgba.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgba_src_atop::__anon128 +base_shift src/gfx/gfx_pixfmt_rgba.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgba_src_in::__anon124 +base_shift src/gfx/gfx_pixfmt_rgba.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgba_src_out::__anon126 +base_shift src/gfx/gfx_pixfmt_rgba.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgba_src_over::__anon122 +base_shift src/gfx/gfx_pixfmt_rgba.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::composite_op_rgba_xor::__anon130 +base_shift src/gfx/gfx_pixfmt_rgba.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::pixfmt_blender_rgba::__anon148 +base_shift src/gfx/gfx_pixfmt_wrapper.h /^ base_shift = pixfmt_type::base_shift,$/;" e enum:gfx::gfx_pixfmt_wrapper::__anon149 +base_shift src/gfx/gfx_span_image_filters.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::gfx_span_image_filter_rgb16::__anon174 +base_shift src/gfx/gfx_span_image_filters.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::gfx_span_image_filter_rgb16_nn::__anon175 +base_shift src/gfx/gfx_span_image_filters.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::gfx_span_image_filter_rgb::__anon172 +base_shift src/gfx/gfx_span_image_filters.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::gfx_span_image_filter_rgb_nn::__anon173 +base_shift src/gfx/gfx_span_image_filters.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::gfx_span_image_filter_rgba::__anon168 +base_shift src/gfx/gfx_span_image_filters.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::gfx_span_image_filter_rgba_nb::__anon169 +base_shift src/gfx/gfx_span_image_filters.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::gfx_span_image_filter_rgba_nn::__anon170 +base_shift src/gfx/gfx_span_image_filters.h /^ base_shift = color_type::base_shift,$/;" e enum:gfx::gfx_span_image_filter_rgba_nn_nb::__anon171 +base_shift src/include/color_type.h /^ base_shift = 8,$/;" e enum:picasso::rgba8::__anon185 +base_span_block src/gfx/gfx_span_generator.h /^ base_span_block = base_span_mask - 1,$/;" e enum:gfx::gfx_span_allocator::__anon166 +base_span_mask src/gfx/gfx_span_generator.h /^ base_span_mask = 1 << base_span_shift,$/;" e enum:gfx::gfx_span_allocator::__anon166 +base_span_shift src/gfx/gfx_span_generator.h /^ base_span_shift = 8,$/;" e enum:gfx::gfx_span_allocator::__anon166 +base_type src/gfx/gfx_span_image_filters.h /^ typedef gfx_span_image_filter base_type;$/;" t class:gfx::gfx_span_image_filter_rgb +base_type src/gfx/gfx_span_image_filters.h /^ typedef gfx_span_image_filter base_type;$/;" t class:gfx::gfx_span_image_filter_rgb16 +base_type src/gfx/gfx_span_image_filters.h /^ typedef gfx_span_image_filter base_type;$/;" t class:gfx::gfx_span_image_filter_rgb16_nn +base_type src/gfx/gfx_span_image_filters.h /^ typedef gfx_span_image_filter base_type;$/;" t class:gfx::gfx_span_image_filter_rgb_nn +base_type src/gfx/gfx_span_image_filters.h /^ typedef gfx_span_image_filter base_type;$/;" t class:gfx::gfx_span_image_filter_rgba +base_type src/gfx/gfx_span_image_filters.h /^ typedef gfx_span_image_filter base_type;$/;" t class:gfx::gfx_span_image_filter_rgba_nb +base_type src/gfx/gfx_span_image_filters.h /^ typedef gfx_span_image_filter base_type;$/;" t class:gfx::gfx_span_image_filter_rgba_nn +base_type src/gfx/gfx_span_image_filters.h /^ typedef gfx_span_image_filter base_type;$/;" t class:gfx::gfx_span_image_filter_rgba_nn_nb +base_type src/include/vertex_dist.h /^ typedef pod_bvector base_type;$/;" t class:picasso::vertex_sequence +bbox android/freetype/include/freetype/freetype.h /^ FT_BBox bbox;$/;" m struct:FT_FaceRec_ +bbox android/freetype/include/freetype/internal/psaux.h /^ FT_BBox bbox; \/* bounding box *\/$/;" m struct:T1_BuilderRec_ +bbox android/freetype/include/freetype/internal/tttypes.h /^ FT_BBox bbox;$/;" m struct:TT_LoaderRec_ +bbox android/freetype/src/base/ftbbox.c /^ FT_BBox bbox;$/;" m struct:TBBox_Rec_ file: +bbox android/freetype/src/cff/cffgload.h /^ FT_BBox bbox; \/* bounding box *\/$/;" m struct:CFF_Builder_ +bbox android/freetype/src/truetype/ttobjs.h /^ FT_BBox bbox;$/;" m struct:TT_SubglyphRec_ +bbox include/freetype/freetype.h /^ FT_BBox bbox;$/;" m struct:FT_FaceRec_ +bbox include/freetype/internal/psaux.h /^ FT_BBox bbox; \/* bounding box *\/$/;" m struct:T1_BuilderRec_ +bbox include/freetype/internal/tttypes.h /^ FT_BBox bbox;$/;" m struct:TT_LoaderRec_ +bbox src/picasso_gpc.cpp /^} bbox;$/;" t namespace:picasso typeref:struct:picasso::bbox_shape file: +bbox_shape src/picasso_gpc.cpp /^typedef struct bbox_shape { \/* Contour axis-aligned bounding box *\/$/;" s namespace:picasso file: +bboxes android/freetype/include/freetype/t1tables.h /^ FT_BBox* bboxes [T1_MAX_MM_DESIGNS + 1];$/;" m struct:PS_BlendRec_ +bboxes include/freetype/t1tables.h /^ FT_BBox* bboxes [T1_MAX_MM_DESIGNS + 1];$/;" m struct:PS_BlendRec_ +bdf android/freetype/include/freetype/internal/tttypes.h /^ TT_BDFRec bdf;$/;" m struct:TT_FaceRec_ +bdf include/freetype/internal/tttypes.h /^ TT_BDFRec bdf;$/;" m struct:TT_FaceRec_ +bearing android/freetype/include/freetype/internal/tttypes.h /^ FT_Short bearing;$/;" m struct:TT_LongMetricsRec_ +bearing include/freetype/internal/tttypes.h /^ FT_Short bearing;$/;" m struct:TT_LongMetricsRec_ +bearingX android/freetype/include/freetype/internal/tttypes.h /^ FT_Char bearingX;$/;" m struct:TT_SBit_Small_Metrics_ +bearingX include/freetype/internal/tttypes.h /^ FT_Char bearingX;$/;" m struct:TT_SBit_Small_Metrics_ +bearingY android/freetype/include/freetype/internal/tttypes.h /^ FT_Char bearingY;$/;" m struct:TT_SBit_Small_Metrics_ +bearingY include/freetype/internal/tttypes.h /^ FT_Char bearingY;$/;" m struct:TT_SBit_Small_Metrics_ +bearing_x android/freetype/include/freetype/ftincrem.h /^ FT_Long bearing_x;$/;" m struct:FT_Incremental_MetricsRec_ +bearing_x include/freetype/ftincrem.h /^ FT_Long bearing_x;$/;" m struct:FT_Incremental_MetricsRec_ +bearing_y android/freetype/include/freetype/ftincrem.h /^ FT_Long bearing_y;$/;" m struct:FT_Incremental_MetricsRec_ +bearing_y include/freetype/ftincrem.h /^ FT_Long bearing_y;$/;" m struct:FT_Incremental_MetricsRec_ +begin src/gfx/gfx_scanline.h /^ const_iterator begin(void) const { return &m_spans[1]; }$/;" f class:gfx::gfx_scanline_bin +begin src/gfx/gfx_scanline.h /^ const_iterator begin(void) const { return &m_spans[1]; }$/;" f class:gfx::gfx_scanline_p8 +begin src/gfx/gfx_scanline.h /^ const_iterator begin(void) const { return &m_spans[1]; }$/;" f class:gfx::gfx_scanline_u8 +begin src/gfx/gfx_scanline.h /^ iterator begin(void) { return &m_spans[1]; }$/;" f class:gfx::gfx_scanline_u8 +begin src/gfx/gfx_scanline_storage.h /^ const_iterator begin() const { return const_iterator(*this); }$/;" f class:gfx::gfx_scanline_storage_aa::embedded_scanline +begin src/gfx/gfx_scanline_storage.h /^ const_iterator begin() const { return const_iterator(*this); }$/;" f class:gfx::gfx_scanline_storage_bin::embedded_scanline +begin src/gfx/gfx_scanline_storage.h /^ const_iterator begin(void) const { return const_iterator(*this); }$/;" f class:gfx::gfx_serialized_scanlines_adaptor_aa::embedded_scanline +begin src/gfx/gfx_scanline_storage.h /^ const_iterator begin(void) const { return const_iterator(*this); }$/;" f class:gfx::gfx_serialized_scanlines_adaptor_bin::embedded_scanline +begin src/gfx/gfx_span_generator.h /^ void begin(scalar x, scalar y, unsigned int len)$/;" f class:gfx::gfx_span_interpolator_linear +begin_shadow src/gfx/gfx_painter.h /^inline bool gfx_painter::begin_shadow(const rect_s& rc)$/;" f class:gfx::gfx_painter +best_delta android/freetype/src/autofit/afwarp.h /^ FT_Pos best_delta;$/;" m struct:AF_WarperRec_ +best_distort android/freetype/src/autofit/afwarp.h /^ AF_WarpScore best_distort;$/;" m struct:AF_WarperRec_ +best_scale android/freetype/src/autofit/afwarp.h /^ FT_Fixed best_scale;$/;" m struct:AF_WarperRec_ +best_score android/freetype/src/autofit/afwarp.h /^ AF_WarpScore best_score;$/;" m struct:AF_WarperRec_ +betweenDecl android/expat/lib/xmlparse.c /^ XML_Bool betweenDecl; \/* WFC: PE Between Declarations *\/$/;" m struct:open_internal_entity file: +bevel_join src/include/graphic_base.h /^ bevel_join = 3,$/;" e enum:picasso::__anon205 +bevelsGradient demos/clock.c /^static ps_gradient* bevelsGradient;$/;" v file: +bez_stack android/freetype/src/smooth/ftgrays.c /^ FT_Vector bez_stack[32 * 3 + 1];$/;" m struct:TWorker_ file: +bezier src/core/curve.cpp /^void curve3_div::bezier(scalar x1, scalar y1, scalar x2, scalar y2, scalar x3, scalar y3)$/;" f class:picasso::curve3_div +bezier src/core/curve.cpp /^void curve4_div::bezier(scalar x1, scalar y1, scalar x2, scalar y2, scalar x3, scalar y3, scalar x4, scalar y4)$/;" f class:picasso::curve4_div +bezier_arc src/include/geometry.h /^ bezier_arc() $/;" f class:picasso::bezier_arc +bezier_arc src/include/geometry.h /^ bezier_arc(scalar x, scalar y, scalar rx, scalar ry, scalar start_angle, scalar sweep_angle) $/;" f class:picasso::bezier_arc +bezier_arc src/include/geometry.h /^class bezier_arc : public vertex_source$/;" c namespace:picasso +bezier_arc_svg src/include/geometry.h /^ bezier_arc_svg() $/;" f class:picasso::bezier_arc_svg +bezier_arc_svg src/include/geometry.h /^ bezier_arc_svg(scalar x1, scalar y1, scalar rx, scalar ry, $/;" f class:picasso::bezier_arc_svg +bezier_arc_svg src/include/geometry.h /^class bezier_arc_svg : public vertex_source$/;" c namespace:picasso +big2_byteToAscii android/expat/lib/xmltok.c /^big2_byteToAscii(const ENCODING *enc, const char *p)$/;" f file: +big2_byteType android/expat/lib/xmltok.c /^big2_byteType(const ENCODING *enc, const char *p)$/;" f file: +big2_charMatches android/expat/lib/xmltok.c /^big2_charMatches(const ENCODING *enc, const char *p, int c)$/;" f file: +big2_encoding android/expat/lib/xmltok.c /^static const struct normal_encoding big2_encoding = {$/;" v typeref:struct:normal_encoding file: +big2_encoding_ns android/expat/lib/xmltok.c /^static const struct normal_encoding big2_encoding_ns = {$/;" v typeref:struct:normal_encoding file: +big2_isNameMin android/expat/lib/xmltok.c /^big2_isNameMin(const ENCODING *enc, const char *p)$/;" f file: +big2_isNmstrtMin android/expat/lib/xmltok.c /^big2_isNmstrtMin(const ENCODING *enc, const char *p)$/;" f file: +binary_data android/freetype/include/freetype/internal/t1types.h /^ FT_Byte* binary_data; \/* used if hex data has been converted *\/$/;" m struct:CID_FaceRec_ +binary_data include/freetype/internal/t1types.h /^ FT_Byte* binary_data; \/* used if hex data has been converted *\/$/;" m struct:CID_FaceRec_ +binding android/expat/lib/xmlparse.c /^ BINDING *binding;$/;" m struct:prefix file: +binding android/expat/lib/xmlparse.c /^typedef struct binding {$/;" s file: +bindings android/expat/lib/xmlparse.c /^ BINDING *bindings;$/;" m struct:tag file: +bit src/include/graphic_helper.h /^ unsigned int bit(void) const$/;" f class:picasso::bitset_iterator +bit_depth android/freetype/include/freetype/internal/tttypes.h /^ FT_Byte bit_depth;$/;" m struct:TT_SBit_StrikeRec_ +bit_depth android/freetype/src/sfnt/ttsbit0.c /^ FT_Byte bit_depth;$/;" m struct:TT_SBitDecoderRec_ file: +bit_depth include/freetype/internal/tttypes.h /^ FT_Byte bit_depth;$/;" m struct:TT_SBit_StrikeRec_ +bit_set android/freetype/include/freetype/ftimage.h /^ FT_Raster_BitSet_Func bit_set; \/* doesn't work! *\/$/;" m struct:FT_Raster_Params_ +bit_set include/freetype/ftimage.h /^ FT_Raster_BitSet_Func bit_set; \/* doesn't work! *\/$/;" m struct:FT_Raster_Params_ +bit_test android/freetype/include/freetype/ftimage.h /^ FT_Raster_BitTest_Func bit_test; \/* doesn't work! *\/$/;" m struct:FT_Raster_Params_ +bit_test include/freetype/ftimage.h /^ FT_Raster_BitTest_Func bit_test; \/* doesn't work! *\/$/;" m struct:FT_Raster_Params_ +bitmap android/freetype/include/freetype/freetype.h /^ FT_Bitmap bitmap;$/;" m struct:FT_GlyphSlotRec_ +bitmap android/freetype/include/freetype/ftglyph.h /^ FT_Bitmap bitmap;$/;" m struct:FT_BitmapGlyphRec_ +bitmap android/freetype/src/sfnt/ttsbit0.c /^ FT_Bitmap* bitmap;$/;" m struct:TT_SBitDecoderRec_ file: +bitmap include/freetype/freetype.h /^ FT_Bitmap bitmap;$/;" m struct:FT_GlyphSlotRec_ +bitmap include/freetype/ftglyph.h /^ FT_Bitmap bitmap;$/;" m struct:FT_BitmapGlyphRec_ +bitmap_allocated android/freetype/src/sfnt/ttsbit0.c /^ FT_Bool bitmap_allocated;$/;" m struct:TT_SBitDecoderRec_ file: +bitmap_left android/freetype/include/freetype/freetype.h /^ FT_Int bitmap_left;$/;" m struct:FT_GlyphSlotRec_ +bitmap_left include/freetype/freetype.h /^ FT_Int bitmap_left;$/;" m struct:FT_GlyphSlotRec_ +bitmap_top android/freetype/include/freetype/freetype.h /^ FT_Int bitmap_top;$/;" m struct:FT_GlyphSlotRec_ +bitmap_top include/freetype/freetype.h /^ FT_Int bitmap_top;$/;" m struct:FT_GlyphSlotRec_ +bits android/jni/pat565.h /^ unsigned char bits[4224];$/;" m struct:_pat565 +bits android/jni/selt2565.h /^ unsigned char bits[153600];$/;" m struct:_selt2565 +bits_offset android/freetype/include/freetype/ftwinfnt.h /^ FT_ULong bits_offset;$/;" m struct:FT_WinFNT_HeaderRec_ +bits_offset include/freetype/ftwinfnt.h /^ FT_ULong bits_offset;$/;" m struct:FT_WinFNT_HeaderRec_ +bits_pointer android/freetype/include/freetype/ftwinfnt.h /^ FT_ULong bits_pointer;$/;" m struct:FT_WinFNT_HeaderRec_ +bits_pointer include/freetype/ftwinfnt.h /^ FT_ULong bits_pointer;$/;" m struct:FT_WinFNT_HeaderRec_ +bitset_iterator src/include/graphic_helper.h /^ bitset_iterator(const byte* bits, unsigned int offset = 0)$/;" f class:picasso::bitset_iterator +bitset_iterator src/include/graphic_helper.h /^class bitset_iterator$/;" c namespace:picasso +black_spans android/freetype/include/freetype/ftimage.h /^ FT_SpanFunc black_spans;$/;" m struct:FT_Raster_Params_ +black_spans include/freetype/ftimage.h /^ FT_SpanFunc black_spans; \/* doesn't work! *\/$/;" m struct:FT_Raster_Params_ +blend android/freetype/include/freetype/internal/psaux.h /^ PS_Blend blend; \/* for multiple master support *\/$/;" m struct:T1_DecoderRec_ +blend android/freetype/include/freetype/internal/t1types.h /^ PS_Blend blend;$/;" m struct:T1_FaceRec_ +blend android/freetype/include/freetype/internal/tttypes.h /^ GX_Blend blend;$/;" m struct:TT_FaceRec_ +blend include/freetype/internal/psaux.h /^ PS_Blend blend; \/* for multiple master support *\/$/;" m struct:T1_DecoderRec_ +blend include/freetype/internal/t1types.h /^ PS_Blend blend;$/;" m struct:T1_FaceRec_ +blend include/freetype/internal/tttypes.h /^ GX_Blend blend;$/;" m struct:TT_FaceRec_ +blend_bitflags android/freetype/include/freetype/t1tables.h /^ FT_ULong blend_bitflags;$/;" m struct:PS_BlendRec_ +blend_bitflags include/freetype/t1tables.h /^ FT_ULong blend_bitflags;$/;" m struct:PS_BlendRec_ +blend_color_hspan src/gfx/gfx_mask_layer.h /^ void blend_color_hspan(int x, int y, unsigned int len, const color_type* colors,$/;" f class:gfx::gfx_pixfmt_amask_adaptor +blend_color_hspan src/gfx/gfx_pixfmt_rgb.h /^ void blend_color_hspan(int x, int y, unsigned int len,$/;" f class:gfx::pixfmt_blender_rgb +blend_color_hspan src/gfx/gfx_pixfmt_rgb16.h /^ void blend_color_hspan(int x, int y, unsigned int len,$/;" f class:gfx::pixfmt_blender_rgb16 +blend_color_hspan src/gfx/gfx_pixfmt_rgba.h /^ void blend_color_hspan(int x, int y, unsigned int len,$/;" f class:gfx::pixfmt_blender_rgba +blend_color_hspan src/gfx/gfx_pixfmt_wrapper.h /^ void blend_color_hspan(int x, int y, unsigned int len, const color_type* colors,$/;" f class:gfx::gfx_pixfmt_wrapper +blend_color_hspan src/gfx/gfx_renderer.h /^ void blend_color_hspan(int x, int y, int len, const color_type* colors,$/;" f class:gfx::gfx_renderer +blend_color_vspan src/gfx/gfx_mask_layer.h /^ void blend_color_vspan(int x, int y, unsigned int len, const color_type* colors,$/;" f class:gfx::gfx_pixfmt_amask_adaptor +blend_color_vspan src/gfx/gfx_pixfmt_rgb.h /^ void blend_color_vspan(int x, int y, unsigned int len,$/;" f class:gfx::pixfmt_blender_rgb +blend_color_vspan src/gfx/gfx_pixfmt_rgb16.h /^ void blend_color_vspan(int x, int y, unsigned int len,$/;" f class:gfx::pixfmt_blender_rgb16 +blend_color_vspan src/gfx/gfx_pixfmt_rgba.h /^ void blend_color_vspan(int x, int y, unsigned int len,$/;" f class:gfx::pixfmt_blender_rgba +blend_color_vspan src/gfx/gfx_pixfmt_wrapper.h /^ void blend_color_vspan(int x, int y, unsigned int len, const color_type* colors,$/;" f class:gfx::gfx_pixfmt_wrapper +blend_from src/gfx/gfx_pixfmt_rgb.h /^ void blend_from(const SrcPixelFormatRenderer& from, int xdst, int ydst,$/;" f class:gfx::pixfmt_blender_rgb +blend_from src/gfx/gfx_pixfmt_rgb16.h /^ void blend_from(const SrcPixelFormatRenderer& from, int xdst, int ydst,$/;" f class:gfx::pixfmt_blender_rgb16 +blend_from src/gfx/gfx_pixfmt_rgba.h /^ void blend_from(const SrcPixelFormatRenderer& from, int xdst, int ydst,$/;" f class:gfx::pixfmt_blender_rgba +blend_from src/gfx/gfx_pixfmt_wrapper.h /^ void blend_from(const SrcPixelFormatRenderer& from, $/;" f class:gfx::gfx_pixfmt_wrapper +blend_from src/gfx/gfx_renderer.h /^ void blend_from(const SrcPixelFormatRenderer& from, $/;" f class:gfx::gfx_renderer +blend_from_color src/gfx/gfx_pixfmt_rgb.h /^ void blend_from_color(const SrcPixelFormatRenderer& from, const color_type& color,$/;" f class:gfx::pixfmt_blender_rgb +blend_from_color src/gfx/gfx_pixfmt_rgb16.h /^ void blend_from_color(const SrcPixelFormatRenderer& from, const color_type& color,$/;" f class:gfx::pixfmt_blender_rgb16 +blend_from_color src/gfx/gfx_pixfmt_rgba.h /^ void blend_from_color(const SrcPixelFormatRenderer& from, const color_type& color,$/;" f class:gfx::pixfmt_blender_rgba +blend_from_lut src/gfx/gfx_pixfmt_rgb.h /^ void blend_from_lut(const SrcPixelFormatRenderer& from, const color_type* color_lut,$/;" f class:gfx::pixfmt_blender_rgb +blend_from_lut src/gfx/gfx_pixfmt_rgb16.h /^ void blend_from_lut(const SrcPixelFormatRenderer& from, const color_type* color_lut,$/;" f class:gfx::pixfmt_blender_rgb16 +blend_from_lut src/gfx/gfx_pixfmt_rgba.h /^ void blend_from_lut(const SrcPixelFormatRenderer& from, const color_type* color_lut,$/;" f class:gfx::pixfmt_blender_rgba +blend_hline src/gfx/gfx_mask_layer.h /^ void blend_hline(int x, int y, unsigned int len,$/;" f class:gfx::gfx_pixfmt_amask_adaptor +blend_hline src/gfx/gfx_pixfmt_rgb.h /^ void blend_hline(int x, int y, unsigned int len, const color_type& c, uint8_t cover)$/;" f class:gfx::pixfmt_blender_rgb +blend_hline src/gfx/gfx_pixfmt_rgb16.h /^ void blend_hline(int x, int y, unsigned int len, const color_type& c, uint8_t cover)$/;" f class:gfx::pixfmt_blender_rgb16 +blend_hline src/gfx/gfx_pixfmt_rgba.h /^ void blend_hline(int x, int y, unsigned int len, const color_type& c, uint8_t cover)$/;" f class:gfx::pixfmt_blender_rgba +blend_hline src/gfx/gfx_pixfmt_wrapper.h /^ void blend_hline(int x, int y, unsigned int len, const color_type& c, cover_type cover)$/;" f class:gfx::gfx_pixfmt_wrapper +blend_hline src/gfx/gfx_renderer.h /^ void blend_hline(int x1, int y, int x2, const color_type& c, cover_type cover)$/;" f class:gfx::gfx_renderer +blend_op src/gfx/gfx_pixfmt_rgb.h /^ unsigned int blend_op(void) const { return m_blend_op; }$/;" f class:gfx::pixfmt_blender_rgb +blend_op src/gfx/gfx_pixfmt_rgb.h /^ void blend_op(unsigned int op) { m_blend_op = op; }$/;" f class:gfx::pixfmt_blender_rgb +blend_op src/gfx/gfx_pixfmt_rgb16.h /^ unsigned int blend_op(void) const { return m_blend_op; }$/;" f class:gfx::pixfmt_blender_rgb16 +blend_op src/gfx/gfx_pixfmt_rgb16.h /^ void blend_op(unsigned int op) { m_blend_op = op; }$/;" f class:gfx::pixfmt_blender_rgb16 +blend_op src/gfx/gfx_pixfmt_rgba.h /^ unsigned int blend_op(void) const { return m_blend_op; }$/;" f class:gfx::pixfmt_blender_rgba +blend_op src/gfx/gfx_pixfmt_rgba.h /^ void blend_op(unsigned int op) { m_blend_op = op; }$/;" f class:gfx::pixfmt_blender_rgba +blend_op src/gfx/gfx_pixfmt_wrapper.h /^ unsigned int blend_op(void) const { return m_fmt.blend_op(); }$/;" f class:gfx::gfx_pixfmt_wrapper +blend_op src/gfx/gfx_pixfmt_wrapper.h /^ void blend_op(unsigned int op) { m_fmt.blend_op(op); }$/;" f class:gfx::gfx_pixfmt_wrapper +blend_op_adaptor_rgb src/gfx/gfx_pixfmt_rgb.h /^class blend_op_adaptor_rgb$/;" c namespace:gfx +blend_op_adaptor_rgba src/gfx/gfx_pixfmt_rgba.h /^class blend_op_adaptor_rgba$/;" c namespace:gfx +blend_op_table_rgb src/gfx/gfx_pixfmt_rgb.h /^struct blend_op_table_rgb$/;" s namespace:gfx +blend_op_table_rgb_16 src/gfx/gfx_pixfmt_rgb16.h /^struct blend_op_table_rgb_16$/;" s namespace:gfx +blend_op_table_rgba src/gfx/gfx_pixfmt_rgba.h /^struct blend_op_table_rgba$/;" s namespace:gfx +blend_pix src/gfx/gfx_pixfmt_rgb.h /^ static void blend_pix(unsigned int op, value_type* p, $/;" f class:gfx::blend_op_adaptor_rgb +blend_pix src/gfx/gfx_pixfmt_rgb.h /^ static void blend_pix(value_type* p, unsigned int r, unsigned int g,$/;" f struct:gfx::composite_op_rgb_soft_light +blend_pix src/gfx/gfx_pixfmt_rgb.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_color_burn +blend_pix src/gfx/gfx_pixfmt_rgb.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_color_dodge +blend_pix src/gfx/gfx_pixfmt_rgb.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_contrast +blend_pix src/gfx/gfx_pixfmt_rgb.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_darken +blend_pix src/gfx/gfx_pixfmt_rgb.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_difference +blend_pix src/gfx/gfx_pixfmt_rgb.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_dst_atop +blend_pix src/gfx/gfx_pixfmt_rgb.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_dst_over +blend_pix src/gfx/gfx_pixfmt_rgb.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_exclusion +blend_pix src/gfx/gfx_pixfmt_rgb.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_hard_light +blend_pix src/gfx/gfx_pixfmt_rgb.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_invert +blend_pix src/gfx/gfx_pixfmt_rgb.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_invert_rgb +blend_pix src/gfx/gfx_pixfmt_rgb.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_lighten +blend_pix src/gfx/gfx_pixfmt_rgb.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_minus +blend_pix src/gfx/gfx_pixfmt_rgb.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_multiply +blend_pix src/gfx/gfx_pixfmt_rgb.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_overlay +blend_pix src/gfx/gfx_pixfmt_rgb.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_plus +blend_pix src/gfx/gfx_pixfmt_rgb.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_screen +blend_pix src/gfx/gfx_pixfmt_rgb.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_src +blend_pix src/gfx/gfx_pixfmt_rgb.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_src_atop +blend_pix src/gfx/gfx_pixfmt_rgb.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_src_in +blend_pix src/gfx/gfx_pixfmt_rgb.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_src_out +blend_pix src/gfx/gfx_pixfmt_rgb.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_src_over +blend_pix src/gfx/gfx_pixfmt_rgb.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_xor +blend_pix src/gfx/gfx_pixfmt_rgb.h /^ static void blend_pix(value_type* p, unsigned int, unsigned int, unsigned int, $/;" f struct:gfx::composite_op_rgb_dst_in +blend_pix src/gfx/gfx_pixfmt_rgb.h /^ static void blend_pix(value_type* p, unsigned int, unsigned int, unsigned int, $/;" f struct:gfx::composite_op_rgb_dst_out +blend_pix src/gfx/gfx_pixfmt_rgb.h /^ static void blend_pix(value_type* p, unsigned int, unsigned int,$/;" f struct:gfx::composite_op_rgb_clear +blend_pix src/gfx/gfx_pixfmt_rgb.h /^ static void blend_pix(value_type*, unsigned int, unsigned int,$/;" f struct:gfx::composite_op_rgb_dst +blend_pix src/gfx/gfx_pixfmt_rgb16.h /^ static void blend_pix(pixel_type* p, unsigned int cr, unsigned int cg,$/;" f class:gfx::blender_rgb555 +blend_pix src/gfx/gfx_pixfmt_rgb16.h /^ static void blend_pix(pixel_type* p, unsigned int cr, unsigned int cg,$/;" f class:gfx::blender_rgb565 +blend_pix src/gfx/gfx_pixfmt_rgb16.h /^ static void blend_pix(pixel_type* p, unsigned int r, unsigned int g,$/;" f struct:gfx::composite_op_rgb_16_soft_light +blend_pix src/gfx/gfx_pixfmt_rgb16.h /^ static void blend_pix(pixel_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_16_color_burn +blend_pix src/gfx/gfx_pixfmt_rgb16.h /^ static void blend_pix(pixel_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_16_color_dodge +blend_pix src/gfx/gfx_pixfmt_rgb16.h /^ static void blend_pix(pixel_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_16_contrast +blend_pix src/gfx/gfx_pixfmt_rgb16.h /^ static void blend_pix(pixel_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_16_darken +blend_pix src/gfx/gfx_pixfmt_rgb16.h /^ static void blend_pix(pixel_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_16_difference +blend_pix src/gfx/gfx_pixfmt_rgb16.h /^ static void blend_pix(pixel_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_16_dst_atop +blend_pix src/gfx/gfx_pixfmt_rgb16.h /^ static void blend_pix(pixel_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_16_dst_over +blend_pix src/gfx/gfx_pixfmt_rgb16.h /^ static void blend_pix(pixel_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_16_exclusion +blend_pix src/gfx/gfx_pixfmt_rgb16.h /^ static void blend_pix(pixel_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_16_hard_light +blend_pix src/gfx/gfx_pixfmt_rgb16.h /^ static void blend_pix(pixel_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_16_invert +blend_pix src/gfx/gfx_pixfmt_rgb16.h /^ static void blend_pix(pixel_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_16_invert_rgb +blend_pix src/gfx/gfx_pixfmt_rgb16.h /^ static void blend_pix(pixel_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_16_lighten +blend_pix src/gfx/gfx_pixfmt_rgb16.h /^ static void blend_pix(pixel_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_16_minus +blend_pix src/gfx/gfx_pixfmt_rgb16.h /^ static void blend_pix(pixel_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_16_multiply +blend_pix src/gfx/gfx_pixfmt_rgb16.h /^ static void blend_pix(pixel_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_16_overlay +blend_pix src/gfx/gfx_pixfmt_rgb16.h /^ static void blend_pix(pixel_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_16_plus +blend_pix src/gfx/gfx_pixfmt_rgb16.h /^ static void blend_pix(pixel_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_16_screen +blend_pix src/gfx/gfx_pixfmt_rgb16.h /^ static void blend_pix(pixel_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_16_src +blend_pix src/gfx/gfx_pixfmt_rgb16.h /^ static void blend_pix(pixel_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_16_src_atop +blend_pix src/gfx/gfx_pixfmt_rgb16.h /^ static void blend_pix(pixel_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_16_src_in +blend_pix src/gfx/gfx_pixfmt_rgb16.h /^ static void blend_pix(pixel_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_16_src_out +blend_pix src/gfx/gfx_pixfmt_rgb16.h /^ static void blend_pix(pixel_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_16_src_over +blend_pix src/gfx/gfx_pixfmt_rgb16.h /^ static void blend_pix(pixel_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgb_16_xor +blend_pix src/gfx/gfx_pixfmt_rgb16.h /^ static void blend_pix(pixel_type* p, unsigned int, unsigned int, unsigned int, $/;" f struct:gfx::composite_op_rgb_16_dst_in +blend_pix src/gfx/gfx_pixfmt_rgb16.h /^ static void blend_pix(pixel_type* p, unsigned int, unsigned int, unsigned int,$/;" f struct:gfx::composite_op_rgb_16_dst_out +blend_pix src/gfx/gfx_pixfmt_rgb16.h /^ static void blend_pix(pixel_type* p, unsigned int, unsigned int,$/;" f struct:gfx::composite_op_rgb_16_clear +blend_pix src/gfx/gfx_pixfmt_rgb16.h /^ static void blend_pix(pixel_type*, unsigned int, unsigned int,$/;" f struct:gfx::composite_op_rgb_16_dst +blend_pix src/gfx/gfx_pixfmt_rgb16.h /^ static void blend_pix(unsigned int op, pixel_type* p, $/;" f class:gfx::blender_rgb555 +blend_pix src/gfx/gfx_pixfmt_rgb16.h /^ static void blend_pix(unsigned int op, pixel_type* p, $/;" f class:gfx::blender_rgb565 +blend_pix src/gfx/gfx_pixfmt_rgba.h /^ static void blend_pix(unsigned int op, value_type* p, $/;" f class:gfx::blend_op_adaptor_rgba +blend_pix src/gfx/gfx_pixfmt_rgba.h /^ static void blend_pix(value_type* p, unsigned int r, unsigned int g,$/;" f struct:gfx::composite_op_rgba_soft_light +blend_pix src/gfx/gfx_pixfmt_rgba.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgba_color_burn +blend_pix src/gfx/gfx_pixfmt_rgba.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgba_color_dodge +blend_pix src/gfx/gfx_pixfmt_rgba.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgba_contrast +blend_pix src/gfx/gfx_pixfmt_rgba.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgba_darken +blend_pix src/gfx/gfx_pixfmt_rgba.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgba_difference +blend_pix src/gfx/gfx_pixfmt_rgba.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgba_dst_atop +blend_pix src/gfx/gfx_pixfmt_rgba.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgba_dst_over +blend_pix src/gfx/gfx_pixfmt_rgba.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgba_exclusion +blend_pix src/gfx/gfx_pixfmt_rgba.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgba_hard_light +blend_pix src/gfx/gfx_pixfmt_rgba.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgba_invert +blend_pix src/gfx/gfx_pixfmt_rgba.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgba_invert_rgb +blend_pix src/gfx/gfx_pixfmt_rgba.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgba_lighten +blend_pix src/gfx/gfx_pixfmt_rgba.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgba_minus +blend_pix src/gfx/gfx_pixfmt_rgba.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgba_multiply +blend_pix src/gfx/gfx_pixfmt_rgba.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgba_overlay +blend_pix src/gfx/gfx_pixfmt_rgba.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgba_plus +blend_pix src/gfx/gfx_pixfmt_rgba.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgba_screen +blend_pix src/gfx/gfx_pixfmt_rgba.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgba_src +blend_pix src/gfx/gfx_pixfmt_rgba.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgba_src_atop +blend_pix src/gfx/gfx_pixfmt_rgba.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgba_src_in +blend_pix src/gfx/gfx_pixfmt_rgba.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgba_src_out +blend_pix src/gfx/gfx_pixfmt_rgba.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgba_src_over +blend_pix src/gfx/gfx_pixfmt_rgba.h /^ static void blend_pix(value_type* p, unsigned int sr, unsigned int sg,$/;" f struct:gfx::composite_op_rgba_xor +blend_pix src/gfx/gfx_pixfmt_rgba.h /^ static void blend_pix(value_type* p, unsigned int, unsigned int, unsigned int, $/;" f struct:gfx::composite_op_rgba_dst_in +blend_pix src/gfx/gfx_pixfmt_rgba.h /^ static void blend_pix(value_type* p, unsigned int, unsigned int, unsigned int, $/;" f struct:gfx::composite_op_rgba_dst_out +blend_pix src/gfx/gfx_pixfmt_rgba.h /^ static void blend_pix(value_type* p, unsigned int, unsigned int,$/;" f struct:gfx::composite_op_rgba_clear +blend_pix src/gfx/gfx_pixfmt_rgba.h /^ static void blend_pix(value_type*, unsigned int, unsigned int,$/;" f struct:gfx::composite_op_rgba_dst +blend_pixel src/gfx/gfx_mask_layer.h /^ void blend_pixel(int x, int y, const color_type& c, cover_type cover)$/;" f class:gfx::gfx_pixfmt_amask_adaptor +blend_pixel src/gfx/gfx_pixfmt_rgb.h /^ void blend_pixel(int x, int y, const color_type& c, uint8_t cover)$/;" f class:gfx::pixfmt_blender_rgb +blend_pixel src/gfx/gfx_pixfmt_rgb16.h /^ void blend_pixel(int x, int y, const color_type& c, uint8_t cover)$/;" f class:gfx::pixfmt_blender_rgb16 +blend_pixel src/gfx/gfx_pixfmt_rgba.h /^ void blend_pixel(int x, int y, const color_type& c, uint8_t cover)$/;" f class:gfx::pixfmt_blender_rgba +blend_pixel src/gfx/gfx_pixfmt_wrapper.h /^ void blend_pixel(int x, int y, const color_type& c, cover_type cover)$/;" f class:gfx::gfx_pixfmt_wrapper +blend_point_from src/gfx/gfx_pixfmt_rgb.h /^ void blend_point_from(const SrcPixelFormatRenderer& from, int xdst, int ydst,$/;" f class:gfx::pixfmt_blender_rgb +blend_point_from src/gfx/gfx_pixfmt_rgb16.h /^ void blend_point_from(const SrcPixelFormatRenderer& from, int xdst, int ydst,$/;" f class:gfx::pixfmt_blender_rgb16 +blend_point_from src/gfx/gfx_pixfmt_rgba.h /^ void blend_point_from(const SrcPixelFormatRenderer& from, int xdst, int ydst,$/;" f class:gfx::pixfmt_blender_rgba +blend_point_from src/gfx/gfx_pixfmt_wrapper.h /^ void blend_point_from(const SrcPixelFormatRenderer& from, $/;" f class:gfx::gfx_pixfmt_wrapper +blend_points android/freetype/include/freetype/t1tables.h /^ FT_Fixed* blend_points;$/;" m struct:PS_DesignMap_ +blend_points include/freetype/t1tables.h /^ FT_Fixed* blend_points;$/;" m struct:PS_DesignMap_ +blend_solid_hspan src/gfx/gfx_mask_layer.h /^ void blend_solid_hspan(int x, int y, unsigned int len, $/;" f class:gfx::gfx_pixfmt_amask_adaptor +blend_solid_hspan src/gfx/gfx_pixfmt_rgb.h /^ void blend_solid_hspan(int x, int y, unsigned int len, const color_type& c, const uint8_t* covers)$/;" f class:gfx::pixfmt_blender_rgb +blend_solid_hspan src/gfx/gfx_pixfmt_rgb16.h /^ void blend_solid_hspan(int x, int y, unsigned int len, const color_type& c, const uint8_t* covers)$/;" f class:gfx::pixfmt_blender_rgb16 +blend_solid_hspan src/gfx/gfx_pixfmt_rgba.h /^ void blend_solid_hspan(int x, int y, unsigned int len, const color_type& c, const uint8_t* covers)$/;" f class:gfx::pixfmt_blender_rgba +blend_solid_hspan src/gfx/gfx_pixfmt_wrapper.h /^ void blend_solid_hspan(int x, int y, unsigned int len, $/;" f class:gfx::gfx_pixfmt_wrapper +blend_solid_hspan src/gfx/gfx_renderer.h /^ void blend_solid_hspan(int x, int y, int len, const color_type& c, const cover_type* covers)$/;" f class:gfx::gfx_renderer +blend_solid_vspan src/gfx/gfx_mask_layer.h /^ void blend_solid_vspan(int x, int y, unsigned int len, $/;" f class:gfx::gfx_pixfmt_amask_adaptor +blend_solid_vspan src/gfx/gfx_pixfmt_rgb.h /^ void blend_solid_vspan(int x, int y, unsigned int len, const color_type& c, const uint8_t* covers)$/;" f class:gfx::pixfmt_blender_rgb +blend_solid_vspan src/gfx/gfx_pixfmt_rgb16.h /^ void blend_solid_vspan(int x, int y, unsigned int len, const color_type& c, const uint8_t* covers)$/;" f class:gfx::pixfmt_blender_rgb16 +blend_solid_vspan src/gfx/gfx_pixfmt_rgba.h /^ void blend_solid_vspan(int x, int y, unsigned int len, const color_type& c, const uint8_t* covers)$/;" f class:gfx::pixfmt_blender_rgba +blend_solid_vspan src/gfx/gfx_pixfmt_wrapper.h /^ void blend_solid_vspan(int x, int y, unsigned int len, $/;" f class:gfx::gfx_pixfmt_wrapper +blend_vline src/gfx/gfx_mask_layer.h /^ void blend_vline(int x, int y, unsigned int len, $/;" f class:gfx::gfx_pixfmt_amask_adaptor +blend_vline src/gfx/gfx_pixfmt_rgb.h /^ void blend_vline(int x, int y, unsigned int len, const color_type& c, uint8_t cover)$/;" f class:gfx::pixfmt_blender_rgb +blend_vline src/gfx/gfx_pixfmt_rgb16.h /^ void blend_vline(int x, int y, unsigned int len, const color_type& c, uint8_t cover)$/;" f class:gfx::pixfmt_blender_rgb16 +blend_vline src/gfx/gfx_pixfmt_rgba.h /^ void blend_vline(int x, int y, unsigned int len, const color_type& c, uint8_t cover)$/;" f class:gfx::pixfmt_blender_rgba +blend_vline src/gfx/gfx_pixfmt_wrapper.h /^ void blend_vline(int x, int y, unsigned int len, const color_type& c, cover_type cover)$/;" f class:gfx::gfx_pixfmt_wrapper +blender_abgr32 src/gfx/gfx_pixfmt_rgba.h /^typedef blend_op_adaptor_rgba blender_abgr32; \/\/ blender_abgr32$/;" t namespace:gfx +blender_argb32 src/gfx/gfx_pixfmt_rgba.h /^typedef blend_op_adaptor_rgba blender_argb32; \/\/ blender_argb32$/;" t namespace:gfx +blender_bgr24 src/gfx/gfx_pixfmt_rgb.h /^typedef blend_op_adaptor_rgb blender_bgr24; \/\/ blender_bgr24$/;" t namespace:gfx +blender_bgra32 src/gfx/gfx_pixfmt_rgba.h /^typedef blend_op_adaptor_rgba blender_bgra32; \/\/ blender_bgra32$/;" t namespace:gfx +blender_rgb24 src/gfx/gfx_pixfmt_rgb.h /^typedef blend_op_adaptor_rgb blender_rgb24; \/\/ blender_rgb24$/;" t namespace:gfx +blender_rgb555 src/gfx/gfx_pixfmt_rgb16.h /^class blender_rgb555$/;" c namespace:gfx +blender_rgb565 src/gfx/gfx_pixfmt_rgb16.h /^class blender_rgb565$/;" c namespace:gfx +blender_rgba32 src/gfx/gfx_pixfmt_rgba.h /^typedef blend_op_adaptor_rgba blender_rgba32; \/\/ blender_rgba32$/;" t namespace:gfx +blender_type src/gfx/gfx_pixfmt_rgb.h /^ typedef Blender blender_type;$/;" t class:gfx::pixfmt_blender_rgb +blender_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef Blender blender_type;$/;" t class:gfx::pixfmt_blender_rgb16 +blender_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef Blender blender_type;$/;" t struct:gfx::composite_op_rgb_16_clear +blender_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef Blender blender_type;$/;" t struct:gfx::composite_op_rgb_16_color_burn +blender_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef Blender blender_type;$/;" t struct:gfx::composite_op_rgb_16_color_dodge +blender_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef Blender blender_type;$/;" t struct:gfx::composite_op_rgb_16_contrast +blender_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef Blender blender_type;$/;" t struct:gfx::composite_op_rgb_16_darken +blender_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef Blender blender_type;$/;" t struct:gfx::composite_op_rgb_16_difference +blender_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef Blender blender_type;$/;" t struct:gfx::composite_op_rgb_16_dst_atop +blender_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef Blender blender_type;$/;" t struct:gfx::composite_op_rgb_16_dst_in +blender_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef Blender blender_type;$/;" t struct:gfx::composite_op_rgb_16_dst_out +blender_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef Blender blender_type;$/;" t struct:gfx::composite_op_rgb_16_dst_over +blender_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef Blender blender_type;$/;" t struct:gfx::composite_op_rgb_16_exclusion +blender_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef Blender blender_type;$/;" t struct:gfx::composite_op_rgb_16_hard_light +blender_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef Blender blender_type;$/;" t struct:gfx::composite_op_rgb_16_invert +blender_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef Blender blender_type;$/;" t struct:gfx::composite_op_rgb_16_invert_rgb +blender_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef Blender blender_type;$/;" t struct:gfx::composite_op_rgb_16_lighten +blender_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef Blender blender_type;$/;" t struct:gfx::composite_op_rgb_16_minus +blender_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef Blender blender_type;$/;" t struct:gfx::composite_op_rgb_16_multiply +blender_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef Blender blender_type;$/;" t struct:gfx::composite_op_rgb_16_overlay +blender_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef Blender blender_type;$/;" t struct:gfx::composite_op_rgb_16_plus +blender_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef Blender blender_type;$/;" t struct:gfx::composite_op_rgb_16_screen +blender_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef Blender blender_type;$/;" t struct:gfx::composite_op_rgb_16_soft_light +blender_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef Blender blender_type;$/;" t struct:gfx::composite_op_rgb_16_src +blender_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef Blender blender_type;$/;" t struct:gfx::composite_op_rgb_16_src_atop +blender_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef Blender blender_type;$/;" t struct:gfx::composite_op_rgb_16_src_in +blender_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef Blender blender_type;$/;" t struct:gfx::composite_op_rgb_16_src_out +blender_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef Blender blender_type;$/;" t struct:gfx::composite_op_rgb_16_src_over +blender_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef Blender blender_type;$/;" t struct:gfx::composite_op_rgb_16_xor +blender_type src/gfx/gfx_pixfmt_rgba.h /^ typedef Blender blender_type;$/;" t class:gfx::pixfmt_blender_rgba +blit_sbit android/freetype/src/sfnt/ttsbit.c /^ blit_sbit( FT_Bitmap* target,$/;" f file: +block android/expat/lib/xmlparse.c /^typedef struct block {$/;" s file: +block android/freetype/include/freetype/internal/psaux.h /^ FT_Byte* block; \/* current memory block *\/$/;" m struct:PS_TableRec_ +block include/freetype/internal/psaux.h /^ FT_Byte* block; \/* current memory block *\/$/;" m struct:PS_TableRec_ +block_allocator src/include/data_vector.h /^ block_allocator(unsigned block_size, unsigned block_ptr_inc = 256-8) $/;" f class:picasso::block_allocator +block_allocator src/include/data_vector.h /^class block_allocator $/;" c namespace:picasso +block_mask src/include/data_vector.h /^ block_mask = block_size - 1,$/;" e enum:picasso::pod_bvector::__anon195 +block_shift src/include/data_vector.h /^ block_shift = S,$/;" e enum:picasso::pod_bvector::__anon195 +block_size src/include/data_vector.h /^ block_size = 1 << block_shift,$/;" e enum:picasso::pod_bvector::__anon195 +block_size src/picasso_font_cache.h /^ block_size = 16384-16$/;" e enum:picasso::glyph_cache_manager::__anon215 +block_type src/include/data_vector.h /^ } block_type;$/;" t class:picasso::block_allocator typeref:struct:picasso::block_allocator::__anon196 +blocks android/expat/lib/xmlparse.c /^ BLOCK *blocks;$/;" m struct:__anon13 file: +blue_count android/freetype/src/autofit/aflatin.h /^ FT_UInt blue_count;$/;" m struct:AF_LatinAxisRec_ +blue_edge android/freetype/src/autofit/afhints.h /^ AF_Width blue_edge; \/* non-NULL if this is a blue edge *\/$/;" m struct:AF_EdgeRec_ +blue_fuzz android/freetype/include/freetype/t1tables.h /^ FT_Int blue_fuzz;$/;" m struct:PS_PrivateRec_ +blue_fuzz android/freetype/src/cff/cfftypes.h /^ FT_Pos blue_fuzz;$/;" m struct:CFF_PrivateRec_ +blue_fuzz android/freetype/src/pshinter/pshglob.h /^ FT_Int blue_fuzz;$/;" m struct:PSH_BluesRec_ +blue_fuzz include/freetype/t1tables.h /^ FT_Int blue_fuzz;$/;" m struct:PS_PrivateRec_ +blue_scale android/freetype/include/freetype/t1tables.h /^ FT_Fixed blue_scale;$/;" m struct:PS_PrivateRec_ +blue_scale android/freetype/src/cff/cfftypes.h /^ FT_Fixed blue_scale;$/;" m struct:CFF_PrivateRec_ +blue_scale android/freetype/src/pshinter/pshglob.h /^ FT_Fixed blue_scale;$/;" m struct:PSH_BluesRec_ +blue_scale include/freetype/t1tables.h /^ FT_Fixed blue_scale;$/;" m struct:PS_PrivateRec_ +blue_shift android/freetype/include/freetype/t1tables.h /^ FT_Int blue_shift;$/;" m struct:PS_PrivateRec_ +blue_shift android/freetype/src/cff/cfftypes.h /^ FT_Pos blue_shift;$/;" m struct:CFF_PrivateRec_ +blue_shift android/freetype/src/pshinter/pshglob.h /^ FT_Int blue_shift;$/;" m struct:PSH_BluesRec_ +blue_shift include/freetype/t1tables.h /^ FT_Int blue_shift;$/;" m struct:PS_PrivateRec_ +blue_threshold android/freetype/src/pshinter/pshglob.h /^ FT_Int blue_threshold;$/;" m struct:PSH_BluesRec_ +blue_values android/freetype/include/freetype/t1tables.h /^ FT_Short blue_values[14];$/;" m struct:PS_PrivateRec_ +blue_values android/freetype/src/cff/cfftypes.h /^ FT_Pos blue_values[14];$/;" m struct:CFF_PrivateRec_ +blue_values include/freetype/t1tables.h /^ FT_Short blue_values[14];$/;" m struct:PS_PrivateRec_ +blues android/freetype/src/autofit/aflatin.h /^ AF_LatinBlueRec blues[AF_LATIN_BLUE_MAX];$/;" m struct:AF_LatinAxisRec_ +blues android/freetype/src/pshinter/pshglob.h /^ PSH_BluesRec blues;$/;" m struct:PSH_GlobalsRec_ +blur src/gfx/gfx_blur.h /^ void blur(Img& img, unsigned int radius)$/;" f class:gfx::stack_blur +blur src/picasso_objects.h /^ scalar blur;$/;" m struct:picasso::context_state +blur src/picasso_objects.h /^ scalar blur;$/;" m struct:picasso::shadow_state +blur_x src/gfx/gfx_blur.h /^ void blur_x(Img& img, unsigned int radius)$/;" f class:gfx::stack_blur +blur_y src/gfx/gfx_blur.h /^ void blur_y(Img& img, unsigned int radius)$/;" f class:gfx::stack_blur +bmp demos/platform_win32.c /^BITMAP bmp;$/;" v +bmp test/testMg.c /^static BITMAP bmp;$/;" v file: +bmp test/testWin.c /^BITMAP bmp;$/;" v +borders android/freetype/src/base/ftstroke.c /^ FT_StrokeBorderRec borders[2];$/;" m struct:FT_StrokerRec_ file: +bot src/picasso_gpc.cpp /^ vertex_s bot; \/* Edge lower (x, y) coordinate *\/$/;" m struct:picasso::edge_shape file: +both_x_axis android/freetype/src/truetype/ttobjs.h /^ FT_Bool both_x_axis;$/;" m struct:TT_GraphicsState_ +bound_count android/freetype/src/base/ftdbgmem.c /^ FT_Bool bound_count;$/;" m struct:FT_MemTableRec_ file: +bound_list src/picasso_gpc.cpp /^static edge_node **bound_list(lmt_node **lmt, float y)$/;" f namespace:picasso +bound_total android/freetype/src/base/ftdbgmem.c /^ FT_Bool bound_total;$/;" m struct:FT_MemTableRec_ file: +bounding_rect src/include/graphic_helper.h /^inline bool bounding_rect(vertex_source& vs, unsigned int path_id, scalar* x1, scalar* y1, scalar* x2, scalar* y2)$/;" f namespace:picasso +bounds src/include/graphic_base.h /^ rect bounds;$/;" m struct:picasso::_glyph +bpp android/jni/test_android.cpp /^ int32_t bpp;$/;" m struct:engine file: +break_char android/freetype/include/freetype/ftwinfnt.h /^ FT_Byte break_char;$/;" m struct:FT_WinFNT_HeaderRec_ +break_char include/freetype/ftwinfnt.h /^ FT_Byte break_char;$/;" m struct:FT_WinFNT_HeaderRec_ +brush src/picasso_objects.h /^ graphic_brush brush;$/;" m struct:picasso::context_state +brush_style_canvas src/picasso_objects.h /^ brush_style_canvas = 4,$/;" e enum:picasso::__anon225 +brush_style_gradient src/picasso_objects.h /^ brush_style_gradient = 3,$/;" e enum:picasso::__anon225 +brush_style_image src/picasso_objects.h /^ brush_style_image = 1,$/;" e enum:picasso::__anon225 +brush_style_pattern src/picasso_objects.h /^ brush_style_pattern = 2,$/;" e enum:picasso::__anon225 +brush_style_solid src/picasso_objects.h /^ brush_style_solid = 0,$/;" e enum:picasso::__anon225 +bside src/picasso_gpc.cpp /^ int bside[2]; \/* Bundle left \/ right indicators *\/$/;" m struct:picasso::edge_shape file: +bstate src/picasso_gpc.cpp /^ bundle_state bstate[2]; \/* Edge bundle state *\/$/;" m struct:picasso::edge_shape file: +buckets android/freetype/src/base/ftdbgmem.c /^ FT_MemNode* buckets;$/;" m struct:FT_MemTableRec_ file: +buf android/expat/lib/xmlparse.c /^ char *buf; \/* buffer for name components *\/$/;" m struct:tag file: +bufEnd android/expat/lib/xmlparse.c /^ char *bufEnd; \/* end of the buffer *\/$/;" m struct:tag file: +buff android/freetype/src/raster/ftraster.c /^ PLong buff; \/* The profiles buffer *\/$/;" m struct:TWorker_ file: +buffer android/expat/lib/xmlparse.c /^#define buffer /;" d file: +buffer android/freetype/include/freetype/ftcache.h /^ FT_Byte* buffer;$/;" m struct:FTC_SBitRec_ +buffer android/freetype/include/freetype/ftimage.h /^ unsigned char* buffer;$/;" m struct:FT_Bitmap_ +buffer android/freetype/src/raster/ftraster.c /^ char* buffer;$/;" m struct:TRaster_ file: +buffer android/freetype/src/smooth/ftgrays.c /^ void* buffer;$/;" m struct:TWorker_ file: +buffer android/freetype/src/smooth/ftgrays.c /^ void* buffer;$/;" m struct:TRaster_ file: +buffer demos/platform_win32.c /^BYTE* buffer;$/;" v +buffer include/freetype/ftcache.h /^ FT_Byte* buffer;$/;" m struct:FTC_SBitRec_ +buffer include/freetype/ftimage.h /^ unsigned char* buffer;$/;" m struct:FT_Bitmap_ +buffer src/gfx/gfx_mask_layer.h /^ gfx_rendering_buffer& buffer(void) { return m_buffer; } $/;" f class:gfx::gfx_mask_layer +buffer src/gfx/gfx_painter.h /^ abstract_rendering_buffer* buffer;$/;" m struct:gfx::gfx_painter::__anon64 +buffer src/gfx/gfx_painter.h /^ abstract_rendering_buffer* buffer;$/;" m struct:gfx::gfx_painter::__anon65 +buffer src/gfx/gfx_rendering_buffer.h /^ virtual byte* buffer(void) const { return m_buffer; }$/;" f class:gfx::gfx_rendering_buffer +buffer src/picasso_objects.h /^ picasso::rendering_buffer buffer;$/;" m struct:_ps_canvas +buffer src/picasso_objects.h /^ picasso::rendering_buffer buffer;$/;" m struct:_ps_image +buffer src/picasso_rendering_buffer.cpp /^byte * rendering_buffer::buffer(void) const$/;" f class:picasso::rendering_buffer +buffer test/testQt4.cpp /^QImage * buffer;$/;" v +buffer test/testWin.c /^BYTE* buffer;$/;" v +buffer test/thread_func.c /^unsigned char* buffer;$/;" v +bufferEnd android/expat/lib/xmlparse.c /^#define bufferEnd /;" d file: +bufferLim android/expat/lib/xmlparse.c /^#define bufferLim /;" d file: +bufferPtr android/expat/lib/xmlparse.c /^#define bufferPtr /;" d file: +buffer_alloc_canvas src/picasso_objects.h /^ buffer_alloc_canvas = 4,$/;" e enum:__anon227 +buffer_alloc_image src/picasso_objects.h /^ buffer_alloc_image = 3,$/;" e enum:__anon227 +buffer_alloc_malloc src/picasso_objects.h /^ buffer_alloc_malloc = 2,$/;" e enum:__anon227 +buffer_alloc_none src/picasso_objects.h /^ buffer_alloc_none = 0,$/;" e enum:__anon227 +buffer_alloc_surface src/picasso_objects.h /^ buffer_alloc_surface = 1,$/;" e enum:__anon227 +buffer_size android/freetype/src/raster/ftraster.c /^ long buffer_size;$/;" m struct:TRaster_ file: +buffer_size android/freetype/src/smooth/ftgrays.c /^ long buffer_size;$/;" m struct:TWorker_ file: +buffer_size android/freetype/src/smooth/ftgrays.c /^ long buffer_size;$/;" m struct:TRaster_ file: +buffer_type src/gfx/gfx_pixfmt_rgb.h /^ typedef RenBuffer buffer_type;$/;" t class:gfx::pixfmt_blender_rgb +buffer_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef RenBuffer buffer_type;$/;" t class:gfx::pixfmt_blender_rgb16 +buffer_type src/gfx/gfx_pixfmt_rgba.h /^ typedef RenBuffer buffer_type;$/;" t class:gfx::pixfmt_blender_rgba +build src/gfx/gfx_gradient_adapter.h /^ void build(void) $/;" f class:gfx::gfx_gradient_adapter +build tools/gyp/build/lib/gyp/ninja_syntax.py /^ def build(self, outputs, rule, inputs=None, implicit=None, order_only=None,$/;" m class:Writer +build tools/gyp/pylib/gyp/ninja_syntax.py /^ def build(self, outputs, rule, inputs=None, implicit=None, order_only=None,$/;" m class:Writer +build_files tools/gyp/build/lib/gyp/generator/xcode.py /^ build_files = []$/;" v +build_files tools/gyp/pylib/gyp/generator/xcode.py /^ build_files = []$/;" v +build_intersection_table src/picasso_gpc.cpp /^static void build_intersection_table(it_node **it, edge_node *aet, float dy)$/;" f namespace:picasso +build_lmt src/picasso_gpc.cpp /^static edge_node *build_lmt(lmt_node **lmt, sb_tree **sbtree,$/;" f namespace:picasso +build_model android/expat/lib/xmlparse.c /^build_model (XML_Parser parser)$/;" f file: +build_node android/expat/lib/xmlparse.c /^build_node(XML_Parser parser,$/;" f file: +build_sbt src/picasso_gpc.cpp /^static void build_sbt(int *entries, float *sbt, sb_tree *sbtree)$/;" f namespace:picasso +build_table src/gfx/gfx_gradient_adapter.cpp /^void gfx_gradient_table::build_table(void)$/;" f class:gfx::gfx_gradient_table +buildchar android/freetype/include/freetype/internal/psaux.h /^ FT_Int* buildchar;$/;" m struct:T1_DecoderRec_ +buildchar android/freetype/include/freetype/internal/t1types.h /^ FT_Int* buildchar;$/;" m struct:T1_FaceRec_ +buildchar android/freetype/src/cff/cffgload.h /^ FT_Fixed* buildchar;$/;" m struct:CFF_Decoder_ +buildchar include/freetype/internal/psaux.h /^ FT_Long* buildchar;$/;" m struct:T1_DecoderRec_ +buildchar include/freetype/internal/t1types.h /^ FT_Long* buildchar;$/;" m struct:T1_FaceRec_ +builder android/freetype/include/freetype/internal/psaux.h /^ T1_BuilderRec builder;$/;" m struct:T1_DecoderRec_ +builder android/freetype/src/cff/cffgload.h /^ CFF_Builder builder;$/;" m struct:CFF_Decoder_ +builder android/freetype/src/psaux/psobjs.h /^ t1_builder_add_contour( T1_Builder builder );$/;" v +builder android/freetype/src/psaux/psobjs.h /^ t1_builder_close_contour( T1_Builder builder );$/;" v +builder android/freetype/src/psaux/psobjs.h /^ t1_builder_done( T1_Builder builder );$/;" v +builder include/freetype/internal/psaux.h /^ T1_BuilderRec builder;$/;" m struct:T1_DecoderRec_ +builder_call tools/gyp/build/lib/gyp/SCons.py /^ def builder_call(self):$/;" m class:TargetBase +builder_call tools/gyp/pylib/gyp/SCons.py /^ def builder_call(self):$/;" m class:TargetBase +builder_name tools/gyp/build/lib/gyp/SCons.py /^ builder_name = 'GypLoadableModule'$/;" v class:LoadableModuleTarget +builder_name tools/gyp/build/lib/gyp/SCons.py /^ builder_name = 'GypProgram'$/;" v class:ProgramTarget +builder_name tools/gyp/build/lib/gyp/SCons.py /^ builder_name = 'GypSharedLibrary'$/;" v class:SharedLibraryTarget +builder_name tools/gyp/build/lib/gyp/SCons.py /^ builder_name = 'GypStaticLibrary'$/;" v class:StaticLibraryTarget +builder_name tools/gyp/pylib/gyp/SCons.py /^ builder_name = 'GypLoadableModule'$/;" v class:LoadableModuleTarget +builder_name tools/gyp/pylib/gyp/SCons.py /^ builder_name = 'GypProgram'$/;" v class:ProgramTarget +builder_name tools/gyp/pylib/gyp/SCons.py /^ builder_name = 'GypSharedLibrary'$/;" v class:SharedLibraryTarget +builder_name tools/gyp/pylib/gyp/SCons.py /^ builder_name = 'GypStaticLibrary'$/;" v class:StaticLibraryTarget +bundle src/picasso_gpc.cpp /^ int bundle[2][2]; \/* Bundle edge flags *\/$/;" m struct:picasso::edge_shape file: +bundle_state src/picasso_gpc.cpp /^} bundle_state;$/;" t namespace:picasso typeref:enum:picasso::__anon218 file: +butt_cap src/include/graphic_base.h /^ butt_cap,$/;" e enum:picasso::__anon204 +byte src/include/common.h /^typedef uint8_t byte;$/;" t +byteToAscii android/expat/lib/xmltok.c /^ int (PTRFASTCALL *byteToAscii)(const ENCODING *, const char *);$/;" m struct:normal_encoding file: +byteType android/expat/lib/xmltok.c /^ int (PTRFASTCALL *byteType)(const ENCODING *, const char *);$/;" m struct:normal_encoding file: +byte_len android/freetype/include/freetype/internal/tttypes.h /^ FT_Int byte_len;$/;" m struct:TT_LoaderRec_ +byte_len include/freetype/internal/tttypes.h /^ FT_Int byte_len;$/;" m struct:TT_LoaderRec_ +byte_size src/gfx/gfx_scanline_storage.h /^ unsigned int byte_size(void) const$/;" f class:gfx::gfx_scanline_storage_aa +byte_size src/gfx/gfx_scanline_storage.h /^ unsigned int byte_size(void) const$/;" f class:gfx::gfx_scanline_storage_bin +bytecode_ready android/freetype/src/truetype/ttobjs.h /^ FT_Bool bytecode_ready;$/;" m struct:TT_SizeRec_ +bytes android/freetype/src/cff/cfftypes.h /^ FT_Byte* bytes;$/;" m struct:CFF_IndexRec_ +bytes android/freetype/src/pshinter/pshrec.h /^ FT_Byte* bytes;$/;" m struct:PS_MaskRec_ +bytes_per_row android/freetype/include/freetype/ftwinfnt.h /^ FT_UShort bytes_per_row;$/;" m struct:FT_WinFNT_HeaderRec_ +bytes_per_row include/freetype/ftwinfnt.h /^ FT_UShort bytes_per_row;$/;" m struct:FT_WinFNT_HeaderRec_ +bytes_pre_line test/thread_func.c /^static int bytes_pre_line(ps_color_format fmt, int width)$/;" f file: +cProfile android/freetype/src/raster/ftraster.c /^ PProfile cProfile; \/* current profile *\/$/;" m struct:TWorker_ file: +ca demos/flowers.c /^ float cr, cg, cb, ca;$/;" m struct:__anon37 file: +cache_count android/freetype/src/cff/cfftypes.h /^ FT_UInt cache_count;$/;" m struct:CFF_FDSelectRec_ +cache_fd android/freetype/src/cff/cfftypes.h /^ FT_Byte cache_fd;$/;" m struct:CFF_FDSelectRec_ +cache_first android/freetype/src/cff/cfftypes.h /^ FT_UInt cache_first;$/;" m struct:CFF_FDSelectRec_ +cache_glyph src/picasso_font_cache.h /^ glyph* cache_glyph(unsigned int code, unsigned int index, unsigned int data_size, glyph_type data_type,$/;" f class:picasso::glyph_cache_manager +cached_command_results tools/gyp/build/lib/gyp/input.py /^cached_command_results = {}$/;" v +cached_command_results tools/gyp/pylib/gyp/input.py /^cached_command_results = {}$/;" v +cached_domain tools/gyp/build/lib/gyp/generator/msvs.py /^cached_domain = None$/;" v +cached_domain tools/gyp/pylib/gyp/generator/msvs.py /^cached_domain = None$/;" v +cached_username tools/gyp/build/lib/gyp/generator/msvs.py /^cached_username = None$/;" v +cached_username tools/gyp/pylib/gyp/generator/msvs.py /^cached_username = None$/;" v +cached_xcode_version tools/gyp/build/lib/gyp/generator/xcode.py /^cached_xcode_version = None$/;" v +cached_xcode_version tools/gyp/pylib/gyp/generator/xcode.py /^cached_xcode_version = None$/;" v +calc_arc src/include/convert.h /^ void calc_arc(coord_storage& cs, scalar x, scalar y, $/;" f class:picasso::conv_stroke +calc_cap src/include/convert.h /^ void calc_cap(coord_storage& cs, const vertex_dist& v0, const vertex_dist& v1, scalar len)$/;" f class:picasso::conv_stroke +calc_dash_start src/include/convert.h /^ void calc_dash_start(scalar ds)$/;" f class:picasso::conv_dash +calc_distance src/include/graphic_base.h /^inline scalar calc_distance(scalar x1, scalar y1, scalar x2, scalar y2)$/;" f namespace:picasso +calc_intersection src/include/graphic_base.h /^inline bool calc_intersection(scalar ax, scalar ay, scalar bx, scalar by,$/;" f namespace:picasso +calc_join src/include/convert.h /^ void calc_join(coord_storage& cs, const vertex_dist& v0,$/;" f class:picasso::conv_stroke +calc_miter src/include/convert.h /^ void calc_miter(coord_storage& cs, const vertex_dist& v0, const vertex_dist& v1,$/;" f class:picasso::conv_stroke +calc_num_steps src/include/geometry.h /^ void calc_num_steps(void)$/;" f class:picasso::ellipse +calc_pix src/gfx/gfx_blur.h /^ template void calc_pix(T& v, unsigned int mul, unsigned int shr)$/;" f struct:gfx::stack_blur_calc_rgba +calc_sq_distance src/include/graphic_base.h /^inline scalar calc_sq_distance(scalar x1, scalar y1, scalar x2, scalar y2)$/;" f namespace:picasso +calc_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_color_burn +calc_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_color_dodge +calc_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_contrast +calc_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_darken +calc_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_difference +calc_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_dst_atop +calc_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_dst_over +calc_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_exclusion +calc_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_hard_light +calc_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_invert +calc_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_invert_rgb +calc_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_lighten +calc_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_minus +calc_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_multiply +calc_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_overlay +calc_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_plus +calc_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_screen +calc_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_soft_light +calc_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_src_atop +calc_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_src_in +calc_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_src_out +calc_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_src_over +calc_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_xor +calc_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef color_type::calc_type calc_type;$/;" t class:gfx::blender_rgb555 +calc_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef color_type::calc_type calc_type;$/;" t class:gfx::blender_rgb565 +calc_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_16_color_burn +calc_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_16_color_dodge +calc_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_16_contrast +calc_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_16_darken +calc_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_16_difference +calc_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_16_dst_atop +calc_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_16_dst_in +calc_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_16_dst_out +calc_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_16_dst_over +calc_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_16_exclusion +calc_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_16_hard_light +calc_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_16_invert +calc_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_16_invert_rgb +calc_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_16_lighten +calc_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_16_minus +calc_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_16_multiply +calc_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_16_overlay +calc_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_16_plus +calc_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_16_screen +calc_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_16_soft_light +calc_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_16_src_atop +calc_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_16_src_in +calc_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_16_src_out +calc_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_16_src_over +calc_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgb_16_xor +calc_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgba_color_burn +calc_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgba_color_dodge +calc_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgba_contrast +calc_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgba_darken +calc_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgba_difference +calc_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgba_dst_atop +calc_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgba_dst_over +calc_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgba_exclusion +calc_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgba_hard_light +calc_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgba_invert +calc_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgba_invert_rgb +calc_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgba_lighten +calc_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgba_minus +calc_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgba_multiply +calc_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgba_overlay +calc_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgba_plus +calc_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgba_screen +calc_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgba_soft_light +calc_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgba_src_atop +calc_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgba_src_in +calc_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgba_src_out +calc_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgba_src_over +calc_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::calc_type calc_type;$/;" t struct:gfx::composite_op_rgba_xor +calc_type src/gfx/gfx_span_image_filters.h /^ typedef typename color_type::calc_type calc_type;$/;" t class:gfx::gfx_span_image_filter_rgb +calc_type src/gfx/gfx_span_image_filters.h /^ typedef typename color_type::calc_type calc_type;$/;" t class:gfx::gfx_span_image_filter_rgb16 +calc_type src/gfx/gfx_span_image_filters.h /^ typedef typename color_type::calc_type calc_type;$/;" t class:gfx::gfx_span_image_filter_rgb16_nn +calc_type src/gfx/gfx_span_image_filters.h /^ typedef typename color_type::calc_type calc_type;$/;" t class:gfx::gfx_span_image_filter_rgb_nn +calc_type src/gfx/gfx_span_image_filters.h /^ typedef typename color_type::calc_type calc_type;$/;" t class:gfx::gfx_span_image_filter_rgba +calc_type src/gfx/gfx_span_image_filters.h /^ typedef typename color_type::calc_type calc_type;$/;" t class:gfx::gfx_span_image_filter_rgba_nb +calc_type src/gfx/gfx_span_image_filters.h /^ typedef typename color_type::calc_type calc_type;$/;" t class:gfx::gfx_span_image_filter_rgba_nn +calc_type src/gfx/gfx_span_image_filters.h /^ typedef typename color_type::calc_type calc_type;$/;" t class:gfx::gfx_span_image_filter_rgba_nn_nb +calc_type src/include/color_type.h /^ typedef uint32_t calc_type;$/;" t struct:picasso::rgba8 +calc_weight src/gfx/gfx_image_filters.cpp /^ scalar calc_weight(scalar x) const$/;" f class:gfx::image_filter_bilinear +calc_weight src/gfx/gfx_image_filters.cpp /^ scalar calc_weight(scalar x) const$/;" f class:gfx::image_filter_gaussian +calculate src/gfx/gfx_gradient_adapter.cpp /^ int calculate(int x, int y, int d) const$/;" f class:gfx::gradient_pad_adaptor +calculate src/gfx/gfx_gradient_adapter.cpp /^ int calculate(int x, int y, int d) const$/;" f class:gfx::gradient_reflect_adaptor +calculate src/gfx/gfx_gradient_adapter.cpp /^ int calculate(int x, int y, int d) const$/;" f class:gfx::gradient_repeat_adaptor +calculate src/gfx/gfx_gradient_adapter.cpp /^ int calculate(int x, int y, int) const$/;" f class:gfx::gradient_radial_focus +calculate src/gfx/gfx_gradient_adapter.cpp /^ static int calculate(int x, int y, int d) $/;" f class:gfx::gradient_conic +calculate src/gfx/gfx_gradient_adapter.cpp /^ static int calculate(int x, int y, int d)$/;" f class:gfx::gradient_radial +calculate src/gfx/gfx_gradient_adapter.cpp /^ static int calculate(int x, int, int) { return x; }$/;" f class:gfx::gradient_x +calculate src/gfx/gfx_gradient_adapter.cpp /^ virtual int calculate(int x, int y, int d) const $/;" f class:gfx::gfx_gradient +calculate src/gfx/gfx_image_filters.h /^ void calculate(const FilterType& filter, bool normalization = true)$/;" f class:gfx::image_filter_adapter +calculate src/gfx/gfx_mask_layer.h /^ unsigned int calculate(const uint8_t* p) const { return *p; }$/;" f class:gfx::gfx_alpha_mask_u8 +calculate_alpha src/gfx/gfx_rasterizer_scanline.h /^ unsigned int calculate_alpha(int area) const$/;" f class:gfx::gfx_rasterizer_scanline_aa +calculator_type src/gfx/gfx_blur.h /^ ALIGNED(16) typedef stack_blur_calc_rgba calculator_type;$/;" t class:gfx::stack_blur +callSize android/freetype/src/truetype/ttinterp.h /^ callSize; \/* size of call stack *\/$/;" m struct:TT_ExecContextRec_ +callStack android/freetype/src/truetype/ttinterp.h /^ TT_CallStack callStack; \/* call stack *\/$/;" m struct:TT_ExecContextRec_ +callTop android/freetype/src/truetype/ttinterp.h /^ FT_Int callTop, \/* top of call stack during execution *\/$/;" m struct:TT_ExecContextRec_ +canonical_int_re tools/gyp/build/lib/gyp/input.py /^canonical_int_re = re.compile('^(0|-?[1-9][0-9]*)$')$/;" v +canonical_int_re tools/gyp/pylib/gyp/input.py /^canonical_int_re = re.compile('^(0|-?[1-9][0-9]*)$')$/;" v +canvas android/jni/test_android.cpp /^ ps_canvas *canvas;$/;" m struct:engine file: +canvas demos/platform_gix.c /^static ps_canvas *canvas;$/;" v file: +canvas demos/platform_gtk2.c /^static ps_canvas *canvas;$/;" v file: +canvas demos/platform_minigui.c /^static ps_canvas *canvas;$/;" v file: +canvas demos/platform_qt4.cpp /^static ps_canvas *canvas;$/;" v file: +canvas demos/platform_win32.c /^static ps_canvas *canvas;$/;" v file: +canvas src/picasso_objects.h /^ ps_canvas* canvas;$/;" m struct:_ps_context +canvas test/testGtk2.c /^static ps_canvas *canvas;$/;" v file: +canvas test/testMg.c /^static ps_canvas *canvas;$/;" v file: +canvas test/testQt4.cpp /^static ps_canvas *canvas;$/;" v file: +canvas test/testWin.c /^static ps_canvas *canvas;$/;" v file: +cap src/picasso_objects.h /^ line_cap cap;$/;" m struct:picasso::graphic_pen +cap1 src/include/convert.h /^ cap1,$/;" e enum:picasso::conv_stroke::__anon192 +cap2 src/include/convert.h /^ cap2,$/;" e enum:picasso::conv_stroke::__anon192 +capacity android/freetype/include/freetype/internal/psaux.h /^ FT_Offset capacity; \/* current size of memory block *\/$/;" m struct:PS_TableRec_ +capacity include/freetype/internal/psaux.h /^ FT_Offset capacity; \/* current size of memory block *\/$/;" m struct:PS_TableRec_ +capacity src/include/data_vector.h /^ unsigned int capacity(void) const { return m_capacity; }$/;" f class:picasso::pod_vector +capacity src/include/data_vector.h /^ unsigned int capacity(void) const { return m_num_blocks * block_size; }$/;" f class:picasso::pod_bvector +capacity src/include/data_vector.h /^inline void pod_vector::capacity(unsigned int cap)$/;" f class:picasso::pod_vector +cardinal android/freetype/include/freetype/ftbdf.h /^ FT_UInt32 cardinal;$/;" m union:BDF_PropertyRec_::__anon24 +cardinal include/freetype/ftbdf.h /^ FT_UInt32 cardinal;$/;" m union:BDF_PropertyRec_::__anon53 +caret_Offset android/freetype/include/freetype/tttables.h /^ FT_Short caret_Offset;$/;" m struct:TT_HoriHeader_ +caret_Offset android/freetype/include/freetype/tttables.h /^ FT_Short caret_Offset;$/;" m struct:TT_VertHeader_ +caret_Offset include/freetype/tttables.h /^ FT_Short caret_Offset;$/;" m struct:TT_HoriHeader_ +caret_Offset include/freetype/tttables.h /^ FT_Short caret_Offset;$/;" m struct:TT_VertHeader_ +caret_Slope_Rise android/freetype/include/freetype/tttables.h /^ FT_Short caret_Slope_Rise;$/;" m struct:TT_HoriHeader_ +caret_Slope_Rise android/freetype/include/freetype/tttables.h /^ FT_Short caret_Slope_Rise;$/;" m struct:TT_VertHeader_ +caret_Slope_Rise include/freetype/tttables.h /^ FT_Short caret_Slope_Rise;$/;" m struct:TT_HoriHeader_ +caret_Slope_Rise include/freetype/tttables.h /^ FT_Short caret_Slope_Rise;$/;" m struct:TT_VertHeader_ +caret_Slope_Run android/freetype/include/freetype/tttables.h /^ FT_Short caret_Slope_Run;$/;" m struct:TT_HoriHeader_ +caret_Slope_Run android/freetype/include/freetype/tttables.h /^ FT_Short caret_Slope_Run;$/;" m struct:TT_VertHeader_ +caret_Slope_Run include/freetype/tttables.h /^ FT_Short caret_Slope_Run;$/;" m struct:TT_HoriHeader_ +caret_Slope_Run include/freetype/tttables.h /^ FT_Short caret_Slope_Run;$/;" m struct:TT_VertHeader_ +caret_offset android/freetype/include/freetype/internal/tttypes.h /^ FT_Char caret_offset;$/;" m struct:TT_SBit_LineMetricsRec_ +caret_offset include/freetype/internal/tttypes.h /^ FT_Char caret_offset;$/;" m struct:TT_SBit_LineMetricsRec_ +caret_slope_denominator android/freetype/include/freetype/internal/tttypes.h /^ FT_Char caret_slope_denominator;$/;" m struct:TT_SBit_LineMetricsRec_ +caret_slope_denominator include/freetype/internal/tttypes.h /^ FT_Char caret_slope_denominator;$/;" m struct:TT_SBit_LineMetricsRec_ +caret_slope_numerator android/freetype/include/freetype/internal/tttypes.h /^ FT_Char caret_slope_numerator;$/;" m struct:TT_SBit_LineMetricsRec_ +caret_slope_numerator include/freetype/internal/tttypes.h /^ FT_Char caret_slope_numerator;$/;" m struct:TT_SBit_LineMetricsRec_ +cb demos/flowers.c /^ float cr, cg, cb, ca;$/;" m struct:__anon37 file: +cdataSectionProcessor android/expat/lib/xmlparse.c /^cdataSectionProcessor(XML_Parser parser,$/;" f file: +cdataSectionProcessor android/expat/lib/xmlparse.c /^static Processor cdataSectionProcessor;$/;" v file: +cdataSectionTok android/expat/lib/xmltok_impl.c /^PREFIX(cdataSectionTok)(const ENCODING *enc, const char *ptr,$/;" f file: +cdv_idx android/freetype/include/freetype/internal/t1types.h /^ FT_Int cdv_idx;$/;" m struct:T1_FaceRec_ +cdv_idx include/freetype/internal/t1types.h /^ FT_Int cdv_idx;$/;" m struct:T1_FaceRec_ +ceil src/include/fixedopt.h /^inline int ceil(fixed x)$/;" f namespace:fxmath +ceilf src/include/platform.h /^#define ceilf(/;" d +cell src/gfx/gfx_rasterizer_scanline.h /^struct cell {$/;" s namespace:gfx +cell_block_limit src/gfx/gfx_rasterizer_cell.h /^ cell_block_limit = 1024,$/;" e enum:gfx::gfx_rasterizer_cells_aa::__anon151 +cell_block_mask src/gfx/gfx_rasterizer_cell.h /^ cell_block_mask = cell_block_size - 1,$/;" e enum:gfx::gfx_rasterizer_cells_aa::__anon151 +cell_block_pool src/gfx/gfx_rasterizer_cell.h /^ cell_block_pool = 256,$/;" e enum:gfx::gfx_rasterizer_cells_aa::__anon151 +cell_block_shift src/gfx/gfx_rasterizer_cell.h /^ cell_block_shift = 12,$/;" e enum:gfx::gfx_rasterizer_cells_aa::__anon151 +cell_block_size src/gfx/gfx_rasterizer_cell.h /^ cell_block_size = 1 << cell_block_shift,$/;" e enum:gfx::gfx_rasterizer_cells_aa::__anon151 +cell_type src/gfx/gfx_rasterizer_cell.h /^ typedef Cell cell_type;$/;" t class:gfx::gfx_rasterizer_cells_aa +cells android/freetype/src/smooth/ftgrays.c /^ PCell cells;$/;" m struct:TWorker_ file: +center android/freetype/src/base/ftstroke.c /^ FT_Vector center;$/;" m struct:FT_StrokerRec_ file: +cff android/freetype/src/cff/cffgload.h /^ CFF_Font cff;$/;" m struct:CFF_Decoder_ +cff include/freetype/internal/ftpic.h /^ void* cff; $/;" m struct:FT_PIC_Container_ +cff_argument_counts android/freetype/src/cff/cffgload.c /^ static const FT_Byte cff_argument_counts[] =$/;" v file: +cff_builder_add_contour android/freetype/src/cff/cffgload.c /^ cff_builder_add_contour( CFF_Builder* builder )$/;" f file: +cff_builder_add_point android/freetype/src/cff/cffgload.c /^ cff_builder_add_point( CFF_Builder* builder,$/;" f file: +cff_builder_add_point1 android/freetype/src/cff/cffgload.c /^ cff_builder_add_point1( CFF_Builder* builder,$/;" f file: +cff_builder_close_contour android/freetype/src/cff/cffgload.c /^ cff_builder_close_contour( CFF_Builder* builder )$/;" f file: +cff_builder_done android/freetype/src/cff/cffgload.c /^ cff_builder_done( CFF_Builder* builder )$/;" f file: +cff_builder_init android/freetype/src/cff/cffgload.c /^ cff_builder_init( CFF_Builder* builder,$/;" f file: +cff_builder_start_point android/freetype/src/cff/cffgload.c /^ cff_builder_start_point( CFF_Builder* builder,$/;" f file: +cff_charset_compute_cids android/freetype/src/cff/cffload.c /^ cff_charset_compute_cids( CFF_Charset charset,$/;" f file: +cff_charset_done android/freetype/src/cff/cffload.c /^ cff_charset_done( CFF_Charset charset,$/;" f file: +cff_charset_free_cids android/freetype/src/cff/cffload.c /^ cff_charset_free_cids( CFF_Charset charset,$/;" f file: +cff_charset_load android/freetype/src/cff/cffload.c /^ cff_charset_load( CFF_Charset charset,$/;" f file: +cff_cmap_encoding_class_rec android/freetype/src/cff/cffcmap.c /^ cff_cmap_encoding_class_rec =$/;" v +cff_cmap_encoding_class_rec android/freetype/src/cff/cffcmap.h /^ cff_cmap_encoding_class_rec;$/;" v +cff_cmap_encoding_done android/freetype/src/cff/cffcmap.c /^ cff_cmap_encoding_done( CFF_CMapStd cmap )$/;" f +cff_cmap_unicode_class_rec android/freetype/src/cff/cffcmap.c /^ cff_cmap_unicode_class_rec =$/;" v +cff_cmap_unicode_class_rec android/freetype/src/cff/cffcmap.h /^ cff_cmap_unicode_class_rec;$/;" v +cff_cmap_unicode_done android/freetype/src/cff/cffcmap.c /^ cff_cmap_unicode_done( PS_Unicodes unicodes )$/;" f +cff_compute_bias android/freetype/src/cff/cffgload.c /^ cff_compute_bias( FT_UInt num_subrs )$/;" f file: +cff_decoder_init android/freetype/src/cff/cffgload.c /^ cff_decoder_init( CFF_Decoder* decoder,$/;" f +cff_decoder_set_width_only android/freetype/src/cff/cffgload.c /^ cff_decoder_set_width_only( CFF_Decoder* decoder )$/;" f +cff_driver_class android/freetype/src/cff/cffdrivr.c /^ const FT_Driver_ClassRec cff_driver_class =$/;" v +cff_driver_class android/freetype/src/cff/cffdrivr.h /^ const FT_Driver_ClassRec cff_driver_class;$/;" v +cff_driver_done android/freetype/src/cff/cffobjs.c /^ cff_driver_done( FT_Module module )$/;" f +cff_encoding_done android/freetype/src/cff/cffload.c /^ cff_encoding_done( CFF_Encoding encoding )$/;" f file: +cff_encoding_load android/freetype/src/cff/cffload.c /^ cff_encoding_load( CFF_Encoding encoding,$/;" f file: +cff_expert_charset android/freetype/src/cff/cffload.c /^ static const FT_UShort cff_expert_charset[166] =$/;" v file: +cff_expert_encoding android/freetype/src/cff/cffload.c /^ static const FT_UShort cff_expert_encoding[256] =$/;" v file: +cff_expertsubset_charset android/freetype/src/cff/cffload.c /^ static const FT_UShort cff_expertsubset_charset[87] =$/;" v file: +cff_face_done android/freetype/src/cff/cffobjs.c /^ cff_face_done( FT_Face cffface ) \/* CFF_Face *\/$/;" f +cff_field_handlers android/freetype/src/cff/cffparse.c /^ static const CFF_Field_Handler cff_field_handlers[] =$/;" v file: +cff_font_done android/freetype/src/cff/cffload.c /^ cff_font_done( CFF_Font font )$/;" f +cff_free_glyph_data android/freetype/src/cff/cffgload.c /^ cff_free_glyph_data( TT_Face face,$/;" f file: +cff_get_cmap_info android/freetype/src/cff/cffdrivr.c /^ cff_get_cmap_info( FT_CharMap charmap,$/;" f file: +cff_get_glyph_data android/freetype/src/cff/cffgload.c /^ cff_get_glyph_data( TT_Face face,$/;" f file: +cff_get_glyph_name android/freetype/src/cff/cffdrivr.c /^ cff_get_glyph_name( CFF_Face face,$/;" f file: +cff_get_name_index android/freetype/src/cff/cffdrivr.c /^ cff_get_name_index( CFF_Face face,$/;" f file: +cff_get_ps_name android/freetype/src/cff/cffdrivr.c /^ cff_get_ps_name( CFF_Face face )$/;" f file: +cff_get_ros android/freetype/src/cff/cffdrivr.c /^ cff_get_ros( CFF_Face face,$/;" f file: +cff_index_done android/freetype/src/cff/cffload.c /^ cff_index_done( CFF_Index idx )$/;" f file: +cff_index_forget_element android/freetype/src/cff/cffload.c /^ cff_index_forget_element( CFF_Index idx,$/;" f +cff_index_get_name android/freetype/src/cff/cffload.c /^ cff_index_get_name( CFF_Index idx,$/;" f +cff_index_get_pointers android/freetype/src/cff/cffload.c /^ cff_index_get_pointers( CFF_Index idx,$/;" f file: +cff_index_get_sid_string android/freetype/src/cff/cffload.c /^ cff_index_get_sid_string( CFF_Index idx,$/;" f +cff_index_init android/freetype/src/cff/cffload.c /^ cff_index_init( CFF_Index idx,$/;" f file: +cff_index_load_offsets android/freetype/src/cff/cffload.c /^ cff_index_load_offsets( CFF_Index idx )$/;" f file: +cff_index_read_offset android/freetype/src/cff/cffload.c /^ cff_index_read_offset( CFF_Index idx,$/;" f file: +cff_isoadobe_charset android/freetype/src/cff/cffload.c /^ static const FT_UShort cff_isoadobe_charset[229] =$/;" v file: +cff_kind_bool android/freetype/src/cff/cffparse.c /^ cff_kind_bool,$/;" e enum:__anon29 file: +cff_kind_callback android/freetype/src/cff/cffparse.c /^ cff_kind_callback,$/;" e enum:__anon29 file: +cff_kind_delta android/freetype/src/cff/cffparse.c /^ cff_kind_delta,$/;" e enum:__anon29 file: +cff_kind_fixed android/freetype/src/cff/cffparse.c /^ cff_kind_fixed,$/;" e enum:__anon29 file: +cff_kind_fixed_thousand android/freetype/src/cff/cffparse.c /^ cff_kind_fixed_thousand,$/;" e enum:__anon29 file: +cff_kind_max android/freetype/src/cff/cffparse.c /^ cff_kind_max \/* do not remove *\/$/;" e enum:__anon29 file: +cff_kind_none android/freetype/src/cff/cffparse.c /^ cff_kind_none = 0,$/;" e enum:__anon29 file: +cff_kind_num android/freetype/src/cff/cffparse.c /^ cff_kind_num,$/;" e enum:__anon29 file: +cff_kind_string android/freetype/src/cff/cffparse.c /^ cff_kind_string,$/;" e enum:__anon29 file: +cff_lookup_glyph_by_stdcharcode android/freetype/src/cff/cffgload.c /^ cff_lookup_glyph_by_stdcharcode( CFF_Font cff,$/;" f file: +cff_make_private_dict android/freetype/src/cff/cffobjs.c /^ cff_make_private_dict( CFF_SubFont subfont,$/;" f file: +cff_op_abs android/freetype/src/cff/cffgload.c /^ cff_op_abs,$/;" e enum:CFF_Operator_ file: +cff_op_add android/freetype/src/cff/cffgload.c /^ cff_op_add,$/;" e enum:CFF_Operator_ file: +cff_op_and android/freetype/src/cff/cffgload.c /^ cff_op_and,$/;" e enum:CFF_Operator_ file: +cff_op_blend android/freetype/src/cff/cffgload.c /^ cff_op_blend,$/;" e enum:CFF_Operator_ file: +cff_op_callgsubr android/freetype/src/cff/cffgload.c /^ cff_op_callgsubr,$/;" e enum:CFF_Operator_ file: +cff_op_callsubr android/freetype/src/cff/cffgload.c /^ cff_op_callsubr,$/;" e enum:CFF_Operator_ file: +cff_op_closepath android/freetype/src/cff/cffgload.c /^ cff_op_closepath, \/* ditto *\/$/;" e enum:CFF_Operator_ file: +cff_op_cntrmask android/freetype/src/cff/cffgload.c /^ cff_op_cntrmask,$/;" e enum:CFF_Operator_ file: +cff_op_div android/freetype/src/cff/cffgload.c /^ cff_op_div,$/;" e enum:CFF_Operator_ file: +cff_op_dotsection android/freetype/src/cff/cffgload.c /^ cff_op_dotsection, \/* deprecated, acts as no-op *\/$/;" e enum:CFF_Operator_ file: +cff_op_drop android/freetype/src/cff/cffgload.c /^ cff_op_drop,$/;" e enum:CFF_Operator_ file: +cff_op_dup android/freetype/src/cff/cffgload.c /^ cff_op_dup,$/;" e enum:CFF_Operator_ file: +cff_op_endchar android/freetype/src/cff/cffgload.c /^ cff_op_endchar,$/;" e enum:CFF_Operator_ file: +cff_op_eq android/freetype/src/cff/cffgload.c /^ cff_op_eq,$/;" e enum:CFF_Operator_ file: +cff_op_exch android/freetype/src/cff/cffgload.c /^ cff_op_exch,$/;" e enum:CFF_Operator_ file: +cff_op_flex android/freetype/src/cff/cffgload.c /^ cff_op_flex,$/;" e enum:CFF_Operator_ file: +cff_op_flex1 android/freetype/src/cff/cffgload.c /^ cff_op_flex1,$/;" e enum:CFF_Operator_ file: +cff_op_get android/freetype/src/cff/cffgload.c /^ cff_op_get,$/;" e enum:CFF_Operator_ file: +cff_op_hflex android/freetype/src/cff/cffgload.c /^ cff_op_hflex,$/;" e enum:CFF_Operator_ file: +cff_op_hflex1 android/freetype/src/cff/cffgload.c /^ cff_op_hflex1,$/;" e enum:CFF_Operator_ file: +cff_op_hhcurveto android/freetype/src/cff/cffgload.c /^ cff_op_hhcurveto,$/;" e enum:CFF_Operator_ file: +cff_op_hintmask android/freetype/src/cff/cffgload.c /^ cff_op_hintmask,$/;" e enum:CFF_Operator_ file: +cff_op_hlineto android/freetype/src/cff/cffgload.c /^ cff_op_hlineto,$/;" e enum:CFF_Operator_ file: +cff_op_hmoveto android/freetype/src/cff/cffgload.c /^ cff_op_hmoveto,$/;" e enum:CFF_Operator_ file: +cff_op_hsbw android/freetype/src/cff/cffgload.c /^ cff_op_hsbw, \/* Type 1 opcode: invalid but seen in real life *\/$/;" e enum:CFF_Operator_ file: +cff_op_hstem android/freetype/src/cff/cffgload.c /^ cff_op_hstem,$/;" e enum:CFF_Operator_ file: +cff_op_hstemhm android/freetype/src/cff/cffgload.c /^ cff_op_hstemhm,$/;" e enum:CFF_Operator_ file: +cff_op_hvcurveto android/freetype/src/cff/cffgload.c /^ cff_op_hvcurveto,$/;" e enum:CFF_Operator_ file: +cff_op_ifelse android/freetype/src/cff/cffgload.c /^ cff_op_ifelse,$/;" e enum:CFF_Operator_ file: +cff_op_index android/freetype/src/cff/cffgload.c /^ cff_op_index,$/;" e enum:CFF_Operator_ file: +cff_op_load android/freetype/src/cff/cffgload.c /^ cff_op_load,$/;" e enum:CFF_Operator_ file: +cff_op_max android/freetype/src/cff/cffgload.c /^ cff_op_max$/;" e enum:CFF_Operator_ file: +cff_op_mul android/freetype/src/cff/cffgload.c /^ cff_op_mul,$/;" e enum:CFF_Operator_ file: +cff_op_neg android/freetype/src/cff/cffgload.c /^ cff_op_neg,$/;" e enum:CFF_Operator_ file: +cff_op_not android/freetype/src/cff/cffgload.c /^ cff_op_not,$/;" e enum:CFF_Operator_ file: +cff_op_or android/freetype/src/cff/cffgload.c /^ cff_op_or,$/;" e enum:CFF_Operator_ file: +cff_op_put android/freetype/src/cff/cffgload.c /^ cff_op_put,$/;" e enum:CFF_Operator_ file: +cff_op_random android/freetype/src/cff/cffgload.c /^ cff_op_random,$/;" e enum:CFF_Operator_ file: +cff_op_rcurveline android/freetype/src/cff/cffgload.c /^ cff_op_rcurveline,$/;" e enum:CFF_Operator_ file: +cff_op_return android/freetype/src/cff/cffgload.c /^ cff_op_return,$/;" e enum:CFF_Operator_ file: +cff_op_rlinecurve android/freetype/src/cff/cffgload.c /^ cff_op_rlinecurve,$/;" e enum:CFF_Operator_ file: +cff_op_rlineto android/freetype/src/cff/cffgload.c /^ cff_op_rlineto,$/;" e enum:CFF_Operator_ file: +cff_op_rmoveto android/freetype/src/cff/cffgload.c /^ cff_op_rmoveto,$/;" e enum:CFF_Operator_ file: +cff_op_roll android/freetype/src/cff/cffgload.c /^ cff_op_roll,$/;" e enum:CFF_Operator_ file: +cff_op_rrcurveto android/freetype/src/cff/cffgload.c /^ cff_op_rrcurveto,$/;" e enum:CFF_Operator_ file: +cff_op_sqrt android/freetype/src/cff/cffgload.c /^ cff_op_sqrt,$/;" e enum:CFF_Operator_ file: +cff_op_store android/freetype/src/cff/cffgload.c /^ cff_op_store,$/;" e enum:CFF_Operator_ file: +cff_op_sub android/freetype/src/cff/cffgload.c /^ cff_op_sub,$/;" e enum:CFF_Operator_ file: +cff_op_unknown android/freetype/src/cff/cffgload.c /^ cff_op_unknown = 0,$/;" e enum:CFF_Operator_ file: +cff_op_vhcurveto android/freetype/src/cff/cffgload.c /^ cff_op_vhcurveto,$/;" e enum:CFF_Operator_ file: +cff_op_vlineto android/freetype/src/cff/cffgload.c /^ cff_op_vlineto,$/;" e enum:CFF_Operator_ file: +cff_op_vmoveto android/freetype/src/cff/cffgload.c /^ cff_op_vmoveto,$/;" e enum:CFF_Operator_ file: +cff_op_vstem android/freetype/src/cff/cffgload.c /^ cff_op_vstem,$/;" e enum:CFF_Operator_ file: +cff_op_vstemhm android/freetype/src/cff/cffgload.c /^ cff_op_vstemhm,$/;" e enum:CFF_Operator_ file: +cff_op_vvcurveto android/freetype/src/cff/cffgload.c /^ cff_op_vvcurveto,$/;" e enum:CFF_Operator_ file: +cff_operator_seac android/freetype/src/cff/cffgload.c /^ cff_operator_seac( CFF_Decoder* decoder,$/;" f file: +cff_parse_cid_ros android/freetype/src/cff/cffparse.c /^ cff_parse_cid_ros( CFF_Parser parser )$/;" f file: +cff_parse_fixed android/freetype/src/cff/cffparse.c /^ cff_parse_fixed( FT_Byte** d )$/;" f file: +cff_parse_fixed_dynamic android/freetype/src/cff/cffparse.c /^ cff_parse_fixed_dynamic( FT_Byte** d,$/;" f file: +cff_parse_fixed_scaled android/freetype/src/cff/cffparse.c /^ cff_parse_fixed_scaled( FT_Byte** d,$/;" f file: +cff_parse_font_bbox android/freetype/src/cff/cffparse.c /^ cff_parse_font_bbox( CFF_Parser parser )$/;" f file: +cff_parse_font_matrix android/freetype/src/cff/cffparse.c /^ cff_parse_font_matrix( CFF_Parser parser )$/;" f file: +cff_parse_integer android/freetype/src/cff/cffparse.c /^ cff_parse_integer( FT_Byte* start,$/;" f file: +cff_parse_num android/freetype/src/cff/cffparse.c /^ cff_parse_num( FT_Byte** d )$/;" f file: +cff_parse_private_dict android/freetype/src/cff/cffparse.c /^ cff_parse_private_dict( CFF_Parser parser )$/;" f file: +cff_parse_real android/freetype/src/cff/cffparse.c /^ cff_parse_real( FT_Byte* start,$/;" f file: +cff_parser_init android/freetype/src/cff/cffparse.c /^ cff_parser_init( CFF_Parser parser,$/;" f +cff_ps_get_font_info android/freetype/src/cff/cffdrivr.c /^ cff_ps_get_font_info( CFF_Face face,$/;" f file: +cff_ps_has_glyph_names android/freetype/src/cff/cffdrivr.c /^ cff_ps_has_glyph_names( FT_Face face )$/;" f file: +cff_service_cid_info android/freetype/src/cff/cffdrivr.c /^ static const FT_Service_CIDRec cff_service_cid_info =$/;" v file: +cff_service_get_cmap_info android/freetype/src/cff/cffdrivr.c /^ static const FT_Service_TTCMapsRec cff_service_get_cmap_info =$/;" v file: +cff_service_glyph_dict android/freetype/src/cff/cffdrivr.c /^ static const FT_Service_GlyphDictRec cff_service_glyph_dict =$/;" v file: +cff_service_ps_info android/freetype/src/cff/cffdrivr.c /^ static const FT_Service_PsInfoRec cff_service_ps_info =$/;" v file: +cff_service_ps_name android/freetype/src/cff/cffdrivr.c /^ static const FT_Service_PsFontNameRec cff_service_ps_name =$/;" v file: +cff_services android/freetype/src/cff/cffdrivr.c /^ static const FT_ServiceDescRec cff_services[] =$/;" v file: +cff_sid_free_glyph_name android/freetype/src/cff/cffcmap.c /^ cff_sid_free_glyph_name( TT_Face face,$/;" f +cff_sid_to_glyph_name android/freetype/src/cff/cffcmap.c /^ cff_sid_to_glyph_name( TT_Face face,$/;" f +cff_size_done android/freetype/src/cff/cffobjs.c /^ cff_size_done( FT_Size cffsize ) \/* CFF_Size *\/$/;" f +cff_size_get_globals_funcs android/freetype/src/cff/cffobjs.c /^ cff_size_get_globals_funcs( CFF_Size size )$/;" f file: +cff_slot_done android/freetype/src/cff/cffobjs.c /^ cff_slot_done( FT_GlyphSlot slot )$/;" f +cff_standard_encoding android/freetype/src/cff/cffload.c /^ static const FT_UShort cff_standard_encoding[256] =$/;" v file: +cff_strcpy android/freetype/src/cff/cffobjs.c /^ cff_strcpy( FT_Memory memory,$/;" f file: +cff_subfont_done android/freetype/src/cff/cffload.c /^ cff_subfont_done( FT_Memory memory,$/;" f file: +cff_subfont_load android/freetype/src/cff/cffload.c /^ cff_subfont_load( CFF_SubFont font,$/;" f file: +cg demos/flowers.c /^ float cr, cg, cb, ca;$/;" m struct:__anon37 file: +change demos/subwaymap.c /^static int change = 0;$/;" v file: +change demos/tiger.c /^static int change = 0;$/;" v file: +charMatches android/expat/lib/xmltok.c /^ int (PTRCALL *charMatches)(const ENCODING *, const char *, int);$/;" m struct:normal_encoding file: +charRefNumber android/expat/lib/xmltok.h /^ int (PTRFASTCALL *charRefNumber)(const ENCODING *enc, const char *ptr);$/;" m struct:encoding +charRefNumber android/expat/lib/xmltok_impl.c /^PREFIX(charRefNumber)(const ENCODING *enc, const char *ptr)$/;" f file: +char_index android/freetype/include/freetype/internal/ftobjs.h /^ FT_CMap_CharIndexFunc char_index;$/;" m struct:FT_CMap_ClassRec_ +char_index android/freetype/include/freetype/internal/t1types.h /^ FT_UShort* char_index;$/;" m struct:T1_EncodingRecRec_ +char_index include/freetype/internal/ftobjs.h /^ FT_CMap_CharIndexFunc char_index;$/;" m struct:FT_CMap_ClassRec_ +char_index include/freetype/internal/t1types.h /^ FT_UShort* char_index;$/;" m struct:T1_EncodingRecRec_ +char_name android/freetype/include/freetype/internal/t1types.h /^ FT_String** char_name;$/;" m struct:T1_EncodingRecRec_ +char_name include/freetype/internal/t1types.h /^ FT_String** char_name;$/;" m struct:T1_EncodingRecRec_ +char_next android/freetype/include/freetype/internal/ftobjs.h /^ FT_CMap_CharNextFunc char_next;$/;" m struct:FT_CMap_ClassRec_ +char_next include/freetype/internal/ftobjs.h /^ FT_CMap_CharNextFunc char_next;$/;" m struct:FT_CMap_ClassRec_ +char_var_default android/freetype/include/freetype/internal/ftobjs.h /^ FT_CMap_CharVarIsDefaultFunc char_var_default;$/;" m struct:FT_CMap_ClassRec_ +char_var_default include/freetype/internal/ftobjs.h /^ FT_CMap_CharVarIsDefaultFunc char_var_default;$/;" m struct:FT_CMap_ClassRec_ +char_var_index android/freetype/include/freetype/internal/ftobjs.h /^ FT_CMap_CharVarIndexFunc char_var_index;$/;" m struct:FT_CMap_ClassRec_ +char_var_index include/freetype/internal/ftobjs.h /^ FT_CMap_CharVarIndexFunc char_var_index;$/;" m struct:FT_CMap_ClassRec_ +characterDataHandler android/expat/lib/xmlparse.c /^#define characterDataHandler /;" d file: +charcode android/freetype/src/cff/cffload.h /^ cff_get_standard_encoding( FT_UInt charcode );$/;" v +charmap android/freetype/include/freetype/freetype.h /^ FT_CharMap charmap;$/;" m struct:FT_FaceRec_ +charmap android/freetype/include/freetype/freetype.h /^ FT_Get_Charmap_Index( FT_CharMap charmap );$/;" v +charmap android/freetype/include/freetype/internal/ftobjs.h /^ FT_CharMapRec charmap;$/;" m struct:FT_CMapRec_ +charmap android/freetype/include/freetype/tttables.h /^ FT_Get_CMap_Format( FT_CharMap charmap );$/;" v +charmap android/freetype/include/freetype/tttables.h /^ FT_Get_CMap_Language_ID( FT_CharMap charmap );$/;" v +charmap include/freetype/freetype.h /^ FT_CharMap charmap;$/;" m struct:FT_FaceRec_ +charmap include/freetype/freetype.h /^ FT_Get_Charmap_Index( FT_CharMap charmap );$/;" v +charmap include/freetype/internal/ftobjs.h /^ FT_CharMapRec charmap;$/;" m struct:FT_CMapRec_ +charmap include/freetype/tttables.h /^ FT_Get_CMap_Format( FT_CharMap charmap );$/;" v +charmap include/freetype/tttables.h /^ FT_Get_CMap_Language_ID( FT_CharMap charmap );$/;" v +charmaprecs android/freetype/include/freetype/internal/t1types.h /^ FT_CharMapRec charmaprecs[2];$/;" m struct:T1_FaceRec_ +charmaprecs include/freetype/internal/t1types.h /^ FT_CharMapRec charmaprecs[2];$/;" m struct:T1_FaceRec_ +charmaps android/freetype/include/freetype/freetype.h /^ FT_CharMap* charmaps;$/;" m struct:FT_FaceRec_ +charmaps android/freetype/include/freetype/internal/t1types.h /^ FT_CharMap charmaps[2];$/;" m struct:T1_FaceRec_ +charmaps include/freetype/freetype.h /^ FT_CharMap* charmaps;$/;" m struct:FT_FaceRec_ +charmaps include/freetype/internal/t1types.h /^ FT_CharMap charmaps[2];$/;" m struct:T1_FaceRec_ +charset android/freetype/include/freetype/ftwinfnt.h /^ FT_Byte charset;$/;" m struct:FT_WinFNT_HeaderRec_ +charset android/freetype/src/cff/cfftypes.h /^ CFF_CharsetRec charset;$/;" m struct:CFF_FontRec_ +charset include/freetype/ftwinfnt.h /^ FT_Byte charset;$/;" m struct:FT_WinFNT_HeaderRec_ +charset src/picasso_font.h /^ int charset(void) const { return m_charset; }$/;" f class:picasso::font_desc +charset_encoding android/freetype/include/freetype/internal/pcftypes.h /^ char* charset_encoding;$/;" m struct:PCF_Public_FaceRec_ +charset_encoding include/freetype/internal/pcftypes.h /^ char* charset_encoding;$/;" m struct:PCF_Public_FaceRec_ +charset_latin src/picasso_font.h /^ charset_latin,$/;" e enum:picasso::__anon214 +charset_offset android/freetype/src/cff/cfftypes.h /^ FT_ULong charset_offset;$/;" m struct:CFF_FontRecDictRec_ +charset_registry android/freetype/include/freetype/internal/pcftypes.h /^ char* charset_registry;$/;" m struct:PCF_Public_FaceRec_ +charset_registry include/freetype/internal/pcftypes.h /^ char* charset_registry;$/;" m struct:PCF_Public_FaceRec_ +charset_unicode src/picasso_font.h /^ charset_unicode,$/;" e enum:picasso::__anon214 +charstring_type android/freetype/src/cff/cfftypes.h /^ FT_Int charstring_type;$/;" m struct:CFF_FontRecDictRec_ +charstrings android/freetype/include/freetype/internal/t1types.h /^ FT_Byte** charstrings; \/* array of glyph charstrings *\/$/;" m struct:T1_FontRec_ +charstrings include/freetype/internal/t1types.h /^ FT_Byte** charstrings; \/* array of glyph charstrings *\/$/;" m struct:T1_FontRec_ +charstrings_block android/freetype/include/freetype/internal/t1types.h /^ FT_Byte* charstrings_block;$/;" m struct:T1_FontRec_ +charstrings_block include/freetype/internal/t1types.h /^ FT_Byte* charstrings_block;$/;" m struct:T1_FontRec_ +charstrings_index android/freetype/src/cff/cfftypes.h /^ CFF_IndexRec charstrings_index;$/;" m struct:CFF_FontRec_ +charstrings_len android/freetype/include/freetype/internal/t1types.h /^ FT_PtrDist* charstrings_len;$/;" m struct:T1_FontRec_ +charstrings_len include/freetype/internal/t1types.h /^ FT_PtrDist* charstrings_len;$/;" m struct:T1_FontRec_ +charstrings_offset android/freetype/src/cff/cfftypes.h /^ FT_ULong charstrings_offset;$/;" m struct:CFF_FontRecDictRec_ +charvariant_list android/freetype/include/freetype/internal/ftobjs.h /^ FT_CMap_CharVariantListFunc charvariant_list;$/;" m struct:FT_CMap_ClassRec_ +charvariant_list include/freetype/internal/ftobjs.h /^ FT_CMap_CharVariantListFunc charvariant_list;$/;" m struct:FT_CMap_ClassRec_ +check demos/flowers.c /^static int check = 0;$/;" v file: +checkCharRefNumber android/expat/lib/xmltok.c /^checkCharRefNumber(int result)$/;" f file: +checkPiTarget android/expat/lib/xmltok_impl.c /^PREFIX(checkPiTarget)(const ENCODING *enc, const char *ptr,$/;" f file: +check_points android/freetype/include/freetype/internal/psaux.h /^ T1_Builder_Check_Points_Func check_points;$/;" m struct:T1_Builder_FuncsRec_ +check_points android/freetype/src/cff/cffgload.c /^ check_points( CFF_Builder* builder,$/;" f file: +check_points android/freetype/src/psaux/t1decode.c /^#define check_points /;" d file: +check_points include/freetype/internal/psaux.h /^ T1_Builder_Check_Points_Func check_points;$/;" m struct:T1_Builder_FuncsRec_ +check_table_dir android/freetype/src/sfnt/ttload.c /^ check_table_dir( SFNT_Header sfnt,$/;" f file: +childcnt android/expat/lib/xmlparse.c /^ int childcnt;$/;" m struct:__anon12 file: +children android/expat/lib/expat.h /^ XML_Content * children;$/;" m struct:XML_cp +children include/expat.h /^ XML_Content * children;$/;" m struct:XML_cp +cid android/freetype/include/freetype/internal/t1types.h /^ CID_FaceInfoRec cid;$/;" m struct:CID_FaceRec_ +cid include/freetype/internal/t1types.h /^ CID_FaceInfoRec cid;$/;" m struct:CID_FaceRec_ +cid_count android/freetype/include/freetype/t1tables.h /^ FT_ULong cid_count;$/;" m struct:CID_FaceInfoRec_ +cid_count android/freetype/src/cff/cfftypes.h /^ FT_ULong cid_count;$/;" m struct:CFF_FontRecDictRec_ +cid_count include/freetype/t1tables.h /^ FT_ULong cid_count;$/;" m struct:CID_FaceInfoRec_ +cid_fd_array_offset android/freetype/src/cff/cfftypes.h /^ FT_ULong cid_fd_array_offset;$/;" m struct:CFF_FontRecDictRec_ +cid_fd_select_offset android/freetype/src/cff/cfftypes.h /^ FT_ULong cid_fd_select_offset;$/;" m struct:CFF_FontRecDictRec_ +cid_font_name android/freetype/include/freetype/t1tables.h /^ FT_String* cid_font_name;$/;" m struct:CID_FaceInfoRec_ +cid_font_name android/freetype/src/cff/cfftypes.h /^ FT_UInt cid_font_name;$/;" m struct:CFF_FontRecDictRec_ +cid_font_name include/freetype/t1tables.h /^ FT_String* cid_font_name;$/;" m struct:CID_FaceInfoRec_ +cid_font_revision android/freetype/src/cff/cfftypes.h /^ FT_Long cid_font_revision;$/;" m struct:CFF_FontRecDictRec_ +cid_font_type android/freetype/include/freetype/t1tables.h /^ FT_Int cid_font_type;$/;" m struct:CID_FaceInfoRec_ +cid_font_type android/freetype/src/cff/cfftypes.h /^ FT_Long cid_font_type;$/;" m struct:CFF_FontRecDictRec_ +cid_font_type include/freetype/t1tables.h /^ FT_Int cid_font_type;$/;" m struct:CID_FaceInfoRec_ +cid_font_version android/freetype/src/cff/cfftypes.h /^ FT_Long cid_font_version;$/;" m struct:CFF_FontRecDictRec_ +cid_ordering android/freetype/src/cff/cfftypes.h /^ FT_UInt cid_ordering;$/;" m struct:CFF_FontRecDictRec_ +cid_registry android/freetype/src/cff/cfftypes.h /^ FT_UInt cid_registry;$/;" m struct:CFF_FontRecDictRec_ +cid_stream android/freetype/include/freetype/internal/t1types.h /^ FT_Stream cid_stream;$/;" m struct:CID_FaceRec_ +cid_stream include/freetype/internal/t1types.h /^ FT_Stream cid_stream;$/;" m struct:CID_FaceRec_ +cid_supplement android/freetype/src/cff/cfftypes.h /^ FT_ULong cid_supplement;$/;" m struct:CFF_FontRecDictRec_ +cid_uid_base android/freetype/src/cff/cfftypes.h /^ FT_ULong cid_uid_base;$/;" m struct:CFF_FontRecDictRec_ +cid_version android/freetype/include/freetype/t1tables.h /^ FT_Fixed cid_version;$/;" m struct:CID_FaceInfoRec_ +cid_version include/freetype/t1tables.h /^ FT_Fixed cid_version;$/;" m struct:CID_FaceInfoRec_ +cidmap_offset android/freetype/include/freetype/t1tables.h /^ FT_ULong cidmap_offset;$/;" m struct:CID_FaceInfoRec_ +cidmap_offset include/freetype/t1tables.h /^ FT_ULong cidmap_offset;$/;" m struct:CID_FaceInfoRec_ +cids android/freetype/src/cff/cfftypes.h /^ FT_UShort* cids; \/* the inverse mapping of `sids'; only needed *\/$/;" m struct:CFF_CharsetRec_ +ckern_validate_func android/freetype/include/freetype/internal/services/svgxval.h /^ (*ckern_validate_func)( FT_Face face,$/;" t +ckern_validate_func include/freetype/internal/services/svgxval.h /^ (*ckern_validate_func)( FT_Face face,$/;" t +clazz android/freetype/include/freetype/ftglyph.h /^ const FT_Glyph_Class* clazz;$/;" m struct:FT_GlyphRec_ +clazz android/freetype/include/freetype/internal/ftobjs.h /^ FT_CMap_Class clazz;$/;" m struct:FT_CMapRec_ +clazz android/freetype/include/freetype/internal/ftobjs.h /^ FT_Driver_Class clazz;$/;" m struct:FT_DriverRec_ +clazz android/freetype/include/freetype/internal/ftobjs.h /^ FT_Module_Class* clazz;$/;" m struct:FT_ModuleRec_ +clazz android/freetype/include/freetype/internal/ftobjs.h /^ FT_Renderer_Class* clazz;$/;" m struct:FT_RendererRec_ +clazz android/freetype/src/autofit/aftypes.h /^ AF_ScriptClass clazz;$/;" m struct:AF_ScriptMetricsRec_ +clazz android/freetype/src/sfnt/ttcmap.h /^ FT_CMap_ClassRec clazz;$/;" m struct:TT_CMap_ClassRec_ +clazz include/freetype/ftglyph.h /^ const FT_Glyph_Class* clazz;$/;" m struct:FT_GlyphRec_ +clazz include/freetype/internal/ftobjs.h /^ FT_CMap_Class clazz;$/;" m struct:FT_CMapRec_ +clazz include/freetype/internal/ftobjs.h /^ FT_Driver_Class clazz;$/;" m struct:FT_DriverRec_ +clazz include/freetype/internal/ftobjs.h /^ FT_Module_Class* clazz;$/;" m struct:FT_ModuleRec_ +clazz include/freetype/internal/ftobjs.h /^ FT_Renderer_Class* clazz;$/;" m struct:FT_RendererRec_ +clear src/gfx/gfx_blur.h /^ void clear(void) $/;" f struct:gfx::stack_blur_calc_rgba +clear src/gfx/gfx_renderer.h /^ void clear(const color_type& c)$/;" f class:gfx::gfx_renderer +clear src/include/data_vector.h /^ void clear(void) { m_size = 0; }$/;" f class:picasso::pod_vector +clear src/include/data_vector.h /^ void clear(void) { m_size = 0; }$/;" f class:picasso::pod_bvector +clear src/picasso_font.h /^ void clear(void)$/;" f class:picasso::mono_storage +clear src/picasso_objects.h /^ void clear()$/;" f struct:picasso::graphic_brush +clear_clip src/gfx/gfx_painter.h /^inline void gfx_painter::clear_clip(void)$/;" f class:gfx::gfx_painter +clear_color_channel src/gfx/gfx_rendering_buffer.h /^ virtual void clear_color_channel(void)$/;" f class:gfx::gfx_rendering_buffer +clear_color_channel src/picasso_rendering_buffer.cpp /^void rendering_buffer::clear_color_channel(void) $/;" f class:picasso::rendering_buffer +clear_dash src/picasso_objects.h /^ void clear_dash()$/;" f struct:picasso::graphic_pen +clear_filter_colors src/gfx/gfx_mask_layer.h /^ virtual void clear_filter_colors(void)$/;" f class:gfx::gfx_mask_layer +clear_filter_colors src/picasso_mask.cpp /^void mask_layer::clear_filter_colors(void)$/;" f class:picasso::mask_layer +clear_key src/gfx/gfx_pixfmt_wrapper.h /^ void clear_key(void)$/;" f class:gfx::gfx_pixfmt_wrapper +clear_mask src/gfx/gfx_pixfmt_wrapper.h /^ void clear_mask(void)$/;" f class:gfx::gfx_pixfmt_wrapper +clear_masking src/gfx/gfx_painter.h /^inline void gfx_painter::clear_masking(void)$/;" f class:gfx::gfx_painter +clear_orientation src/include/graphic_base.h /^inline unsigned int clear_orientation(unsigned int c)$/;" f namespace:picasso +clear_stops src/gfx/gfx_gradient_adapter.h /^ virtual void clear_stops(void)$/;" f class:gfx::gfx_gradient_adapter +clear_stops src/picasso_gradient.cpp /^void gradient_adapter::clear_stops(void)$/;" f class:picasso::gradient_adapter +clear_timer demos/platform_gix.c /^void clear_timer(unsigned id)$/;" f +clear_timer demos/platform_gtk2.c /^void clear_timer(unsigned id)$/;" f +clear_timer demos/platform_minigui.c /^void clear_timer(unsigned id)$/;" f +clear_timer demos/platform_qt4.cpp /^extern "C" void clear_timer(unsigned id)$/;" f +clear_timer demos/platform_win32.c /^void clear_timer(unsigned id)$/;" f +clip src/include/graphic_base.h /^ bool clip(const self_type& r)$/;" f struct:picasso::rect_base +clip src/picasso_objects.h /^ clip_area clip;$/;" m struct:picasso::context_state +clip_area src/picasso_objects.h /^ clip_area()$/;" f struct:picasso::clip_area +clip_area src/picasso_objects.h /^ clip_area(const clip_area& o)$/;" f struct:picasso::clip_area +clip_area src/picasso_objects.h /^struct clip_area {$/;" s namespace:picasso +clip_box android/freetype/include/freetype/ftimage.h /^ FT_BBox clip_box;$/;" m struct:FT_Raster_Params_ +clip_box android/freetype/src/smooth/ftgrays.c /^ FT_BBox clip_box;$/;" m struct:TWorker_ file: +clip_box include/freetype/ftimage.h /^ FT_BBox clip_box;$/;" m struct:FT_Raster_Params_ +clip_content src/picasso_objects.h /^ clip_content = 1,$/;" e enum:picasso::__anon226 +clip_device src/picasso_objects.h /^ clip_device = 2,$/;" e enum:picasso::__anon226 +clip_diff src/include/convert.h /^ clip_diff,$/;" e enum:picasso::conv_clipper::__anon186 +clip_intersect src/include/convert.h /^ clip_intersect,$/;" e enum:picasso::conv_clipper::__anon186 +clip_none src/picasso_objects.h /^ clip_none = 0,$/;" e enum:picasso::__anon226 +clip_op src/include/convert.h /^ } clip_op;$/;" t class:picasso::conv_clipper typeref:enum:picasso::conv_clipper::__anon186 +clip_rect src/gfx/gfx_renderer.h /^ bool clip_rect(int x1, int y1, int x2, int y2)$/;" f class:gfx::gfx_renderer +clip_rect src/gfx/gfx_renderer.h /^ const rect& clip_rect(void) const { return m_clip_rect; }$/;" f class:gfx::gfx_renderer +clip_rect_area src/gfx/gfx_renderer.h /^ rect clip_rect_area(rect& dst, rect& src, int wsrc, int hsrc) const$/;" f class:gfx::gfx_renderer +clip_union src/include/convert.h /^ clip_union,$/;" e enum:picasso::conv_clipper::__anon186 +clip_xor src/include/convert.h /^ clip_xor,$/;" e enum:picasso::conv_clipper::__anon186 +clocktime_t demos/timeuse.h /^typedef LARGE_INTEGER clocktime_t;$/;" t +clocktime_t test/timeuse.h /^typedef LARGE_INTEGER clocktime_t;$/;" t +close android/freetype/include/freetype/ftsystem.h /^ FT_Stream_CloseFunc close;$/;" m struct:FT_StreamRec_ +close android/freetype/include/freetype/internal/pshints.h /^ T1_Hints_CloseFunc close;$/;" m struct:T1_Hints_FuncsRec_ +close android/freetype/include/freetype/internal/pshints.h /^ T2_Hints_CloseFunc close;$/;" m struct:T2_Hints_FuncsRec_ +close include/freetype/ftsystem.h /^ FT_Stream_CloseFunc close;$/;" m struct:FT_StreamRec_ +close include/freetype/internal/pshints.h /^ T1_Hints_CloseFunc close;$/;" m struct:T1_Hints_FuncsRec_ +close include/freetype/internal/pshints.h /^ T2_Hints_CloseFunc close;$/;" m struct:T2_Hints_FuncsRec_ +close src/include/vertex_dist.h /^ void close(bool closed)$/;" f class:picasso::vertex_sequence +close tools/gyp/build/lib/gyp/common.py /^ def close(self):$/;" m class:WriteOnDiff.Writer +close tools/gyp/pylib/gyp/common.py /^ def close(self):$/;" m class:WriteOnDiff.Writer +close_contour android/freetype/include/freetype/internal/psaux.h /^ T1_Builder_Close_Contour_Func close_contour;$/;" m struct:T1_Builder_FuncsRec_ +close_contour android/freetype/src/psaux/t1decode.c /^#define close_contour /;" d file: +close_contour include/freetype/internal/psaux.h /^ T1_Builder_Close_Contour_Func close_contour;$/;" m struct:T1_Builder_FuncsRec_ +close_first src/include/convert.h /^ close_first,$/;" e enum:picasso::conv_stroke::__anon192 +close_polygon src/core/graphic_path.cpp /^void graphic_path::close_polygon(unsigned int flags)$/;" f class:picasso::graphic_path +close_polygon src/gfx/gfx_rasterizer_scanline.h /^ void close_polygon(void)$/;" f class:gfx::gfx_rasterizer_scanline_aa +cmap android/freetype/include/freetype/internal/ftobjs.h /^ FT_CMap_Done( FT_CMap cmap );$/;" v +cmap android/freetype/include/freetype/internal/services/svpscmap.h /^ FT_CMapRec cmap;$/;" m struct:PS_UnicodesRec_ +cmap android/freetype/src/cff/cffcmap.h /^ FT_CMapRec cmap;$/;" m struct:CFF_CMapStdRec_ +cmap android/freetype/src/psaux/t1cmap.h /^ FT_CMapRec cmap;$/;" m struct:T1_CMapStdRec_ +cmap android/freetype/src/psaux/t1cmap.h /^ FT_CMapRec cmap;$/;" m struct:T1_CMapCustomRec_ +cmap android/freetype/src/sfnt/ttcmap.c /^ TT_CMapRec cmap;$/;" m struct:TT_CMap12Rec_ file: +cmap android/freetype/src/sfnt/ttcmap.c /^ TT_CMapRec cmap;$/;" m struct:TT_CMap14Rec_ file: +cmap android/freetype/src/sfnt/ttcmap.c /^ TT_CMapRec cmap;$/;" m struct:TT_CMap4Rec_ file: +cmap android/freetype/src/sfnt/ttcmap.h /^ FT_CMapRec cmap;$/;" m struct:TT_CMapRec_ +cmap include/freetype/internal/ftobjs.h /^ FT_CMap_Done( FT_CMap cmap );$/;" v +cmap include/freetype/internal/services/svpscmap.h /^ FT_CMapRec cmap;$/;" m struct:PS_UnicodesRec_ +cmap_size android/freetype/include/freetype/internal/tttypes.h /^ FT_ULong cmap_size;$/;" m struct:TT_FaceRec_ +cmap_size include/freetype/internal/tttypes.h /^ FT_ULong cmap_size;$/;" m struct:TT_FaceRec_ +cmap_table android/freetype/include/freetype/internal/tttypes.h /^ FT_Byte* cmap_table; \/* extracted `cmap' table *\/$/;" m struct:TT_FaceRec_ +cmap_table include/freetype/internal/tttypes.h /^ FT_Byte* cmap_table; \/* extracted `cmap' table *\/$/;" m struct:TT_FaceRec_ +cmdclass tools/gyp/setup.py /^ cmdclass = {'install': install,$/;" v +cmds demos/subwaymap.c /^ const unsigned char *cmds;$/;" m struct:__anon46 file: +code android/freetype/include/freetype/internal/t1types.h /^ FT_Byte** code;$/;" m struct:CID_SubrsRec_ +code android/freetype/src/cff/cffparse.c /^ int code;$/;" m struct:CFF_Field_Handler_ file: +code android/freetype/src/truetype/ttinterp.h /^ FT_Byte* code; \/* current code range *\/$/;" m struct:TT_ExecContextRec_ +code include/freetype/internal/t1types.h /^ FT_Byte** code;$/;" m struct:CID_SubrsRec_ +code src/include/graphic_base.h /^ unsigned int code;$/;" m struct:picasso::_glyph +code tools/gyp/build/lib/gyp/generator/gypsh.py /^import code$/;" i +code tools/gyp/pylib/gyp/generator/gypsh.py /^import code$/;" i +codeRangeTable android/freetype/src/truetype/ttinterp.h /^ TT_CodeRangeTable codeRangeTable; \/* table of valid code ranges *\/$/;" m struct:TT_ExecContextRec_ +codeRangeTable android/freetype/src/truetype/ttobjs.h /^ TT_CodeRangeTable codeRangeTable;$/;" m struct:TT_SizeRec_ +codeSize android/freetype/src/truetype/ttinterp.h /^ FT_Long codeSize; \/* size of current range *\/$/;" m struct:TT_ExecContextRec_ +code_first android/freetype/include/freetype/internal/t1types.h /^ FT_Int code_first;$/;" m struct:T1_EncodingRecRec_ +code_first include/freetype/internal/t1types.h /^ FT_Int code_first;$/;" m struct:T1_EncodingRecRec_ +code_last android/freetype/include/freetype/internal/t1types.h /^ FT_Int code_last;$/;" m struct:T1_EncodingRecRec_ +code_last include/freetype/internal/t1types.h /^ FT_Int code_last;$/;" m struct:T1_EncodingRecRec_ +code_to_sid android/freetype/src/psaux/t1cmap.h /^ const FT_UShort* code_to_sid;$/;" m struct:T1_CMapStdRec_ +codes android/freetype/src/cff/cfftypes.h /^ FT_UShort codes[256];$/;" m struct:CFF_EncodingRec_ +collections tools/gyp/build/lib/gyp/generator/dump_dependency_json.py /^import collections$/;" i +collections tools/gyp/pylib/gyp/generator/dump_dependency_json.py /^import collections$/;" i +collections tools/gyp/tools/graphviz.py /^import collections$/;" i +color demos/subwaymap.c /^ ps_color color;$/;" m struct:__anon46 file: +color src/gfx/gfx_gradient_adapter.cpp /^ color_type color(void) const$/;" f struct:gfx::color_interpolator +color src/gfx/gfx_gradient_adapter.h /^ color_type color;$/;" m struct:gfx::gfx_gradient_table::color_point +color src/gfx/gfx_scanline_renderer.h /^ const color_type& color() const { return m_color; }$/;" f class:gfx::gfx_renderer_scanline_bin_solid +color src/gfx/gfx_scanline_renderer.h /^ const color_type& color(void) const { return m_color; }$/;" f class:gfx::gfx_renderer_scanline_aa_solid +color src/gfx/gfx_scanline_renderer.h /^ void color(const color_type& c) { m_color = c; }$/;" f class:gfx::gfx_renderer_scanline_aa_solid +color src/gfx/gfx_scanline_renderer.h /^ void color(const color_type& c) { m_color = c; }$/;" f class:gfx::gfx_renderer_scanline_bin_solid +color src/picasso_objects.h /^ rgba color; $/;" m struct:picasso::graphic_brush +color src/picasso_objects.h /^ rgba color; $/;" m struct:picasso::graphic_pen +color src/picasso_objects.h /^ rgba color;$/;" m struct:picasso::shadow_state +color_func src/gfx/gfx_gradient_adapter.h /^ typedef gfx_gradient_table color_func;$/;" t class:gfx::gfx_span_gradient +color_interpolator src/gfx/gfx_gradient_adapter.cpp /^ color_interpolator(const color_type& c1, const color_type& c2, unsigned len)$/;" f struct:gfx::color_interpolator +color_interpolator src/gfx/gfx_gradient_adapter.cpp /^struct color_interpolator$/;" s namespace:gfx file: +color_mask src/gfx/gfx_span_image_filters.h /^ color_mask = 0xFFFFFFFF,$/;" e enum:gfx::gfx_span_image_filter_rgb16::__anon174 +color_mask src/gfx/gfx_span_image_filters.h /^ color_mask = 0xFFFFFFFF,$/;" e enum:gfx::gfx_span_image_filter_rgb16_nn::__anon175 +color_point src/gfx/gfx_gradient_adapter.h /^ color_point() : offset(INT_TO_SCALAR(0)) { }$/;" f struct:gfx::gfx_gradient_table::color_point +color_point src/gfx/gfx_gradient_adapter.h /^ color_point(scalar off, const color_type& c)$/;" f struct:gfx::gfx_gradient_table::color_point +color_point src/gfx/gfx_gradient_adapter.h /^ struct color_point {$/;" s class:gfx::gfx_gradient_table +color_profile_type src/gfx/gfx_gradient_adapter.h /^ typedef pod_bvector color_profile_type;$/;" t class:gfx::gfx_gradient_table +color_ref android/freetype/include/freetype/internal/tttypes.h /^ FT_ULong color_ref;$/;" m struct:TT_SBit_StrikeRec_ +color_ref include/freetype/internal/tttypes.h /^ FT_ULong color_ref;$/;" m struct:TT_SBit_StrikeRec_ +color_table_offset android/freetype/include/freetype/ftwinfnt.h /^ FT_UShort color_table_offset;$/;" m struct:FT_WinFNT_HeaderRec_ +color_table_offset include/freetype/ftwinfnt.h /^ FT_UShort color_table_offset;$/;" m struct:FT_WinFNT_HeaderRec_ +color_table_size src/gfx/gfx_gradient_adapter.h /^ color_table_size = 256,$/;" e enum:gfx::gfx_gradient_table::__anon55 +color_table_type src/gfx/gfx_gradient_adapter.h /^ typedef pod_array color_table_type;$/;" t class:gfx::gfx_gradient_table +color_type src/gfx/gfx_blur.h /^ typedef ColorType color_type;$/;" t class:gfx::stack_blur +color_type src/gfx/gfx_blur.h /^ typedef typename pixfmt_type::color_type color_type;$/;" t class:gfx::pixfmt_transformer +color_type src/gfx/gfx_gradient_adapter.cpp /^ typedef rgba8 color_type;$/;" t struct:gfx::color_interpolator file: +color_type src/gfx/gfx_gradient_adapter.h /^ typedef ColorType color_type;$/;" t class:gfx::gfx_span_gradient +color_type src/gfx/gfx_gradient_adapter.h /^ typedef rgba8 color_type;$/;" t class:gfx::gfx_gradient_table +color_type src/gfx/gfx_image_accessors.h /^ typedef typename PixFmt::color_type color_type;$/;" t class:gfx::image_accessor +color_type src/gfx/gfx_image_accessors.h /^ typedef typename PixFmt::color_type color_type;$/;" t class:gfx::image_accessor_wrap +color_type src/gfx/gfx_mask_layer.h /^ typedef typename pixfmt_type::color_type color_type;$/;" t class:gfx::gfx_pixfmt_amask_adaptor +color_type src/gfx/gfx_painter.h /^ typedef typename pixfmt::color_type color_type;$/;" t class:gfx::gfx_painter +color_type src/gfx/gfx_painter_helper.h /^ typedef format::color_type color_type;$/;" t struct:gfx::painter_raster +color_type src/gfx/gfx_pixfmt_rgb.h /^ typedef ColorType color_type;$/;" t class:gfx::blend_op_adaptor_rgb +color_type src/gfx/gfx_pixfmt_rgb.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_clear +color_type src/gfx/gfx_pixfmt_rgb.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_color_burn +color_type src/gfx/gfx_pixfmt_rgb.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_color_dodge +color_type src/gfx/gfx_pixfmt_rgb.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_contrast +color_type src/gfx/gfx_pixfmt_rgb.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_darken +color_type src/gfx/gfx_pixfmt_rgb.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_difference +color_type src/gfx/gfx_pixfmt_rgb.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_dst +color_type src/gfx/gfx_pixfmt_rgb.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_dst_atop +color_type src/gfx/gfx_pixfmt_rgb.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_dst_in +color_type src/gfx/gfx_pixfmt_rgb.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_dst_out +color_type src/gfx/gfx_pixfmt_rgb.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_dst_over +color_type src/gfx/gfx_pixfmt_rgb.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_exclusion +color_type src/gfx/gfx_pixfmt_rgb.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_hard_light +color_type src/gfx/gfx_pixfmt_rgb.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_invert +color_type src/gfx/gfx_pixfmt_rgb.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_invert_rgb +color_type src/gfx/gfx_pixfmt_rgb.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_lighten +color_type src/gfx/gfx_pixfmt_rgb.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_minus +color_type src/gfx/gfx_pixfmt_rgb.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_multiply +color_type src/gfx/gfx_pixfmt_rgb.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_overlay +color_type src/gfx/gfx_pixfmt_rgb.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_plus +color_type src/gfx/gfx_pixfmt_rgb.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_screen +color_type src/gfx/gfx_pixfmt_rgb.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_soft_light +color_type src/gfx/gfx_pixfmt_rgb.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_src +color_type src/gfx/gfx_pixfmt_rgb.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_src_atop +color_type src/gfx/gfx_pixfmt_rgb.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_src_in +color_type src/gfx/gfx_pixfmt_rgb.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_src_out +color_type src/gfx/gfx_pixfmt_rgb.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_src_over +color_type src/gfx/gfx_pixfmt_rgb.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_xor +color_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename blender_type::color_type color_type;$/;" t class:gfx::pixfmt_blender_rgb +color_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_16_clear +color_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_16_color_burn +color_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_16_color_dodge +color_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_16_contrast +color_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_16_darken +color_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_16_difference +color_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_16_dst_atop +color_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_16_dst_in +color_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_16_dst_out +color_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_16_dst_over +color_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_16_exclusion +color_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_16_hard_light +color_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_16_invert +color_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_16_invert_rgb +color_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_16_lighten +color_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_16_minus +color_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_16_multiply +color_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_16_overlay +color_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_16_plus +color_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_16_screen +color_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_16_soft_light +color_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_16_src +color_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_16_src_atop +color_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_16_src_in +color_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_16_src_out +color_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_16_src_over +color_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgb_16_xor +color_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef rgba8 color_type;$/;" t class:gfx::blender_rgb555 +color_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef rgba8 color_type;$/;" t class:gfx::blender_rgb565 +color_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename blender_type::color_type color_type;$/;" t class:gfx::pixfmt_blender_rgb16 +color_type src/gfx/gfx_pixfmt_rgba.h /^ typedef ColorType color_type;$/;" t class:gfx::blend_op_adaptor_rgba +color_type src/gfx/gfx_pixfmt_rgba.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgba_clear +color_type src/gfx/gfx_pixfmt_rgba.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgba_color_burn +color_type src/gfx/gfx_pixfmt_rgba.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgba_color_dodge +color_type src/gfx/gfx_pixfmt_rgba.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgba_contrast +color_type src/gfx/gfx_pixfmt_rgba.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgba_darken +color_type src/gfx/gfx_pixfmt_rgba.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgba_difference +color_type src/gfx/gfx_pixfmt_rgba.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgba_dst +color_type src/gfx/gfx_pixfmt_rgba.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgba_dst_atop +color_type src/gfx/gfx_pixfmt_rgba.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgba_dst_in +color_type src/gfx/gfx_pixfmt_rgba.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgba_dst_out +color_type src/gfx/gfx_pixfmt_rgba.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgba_dst_over +color_type src/gfx/gfx_pixfmt_rgba.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgba_exclusion +color_type src/gfx/gfx_pixfmt_rgba.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgba_hard_light +color_type src/gfx/gfx_pixfmt_rgba.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgba_invert +color_type src/gfx/gfx_pixfmt_rgba.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgba_invert_rgb +color_type src/gfx/gfx_pixfmt_rgba.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgba_lighten +color_type src/gfx/gfx_pixfmt_rgba.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgba_minus +color_type src/gfx/gfx_pixfmt_rgba.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgba_multiply +color_type src/gfx/gfx_pixfmt_rgba.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgba_overlay +color_type src/gfx/gfx_pixfmt_rgba.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgba_plus +color_type src/gfx/gfx_pixfmt_rgba.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgba_screen +color_type src/gfx/gfx_pixfmt_rgba.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgba_soft_light +color_type src/gfx/gfx_pixfmt_rgba.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgba_src +color_type src/gfx/gfx_pixfmt_rgba.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgba_src_atop +color_type src/gfx/gfx_pixfmt_rgba.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgba_src_in +color_type src/gfx/gfx_pixfmt_rgba.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgba_src_out +color_type src/gfx/gfx_pixfmt_rgba.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgba_src_over +color_type src/gfx/gfx_pixfmt_rgba.h /^ typedef ColorType color_type;$/;" t struct:gfx::composite_op_rgba_xor +color_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename blender_type::color_type color_type;$/;" t class:gfx::pixfmt_blender_rgba +color_type src/gfx/gfx_pixfmt_wrapper.h /^ typedef typename pixfmt_type::color_type color_type;$/;" t class:gfx::gfx_pixfmt_wrapper +color_type src/gfx/gfx_pixfmt_wrapper.h /^ typedef typename pixfmt_type::color_type color_type;$/;" t class:gfx::pattern_wrapper +color_type src/gfx/gfx_renderer.h /^ typedef typename pixfmt_type::color_type color_type;$/;" t class:gfx::gfx_renderer +color_type src/gfx/gfx_scanline_renderer.h /^ typedef typename ren_type::color_type color_type;$/;" t class:gfx::gfx_renderer_scanline_aa_solid +color_type src/gfx/gfx_scanline_renderer.h /^ typedef typename ren_type::color_type color_type;$/;" t class:gfx::gfx_renderer_scanline_bin_solid +color_type src/gfx/gfx_span_generator.h /^ typedef ColorType color_type;$/;" t class:gfx::gfx_span_allocator +color_type src/gfx/gfx_span_image_filters.h /^ typedef ColorType color_type;$/;" t class:gfx::gfx_span_image_filter_rgb +color_type src/gfx/gfx_span_image_filters.h /^ typedef ColorType color_type;$/;" t class:gfx::gfx_span_image_filter_rgb16 +color_type src/gfx/gfx_span_image_filters.h /^ typedef ColorType color_type;$/;" t class:gfx::gfx_span_image_filter_rgb16_nn +color_type src/gfx/gfx_span_image_filters.h /^ typedef ColorType color_type;$/;" t class:gfx::gfx_span_image_filter_rgb_nn +color_type src/gfx/gfx_span_image_filters.h /^ typedef ColorType color_type;$/;" t class:gfx::gfx_span_image_filter_rgba +color_type src/gfx/gfx_span_image_filters.h /^ typedef ColorType color_type;$/;" t class:gfx::gfx_span_image_filter_rgba_nb +color_type src/gfx/gfx_span_image_filters.h /^ typedef ColorType color_type;$/;" t class:gfx::gfx_span_image_filter_rgba_nn +color_type src/gfx/gfx_span_image_filters.h /^ typedef ColorType color_type;$/;" t class:gfx::gfx_span_image_filter_rgba_nn_nb +colorkey src/gfx/gfx_painter.h /^ bool colorkey;$/;" m struct:gfx::gfx_painter::__anon64 +colors src/gfx/gfx_gradient_adapter.h /^ gfx_gradient_table& colors(void) { return m_colors; } $/;" f class:gfx::gfx_gradient_adapter +colors src/gfx/gfx_mask_layer.h /^ pod_bvector& colors(void) { return m_colors; }$/;" f class:gfx::gfx_mask_layer +columnNumber android/expat/lib/xmltok.h /^ XML_Size columnNumber;$/;" m struct:position +combine_hspan src/gfx/gfx_mask_layer.h /^ void combine_hspan(int x, int y, cover_type* dst, int num_pix) const$/;" f class:gfx::gfx_alpha_mask_u8 +combine_pixel src/gfx/gfx_mask_layer.h /^ cover_type combine_pixel(int x, int y, cover_type val) const$/;" f class:gfx::gfx_alpha_mask_u8 +combine_vspan src/gfx/gfx_mask_layer.h /^ void combine_vspan(int x, int y, cover_type* dst, int num_pix) const$/;" f class:gfx::gfx_alpha_mask_u8 +command src/core/graphic_path.cpp /^ unsigned int command(unsigned int idx) const$/;" f class:picasso::graphic_path_impl +command src/core/graphic_path.cpp /^unsigned int graphic_path::command(unsigned int idx) const$/;" f class:picasso::graphic_path +comment tools/gyp/build/lib/gyp/ninja_syntax.py /^ def comment(self, text):$/;" m class:Writer +comment tools/gyp/pylib/gyp/ninja_syntax.py /^ def comment(self, text):$/;" m class:Writer +commentHandler android/expat/lib/xmlparse.c /^#define commentHandler /;" d file: +comment_replace tools/gyp/tools/pretty_gyp.py /^def comment_replace(matchobj):$/;" f +commit src/gfx/gfx_raster_adapter.cpp /^void gfx_raster_adapter::commit(void)$/;" f class:gfx::gfx_raster_adapter +commit src/picasso_raster_adapter.cpp /^void raster_adapter::commit(void)$/;" f class:picasso::raster_adapter +common android/expat/lib/xmlrole.c /^common(PROLOG_STATE *state, int tok)$/;" f file: +common tools/gyp/build/lib/gyp/MSVSNew.py /^import gyp.common$/;" i +common tools/gyp/build/lib/gyp/MSVSProject.py /^import gyp.common$/;" i +common tools/gyp/build/lib/gyp/MSVSToolFile.py /^import gyp.common$/;" i +common tools/gyp/build/lib/gyp/MSVSUserFile.py /^import gyp.common$/;" i +common tools/gyp/build/lib/gyp/common_test.py /^import gyp.common$/;" i +common tools/gyp/build/lib/gyp/generator/android.py /^import gyp.common$/;" i +common tools/gyp/build/lib/gyp/generator/dump_dependency_json.py /^import gyp.common$/;" i +common tools/gyp/build/lib/gyp/generator/eclipse.py /^import gyp.common$/;" i +common tools/gyp/build/lib/gyp/generator/gypd.py /^import gyp.common$/;" i +common tools/gyp/build/lib/gyp/generator/make.py /^import gyp.common$/;" i +common tools/gyp/build/lib/gyp/generator/msvs.py /^import gyp.common$/;" i +common tools/gyp/build/lib/gyp/generator/ninja.py /^import gyp.common$/;" i +common tools/gyp/build/lib/gyp/generator/scons.py /^import gyp.common$/;" i +common tools/gyp/build/lib/gyp/generator/xcode.py /^import gyp.common$/;" i +common tools/gyp/build/lib/gyp/input.py /^import gyp.common$/;" i +common tools/gyp/build/lib/gyp/xcode_emulation.py /^import gyp.common$/;" i +common tools/gyp/build/lib/gyp/xcodeproj_file.py /^import gyp.common$/;" i +common tools/gyp/pylib/gyp/MSVSNew.py /^import gyp.common$/;" i +common tools/gyp/pylib/gyp/MSVSProject.py /^import gyp.common$/;" i +common tools/gyp/pylib/gyp/MSVSToolFile.py /^import gyp.common$/;" i +common tools/gyp/pylib/gyp/MSVSUserFile.py /^import gyp.common$/;" i +common tools/gyp/pylib/gyp/common_test.py /^import gyp.common$/;" i +common tools/gyp/pylib/gyp/generator/android.py /^import gyp.common$/;" i +common tools/gyp/pylib/gyp/generator/dump_dependency_json.py /^import gyp.common$/;" i +common tools/gyp/pylib/gyp/generator/eclipse.py /^import gyp.common$/;" i +common tools/gyp/pylib/gyp/generator/gypd.py /^import gyp.common$/;" i +common tools/gyp/pylib/gyp/generator/make.py /^import gyp.common$/;" i +common tools/gyp/pylib/gyp/generator/msvs.py /^import gyp.common$/;" i +common tools/gyp/pylib/gyp/generator/ninja.py /^import gyp.common$/;" i +common tools/gyp/pylib/gyp/generator/scons.py /^import gyp.common$/;" i +common tools/gyp/pylib/gyp/generator/xcode.py /^import gyp.common$/;" i +common tools/gyp/pylib/gyp/input.py /^import gyp.common$/;" i +common tools/gyp/pylib/gyp/xcode_emulation.py /^import gyp.common$/;" i +common tools/gyp/pylib/gyp/xcodeproj_file.py /^import gyp.common$/;" i +common_CFLAGS android/expat/Android.mk /^common_CFLAGS := \\$/;" m +common_CFLAGS android/expat/jni/Android.mk /^common_CFLAGS := \\$/;" m +common_COPY_HEADERS android/expat/Android.mk /^common_COPY_HEADERS := \\$/;" m +common_COPY_HEADERS_TO android/expat/Android.mk /^common_COPY_HEADERS_TO := libexpat$/;" m +common_SRC_FILES android/expat/Android.mk /^common_SRC_FILES := \\$/;" m +common_SRC_FILES android/expat/jni/Android.mk /^common_SRC_FILES := \\$/;" m +comp_op src/include/graphic_base.h /^} comp_op;$/;" t namespace:picasso typeref:enum:picasso::__anon209 +comp_op_clear src/include/graphic_base.h /^ comp_op_clear, \/\/comp_op_clear$/;" e enum:picasso::__anon209 +comp_op_color_burn src/include/graphic_base.h /^ comp_op_color_burn, \/\/comp_op_color_burn$/;" e enum:picasso::__anon209 +comp_op_color_dodge src/include/graphic_base.h /^ comp_op_color_dodge, \/\/comp_op_color_dodge$/;" e enum:picasso::__anon209 +comp_op_contrast src/include/graphic_base.h /^ comp_op_contrast, \/\/comp_op_contrast$/;" e enum:picasso::__anon209 +comp_op_darken src/include/graphic_base.h /^ comp_op_darken, \/\/comp_op_darken$/;" e enum:picasso::__anon209 +comp_op_difference src/include/graphic_base.h /^ comp_op_difference, \/\/comp_op_difference$/;" e enum:picasso::__anon209 +comp_op_dst src/include/graphic_base.h /^ comp_op_dst, \/\/comp_op_dst$/;" e enum:picasso::__anon209 +comp_op_dst_atop src/include/graphic_base.h /^ comp_op_dst_atop, \/\/comp_op_dst_atop$/;" e enum:picasso::__anon209 +comp_op_dst_in src/include/graphic_base.h /^ comp_op_dst_in, \/\/comp_op_dst_in$/;" e enum:picasso::__anon209 +comp_op_dst_out src/include/graphic_base.h /^ comp_op_dst_out, \/\/comp_op_dst_out$/;" e enum:picasso::__anon209 +comp_op_dst_over src/include/graphic_base.h /^ comp_op_dst_over, \/\/comp_op_dst_over$/;" e enum:picasso::__anon209 +comp_op_exclusion src/include/graphic_base.h /^ comp_op_exclusion, \/\/comp_op_exclusion$/;" e enum:picasso::__anon209 +comp_op_hard_light src/include/graphic_base.h /^ comp_op_hard_light, \/\/comp_op_hard_light$/;" e enum:picasso::__anon209 +comp_op_invert src/include/graphic_base.h /^ comp_op_invert, \/\/comp_op_invert$/;" e enum:picasso::__anon209 +comp_op_invert_rgb src/include/graphic_base.h /^ comp_op_invert_rgb, \/\/comp_op_invert_rgb$/;" e enum:picasso::__anon209 +comp_op_lighten src/include/graphic_base.h /^ comp_op_lighten, \/\/comp_op_lighten$/;" e enum:picasso::__anon209 +comp_op_minus src/include/graphic_base.h /^ comp_op_minus, \/\/comp_op_minus$/;" e enum:picasso::__anon209 +comp_op_multiply src/include/graphic_base.h /^ comp_op_multiply, \/\/comp_op_multiply$/;" e enum:picasso::__anon209 +comp_op_overlay src/include/graphic_base.h /^ comp_op_overlay, \/\/comp_op_overlay$/;" e enum:picasso::__anon209 +comp_op_plus src/include/graphic_base.h /^ comp_op_plus, \/\/comp_op_plus$/;" e enum:picasso::__anon209 +comp_op_screen src/include/graphic_base.h /^ comp_op_screen, \/\/comp_op_screen$/;" e enum:picasso::__anon209 +comp_op_soft_light src/include/graphic_base.h /^ comp_op_soft_light, \/\/comp_op_soft_light$/;" e enum:picasso::__anon209 +comp_op_src src/include/graphic_base.h /^ comp_op_src, \/\/comp_op_src$/;" e enum:picasso::__anon209 +comp_op_src_atop src/include/graphic_base.h /^ comp_op_src_atop, \/\/comp_op_src_atop$/;" e enum:picasso::__anon209 +comp_op_src_in src/include/graphic_base.h /^ comp_op_src_in, \/\/comp_op_src_in$/;" e enum:picasso::__anon209 +comp_op_src_out src/include/graphic_base.h /^ comp_op_src_out, \/\/comp_op_src_out$/;" e enum:picasso::__anon209 +comp_op_src_over src/include/graphic_base.h /^ comp_op_src_over, \/\/comp_op_src_over$/;" e enum:picasso::__anon209 +comp_op_xor src/include/graphic_base.h /^ comp_op_xor, \/\/comp_op_xor$/;" e enum:picasso::__anon209 +compare_uni_maps android/freetype/src/psnames/psmodule.c /^ compare_uni_maps( const void* a,$/;" f +compensations android/freetype/src/truetype/ttobjs.h /^ FT_F26Dot6 compensations[4]; \/* device-specific compensations *\/$/;" m struct:TT_Size_Metrics_ +compiler tools/gyp/build/lib/gyp/input.py /^import compiler$/;" i +compiler tools/gyp/pylib/gyp/input.py /^import compiler$/;" i +composite src/picasso_objects.h /^ comp_op composite;$/;" m struct:picasso::context_state +composite_op_func_type src/gfx/gfx_pixfmt_rgb.h /^ typedef void (*composite_op_func_type)(value_type* p, $/;" t struct:gfx::blend_op_table_rgb +composite_op_func_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef void (*composite_op_func_type)(pixel_type* p, $/;" t struct:gfx::blend_op_table_rgb_16 +composite_op_func_type src/gfx/gfx_pixfmt_rgba.h /^ typedef void (*composite_op_func_type)(value_type* p, $/;" t struct:gfx::blend_op_table_rgba +composite_op_rgb_16_clear src/gfx/gfx_pixfmt_rgb16.h /^struct composite_op_rgb_16_clear$/;" s namespace:gfx +composite_op_rgb_16_color_burn src/gfx/gfx_pixfmt_rgb16.h /^struct composite_op_rgb_16_color_burn$/;" s namespace:gfx +composite_op_rgb_16_color_dodge src/gfx/gfx_pixfmt_rgb16.h /^struct composite_op_rgb_16_color_dodge$/;" s namespace:gfx +composite_op_rgb_16_contrast src/gfx/gfx_pixfmt_rgb16.h /^struct composite_op_rgb_16_contrast$/;" s namespace:gfx +composite_op_rgb_16_darken src/gfx/gfx_pixfmt_rgb16.h /^struct composite_op_rgb_16_darken$/;" s namespace:gfx +composite_op_rgb_16_difference src/gfx/gfx_pixfmt_rgb16.h /^struct composite_op_rgb_16_difference$/;" s namespace:gfx +composite_op_rgb_16_dst src/gfx/gfx_pixfmt_rgb16.h /^struct composite_op_rgb_16_dst$/;" s namespace:gfx +composite_op_rgb_16_dst_atop src/gfx/gfx_pixfmt_rgb16.h /^struct composite_op_rgb_16_dst_atop$/;" s namespace:gfx +composite_op_rgb_16_dst_in src/gfx/gfx_pixfmt_rgb16.h /^struct composite_op_rgb_16_dst_in$/;" s namespace:gfx +composite_op_rgb_16_dst_out src/gfx/gfx_pixfmt_rgb16.h /^struct composite_op_rgb_16_dst_out$/;" s namespace:gfx +composite_op_rgb_16_dst_over src/gfx/gfx_pixfmt_rgb16.h /^struct composite_op_rgb_16_dst_over$/;" s namespace:gfx +composite_op_rgb_16_exclusion src/gfx/gfx_pixfmt_rgb16.h /^struct composite_op_rgb_16_exclusion$/;" s namespace:gfx +composite_op_rgb_16_hard_light src/gfx/gfx_pixfmt_rgb16.h /^struct composite_op_rgb_16_hard_light$/;" s namespace:gfx +composite_op_rgb_16_invert src/gfx/gfx_pixfmt_rgb16.h /^struct composite_op_rgb_16_invert$/;" s namespace:gfx +composite_op_rgb_16_invert_rgb src/gfx/gfx_pixfmt_rgb16.h /^struct composite_op_rgb_16_invert_rgb$/;" s namespace:gfx +composite_op_rgb_16_lighten src/gfx/gfx_pixfmt_rgb16.h /^struct composite_op_rgb_16_lighten$/;" s namespace:gfx +composite_op_rgb_16_minus src/gfx/gfx_pixfmt_rgb16.h /^struct composite_op_rgb_16_minus$/;" s namespace:gfx +composite_op_rgb_16_multiply src/gfx/gfx_pixfmt_rgb16.h /^struct composite_op_rgb_16_multiply$/;" s namespace:gfx +composite_op_rgb_16_overlay src/gfx/gfx_pixfmt_rgb16.h /^struct composite_op_rgb_16_overlay$/;" s namespace:gfx +composite_op_rgb_16_plus src/gfx/gfx_pixfmt_rgb16.h /^struct composite_op_rgb_16_plus$/;" s namespace:gfx +composite_op_rgb_16_screen src/gfx/gfx_pixfmt_rgb16.h /^struct composite_op_rgb_16_screen$/;" s namespace:gfx +composite_op_rgb_16_soft_light src/gfx/gfx_pixfmt_rgb16.h /^struct composite_op_rgb_16_soft_light$/;" s namespace:gfx +composite_op_rgb_16_src src/gfx/gfx_pixfmt_rgb16.h /^struct composite_op_rgb_16_src$/;" s namespace:gfx +composite_op_rgb_16_src_atop src/gfx/gfx_pixfmt_rgb16.h /^struct composite_op_rgb_16_src_atop$/;" s namespace:gfx +composite_op_rgb_16_src_in src/gfx/gfx_pixfmt_rgb16.h /^struct composite_op_rgb_16_src_in$/;" s namespace:gfx +composite_op_rgb_16_src_out src/gfx/gfx_pixfmt_rgb16.h /^struct composite_op_rgb_16_src_out$/;" s namespace:gfx +composite_op_rgb_16_src_over src/gfx/gfx_pixfmt_rgb16.h /^struct composite_op_rgb_16_src_over$/;" s namespace:gfx +composite_op_rgb_16_xor src/gfx/gfx_pixfmt_rgb16.h /^struct composite_op_rgb_16_xor$/;" s namespace:gfx +composite_op_rgb_clear src/gfx/gfx_pixfmt_rgb.h /^struct composite_op_rgb_clear$/;" s namespace:gfx +composite_op_rgb_color_burn src/gfx/gfx_pixfmt_rgb.h /^struct composite_op_rgb_color_burn$/;" s namespace:gfx +composite_op_rgb_color_dodge src/gfx/gfx_pixfmt_rgb.h /^struct composite_op_rgb_color_dodge$/;" s namespace:gfx +composite_op_rgb_contrast src/gfx/gfx_pixfmt_rgb.h /^struct composite_op_rgb_contrast$/;" s namespace:gfx +composite_op_rgb_darken src/gfx/gfx_pixfmt_rgb.h /^struct composite_op_rgb_darken$/;" s namespace:gfx +composite_op_rgb_difference src/gfx/gfx_pixfmt_rgb.h /^struct composite_op_rgb_difference$/;" s namespace:gfx +composite_op_rgb_dst src/gfx/gfx_pixfmt_rgb.h /^struct composite_op_rgb_dst$/;" s namespace:gfx +composite_op_rgb_dst_atop src/gfx/gfx_pixfmt_rgb.h /^struct composite_op_rgb_dst_atop$/;" s namespace:gfx +composite_op_rgb_dst_in src/gfx/gfx_pixfmt_rgb.h /^struct composite_op_rgb_dst_in$/;" s namespace:gfx +composite_op_rgb_dst_out src/gfx/gfx_pixfmt_rgb.h /^struct composite_op_rgb_dst_out$/;" s namespace:gfx +composite_op_rgb_dst_over src/gfx/gfx_pixfmt_rgb.h /^struct composite_op_rgb_dst_over$/;" s namespace:gfx +composite_op_rgb_exclusion src/gfx/gfx_pixfmt_rgb.h /^struct composite_op_rgb_exclusion$/;" s namespace:gfx +composite_op_rgb_hard_light src/gfx/gfx_pixfmt_rgb.h /^struct composite_op_rgb_hard_light$/;" s namespace:gfx +composite_op_rgb_invert src/gfx/gfx_pixfmt_rgb.h /^struct composite_op_rgb_invert$/;" s namespace:gfx +composite_op_rgb_invert_rgb src/gfx/gfx_pixfmt_rgb.h /^struct composite_op_rgb_invert_rgb$/;" s namespace:gfx +composite_op_rgb_lighten src/gfx/gfx_pixfmt_rgb.h /^struct composite_op_rgb_lighten$/;" s namespace:gfx +composite_op_rgb_minus src/gfx/gfx_pixfmt_rgb.h /^struct composite_op_rgb_minus$/;" s namespace:gfx +composite_op_rgb_multiply src/gfx/gfx_pixfmt_rgb.h /^struct composite_op_rgb_multiply$/;" s namespace:gfx +composite_op_rgb_overlay src/gfx/gfx_pixfmt_rgb.h /^struct composite_op_rgb_overlay$/;" s namespace:gfx +composite_op_rgb_plus src/gfx/gfx_pixfmt_rgb.h /^struct composite_op_rgb_plus$/;" s namespace:gfx +composite_op_rgb_screen src/gfx/gfx_pixfmt_rgb.h /^struct composite_op_rgb_screen$/;" s namespace:gfx +composite_op_rgb_soft_light src/gfx/gfx_pixfmt_rgb.h /^struct composite_op_rgb_soft_light$/;" s namespace:gfx +composite_op_rgb_src src/gfx/gfx_pixfmt_rgb.h /^struct composite_op_rgb_src$/;" s namespace:gfx +composite_op_rgb_src_atop src/gfx/gfx_pixfmt_rgb.h /^struct composite_op_rgb_src_atop$/;" s namespace:gfx +composite_op_rgb_src_in src/gfx/gfx_pixfmt_rgb.h /^struct composite_op_rgb_src_in$/;" s namespace:gfx +composite_op_rgb_src_out src/gfx/gfx_pixfmt_rgb.h /^struct composite_op_rgb_src_out$/;" s namespace:gfx +composite_op_rgb_src_over src/gfx/gfx_pixfmt_rgb.h /^struct composite_op_rgb_src_over$/;" s namespace:gfx +composite_op_rgb_xor src/gfx/gfx_pixfmt_rgb.h /^struct composite_op_rgb_xor$/;" s namespace:gfx +composite_op_rgba_clear src/gfx/gfx_pixfmt_rgba.h /^struct composite_op_rgba_clear$/;" s namespace:gfx +composite_op_rgba_color_burn src/gfx/gfx_pixfmt_rgba.h /^struct composite_op_rgba_color_burn$/;" s namespace:gfx +composite_op_rgba_color_dodge src/gfx/gfx_pixfmt_rgba.h /^struct composite_op_rgba_color_dodge$/;" s namespace:gfx +composite_op_rgba_contrast src/gfx/gfx_pixfmt_rgba.h /^struct composite_op_rgba_contrast$/;" s namespace:gfx +composite_op_rgba_darken src/gfx/gfx_pixfmt_rgba.h /^struct composite_op_rgba_darken$/;" s namespace:gfx +composite_op_rgba_difference src/gfx/gfx_pixfmt_rgba.h /^struct composite_op_rgba_difference$/;" s namespace:gfx +composite_op_rgba_dst src/gfx/gfx_pixfmt_rgba.h /^struct composite_op_rgba_dst$/;" s namespace:gfx +composite_op_rgba_dst_atop src/gfx/gfx_pixfmt_rgba.h /^struct composite_op_rgba_dst_atop$/;" s namespace:gfx +composite_op_rgba_dst_in src/gfx/gfx_pixfmt_rgba.h /^struct composite_op_rgba_dst_in$/;" s namespace:gfx +composite_op_rgba_dst_out src/gfx/gfx_pixfmt_rgba.h /^struct composite_op_rgba_dst_out$/;" s namespace:gfx +composite_op_rgba_dst_over src/gfx/gfx_pixfmt_rgba.h /^struct composite_op_rgba_dst_over$/;" s namespace:gfx +composite_op_rgba_exclusion src/gfx/gfx_pixfmt_rgba.h /^struct composite_op_rgba_exclusion$/;" s namespace:gfx +composite_op_rgba_hard_light src/gfx/gfx_pixfmt_rgba.h /^struct composite_op_rgba_hard_light$/;" s namespace:gfx +composite_op_rgba_invert src/gfx/gfx_pixfmt_rgba.h /^struct composite_op_rgba_invert$/;" s namespace:gfx +composite_op_rgba_invert_rgb src/gfx/gfx_pixfmt_rgba.h /^struct composite_op_rgba_invert_rgb$/;" s namespace:gfx +composite_op_rgba_lighten src/gfx/gfx_pixfmt_rgba.h /^struct composite_op_rgba_lighten$/;" s namespace:gfx +composite_op_rgba_minus src/gfx/gfx_pixfmt_rgba.h /^struct composite_op_rgba_minus$/;" s namespace:gfx +composite_op_rgba_multiply src/gfx/gfx_pixfmt_rgba.h /^struct composite_op_rgba_multiply$/;" s namespace:gfx +composite_op_rgba_overlay src/gfx/gfx_pixfmt_rgba.h /^struct composite_op_rgba_overlay$/;" s namespace:gfx +composite_op_rgba_plus src/gfx/gfx_pixfmt_rgba.h /^struct composite_op_rgba_plus$/;" s namespace:gfx +composite_op_rgba_screen src/gfx/gfx_pixfmt_rgba.h /^struct composite_op_rgba_screen$/;" s namespace:gfx +composite_op_rgba_soft_light src/gfx/gfx_pixfmt_rgba.h /^struct composite_op_rgba_soft_light$/;" s namespace:gfx +composite_op_rgba_src src/gfx/gfx_pixfmt_rgba.h /^struct composite_op_rgba_src$/;" s namespace:gfx +composite_op_rgba_src_atop src/gfx/gfx_pixfmt_rgba.h /^struct composite_op_rgba_src_atop$/;" s namespace:gfx +composite_op_rgba_src_in src/gfx/gfx_pixfmt_rgba.h /^struct composite_op_rgba_src_in$/;" s namespace:gfx +composite_op_rgba_src_out src/gfx/gfx_pixfmt_rgba.h /^struct composite_op_rgba_src_out$/;" s namespace:gfx +composite_op_rgba_src_over src/gfx/gfx_pixfmt_rgba.h /^struct composite_op_rgba_src_over$/;" s namespace:gfx +composite_op_rgba_xor src/gfx/gfx_pixfmt_rgba.h /^struct composite_op_rgba_xor$/;" s namespace:gfx +compute_glyph_metrics android/freetype/src/truetype/ttgload.c /^ compute_glyph_metrics( TT_Loader loader,$/;" f file: +concat_path src/core/graphic_path.cpp /^void graphic_path::concat_path(vertex_source& vs, unsigned int id)$/;" f class:picasso::graphic_path +condSect0 android/expat/lib/xmlrole.c /^ condSect0, condSect1, condSect2,$/;" v file: +condSect0 android/expat/lib/xmlrole.c /^condSect0(PROLOG_STATE *state,$/;" f file: +condSect1 android/expat/lib/xmlrole.c /^ condSect0, condSect1, condSect2,$/;" v file: +condSect1 android/expat/lib/xmlrole.c /^condSect1(PROLOG_STATE *state,$/;" f file: +condSect2 android/expat/lib/xmlrole.c /^ condSect0, condSect1, condSect2,$/;" v file: +condSect2 android/expat/lib/xmlrole.c /^condSect2(PROLOG_STATE *state,$/;" f file: +config_ref tools/gyp/build/lib/gyp/generator/xcode.py /^ config_ref = pbxp.AddOrGetFileInRootGroup($/;" v +config_ref tools/gyp/pylib/gyp/generator/xcode.py /^ config_ref = pbxp.AddOrGetFileInRootGroup($/;" v +configuration tools/gyp/build/lib/gyp/generator/xcode.py /^ configuration = spec['configurations'][configuration_name]$/;" v +configuration tools/gyp/pylib/gyp/generator/xcode.py /^ configuration = spec['configurations'][configuration_name]$/;" v +conic_level android/freetype/src/smooth/ftgrays.c /^ int conic_level;$/;" m struct:TWorker_ file: +conic_to android/freetype/include/freetype/ftimage.h /^ FT_Outline_ConicToFunc conic_to;$/;" m struct:FT_Outline_Funcs_ +conic_to include/freetype/ftimage.h /^ FT_Outline_ConicToFunc conic_to;$/;" m struct:FT_Outline_Funcs_ +const android/expat/lib/macconfig.h /^#undef const$/;" d +const_iterator src/gfx/gfx_scanline.h /^ typedef const span* const_iterator;$/;" t class:gfx::gfx_scanline_bin +const_iterator src/gfx/gfx_scanline.h /^ typedef const span* const_iterator;$/;" t class:gfx::gfx_scanline_p8 +const_iterator src/gfx/gfx_scanline.h /^ typedef const span* const_iterator;$/;" t class:gfx::gfx_scanline_u8 +const_iterator src/gfx/gfx_scanline_storage.h /^ const_iterator() : m_ptr(0), m_dx(0) { }$/;" f class:gfx::gfx_serialized_scanlines_adaptor_aa::embedded_scanline::const_iterator +const_iterator src/gfx/gfx_scanline_storage.h /^ const_iterator() : m_ptr(0), m_dx(0) { }$/;" f class:gfx::gfx_serialized_scanlines_adaptor_bin::embedded_scanline::const_iterator +const_iterator src/gfx/gfx_scanline_storage.h /^ const_iterator() : m_storage(0), m_span_idx(0) { }$/;" f class:gfx::gfx_scanline_storage_aa::embedded_scanline::const_iterator +const_iterator src/gfx/gfx_scanline_storage.h /^ const_iterator() : m_storage(0), m_span_idx(0) { }$/;" f class:gfx::gfx_scanline_storage_bin::embedded_scanline::const_iterator +const_iterator src/gfx/gfx_scanline_storage.h /^ const_iterator(const embedded_scanline& sl)$/;" f class:gfx::gfx_scanline_storage_aa::embedded_scanline::const_iterator +const_iterator src/gfx/gfx_scanline_storage.h /^ const_iterator(const embedded_scanline& sl)$/;" f class:gfx::gfx_scanline_storage_bin::embedded_scanline::const_iterator +const_iterator src/gfx/gfx_scanline_storage.h /^ const_iterator(const embedded_scanline& sl)$/;" f class:gfx::gfx_serialized_scanlines_adaptor_aa::embedded_scanline::const_iterator +const_iterator src/gfx/gfx_scanline_storage.h /^ const_iterator(const embedded_scanline& sl)$/;" f class:gfx::gfx_serialized_scanlines_adaptor_bin::embedded_scanline::const_iterator +const_iterator src/gfx/gfx_scanline_storage.h /^ class const_iterator$/;" c class:gfx::gfx_scanline_storage_aa::embedded_scanline +const_iterator src/gfx/gfx_scanline_storage.h /^ class const_iterator$/;" c class:gfx::gfx_scanline_storage_bin::embedded_scanline +const_iterator src/gfx/gfx_scanline_storage.h /^ class const_iterator$/;" c class:gfx::gfx_serialized_scanlines_adaptor_aa::embedded_scanline +const_iterator src/gfx/gfx_scanline_storage.h /^ class const_iterator$/;" c class:gfx::gfx_serialized_scanlines_adaptor_bin::embedded_scanline +const_row_info src/gfx/gfx_rendering_buffer.h /^ const_row_info() : x1(0), x2(0), ptr(0) { }$/;" f struct:gfx::gfx_rendering_buffer::const_row_info +const_row_info src/gfx/gfx_rendering_buffer.h /^ const_row_info(int _x1, int _x2, const byte* _ptr)$/;" f struct:gfx::gfx_rendering_buffer::const_row_info +const_row_info src/gfx/gfx_rendering_buffer.h /^ typedef struct const_row_info$/;" s class:gfx::gfx_rendering_buffer +contains src/gfx/gfx_raster_adapter.cpp /^bool gfx_raster_adapter::contains(scalar x, scalar y)$/;" f class:gfx::gfx_raster_adapter +contentProcessor android/expat/lib/xmlparse.c /^contentProcessor(XML_Parser parser,$/;" f file: +contentProcessor android/expat/lib/xmlparse.c /^static Processor contentProcessor;$/;" v file: +contentStringLen android/expat/lib/xmlparse.c /^ unsigned contentStringLen;$/;" m struct:__anon17 file: +contentTok android/expat/lib/xmltok_impl.c /^PREFIX(contentTok)(const ENCODING *enc, const char *ptr, const char *end,$/;" f file: +context android/freetype/src/truetype/ttobjs.h /^ TT_ExecContext context;$/;" m struct:TT_SizeRec_ +context android/freetype/src/truetype/ttobjs.h /^ TT_ExecContext context; \/* execution context *\/$/;" m struct:TT_DriverRec_ +context android/jni/test_android.cpp /^ ps_context *context;$/;" m struct:engine file: +context demos/platform_gix.c /^static ps_context *context;$/;" v file: +context demos/platform_gtk2.c /^static ps_context *context;$/;" v file: +context demos/platform_minigui.c /^static ps_context *context;$/;" v file: +context demos/platform_qt4.cpp /^static ps_context *context;$/;" v file: +context demos/platform_win32.c /^static ps_context *context;$/;" v file: +context test/testGtk2.c /^static ps_context *context;$/;" v file: +context test/testMg.c /^static ps_context *context;$/;" v file: +context test/testQt4.cpp /^static ps_context *context;$/;" v file: +context test/testWin.c /^static ps_context *context;$/;" v file: +context_state src/picasso_objects.h /^ context_state()$/;" f struct:picasso::context_state +context_state src/picasso_objects.h /^ context_state(const context_state& o)$/;" f struct:picasso::context_state +context_state src/picasso_objects.h /^struct context_state {$/;" s namespace:picasso +contour android/freetype/src/autofit/afhints.h /^ AF_Point* contour; \/* ptr to first point of segment's contour *\/$/;" m struct:AF_SegmentRec_ +contour android/freetype/src/pshinter/pshalgo.h /^ PSH_Contour contour;$/;" m struct:PSH_PointRec_ +contour src/picasso_gpc.h /^ gpc_vertex_list *contour; \/\/ contour vector pointer$/;" m struct:picasso::__anon221 +contour_header src/include/convert.h /^ } contour_header;$/;" t class:picasso::conv_clipper typeref:struct:picasso::conv_clipper::__anon188 +contours android/freetype/include/freetype/ftimage.h /^ short* contours; \/* the contour end points *\/$/;" m struct:FT_Outline_ +contours android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort* contours; \/* contour end points *\/$/;" m struct:TT_GlyphZoneRec_ +contours android/freetype/src/autofit/afhints.h /^ AF_Point* contours;$/;" m struct:AF_GlyphHintsRec_ +contours android/freetype/src/pshinter/pshalgo.h /^ PSH_Contour contours;$/;" m struct:PSH_GlyphRec_ +contours include/freetype/ftimage.h /^ short* contours; \/* the contour end points *\/$/;" m struct:FT_Outline_ +contours include/freetype/internal/tttypes.h /^ FT_UShort* contours; \/* contour end points *\/$/;" m struct:TT_GlyphZoneRec_ +control_data android/freetype/include/freetype/freetype.h /^ void* control_data;$/;" m struct:FT_GlyphSlotRec_ +control_data include/freetype/freetype.h /^ void* control_data;$/;" m struct:FT_GlyphSlotRec_ +control_len android/freetype/include/freetype/freetype.h /^ long control_len;$/;" m struct:FT_GlyphSlotRec_ +control_len include/freetype/freetype.h /^ long control_len;$/;" m struct:FT_GlyphSlotRec_ +control_overshoot android/freetype/src/autofit/aflatin.h /^ FT_Bool control_overshoot;$/;" m struct:AF_LatinAxisRec_ +control_value_cutin android/freetype/src/truetype/ttobjs.h /^ FT_F26Dot6 control_value_cutin;$/;" m struct:TT_GraphicsState_ +conv_clipper src/include/convert.h /^ conv_clipper(const vertex_source& a, const vertex_source& b, clip_op op) $/;" f class:picasso::conv_clipper +conv_clipper src/include/convert.h /^class conv_clipper : public vertex_source$/;" c namespace:picasso +conv_curve src/include/convert.h /^ conv_curve(const vertex_source& v) $/;" f class:picasso::conv_curve +conv_curve src/include/convert.h /^class conv_curve : public vertex_source$/;" c namespace:picasso +conv_dash src/include/convert.h /^ conv_dash(const vertex_source& v)$/;" f class:picasso::conv_dash +conv_dash src/include/convert.h /^class conv_dash : public conv_line_generator$/;" c namespace:picasso +conv_line_generator src/include/convert.h /^ conv_line_generator(const vertex_source& v)$/;" f class:picasso::conv_line_generator +conv_line_generator src/include/convert.h /^class conv_line_generator : public vertex_container$/;" c namespace:picasso +conv_stroke src/include/convert.h /^ conv_stroke(const vertex_source& v)$/;" f class:picasso::conv_stroke +conv_stroke src/include/convert.h /^class conv_stroke : public conv_line_generator$/;" c namespace:picasso +conv_transform src/include/convert.h /^ conv_transform(const vertex_source& v, const abstract_trans_affine* m)$/;" f class:picasso::conv_transform +conv_transform src/include/convert.h /^ conv_transform(const vertex_source& v, const trans_affine& m)$/;" f class:picasso::conv_transform +conv_transform src/include/convert.h /^class conv_transform : public vertex_source$/;" c namespace:picasso +convert android/expat/lib/expat.h /^ int (XMLCALL *convert)(void *data, const char *s);$/;" m struct:__anon2 +convert android/expat/lib/xmltok.c /^ CONVERTER convert;$/;" m struct:unknown_encoding file: +convert include/expat.h /^ int (XMLCALL *convert)(void *data, const char *s);$/;" m struct:__anon48 +coord_storage src/include/convert.h /^ typedef pod_bvector coord_storage;$/;" t class:picasso::conv_stroke +coord_type src/gfx/gfx_rasterizer_scanline.h /^ typedef int coord_type;$/;" t class:gfx::scanline_generator +coord_type src/gfx/gfx_rasterizer_scanline.h /^ typedef typename Gen::coord_type coord_type;$/;" t class:gfx::gfx_rasterizer_scanline_aa +coord_type src/gfx/gfx_scanline.h /^ typedef int16_t coord_type;$/;" t class:gfx::gfx_scanline_p8 +coord_type src/gfx/gfx_scanline.h /^ typedef int16_t coord_type;$/;" t class:gfx::gfx_scanline_u8 +coord_type src/gfx/gfx_scanline.h /^ typedef int32_t coord_type;$/;" t class:gfx::gfx_scanline_bin +coordinates src/gfx/gfx_span_generator.h /^ void coordinates(int* x, int* y) const$/;" f class:gfx::gfx_span_interpolator_linear +coords android/freetype/include/freetype/ftmm.h /^ FT_Fixed* coords;$/;" m struct:FT_Var_Named_Style_ +coords include/freetype/ftmm.h /^ FT_Fixed* coords;$/;" m struct:FT_Var_Named_Style_ +copy tools/gyp/build/lib/gyp/MSVSUtil.py /^import copy$/;" i +copy tools/gyp/build/lib/gyp/__init__.py /^import copy$/;" i +copy tools/gyp/build/lib/gyp/generator/msvs.py /^import copy$/;" i +copy tools/gyp/build/lib/gyp/generator/ninja.py /^import copy$/;" i +copy tools/gyp/build/lib/gyp/input.py /^import copy$/;" i +copy tools/gyp/pylib/gyp/MSVSUtil.py /^import copy$/;" i +copy tools/gyp/pylib/gyp/__init__.py /^import copy$/;" i +copy tools/gyp/pylib/gyp/generator/msvs.py /^import copy$/;" i +copy tools/gyp/pylib/gyp/generator/ninja.py /^import copy$/;" i +copy tools/gyp/pylib/gyp/input.py /^import copy$/;" i +copyEntityTable android/expat/lib/xmlparse.c /^copyEntityTable(XML_Parser oldParser,$/;" f file: +copy_absolute_from src/gfx/gfx_renderer.h /^ void copy_absolute_from(const gfx_rendering_buffer& from,$/;" f class:gfx::gfx_renderer +copy_color_hspan src/gfx/gfx_blur.h /^ void copy_color_hspan(int x, int y, unsigned int len, const color_type* colors)$/;" f class:gfx::pixfmt_transformer +copy_color_hspan src/gfx/gfx_mask_layer.h /^ void copy_color_hspan(int x, int y, unsigned int len, const color_type* colors)$/;" f class:gfx::gfx_pixfmt_amask_adaptor +copy_color_hspan src/gfx/gfx_pixfmt_rgb.h /^ void copy_color_hspan(int x, int y, unsigned int len, const color_type* colors)$/;" f class:gfx::pixfmt_blender_rgb +copy_color_hspan src/gfx/gfx_pixfmt_rgb16.h /^ void copy_color_hspan(int x, int y, unsigned int len, const color_type* colors)$/;" f class:gfx::pixfmt_blender_rgb16 +copy_color_hspan src/gfx/gfx_pixfmt_rgba.h /^ void copy_color_hspan(int x, int y, unsigned int len, const color_type* colors)$/;" f class:gfx::pixfmt_blender_rgba +copy_color_hspan src/gfx/gfx_pixfmt_wrapper.h /^ void copy_color_hspan(int x, int y, unsigned int len, const color_type* colors)$/;" f class:gfx::gfx_pixfmt_wrapper +copy_color_vspan src/gfx/gfx_mask_layer.h /^ void copy_color_vspan(int x, int y, unsigned int len, const color_type* colors)$/;" f class:gfx::gfx_pixfmt_amask_adaptor +copy_color_vspan src/gfx/gfx_pixfmt_rgb.h /^ void copy_color_vspan(int x, int y, unsigned int len, const color_type* colors)$/;" f class:gfx::pixfmt_blender_rgb +copy_color_vspan src/gfx/gfx_pixfmt_rgb16.h /^ void copy_color_vspan(int x, int y, unsigned int len, const color_type* colors)$/;" f class:gfx::pixfmt_blender_rgb16 +copy_color_vspan src/gfx/gfx_pixfmt_rgba.h /^ void copy_color_vspan(int x, int y, unsigned int len, const color_type* colors)$/;" f class:gfx::pixfmt_blender_rgba +copy_color_vspan src/gfx/gfx_pixfmt_wrapper.h /^ void copy_color_vspan(int x, int y, unsigned int len, const color_type* colors)$/;" f class:gfx::gfx_pixfmt_wrapper +copy_extra_storage src/gfx/gfx_scanline_storage.h /^ void copy_extra_storage(const gfx_scanline_cell_storage& v)$/;" f class:gfx::gfx_scanline_cell_storage +copy_from src/gfx/gfx_mask_layer.h /^ void copy_from(const gfx_rendering_buffer& from, $/;" f class:gfx::gfx_pixfmt_amask_adaptor +copy_from src/gfx/gfx_pixfmt_rgb.h /^ void copy_from(const RenBuffer2& from, int xdst, int ydst, int xsrc, int ysrc, unsigned int len)$/;" f class:gfx::pixfmt_blender_rgb +copy_from src/gfx/gfx_pixfmt_rgb16.h /^ void copy_from(const RenBuffer2& from, int xdst, int ydst, int xsrc, int ysrc, unsigned int len)$/;" f class:gfx::pixfmt_blender_rgb16 +copy_from src/gfx/gfx_pixfmt_rgba.h /^ void copy_from(const RenBuffer2& from, int xdst, int ydst, int xsrc, int ysrc, unsigned int len)$/;" f class:gfx::pixfmt_blender_rgba +copy_from src/gfx/gfx_pixfmt_wrapper.h /^ template void copy_from(const RenBuf2& from, $/;" f class:gfx::gfx_pixfmt_wrapper +copy_hline src/gfx/gfx_mask_layer.h /^ void copy_hline(int x, int y, unsigned int len, const color_type& c)$/;" f class:gfx::gfx_pixfmt_amask_adaptor +copy_hline src/gfx/gfx_pixfmt_rgb.h /^ void copy_hline(int x, int y, unsigned int len, const color_type& c)$/;" f class:gfx::pixfmt_blender_rgb +copy_hline src/gfx/gfx_pixfmt_rgb16.h /^ void copy_hline(int x, int y, unsigned int len, const color_type& c)$/;" f class:gfx::pixfmt_blender_rgb16 +copy_hline src/gfx/gfx_pixfmt_rgba.h /^ void copy_hline(int x, int y, unsigned int len, const color_type& c)$/;" f class:gfx::pixfmt_blender_rgba +copy_hline src/gfx/gfx_pixfmt_wrapper.h /^ void copy_hline(int x, int y, unsigned int len, const color_type& c)$/;" f class:gfx::gfx_pixfmt_wrapper +copy_pixel src/gfx/gfx_mask_layer.h /^ void copy_pixel(int x, int y, const color_type& c)$/;" f class:gfx::gfx_pixfmt_amask_adaptor +copy_pixel src/gfx/gfx_pixfmt_rgb.h /^ void copy_pixel(int x, int y, const color_type& c)$/;" f class:gfx::pixfmt_blender_rgb +copy_pixel src/gfx/gfx_pixfmt_rgb16.h /^ void copy_pixel(int x, int y, const color_type& c)$/;" f class:gfx::pixfmt_blender_rgb16 +copy_pixel src/gfx/gfx_pixfmt_rgba.h /^ void copy_pixel(int x, int y, const color_type& c)$/;" f class:gfx::pixfmt_blender_rgba +copy_pixel src/gfx/gfx_pixfmt_wrapper.h /^ void copy_pixel(int x, int y, const color_type& c)$/;" f class:gfx::gfx_pixfmt_wrapper +copy_point_from src/gfx/gfx_pixfmt_rgb.h /^ void copy_point_from(const RenBuffer2& from, int xdst, int ydst, int xsrc, int ysrc)$/;" f class:gfx::pixfmt_blender_rgb +copy_point_from src/gfx/gfx_pixfmt_rgb16.h /^ void copy_point_from(const RenBuffer2& from, int xdst, int ydst, int xsrc, int ysrc)$/;" f class:gfx::pixfmt_blender_rgb16 +copy_point_from src/gfx/gfx_pixfmt_rgba.h /^ void copy_point_from(const RenBuffer2& from, int xdst, int ydst, int xsrc, int ysrc)$/;" f class:gfx::pixfmt_blender_rgba +copy_point_from src/gfx/gfx_pixfmt_wrapper.h /^ void copy_point_from(const RenBuf2& from, $/;" f class:gfx::gfx_pixfmt_wrapper +copy_rect_from src/gfx/gfx_painter.h /^inline void gfx_painter::copy_rect_from(abstract_rendering_buffer* src, const rect& rc, int x, int y)$/;" f class:gfx::gfx_painter +copy_vline src/gfx/gfx_mask_layer.h /^ void copy_vline(int x, int y, unsigned int len, const color_type& c)$/;" f class:gfx::gfx_pixfmt_amask_adaptor +copy_vline src/gfx/gfx_pixfmt_rgb.h /^ void copy_vline(int x, int y, unsigned int len, const color_type& c)$/;" f class:gfx::pixfmt_blender_rgb +copy_vline src/gfx/gfx_pixfmt_rgb16.h /^ void copy_vline(int x, int y, unsigned int len, const color_type& c)$/;" f class:gfx::pixfmt_blender_rgb16 +copy_vline src/gfx/gfx_pixfmt_rgba.h /^ void copy_vline(int x, int y, unsigned int len, const color_type& c)$/;" f class:gfx::pixfmt_blender_rgba +copy_vline src/gfx/gfx_pixfmt_wrapper.h /^ void copy_vline(int x, int y, unsigned int len, const color_type& c)$/;" f class:gfx::gfx_pixfmt_wrapper +copyright android/freetype/include/freetype/ftwinfnt.h /^ FT_Byte copyright[60];$/;" m struct:FT_WinFNT_HeaderRec_ +copyright android/freetype/src/cff/cfftypes.h /^ FT_UInt copyright;$/;" m struct:CFF_FontRecDictRec_ +copyright include/freetype/ftwinfnt.h /^ FT_Byte copyright[60];$/;" m struct:FT_WinFNT_HeaderRec_ +correspondence android/freetype/src/truetype/ttgxvar.h /^ GX_AVarCorrespondence correspondence; \/* array with pairCount entries *\/$/;" m struct:GX_AVarSegmentRec_ +cos src/core/fixedopt.cpp /^fixed cos(fixed r)$/;" f namespace:fxmath +cos_table src/core/fixedopt.cpp /^static fixed_type cos_table[512] =$/;" m namespace:fxmath file: +cosf src/include/platform.h /^#define cosf(/;" d +count android/freetype/include/freetype/internal/tttypes.h /^ FT_Long count;$/;" m struct:TTC_HeaderRec_ +count android/freetype/src/cff/cfftypes.h /^ FT_UInt count;$/;" m struct:CFF_EncodingRec_ +count android/freetype/src/cff/cfftypes.h /^ FT_UInt count;$/;" m struct:CFF_IndexRec_ +count android/freetype/src/psaux/t1cmap.h /^ FT_UInt count;$/;" m struct:T1_CMapCustomRec_ +count android/freetype/src/pshinter/pshalgo.h /^ FT_UInt count;$/;" m struct:PSH_ContourRec_ +count android/freetype/src/pshinter/pshglob.h /^ FT_UInt count;$/;" m struct:PSH_Blue_TableRec_ +count android/freetype/src/pshinter/pshglob.h /^ FT_UInt count;$/;" m struct:PSH_WidthsRec_ +count include/freetype/internal/tttypes.h /^ FT_Long count;$/;" m struct:TTC_HeaderRec_ +count src/include/shared.h /^ int count(void)$/;" f class:picasso::shared +countL android/freetype/src/raster/ftraster.c /^ unsigned countL; \/* number of lines to step before this *\/$/;" m struct:TProfile_ file: +countSizePairs android/freetype/src/truetype/ttgxvar.c /^ FT_UShort countSizePairs;$/;" m struct:GX_FVar_Head_ file: +count_braces tools/gyp/tools/pretty_gyp.py /^def count_braces(line):$/;" f +count_contours src/picasso_gpc.cpp /^static int count_contours(polygon_node *polygon)$/;" f namespace:picasso +count_ex android/freetype/src/smooth/ftgrays.c /^ TPos count_ex, count_ey;$/;" m struct:TWorker_ file: +count_ey android/freetype/src/smooth/ftgrays.c /^ TPos count_ex, count_ey;$/;" m struct:TWorker_ file: +count_offset android/freetype/include/freetype/internal/psaux.h /^ FT_UInt count_offset; \/* offset of element count for *\/$/;" m struct:T1_FieldRec_ +count_offset android/freetype/src/cff/cffparse.c /^ FT_UInt count_offset;$/;" m struct:CFF_Field_Handler_ file: +count_offset include/freetype/internal/psaux.h /^ FT_UInt count_offset; \/* offset of element count for *\/$/;" m struct:T1_FieldRec_ +count_optimal_vertices src/picasso_gpc.cpp /^static int count_optimal_vertices(gpc_vertex_list c)$/;" f namespace:picasso +count_table android/freetype/src/raster/ftraster.c /^static const char count_table[256] =$/;" v file: +counter android/freetype/include/freetype/internal/pshints.h /^ T2_Hints_CounterFunc counter;$/;" m struct:T2_Hints_FuncsRec_ +counter include/freetype/internal/pshints.h /^ T2_Hints_CounterFunc counter;$/;" m struct:T2_Hints_FuncsRec_ +counter_masks android/freetype/src/pshinter/pshalgo.h /^ PS_Mask_Table counter_masks;$/;" m struct:PSH_Hint_TableRec_ +counters android/freetype/src/pshinter/pshrec.h /^ PS_Mask_TableRec counters;$/;" m struct:PS_DimensionRec_ +cover android/freetype/src/smooth/ftgrays.c /^ int cover;$/;" m struct:TWorker_ file: +cover android/freetype/src/smooth/ftgrays.c /^ int cover;$/;" m struct:TCell_ file: +cover src/gfx/gfx_rasterizer_scanline.h /^ int cover;$/;" m struct:gfx::cell +cover_full src/gfx/gfx_mask_layer.h /^ cover_full = 255,$/;" e enum:gfx::gfx_alpha_mask_u8::__anon60 +cover_full src/include/graphic_base.h /^ cover_full = cover_mask \/\/cover_full $/;" e enum:picasso::__anon210 +cover_mask src/include/graphic_base.h /^ cover_mask = cover_size - 1, \/\/cover_mask $/;" e enum:picasso::__anon210 +cover_none src/gfx/gfx_mask_layer.h /^ cover_none = 0,$/;" e enum:gfx::gfx_alpha_mask_u8::__anon60 +cover_none src/include/graphic_base.h /^ cover_none = 0, \/\/cover_none $/;" e enum:picasso::__anon210 +cover_scale src/include/graphic_base.h /^} cover_scale;$/;" t namespace:picasso typeref:enum:picasso::__anon210 +cover_shift src/gfx/gfx_mask_layer.h /^ cover_shift = 8,$/;" e enum:gfx::gfx_alpha_mask_u8::__anon60 +cover_shift src/include/graphic_base.h /^ cover_shift = 8, \/\/cover_shift$/;" e enum:picasso::__anon210 +cover_size src/include/graphic_base.h /^ cover_size = 1 << cover_shift, \/\/cover_size $/;" e enum:picasso::__anon210 +cover_type src/gfx/gfx_mask_layer.h /^ typedef typename amask_type::cover_type cover_type;$/;" t class:gfx::gfx_pixfmt_amask_adaptor +cover_type src/gfx/gfx_mask_layer.h /^ typedef uint8_t cover_type;$/;" t class:gfx::gfx_alpha_mask_u8 +cover_type src/gfx/gfx_pixfmt_wrapper.h /^ typedef typename amask_type::cover_type cover_type;$/;" t class:gfx::gfx_pixfmt_wrapper +cover_type src/gfx/gfx_scanline.h /^ typedef uint8_t cover_type;$/;" t class:gfx::gfx_scanline_p8 +cover_type src/gfx/gfx_scanline.h /^ typedef uint8_t cover_type;$/;" t class:gfx::gfx_scanline_u8 +cover_type src/gfx/gfx_scanline_storage.h /^ typedef T cover_type;$/;" t class:gfx::gfx_serialized_scanlines_adaptor_aa::embedded_scanline +cover_type src/gfx/gfx_scanline_storage.h /^ typedef T cover_type;$/;" t class:gfx::gfx_scanline_storage_aa +cover_type src/gfx/gfx_scanline_storage.h /^ typedef T cover_type;$/;" t class:gfx::gfx_serialized_scanlines_adaptor_aa +cover_type src/gfx/gfx_scanline_storage.h /^ typedef bool cover_type;$/;" t class:gfx::gfx_serialized_scanlines_adaptor_bin +cover_type src/include/graphic_base.h /^typedef unsigned char cover_type; $/;" t namespace:picasso +coverage android/freetype/include/freetype/ftimage.h /^ unsigned char coverage;$/;" m struct:FT_Span_ +coverage include/freetype/ftimage.h /^ unsigned char coverage;$/;" m struct:FT_Span_ +covers src/gfx/gfx_scanline.h /^ const cover_type* covers;$/;" m struct:gfx::gfx_scanline_p8::__anon156 +covers src/gfx/gfx_scanline.h /^ cover_type* covers;$/;" m struct:gfx::gfx_scanline_u8::__anon157 +covers src/gfx/gfx_scanline_storage.h /^ const T* covers; $/;" m struct:gfx::gfx_serialized_scanlines_adaptor_aa::embedded_scanline::const_iterator::__anon162 +covers src/gfx/gfx_scanline_storage.h /^ const T* covers;$/;" m struct:gfx::gfx_scanline_storage_aa::embedded_scanline::const_iterator::__anon161 +covers_by_index src/gfx/gfx_scanline_storage.h /^ const T* covers_by_index(int i) const$/;" f class:gfx::gfx_scanline_storage_aa +covers_id src/gfx/gfx_scanline_storage.h /^ int covers_id; \/\/ The index of the cells in the gfx_scanline_cell_storage$/;" m struct:gfx::gfx_scanline_storage_aa::__anon159 +cplusplus_typeof include/freetype/internal/ftmemory.h /^ cplusplus_typeof( T*,$/;" f +cr demos/flowers.c /^ float cr, cg, cb, ca;$/;" m struct:__anon37 file: +create android/freetype/include/freetype/internal/pshints.h /^ PSH_Globals_NewFunc create;$/;" m struct:PSH_Globals_FuncsRec_ +create include/freetype/internal/pshints.h /^ PSH_Globals_NewFunc create;$/;" m struct:PSH_Globals_FuncsRec_ +create src/gfx/gfx_device.cpp /^gfx_device* gfx_device::create(void)$/;" f class:gfx::gfx_device +create-golden-sample tools/gyp/tools/emacs/gyp-tests.el /^(defun create-golden-sample (filename)$/;" f +create-golden-samples tools/gyp/tools/emacs/gyp-tests.el /^(defun create-golden-samples ()$/;" f +create_contour_bboxes src/picasso_gpc.cpp /^static bbox *create_contour_bboxes(gpc_polygon *p)$/;" f namespace:picasso +create_device_font src/picasso_font_api.cpp /^static bool inline create_device_font(ps_context* ctx)$/;" f file: +create_font src/picasso_font.cpp /^bool font_engine::create_font(const font_desc& desc)$/;" f class:picasso::font_engine +create_font_adapter src/gfx/gfx_device.cpp /^abstract_font_adapter* gfx_device::create_font_adapter(const char* name, int charset, scalar height, scalar weight, $/;" f class:gfx::gfx_device +create_gradient demos/clock.c /^static void create_gradient()$/;" f file: +create_gradient_adapter src/gfx/gfx_device.cpp /^abstract_gradient_adapter* gfx_device::create_gradient_adapter(void)$/;" f class:gfx::gfx_device +create_image_filter src/gfx/gfx_image_filters.cpp /^image_filter_adapter* create_image_filter(int filter)$/;" f namespace:gfx +create_mask_layer src/gfx/gfx_device.cpp /^abstract_mask_layer* gfx_device::create_mask_layer(byte* buf,$/;" f class:gfx::gfx_device +create_painter src/gfx/gfx_device.cpp /^abstract_painter* gfx_device::create_painter(pix_fmt fmt)$/;" f class:gfx::gfx_device +create_path demos/clock.c /^static void create_path()$/;" f file: +create_raster_adapter src/gfx/gfx_device.cpp /^abstract_raster_adapter* gfx_device::create_raster_adapter(void)$/;" f class:gfx::gfx_device +create_rendering_buffer src/gfx/gfx_device.cpp /^abstract_rendering_buffer* gfx_device::create_rendering_buffer(byte* buf, $/;" f class:gfx::gfx_device +create_signature src/picasso_font.cpp /^bool font_adapter::create_signature(const font_desc& desc, const trans_affine& mtx, bool anti, char* recv_sig)$/;" f class:picasso::font_adapter +create_trans_affine src/gfx/gfx_device.cpp /^abstract_trans_affine* gfx_device::create_trans_affine(scalar sx, scalar shy, $/;" f class:gfx::gfx_device +crop_bitmap android/freetype/src/sfnt/ttsbit.c /^ crop_bitmap( FT_Bitmap* map,$/;" f file: +cross_product src/include/graphic_base.h /^inline scalar cross_product(scalar x1, scalar y1, scalar x2, scalar y2, scalar x, scalar y)$/;" f namespace:picasso +ct test/clip_func.c /^static int ct = 0;$/;" v file: +ct test/gcstate_func.c /^static int ct = 0;$/;" v file: +ct test/path_func.c /^static int ct = 0;$/;" v file: +cubic_level android/freetype/src/smooth/ftgrays.c /^ int cubic_level;$/;" m struct:TWorker_ file: +cubic_to android/freetype/include/freetype/ftimage.h /^ FT_Outline_CubicToFunc cubic_to;$/;" m struct:FT_Outline_Funcs_ +cubic_to include/freetype/ftimage.h /^ FT_Outline_CubicToFunc cubic_to;$/;" m struct:FT_Outline_Funcs_ +cur android/freetype/include/freetype/internal/tttypes.h /^ FT_Vector* cur; \/* current point coordinates *\/$/;" m struct:TT_GlyphZoneRec_ +cur android/freetype/src/autofit/aftypes.h /^ FT_Pos cur; \/* current\/scaled position\/width in device sub-pixels *\/$/;" m struct:AF_WidthRec_ +cur android/freetype/src/pshinter/pshglob.h /^ FT_Pos cur;$/;" m struct:PSH_WidthRec_ +cur android/freetype/src/truetype/ttinterp.c /^ TT_ExecContextRec cur; \/* static exec. context variable *\/$/;" v file: +cur include/freetype/internal/tttypes.h /^ FT_Vector* cur; \/* current point coordinates *\/$/;" m struct:TT_GlyphZoneRec_ +curBase android/expat/lib/xmlparse.c /^#define curBase /;" d file: +curRange android/freetype/src/truetype/ttinterp.h /^ FT_Int curRange; \/* current code range number *\/$/;" m struct:TT_ExecContextRec_ +cur_blocks android/freetype/src/base/ftdbgmem.c /^ FT_Long cur_blocks; \/* current number of allocated blocks *\/$/;" m struct:FT_MemSourceRec_ file: +cur_bottom android/freetype/src/pshinter/pshglob.h /^ FT_Pos cur_bottom;$/;" m struct:PSH_Blue_ZoneRec_ +cur_charcode android/freetype/src/sfnt/ttcmap.c /^ FT_UInt32 cur_charcode; \/* current charcode *\/$/;" m struct:TT_CMap4Rec_ file: +cur_charcode android/freetype/src/sfnt/ttcmap.c /^ FT_ULong cur_charcode;$/;" m struct:TT_CMap12Rec_ file: +cur_delta android/freetype/src/pshinter/pshglob.h /^ FT_Pos cur_delta;$/;" m struct:PSH_Blue_ZoneRec_ +cur_delta android/freetype/src/sfnt/ttcmap.c /^ FT_Int cur_delta;$/;" m struct:TT_CMap4Rec_ file: +cur_end android/freetype/src/sfnt/ttcmap.c /^ FT_UInt cur_end;$/;" m struct:TT_CMap4Rec_ file: +cur_gindex android/freetype/src/sfnt/ttcmap.c /^ FT_UInt cur_gindex; \/* current glyph index *\/$/;" m struct:TT_CMap4Rec_ file: +cur_gindex android/freetype/src/sfnt/ttcmap.c /^ FT_UInt cur_gindex;$/;" m struct:TT_CMap12Rec_ file: +cur_group android/freetype/src/sfnt/ttcmap.c /^ FT_ULong cur_group;$/;" m struct:TT_CMap12Rec_ file: +cur_len android/freetype/src/pshinter/pshalgo.h /^ FT_Pos cur_len;$/;" m struct:PSH_HintRec_ +cur_max android/freetype/src/base/ftdbgmem.c /^ FT_Long cur_max; \/* current maximum allocated size *\/$/;" m struct:FT_MemSourceRec_ file: +cur_pos android/freetype/src/pshinter/pshalgo.h /^ FT_Pos cur_pos;$/;" m struct:PSH_HintRec_ +cur_range android/freetype/src/sfnt/ttcmap.c /^ FT_UInt cur_range;$/;" m struct:TT_CMap4Rec_ file: +cur_ras android/freetype/src/raster/ftraster.c /^ static TWorker cur_ras;$/;" v file: +cur_ref android/freetype/src/pshinter/pshglob.h /^ FT_Pos cur_ref;$/;" m struct:PSH_Blue_ZoneRec_ +cur_renderer android/freetype/include/freetype/internal/ftobjs.h /^ FT_Renderer cur_renderer; \/* current outline renderer *\/$/;" m struct:FT_LibraryRec_ +cur_renderer include/freetype/internal/ftobjs.h /^ FT_Renderer cur_renderer; \/* current outline renderer *\/$/;" m struct:FT_LibraryRec_ +cur_size android/freetype/src/base/ftdbgmem.c /^ FT_Long cur_size; \/* current cumulative allocated size *\/$/;" m struct:FT_MemSourceRec_ file: +cur_start android/freetype/src/sfnt/ttcmap.c /^ FT_UInt cur_start;$/;" m struct:TT_CMap4Rec_ file: +cur_top android/freetype/src/pshinter/pshglob.h /^ FT_Pos cur_top;$/;" m struct:PSH_Blue_ZoneRec_ +cur_u android/freetype/src/pshinter/pshalgo.h /^ FT_Pos cur_u;$/;" m struct:PSH_PointRec_ +cur_values android/freetype/src/sfnt/ttcmap.c /^ FT_Byte* cur_values;$/;" m struct:TT_CMap4Rec_ file: +cur_x android/freetype/src/pshinter/pshalgo.h /^ FT_Pos cur_x;$/;" m struct:PSH_PointRec_ +cur_y android/freetype/src/pshinter/pshalgo.h /^ FT_Pos cur_y;$/;" m struct:PSH_PointRec_ +curr src/include/data_vector.h /^ T& curr(unsigned int idx)$/;" f class:picasso::pod_bvector +curr src/include/data_vector.h /^ const T& curr(unsigned int idx) const$/;" f class:picasso::pod_bvector +current android/freetype/include/freetype/internal/ftgloadr.h /^ FT_GlyphLoadRec current;$/;" m struct:FT_GlyphLoaderRec_ +current android/freetype/include/freetype/internal/psaux.h /^ FT_Outline* current;$/;" m struct:T1_BuilderRec_ +current android/freetype/src/cff/cffgload.h /^ FT_Outline* current;$/;" m struct:CFF_Builder_ +current include/freetype/internal/ftgloadr.h /^ FT_GlyphLoadRec current;$/;" m struct:FT_GlyphLoaderRec_ +current include/freetype/internal/psaux.h /^ FT_Outline* current;$/;" m struct:T1_BuilderRec_ +current_font src/picasso_font.h /^ font_adapter* current_font(void) const { return m_current; }$/;" f class:picasso::font_engine +curs android/freetype/src/truetype/ttinterp.c /^ FT_Vector* curs; \/* arrays *\/$/;" m struct:IUP_WorkerRec_ file: +cursor android/freetype/include/freetype/ftsystem.h /^ unsigned char* cursor;$/;" m struct:FT_StreamRec_ +cursor android/freetype/include/freetype/internal/psaux.h /^ FT_Byte* cursor;$/;" m struct:PS_ParserRec_ +cursor android/freetype/include/freetype/internal/psaux.h /^ FT_Byte* cursor;$/;" m struct:T1_Decoder_ZoneRec_ +cursor android/freetype/include/freetype/internal/psaux.h /^ FT_Offset cursor; \/* current cursor in memory block *\/$/;" m struct:PS_TableRec_ +cursor android/freetype/include/freetype/internal/tttypes.h /^ FT_Byte* cursor;$/;" m struct:TT_LoaderRec_ +cursor android/freetype/src/cff/cffgload.h /^ FT_Byte* cursor;$/;" m struct:CFF_Decoder_Zone_ +cursor android/freetype/src/cff/cffparse.h /^ FT_Byte* cursor;$/;" m struct:CFF_ParserRec_ +cursor android/freetype/src/psaux/afmparse.c /^ FT_Byte* cursor;$/;" m struct:AFM_StreamRec_ file: +cursor include/freetype/ftsystem.h /^ unsigned char* cursor;$/;" m struct:FT_StreamRec_ +cursor include/freetype/internal/psaux.h /^ FT_Byte* cursor;$/;" m struct:PS_ParserRec_ +cursor include/freetype/internal/psaux.h /^ FT_Byte* cursor;$/;" m struct:T1_Decoder_ZoneRec_ +cursor include/freetype/internal/psaux.h /^ FT_Offset cursor; \/* current cursor in memory block *\/$/;" m struct:PS_TableRec_ +cursor include/freetype/internal/tttypes.h /^ FT_Byte* cursor;$/;" m struct:TT_LoaderRec_ +cursorScrewPath demos/clock.c /^static ps_path* cursorScrewPath;$/;" v file: +curve3 src/core/graphic_path.cpp /^void graphic_path::curve3(scalar x_ctrl, scalar y_ctrl, scalar x_to, scalar y_to)$/;" f class:picasso::graphic_path +curve3 src/core/graphic_path.cpp /^void graphic_path::curve3(scalar x_to, scalar y_to)$/;" f class:picasso::graphic_path +curve3 src/include/geometry.h /^ curve3() : m_approximation_method(curve_div) {}$/;" f class:picasso::curve3 +curve3 src/include/geometry.h /^ curve3(scalar x1, scalar y1, scalar x2, scalar y2, scalar x3, scalar y3) $/;" f class:picasso::curve3 +curve3 src/include/geometry.h /^class curve3 : public vertex_source$/;" c namespace:picasso +curve3_div src/include/curve.h /^ curve3_div() $/;" f class:picasso::curve3_div +curve3_div src/include/curve.h /^ curve3_div(scalar x1, scalar y1, scalar x2, scalar y2, scalar x3, scalar y3) $/;" f class:picasso::curve3_div +curve3_div src/include/curve.h /^class curve3_div : public vertex_source$/;" c namespace:picasso +curve3_inc src/include/curve.h /^ curve3_inc() $/;" f class:picasso::curve3_inc +curve3_inc src/include/curve.h /^ curve3_inc(scalar x1, scalar y1, scalar x2, scalar y2, scalar x3, scalar y3) $/;" f class:picasso::curve3_inc +curve3_inc src/include/curve.h /^class curve3_inc : public vertex_source$/;" c namespace:picasso +curve3_rel src/core/graphic_path.cpp /^void graphic_path::curve3_rel(scalar dx_ctrl, scalar dy_ctrl, scalar dx_to, scalar dy_to)$/;" f class:picasso::graphic_path +curve3_rel src/core/graphic_path.cpp /^void graphic_path::curve3_rel(scalar dx_to, scalar dy_to)$/;" f class:picasso::graphic_path +curve4 src/core/graphic_path.cpp /^void graphic_path::curve4(scalar x_ctrl1, scalar y_ctrl1, scalar x_ctrl2, scalar y_ctrl2, scalar x_to, scalar y_to)$/;" f class:picasso::graphic_path +curve4 src/core/graphic_path.cpp /^void graphic_path::curve4(scalar x_ctrl2, scalar y_ctrl2, scalar x_to, scalar y_to)$/;" f class:picasso::graphic_path +curve4 src/include/geometry.h /^ curve4() : m_approximation_method(curve_div) {}$/;" f class:picasso::curve4 +curve4 src/include/geometry.h /^ curve4(scalar x1, scalar y1, scalar x2, scalar y2, $/;" f class:picasso::curve4 +curve4 src/include/geometry.h /^class curve4 : public vertex_source$/;" c namespace:picasso +curve4_div src/include/curve.h /^ curve4_div() $/;" f class:picasso::curve4_div +curve4_div src/include/curve.h /^ curve4_div(scalar x1, scalar y1, scalar x2, scalar y2, scalar x3, scalar y3,scalar x4, scalar y4)$/;" f class:picasso::curve4_div +curve4_div src/include/curve.h /^class curve4_div : public vertex_source$/;" c namespace:picasso +curve4_inc src/include/curve.h /^ curve4_inc() $/;" f class:picasso::curve4_inc +curve4_inc src/include/curve.h /^ curve4_inc(scalar x1, scalar y1, scalar x2, scalar y2, scalar x3, scalar y3,scalar x4, scalar y4)$/;" f class:picasso::curve4_inc +curve4_inc src/include/curve.h /^class curve4_inc : public vertex_source$/;" c namespace:picasso +curve4_rel src/core/graphic_path.cpp /^void graphic_path::curve4_rel(scalar dx_ctrl1, scalar dy_ctrl1, scalar dx_ctrl2, $/;" f class:picasso::graphic_path +curve4_rel src/core/graphic_path.cpp /^void graphic_path::curve4_rel(scalar dx_ctrl2, scalar dy_ctrl2, scalar dx_to, scalar dy_to)$/;" f class:picasso::graphic_path +curve_angle_tolerance_epsilon src/core/curve.cpp /^const scalar curve_angle_tolerance_epsilon = FLT_TO_SCALAR(0.01f);$/;" m namespace:picasso file: +curve_approximation_method src/include/curve.h /^} curve_approximation_method;$/;" t namespace:picasso typeref:enum:picasso::__anon193 +curve_collinearity_epsilon src/core/curve.cpp /^const scalar curve_collinearity_epsilon = FLT_TO_SCALAR(1e-30f);$/;" m namespace:picasso file: +curve_distance_epsilon src/core/curve.cpp /^const scalar curve_distance_epsilon = FLT_TO_SCALAR(1e-30f);$/;" m namespace:picasso file: +curve_div src/include/curve.h /^ curve_div,$/;" e enum:picasso::__anon193 +curve_inc src/include/curve.h /^ curve_inc,$/;" e enum:picasso::__anon193 +curve_recursion_limit src/core/curve.cpp /^ curve_recursion_limit = 32,$/;" e enum:picasso::curve_recursion_limit file: +curve_recursion_limit src/core/curve.cpp /^enum curve_recursion_limit $/;" g namespace:picasso file: +cusp_limit src/include/curve.h /^ scalar cusp_limit(void) const $/;" f class:picasso::curve4_div +cusp_limit src/include/curve.h /^ scalar cusp_limit(void) const { return FLT_TO_SCALAR(0.0f); }$/;" f class:picasso::curve3_div +cusp_limit src/include/curve.h /^ scalar cusp_limit(void) const { return FLT_TO_SCALAR(0.0f); }$/;" f class:picasso::curve3_inc +cusp_limit src/include/curve.h /^ scalar cusp_limit(void) const { return FLT_TO_SCALAR(0.0f); }$/;" f class:picasso::curve4_inc +cusp_limit src/include/curve.h /^ void cusp_limit(scalar v) $/;" f class:picasso::curve4_div +cusp_limit src/include/curve.h /^ void cusp_limit(scalar) {}$/;" f class:picasso::curve3_div +cusp_limit src/include/curve.h /^ void cusp_limit(scalar) {}$/;" f class:picasso::curve3_inc +cusp_limit src/include/curve.h /^ void cusp_limit(scalar) {}$/;" f class:picasso::curve4_inc +cusp_limit src/include/geometry.h /^ scalar cusp_limit() const $/;" f class:picasso::curve3 +cusp_limit src/include/geometry.h /^ scalar cusp_limit() const $/;" f class:picasso::curve4 +cusp_limit src/include/geometry.h /^ void cusp_limit(scalar v) $/;" f class:picasso::curve3 +cusp_limit src/include/geometry.h /^ void cusp_limit(scalar v) $/;" f class:picasso::curve4 +custom android/freetype/include/freetype/internal/psaux.h /^ FT_CMap_Class custom;$/;" m struct:T1_CMap_ClassesRec_ +custom include/freetype/internal/psaux.h /^ FT_CMap_Class custom;$/;" m struct:T1_CMap_ClassesRec_ +cut_at src/include/data_vector.h /^ void cut_at(unsigned int num) { if (num < m_size) m_size = num; }$/;" f class:picasso::pod_vector +cut_at src/include/data_vector.h /^ void cut_at(unsigned int size) { if (size < m_size) m_size = size; }$/;" f class:picasso::pod_bvector +cv test/bitblt_func.c /^static ps_canvas* cv;$/;" v file: +cv test/thread_func.c /^static ps_canvas* cv;$/;" v file: +cvt android/freetype/include/freetype/internal/tttypes.h /^ FT_Short* cvt;$/;" m struct:TT_FaceRec_ +cvt android/freetype/src/truetype/ttinterp.h /^ FT_Long* cvt;$/;" m struct:TT_ExecContextRec_ +cvt android/freetype/src/truetype/ttobjs.h /^ FT_Long* cvt;$/;" m struct:TT_SizeRec_ +cvt include/freetype/internal/tttypes.h /^ FT_Short* cvt;$/;" m struct:TT_FaceRec_ +cvtSize android/freetype/src/truetype/ttinterp.h /^ FT_Long cvtSize;$/;" m struct:TT_ExecContextRec_ +cvt_program android/freetype/include/freetype/internal/tttypes.h /^ FT_Byte* cvt_program;$/;" m struct:TT_FaceRec_ +cvt_program include/freetype/internal/tttypes.h /^ FT_Byte* cvt_program;$/;" m struct:TT_FaceRec_ +cvt_program_size android/freetype/include/freetype/internal/tttypes.h /^ FT_ULong cvt_program_size;$/;" m struct:TT_FaceRec_ +cvt_program_size include/freetype/internal/tttypes.h /^ FT_ULong cvt_program_size;$/;" m struct:TT_FaceRec_ +cvt_ready android/freetype/src/truetype/ttobjs.h /^ FT_Bool cvt_ready;$/;" m struct:TT_SizeRec_ +cvt_size android/freetype/include/freetype/internal/tttypes.h /^ FT_ULong cvt_size;$/;" m struct:TT_FaceRec_ +cvt_size android/freetype/src/truetype/ttobjs.h /^ FT_ULong cvt_size; \/* the scaled control value table *\/$/;" m struct:TT_SizeRec_ +cvt_size include/freetype/internal/tttypes.h /^ FT_ULong cvt_size;$/;" m struct:TT_FaceRec_ +cx android/freetype/src/smooth/ftgrays.c /^ TCoord cx, cy;$/;" m struct:TWorker_ file: +cx test/shadow_func.c /^static ps_canvas * cx;$/;" v file: +cy android/freetype/src/smooth/ftgrays.c /^ TCoord cx, cy;$/;" m struct:TWorker_ file: +cygwin_munge tools/gyp/build/lib/gyp/generator/ninja.py /^ def cygwin_munge(path):$/;" f function:NinjaWriter.WriteRules +cygwin_munge tools/gyp/pylib/gyp/generator/ninja.py /^ def cygwin_munge(path):$/;" f function:NinjaWriter.WriteRules +d src/include/vertex_dist.h /^ scalar d;$/;" m struct:picasso::vertex_dist +d test/gamma_func.c /^ float d[4];$/;" m struct:dash_data file: +dash_data test/gamma_func.c /^struct dash_data $/;" s file: +dash_start src/include/convert.h /^ void dash_start(scalar start)$/;" f class:picasso::conv_dash +dashes src/picasso_objects.h /^ scalar * dashes;$/;" m struct:picasso::graphic_pen +dashs test/gamma_func.c /^} dashs[] = {$/;" v typeref:struct:dash_data +data android/expat/lib/expat.h /^ void *data;$/;" m struct:__anon2 +data android/freetype/include/freetype/freetype.h /^ FT_Pointer data;$/;" m struct:FT_Parameter_ +data android/freetype/include/freetype/fttypes.h /^ void* data;$/;" m struct:FT_Generic_ +data android/freetype/include/freetype/fttypes.h /^ void* data;$/;" m struct:FT_ListNodeRec_ +data android/freetype/src/cff/cfftypes.h /^ FT_Byte* data;$/;" m struct:CFF_FDSelectRec_ +data android/freetype/src/sfnt/ttcmap.h /^ FT_Byte* data; \/* pointer to in-memory cmap table *\/$/;" m struct:TT_CMapRec_ +data include/expat.h /^ void *data;$/;" m struct:__anon48 +data include/freetype/freetype.h /^ FT_Pointer data;$/;" m struct:FT_Parameter_ +data include/freetype/fttypes.h /^ void* data;$/;" m struct:FT_Generic_ +data include/freetype/fttypes.h /^ void* data;$/;" m struct:FT_ListNodeRec_ +data src/include/data_vector.h /^ T* data(void) { return m_array; }$/;" f class:picasso::pod_vector +data src/include/data_vector.h /^ byte* data;$/;" m struct:picasso::block_allocator::__anon196 +data src/include/data_vector.h /^ T* data(void) { return m_array; }$/;" f class:picasso::pod_array +data src/include/data_vector.h /^ const T* data() const { return m_array; }$/;" f class:picasso::pod_array +data src/include/data_vector.h /^ const T* data(void) const { return m_array; }$/;" f class:picasso::pod_vector +data src/include/fixedopt.h /^ fixed_type data(void) const { return m_data; }$/;" f class:fxmath::fixed +data src/include/graphic_base.h /^ byte* data;$/;" m struct:picasso::_glyph +data src/picasso_objects.h /^ void* data;$/;" m struct:picasso::graphic_brush +dataBuf android/expat/lib/xmlparse.c /^#define dataBuf /;" d file: +dataBufEnd android/expat/lib/xmlparse.c /^#define dataBufEnd /;" d file: +data_offset android/freetype/include/freetype/t1tables.h /^ FT_ULong data_offset;$/;" m struct:CID_FaceInfoRec_ +data_offset android/freetype/src/cff/cfftypes.h /^ FT_ULong data_offset;$/;" m struct:CFF_IndexRec_ +data_offset include/freetype/t1tables.h /^ FT_ULong data_offset;$/;" m struct:CID_FaceInfoRec_ +data_size android/freetype/src/cff/cfftypes.h /^ FT_UInt data_size;$/;" m struct:CFF_FDSelectRec_ +data_size android/freetype/src/cff/cfftypes.h /^ FT_ULong data_size;$/;" m struct:CFF_IndexRec_ +data_size src/include/graphic_base.h /^ unsigned int data_size;$/;" m struct:picasso::_glyph +deactive src/picasso_font.cpp /^void font_adapter::deactive(void)$/;" f class:picasso::font_adapter +deallocate src/include/data_vector.h /^ static void deallocate(T* ptr, unsigned int) { delete [] ptr; }$/;" f struct:picasso::pod_allocator +debug android/freetype/src/truetype/ttobjs.h /^ FT_Bool debug;$/;" m struct:TT_SizeRec_ +debug tools/gyp/build/lib/gyp/__init__.py /^debug = {}$/;" v +debug tools/gyp/pylib/gyp/__init__.py /^debug = {}$/;" v +debug_hooks android/freetype/include/freetype/internal/ftobjs.h /^ FT_DebugHook_Func debug_hooks[4];$/;" m struct:FT_LibraryRec_ +debug_hooks include/freetype/internal/ftobjs.h /^ FT_DebugHook_Func debug_hooks[4];$/;" m struct:FT_LibraryRec_ +declAttributeId android/expat/lib/xmlparse.c /^#define declAttributeId /;" d file: +declAttributeIsCdata android/expat/lib/xmlparse.c /^#define declAttributeIsCdata /;" d file: +declAttributeIsId android/expat/lib/xmlparse.c /^#define declAttributeIsId /;" d file: +declAttributeType android/expat/lib/xmlparse.c /^#define declAttributeType /;" d file: +declClose android/expat/lib/xmlrole.c /^ declClose,$/;" v file: +declClose android/expat/lib/xmlrole.c /^declClose(PROLOG_STATE *state,$/;" f file: +declElementType android/expat/lib/xmlparse.c /^#define declElementType /;" d file: +declEntity android/expat/lib/xmlparse.c /^#define declEntity /;" d file: +declNotationName android/expat/lib/xmlparse.c /^#define declNotationName /;" d file: +declNotationPublicId android/expat/lib/xmlparse.c /^#define declNotationPublicId /;" d file: +decoder android/freetype/src/cff/cffgload.h /^ cff_decoder_set_width_only( CFF_Decoder* decoder );$/;" v +decoder android/freetype/src/psaux/t1decode.h /^ t1_decoder_done( T1_Decoder decoder );$/;" v +def android/freetype/include/freetype/ftmm.h /^ FT_Fixed def;$/;" m struct:FT_Var_Axis_ +def include/freetype/ftmm.h /^ FT_Fixed def;$/;" m struct:FT_Var_Axis_ +default tools/gyp/build/lib/gyp/ninja_syntax.py /^ def default(self, paths):$/;" m class:Writer +default tools/gyp/pylib/gyp/ninja_syntax.py /^ def default(self, paths):$/;" m class:Writer +defaultAtts android/expat/lib/xmlparse.c /^ DEFAULT_ATTRIBUTE *defaultAtts;$/;" m struct:__anon16 file: +defaultExpandInternalEntities android/expat/lib/xmlparse.c /^#define defaultExpandInternalEntities /;" d file: +defaultHandler android/expat/lib/xmlparse.c /^#define defaultHandler /;" d file: +defaultPrefix android/expat/lib/xmlparse.c /^ PREFIX defaultPrefix;$/;" m struct:__anon17 file: +defaultValue android/freetype/src/truetype/ttgxvar.c /^ FT_ULong defaultValue;$/;" m struct:fvar_axis_ file: +default_GS android/freetype/src/truetype/ttinterp.h /^ TT_GraphicsState default_GS; \/* graphics state resulting from *\/$/;" m struct:TT_ExecContextRec_ +default_char android/freetype/include/freetype/ftwinfnt.h /^ FT_Byte default_char;$/;" m struct:FT_WinFNT_HeaderRec_ +default_char include/freetype/ftwinfnt.h /^ FT_Byte default_char;$/;" m struct:FT_WinFNT_HeaderRec_ +default_design_vector android/freetype/include/freetype/t1tables.h /^ FT_UInt default_design_vector[T1_MAX_MM_DESIGNS];$/;" m struct:PS_BlendRec_ +default_design_vector include/freetype/t1tables.h /^ FT_UInt default_design_vector[T1_MAX_MM_DESIGNS];$/;" m struct:PS_BlendRec_ +default_weight_vector android/freetype/include/freetype/t1tables.h /^ FT_Fixed* default_weight_vector;$/;" m struct:PS_BlendRec_ +default_weight_vector include/freetype/t1tables.h /^ FT_Fixed* default_weight_vector;$/;" m struct:PS_BlendRec_ +default_width android/freetype/src/cff/cfftypes.h /^ FT_Pos default_width;$/;" m struct:CFF_PrivateRec_ +defineAttribute android/expat/lib/xmlparse.c /^defineAttribute(ELEMENT_TYPE *type, ATTRIBUTE_ID *attId, XML_Bool isCdata,$/;" f file: +deg2rad src/include/graphic_base.h /^inline scalar deg2rad(scalar deg)$/;" f namespace:picasso +degree android/freetype/include/freetype/internal/t1types.h /^ FT_Int degree;$/;" m struct:AFM_TrackKernRec_ +degree include/freetype/internal/t1types.h /^ FT_Int degree;$/;" m struct:AFM_TrackKernRec_ +delimiters_replacer_regex tools/gyp/build/lib/gyp/generator/msvs.py /^delimiters_replacer_regex = re.compile(r'(\\\\*)([,;]+)')$/;" v +delimiters_replacer_regex tools/gyp/pylib/gyp/generator/msvs.py /^delimiters_replacer_regex = re.compile(r'(\\\\*)([,;]+)')$/;" v +delta android/freetype/include/freetype/ftimage.h /^ FT_Pos delta;$/;" m struct:FT_Outline_Funcs_ +delta android/freetype/src/autofit/aflatin.h /^ FT_Pos delta;$/;" m struct:AF_LatinAxisRec_ +delta android/freetype/src/pshinter/pshalgo.h /^ FT_Fixed delta;$/;" m struct:PSH_ZoneRec_ +delta include/freetype/ftimage.h /^ FT_Pos delta;$/;" m struct:FT_Outline_Funcs_ +delta_base android/freetype/src/truetype/ttobjs.h /^ FT_Short delta_base;$/;" m struct:TT_GraphicsState_ +delta_shift android/freetype/src/truetype/ttobjs.h /^ FT_Short delta_shift;$/;" m struct:TT_GraphicsState_ +dependency_sections tools/gyp/build/lib/gyp/input.py /^dependency_sections = ['dependencies', 'export_dependent_settings']$/;" v +dependency_sections tools/gyp/pylib/gyp/input.py /^dependency_sections = ['dependencies', 'export_dependent_settings']$/;" v +deref src/include/shared.h /^ void deref(void)$/;" f class:picasso::shared +desc src/picasso_font.h /^ const font_desc& desc(void) const{ return m_desc; }$/;" f class:picasso::font_adapter +desc src/picasso_objects.h /^ picasso::font_desc desc;$/;" m struct:_ps_font +descender android/freetype/include/freetype/freetype.h /^ FT_Pos descender; \/* descender in 26.6 frac. pixels *\/$/;" m struct:FT_Size_Metrics_ +descender android/freetype/include/freetype/freetype.h /^ FT_Short descender;$/;" m struct:FT_FaceRec_ +descender android/freetype/include/freetype/internal/tttypes.h /^ FT_Char descender;$/;" m struct:TT_SBit_LineMetricsRec_ +descender include/freetype/freetype.h /^ FT_Pos descender; \/* descender in 26.6 frac. pixels *\/$/;" m struct:FT_Size_Metrics_ +descender include/freetype/freetype.h /^ FT_Short descender;$/;" m struct:FT_FaceRec_ +descender include/freetype/internal/tttypes.h /^ FT_Char descender;$/;" m struct:TT_SBit_LineMetricsRec_ +descent include/picasso.h /^ float descent;$/;" m struct:_ps_font_info +descent src/picasso_font.h /^ scalar descent(void) const { return m_impl->descent(); }$/;" f class:picasso::font_adapter +description tools/gyp/setup.py /^ description='Generate Your Projects',$/;" v +descriptor android/freetype/include/freetype/ftsystem.h /^ FT_StreamDesc descriptor;$/;" m struct:FT_StreamRec_ +descriptor include/freetype/ftsystem.h /^ FT_StreamDesc descriptor;$/;" m struct:FT_StreamRec_ +design_map android/freetype/include/freetype/t1tables.h /^ PS_DesignMapRec design_map[T1_MAX_MM_AXIS];$/;" m struct:PS_BlendRec_ +design_map include/freetype/t1tables.h /^ PS_DesignMapRec design_map[T1_MAX_MM_AXIS];$/;" m struct:PS_BlendRec_ +design_points android/freetype/include/freetype/t1tables.h /^ FT_Long* design_points;$/;" m struct:PS_DesignMap_ +design_points include/freetype/t1tables.h /^ FT_Long* design_points;$/;" m struct:PS_DesignMap_ +design_pos android/freetype/include/freetype/t1tables.h /^ FT_Fixed* design_pos[T1_MAX_MM_DESIGNS];$/;" m struct:PS_BlendRec_ +design_pos include/freetype/t1tables.h /^ FT_Fixed* design_pos[T1_MAX_MM_DESIGNS];$/;" m struct:PS_BlendRec_ +dest tools/gyp/build/lib/gyp/generator/xcode.py /^ dest = '$(SRCROOT)\/' + dest$/;" v +dest tools/gyp/build/lib/gyp/generator/xcode.py /^ dest = copy_group['destination']$/;" v +dest tools/gyp/pylib/gyp/generator/xcode.py /^ dest = '$(SRCROOT)\/' + dest$/;" v +dest tools/gyp/pylib/gyp/generator/xcode.py /^ dest = copy_group['destination']$/;" v +destroy android/freetype/include/freetype/internal/pshints.h /^ PSH_Globals_DestroyFunc destroy;$/;" m struct:PSH_Globals_FuncsRec_ +destroy demos/platform_gtk2.c /^static void destroy(GtkWidget *widget, gpointer data)$/;" f file: +destroy include/freetype/internal/pshints.h /^ PSH_Globals_DestroyFunc destroy;$/;" m struct:PSH_Globals_FuncsRec_ +destroy test/testGtk2.c /^void destroy(GtkWidget *widget, gpointer data)$/;" f +destroyBindings android/expat/lib/xmlparse.c /^destroyBindings(BINDING *bindings, XML_Parser parser)$/;" f file: +destroy_charmaps android/freetype/src/base/ftobjs.c /^ destroy_charmaps( FT_Face face,$/;" f file: +destroy_face android/freetype/src/base/ftobjs.c /^ destroy_face( FT_Memory memory,$/;" f file: +destroy_font_adapter src/gfx/gfx_device.cpp /^void gfx_device::destroy_font_adapter(abstract_font_adapter* f)$/;" f class:gfx::gfx_device +destroy_gradient_adapter src/gfx/gfx_device.cpp /^void gfx_device::destroy_gradient_adapter(abstract_gradient_adapter* g)$/;" f class:gfx::gfx_device +destroy_mask_layer src/gfx/gfx_device.cpp /^void gfx_device::destroy_mask_layer(abstract_mask_layer* m)$/;" f class:gfx::gfx_device +destroy_painter src/gfx/gfx_device.cpp /^void gfx_device::destroy_painter(abstract_painter* p)$/;" f class:gfx::gfx_device +destroy_raster_adapter src/gfx/gfx_device.cpp /^void gfx_device::destroy_raster_adapter(abstract_raster_adapter* d)$/;" f class:gfx::gfx_device +destroy_rendering_buffer src/gfx/gfx_device.cpp /^void gfx_device::destroy_rendering_buffer(abstract_rendering_buffer* b)$/;" f class:gfx::gfx_device +destroy_size android/freetype/src/base/ftobjs.c /^ destroy_size( FT_Memory memory,$/;" f file: +destroy_trans_affine src/gfx/gfx_device.cpp /^void gfx_device::destroy_trans_affine(abstract_trans_affine* m)$/;" f class:gfx::gfx_device +determinant src/gfx/gfx_trans_affine.h /^ virtual scalar determinant(void) const$/;" f class:gfx::gfx_trans_affine +determinant src/picasso_matrix.cpp /^scalar trans_affine::determinant(void) const$/;" f class:picasso::trans_affine +determinant_reciprocal src/gfx/gfx_trans_affine.h /^ scalar determinant_reciprocal(void) const$/;" f class:gfx::gfx_trans_affine +device src/include/device.h /^ device(){}$/;" f class:picasso::device +device src/include/device.h /^class device$/;" c namespace:picasso +device_offset android/freetype/include/freetype/ftwinfnt.h /^ FT_ULong device_offset;$/;" m struct:FT_WinFNT_HeaderRec_ +device_offset include/freetype/ftwinfnt.h /^ FT_ULong device_offset;$/;" m struct:FT_WinFNT_HeaderRec_ +diameter src/gfx/gfx_image_filters.h /^ unsigned int diameter(void) const { return m_diameter; }$/;" f class:gfx::image_filter_adapter +dict android/freetype/include/freetype/internal/psaux.h /^ FT_UInt dict; \/* where we expect it *\/$/;" m struct:T1_FieldRec_ +dict include/freetype/internal/psaux.h /^ FT_UInt dict; \/* where we expect it *\/$/;" m struct:T1_FieldRec_ +dimension android/freetype/src/pshinter/pshglob.h /^ PSH_DimensionRec dimension[2];$/;" m struct:PSH_GlobalsRec_ +dimension android/freetype/src/pshinter/pshrec.h /^ PS_DimensionRec dimension[2];$/;" m struct:PS_HintsRec_ +dini_context test/alpha_func.c /^void dini_context (ps_context* gc)$/;" f +dini_context test/bitblt_func.c /^void dini_context (ps_context* gc)$/;" f +dini_context test/blur_func.c /^void dini_context (ps_context* gc)$/;" f +dini_context test/clip_func.c /^void dini_context (ps_context* gc)$/;" f +dini_context test/composite_func.c /^void dini_context (ps_context* gc)$/;" f +dini_context test/gamma_func.c /^void dini_context (ps_context* gc)$/;" f +dini_context test/gcstate_func.c /^void dini_context (ps_context* gc)$/;" f +dini_context test/gradient_func.c /^void dini_context (ps_context* gc)$/;" f +dini_context test/mask_func.c /^void dini_context (ps_context* gc)$/;" f +dini_context test/part_func.c /^void dini_context (ps_context* gc)$/;" f +dini_context test/path_func.c /^void dini_context (ps_context* gc)$/;" f +dini_context test/pattern_func.c /^void dini_context (ps_context* gc)$/;" f +dini_context test/shadow_func.c /^void dini_context (ps_context* gc)$/;" f +dini_context test/text_func.c /^void dini_context (ps_context* gc)$/;" f +dini_context test/thread_func.c /^void dini_context (ps_context* gc)$/;" f +dir android/freetype/src/autofit/afhints.h /^ FT_Char dir; \/* segment direction *\/$/;" m struct:AF_SegmentRec_ +dir android/freetype/src/autofit/afhints.h /^ FT_Char dir; \/* edge direction *\/$/;" m struct:AF_EdgeRec_ +dir_in android/freetype/src/pshinter/pshalgo.h /^ FT_Char dir_in;$/;" m struct:PSH_PointRec_ +dir_out android/freetype/src/pshinter/pshalgo.h /^ FT_Char dir_out;$/;" m struct:PSH_PointRec_ +dir_tables android/freetype/include/freetype/internal/tttypes.h /^ TT_Table dir_tables;$/;" m struct:TT_FaceRec_ +dir_tables include/freetype/internal/tttypes.h /^ TT_Table dir_tables;$/;" m struct:TT_FaceRec_ +display tools/gyp/gyptest.py /^ def display(self, command, stdout=None, stderr=None):$/;" m class:CommandRunner +doCdataSection android/expat/lib/xmlparse.c /^doCdataSection(XML_Parser parser,$/;" f file: +doContent android/expat/lib/xmlparse.c /^doContent(XML_Parser parser,$/;" f file: +doIgnoreSection android/expat/lib/xmlparse.c /^doIgnoreSection(XML_Parser parser,$/;" f file: +doProlog android/expat/lib/xmlparse.c /^doProlog(XML_Parser parser,$/;" f file: +do_horz_hints android/freetype/src/pshinter/pshalgo.h /^ FT_Bool do_horz_hints;$/;" m struct:PSH_GlyphRec_ +do_horz_snapping android/freetype/src/pshinter/pshalgo.h /^ FT_Bool do_horz_snapping;$/;" m struct:PSH_GlyphRec_ +do_split tools/gyp/tools/pretty_gyp.py /^def do_split(input, masked_input, search_re):$/;" f +do_stem_adjust android/freetype/src/pshinter/pshalgo.h /^ FT_Bool do_stem_adjust;$/;" m struct:PSH_GlyphRec_ +do_vert_hints android/freetype/src/pshinter/pshalgo.h /^ FT_Bool do_vert_hints;$/;" m struct:PSH_GlyphRec_ +do_vert_snapping android/freetype/src/pshinter/pshalgo.h /^ FT_Bool do_vert_snapping;$/;" m struct:PSH_GlyphRec_ +doblend android/freetype/include/freetype/internal/tttypes.h /^ FT_Bool doblend;$/;" m struct:TT_FaceRec_ +doblend include/freetype/internal/tttypes.h /^ FT_Bool doblend;$/;" m struct:TT_FaceRec_ +doctype0 android/expat/lib/xmlrole.c /^ doctype0, doctype1, doctype2, doctype3, doctype4, doctype5,$/;" v file: +doctype0 android/expat/lib/xmlrole.c /^doctype0(PROLOG_STATE *state,$/;" f file: +doctype1 android/expat/lib/xmlrole.c /^ doctype0, doctype1, doctype2, doctype3, doctype4, doctype5,$/;" v file: +doctype1 android/expat/lib/xmlrole.c /^doctype1(PROLOG_STATE *state,$/;" f file: +doctype2 android/expat/lib/xmlrole.c /^ doctype0, doctype1, doctype2, doctype3, doctype4, doctype5,$/;" v file: +doctype2 android/expat/lib/xmlrole.c /^doctype2(PROLOG_STATE *state,$/;" f file: +doctype3 android/expat/lib/xmlrole.c /^ doctype0, doctype1, doctype2, doctype3, doctype4, doctype5,$/;" v file: +doctype3 android/expat/lib/xmlrole.c /^doctype3(PROLOG_STATE *state,$/;" f file: +doctype4 android/expat/lib/xmlrole.c /^ doctype0, doctype1, doctype2, doctype3, doctype4, doctype5,$/;" v file: +doctype4 android/expat/lib/xmlrole.c /^doctype4(PROLOG_STATE *state,$/;" f file: +doctype5 android/expat/lib/xmlrole.c /^ doctype0, doctype1, doctype2, doctype3, doctype4, doctype5,$/;" v file: +doctype5 android/expat/lib/xmlrole.c /^doctype5(PROLOG_STATE *state,$/;" f file: +doctypeName android/expat/lib/xmlparse.c /^#define doctypeName /;" d file: +doctypePubid android/expat/lib/xmlparse.c /^#define doctypePubid /;" d file: +doctypeSysid android/expat/lib/xmlparse.c /^#define doctypeSysid /;" d file: +documentEntity android/expat/lib/xmlrole.h /^ int documentEntity;$/;" m struct:prolog_state +dom tools/gyp/build/lib/gyp/xml_fix.py /^import xml.dom.minidom$/;" i +dom tools/gyp/pylib/gyp/xml_fix.py /^import xml.dom.minidom$/;" i +done android/freetype/include/freetype/internal/ftobjs.h /^ FT_CMap_DoneFunc done;$/;" m struct:FT_CMap_ClassRec_ +done android/freetype/include/freetype/internal/psaux.h /^ (*done)( AFM_Parser parser );$/;" m struct:AFM_Parser_FuncsRec_ +done android/freetype/include/freetype/internal/psaux.h /^ (*done)( PS_Parser parser );$/;" m struct:PS_Parser_FuncsRec_ +done android/freetype/include/freetype/internal/psaux.h /^ (*done)( PS_Table table );$/;" m struct:PS_Table_FuncsRec_ +done android/freetype/include/freetype/internal/psaux.h /^ (*done)( T1_Builder builder );$/;" m struct:T1_Builder_FuncsRec_ +done android/freetype/include/freetype/internal/psaux.h /^ (*done)( T1_Decoder decoder );$/;" m struct:T1_Decoder_FuncsRec_ +done include/freetype/internal/ftobjs.h /^ FT_CMap_DoneFunc done;$/;" m struct:FT_CMap_ClassRec_ +done include/freetype/internal/psaux.h /^ (*done)( AFM_Parser parser );$/;" m struct:AFM_Parser_FuncsRec_ +done include/freetype/internal/psaux.h /^ (*done)( PS_Parser parser );$/;" m struct:PS_Parser_FuncsRec_ +done include/freetype/internal/psaux.h /^ (*done)( PS_Table table );$/;" m struct:PS_Table_FuncsRec_ +done include/freetype/internal/psaux.h /^ (*done)( T1_Builder builder );$/;" m struct:T1_Builder_FuncsRec_ +done include/freetype/internal/psaux.h /^ (*done)( T1_Decoder decoder );$/;" m struct:T1_Decoder_FuncsRec_ +done_face android/freetype/include/freetype/internal/ftdriver.h /^ FT_Face_DoneFunc done_face;$/;" m struct:FT_Driver_ClassRec_ +done_face android/freetype/include/freetype/internal/sfnt.h /^ TT_Done_Face_Func done_face;$/;" m struct:SFNT_Interface_ +done_face include/freetype/internal/ftdriver.h /^ FT_Face_DoneFunc done_face;$/;" m struct:FT_Driver_ClassRec_ +done_face include/freetype/internal/sfnt.h /^ TT_Done_Face_Func done_face;$/;" m struct:SFNT_Interface_ +done_global_hints android/freetype/include/freetype/internal/autohint.h /^ FT_AutoHinter_GlobalDoneFunc done_global_hints;$/;" m struct:FT_AutoHinter_ServiceRec_ +done_global_hints include/freetype/internal/autohint.h /^ FT_AutoHinter_GlobalDoneFunc done_global_hints;$/;" m struct:FT_AutoHinter_ServiceRec_ +done_size android/freetype/include/freetype/internal/ftdriver.h /^ FT_Size_DoneFunc done_size;$/;" m struct:FT_Driver_ClassRec_ +done_size include/freetype/internal/ftdriver.h /^ FT_Size_DoneFunc done_size;$/;" m struct:FT_Driver_ClassRec_ +done_slot android/freetype/include/freetype/internal/ftdriver.h /^ FT_Slot_DoneFunc done_slot;$/;" m struct:FT_Driver_ClassRec_ +done_slot include/freetype/internal/ftdriver.h /^ FT_Slot_DoneFunc done_slot;$/;" m struct:FT_Driver_ClassRec_ +downscale src/gfx/gfx_rasterizer_scanline.h /^ static int downscale(int v) { return v; }$/;" f class:gfx::scanline_generator +downscale_shift src/gfx/gfx_gradient_adapter.h /^ downscale_shift = interpolator_type::subpixel_shift - gradient_subpixel_shift,$/;" e enum:gfx::gfx_span_gradient::__anon56 +drawCursors demos/clock.c /^static void drawCursors(ps_context*gc, unsigned hours, unsigned minutes, unsigned seconds, unsigned milliseconds)$/;" f file: +draw_test test/alpha_func.c /^void draw_test (int id, ps_context* gc)$/;" f +draw_test test/bitblt_func.c /^void draw_test (int id, ps_context* gc)$/;" f +draw_test test/blur_func.c /^void draw_test (int id, ps_context* gc)$/;" f +draw_test test/clip_func.c /^void draw_test (int id, ps_context* gc)$/;" f +draw_test test/composite_func.c /^void draw_test (int id, ps_context* gc)$/;" f +draw_test test/gamma_func.c /^void draw_test (int id, ps_context* gc)$/;" f +draw_test test/gcstate_func.c /^void draw_test (int id, ps_context* gc)$/;" f +draw_test test/gradient_func.c /^void draw_test (int id, ps_context* gc)$/;" f +draw_test test/mask_func.c /^void draw_test (int id, ps_context* gc)$/;" f +draw_test test/part_func.c /^void draw_test (int id, ps_context* gc)$/;" f +draw_test test/path_func.c /^void draw_test (int id, ps_context* gc)$/;" f +draw_test test/pattern_func.c /^void draw_test (int id, ps_context* gc)$/;" f +draw_test test/shadow_func.c /^void draw_test (int id, ps_context* gc)$/;" f +draw_test test/text_func.c /^void draw_test (int id, ps_context* gc)$/;" f +draw_test test/thread_func.c /^void draw_test (int id, ps_context* gc)$/;" f +draw_wave demos/lake.c /^static void draw_wave(ps_context* gc, int h)$/;" f file: +drawarea demos/platform_gtk2.c /^GtkWidget *drawarea;$/;" v +driver android/freetype/include/freetype/freetype.h /^ FT_Driver driver;$/;" m struct:FT_FaceRec_ +driver android/freetype/include/freetype/freetype.h /^ FT_Module driver;$/;" m struct:FT_Open_Args_ +driver android/freetype/src/truetype/ttinterp.h /^ TT_New_Context( TT_Driver driver );$/;" v +driver include/freetype/freetype.h /^ FT_Driver driver;$/;" m struct:FT_FaceRec_ +driver include/freetype/freetype.h /^ FT_Module driver;$/;" m struct:FT_Open_Args_ +dropOutControl android/freetype/src/raster/ftraster.c /^ Byte dropOutControl; \/* current drop_out control method *\/$/;" m struct:TWorker_ file: +dstart src/picasso_objects.h /^ scalar dstart;$/;" m struct:picasso::graphic_pen +dtdCopy android/expat/lib/xmlparse.c /^dtdCopy(XML_Parser oldParser, DTD *newDtd, const DTD *oldDtd, const XML_Memory_Handling_Suite *ms)$/;" f file: +dtdCreate android/expat/lib/xmlparse.c /^dtdCreate(const XML_Memory_Handling_Suite *ms)$/;" f file: +dtdDestroy android/expat/lib/xmlparse.c /^dtdDestroy(DTD *p, XML_Bool isDocEntity, const XML_Memory_Handling_Suite *ms)$/;" f file: +dtdReset android/expat/lib/xmlparse.c /^dtdReset(DTD *p, const XML_Memory_Handling_Suite *ms)$/;" f file: +dualVector android/freetype/src/truetype/ttobjs.h /^ FT_UnitVector dualVector;$/;" m struct:TT_GraphicsState_ +dx demos/flowers.c /^ float dx, dy;$/;" m struct:__anon37 file: +dx src/picasso_gpc.cpp /^ float dx; \/* Change in x for a unit y increase *\/$/;" m struct:picasso::edge_shape file: +dx src/picasso_gpc.cpp /^ float dx; \/* Change in x for a unit y increase *\/$/;" m struct:picasso::st_shape file: +dx_limit src/gfx/gfx_rasterizer_cell.h /^ dx_limit = 16384 << poly_subpixel_shift,$/;" e enum:gfx::gfx_rasterizer_cells_aa::__anon152 +dy demos/flowers.c /^ float dx, dy;$/;" m struct:__anon37 file: +dy src/gfx/gfx_line_generator.h /^ int dy(void) const { return m_dy; }$/;" f class:gfx::gfx_dda_line_interpolator +early_variable_re tools/gyp/build/lib/gyp/input.py /^early_variable_re = re.compile($/;" v +early_variable_re tools/gyp/pylib/gyp/input.py /^early_variable_re = re.compile($/;" v +easy_xml tools/gyp/build/lib/gyp/MSVSProject.py /^import gyp.easy_xml as easy_xml$/;" i +easy_xml tools/gyp/build/lib/gyp/MSVSToolFile.py /^import gyp.easy_xml as easy_xml$/;" i +easy_xml tools/gyp/build/lib/gyp/MSVSUserFile.py /^import gyp.easy_xml as easy_xml$/;" i +easy_xml tools/gyp/build/lib/gyp/easy_xml_test.py /^import gyp.easy_xml as easy_xml$/;" i +easy_xml tools/gyp/build/lib/gyp/generator/msvs.py /^import gyp.easy_xml as easy_xml$/;" i +easy_xml tools/gyp/pylib/gyp/MSVSProject.py /^import gyp.easy_xml as easy_xml$/;" i +easy_xml tools/gyp/pylib/gyp/MSVSToolFile.py /^import gyp.easy_xml as easy_xml$/;" i +easy_xml tools/gyp/pylib/gyp/MSVSUserFile.py /^import gyp.easy_xml as easy_xml$/;" i +easy_xml tools/gyp/pylib/gyp/easy_xml_test.py /^import gyp.easy_xml as easy_xml$/;" i +easy_xml tools/gyp/pylib/gyp/generator/msvs.py /^import gyp.easy_xml as easy_xml$/;" i +ebdt_size android/freetype/src/sfnt/ttsbit0.c /^ FT_ULong ebdt_size;$/;" m struct:TT_SBitDecoderRec_ file: +ebdt_start android/freetype/src/sfnt/ttsbit0.c /^ FT_ULong ebdt_start;$/;" m struct:TT_SBitDecoderRec_ file: +eblc_base android/freetype/src/sfnt/ttsbit0.c /^ FT_Byte* eblc_base;$/;" m struct:TT_SBitDecoderRec_ file: +eblc_limit android/freetype/src/sfnt/ttsbit0.c /^ FT_Byte* eblc_limit;$/;" m struct:TT_SBitDecoderRec_ file: +edge android/freetype/src/autofit/afhints.h /^ AF_Edge edge; \/* the segment's parent edge *\/$/;" m struct:AF_SegmentRec_ +edge src/gfx/gfx_rasterizer_scanline.h /^ void edge(int x1, int y1, int x2, int y2)$/;" f class:gfx::gfx_rasterizer_scanline_aa +edge src/picasso_gpc.cpp /^ edge_node *edge; \/* Pointer to AET edge *\/$/;" m struct:picasso::st_shape file: +edge_d src/gfx/gfx_rasterizer_scanline.h /^ void edge_d(scalar x1, scalar y1, scalar x2, scalar y2)$/;" f class:gfx::gfx_rasterizer_scanline_aa +edge_distance_threshold android/freetype/src/autofit/afhints.h /^ FT_Pos edge_distance_threshold;$/;" m struct:AF_GlyphHintsRec_ +edge_distance_threshold android/freetype/src/autofit/aflatin.h /^ FT_Pos edge_distance_threshold;$/;" m struct:AF_LatinAxisRec_ +edge_next android/freetype/src/autofit/afhints.h /^ AF_Segment edge_next; \/* link to next segment in parent edge *\/$/;" m struct:AF_SegmentRec_ +edge_node src/picasso_gpc.cpp /^} edge_node;$/;" t namespace:picasso typeref:struct:picasso::edge_shape file: +edge_shape src/picasso_gpc.cpp /^typedef struct edge_shape {$/;" s namespace:picasso file: +edges android/freetype/src/autofit/afhints.h /^ AF_Edge edges;$/;" m struct:AF_AxisHintsRec_ +element0 android/expat/lib/xmlrole.c /^ element0, element1, element2, element3, element4, element5, element6,$/;" v file: +element0 android/expat/lib/xmlrole.c /^element0(PROLOG_STATE *state,$/;" f file: +element1 android/expat/lib/xmlrole.c /^ element0, element1, element2, element3, element4, element5, element6,$/;" v file: +element1 android/expat/lib/xmlrole.c /^element1(PROLOG_STATE *state,$/;" f file: +element2 android/expat/lib/xmlrole.c /^ element0, element1, element2, element3, element4, element5, element6,$/;" v file: +element2 android/expat/lib/xmlrole.c /^element2(PROLOG_STATE *state,$/;" f file: +element3 android/expat/lib/xmlrole.c /^ element0, element1, element2, element3, element4, element5, element6,$/;" v file: +element3 android/expat/lib/xmlrole.c /^element3(PROLOG_STATE *state,$/;" f file: +element4 android/expat/lib/xmlrole.c /^ element0, element1, element2, element3, element4, element5, element6,$/;" v file: +element4 android/expat/lib/xmlrole.c /^element4(PROLOG_STATE *state,$/;" f file: +element5 android/expat/lib/xmlrole.c /^ element0, element1, element2, element3, element4, element5, element6,$/;" v file: +element5 android/expat/lib/xmlrole.c /^element5(PROLOG_STATE *state,$/;" f file: +element6 android/expat/lib/xmlrole.c /^ element0, element1, element2, element3, element4, element5, element6,$/;" v file: +element6 android/expat/lib/xmlrole.c /^element6(PROLOG_STATE *state,$/;" f file: +element7 android/expat/lib/xmlrole.c /^ element7,$/;" v file: +element7 android/expat/lib/xmlrole.c /^element7(PROLOG_STATE *state,$/;" f file: +elementDeclHandler android/expat/lib/xmlparse.c /^#define elementDeclHandler /;" d file: +elementTypes android/expat/lib/xmlparse.c /^ HASH_TABLE elementTypes;$/;" m struct:__anon17 file: +element_flag android/freetype/src/truetype/ttobjs.h /^ FT_UShort element_flag; \/* current load element flag *\/$/;" m struct:TT_SubglyphRec_ +elements android/freetype/include/freetype/internal/psaux.h /^ FT_Byte** elements; \/* addresses of table elements *\/$/;" m struct:PS_TableRec_ +elements include/freetype/internal/psaux.h /^ FT_Byte** elements; \/* addresses of table elements *\/$/;" m struct:PS_TableRec_ +ellipse src/include/geometry.h /^ ellipse() $/;" f class:picasso::ellipse +ellipse src/include/geometry.h /^ ellipse(scalar x, scalar y, scalar rx, scalar ry, unsigned int num_steps = 0, bool cw = false) $/;" f class:picasso::ellipse +ellipse src/include/geometry.h /^class ellipse : public vertex_source$/;" c namespace:picasso +embedded_postscript android/freetype/src/cff/cfftypes.h /^ FT_UInt embedded_postscript;$/;" m struct:CFF_FontRecDictRec_ +embedded_scanline src/gfx/gfx_scanline_storage.h /^ embedded_scanline() : m_ptr(0), m_y(0), m_num_spans(0), m_dx(0) { }$/;" f class:gfx::gfx_serialized_scanlines_adaptor_aa::embedded_scanline +embedded_scanline src/gfx/gfx_scanline_storage.h /^ embedded_scanline() : m_ptr(0), m_y(0), m_num_spans(0), m_dx(0) { }$/;" f class:gfx::gfx_serialized_scanlines_adaptor_bin::embedded_scanline +embedded_scanline src/gfx/gfx_scanline_storage.h /^ embedded_scanline(const gfx_scanline_storage_aa& storage)$/;" f class:gfx::gfx_scanline_storage_aa::embedded_scanline +embedded_scanline src/gfx/gfx_scanline_storage.h /^ embedded_scanline(const gfx_scanline_storage_bin& storage)$/;" f class:gfx::gfx_scanline_storage_bin::embedded_scanline +embedded_scanline src/gfx/gfx_scanline_storage.h /^ class embedded_scanline$/;" c class:gfx::gfx_scanline_storage_aa +embedded_scanline src/gfx/gfx_scanline_storage.h /^ class embedded_scanline$/;" c class:gfx::gfx_scanline_storage_bin +embedded_scanline src/gfx/gfx_scanline_storage.h /^ class embedded_scanline$/;" c class:gfx::gfx_serialized_scanlines_adaptor_aa +embedded_scanline src/gfx/gfx_scanline_storage.h /^ class embedded_scanline$/;" c class:gfx::gfx_serialized_scanlines_adaptor_bin +enc android/expat/lib/xmltok.c /^ const ENCODING *enc,$/;" v file: +enc android/expat/lib/xmltok.c /^ ENCODING enc;$/;" m struct:normal_encoding file: +encPtr android/expat/lib/xmltok.h /^ const ENCODING **encPtr;$/;" m struct:__anon22 +encoding android/expat/lib/expat.h /^XML_ParserCreate(const XML_Char *encoding);$/;" v +encoding android/expat/lib/xmlparse.c /^#define encoding /;" d file: +encoding android/expat/lib/xmltok.c /^ const ENCODING **encoding,$/;" v file: +encoding android/expat/lib/xmltok.h /^struct encoding {$/;" s +encoding android/freetype/include/freetype/freetype.h /^ FT_Encoding encoding;$/;" m struct:FT_CharMapRec_ +encoding android/freetype/include/freetype/internal/t1types.h /^ T1_EncodingRec encoding;$/;" m struct:T1_FontRec_ +encoding android/freetype/src/cff/cfftypes.h /^ CFF_EncodingRec encoding;$/;" m struct:CFF_FontRec_ +encoding include/expat.h /^XML_ParserCreate(const XML_Char *encoding);$/;" v +encoding include/freetype/freetype.h /^ FT_Encoding encoding;$/;" m struct:FT_CharMapRec_ +encoding include/freetype/internal/t1types.h /^ T1_EncodingRec encoding;$/;" m struct:T1_FontRec_ +encodingID android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort encodingID;$/;" m struct:TT_NameEntryRec_ +encodingID include/freetype/internal/tttypes.h /^ FT_UShort encodingID;$/;" m struct:TT_NameEntryRec_ +encodingName android/expat/lib/xmltok.c /^ const char **encodingName,$/;" v file: +encoding_id android/freetype/include/freetype/freetype.h /^ FT_UShort encoding_id;$/;" m struct:FT_CharMapRec_ +encoding_id android/freetype/include/freetype/ftsnames.h /^ FT_UShort encoding_id;$/;" m struct:FT_SfntName_ +encoding_id include/freetype/freetype.h /^ FT_UShort encoding_id;$/;" m struct:FT_CharMapRec_ +encoding_id include/freetype/ftsnames.h /^ FT_UShort encoding_id;$/;" m struct:FT_SfntName_ +encoding_offset android/freetype/src/cff/cfftypes.h /^ FT_ULong encoding_offset;$/;" m struct:CFF_FontRecDictRec_ +encoding_type android/freetype/include/freetype/internal/t1types.h /^ T1_EncodingType encoding_type;$/;" m struct:T1_FontRec_ +encoding_type include/freetype/internal/t1types.h /^ T1_EncodingType encoding_type;$/;" m struct:T1_FontRec_ +end android/expat/lib/xmlparse.c /^ NAMED **end;$/;" m struct:__anon9 file: +end android/expat/lib/xmlparse.c /^ const XML_Char *end;$/;" m struct:__anon13 file: +end android/expat/lib/xmltok.c /^ const char *end,$/;" v file: +end src/gfx/gfx_gamma_function.h /^ scalar end(void) const { return m_end; }$/;" f class:gfx::gamma_linear +end src/gfx/gfx_gamma_function.h /^ void end(scalar e) { m_end = e; }$/;" f class:gfx::gamma_linear +endCdataSectionHandler android/expat/lib/xmlparse.c /^#define endCdataSectionHandler /;" d file: +endDoctypeDeclHandler android/expat/lib/xmlparse.c /^#define endDoctypeDeclHandler /;" d file: +endElementHandler android/expat/lib/xmlparse.c /^#define endElementHandler /;" d file: +endNamespaceDeclHandler android/expat/lib/xmlparse.c /^#define endNamespaceDeclHandler /;" d file: +end_contour src/include/convert.h /^ void end_contour(unsigned int orientation)$/;" f class:picasso::conv_clipper +end_glyph android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort end_glyph;$/;" m struct:TT_SBit_StrikeRec_ +end_glyph include/freetype/internal/tttypes.h /^ FT_UShort end_glyph;$/;" m struct:TT_SBit_StrikeRec_ +end_of_comp_op src/include/graphic_base.h /^ end_of_comp_op,$/;" e enum:picasso::__anon209 +end_point android/freetype/src/pshinter/pshrec.h /^ FT_UInt end_point;$/;" m struct:PS_MaskRec_ +end_poly src/core/graphic_path.cpp /^void graphic_path::end_poly(unsigned int flags)$/;" f class:picasso::graphic_path +end_poly1 src/include/convert.h /^ end_poly1,$/;" e enum:picasso::conv_stroke::__anon192 +end_poly2 src/include/convert.h /^ end_poly2,$/;" e enum:picasso::conv_stroke::__anon192 +engine android/jni/test_android.cpp /^struct engine {$/;" s file: +engine_draw_frame android/jni/test_android.cpp /^static void engine_draw_frame(struct engine* engine)$/;" f file: +engine_handle_cmd android/jni/test_android.cpp /^static void engine_handle_cmd(struct android_app* app, int32_t cmd)$/;" f file: +engine_handle_input android/jni/test_android.cpp /^static int32_t engine_handle_input(struct android_app* app, AInputEvent* event)$/;" f file: +engine_init_display android/jni/test_android.cpp /^static int engine_init_display(struct engine* engine)$/;" f file: +engine_term_display android/jni/test_android.cpp /^static void engine_term_display(struct engine* engine)$/;" f file: +ensure_directory_exists tools/gyp/build/lib/gyp/generator/make.py /^def ensure_directory_exists(path):$/;" f +ensure_directory_exists tools/gyp/pylib/gyp/generator/make.py /^def ensure_directory_exists(path):$/;" f +entity android/expat/lib/xmlparse.c /^ ENTITY *entity;$/;" m struct:open_internal_entity file: +entity0 android/expat/lib/xmlrole.c /^ entity0, entity1, entity2, entity3, entity4, entity5, entity6,$/;" v file: +entity0 android/expat/lib/xmlrole.c /^entity0(PROLOG_STATE *state,$/;" f file: +entity1 android/expat/lib/xmlrole.c /^ entity0, entity1, entity2, entity3, entity4, entity5, entity6,$/;" v file: +entity1 android/expat/lib/xmlrole.c /^entity1(PROLOG_STATE *state,$/;" f file: +entity10 android/expat/lib/xmlrole.c /^ entity7, entity8, entity9, entity10,$/;" v file: +entity10 android/expat/lib/xmlrole.c /^entity10(PROLOG_STATE *state,$/;" f file: +entity2 android/expat/lib/xmlrole.c /^ entity0, entity1, entity2, entity3, entity4, entity5, entity6,$/;" v file: +entity2 android/expat/lib/xmlrole.c /^entity2(PROLOG_STATE *state,$/;" f file: +entity3 android/expat/lib/xmlrole.c /^ entity0, entity1, entity2, entity3, entity4, entity5, entity6,$/;" v file: +entity3 android/expat/lib/xmlrole.c /^entity3(PROLOG_STATE *state,$/;" f file: +entity4 android/expat/lib/xmlrole.c /^ entity0, entity1, entity2, entity3, entity4, entity5, entity6,$/;" v file: +entity4 android/expat/lib/xmlrole.c /^entity4(PROLOG_STATE *state,$/;" f file: +entity5 android/expat/lib/xmlrole.c /^ entity0, entity1, entity2, entity3, entity4, entity5, entity6,$/;" v file: +entity5 android/expat/lib/xmlrole.c /^entity5(PROLOG_STATE *state,$/;" f file: +entity6 android/expat/lib/xmlrole.c /^ entity0, entity1, entity2, entity3, entity4, entity5, entity6,$/;" v file: +entity6 android/expat/lib/xmlrole.c /^entity6(PROLOG_STATE *state,$/;" f file: +entity7 android/expat/lib/xmlrole.c /^ entity7, entity8, entity9, entity10,$/;" v file: +entity7 android/expat/lib/xmlrole.c /^entity7(PROLOG_STATE *state,$/;" f file: +entity8 android/expat/lib/xmlrole.c /^ entity7, entity8, entity9, entity10,$/;" v file: +entity8 android/expat/lib/xmlrole.c /^entity8(PROLOG_STATE *state,$/;" f file: +entity9 android/expat/lib/xmlrole.c /^ entity7, entity8, entity9, entity10,$/;" v file: +entity9 android/expat/lib/xmlrole.c /^entity9(PROLOG_STATE *state,$/;" f file: +entityDeclHandler android/expat/lib/xmlparse.c /^#define entityDeclHandler /;" d file: +entityValueInitProcessor android/expat/lib/xmlparse.c /^entityValueInitProcessor(XML_Parser parser,$/;" f file: +entityValueInitProcessor android/expat/lib/xmlparse.c /^static Processor entityValueInitProcessor;$/;" v file: +entityValuePool android/expat/lib/xmlparse.c /^ STRING_POOL entityValuePool;$/;" m struct:__anon17 file: +entityValueProcessor android/expat/lib/xmlparse.c /^entityValueProcessor(XML_Parser parser,$/;" f file: +entityValueProcessor android/expat/lib/xmlparse.c /^static Processor entityValueProcessor;$/;" v file: +entityValueTok android/expat/lib/xmltok_impl.c /^PREFIX(entityValueTok)(const ENCODING *enc, const char *ptr,$/;" f file: +entry_selector android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort entry_selector;$/;" m struct:SFNT_HeaderRec_ +entry_selector include/freetype/internal/tttypes.h /^ FT_UShort entry_selector;$/;" m struct:SFNT_HeaderRec_ +epilogProcessor android/expat/lib/xmlparse.c /^epilogProcessor(XML_Parser parser,$/;" f file: +epilogProcessor android/expat/lib/xmlparse.c /^static Processor epilogProcessor;$/;" v file: +errno tools/gyp/build/lib/gyp/MSVSVersion.py /^import errno$/;" i +errno tools/gyp/build/lib/gyp/common.py /^import errno$/;" i +errno tools/gyp/build/lib/gyp/generator/gypd.py /^import errno$/;" i +errno tools/gyp/build/lib/gyp/generator/xcode.py /^import errno$/;" i +errno tools/gyp/pylib/gyp/MSVSVersion.py /^import errno$/;" i +errno tools/gyp/pylib/gyp/common.py /^import errno$/;" i +errno tools/gyp/pylib/gyp/generator/gypd.py /^import errno$/;" i +errno tools/gyp/pylib/gyp/generator/xcode.py /^import errno$/;" i +error android/expat/lib/xmlrole.c /^ error;$/;" v file: +error android/expat/lib/xmlrole.c /^error(PROLOG_STATE *state,$/;" f file: +error android/freetype/include/freetype/internal/ftvalid.h /^ FT_Error error; \/* error returned. 0 means success *\/$/;" m struct:FT_ValidatorRec_ +error android/freetype/include/freetype/internal/psaux.h /^ FT_Error error;$/;" m struct:PS_ParserRec_ +error android/freetype/src/pshinter/pshrec.h /^ FT_Error error;$/;" m struct:PS_HintsRec_ +error android/freetype/src/raster/ftraster.c /^ FT_Error error;$/;" m struct:TWorker_ file: +error android/freetype/src/truetype/ttinterp.h /^ FT_Error error; \/* last execution error *\/$/;" m struct:TT_ExecContextRec_ +error include/freetype/internal/ftvalid.h /^ FT_Error error; \/* error returned. 0 means success *\/$/;" m struct:FT_ValidatorRec_ +error include/freetype/internal/psaux.h /^ FT_Error error;$/;" m struct:PS_ParserRec_ +errorCode android/expat/lib/xmlparse.c /^#define errorCode /;" d file: +errorProcessor android/expat/lib/xmlparse.c /^errorProcessor(XML_Parser parser,$/;" f file: +errorProcessor android/expat/lib/xmlparse.c /^static Processor errorProcessor;$/;" v file: +escape tools/gyp/build/lib/gyp/generator/eclipse.py /^from xml.sax.saxutils import escape$/;" i +escape tools/gyp/build/lib/gyp/ninja_syntax.py /^def escape(string):$/;" f +escape tools/gyp/pylib/gyp/generator/eclipse.py /^from xml.sax.saxutils import escape$/;" i +escape tools/gyp/pylib/gyp/ninja_syntax.py /^def escape(string):$/;" f +escape_path tools/gyp/build/lib/gyp/ninja_syntax.py /^def escape_path(word):$/;" f +escape_path tools/gyp/pylib/gyp/ninja_syntax.py /^def escape_path(word):$/;" f +eventEndPtr android/expat/lib/xmlparse.c /^#define eventEndPtr /;" d file: +eventPtr android/expat/lib/xmlparse.c /^#define eventPtr /;" d file: +ex android/freetype/src/smooth/ftgrays.c /^ TCoord ex, ey;$/;" m struct:TWorker_ file: +excluded_key tools/gyp/build/lib/gyp/generator/xcode.py /^ excluded_key = key + '_excluded'$/;" v +excluded_key tools/gyp/pylib/gyp/generator/xcode.py /^ excluded_key = key + '_excluded'$/;" v +exec android/freetype/include/freetype/internal/tttypes.h /^ TT_ExecContext exec;$/;" m struct:TT_LoaderRec_ +exec android/freetype/src/truetype/ttinterp.h /^ TT_Done_Context( TT_ExecContext exec );$/;" v +exec android/freetype/src/truetype/ttinterp.h /^ TT_RunIns( TT_ExecContext exec );$/;" v +exec include/freetype/internal/tttypes.h /^ TT_ExecContext exec;$/;" m struct:TT_LoaderRec_ +execute tools/gyp/gyptest.py /^ def execute(self, command, stdout=None, stderr=None):$/;" m class:CommandRunner +expansion_factor android/freetype/include/freetype/t1tables.h /^ FT_Fixed expansion_factor;$/;" m struct:CID_FaceDictRec_ +expansion_factor android/freetype/include/freetype/t1tables.h /^ FT_Fixed expansion_factor;$/;" m struct:PS_PrivateRec_ +expansion_factor android/freetype/src/cff/cfftypes.h /^ FT_Fixed expansion_factor;$/;" m struct:CFF_PrivateRec_ +expansion_factor include/freetype/t1tables.h /^ FT_Fixed expansion_factor;$/;" m struct:CID_FaceDictRec_ +expansion_factor include/freetype/t1tables.h /^ FT_Fixed expansion_factor;$/;" m struct:PS_PrivateRec_ +expert android/freetype/include/freetype/internal/psaux.h /^ FT_CMap_Class expert;$/;" m struct:T1_CMap_ClassesRec_ +expert include/freetype/internal/psaux.h /^ FT_CMap_Class expert;$/;" m struct:T1_CMap_ClassesRec_ +expose demos/platform_gtk2.c /^static gboolean expose(GtkWidget *widget, GdkEventExpose *event)$/;" f file: +expose test/testGtk2.c /^gboolean expose (GtkWidget *widget, GdkEventExpose *event)$/;" f +extension_component android/freetype/src/cff/cffobjs.h /^ void* extension_component;$/;" m struct:CFF_DriverRec_ +extension_component android/freetype/src/truetype/ttobjs.h /^ void* extension_component;$/;" m struct:TT_DriverRec_ +extensions android/freetype/include/freetype/freetype.h /^ void* extensions;$/;" m struct:FT_FaceRec_ +extensions android/freetype/include/freetype/internal/ftobjs.h /^ void* extensions;$/;" m struct:FT_DriverRec_ +extensions include/freetype/freetype.h /^ void* extensions;$/;" m struct:FT_FaceRec_ +extensions include/freetype/internal/ftobjs.h /^ void* extensions;$/;" m struct:FT_DriverRec_ +externalEntityContentProcessor android/expat/lib/xmlparse.c /^externalEntityContentProcessor(XML_Parser parser,$/;" f file: +externalEntityContentProcessor android/expat/lib/xmlparse.c /^static Processor externalEntityContentProcessor;$/;" v file: +externalEntityInitProcessor android/expat/lib/xmlparse.c /^externalEntityInitProcessor(XML_Parser parser,$/;" f file: +externalEntityInitProcessor android/expat/lib/xmlparse.c /^static Processor externalEntityInitProcessor;$/;" v file: +externalEntityInitProcessor2 android/expat/lib/xmlparse.c /^externalEntityInitProcessor2(XML_Parser parser,$/;" f file: +externalEntityInitProcessor2 android/expat/lib/xmlparse.c /^static Processor externalEntityInitProcessor2;$/;" v file: +externalEntityInitProcessor3 android/expat/lib/xmlparse.c /^externalEntityInitProcessor3(XML_Parser parser,$/;" f file: +externalEntityInitProcessor3 android/expat/lib/xmlparse.c /^static Processor externalEntityInitProcessor3;$/;" v file: +externalEntityRefHandler android/expat/lib/xmlparse.c /^#define externalEntityRefHandler /;" d file: +externalEntityRefHandlerArg android/expat/lib/xmlparse.c /^#define externalEntityRefHandlerArg /;" d file: +externalParEntInitProcessor android/expat/lib/xmlparse.c /^externalParEntInitProcessor(XML_Parser parser,$/;" f file: +externalParEntInitProcessor android/expat/lib/xmlparse.c /^static Processor externalParEntInitProcessor;$/;" v file: +externalParEntProcessor android/expat/lib/xmlparse.c /^externalParEntProcessor(XML_Parser parser,$/;" f file: +externalParEntProcessor android/expat/lib/xmlparse.c /^static Processor externalParEntProcessor;$/;" v file: +externalSubset0 android/expat/lib/xmlrole.c /^ externalSubset0, externalSubset1,$/;" v file: +externalSubset0 android/expat/lib/xmlrole.c /^externalSubset0(PROLOG_STATE *state,$/;" f file: +externalSubset1 android/expat/lib/xmlrole.c /^ externalSubset0, externalSubset1,$/;" v file: +externalSubset1 android/expat/lib/xmlrole.c /^externalSubset1(PROLOG_STATE *state,$/;" f file: +external_leading android/freetype/include/freetype/ftwinfnt.h /^ FT_UShort external_leading;$/;" m struct:FT_WinFNT_HeaderRec_ +external_leading include/freetype/ftwinfnt.h /^ FT_UShort external_leading;$/;" m struct:FT_WinFNT_HeaderRec_ +extra android/freetype/include/freetype/internal/tttypes.h /^ FT_Generic extra;$/;" m struct:TT_FaceRec_ +extra include/freetype/internal/tttypes.h /^ FT_Generic extra;$/;" m struct:TT_FaceRec_ +extra_light android/freetype/src/autofit/aflatin.h /^ FT_Bool extra_light;$/;" m struct:AF_LatinAxisRec_ +extra_points android/freetype/include/freetype/internal/ftgloadr.h /^ FT_Vector* extra_points; \/* extra points table *\/$/;" m struct:FT_GlyphLoadRec_ +extra_points include/freetype/internal/ftgloadr.h /^ FT_Vector* extra_points; \/* extra points table *\/$/;" m struct:FT_GlyphLoadRec_ +extra_points2 android/freetype/include/freetype/internal/ftgloadr.h /^ FT_Vector* extra_points2; \/* second extra points table *\/$/;" m struct:FT_GlyphLoadRec_ +extra_points2 include/freetype/internal/ftgloadr.h /^ FT_Vector* extra_points2; \/* second extra points table *\/$/;" m struct:FT_GlyphLoadRec_ +extra_span src/gfx/gfx_scanline_storage.h /^ } extra_span;$/;" t class:gfx::gfx_scanline_cell_storage typeref:struct:gfx::gfx_scanline_cell_storage::__anon158 +ey android/freetype/src/smooth/ftgrays.c /^ TCoord ex, ey;$/;" m struct:TWorker_ file: +f android/freetype/src/psaux/afmparse.h /^ FT_Fixed f;$/;" m union:AFM_ValueRec_::__anon31 +f android/freetype/src/raster/ftraster.c /^ void (*f)(void);$/;" m union:Alignment_ file: +fProfile android/freetype/src/raster/ftraster.c /^ PProfile fProfile; \/* head of linked list of profiles *\/$/;" m struct:TWorker_ file: +fabs src/core/fixedopt.cpp /^fixed fabs(fixed x)$/;" f namespace:fxmath +fabsf src/include/platform.h /^#define fabsf(/;" d +face android/freetype/include/freetype/freetype.h /^ FT_Face face; \/* parent face object *\/$/;" m struct:FT_SizeRec_ +face android/freetype/include/freetype/freetype.h /^ FT_Face face;$/;" m struct:FT_GlyphSlotRec_ +face android/freetype/include/freetype/freetype.h /^ FT_Face face;$/;" m struct:FT_CharMapRec_ +face android/freetype/include/freetype/freetype.h /^ FT_Done_Face( FT_Face face );$/;" v +face android/freetype/include/freetype/freetype.h /^ FT_Face_CheckTrueTypePatents( FT_Face face );$/;" v +face android/freetype/include/freetype/freetype.h /^ FT_Face_GetVariantSelectors( FT_Face face );$/;" v +face android/freetype/include/freetype/freetype.h /^ FT_Get_Postscript_Name( FT_Face face );$/;" v +face android/freetype/include/freetype/ftsnames.h /^ FT_Get_Sfnt_Name_Count( FT_Face face );$/;" v +face android/freetype/include/freetype/ftxf86.h /^ FT_Get_X11_Font_Format( FT_Face face );$/;" v +face android/freetype/include/freetype/internal/psaux.h /^ FT_Face face;$/;" m struct:T1_BuilderRec_ +face android/freetype/include/freetype/internal/tttypes.h /^ FT_Face face;$/;" m struct:TT_LoaderRec_ +face android/freetype/include/freetype/t1tables.h /^ FT_Has_PS_Glyph_Names( FT_Face face );$/;" v +face android/freetype/src/autofit/afglobal.c /^ FT_Face face;$/;" m struct:AF_FaceGlobalsRec_ file: +face android/freetype/src/autofit/afloader.h /^ FT_Face face; \/* current face *\/$/;" m struct:AF_LoaderRec_ +face android/freetype/src/autofit/aftypes.h /^ FT_Face face; \/* source font face *\/$/;" m struct:AF_ScalerRec_ +face android/freetype/src/autofit/aftypes.h /^ FT_Face face;$/;" m struct:AF_OutlineRec_ +face android/freetype/src/cff/cffgload.h /^ TT_Face face;$/;" m struct:CFF_Builder_ +face android/freetype/src/cff/cffobjs.h /^ cff_face_done( FT_Face face ); \/* CFF_Face *\/$/;" v +face android/freetype/src/sfnt/sfobjs.h /^ sfnt_done_face( TT_Face face );$/;" v +face android/freetype/src/sfnt/ttbdf.h /^ tt_face_free_bdf_props( TT_Face face );$/;" v +face android/freetype/src/sfnt/ttcmap.h /^ tt_face_build_cmaps( TT_Face face );$/;" v +face android/freetype/src/sfnt/ttkern.h /^ tt_face_done_kern( TT_Face face );$/;" v +face android/freetype/src/sfnt/ttload.h /^ tt_face_free_name( TT_Face face );$/;" v +face android/freetype/src/sfnt/ttpost.h /^ tt_face_free_ps_names( TT_Face face );$/;" v +face android/freetype/src/sfnt/ttsbit.h /^ tt_face_free_eblc( TT_Face face );$/;" v +face android/freetype/src/sfnt/ttsbit0.c /^ TT_Face face;$/;" m struct:TT_SBitDecoderRec_ file: +face android/freetype/src/truetype/ttgload.h /^ TT_Init_Glyph_Loading( TT_Face face );$/;" v +face android/freetype/src/truetype/ttinterp.h /^ TT_Face face;$/;" m struct:TT_ExecContextRec_ +face android/freetype/src/truetype/ttpload.h /^ tt_face_done_loca( TT_Face face );$/;" v +face android/freetype/src/truetype/ttpload.h /^ tt_face_free_hdmx( TT_Face face );$/;" v +face include/freetype/freetype.h /^ FT_Face face; \/* parent face object *\/$/;" m struct:FT_SizeRec_ +face include/freetype/freetype.h /^ FT_Face face;$/;" m struct:FT_GlyphSlotRec_ +face include/freetype/freetype.h /^ FT_Face face;$/;" m struct:FT_CharMapRec_ +face include/freetype/freetype.h /^ FT_Done_Face( FT_Face face );$/;" v +face include/freetype/freetype.h /^ FT_Face_CheckTrueTypePatents( FT_Face face );$/;" v +face include/freetype/freetype.h /^ FT_Face_GetVariantSelectors( FT_Face face );$/;" v +face include/freetype/freetype.h /^ FT_Get_FSType_Flags( FT_Face face );$/;" v +face include/freetype/freetype.h /^ FT_Get_Postscript_Name( FT_Face face );$/;" v +face include/freetype/freetype.h /^ FT_Reference_Face( FT_Face face );$/;" v +face include/freetype/ftsnames.h /^ FT_Get_Sfnt_Name_Count( FT_Face face );$/;" v +face include/freetype/ftxf86.h /^ FT_Get_X11_Font_Format( FT_Face face );$/;" v +face include/freetype/internal/psaux.h /^ FT_Face face;$/;" m struct:T1_BuilderRec_ +face include/freetype/internal/tttypes.h /^ FT_Face face;$/;" m struct:TT_LoaderRec_ +face include/freetype/t1tables.h /^ FT_Has_PS_Glyph_Names( FT_Face face );$/;" v +face_flags android/freetype/include/freetype/freetype.h /^ FT_Long face_flags;$/;" m struct:FT_FaceRec_ +face_flags include/freetype/freetype.h /^ FT_Long face_flags;$/;" m struct:FT_FaceRec_ +face_id android/freetype/include/freetype/ftcache.h /^ FTC_FaceID face_id;$/;" m struct:FTC_FontRec_ +face_id android/freetype/include/freetype/ftcache.h /^ FTC_FaceID face_id;$/;" m struct:FTC_ImageTypeRec_ +face_id android/freetype/include/freetype/ftcache.h /^ FTC_FaceID face_id;$/;" m struct:FTC_ScalerRec_ +face_id include/freetype/ftcache.h /^ FTC_FaceID face_id;$/;" m struct:FTC_FontRec_ +face_id include/freetype/ftcache.h /^ FTC_FaceID face_id;$/;" m struct:FTC_ImageTypeRec_ +face_id include/freetype/ftcache.h /^ FTC_FaceID face_id;$/;" m struct:FTC_ScalerRec_ +face_index android/freetype/include/freetype/freetype.h /^ FT_Long face_index;$/;" m struct:FT_FaceRec_ +face_index include/freetype/freetype.h /^ FT_Long face_index;$/;" m struct:FT_FaceRec_ +face_name_offset android/freetype/include/freetype/ftwinfnt.h /^ FT_ULong face_name_offset;$/;" m struct:FT_WinFNT_HeaderRec_ +face_name_offset include/freetype/ftwinfnt.h /^ FT_ULong face_name_offset;$/;" m struct:FT_WinFNT_HeaderRec_ +face_object_size android/freetype/include/freetype/internal/ftdriver.h /^ FT_Long face_object_size;$/;" m struct:FT_Driver_ClassRec_ +face_object_size include/freetype/internal/ftdriver.h /^ FT_Long face_object_size;$/;" m struct:FT_Driver_ClassRec_ +faces_list android/freetype/include/freetype/internal/ftobjs.h /^ FT_ListRec faces_list;$/;" m struct:FT_DriverRec_ +faces_list include/freetype/internal/ftobjs.h /^ FT_ListRec faces_list;$/;" m struct:FT_DriverRec_ +family_blues android/freetype/include/freetype/t1tables.h /^ FT_Short family_blues [14];$/;" m struct:PS_PrivateRec_ +family_blues android/freetype/src/cff/cfftypes.h /^ FT_Pos family_blues[14];$/;" m struct:CFF_PrivateRec_ +family_blues include/freetype/t1tables.h /^ FT_Short family_blues [14];$/;" m struct:PS_PrivateRec_ +family_bottom android/freetype/src/pshinter/pshglob.h /^ PSH_Blue_TableRec family_bottom;$/;" m struct:PSH_BluesRec_ +family_name android/freetype/include/freetype/freetype.h /^ FT_String* family_name;$/;" m struct:FT_FaceRec_ +family_name android/freetype/include/freetype/t1tables.h /^ FT_String* family_name;$/;" m struct:PS_FontInfoRec_ +family_name android/freetype/src/cff/cfftypes.h /^ FT_UInt family_name;$/;" m struct:CFF_FontRecDictRec_ +family_name include/freetype/freetype.h /^ FT_String* family_name;$/;" m struct:FT_FaceRec_ +family_name include/freetype/t1tables.h /^ FT_String* family_name;$/;" m struct:PS_FontInfoRec_ +family_other_blues android/freetype/include/freetype/t1tables.h /^ FT_Short family_other_blues[10];$/;" m struct:PS_PrivateRec_ +family_other_blues android/freetype/src/cff/cfftypes.h /^ FT_Pos family_other_blues[10];$/;" m struct:CFF_PrivateRec_ +family_other_blues include/freetype/t1tables.h /^ FT_Short family_other_blues[10];$/;" m struct:PS_PrivateRec_ +family_top android/freetype/src/pshinter/pshglob.h /^ PSH_Blue_TableRec family_top;$/;" m struct:PSH_BluesRec_ +fast_sqrt src/gfx/gfx_math.h /^inline unsigned int fast_sqrt(unsigned int val)$/;" f namespace:gfx +fastcopy src/include/fastcopy.h /^#define fastcopy(/;" d +fastcopy4 src/include/fastcopy.h /^inline void fastcopy4(uint8_t* __restrict dest, const uint8_t* __restrict src, int n)$/;" f +fastcopy_sse2_16 src/simd/fastcopy_sse.h /^inline void fastcopy_sse2_16(uint8_t* __restrict dest, const uint8_t* __restrict src, int n)$/;" f +fastcopy_sse2_32 src/simd/fastcopy_sse.h /^inline void fastcopy_sse2_32(uint8_t* __restrict dest, const uint8_t* __restrict src, int n)$/;" f +fcntl tools/gyp/build/lib/gyp/mac_tool.py /^import fcntl$/;" i +fcntl tools/gyp/build/lib/gyp/sun_tool.py /^import fcntl$/;" i +fcntl tools/gyp/pylib/gyp/mac_tool.py /^import fcntl$/;" i +fcntl tools/gyp/pylib/gyp/sun_tool.py /^import fcntl$/;" i +fd_bytes android/freetype/include/freetype/t1tables.h /^ FT_Int fd_bytes;$/;" m struct:CID_FaceInfoRec_ +fd_bytes include/freetype/t1tables.h /^ FT_Int fd_bytes;$/;" m struct:CID_FaceInfoRec_ +fd_select android/freetype/src/cff/cfftypes.h /^ CFF_FDSelectRec fd_select;$/;" m struct:CFF_FontRec_ +feature android/expat/lib/expat.h /^ enum XML_FeatureEnum feature;$/;" m struct:__anon6 typeref:enum:__anon6::XML_FeatureEnum +feature include/expat.h /^ enum XML_FeatureEnum feature;$/;" m struct:__anon52 typeref:enum:__anon52::XML_FeatureEnum +file_name android/freetype/src/base/ftdbgmem.c /^ const char* file_name;$/;" m struct:FT_MemSourceRec_ file: +file_offset android/freetype/src/truetype/ttobjs.h /^ FT_Long file_offset;$/;" m struct:TT_SubglyphRec_ +file_size android/freetype/include/freetype/ftwinfnt.h /^ FT_ULong file_size;$/;" m struct:FT_WinFNT_HeaderRec_ +file_size include/freetype/ftwinfnt.h /^ FT_ULong file_size;$/;" m struct:FT_WinFNT_HeaderRec_ +file_type android/freetype/include/freetype/ftwinfnt.h /^ FT_UShort file_type;$/;" m struct:FT_WinFNT_HeaderRec_ +file_type include/freetype/ftwinfnt.h /^ FT_UShort file_type;$/;" m struct:FT_WinFNT_HeaderRec_ +filecmp tools/gyp/build/lib/gyp/common.py /^import filecmp$/;" i +filecmp tools/gyp/build/lib/gyp/generator/xcode.py /^import filecmp$/;" i +filecmp tools/gyp/pylib/gyp/common.py /^import filecmp$/;" i +filecmp tools/gyp/pylib/gyp/generator/xcode.py /^import filecmp$/;" i +fill_contents_point src/picasso_raster_adapter.cpp /^bool raster_adapter::fill_contents_point(const vertex_source& vs, scalar x, scalar y, filling_rule rule)$/;" f class:picasso::raster_adapter +fill_even_odd src/include/graphic_base.h /^ fill_even_odd$/;" e enum:picasso::__anon207 +fill_hspan src/gfx/gfx_mask_layer.h /^ void fill_hspan(int x, int y, cover_type* dst, int num_pix) const$/;" f class:gfx::gfx_alpha_mask_u8 +fill_impl src/gfx/gfx_raster_adapter.h /^ gfx_rasterizer_scanline_aa<>& fill_impl(void) { return m_fraster; } $/;" f class:gfx::gfx_raster_adapter +fill_non_zero src/include/graphic_base.h /^ fill_non_zero,$/;" e enum:picasso::__anon207 +fill_vspan src/gfx/gfx_mask_layer.h /^ void fill_vspan(int x, int y, cover_type* dst, int num_pix) const$/;" f class:gfx::gfx_alpha_mask_u8 +filling src/gfx/gfx_rasterizer_scanline.h /^ void filling(filling_rule rule)$/;" f class:gfx::gfx_rasterizer_scanline_aa +filling_rule src/include/graphic_base.h /^} filling_rule;$/;" t namespace:picasso typeref:enum:picasso::__anon207 +filter src/gfx/gfx_painter.h /^ int filter;$/;" m struct:gfx::gfx_painter::__anon64 +filter src/gfx/gfx_painter.h /^ int filter;$/;" m struct:gfx::gfx_painter::__anon65 +filter src/gfx/gfx_span_image_filters.h /^ const image_filter_adapter& filter(void) const { return *m_filter; }$/;" f class:gfx::gfx_span_image_filter +filter src/gfx/gfx_span_image_filters.h /^ void filter(const image_filter_adapter& v) { m_filter = &v; }$/;" f class:gfx::gfx_span_image_filter +filter src/picasso_objects.h /^ ps_filter filter;$/;" m struct:picasso::context_state +filter_dx_flt src/gfx/gfx_span_image_filters.h /^ scalar filter_dx_flt(void) const { return m_dx_flt; }$/;" f class:gfx::gfx_span_image_filter +filter_dx_int src/gfx/gfx_span_image_filters.h /^ int filter_dx_int(void) const { return m_dx_int; }$/;" f class:gfx::gfx_span_image_filter +filter_dy_flt src/gfx/gfx_span_image_filters.h /^ scalar filter_dy_flt(void) const { return m_dy_flt; }$/;" f class:gfx::gfx_span_image_filter +filter_dy_int src/gfx/gfx_span_image_filters.h /^ int filter_dy_int(void) const { return m_dy_int; }$/;" f class:gfx::gfx_span_image_filter +filter_offset src/gfx/gfx_span_image_filters.h /^ void filter_offset(scalar d) { filter_offset(d, d); }$/;" f class:gfx::gfx_span_image_filter +filter_offset src/gfx/gfx_span_image_filters.h /^ void filter_offset(scalar dx, scalar dy)$/;" f class:gfx::gfx_span_image_filter +finalBuffer android/expat/lib/expat.h /^ XML_Bool finalBuffer;$/;" m struct:__anon4 +finalBuffer include/expat.h /^ XML_Bool finalBuffer;$/;" m struct:__anon50 +finalize src/gfx/gfx_rasterizer_scanline.h /^ void finalize(int) { }$/;" f class:gfx::scanline_hit_test +finalize src/gfx/gfx_scanline.h /^ void finalize(int y) $/;" f class:gfx::gfx_scanline_bin +finalize src/gfx/gfx_scanline.h /^ void finalize(int y) $/;" f class:gfx::gfx_scanline_p8 +finalize src/gfx/gfx_scanline.h /^ void finalize(int y) $/;" f class:gfx::gfx_scanline_u8 +finalizer android/freetype/include/freetype/fttypes.h /^ FT_Generic_Finalizer finalizer;$/;" m struct:FT_Generic_ +finalizer include/freetype/fttypes.h /^ FT_Generic_Finalizer finalizer;$/;" m struct:FT_Generic_ +findEncoding android/expat/lib/xmltok_ns.c /^NS(findEncoding)(const ENCODING *enc, const char *ptr, const char *end)$/;" f file: +find_all_gyptest_files tools/gyp/gyptest.py /^def find_all_gyptest_files(directory):$/;" f +find_font src/picasso_font.cpp /^int font_engine::find_font(const char* font_signature)$/;" f class:picasso::font_engine +find_glyph src/picasso_font_cache.h /^ const glyph* find_glyph(unsigned int code) const$/;" f class:picasso::glyph_cache_manager +find_sbit_image android/freetype/include/freetype/internal/sfnt.h /^ TT_Find_SBit_Image_Func find_sbit_image;$/;" m struct:SFNT_Interface_ +find_sbit_image include/freetype/internal/sfnt.h /^ TT_Find_SBit_Image_Func find_sbit_image;$/;" m struct:SFNT_Interface_ +find_sbit_range android/freetype/src/sfnt/ttsbit.c /^ find_sbit_range( FT_UInt glyph_index,$/;" f file: +find_unicode_charmap android/freetype/src/base/ftobjs.c /^ find_unicode_charmap( FT_Face face )$/;" f file: +find_variant_selector_charmap android/freetype/src/base/ftobjs.c /^ find_variant_selector_charmap( FT_Face face )$/;" f file: +first android/freetype/src/autofit/afhints.h /^ AF_Point first; \/* first point in edge segment *\/$/;" m struct:AF_SegmentRec_ +first android/freetype/src/autofit/afhints.h /^ AF_Segment first;$/;" m struct:AF_EdgeRec_ +first android/freetype/src/autofit/aftypes.h /^ FT_UInt32 first;$/;" m struct:AF_Script_UniRangeRec_ +first android/freetype/src/psaux/t1cmap.h /^ FT_UInt first;$/;" m struct:T1_CMapCustomRec_ +first_bound src/picasso_gpc.cpp /^ edge_node *first_bound; \/* Pointer to bound list *\/$/;" m struct:picasso::lmt_shape file: +first_char android/freetype/include/freetype/ftwinfnt.h /^ FT_Byte first_char;$/;" m struct:FT_WinFNT_HeaderRec_ +first_char include/freetype/ftwinfnt.h /^ FT_Byte first_char;$/;" m struct:FT_WinFNT_HeaderRec_ +first_glyph android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort first_glyph;$/;" m struct:TT_SBit_RangeRec_ +first_glyph include/freetype/internal/tttypes.h /^ FT_UShort first_glyph;$/;" m struct:TT_SBit_RangeRec_ +first_point android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort first_point; \/* offset of first (#0) point *\/$/;" m struct:TT_GlyphZoneRec_ +first_point android/freetype/src/base/ftstroke.c /^ FT_Bool first_point;$/;" m struct:FT_StrokerRec_ file: +first_point include/freetype/internal/tttypes.h /^ FT_UShort first_point; \/* offset of first (#0) point *\/$/;" m struct:TT_GlyphZoneRec_ +firstchild android/expat/lib/xmlparse.c /^ int firstchild;$/;" m struct:__anon12 file: +fit android/freetype/src/autofit/aftypes.h /^ FT_Pos fit; \/* current\/fitted position\/width in device sub-pixels *\/$/;" m struct:AF_WidthRec_ +fit android/freetype/src/pshinter/pshglob.h /^ FT_Pos fit;$/;" m struct:PSH_WidthRec_ +fix_path tools/gyp/build/lib/gyp/generator/ninja.py /^ def fix_path(path, rel=None):$/;" f function:NinjaWriter._WinIdlRule +fix_path tools/gyp/pylib/gyp/generator/ninja.py /^ def fix_path(path, rel=None):$/;" f function:NinjaWriter._WinIdlRule +fix_vc_macro_slashes_regex tools/gyp/build/lib/gyp/MSVSSettings.py /^fix_vc_macro_slashes_regex = re.compile($/;" v +fix_vc_macro_slashes_regex tools/gyp/pylib/gyp/MSVSSettings.py /^fix_vc_macro_slashes_regex = re.compile($/;" v +fix_vc_macro_slashes_regex_list tools/gyp/build/lib/gyp/MSVSSettings.py /^fix_vc_macro_slashes_regex_list = ('IntDir', 'OutDir')$/;" v +fix_vc_macro_slashes_regex_list tools/gyp/pylib/gyp/MSVSSettings.py /^fix_vc_macro_slashes_regex_list = ('IntDir', 'OutDir')$/;" v +fixed src/include/fixedopt.h /^ explicit fixed(double v) : m_data(FIXED_VALID(v, double, (fixed_type)(v * (double)FIXED_1))) { }$/;" f class:fxmath::fixed +fixed src/include/fixedopt.h /^ explicit fixed(float v) : m_data(FIXED_VALID(v, float, (fixed_type)(v * (float)FIXED_1))) { }$/;" f class:fxmath::fixed +fixed src/include/fixedopt.h /^ explicit fixed(int v) : m_data(FIXED_VALID(v, int, ((fixed_type)v) << FIXED_Q)) { }$/;" f class:fxmath::fixed +fixed src/include/fixedopt.h /^ fixed() : m_data(0) {}$/;" f class:fxmath::fixed +fixed src/include/fixedopt.h /^ fixed(fixed_type v, int) : m_data(v) {}$/;" f class:fxmath::fixed +fixed src/include/fixedopt.h /^class fixed$/;" c namespace:fxmath +fixed_0 src/core/fixedopt.cpp /^fixed fixed::fixed_0(void)$/;" f class:fxmath::fixed +fixed_type src/include/fixedopt.h /^typedef int32_t fixed_type;$/;" t namespace:fxmath +fixed_type64 src/include/fixedopt.h /^typedef int64_t fixed_type64;$/;" t namespace:fxmath +fixpath_prefix tools/gyp/build/lib/gyp/generator/msvs.py /^fixpath_prefix = None$/;" v +fixpath_prefix tools/gyp/pylib/gyp/generator/msvs.py /^fixpath_prefix = None$/;" v +flage src/picasso_objects.h /^ unsigned int flage;$/;" m struct:_ps_canvas +flage src/picasso_objects.h /^ unsigned int flage;$/;" m struct:_ps_image +flags android/freetype/include/freetype/freetype.h /^ FT_UInt flags;$/;" m struct:FT_Open_Args_ +flags android/freetype/include/freetype/ftcache.h /^ FT_Int32 flags;$/;" m struct:FTC_ImageTypeRec_ +flags android/freetype/include/freetype/ftimage.h /^ int flags;$/;" m struct:FT_Raster_Params_ +flags android/freetype/include/freetype/ftimage.h /^ int flags; \/* outline masks *\/$/;" m struct:FT_Outline_ +flags android/freetype/include/freetype/ftwinfnt.h /^ FT_ULong flags;$/;" m struct:FT_WinFNT_HeaderRec_ +flags android/freetype/include/freetype/internal/ftgloadr.h /^ FT_UShort flags;$/;" m struct:FT_SubGlyphRec_ +flags android/freetype/include/freetype/internal/ftobjs.h /^ FT_UInt flags;$/;" m struct:FT_Slot_InternalRec_ +flags android/freetype/include/freetype/internal/tttypes.h /^ FT_Char flags;$/;" m struct:TT_SBit_StrikeRec_ +flags android/freetype/src/autofit/afhints.h /^ FT_Byte flags; \/* edge\/segment flags for this segment *\/$/;" m struct:AF_SegmentRec_ +flags android/freetype/src/autofit/afhints.h /^ FT_Byte flags; \/* edge flags *\/$/;" m struct:AF_EdgeRec_ +flags android/freetype/src/autofit/afhints.h /^ FT_UShort flags; \/* point flags used by hinter *\/$/;" m struct:AF_PointRec_ +flags android/freetype/src/autofit/aflatin.h /^ FT_UInt flags;$/;" m struct:AF_LatinBlueRec_ +flags android/freetype/src/autofit/aftypes.h /^ FT_UInt32 flags; \/* additional control flags, see above *\/$/;" m struct:AF_ScalerRec_ +flags android/freetype/src/pshinter/pshalgo.h /^ FT_UInt flags;$/;" m struct:PSH_PointRec_ +flags android/freetype/src/pshinter/pshalgo.h /^ FT_UInt flags;$/;" m struct:PSH_HintRec_ +flags android/freetype/src/pshinter/pshrec.h /^ FT_UInt flags;$/;" m struct:PS_HintRec_ +flags android/freetype/src/sfnt/ttcmap.h /^ FT_Int flags; \/* for format 4 only *\/$/;" m struct:TT_CMapRec_ +flags android/freetype/src/truetype/ttgxvar.c /^ FT_UShort flags;$/;" m struct:GX_GVar_Head_ file: +flags android/freetype/src/truetype/ttgxvar.c /^ FT_UShort flags;$/;" m struct:fvar_axis_ file: +flags include/freetype/freetype.h /^ FT_UInt flags;$/;" m struct:FT_Open_Args_ +flags include/freetype/ftcache.h /^ FT_Int32 flags;$/;" m struct:FTC_ImageTypeRec_ +flags include/freetype/ftimage.h /^ int flags;$/;" m struct:FT_Raster_Params_ +flags include/freetype/ftimage.h /^ int flags; \/* outline masks *\/$/;" m struct:FT_Outline_ +flags include/freetype/ftwinfnt.h /^ FT_ULong flags;$/;" m struct:FT_WinFNT_HeaderRec_ +flags include/freetype/internal/ftgloadr.h /^ FT_UShort flags;$/;" m struct:FT_SubGlyphRec_ +flags include/freetype/internal/ftobjs.h /^ FT_UInt flags;$/;" m struct:FT_Slot_InternalRec_ +flags include/freetype/internal/tttypes.h /^ FT_Char flags;$/;" m struct:TT_SBit_StrikeRec_ +flags2 android/freetype/src/pshinter/pshalgo.h /^ FT_UInt flags2;$/;" m struct:PSH_PointRec_ +flags_x android/freetype/src/pshinter/pshalgo.h /^ FT_UInt flags_x;$/;" m struct:PSH_PointRec_ +flags_y android/freetype/src/pshinter/pshalgo.h /^ FT_UInt flags_y;$/;" m struct:PSH_PointRec_ +flex_state android/freetype/include/freetype/internal/psaux.h /^ FT_Int flex_state;$/;" m struct:T1_DecoderRec_ +flex_state android/freetype/src/cff/cffgload.h /^ FT_Int flex_state;$/;" m struct:CFF_Decoder_ +flex_state include/freetype/internal/psaux.h /^ FT_Int flex_state;$/;" m struct:T1_DecoderRec_ +flex_vectors android/freetype/include/freetype/internal/psaux.h /^ FT_Vector flex_vectors[7];$/;" m struct:T1_DecoderRec_ +flex_vectors android/freetype/src/cff/cffgload.h /^ FT_Vector flex_vectors[7];$/;" m struct:CFF_Decoder_ +flex_vectors include/freetype/internal/psaux.h /^ FT_Vector flex_vectors[7];$/;" m struct:T1_DecoderRec_ +flip_x src/core/graphic_path.cpp /^void graphic_path::flip_x(scalar x1, scalar x2)$/;" f class:picasso::graphic_path +flip_x src/gfx/gfx_trans_affine.h /^ virtual void flip_x(void)$/;" f class:gfx::gfx_trans_affine +flip_x src/picasso_matrix.cpp /^const trans_affine& trans_affine::flip_x(void)$/;" f class:picasso::trans_affine +flip_y src/core/graphic_path.cpp /^void graphic_path::flip_y(scalar y1, scalar y2)$/;" f class:picasso::graphic_path +flip_y src/gfx/gfx_trans_affine.h /^ virtual void flip_y(void)$/;" f class:gfx::gfx_trans_affine +flip_y src/picasso_font.h /^ bool flip_y(void) const { return m_flip_y; }$/;" f class:picasso::font_desc +flip_y src/picasso_matrix.cpp /^const trans_affine& trans_affine::flip_y(void)$/;" f class:picasso::trans_affine +floats demos/subwaymap.c /^ const float *floats;$/;" m struct:__anon46 file: +floor src/include/fixedopt.h /^inline int floor(fixed x)$/;" f namespace:fxmath +floorf src/include/platform.h /^#define floorf(/;" d +flow android/freetype/src/raster/ftraster.c /^ int flow; \/* Profile orientation: Asc\/Descending *\/$/;" m struct:TProfile_ file: +flowers demos/flowers.c /^static particle flowers[MAX_FLOWERS];$/;" v file: +flt_to_fixed src/include/fixedopt.h /^inline fixed_type flt_to_fixed(float f)$/;" f namespace:fxmath +fmod src/core/fixedopt.cpp /^fixed fmod(fixed x, fixed y)$/;" f namespace:fxmath +fmodf src/include/platform.h /^#define fmodf(/;" d +fmt android/jni/test_android.cpp /^ ps_color_format fmt; $/;" m struct:engine file: +fmt demos/platform_gix.c /^static ps_color_format fmt; $/;" v file: +fmt demos/platform_gtk2.c /^static ps_color_format fmt; $/;" v file: +fmt demos/platform_minigui.c /^static ps_color_format fmt; $/;" v file: +fmt demos/platform_qt4.cpp /^static ps_color_format fmt; $/;" v file: +fmt demos/platform_win32.c /^static ps_color_format fmt; $/;" v file: +fmt src/picasso_objects.h /^ ps_color_format fmt;$/;" m struct:_ps_canvas +fmt src/picasso_objects.h /^ ps_color_format fmt;$/;" m struct:_ps_image +font android/freetype/src/cff/cffload.h /^ cff_font_done( CFF_Font font );$/;" v +font src/picasso_font.h /^ abstract_font_adapter* font;$/;" m class:picasso::mono_storage +font src/picasso_objects.h /^ ps_font * font;$/;" m struct:picasso::context_state +font_adapter src/picasso_font.h /^ font_adapter(const font_desc& desc, const char* signature, const trans_affine& mtx, bool antialias)$/;" f class:picasso::font_adapter +font_adapter src/picasso_font.h /^class font_adapter$/;" c namespace:picasso +font_antialias src/picasso_objects.h /^ ps_bool font_antialias; $/;" m struct:_ps_context +font_bbox android/freetype/include/freetype/internal/t1types.h /^ FT_BBox font_bbox;$/;" m struct:T1_FontRec_ +font_bbox android/freetype/include/freetype/t1tables.h /^ FT_BBox font_bbox;$/;" m struct:CID_FaceInfoRec_ +font_bbox android/freetype/src/cff/cfftypes.h /^ FT_BBox font_bbox;$/;" m struct:CFF_FontRecDictRec_ +font_bbox include/freetype/internal/t1types.h /^ FT_BBox font_bbox;$/;" m struct:T1_FontRec_ +font_bbox include/freetype/t1tables.h /^ FT_BBox font_bbox;$/;" m struct:CID_FaceInfoRec_ +font_desc src/picasso_font.h /^ font_desc()$/;" f class:picasso::font_desc +font_desc src/picasso_font.h /^ font_desc(const char* face_name)$/;" f class:picasso::font_desc +font_desc src/picasso_font.h /^ font_desc(const font_desc& o)$/;" f class:picasso::font_desc +font_desc src/picasso_font.h /^class font_desc$/;" c namespace:picasso +font_dict android/freetype/src/cff/cfftypes.h /^ CFF_FontRecDictRec font_dict;$/;" m struct:CFF_SubFontRec_ +font_dict_index android/freetype/src/cff/cfftypes.h /^ CFF_IndexRec font_dict_index;$/;" m struct:CFF_FontRec_ +font_dicts android/freetype/include/freetype/t1tables.h /^ CID_FaceDict font_dicts;$/;" m struct:CID_FaceInfoRec_ +font_dicts include/freetype/t1tables.h /^ CID_FaceDict font_dicts;$/;" m struct:CID_FaceInfoRec_ +font_engine src/picasso_font.cpp /^font_engine::font_engine(unsigned int max_fonts)$/;" f class:picasso::font_engine +font_engine src/picasso_font.h /^class font_engine$/;" c namespace:picasso +font_extra include/freetype/internal/t1types.h /^ PS_FontExtraRec font_extra; \/* font info extra fields *\/$/;" m struct:T1_FontRec_ +font_extra include/freetype/internal/t1types.h /^ PS_FontExtraRec font_extra;$/;" m struct:CID_FaceRec_ +font_fcolor src/picasso_objects.h /^ rgba font_fcolor;$/;" m struct:picasso::context_state +font_id android/freetype/include/freetype/internal/t1types.h /^ FT_Long font_id;$/;" m struct:T1_FontRec_ +font_id include/freetype/internal/t1types.h /^ FT_Long font_id;$/;" m struct:T1_FontRec_ +font_info android/freetype/include/freetype/internal/t1types.h /^ PS_FontInfoRec font_info; \/* font info dictionary *\/$/;" m struct:T1_FontRec_ +font_info android/freetype/include/freetype/t1tables.h /^ PS_FontInfoRec font_info;$/;" m struct:CID_FaceInfoRec_ +font_info android/freetype/src/cff/cfftypes.h /^ PS_FontInfoRec* font_info; \/* font info dictionary *\/$/;" m struct:CFF_FontRec_ +font_info include/freetype/internal/t1types.h /^ PS_FontInfoRec font_info; \/* font info dictionary *\/$/;" m struct:T1_FontRec_ +font_info include/freetype/t1tables.h /^ PS_FontInfoRec font_info;$/;" m struct:CID_FaceInfoRec_ +font_infos android/freetype/include/freetype/t1tables.h /^ PS_FontInfo font_infos[T1_MAX_MM_DESIGNS + 1];$/;" m struct:PS_BlendRec_ +font_infos include/freetype/t1tables.h /^ PS_FontInfo font_infos[T1_MAX_MM_DESIGNS + 1];$/;" m struct:PS_BlendRec_ +font_kerning src/picasso_objects.h /^ ps_bool font_kerning; $/;" m struct:_ps_context +font_matrix android/freetype/include/freetype/internal/psaux.h /^ FT_Matrix font_matrix;$/;" m struct:T1_DecoderRec_ +font_matrix android/freetype/include/freetype/internal/t1types.h /^ FT_Matrix font_matrix;$/;" m struct:T1_FontRec_ +font_matrix android/freetype/include/freetype/t1tables.h /^ FT_Matrix font_matrix;$/;" m struct:CID_FaceDictRec_ +font_matrix android/freetype/src/cff/cfftypes.h /^ FT_Matrix font_matrix;$/;" m struct:CFF_FontRecDictRec_ +font_matrix include/freetype/internal/psaux.h /^ FT_Matrix font_matrix;$/;" m struct:T1_DecoderRec_ +font_matrix include/freetype/internal/t1types.h /^ FT_Matrix font_matrix;$/;" m struct:T1_FontRec_ +font_matrix include/freetype/t1tables.h /^ FT_Matrix font_matrix;$/;" m struct:CID_FaceDictRec_ +font_name android/freetype/include/freetype/internal/t1types.h /^ FT_String* font_name; \/* top-level dictionary *\/$/;" m struct:T1_FontRec_ +font_name android/freetype/src/cff/cfftypes.h /^ FT_String* font_name;$/;" m struct:CFF_FontRec_ +font_name include/freetype/internal/t1types.h /^ FT_String* font_name; \/* top-level dictionary *\/$/;" m struct:T1_FontRec_ +font_offset android/freetype/include/freetype/internal/psaux.h /^ FT_Vector font_offset;$/;" m struct:T1_DecoderRec_ +font_offset android/freetype/include/freetype/internal/t1types.h /^ FT_Vector font_offset;$/;" m struct:T1_FontRec_ +font_offset android/freetype/include/freetype/t1tables.h /^ FT_Vector font_offset;$/;" m struct:CID_FaceDictRec_ +font_offset android/freetype/src/cff/cfftypes.h /^ FT_Vector font_offset;$/;" m struct:CFF_FontRecDictRec_ +font_offset include/freetype/internal/psaux.h /^ FT_Vector font_offset;$/;" m struct:T1_DecoderRec_ +font_offset include/freetype/internal/t1types.h /^ FT_Vector font_offset;$/;" m struct:T1_FontRec_ +font_offset include/freetype/t1tables.h /^ FT_Vector font_offset;$/;" m struct:CID_FaceDictRec_ +font_program android/freetype/include/freetype/internal/tttypes.h /^ FT_Byte* font_program;$/;" m struct:TT_FaceRec_ +font_program include/freetype/internal/tttypes.h /^ FT_Byte* font_program;$/;" m struct:TT_FaceRec_ +font_program_size android/freetype/include/freetype/internal/tttypes.h /^ FT_ULong font_program_size;$/;" m struct:TT_FaceRec_ +font_program_size include/freetype/internal/tttypes.h /^ FT_ULong font_program_size;$/;" m struct:TT_FaceRec_ +font_render_type src/picasso_objects.h /^ ps_text_type font_render_type;$/;" m struct:_ps_context +font_scolor src/picasso_objects.h /^ rgba font_scolor;$/;" m struct:picasso::context_state +font_type android/freetype/include/freetype/internal/t1types.h /^ FT_Byte font_type;$/;" m struct:T1_FontRec_ +font_type android/freetype/include/freetype/t1tables.h /^ FT_Byte font_type;$/;" m struct:CID_FaceDictRec_ +font_type include/freetype/internal/t1types.h /^ FT_Byte font_type;$/;" m struct:T1_FontRec_ +font_type include/freetype/t1tables.h /^ FT_Byte font_type;$/;" m struct:CID_FaceDictRec_ +fontify tools/gyp/tools/emacs/gyp-tests.el /^(defun fontify (filename)$/;" f +fonts src/picasso_objects.h /^ picasso::font_engine* fonts; $/;" m struct:_ps_context +for tools/gyp/build/lib/gyp/MSVSUserFile.py /^import socket # for gethostname$/;" i +for tools/gyp/pylib/gyp/MSVSUserFile.py /^import socket # for gethostname$/;" i +force_bold android/freetype/include/freetype/t1tables.h /^ FT_Bool force_bold;$/;" m struct:PS_PrivateRec_ +force_bold android/freetype/src/cff/cfftypes.h /^ FT_Bool force_bold;$/;" m struct:CFF_PrivateRec_ +force_bold include/freetype/t1tables.h /^ FT_Bool force_bold;$/;" m struct:PS_PrivateRec_ +force_bold_threshold android/freetype/src/cff/cfftypes.h /^ FT_Fixed force_bold_threshold;$/;" m struct:CFF_PrivateRec_ +forcebold_threshold android/freetype/include/freetype/t1tables.h /^ FT_Fixed forcebold_threshold;$/;" m struct:CID_FaceDictRec_ +forcebold_threshold include/freetype/t1tables.h /^ FT_Fixed forcebold_threshold;$/;" m struct:CID_FaceDictRec_ +forget_glyph_frame android/freetype/include/freetype/internal/tttypes.h /^ TT_Loader_EndGlyphFunc forget_glyph_frame;$/;" m struct:TT_FaceRec_ +forget_glyph_frame include/freetype/internal/tttypes.h /^ TT_Loader_EndGlyphFunc forget_glyph_frame;$/;" m struct:TT_FaceRec_ +format android/freetype/include/freetype/freetype.h /^ FT_Glyph_Format format;$/;" m struct:FT_GlyphSlotRec_ +format android/freetype/include/freetype/ftcache.h /^ FT_Byte format;$/;" m struct:FTC_SBitRec_ +format android/freetype/include/freetype/ftglyph.h /^ FT_Glyph_Format format;$/;" m struct:FT_GlyphRec_ +format android/freetype/include/freetype/internal/services/svttcmap.h /^ FT_Long format;$/;" m struct:TT_CMapInfo_ +format android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort format;$/;" m struct:TT_NameTableRec_ +format android/freetype/src/cff/cfftypes.h /^ FT_Byte format;$/;" m struct:CFF_FDSelectRec_ +format android/freetype/src/cff/cfftypes.h /^ FT_UInt format;$/;" m struct:CFF_CharsetRec_ +format android/freetype/src/cff/cfftypes.h /^ FT_UInt format;$/;" m struct:CFF_EncodingRec_ +format android/freetype/src/sfnt/ttcmap.h /^ FT_UInt format;$/;" m struct:TT_CMap_ClassRec_ +format include/freetype/freetype.h /^ FT_Glyph_Format format;$/;" m struct:FT_GlyphSlotRec_ +format include/freetype/ftcache.h /^ FT_Byte format;$/;" m struct:FTC_SBitRec_ +format include/freetype/ftglyph.h /^ FT_Glyph_Format format;$/;" m struct:FT_GlyphRec_ +format include/freetype/internal/services/svttcmap.h /^ FT_Long format;$/;" m struct:TT_CMapInfo_ +format include/freetype/internal/tttypes.h /^ FT_UShort format;$/;" m struct:TT_NameTableRec_ +format src/gfx/gfx_painter_helper.h /^ typedef gfx_pixfmt_wrapper format;$/;" t struct:gfx::painter_raster +format src/gfx/gfx_painter_helper.h /^ typedef gfx_pixfmt_wrapper format;$/;" t struct:gfx::painter_raster +format src/gfx/gfx_painter_helper.h /^ typedef gfx_pixfmt_wrapper format;$/;" t struct:gfx::painter_raster +format src/gfx/gfx_painter_helper.h /^ typedef gfx_pixfmt_wrapper format;$/;" t struct:gfx::painter_raster +format src/gfx/gfx_painter_helper.h /^ typedef gfx_pixfmt_wrapper format;$/;" t struct:gfx::painter_raster +format src/gfx/gfx_painter_helper.h /^ typedef gfx_pixfmt_wrapper format;$/;" t struct:gfx::painter_raster +format src/gfx/gfx_painter_helper.h /^ typedef gfx_pixfmt_wrapper format;$/;" t struct:gfx::painter_raster +format src/gfx/gfx_painter_helper.h /^ typedef gfx_pixfmt_wrapper format;$/;" t struct:gfx::painter_raster +format_20 android/freetype/include/freetype/internal/tttypes.h /^ TT_Post_20Rec format_20;$/;" m union:TT_Post_NamesRec_::__anon25 +format_20 include/freetype/internal/tttypes.h /^ TT_Post_20Rec format_20;$/;" m union:TT_Post_NamesRec_::__anon54 +format_25 android/freetype/include/freetype/internal/tttypes.h /^ TT_Post_25Rec format_25;$/;" m union:TT_Post_NamesRec_::__anon25 +format_25 include/freetype/internal/tttypes.h /^ TT_Post_25Rec format_25;$/;" m union:TT_Post_NamesRec_::__anon54 +format_tag android/freetype/include/freetype/internal/tttypes.h /^ FT_ULong format_tag;$/;" m struct:TT_FaceRec_ +format_tag android/freetype/include/freetype/internal/tttypes.h /^ FT_ULong format_tag;$/;" m struct:SFNT_HeaderRec_ +format_tag include/freetype/internal/tttypes.h /^ FT_ULong format_tag;$/;" m struct:TT_FaceRec_ +format_tag include/freetype/internal/tttypes.h /^ FT_ULong format_tag;$/;" m struct:SFNT_HeaderRec_ +fpos android/freetype/src/autofit/afhints.h /^ FT_Short fpos; \/* original, unscaled position (font units) *\/$/;" m struct:AF_EdgeRec_ +free android/freetype/include/freetype/ftsystem.h /^ FT_Free_Func free;$/;" m struct:FT_MemoryRec_ +free android/freetype/src/base/ftdbgmem.c /^ FT_Free_Func free;$/;" m struct:FT_MemTableRec_ file: +free include/freetype/ftsystem.h /^ FT_Free_Func free;$/;" m struct:FT_MemoryRec_ +freeBindingList android/expat/lib/xmlparse.c /^#define freeBindingList /;" d file: +freeBlocks android/expat/lib/xmlparse.c /^ BLOCK *freeBlocks;$/;" m struct:__anon13 file: +freeInternalEntities android/expat/lib/xmlparse.c /^#define freeInternalEntities /;" d file: +freeTagList android/expat/lib/xmlparse.c /^#define freeTagList /;" d file: +freeVector android/freetype/src/truetype/ttobjs.h /^ FT_UnitVector freeVector;$/;" m struct:TT_GraphicsState_ +free_all src/core/graphic_path.cpp /^void graphic_path::free_all(void)$/;" f class:picasso::graphic_path +free_all src/include/convert.h /^ void free_all(void)$/;" f class:picasso::conv_clipper +free_charmap_stub android/freetype/include/freetype/internal/sfnt.h /^ TT_CharMap_Free_Func free_charmap_stub;$/;" m struct:SFNT_Interface_ +free_charmap_stub include/freetype/internal/sfnt.h /^ TT_CharMap_Free_Func free_charmap_stub;$/;" m struct:SFNT_Interface_ +free_eblc android/freetype/include/freetype/internal/sfnt.h /^ TT_Free_Table_Func free_eblc;$/;" m struct:SFNT_Interface_ +free_eblc include/freetype/internal/sfnt.h /^ TT_Free_Table_Func free_eblc;$/;" m struct:SFNT_Interface_ +free_fcn android/expat/lib/expat.h /^ void (*free_fcn)(void *ptr);$/;" m struct:__anon1 +free_fcn include/expat.h /^ void (*free_fcn)(void *ptr);$/;" m struct:__anon47 +free_file_name android/freetype/src/base/ftdbgmem.c /^ const char* free_file_name;$/;" m struct:FT_MemNodeRec_ file: +free_glyph_data android/freetype/include/freetype/ftincrem.h /^ FT_Incremental_FreeGlyphDataFunc free_glyph_data;$/;" m struct:FT_Incremental_FuncsRec_ +free_glyph_data include/freetype/ftincrem.h /^ FT_Incremental_FreeGlyphDataFunc free_glyph_data;$/;" m struct:FT_Incremental_FuncsRec_ +free_hdmx_stub android/freetype/include/freetype/internal/sfnt.h /^ TT_Free_Table_Func free_hdmx_stub;$/;" m struct:SFNT_Interface_ +free_hdmx_stub include/freetype/internal/sfnt.h /^ TT_Free_Table_Func free_hdmx_stub;$/;" m struct:SFNT_Interface_ +free_line_no android/freetype/src/base/ftdbgmem.c /^ FT_Long free_line_no;$/;" m struct:FT_MemNodeRec_ file: +free_name android/freetype/include/freetype/internal/sfnt.h /^ TT_Free_Table_Func free_name;$/;" m struct:SFNT_Interface_ +free_name include/freetype/internal/sfnt.h /^ TT_Free_Table_Func free_name;$/;" m struct:SFNT_Interface_ +free_picture demos/platform_gix.c /^void free_picture(picture* p)$/;" f +free_picture demos/platform_gtk2.c /^void free_picture(picture* p)$/;" f +free_picture demos/platform_minigui.c /^void free_picture(picture* p)$/;" f +free_picture demos/platform_qt4.cpp /^extern "C" void free_picture(picture* p)$/;" f +free_picture demos/platform_win32.c /^void free_picture(picture* p)$/;" f +free_polygon src/include/convert.h /^ void free_polygon(gpc_polygon& p)$/;" f class:picasso::conv_clipper +free_psnames android/freetype/include/freetype/internal/sfnt.h /^ TT_Free_Table_Func free_psnames;$/;" m struct:SFNT_Interface_ +free_psnames include/freetype/internal/sfnt.h /^ TT_Free_Table_Func free_psnames;$/;" m struct:SFNT_Interface_ +free_result src/include/convert.h /^ void free_result(void) $/;" f class:picasso::conv_clipper +free_sbits_stub android/freetype/include/freetype/internal/sfnt.h /^ TT_Free_Table_Func free_sbits_stub;$/;" m struct:SFNT_Interface_ +free_sbits_stub include/freetype/internal/sfnt.h /^ TT_Free_Table_Func free_sbits_stub;$/;" m struct:SFNT_Interface_ +free_sbtree src/picasso_gpc.cpp /^static void free_sbtree(sb_tree **sbtree)$/;" f namespace:picasso +fresh android/freetype/src/raster/ftraster.c /^ Bool fresh; \/* signals a fresh new profile which *\/$/;" m struct:TWorker_ file: +from tools/gyp/build/lib/gyp/generator/android.py /^import gyp.generator.make as make # Reuse global functions from make backend.$/;" i +from tools/gyp/pylib/gyp/generator/android.py /^import gyp.generator.make as make # Reuse global functions from make backend.$/;" i +fromCoord android/freetype/src/truetype/ttgxvar.h /^ FT_Fixed fromCoord;$/;" m struct:GX_AVarCorrespondenceRec_ +fsSelection android/freetype/include/freetype/tttables.h /^ FT_UShort fsSelection;$/;" m struct:TT_OS2_ +fsSelection include/freetype/tttables.h /^ FT_UShort fsSelection;$/;" m struct:TT_OS2_ +fsType android/freetype/include/freetype/tttables.h /^ FT_Short fsType;$/;" m struct:TT_OS2_ +fsType include/freetype/tttables.h /^ FT_Short fsType;$/;" m struct:TT_OS2_ +fs_type include/freetype/internal/t1types.h /^ FT_UShort fs_type;$/;" m struct:PS_FontExtraRec_ +ft_add_renderer android/freetype/src/base/ftobjs.c /^ ft_add_renderer( FT_Module module )$/;" f file: +ft_adobe_glyph_list android/freetype/src/psnames/pstables.h /^ static const unsigned char ft_adobe_glyph_list[54791] =$/;" v +ft_alloc android/freetype/src/base/ftsystem.c /^ ft_alloc( FT_Memory memory,$/;" f +ft_ansi_stream_close android/freetype/src/base/ftsystem.c /^ ft_ansi_stream_close( FT_Stream stream )$/;" f +ft_ansi_stream_io android/freetype/src/base/ftsystem.c /^ ft_ansi_stream_io( FT_Stream stream,$/;" f +ft_atol android/freetype/include/freetype/config/ftstdlib.h /^#define ft_atol /;" d +ft_atol include/freetype/config/ftstdlib.h /^#define ft_atol /;" d +ft_bitmap_assure_buffer android/freetype/src/base/ftbitmap.c /^ ft_bitmap_assure_buffer( FT_Memory memory,$/;" f file: +ft_bitmap_glyph_bbox android/freetype/src/base/ftglyph.c /^ ft_bitmap_glyph_bbox( FT_Glyph bitmap_glyph,$/;" f +ft_bitmap_glyph_class android/freetype/src/base/ftglyph.c /^ const FT_Glyph_Class ft_bitmap_glyph_class =$/;" v +ft_bitmap_glyph_done android/freetype/src/base/ftglyph.c /^ ft_bitmap_glyph_done( FT_Glyph bitmap_glyph )$/;" f +ft_black_done android/freetype/src/raster/ftraster.c /^ ft_black_done( FT_Raster raster )$/;" f file: +ft_black_done android/freetype/src/raster/ftraster.c /^ ft_black_done( PRaster raster )$/;" f file: +ft_black_init android/freetype/src/raster/ftraster.c /^ ft_black_init( PRaster raster )$/;" f file: +ft_black_new android/freetype/src/raster/ftraster.c /^ ft_black_new( FT_Memory memory,$/;" f file: +ft_black_new android/freetype/src/raster/ftraster.c /^ ft_black_new( void* memory,$/;" f file: +ft_black_render android/freetype/src/raster/ftraster.c /^ ft_black_render( PRaster raster,$/;" f file: +ft_black_reset android/freetype/src/raster/ftraster.c /^ ft_black_reset( PRaster raster,$/;" f file: +ft_black_set_mode android/freetype/src/raster/ftraster.c /^ ft_black_set_mode( PRaster raster,$/;" f file: +ft_char_table android/freetype/src/psaux/psconv.c /^ static const FT_Char ft_char_table[128] =$/;" v file: +ft_cmap_done_internal android/freetype/src/base/ftobjs.c /^ ft_cmap_done_internal( FT_CMap cmap )$/;" f file: +ft_conic_is_small_enough android/freetype/src/base/ftstroke.c /^ ft_conic_is_small_enough( FT_Vector* base,$/;" f file: +ft_conic_split android/freetype/src/base/ftstroke.c /^ ft_conic_split( FT_Vector* base )$/;" f file: +ft_cubic_is_small_enough android/freetype/src/base/ftstroke.c /^ ft_cubic_is_small_enough( FT_Vector* base,$/;" f file: +ft_cubic_split android/freetype/src/base/ftstroke.c /^ ft_cubic_split( FT_Vector* base )$/;" f file: +ft_debug_init android/freetype/src/base/ftdebug.c /^ ft_debug_init( void )$/;" f +ft_default_modules android/freetype/src/base/ftinit.c /^ const FT_Module_Class* const ft_default_modules[] =$/;" v file: +ft_div64by32 android/freetype/src/base/ftcalc.c /^ ft_div64by32( FT_UInt32 hi,$/;" f file: +ft_encoding_adobe_custom android/freetype/include/freetype/freetype.h /^#define ft_encoding_adobe_custom /;" d +ft_encoding_adobe_custom include/freetype/freetype.h /^#define ft_encoding_adobe_custom /;" d +ft_encoding_adobe_expert android/freetype/include/freetype/freetype.h /^#define ft_encoding_adobe_expert /;" d +ft_encoding_adobe_expert include/freetype/freetype.h /^#define ft_encoding_adobe_expert /;" d +ft_encoding_adobe_standard android/freetype/include/freetype/freetype.h /^#define ft_encoding_adobe_standard /;" d +ft_encoding_adobe_standard include/freetype/freetype.h /^#define ft_encoding_adobe_standard /;" d +ft_encoding_apple_roman android/freetype/include/freetype/freetype.h /^#define ft_encoding_apple_roman /;" d +ft_encoding_apple_roman include/freetype/freetype.h /^#define ft_encoding_apple_roman /;" d +ft_encoding_big5 android/freetype/include/freetype/freetype.h /^#define ft_encoding_big5 /;" d +ft_encoding_big5 include/freetype/freetype.h /^#define ft_encoding_big5 /;" d +ft_encoding_gb2312 android/freetype/include/freetype/freetype.h /^#define ft_encoding_gb2312 /;" d +ft_encoding_gb2312 include/freetype/freetype.h /^#define ft_encoding_gb2312 /;" d +ft_encoding_johab android/freetype/include/freetype/freetype.h /^#define ft_encoding_johab /;" d +ft_encoding_johab include/freetype/freetype.h /^#define ft_encoding_johab /;" d +ft_encoding_latin_1 android/freetype/include/freetype/freetype.h /^#define ft_encoding_latin_1 /;" d +ft_encoding_latin_1 include/freetype/freetype.h /^#define ft_encoding_latin_1 /;" d +ft_encoding_latin_2 android/freetype/include/freetype/freetype.h /^#define ft_encoding_latin_2 /;" d +ft_encoding_latin_2 include/freetype/freetype.h /^#define ft_encoding_latin_2 /;" d +ft_encoding_none android/freetype/include/freetype/freetype.h /^#define ft_encoding_none /;" d +ft_encoding_none include/freetype/freetype.h /^#define ft_encoding_none /;" d +ft_encoding_sjis android/freetype/include/freetype/freetype.h /^#define ft_encoding_sjis /;" d +ft_encoding_sjis include/freetype/freetype.h /^#define ft_encoding_sjis /;" d +ft_encoding_symbol android/freetype/include/freetype/freetype.h /^#define ft_encoding_symbol /;" d +ft_encoding_symbol include/freetype/freetype.h /^#define ft_encoding_symbol /;" d +ft_encoding_unicode android/freetype/include/freetype/freetype.h /^#define ft_encoding_unicode /;" d +ft_encoding_unicode include/freetype/freetype.h /^#define ft_encoding_unicode /;" d +ft_encoding_wansung android/freetype/include/freetype/freetype.h /^#define ft_encoding_wansung /;" d +ft_encoding_wansung include/freetype/freetype.h /^#define ft_encoding_wansung /;" d +ft_exit android/freetype/include/freetype/config/ftstdlib.h /^#define ft_exit /;" d +ft_face_get_mm_service android/freetype/src/base/ftmm.c /^ ft_face_get_mm_service( FT_Face face,$/;" f file: +ft_fclose android/freetype/include/freetype/config/ftstdlib.h /^#define ft_fclose /;" d +ft_fclose include/freetype/config/ftstdlib.h /^#define ft_fclose /;" d +ft_fopen android/freetype/include/freetype/config/ftstdlib.h /^#define ft_fopen /;" d +ft_fopen include/freetype/config/ftstdlib.h /^#define ft_fopen /;" d +ft_frame_byte android/freetype/include/freetype/internal/ftstream.h /^ ft_frame_byte = FT_MAKE_FRAME_OP( FT_FRAME_OP_BYTE, 0, 0 ),$/;" e enum:FT_Frame_Op_ +ft_frame_byte include/freetype/internal/ftstream.h /^ ft_frame_byte = FT_MAKE_FRAME_OP( FT_FRAME_OP_BYTE, 0, 0 ),$/;" e enum:FT_Frame_Op_ +ft_frame_bytes android/freetype/include/freetype/internal/ftstream.h /^ ft_frame_bytes = FT_MAKE_FRAME_OP( FT_FRAME_OP_BYTES, 0, 0 ),$/;" e enum:FT_Frame_Op_ +ft_frame_bytes include/freetype/internal/ftstream.h /^ ft_frame_bytes = FT_MAKE_FRAME_OP( FT_FRAME_OP_BYTES, 0, 0 ),$/;" e enum:FT_Frame_Op_ +ft_frame_end android/freetype/include/freetype/internal/ftstream.h /^ ft_frame_end = 0,$/;" e enum:FT_Frame_Op_ +ft_frame_end include/freetype/internal/ftstream.h /^ ft_frame_end = 0,$/;" e enum:FT_Frame_Op_ +ft_frame_long_be android/freetype/include/freetype/internal/ftstream.h /^ ft_frame_long_be = FT_MAKE_FRAME_OP( FT_FRAME_OP_LONG, 0, 1 ),$/;" e enum:FT_Frame_Op_ +ft_frame_long_be include/freetype/internal/ftstream.h /^ ft_frame_long_be = FT_MAKE_FRAME_OP( FT_FRAME_OP_LONG, 0, 1 ),$/;" e enum:FT_Frame_Op_ +ft_frame_long_le android/freetype/include/freetype/internal/ftstream.h /^ ft_frame_long_le = FT_MAKE_FRAME_OP( FT_FRAME_OP_LONG, 1, 1 ),$/;" e enum:FT_Frame_Op_ +ft_frame_long_le include/freetype/internal/ftstream.h /^ ft_frame_long_le = FT_MAKE_FRAME_OP( FT_FRAME_OP_LONG, 1, 1 ),$/;" e enum:FT_Frame_Op_ +ft_frame_off3_be android/freetype/include/freetype/internal/ftstream.h /^ ft_frame_off3_be = FT_MAKE_FRAME_OP( FT_FRAME_OP_OFF3, 0, 1 ),$/;" e enum:FT_Frame_Op_ +ft_frame_off3_be include/freetype/internal/ftstream.h /^ ft_frame_off3_be = FT_MAKE_FRAME_OP( FT_FRAME_OP_OFF3, 0, 1 ),$/;" e enum:FT_Frame_Op_ +ft_frame_off3_le android/freetype/include/freetype/internal/ftstream.h /^ ft_frame_off3_le = FT_MAKE_FRAME_OP( FT_FRAME_OP_OFF3, 1, 1 ),$/;" e enum:FT_Frame_Op_ +ft_frame_off3_le include/freetype/internal/ftstream.h /^ ft_frame_off3_le = FT_MAKE_FRAME_OP( FT_FRAME_OP_OFF3, 1, 1 ),$/;" e enum:FT_Frame_Op_ +ft_frame_schar android/freetype/include/freetype/internal/ftstream.h /^ ft_frame_schar = FT_MAKE_FRAME_OP( FT_FRAME_OP_BYTE, 0, 1 ),$/;" e enum:FT_Frame_Op_ +ft_frame_schar include/freetype/internal/ftstream.h /^ ft_frame_schar = FT_MAKE_FRAME_OP( FT_FRAME_OP_BYTE, 0, 1 ),$/;" e enum:FT_Frame_Op_ +ft_frame_short_be android/freetype/include/freetype/internal/ftstream.h /^ ft_frame_short_be = FT_MAKE_FRAME_OP( FT_FRAME_OP_SHORT, 0, 1 ),$/;" e enum:FT_Frame_Op_ +ft_frame_short_be include/freetype/internal/ftstream.h /^ ft_frame_short_be = FT_MAKE_FRAME_OP( FT_FRAME_OP_SHORT, 0, 1 ),$/;" e enum:FT_Frame_Op_ +ft_frame_short_le android/freetype/include/freetype/internal/ftstream.h /^ ft_frame_short_le = FT_MAKE_FRAME_OP( FT_FRAME_OP_SHORT, 1, 1 ),$/;" e enum:FT_Frame_Op_ +ft_frame_short_le include/freetype/internal/ftstream.h /^ ft_frame_short_le = FT_MAKE_FRAME_OP( FT_FRAME_OP_SHORT, 1, 1 ),$/;" e enum:FT_Frame_Op_ +ft_frame_skip android/freetype/include/freetype/internal/ftstream.h /^ ft_frame_skip = FT_MAKE_FRAME_OP( FT_FRAME_OP_BYTES, 0, 1 )$/;" e enum:FT_Frame_Op_ +ft_frame_skip include/freetype/internal/ftstream.h /^ ft_frame_skip = FT_MAKE_FRAME_OP( FT_FRAME_OP_BYTES, 0, 1 )$/;" e enum:FT_Frame_Op_ +ft_frame_start android/freetype/include/freetype/internal/ftstream.h /^ ft_frame_start = FT_MAKE_FRAME_OP( FT_FRAME_OP_START, 0, 0 ),$/;" e enum:FT_Frame_Op_ +ft_frame_start include/freetype/internal/ftstream.h /^ ft_frame_start = FT_MAKE_FRAME_OP( FT_FRAME_OP_START, 0, 0 ),$/;" e enum:FT_Frame_Op_ +ft_frame_ulong_be android/freetype/include/freetype/internal/ftstream.h /^ ft_frame_ulong_be = FT_MAKE_FRAME_OP( FT_FRAME_OP_LONG, 0, 0 ),$/;" e enum:FT_Frame_Op_ +ft_frame_ulong_be include/freetype/internal/ftstream.h /^ ft_frame_ulong_be = FT_MAKE_FRAME_OP( FT_FRAME_OP_LONG, 0, 0 ),$/;" e enum:FT_Frame_Op_ +ft_frame_ulong_le android/freetype/include/freetype/internal/ftstream.h /^ ft_frame_ulong_le = FT_MAKE_FRAME_OP( FT_FRAME_OP_LONG, 1, 0 ),$/;" e enum:FT_Frame_Op_ +ft_frame_ulong_le include/freetype/internal/ftstream.h /^ ft_frame_ulong_le = FT_MAKE_FRAME_OP( FT_FRAME_OP_LONG, 1, 0 ),$/;" e enum:FT_Frame_Op_ +ft_frame_uoff3_be android/freetype/include/freetype/internal/ftstream.h /^ ft_frame_uoff3_be = FT_MAKE_FRAME_OP( FT_FRAME_OP_OFF3, 0, 0 ),$/;" e enum:FT_Frame_Op_ +ft_frame_uoff3_be include/freetype/internal/ftstream.h /^ ft_frame_uoff3_be = FT_MAKE_FRAME_OP( FT_FRAME_OP_OFF3, 0, 0 ),$/;" e enum:FT_Frame_Op_ +ft_frame_uoff3_le android/freetype/include/freetype/internal/ftstream.h /^ ft_frame_uoff3_le = FT_MAKE_FRAME_OP( FT_FRAME_OP_OFF3, 1, 0 ),$/;" e enum:FT_Frame_Op_ +ft_frame_uoff3_le include/freetype/internal/ftstream.h /^ ft_frame_uoff3_le = FT_MAKE_FRAME_OP( FT_FRAME_OP_OFF3, 1, 0 ),$/;" e enum:FT_Frame_Op_ +ft_frame_ushort_be android/freetype/include/freetype/internal/ftstream.h /^ ft_frame_ushort_be = FT_MAKE_FRAME_OP( FT_FRAME_OP_SHORT, 0, 0 ),$/;" e enum:FT_Frame_Op_ +ft_frame_ushort_be include/freetype/internal/ftstream.h /^ ft_frame_ushort_be = FT_MAKE_FRAME_OP( FT_FRAME_OP_SHORT, 0, 0 ),$/;" e enum:FT_Frame_Op_ +ft_frame_ushort_le android/freetype/include/freetype/internal/ftstream.h /^ ft_frame_ushort_le = FT_MAKE_FRAME_OP( FT_FRAME_OP_SHORT, 1, 0 ),$/;" e enum:FT_Frame_Op_ +ft_frame_ushort_le include/freetype/internal/ftstream.h /^ ft_frame_ushort_le = FT_MAKE_FRAME_OP( FT_FRAME_OP_SHORT, 1, 0 ),$/;" e enum:FT_Frame_Op_ +ft_fread android/freetype/include/freetype/config/ftstdlib.h /^#define ft_fread /;" d +ft_fread include/freetype/config/ftstdlib.h /^#define ft_fread /;" d +ft_free android/freetype/src/base/ftsystem.c /^ ft_free( FT_Memory memory,$/;" f +ft_fseek android/freetype/include/freetype/config/ftstdlib.h /^#define ft_fseek /;" d +ft_fseek include/freetype/config/ftstdlib.h /^#define ft_fseek /;" d +ft_ftell android/freetype/include/freetype/config/ftstdlib.h /^#define ft_ftell /;" d +ft_ftell include/freetype/config/ftstdlib.h /^#define ft_ftell /;" d +ft_get_adobe_glyph_index android/freetype/src/psnames/pstables.h /^ ft_get_adobe_glyph_index( const char* name,$/;" f +ft_glyph_bbox_gridfit android/freetype/include/freetype/ftglyph.h /^#define ft_glyph_bbox_gridfit /;" d +ft_glyph_bbox_gridfit include/freetype/ftglyph.h /^#define ft_glyph_bbox_gridfit /;" d +ft_glyph_bbox_pixels android/freetype/include/freetype/ftglyph.h /^#define ft_glyph_bbox_pixels /;" d +ft_glyph_bbox_pixels include/freetype/ftglyph.h /^#define ft_glyph_bbox_pixels /;" d +ft_glyph_bbox_subpixels android/freetype/include/freetype/ftglyph.h /^#define ft_glyph_bbox_subpixels /;" d +ft_glyph_bbox_subpixels include/freetype/ftglyph.h /^#define ft_glyph_bbox_subpixels /;" d +ft_glyph_bbox_truncate android/freetype/include/freetype/ftglyph.h /^#define ft_glyph_bbox_truncate /;" d +ft_glyph_bbox_truncate include/freetype/ftglyph.h /^#define ft_glyph_bbox_truncate /;" d +ft_glyph_bbox_unscaled android/freetype/include/freetype/ftglyph.h /^#define ft_glyph_bbox_unscaled /;" d +ft_glyph_bbox_unscaled include/freetype/ftglyph.h /^#define ft_glyph_bbox_unscaled /;" d +ft_glyph_format_bitmap android/freetype/include/freetype/ftimage.h /^#define ft_glyph_format_bitmap /;" d +ft_glyph_format_bitmap include/freetype/ftimage.h /^#define ft_glyph_format_bitmap /;" d +ft_glyph_format_composite android/freetype/include/freetype/ftimage.h /^#define ft_glyph_format_composite /;" d +ft_glyph_format_composite include/freetype/ftimage.h /^#define ft_glyph_format_composite /;" d +ft_glyph_format_none android/freetype/include/freetype/ftimage.h /^#define ft_glyph_format_none /;" d +ft_glyph_format_none include/freetype/ftimage.h /^#define ft_glyph_format_none /;" d +ft_glyph_format_outline android/freetype/include/freetype/ftimage.h /^#define ft_glyph_format_outline /;" d +ft_glyph_format_outline include/freetype/ftimage.h /^#define ft_glyph_format_outline /;" d +ft_glyph_format_plotter android/freetype/include/freetype/ftimage.h /^#define ft_glyph_format_plotter /;" d +ft_glyph_format_plotter include/freetype/ftimage.h /^#define ft_glyph_format_plotter /;" d +ft_glyphslot_clear android/freetype/src/base/ftobjs.c /^ ft_glyphslot_clear( FT_GlyphSlot slot )$/;" f file: +ft_glyphslot_done android/freetype/src/base/ftobjs.c /^ ft_glyphslot_done( FT_GlyphSlot slot )$/;" f file: +ft_glyphslot_free_bitmap android/freetype/src/base/ftobjs.c /^ ft_glyphslot_free_bitmap( FT_GlyphSlot slot )$/;" f +ft_glyphslot_grid_fit_metrics android/freetype/src/base/ftobjs.c /^ ft_glyphslot_grid_fit_metrics( FT_GlyphSlot slot,$/;" f file: +ft_glyphslot_init android/freetype/src/base/ftobjs.c /^ ft_glyphslot_init( FT_GlyphSlot slot )$/;" f file: +ft_glyphslot_set_bitmap android/freetype/src/base/ftobjs.c /^ ft_glyphslot_set_bitmap( FT_GlyphSlot slot,$/;" f +ft_grays_raster android/freetype/src/smooth/ftgrays.c /^ const FT_Raster_Funcs ft_grays_raster =$/;" v +ft_isalnum android/freetype/include/freetype/internal/ftobjs.h /^#define ft_isalnum(/;" d +ft_isalnum include/freetype/internal/ftobjs.h /^#define ft_isalnum(/;" d +ft_isalpha android/freetype/include/freetype/internal/ftobjs.h /^#define ft_isalpha(/;" d +ft_isalpha include/freetype/internal/ftobjs.h /^#define ft_isalpha(/;" d +ft_isdigit android/freetype/include/freetype/internal/ftobjs.h /^#define ft_isdigit(/;" d +ft_isdigit include/freetype/internal/ftobjs.h /^#define ft_isdigit(/;" d +ft_islower android/freetype/include/freetype/internal/ftobjs.h /^#define ft_islower(/;" d +ft_islower include/freetype/internal/ftobjs.h /^#define ft_islower(/;" d +ft_isupper android/freetype/include/freetype/internal/ftobjs.h /^#define ft_isupper(/;" d +ft_isupper include/freetype/internal/ftobjs.h /^#define ft_isupper(/;" d +ft_isxdigit android/freetype/include/freetype/internal/ftobjs.h /^#define ft_isxdigit(/;" d +ft_isxdigit include/freetype/internal/ftobjs.h /^#define ft_isxdigit(/;" d +ft_jmp_buf android/freetype/include/freetype/config/ftstdlib.h /^#define ft_jmp_buf /;" d +ft_jmp_buf android/freetype/src/smooth/ftgrays.c /^#define ft_jmp_buf /;" d file: +ft_jmp_buf include/freetype/config/ftstdlib.h /^#define ft_jmp_buf /;" d +ft_kerning_default android/freetype/include/freetype/freetype.h /^#define ft_kerning_default /;" d +ft_kerning_default include/freetype/freetype.h /^#define ft_kerning_default /;" d +ft_kerning_unfitted android/freetype/include/freetype/freetype.h /^#define ft_kerning_unfitted /;" d +ft_kerning_unfitted include/freetype/freetype.h /^#define ft_kerning_unfitted /;" d +ft_kerning_unscaled android/freetype/include/freetype/freetype.h /^#define ft_kerning_unscaled /;" d +ft_kerning_unscaled include/freetype/freetype.h /^#define ft_kerning_unscaled /;" d +ft_labs android/freetype/include/freetype/config/ftstdlib.h /^#define ft_labs /;" d +ft_labs include/freetype/config/ftstdlib.h /^#define ft_labs /;" d +ft_longjmp android/freetype/include/freetype/config/ftstdlib.h /^#define ft_longjmp /;" d +ft_longjmp android/freetype/src/smooth/ftgrays.c /^#define ft_longjmp /;" d file: +ft_longjmp include/freetype/config/ftstdlib.h /^#define ft_longjmp /;" d +ft_lookup_glyph_renderer android/freetype/src/base/ftobjs.c /^ ft_lookup_glyph_renderer( FT_GlyphSlot slot )$/;" f file: +ft_mac_names android/freetype/src/psnames/pstables.h /^ static const short ft_mac_names[FT_NUM_MAC_NAMES] =$/;" v +ft_mem_closest_prime android/freetype/src/base/ftdbgmem.c /^ ft_mem_closest_prime( FT_ULong num )$/;" f file: +ft_mem_debug_alloc android/freetype/src/base/ftdbgmem.c /^ ft_mem_debug_alloc( FT_Memory memory,$/;" f +ft_mem_debug_done android/freetype/src/base/ftdbgmem.c /^ ft_mem_debug_done( FT_Memory memory )$/;" f +ft_mem_debug_free android/freetype/src/base/ftdbgmem.c /^ ft_mem_debug_free( FT_Memory memory,$/;" f +ft_mem_debug_init android/freetype/src/base/ftdbgmem.c /^ ft_mem_debug_init( FT_Memory memory )$/;" f +ft_mem_debug_panic android/freetype/src/base/ftdbgmem.c /^ ft_mem_debug_panic( const char* fmt,$/;" f +ft_mem_debug_realloc android/freetype/src/base/ftdbgmem.c /^ ft_mem_debug_realloc( FT_Memory memory,$/;" f +ft_mem_free android/freetype/src/base/ftutil.c /^ ft_mem_free( FT_Memory memory,$/;" f +ft_mem_primes android/freetype/src/base/ftdbgmem.c /^ static const FT_UInt ft_mem_primes[] =$/;" v file: +ft_mem_source_compare android/freetype/src/base/ftdbgmem.c /^ ft_mem_source_compare( const void* p1,$/;" f file: +ft_mem_table_alloc android/freetype/src/base/ftdbgmem.c /^ ft_mem_table_alloc( FT_MemTable table,$/;" f file: +ft_mem_table_destroy android/freetype/src/base/ftdbgmem.c /^ ft_mem_table_destroy( FT_MemTable table )$/;" f file: +ft_mem_table_free android/freetype/src/base/ftdbgmem.c /^ ft_mem_table_free( FT_MemTable table,$/;" f file: +ft_mem_table_get_nodep android/freetype/src/base/ftdbgmem.c /^ ft_mem_table_get_nodep( FT_MemTable table,$/;" f file: +ft_mem_table_get_source android/freetype/src/base/ftdbgmem.c /^ ft_mem_table_get_source( FT_MemTable table )$/;" f file: +ft_mem_table_new android/freetype/src/base/ftdbgmem.c /^ ft_mem_table_new( FT_Memory memory )$/;" f file: +ft_mem_table_remove android/freetype/src/base/ftdbgmem.c /^ ft_mem_table_remove( FT_MemTable table,$/;" f file: +ft_mem_table_resize android/freetype/src/base/ftdbgmem.c /^ ft_mem_table_resize( FT_MemTable table )$/;" f file: +ft_mem_table_set android/freetype/src/base/ftdbgmem.c /^ ft_mem_table_set( FT_MemTable table,$/;" f file: +ft_memchr android/freetype/include/freetype/config/ftstdlib.h /^#define ft_memchr /;" d +ft_memchr include/freetype/config/ftstdlib.h /^#define ft_memchr /;" d +ft_memcmp android/freetype/include/freetype/config/ftstdlib.h /^#define ft_memcmp /;" d +ft_memcmp include/freetype/config/ftstdlib.h /^#define ft_memcmp /;" d +ft_memcpy android/freetype/include/freetype/config/ftstdlib.h /^#define ft_memcpy /;" d +ft_memcpy include/freetype/config/ftstdlib.h /^#define ft_memcpy /;" d +ft_memmove android/freetype/include/freetype/config/ftstdlib.h /^#define ft_memmove /;" d +ft_memmove include/freetype/config/ftstdlib.h /^#define ft_memmove /;" d +ft_memset android/freetype/include/freetype/config/ftstdlib.h /^#define ft_memset /;" d +ft_memset android/freetype/src/raster/ftraster.c /^#define ft_memset /;" d file: +ft_memset android/freetype/src/smooth/ftgrays.c /^#define ft_memset /;" d file: +ft_memset include/freetype/config/ftstdlib.h /^#define ft_memset /;" d +ft_module_driver_has_hinter android/freetype/include/freetype/ftmodapi.h /^#define ft_module_driver_has_hinter /;" d +ft_module_driver_has_hinter include/freetype/ftmodapi.h /^#define ft_module_driver_has_hinter /;" d +ft_module_driver_no_outlines android/freetype/include/freetype/ftmodapi.h /^#define ft_module_driver_no_outlines /;" d +ft_module_driver_no_outlines include/freetype/ftmodapi.h /^#define ft_module_driver_no_outlines /;" d +ft_module_driver_scalable android/freetype/include/freetype/ftmodapi.h /^#define ft_module_driver_scalable /;" d +ft_module_driver_scalable include/freetype/ftmodapi.h /^#define ft_module_driver_scalable /;" d +ft_module_font_driver android/freetype/include/freetype/ftmodapi.h /^#define ft_module_font_driver /;" d +ft_module_font_driver include/freetype/ftmodapi.h /^#define ft_module_font_driver /;" d +ft_module_hinter android/freetype/include/freetype/ftmodapi.h /^#define ft_module_hinter /;" d +ft_module_hinter include/freetype/ftmodapi.h /^#define ft_module_hinter /;" d +ft_module_renderer android/freetype/include/freetype/ftmodapi.h /^#define ft_module_renderer /;" d +ft_module_renderer include/freetype/ftmodapi.h /^#define ft_module_renderer /;" d +ft_module_styler android/freetype/include/freetype/ftmodapi.h /^#define ft_module_styler /;" d +ft_module_styler include/freetype/ftmodapi.h /^#define ft_module_styler /;" d +ft_multo64 android/freetype/src/base/ftcalc.c /^ ft_multo64( FT_UInt32 x,$/;" f file: +ft_new_glyph android/freetype/src/base/ftglyph.c /^ ft_new_glyph( FT_Library library,$/;" f file: +ft_open_driver android/freetype/include/freetype/freetype.h /^#define ft_open_driver /;" d +ft_open_driver include/freetype/freetype.h /^#define ft_open_driver /;" d +ft_open_memory android/freetype/include/freetype/freetype.h /^#define ft_open_memory /;" d +ft_open_memory include/freetype/freetype.h /^#define ft_open_memory /;" d +ft_open_params android/freetype/include/freetype/freetype.h /^#define ft_open_params /;" d +ft_open_params include/freetype/freetype.h /^#define ft_open_params /;" d +ft_open_pathname android/freetype/include/freetype/freetype.h /^#define ft_open_pathname /;" d +ft_open_pathname include/freetype/freetype.h /^#define ft_open_pathname /;" d +ft_open_stream android/freetype/include/freetype/freetype.h /^#define ft_open_stream /;" d +ft_open_stream include/freetype/freetype.h /^#define ft_open_stream /;" d +ft_outline_even_odd_fill android/freetype/include/freetype/ftimage.h /^#define ft_outline_even_odd_fill /;" d +ft_outline_even_odd_fill include/freetype/ftimage.h /^#define ft_outline_even_odd_fill /;" d +ft_outline_glyph_bbox android/freetype/src/base/ftglyph.c /^ ft_outline_glyph_bbox( FT_Glyph outline_glyph,$/;" f +ft_outline_glyph_class android/freetype/src/base/ftglyph.c /^ const FT_Glyph_Class ft_outline_glyph_class =$/;" v +ft_outline_glyph_done android/freetype/src/base/ftglyph.c /^ ft_outline_glyph_done( FT_Glyph outline_glyph )$/;" f +ft_outline_glyph_transform android/freetype/src/base/ftglyph.c /^ ft_outline_glyph_transform( FT_Glyph outline_glyph,$/;" f +ft_outline_high_precision android/freetype/include/freetype/ftimage.h /^#define ft_outline_high_precision /;" d +ft_outline_high_precision include/freetype/ftimage.h /^#define ft_outline_high_precision /;" d +ft_outline_ignore_dropouts android/freetype/include/freetype/ftimage.h /^#define ft_outline_ignore_dropouts /;" d +ft_outline_ignore_dropouts include/freetype/ftimage.h /^#define ft_outline_ignore_dropouts /;" d +ft_outline_none android/freetype/include/freetype/ftimage.h /^#define ft_outline_none /;" d +ft_outline_none include/freetype/ftimage.h /^#define ft_outline_none /;" d +ft_outline_owner android/freetype/include/freetype/ftimage.h /^#define ft_outline_owner /;" d +ft_outline_owner include/freetype/ftimage.h /^#define ft_outline_owner /;" d +ft_outline_reverse_fill android/freetype/include/freetype/ftimage.h /^#define ft_outline_reverse_fill /;" d +ft_outline_reverse_fill include/freetype/ftimage.h /^#define ft_outline_reverse_fill /;" d +ft_outline_single_pass android/freetype/include/freetype/ftimage.h /^#define ft_outline_single_pass /;" d +ft_outline_single_pass include/freetype/ftimage.h /^#define ft_outline_single_pass /;" d +ft_pixel_mode_grays android/freetype/include/freetype/ftimage.h /^#define ft_pixel_mode_grays /;" d +ft_pixel_mode_grays include/freetype/ftimage.h /^#define ft_pixel_mode_grays /;" d +ft_pixel_mode_mono android/freetype/include/freetype/ftimage.h /^#define ft_pixel_mode_mono /;" d +ft_pixel_mode_mono include/freetype/ftimage.h /^#define ft_pixel_mode_mono /;" d +ft_pixel_mode_none android/freetype/include/freetype/ftimage.h /^#define ft_pixel_mode_none /;" d +ft_pixel_mode_none include/freetype/ftimage.h /^#define ft_pixel_mode_none /;" d +ft_pixel_mode_pal2 android/freetype/include/freetype/ftimage.h /^#define ft_pixel_mode_pal2 /;" d +ft_pixel_mode_pal2 include/freetype/ftimage.h /^#define ft_pixel_mode_pal2 /;" d +ft_pixel_mode_pal4 android/freetype/include/freetype/ftimage.h /^#define ft_pixel_mode_pal4 /;" d +ft_pixel_mode_pal4 include/freetype/ftimage.h /^#define ft_pixel_mode_pal4 /;" d +ft_pos_abs android/freetype/src/base/ftstroke.c /^ ft_pos_abs( FT_Pos x )$/;" f file: +ft_ptrdiff_t android/freetype/include/freetype/config/ftstdlib.h /^#define ft_ptrdiff_t /;" d +ft_ptrdiff_t include/freetype/config/ftstdlib.h /^#define ft_ptrdiff_t /;" d +ft_qsort android/freetype/include/freetype/config/ftstdlib.h /^#define ft_qsort /;" d +ft_qsort include/freetype/config/ftstdlib.h /^#define ft_qsort /;" d +ft_raccess_sort_ref_by_id android/freetype/src/base/ftrfork.c /^ ft_raccess_sort_ref_by_id( FT_RFork_Ref* a,$/;" f file: +ft_raster1_get_cbox android/freetype/src/raster/ftrend1.c /^ ft_raster1_get_cbox( FT_Renderer render,$/;" f file: +ft_raster1_init android/freetype/src/raster/ftrend1.c /^ ft_raster1_init( FT_Renderer render )$/;" f file: +ft_raster1_render android/freetype/src/raster/ftrend1.c /^ ft_raster1_render( FT_Renderer render,$/;" f file: +ft_raster1_renderer_class android/freetype/src/raster/ftrend1.c /^ const FT_Renderer_Class ft_raster1_renderer_class =$/;" v +ft_raster1_set_mode android/freetype/src/raster/ftrend1.c /^ ft_raster1_set_mode( FT_Renderer render,$/;" f file: +ft_raster1_transform android/freetype/src/raster/ftrend1.c /^ ft_raster1_transform( FT_Renderer render,$/;" f file: +ft_raster5_renderer_class android/freetype/src/raster/ftrend1.c /^ const FT_Renderer_Class ft_raster5_renderer_class =$/;" v +ft_raster_flag_aa android/freetype/include/freetype/ftimage.h /^#define ft_raster_flag_aa /;" d +ft_raster_flag_aa include/freetype/ftimage.h /^#define ft_raster_flag_aa /;" d +ft_raster_flag_clip android/freetype/include/freetype/ftimage.h /^#define ft_raster_flag_clip /;" d +ft_raster_flag_clip include/freetype/ftimage.h /^#define ft_raster_flag_clip /;" d +ft_raster_flag_default android/freetype/include/freetype/ftimage.h /^#define ft_raster_flag_default /;" d +ft_raster_flag_default include/freetype/ftimage.h /^#define ft_raster_flag_default /;" d +ft_raster_flag_direct android/freetype/include/freetype/ftimage.h /^#define ft_raster_flag_direct /;" d +ft_raster_flag_direct include/freetype/ftimage.h /^#define ft_raster_flag_direct /;" d +ft_realloc android/freetype/src/base/ftsystem.c /^ ft_realloc( FT_Memory memory,$/;" f +ft_recompute_scaled_metrics android/freetype/src/base/ftobjs.c /^ ft_recompute_scaled_metrics( FT_Face face,$/;" f file: +ft_remove_renderer android/freetype/src/base/ftobjs.c /^ ft_remove_renderer( FT_Module module )$/;" f file: +ft_render_mode_mono android/freetype/include/freetype/freetype.h /^#define ft_render_mode_mono /;" d +ft_render_mode_mono include/freetype/freetype.h /^#define ft_render_mode_mono /;" d +ft_render_mode_normal android/freetype/include/freetype/freetype.h /^#define ft_render_mode_normal /;" d +ft_render_mode_normal include/freetype/freetype.h /^#define ft_render_mode_normal /;" d +ft_scalloc android/freetype/include/freetype/config/ftstdlib.h /^#define ft_scalloc /;" d +ft_scalloc include/freetype/config/ftstdlib.h /^#define ft_scalloc /;" d +ft_set_current_renderer android/freetype/src/base/ftobjs.c /^ ft_set_current_renderer( FT_Library library )$/;" f file: +ft_setjmp android/freetype/include/freetype/config/ftstdlib.h /^#define ft_setjmp(/;" d +ft_setjmp android/freetype/src/smooth/ftgrays.c /^#define ft_setjmp /;" d file: +ft_setjmp include/freetype/config/ftstdlib.h /^#define ft_setjmp(/;" d +ft_sfnt_head android/freetype/include/freetype/tttables.h /^ ft_sfnt_head = 0,$/;" e enum:FT_Sfnt_Tag_ +ft_sfnt_head include/freetype/tttables.h /^ ft_sfnt_head = 0, \/* TT_Header *\/$/;" e enum:FT_Sfnt_Tag_ +ft_sfnt_hhea android/freetype/include/freetype/tttables.h /^ ft_sfnt_hhea = 3,$/;" e enum:FT_Sfnt_Tag_ +ft_sfnt_hhea include/freetype/tttables.h /^ ft_sfnt_hhea = 3, \/* TT_HoriHeader *\/$/;" e enum:FT_Sfnt_Tag_ +ft_sfnt_maxp android/freetype/include/freetype/tttables.h /^ ft_sfnt_maxp = 1,$/;" e enum:FT_Sfnt_Tag_ +ft_sfnt_maxp include/freetype/tttables.h /^ ft_sfnt_maxp = 1, \/* TT_MaxProfile *\/$/;" e enum:FT_Sfnt_Tag_ +ft_sfnt_os2 android/freetype/include/freetype/tttables.h /^ ft_sfnt_os2 = 2,$/;" e enum:FT_Sfnt_Tag_ +ft_sfnt_os2 include/freetype/tttables.h /^ ft_sfnt_os2 = 2, \/* TT_OS2 *\/$/;" e enum:FT_Sfnt_Tag_ +ft_sfnt_pclt android/freetype/include/freetype/tttables.h /^ ft_sfnt_pclt = 6,$/;" e enum:FT_Sfnt_Tag_ +ft_sfnt_pclt include/freetype/tttables.h /^ ft_sfnt_pclt = 6, \/* TT_PCLT *\/$/;" e enum:FT_Sfnt_Tag_ +ft_sfnt_post android/freetype/include/freetype/tttables.h /^ ft_sfnt_post = 5,$/;" e enum:FT_Sfnt_Tag_ +ft_sfnt_post include/freetype/tttables.h /^ ft_sfnt_post = 5, \/* TT_Postscript *\/$/;" e enum:FT_Sfnt_Tag_ +ft_sfnt_vhea android/freetype/include/freetype/tttables.h /^ ft_sfnt_vhea = 4,$/;" e enum:FT_Sfnt_Tag_ +ft_sfnt_vhea include/freetype/tttables.h /^ ft_sfnt_vhea = 4, \/* TT_VertHeader *\/$/;" e enum:FT_Sfnt_Tag_ +ft_sfree android/freetype/include/freetype/config/ftstdlib.h /^#define ft_sfree /;" d +ft_sfree include/freetype/config/ftstdlib.h /^#define ft_sfree /;" d +ft_sid_names android/freetype/src/psnames/pstables.h /^ static const short ft_sid_names[FT_NUM_SID_NAMES] =$/;" v +ft_smalloc android/freetype/include/freetype/config/ftstdlib.h /^#define ft_smalloc /;" d +ft_smalloc include/freetype/config/ftstdlib.h /^#define ft_smalloc /;" d +ft_smooth_get_cbox android/freetype/src/smooth/ftsmooth.c /^ ft_smooth_get_cbox( FT_Renderer render,$/;" f file: +ft_smooth_init android/freetype/src/smooth/ftsmooth.c /^ ft_smooth_init( FT_Renderer render )$/;" f file: +ft_smooth_lcd_renderer_class android/freetype/src/smooth/ftsmooth.c /^ const FT_Renderer_Class ft_smooth_lcd_renderer_class =$/;" v +ft_smooth_lcdv_renderer_class android/freetype/src/smooth/ftsmooth.c /^ const FT_Renderer_Class ft_smooth_lcdv_renderer_class =$/;" v +ft_smooth_render android/freetype/src/smooth/ftsmooth.c /^ ft_smooth_render( FT_Renderer render,$/;" f file: +ft_smooth_render_generic android/freetype/src/smooth/ftsmooth.c /^ ft_smooth_render_generic( FT_Renderer render,$/;" f file: +ft_smooth_render_lcd android/freetype/src/smooth/ftsmooth.c /^ ft_smooth_render_lcd( FT_Renderer render,$/;" f file: +ft_smooth_render_lcd_v android/freetype/src/smooth/ftsmooth.c /^ ft_smooth_render_lcd_v( FT_Renderer render,$/;" f file: +ft_smooth_renderer_class android/freetype/src/smooth/ftsmooth.c /^ const FT_Renderer_Class ft_smooth_renderer_class =$/;" v +ft_smooth_set_mode android/freetype/src/smooth/ftsmooth.c /^ ft_smooth_set_mode( FT_Renderer render,$/;" f file: +ft_smooth_transform android/freetype/src/smooth/ftsmooth.c /^ ft_smooth_transform( FT_Renderer render,$/;" f file: +ft_sprintf android/freetype/include/freetype/config/ftstdlib.h /^#define ft_sprintf /;" d +ft_sprintf include/freetype/config/ftstdlib.h /^#define ft_sprintf /;" d +ft_srealloc android/freetype/include/freetype/config/ftstdlib.h /^#define ft_srealloc /;" d +ft_srealloc include/freetype/config/ftstdlib.h /^#define ft_srealloc /;" d +ft_standard_glyph_names android/freetype/src/psnames/pstables.h /^ static const char ft_standard_glyph_names[3696] =$/;" v +ft_standard_raster android/freetype/src/raster/ftraster.c /^ const FT_Raster_Funcs ft_standard_raster =$/;" v +ft_strcat android/freetype/include/freetype/config/ftstdlib.h /^#define ft_strcat /;" d +ft_strcat include/freetype/config/ftstdlib.h /^#define ft_strcat /;" d +ft_strcmp android/freetype/include/freetype/config/ftstdlib.h /^#define ft_strcmp /;" d +ft_strcmp include/freetype/config/ftstdlib.h /^#define ft_strcmp /;" d +ft_strcpy android/freetype/include/freetype/config/ftstdlib.h /^#define ft_strcpy /;" d +ft_strcpy include/freetype/config/ftstdlib.h /^#define ft_strcpy /;" d +ft_strlen android/freetype/include/freetype/config/ftstdlib.h /^#define ft_strlen /;" d +ft_strlen include/freetype/config/ftstdlib.h /^#define ft_strlen /;" d +ft_strncmp android/freetype/include/freetype/config/ftstdlib.h /^#define ft_strncmp /;" d +ft_strncmp include/freetype/config/ftstdlib.h /^#define ft_strncmp /;" d +ft_strncpy android/freetype/include/freetype/config/ftstdlib.h /^#define ft_strncpy /;" d +ft_strncpy include/freetype/config/ftstdlib.h /^#define ft_strncpy /;" d +ft_stroke_border_arcto android/freetype/src/base/ftstroke.c /^ ft_stroke_border_arcto( FT_StrokeBorder border,$/;" f file: +ft_stroke_border_close android/freetype/src/base/ftstroke.c /^ ft_stroke_border_close( FT_StrokeBorder border,$/;" f file: +ft_stroke_border_conicto android/freetype/src/base/ftstroke.c /^ ft_stroke_border_conicto( FT_StrokeBorder border,$/;" f file: +ft_stroke_border_cubicto android/freetype/src/base/ftstroke.c /^ ft_stroke_border_cubicto( FT_StrokeBorder border,$/;" f file: +ft_stroke_border_done android/freetype/src/base/ftstroke.c /^ ft_stroke_border_done( FT_StrokeBorder border )$/;" f file: +ft_stroke_border_export android/freetype/src/base/ftstroke.c /^ ft_stroke_border_export( FT_StrokeBorder border,$/;" f file: +ft_stroke_border_get_counts android/freetype/src/base/ftstroke.c /^ ft_stroke_border_get_counts( FT_StrokeBorder border,$/;" f file: +ft_stroke_border_grow android/freetype/src/base/ftstroke.c /^ ft_stroke_border_grow( FT_StrokeBorder border,$/;" f file: +ft_stroke_border_init android/freetype/src/base/ftstroke.c /^ ft_stroke_border_init( FT_StrokeBorder border,$/;" f file: +ft_stroke_border_lineto android/freetype/src/base/ftstroke.c /^ ft_stroke_border_lineto( FT_StrokeBorder border,$/;" f file: +ft_stroke_border_moveto android/freetype/src/base/ftstroke.c /^ ft_stroke_border_moveto( FT_StrokeBorder border,$/;" f file: +ft_stroke_border_reset android/freetype/src/base/ftstroke.c /^ ft_stroke_border_reset( FT_StrokeBorder border )$/;" f file: +ft_stroker_add_reverse_left android/freetype/src/base/ftstroke.c /^ ft_stroker_add_reverse_left( FT_Stroker stroker,$/;" f file: +ft_stroker_arcto android/freetype/src/base/ftstroke.c /^ ft_stroker_arcto( FT_Stroker stroker,$/;" f file: +ft_stroker_cap android/freetype/src/base/ftstroke.c /^ ft_stroker_cap( FT_Stroker stroker,$/;" f file: +ft_stroker_inside android/freetype/src/base/ftstroke.c /^ ft_stroker_inside( FT_Stroker stroker,$/;" f file: +ft_stroker_outside android/freetype/src/base/ftstroke.c /^ ft_stroker_outside( FT_Stroker stroker,$/;" f file: +ft_stroker_process_corner android/freetype/src/base/ftstroke.c /^ ft_stroker_process_corner( FT_Stroker stroker )$/;" f file: +ft_stroker_subpath_start android/freetype/src/base/ftstroke.c /^ ft_stroker_subpath_start( FT_Stroker stroker,$/;" f file: +ft_strrchr android/freetype/include/freetype/config/ftstdlib.h /^#define ft_strrchr /;" d +ft_strrchr include/freetype/config/ftstdlib.h /^#define ft_strrchr /;" d +ft_strstr android/freetype/include/freetype/config/ftstdlib.h /^#define ft_strstr /;" d +ft_strstr include/freetype/config/ftstdlib.h /^#define ft_strstr /;" d +ft_synthesize_vertical_metrics android/freetype/src/base/ftobjs.c /^ ft_synthesize_vertical_metrics( FT_Glyph_Metrics* metrics,$/;" f +ft_trace_levels android/freetype/src/base/ftdebug.c /^ int ft_trace_levels[trace_count];$/;" v +ft_trace_toggles android/freetype/src/base/ftdebug.c /^ static const char* ft_trace_toggles[trace_count + 1] =$/;" v file: +ft_trig_arctan_table android/freetype/src/base/fttrigon.c /^ ft_trig_arctan_table[24] =$/;" v file: +ft_trig_downscale android/freetype/src/base/fttrigon.c /^ ft_trig_downscale( FT_Fixed val )$/;" f file: +ft_trig_prenorm android/freetype/src/base/fttrigon.c /^ ft_trig_prenorm( FT_Vector* vec )$/;" f file: +ft_trig_pseudo_polarize android/freetype/src/base/fttrigon.c /^ ft_trig_pseudo_polarize( FT_Vector* vec )$/;" f file: +ft_trig_pseudo_rotate android/freetype/src/base/fttrigon.c /^ ft_trig_pseudo_rotate( FT_Vector* vec,$/;" f file: +ft_validator_error android/freetype/src/base/ftobjs.c /^ ft_validator_error( FT_Validator valid,$/;" f +ft_validator_init android/freetype/src/base/ftobjs.c /^ ft_validator_init( FT_Validator valid,$/;" f +ft_var_apply_tuple android/freetype/src/truetype/ttgxvar.c /^ ft_var_apply_tuple( GX_Blend blend,$/;" f file: +ft_var_load_avar android/freetype/src/truetype/ttgxvar.c /^ ft_var_load_avar( TT_Face face )$/;" f file: +ft_var_load_gvar android/freetype/src/truetype/ttgxvar.c /^ ft_var_load_gvar( TT_Face face )$/;" f file: +ft_var_readpackeddeltas android/freetype/src/truetype/ttgxvar.c /^ ft_var_readpackeddeltas( FT_Stream stream,$/;" f file: +ft_var_readpackedpoints android/freetype/src/truetype/ttgxvar.c /^ ft_var_readpackedpoints( FT_Stream stream,$/;" f file: +ft_wgl_extra_glyph_name_offsets android/freetype/src/psnames/psmodule.c /^ ft_wgl_extra_glyph_name_offsets[WGL_EXTRA_LIST_SIZE] =$/;" v file: +ft_wgl_extra_glyph_names android/freetype/src/psnames/psmodule.c /^ static const char ft_wgl_extra_glyph_names[] =$/;" v file: +ft_wgl_extra_unicodes android/freetype/src/psnames/psmodule.c /^ static const FT_UInt32 ft_wgl_extra_unicodes[WGL_EXTRA_LIST_SIZE] =$/;" v file: +full_name android/freetype/include/freetype/t1tables.h /^ FT_String* full_name;$/;" m struct:PS_FontInfoRec_ +full_name android/freetype/src/cff/cfftypes.h /^ FT_UInt full_name;$/;" m struct:CFF_FontRecDictRec_ +full_name include/freetype/t1tables.h /^ FT_String* full_name;$/;" m struct:PS_FontInfoRec_ +full_product_name tools/gyp/build/lib/gyp/SCons.py /^ def full_product_name(self):$/;" m class:TargetBase +full_product_name tools/gyp/pylib/gyp/SCons.py /^ def full_product_name(self):$/;" m class:TargetBase +func_dualproj android/freetype/src/truetype/ttinterp.h /^ func_dualproj, \/* current dual proj. function *\/$/;" m struct:TT_ExecContextRec_ +func_freeProj android/freetype/src/truetype/ttinterp.h /^ func_freeProj; \/* current freedom proj. func *\/$/;" m struct:TT_ExecContextRec_ +func_move android/freetype/src/truetype/ttinterp.h /^ TT_Move_Func func_move; \/* current point move function *\/$/;" m struct:TT_ExecContextRec_ +func_move_cvt android/freetype/src/truetype/ttinterp.h /^ TT_Set_CVT_Func func_move_cvt; \/* incr a cvt entry (in pixels) *\/$/;" m struct:TT_ExecContextRec_ +func_move_orig android/freetype/src/truetype/ttinterp.h /^ TT_Move_Func func_move_orig; \/* move original position function *\/$/;" m struct:TT_ExecContextRec_ +func_project android/freetype/src/truetype/ttinterp.h /^ TT_Project_Func func_project, \/* current projection function *\/$/;" m struct:TT_ExecContextRec_ +func_read_cvt android/freetype/src/truetype/ttinterp.h /^ TT_Get_CVT_Func func_read_cvt; \/* read a cvt entry *\/$/;" m struct:TT_ExecContextRec_ +func_round android/freetype/src/truetype/ttinterp.h /^ TT_Round_Func func_round; \/* current rounding function *\/$/;" m struct:TT_ExecContextRec_ +func_write_cvt android/freetype/src/truetype/ttinterp.h /^ TT_Set_CVT_Func func_write_cvt; \/* write a cvt entry (in pixels) *\/$/;" m struct:TT_ExecContextRec_ +funcs android/freetype/include/freetype/ftincrem.h /^ const FT_Incremental_FuncsRec* funcs;$/;" m struct:FT_Incremental_InterfaceRec_ +funcs android/freetype/include/freetype/internal/psaux.h /^ PS_Parser_FuncsRec funcs;$/;" m struct:PS_ParserRec_ +funcs android/freetype/include/freetype/internal/psaux.h /^ PS_Table_FuncsRec funcs;$/;" m struct:PS_TableRec_ +funcs android/freetype/include/freetype/internal/psaux.h /^ T1_Builder_FuncsRec funcs;$/;" m struct:T1_BuilderRec_ +funcs android/freetype/include/freetype/internal/psaux.h /^ T1_Decoder_FuncsRec funcs;$/;" m struct:T1_DecoderRec_ +funcs android/freetype/src/pshinter/pshglob.h /^ psh_globals_funcs_init( PSH_Globals_FuncsRec* funcs );$/;" v +funcs android/freetype/src/pshinter/pshrec.h /^ t1_hints_funcs_init( T1_Hints_FuncsRec* funcs );$/;" v +funcs android/freetype/src/pshinter/pshrec.h /^ t2_hints_funcs_init( T2_Hints_FuncsRec* funcs );$/;" v +funcs include/freetype/ftincrem.h /^ const FT_Incremental_FuncsRec* funcs;$/;" m struct:FT_Incremental_InterfaceRec_ +funcs include/freetype/internal/psaux.h /^ PS_Parser_FuncsRec funcs;$/;" m struct:PS_ParserRec_ +funcs include/freetype/internal/psaux.h /^ PS_Table_FuncsRec funcs;$/;" m struct:PS_TableRec_ +funcs include/freetype/internal/psaux.h /^ T1_Builder_FuncsRec funcs;$/;" m struct:T1_BuilderRec_ +funcs include/freetype/internal/psaux.h /^ T1_Decoder_FuncsRec funcs;$/;" m struct:T1_DecoderRec_ +function_defs android/freetype/src/truetype/ttobjs.h /^ TT_DefArray function_defs; \/* table of function definitions *\/$/;" m struct:TT_SizeRec_ +functions tools/gyp/build/lib/gyp/generator/android.py /^import gyp.generator.make as make # Reuse global functions from make backend.$/;" i +functions tools/gyp/pylib/gyp/generator/android.py /^import gyp.generator.make as make # Reuse global functions from make backend.$/;" i +fvar_axis_ android/freetype/src/truetype/ttgxvar.c /^ typedef struct fvar_axis_$/;" s file: +fx android/freetype/src/autofit/afhints.h /^ FT_Short fx, fy; \/* original, unscaled position (font units) *\/$/;" m struct:AF_PointRec_ +fxPI src/core/fixedopt.cpp /^fixed fixed::fxPI(void)$/;" f class:fxmath::fixed +fxPI2 src/core/fixedopt.cpp /^fixed fixed::fxPI2(void)$/;" f class:fxmath::fixed +fxPIdiv2 src/core/fixedopt.cpp /^fixed fixed::fxPIdiv2(void)$/;" f class:fxmath::fixed +fxmath src/core/fixedopt.cpp /^namespace fxmath {$/;" n file: +fxmath src/include/fixedopt.h /^namespace fxmath {$/;" n +fy android/freetype/src/autofit/afhints.h /^ FT_Short fx, fy; \/* original, unscaled position (font units) *\/$/;" m struct:AF_PointRec_ +g include/picasso.h /^ float g;$/;" m struct:_ps_color +g src/gfx/gfx_blur.h /^ value_type g;$/;" m struct:gfx::stack_blur_calc_rgba +g src/gfx/gfx_gradient_adapter.cpp /^ gfx_dda_line_interpolator<14> g;$/;" m struct:gfx::color_interpolator file: +g src/include/color_type.h /^ scalar g;$/;" m struct:picasso::rgba +g src/include/color_type.h /^ value_type g;$/;" m struct:picasso::rgba8 +gProfile android/freetype/src/raster/ftraster.c /^ PProfile gProfile; \/* contour's first profile in case *\/$/;" m struct:TWorker_ file: +gTarget android/freetype/src/raster/ftraster.c /^ PByte gTarget; \/* target pixmap buffer *\/$/;" m struct:TWorker_ file: +g_bmp demos/platform_gix.c /^gi_image_t *g_bmp;$/;" v +g_elder_bit_table src/gfx/gfx_sqrt_tables.cpp /^int8_t g_elder_bit_table[256] = {$/;" m namespace:gfx file: +g_height demos/platform_qt4.cpp /^static int g_height;$/;" v file: +g_mask src/gfx/gfx_span_image_filters.h /^ g_mask = (((color_mask) & (~r_mask)) >> (order_type::B)) << (order_type::B),$/;" e enum:gfx::gfx_span_image_filter_rgb16::__anon174 +g_mask src/gfx/gfx_span_image_filters.h /^ g_mask = (((color_mask) & (~r_mask)) >> (order_type::B)) << (order_type::B),$/;" e enum:gfx::gfx_span_image_filter_rgb16_nn::__anon175 +g_rgb_16_blend_op_func src/gfx/gfx_pixfmt_rgb16.h /^ static composite_op_func_type g_rgb_16_blend_op_func[];$/;" m struct:gfx::blend_op_table_rgb_16 +g_rgb_16_blend_op_func src/gfx/gfx_pixfmt_rgb16.h /^blend_op_table_rgb_16::g_rgb_16_blend_op_func[] = $/;" m class:gfx::blend_op_table_rgb_16 +g_rgb_blend_op_func src/gfx/gfx_pixfmt_rgb.h /^ static composite_op_func_type g_rgb_blend_op_func[];$/;" m struct:gfx::blend_op_table_rgb +g_rgb_blend_op_func src/gfx/gfx_pixfmt_rgb.h /^blend_op_table_rgb::g_rgb_blend_op_func[] = $/;" m class:gfx::blend_op_table_rgb +g_rgba_blend_op_func src/gfx/gfx_pixfmt_rgba.h /^ static composite_op_func_type g_rgba_blend_op_func[];$/;" m struct:gfx::blend_op_table_rgba +g_rgba_blend_op_func src/gfx/gfx_pixfmt_rgba.h /^blend_op_table_rgba::g_rgba_blend_op_func[] = $/;" m class:gfx::blend_op_table_rgba +g_sqrt_table src/gfx/gfx_sqrt_tables.cpp /^uint16_t g_sqrt_table[1024] = {$/;" m namespace:gfx file: +g_stack_blur8_mul src/gfx/gfx_blur.cpp /^uint16_t const g_stack_blur8_mul[255] = $/;" m namespace:gfx file: +g_stack_blur8_shr src/gfx/gfx_blur.cpp /^uint8_t const g_stack_blur8_shr[255] = $/;" m namespace:gfx file: +g_width demos/platform_qt4.cpp /^static int g_width;$/;" v file: +g_window demos/platform_gix.c /^gi_window_id_t g_window;$/;" v +gamma src/gfx/gfx_gamma_function.h /^ scalar gamma(void) const { return m_gamma; }$/;" f class:gfx::gamma_power +gamma src/gfx/gfx_gamma_function.h /^ void gamma(scalar g) { m_gamma = g; }$/;" f class:gfx::gamma_power +gamma src/gfx/gfx_rasterizer_scanline.h /^ template void gamma(const GammaFunc& gamma_function)$/;" f class:gfx::gfx_rasterizer_scanline_aa +gamma src/picasso_objects.h /^ scalar gamma;$/;" m struct:picasso::context_state +gamma test/gamma_func.c /^static float gamma = 1.0f;$/;" v file: +gamma_linear src/gfx/gfx_gamma_function.h /^ gamma_linear() : m_start(FLT_TO_SCALAR(0.0f)), m_end(FLT_TO_SCALAR(1.0f)) { }$/;" f class:gfx::gamma_linear +gamma_linear src/gfx/gfx_gamma_function.h /^ gamma_linear(scalar s, scalar e) : m_start(s), m_end(e) { }$/;" f class:gfx::gamma_linear +gamma_linear src/gfx/gfx_gamma_function.h /^class gamma_linear$/;" c namespace:gfx +gamma_multiply src/gfx/gfx_gamma_function.h /^ gamma_multiply() : m_mul(FLT_TO_SCALAR(1.0f)) { }$/;" f class:gfx::gamma_multiply +gamma_multiply src/gfx/gfx_gamma_function.h /^ gamma_multiply(scalar v) : m_mul(v) { }$/;" f class:gfx::gamma_multiply +gamma_multiply src/gfx/gfx_gamma_function.h /^class gamma_multiply$/;" c namespace:gfx +gamma_none src/gfx/gfx_gamma_function.h /^class gamma_none$/;" c namespace:gfx +gamma_power src/gfx/gfx_gamma_function.h /^ gamma_power() : m_gamma(FLT_TO_SCALAR(1.0f)) { }$/;" f class:gfx::gamma_power +gamma_power src/gfx/gfx_gamma_function.h /^ gamma_power(scalar g) : m_gamma(g) { }$/;" f class:gfx::gamma_power +gamma_power src/gfx/gfx_gamma_function.h /^class gamma_power$/;" c namespace:gfx +gamma_threshold src/gfx/gfx_gamma_function.h /^ gamma_threshold() : m_threshold(FLT_TO_SCALAR(0.5f)) { }$/;" f class:gfx::gamma_threshold +gamma_threshold src/gfx/gfx_gamma_function.h /^ gamma_threshold(scalar t) : m_threshold(t) { }$/;" f class:gfx::gamma_threshold +gamma_threshold src/gfx/gfx_gamma_function.h /^class gamma_threshold$/;" c namespace:gfx +gasp android/freetype/include/freetype/internal/tttypes.h /^ TT_GaspRec gasp; \/* the `gasp' table *\/$/;" m struct:TT_FaceRec_ +gasp include/freetype/internal/tttypes.h /^ TT_GaspRec gasp; \/* the `gasp' table *\/$/;" m struct:TT_FaceRec_ +gaspFlag android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort gaspFlag;$/;" m struct:TT_GaspRangeRec_ +gaspFlag include/freetype/internal/tttypes.h /^ FT_UShort gaspFlag;$/;" m struct:TT_GaspRangeRec_ +gaspRanges android/freetype/include/freetype/internal/tttypes.h /^ TT_GaspRange gaspRanges;$/;" m struct:TT_Gasp_ +gaspRanges include/freetype/internal/tttypes.h /^ TT_GaspRange gaspRanges;$/;" m struct:TT_Gasp_ +gc demos/platform_gix.c /^static gi_gc_ptr_t gc;$/;" v file: +gd_bytes android/freetype/include/freetype/t1tables.h /^ FT_Int gd_bytes;$/;" m struct:CID_FaceInfoRec_ +gd_bytes include/freetype/t1tables.h /^ FT_Int gd_bytes;$/;" m struct:CID_FaceInfoRec_ +gen_type src/gfx/gfx_rasterizer_scanline.h /^ typedef Gen gen_type;$/;" t class:gfx::gfx_rasterizer_scanline_aa +generalEntities android/expat/lib/xmlparse.c /^ HASH_TABLE generalEntities;$/;" m struct:__anon17 file: +generate src/gfx/gfx_gradient_adapter.h /^ void generate(color_type* span, int x, int y, unsigned int len)$/;" f class:gfx::gfx_span_gradient +generate src/gfx/gfx_span_image_filters.h /^ void generate(color_type* span, int x, int y, unsigned int len)$/;" f class:gfx::gfx_span_image_filter_rgb +generate src/gfx/gfx_span_image_filters.h /^ void generate(color_type* span, int x, int y, unsigned int len)$/;" f class:gfx::gfx_span_image_filter_rgb16 +generate src/gfx/gfx_span_image_filters.h /^ void generate(color_type* span, int x, int y, unsigned int len)$/;" f class:gfx::gfx_span_image_filter_rgb16_nn +generate src/gfx/gfx_span_image_filters.h /^ void generate(color_type* span, int x, int y, unsigned int len)$/;" f class:gfx::gfx_span_image_filter_rgb_nn +generate src/gfx/gfx_span_image_filters.h /^ void generate(color_type* span, int x, int y, unsigned int len)$/;" f class:gfx::gfx_span_image_filter_rgba +generate src/gfx/gfx_span_image_filters.h /^ void generate(color_type* span, int x, int y, unsigned int len)$/;" f class:gfx::gfx_span_image_filter_rgba_nb +generate src/gfx/gfx_span_image_filters.h /^ void generate(color_type* span, int x, int y, unsigned int len)$/;" f class:gfx::gfx_span_image_filter_rgba_nn +generate src/gfx/gfx_span_image_filters.h /^ void generate(color_type* span, int x, int y, unsigned int len)$/;" f class:gfx::gfx_span_image_filter_rgba_nn_nb +generate_hash_secret_salt android/expat/lib/xmlparse.c /^generate_hash_secret_salt(void)$/;" f file: +generate_raster src/picasso_font.cpp /^bool font_adapter::generate_raster(const glyph* g, scalar x, scalar y)$/;" f class:picasso::font_adapter +generator tools/gyp/build/lib/gyp/generator/android.py /^import gyp.generator.make as make # Reuse global functions from make backend.$/;" i +generator tools/gyp/build/lib/gyp/generator/dump_dependency_json.py /^ import gyp.generator.msvs as msvs_generator$/;" i +generator tools/gyp/build/lib/gyp/generator/make.py /^ import gyp.generator.xcode as xcode_generator$/;" i +generator tools/gyp/build/lib/gyp/generator/msvs_test.py /^import gyp.generator.msvs as msvs$/;" i +generator tools/gyp/build/lib/gyp/generator/ninja.py /^ import gyp.generator.msvs as msvs_generator$/;" i +generator tools/gyp/build/lib/gyp/generator/ninja.py /^ import gyp.generator.xcode as xcode_generator$/;" i +generator tools/gyp/build/lib/gyp/generator/ninja_test.py /^import gyp.generator.ninja as ninja$/;" i +generator tools/gyp/pylib/gyp/generator/android.py /^import gyp.generator.make as make # Reuse global functions from make backend.$/;" i +generator tools/gyp/pylib/gyp/generator/dump_dependency_json.py /^ import gyp.generator.msvs as msvs_generator$/;" i +generator tools/gyp/pylib/gyp/generator/make.py /^ import gyp.generator.xcode as xcode_generator$/;" i +generator tools/gyp/pylib/gyp/generator/msvs_test.py /^import gyp.generator.msvs as msvs$/;" i +generator tools/gyp/pylib/gyp/generator/ninja.py /^ import gyp.generator.msvs as msvs_generator$/;" i +generator tools/gyp/pylib/gyp/generator/ninja.py /^ import gyp.generator.xcode as xcode_generator$/;" i +generator tools/gyp/pylib/gyp/generator/ninja_test.py /^import gyp.generator.ninja as ninja$/;" i +generator_additional_non_configuration_keys tools/gyp/build/lib/gyp/generator/android.py /^generator_additional_non_configuration_keys = [$/;" v +generator_additional_non_configuration_keys tools/gyp/build/lib/gyp/generator/make.py /^generator_additional_non_configuration_keys = []$/;" v +generator_additional_non_configuration_keys tools/gyp/build/lib/gyp/generator/msvs.py /^generator_additional_non_configuration_keys = [$/;" v +generator_additional_non_configuration_keys tools/gyp/build/lib/gyp/generator/ninja.py /^generator_additional_non_configuration_keys = []$/;" v +generator_additional_non_configuration_keys tools/gyp/build/lib/gyp/generator/xcode.py /^generator_additional_non_configuration_keys = [$/;" v +generator_additional_non_configuration_keys tools/gyp/pylib/gyp/generator/android.py /^generator_additional_non_configuration_keys = [$/;" v +generator_additional_non_configuration_keys tools/gyp/pylib/gyp/generator/make.py /^generator_additional_non_configuration_keys = []$/;" v +generator_additional_non_configuration_keys tools/gyp/pylib/gyp/generator/msvs.py /^generator_additional_non_configuration_keys = [$/;" v +generator_additional_non_configuration_keys tools/gyp/pylib/gyp/generator/ninja.py /^generator_additional_non_configuration_keys = []$/;" v +generator_additional_non_configuration_keys tools/gyp/pylib/gyp/generator/xcode.py /^generator_additional_non_configuration_keys = [$/;" v +generator_additional_path_sections tools/gyp/build/lib/gyp/generator/android.py /^generator_additional_path_sections = []$/;" v +generator_additional_path_sections tools/gyp/build/lib/gyp/generator/make.py /^generator_additional_path_sections = []$/;" v +generator_additional_path_sections tools/gyp/build/lib/gyp/generator/msvs.py /^generator_additional_path_sections = [$/;" v +generator_additional_path_sections tools/gyp/build/lib/gyp/generator/ninja.py /^generator_additional_path_sections = []$/;" v +generator_additional_path_sections tools/gyp/build/lib/gyp/generator/xcode.py /^generator_additional_path_sections = [$/;" v +generator_additional_path_sections tools/gyp/pylib/gyp/generator/android.py /^generator_additional_path_sections = []$/;" v +generator_additional_path_sections tools/gyp/pylib/gyp/generator/make.py /^generator_additional_path_sections = []$/;" v +generator_additional_path_sections tools/gyp/pylib/gyp/generator/msvs.py /^generator_additional_path_sections = [$/;" v +generator_additional_path_sections tools/gyp/pylib/gyp/generator/ninja.py /^generator_additional_path_sections = []$/;" v +generator_additional_path_sections tools/gyp/pylib/gyp/generator/xcode.py /^generator_additional_path_sections = [$/;" v +generator_default_variables tools/gyp/build/lib/gyp/generator/android.py /^generator_default_variables = {$/;" v +generator_default_variables tools/gyp/build/lib/gyp/generator/dump_dependency_json.py /^generator_default_variables = {$/;" v +generator_default_variables tools/gyp/build/lib/gyp/generator/eclipse.py /^generator_default_variables = {$/;" v +generator_default_variables tools/gyp/build/lib/gyp/generator/gypd.py /^generator_default_variables = {$/;" v +generator_default_variables tools/gyp/build/lib/gyp/generator/gypsh.py /^generator_default_variables = {$/;" v +generator_default_variables tools/gyp/build/lib/gyp/generator/make.py /^generator_default_variables = {$/;" v +generator_default_variables tools/gyp/build/lib/gyp/generator/msvs.py /^generator_default_variables = {$/;" v +generator_default_variables tools/gyp/build/lib/gyp/generator/ninja.py /^generator_default_variables = {$/;" v +generator_default_variables tools/gyp/build/lib/gyp/generator/scons.py /^generator_default_variables = {$/;" v +generator_default_variables tools/gyp/build/lib/gyp/generator/xcode.py /^generator_default_variables = {$/;" v +generator_default_variables tools/gyp/pylib/gyp/generator/android.py /^generator_default_variables = {$/;" v +generator_default_variables tools/gyp/pylib/gyp/generator/dump_dependency_json.py /^generator_default_variables = {$/;" v +generator_default_variables tools/gyp/pylib/gyp/generator/eclipse.py /^generator_default_variables = {$/;" v +generator_default_variables tools/gyp/pylib/gyp/generator/gypd.py /^generator_default_variables = {$/;" v +generator_default_variables tools/gyp/pylib/gyp/generator/gypsh.py /^generator_default_variables = {$/;" v +generator_default_variables tools/gyp/pylib/gyp/generator/make.py /^generator_default_variables = {$/;" v +generator_default_variables tools/gyp/pylib/gyp/generator/msvs.py /^generator_default_variables = {$/;" v +generator_default_variables tools/gyp/pylib/gyp/generator/ninja.py /^generator_default_variables = {$/;" v +generator_default_variables tools/gyp/pylib/gyp/generator/scons.py /^generator_default_variables = {$/;" v +generator_default_variables tools/gyp/pylib/gyp/generator/xcode.py /^generator_default_variables = {$/;" v +generator_extra_sources_for_rules tools/gyp/build/lib/gyp/generator/android.py /^generator_extra_sources_for_rules = []$/;" v +generator_extra_sources_for_rules tools/gyp/build/lib/gyp/generator/make.py /^generator_extra_sources_for_rules = []$/;" v +generator_extra_sources_for_rules tools/gyp/build/lib/gyp/generator/ninja.py /^generator_extra_sources_for_rules = []$/;" v +generator_extra_sources_for_rules tools/gyp/build/lib/gyp/generator/xcode.py /^generator_extra_sources_for_rules = [$/;" v +generator_extra_sources_for_rules tools/gyp/pylib/gyp/generator/android.py /^generator_extra_sources_for_rules = []$/;" v +generator_extra_sources_for_rules tools/gyp/pylib/gyp/generator/make.py /^generator_extra_sources_for_rules = []$/;" v +generator_extra_sources_for_rules tools/gyp/pylib/gyp/generator/ninja.py /^generator_extra_sources_for_rules = []$/;" v +generator_extra_sources_for_rules tools/gyp/pylib/gyp/generator/xcode.py /^generator_extra_sources_for_rules = [$/;" v +generator_handles_variants tools/gyp/build/lib/gyp/generator/scons.py /^generator_handles_variants = True$/;" v +generator_handles_variants tools/gyp/pylib/gyp/generator/scons.py /^generator_handles_variants = True$/;" v +generator_supports_multiple_toolsets tools/gyp/build/lib/gyp/generator/android.py /^generator_supports_multiple_toolsets = True$/;" v +generator_supports_multiple_toolsets tools/gyp/build/lib/gyp/generator/dump_dependency_json.py /^generator_supports_multiple_toolsets = True$/;" v +generator_supports_multiple_toolsets tools/gyp/build/lib/gyp/generator/gypd.py /^generator_supports_multiple_toolsets = True$/;" v +generator_supports_multiple_toolsets tools/gyp/build/lib/gyp/generator/make.py /^generator_supports_multiple_toolsets = True$/;" v +generator_supports_multiple_toolsets tools/gyp/build/lib/gyp/generator/ninja.py /^generator_supports_multiple_toolsets = ($/;" v +generator_supports_multiple_toolsets tools/gyp/pylib/gyp/generator/android.py /^generator_supports_multiple_toolsets = True$/;" v +generator_supports_multiple_toolsets tools/gyp/pylib/gyp/generator/dump_dependency_json.py /^generator_supports_multiple_toolsets = True$/;" v +generator_supports_multiple_toolsets tools/gyp/pylib/gyp/generator/gypd.py /^generator_supports_multiple_toolsets = True$/;" v +generator_supports_multiple_toolsets tools/gyp/pylib/gyp/generator/make.py /^generator_supports_multiple_toolsets = True$/;" v +generator_supports_multiple_toolsets tools/gyp/pylib/gyp/generator/ninja.py /^generator_supports_multiple_toolsets = ($/;" v +generator_wants_absolute_build_file_paths tools/gyp/build/lib/gyp/generator/scons.py /^generator_wants_absolute_build_file_paths = True$/;" v +generator_wants_absolute_build_file_paths tools/gyp/pylib/gyp/generator/scons.py /^generator_wants_absolute_build_file_paths = True$/;" v +generator_wants_sorted_dependencies tools/gyp/build/lib/gyp/generator/make.py /^generator_wants_sorted_dependencies = False$/;" v +generator_wants_sorted_dependencies tools/gyp/pylib/gyp/generator/make.py /^generator_wants_sorted_dependencies = False$/;" v +generator_wants_static_library_dependencies_adjusted tools/gyp/build/lib/gyp/generator/dump_dependency_json.py /^generator_wants_static_library_dependencies_adjusted = False$/;" v +generator_wants_static_library_dependencies_adjusted tools/gyp/build/lib/gyp/generator/eclipse.py /^generator_wants_static_library_dependencies_adjusted = False$/;" v +generator_wants_static_library_dependencies_adjusted tools/gyp/pylib/gyp/generator/dump_dependency_json.py /^generator_wants_static_library_dependencies_adjusted = False$/;" v +generator_wants_static_library_dependencies_adjusted tools/gyp/pylib/gyp/generator/eclipse.py /^generator_wants_static_library_dependencies_adjusted = False$/;" v +generic android/freetype/include/freetype/freetype.h /^ FT_Generic generic; \/* generic pointer for client uses *\/$/;" m struct:FT_SizeRec_ +generic android/freetype/include/freetype/freetype.h /^ FT_Generic generic;$/;" m struct:FT_FaceRec_ +generic android/freetype/include/freetype/freetype.h /^ FT_Generic generic;$/;" m struct:FT_GlyphSlotRec_ +generic android/freetype/include/freetype/internal/ftobjs.h /^ FT_Generic generic;$/;" m struct:FT_LibraryRec_ +generic android/freetype/include/freetype/internal/ftobjs.h /^ FT_Generic generic;$/;" m struct:FT_ModuleRec_ +generic include/freetype/freetype.h /^ FT_Generic generic; \/* generic pointer for client uses *\/$/;" m struct:FT_SizeRec_ +generic include/freetype/freetype.h /^ FT_Generic generic;$/;" m struct:FT_FaceRec_ +generic include/freetype/freetype.h /^ FT_Generic generic;$/;" m struct:FT_GlyphSlotRec_ +generic include/freetype/internal/ftobjs.h /^ FT_Generic generic;$/;" m struct:FT_LibraryRec_ +generic include/freetype/internal/ftobjs.h /^ FT_Generic generic;$/;" m struct:FT_ModuleRec_ +gep0 android/freetype/src/truetype/ttobjs.h /^ FT_UShort gep0;$/;" m struct:TT_GraphicsState_ +gep1 android/freetype/src/truetype/ttobjs.h /^ FT_UShort gep1;$/;" m struct:TT_GraphicsState_ +gep2 android/freetype/src/truetype/ttobjs.h /^ FT_UShort gep2;$/;" m struct:TT_GraphicsState_ +getAttributeId android/expat/lib/xmlparse.c /^getAttributeId(XML_Parser parser, const ENCODING *enc,$/;" f file: +getAtts android/expat/lib/xmltok.h /^ int (PTRCALL *getAtts)(const ENCODING *enc,$/;" m struct:encoding +getAtts android/expat/lib/xmltok_impl.c /^PREFIX(getAtts)(const ENCODING *enc, const char *ptr,$/;" f file: +getContext android/expat/lib/xmlparse.c /^getContext(XML_Parser parser)$/;" f file: +getElementType android/expat/lib/xmlparse.c /^getElementType(XML_Parser parser,$/;" f file: +getEncodingIndex android/expat/lib/xmltok.c /^getEncodingIndex(const char *name)$/;" f file: +get_advances android/freetype/include/freetype/internal/ftdriver.h /^ FT_Face_GetAdvancesFunc get_advances;$/;" m struct:FT_Driver_ClassRec_ +get_advances include/freetype/internal/ftdriver.h /^ FT_Face_GetAdvancesFunc get_advances;$/;" m struct:FT_Driver_ClassRec_ +get_clock demos/timeuse.h /^static inline clocktime_t get_clock()$/;" f +get_clock test/timeuse.h /^static inline clocktime_t get_clock()$/;" f +get_clock_used_ms demos/timeuse.h /^static inline double get_clock_used_ms(LARGE_INTEGER t1, LARGE_INTEGER t2)$/;" f +get_clock_used_ms test/timeuse.h /^static inline double get_clock_used_ms(LARGE_INTEGER t1, LARGE_INTEGER t2)$/;" f +get_close_flag src/include/graphic_base.h /^inline unsigned int get_close_flag(unsigned int c)$/;" f namespace:picasso +get_cmap_info android/freetype/src/sfnt/ttcmap.h /^ TT_CMap_Info_GetFunc get_cmap_info;$/;" m struct:TT_CMap_ClassRec_ +get_color_channel src/gfx/gfx_rendering_buffer.h /^ virtual rgba get_color_channel(void) const { return m_colorkey; }$/;" f class:gfx::gfx_rendering_buffer +get_color_channel src/picasso_rendering_buffer.cpp /^rgba rendering_buffer::get_color_channel(void) const $/;" f class:picasso::rendering_buffer +get_global_hints android/freetype/include/freetype/internal/autohint.h /^ FT_AutoHinter_GlobalGetFunc get_global_hints;$/;" m struct:FT_AutoHinter_ServiceRec_ +get_global_hints include/freetype/internal/autohint.h /^ FT_AutoHinter_GlobalGetFunc get_global_hints;$/;" m struct:FT_AutoHinter_ServiceRec_ +get_globals_funcs android/freetype/include/freetype/internal/pshints.h /^ PSH_Globals_Funcs (*get_globals_funcs)( FT_Module module );$/;" m struct:PSHinter_Interface_ +get_globals_funcs include/freetype/internal/pshints.h /^ PSH_Globals_Funcs (*get_globals_funcs)( FT_Module module );$/;" m struct:PSHinter_Interface_ +get_glyph src/picasso_font.cpp /^const glyph* font_adapter::get_glyph(unsigned int code)$/;" f class:picasso::font_adapter +get_glyph_cbox android/freetype/include/freetype/ftrender.h /^ FT_Renderer_GetCBoxFunc get_glyph_cbox;$/;" m struct:FT_Renderer_Class_ +get_glyph_cbox include/freetype/ftrender.h /^ FT_Renderer_GetCBoxFunc get_glyph_cbox;$/;" m struct:FT_Renderer_Class_ +get_glyph_data android/freetype/include/freetype/ftincrem.h /^ FT_Incremental_GetGlyphDataFunc get_glyph_data;$/;" m struct:FT_Incremental_FuncsRec_ +get_glyph_data include/freetype/ftincrem.h /^ FT_Incremental_GetGlyphDataFunc get_glyph_data;$/;" m struct:FT_Incremental_FuncsRec_ +get_glyph_metrics android/freetype/include/freetype/ftincrem.h /^ FT_Incremental_GetGlyphMetricsFunc get_glyph_metrics;$/;" m struct:FT_Incremental_FuncsRec_ +get_glyph_metrics include/freetype/ftincrem.h /^ FT_Incremental_GetGlyphMetricsFunc get_glyph_metrics;$/;" m struct:FT_Incremental_FuncsRec_ +get_guid tools/gyp/build/lib/gyp/MSVSNew.py /^ def get_guid(self):$/;" m class:MSVSFolder +get_guid tools/gyp/build/lib/gyp/MSVSNew.py /^ def get_guid(self):$/;" m class:MSVSProject +get_guid tools/gyp/pylib/gyp/MSVSNew.py /^ def get_guid(self):$/;" m class:MSVSFolder +get_guid tools/gyp/pylib/gyp/MSVSNew.py /^ def get_guid(self):$/;" m class:MSVSProject +get_index android/freetype/include/freetype/internal/psaux.h /^ (*get_index)( const char* name,$/;" m struct:AFM_ParserRec_ +get_index include/freetype/internal/psaux.h /^ (*get_index)( const char* name,$/;" m struct:AFM_ParserRec_ +get_inner_join src/include/convert.h /^ inner_join get_inner_join(void) const { return m_inner_join; }$/;" f class:picasso::conv_stroke +get_inner_miter_limit src/include/convert.h /^ scalar get_inner_miter_limit(void) const { return m_inner_miter_limit; }$/;" f class:picasso::conv_stroke +get_interface android/freetype/include/freetype/ftmodapi.h /^ FT_Module_Requester get_interface;$/;" m struct:FT_Module_Class_ +get_interface android/freetype/include/freetype/internal/sfnt.h /^ FT_Module_Requester get_interface;$/;" m struct:SFNT_Interface_ +get_interface include/freetype/ftmodapi.h /^ FT_Module_Requester get_interface;$/;" m struct:FT_Module_Class_ +get_interface include/freetype/internal/sfnt.h /^ FT_Module_Requester get_interface;$/;" m struct:SFNT_Interface_ +get_kerning android/freetype/include/freetype/internal/ftdriver.h /^ FT_Face_GetKerningFunc get_kerning;$/;" m struct:FT_Driver_ClassRec_ +get_kerning android/freetype/include/freetype/internal/sfnt.h /^ TT_Face_GetKerningFunc get_kerning;$/;" m struct:SFNT_Interface_ +get_kerning include/freetype/internal/ftdriver.h /^ FT_Face_GetKerningFunc get_kerning;$/;" m struct:FT_Driver_ClassRec_ +get_kerning include/freetype/internal/sfnt.h /^ TT_Face_GetKerningFunc get_kerning;$/;" m struct:SFNT_Interface_ +get_line_cap src/include/convert.h /^ line_cap get_line_cap(void) const { return m_line_cap; }$/;" f class:picasso::conv_stroke +get_line_join src/include/convert.h /^ line_join get_line_join(void) const { return m_line_join; }$/;" f class:picasso::conv_stroke +get_metrics android/freetype/include/freetype/internal/sfnt.h /^ TT_Get_Metrics_Func get_metrics;$/;" m struct:SFNT_Interface_ +get_metrics include/freetype/internal/sfnt.h /^ TT_Get_Metrics_Func get_metrics;$/;" m struct:SFNT_Interface_ +get_miter_limit src/include/convert.h /^ scalar get_miter_limit(void) const { return m_miter_limit; }$/;" f class:picasso::conv_stroke +get_orientation src/include/graphic_base.h /^inline unsigned int get_orientation(unsigned int c)$/;" f namespace:picasso +get_painter_from_format src/picasso_canvas.cpp /^static inline painter* get_painter_from_format(ps_color_format fmt)$/;" f namespace:picasso +get_psname android/freetype/include/freetype/internal/sfnt.h /^ TT_Get_PS_Name_Func get_psname;$/;" m struct:SFNT_Interface_ +get_psname include/freetype/internal/sfnt.h /^ TT_Get_PS_Name_Func get_psname;$/;" m struct:SFNT_Interface_ +get_sfnt_table android/freetype/src/sfnt/sfdriver.c /^ get_sfnt_table( TT_Face face,$/;" f file: +get_shape src/include/graphic_path.h /^ shape_type get_shape(void) const { return (shape_type)m_shape; }$/;" f class:picasso::graphic_path +get_storage src/picasso_font.h /^ void* get_storage(void) { return storage; }$/;" f class:picasso::mono_storage +get_string tools/gyp/tools/pretty_vcproj.py /^ def get_string(node):$/;" f function:CmpNode.__call__ +get_system_device src/core/device.cpp /^device* get_system_device(void)$/;" f namespace:picasso +get_t1_funcs android/freetype/include/freetype/internal/pshints.h /^ T1_Hints_Funcs (*get_t1_funcs) ( FT_Module module );$/;" m struct:PSHinter_Interface_ +get_t1_funcs include/freetype/internal/pshints.h /^ T1_Hints_Funcs (*get_t1_funcs) ( FT_Module module );$/;" m struct:PSHinter_Interface_ +get_t2_funcs android/freetype/include/freetype/internal/pshints.h /^ T2_Hints_Funcs (*get_t2_funcs) ( FT_Module module );$/;" m struct:PSHinter_Interface_ +get_t2_funcs include/freetype/internal/pshints.h /^ T2_Hints_Funcs (*get_t2_funcs) ( FT_Module module );$/;" m struct:PSHinter_Interface_ +get_time demos/timeuse.h /^static inline suseconds_t get_time()$/;" f +get_time test/timeuse.h /^static inline suseconds_t get_time()$/;" f +get_vertex src/include/convert.h /^ virtual unsigned int get_vertex(scalar* x, scalar* y)$/;" f class:picasso::conv_dash +get_vertex src/include/convert.h /^ virtual unsigned int get_vertex(scalar* x, scalar* y)$/;" f class:picasso::conv_stroke +get_virtual_key demos/platform_gix.c /^static int get_virtual_key(int pk)$/;" f file: +get_virtual_key demos/platform_gtk2.c /^static int get_virtual_key(int pk)$/;" f file: +get_virtual_key demos/platform_minigui.c /^static int get_virtual_key(DWORD pk)$/;" f file: +get_virtual_key demos/platform_qt4.cpp /^static int get_virtual_key(int pk)$/;" f file: +get_width src/include/convert.h /^ scalar get_width(void) const { return m_width * FLT_TO_SCALAR(2.0f); }$/;" f class:picasso::conv_stroke +gethostname tools/gyp/build/lib/gyp/MSVSUserFile.py /^import socket # for gethostname$/;" i +gethostname tools/gyp/pylib/gyp/MSVSUserFile.py /^import socket # for gethostname$/;" i +getptr src/include/refptr.h /^ T* getptr() const$/;" f class:picasso::refptr +gfmt demos/platform_gix.c /^static unsigned long gfmt; $/;" v file: +gfx src/gfx/gfx_blur.cpp /^namespace gfx {$/;" n file: +gfx src/gfx/gfx_blur.h /^namespace gfx {$/;" n +gfx src/gfx/gfx_device.cpp /^namespace gfx {$/;" n file: +gfx src/gfx/gfx_device.h /^namespace gfx {$/;" n +gfx src/gfx/gfx_font_adapter.h /^namespace gfx {$/;" n +gfx src/gfx/gfx_gamma_function.h /^namespace gfx {$/;" n +gfx src/gfx/gfx_gradient_adapter.cpp /^namespace gfx {$/;" n file: +gfx src/gfx/gfx_gradient_adapter.h /^namespace gfx {$/;" n +gfx src/gfx/gfx_image_accessors.h /^namespace gfx {$/;" n +gfx src/gfx/gfx_image_filters.cpp /^namespace gfx {$/;" n file: +gfx src/gfx/gfx_image_filters.h /^namespace gfx {$/;" n +gfx src/gfx/gfx_line_generator.h /^namespace gfx {$/;" n +gfx src/gfx/gfx_mask_layer.h /^namespace gfx {$/;" n +gfx src/gfx/gfx_math.h /^namespace gfx {$/;" n +gfx src/gfx/gfx_painter.h /^namespace gfx {$/;" n +gfx src/gfx/gfx_painter_helper.h /^namespace gfx {$/;" n +gfx src/gfx/gfx_pixfmt_rgb.h /^namespace gfx {$/;" n +gfx src/gfx/gfx_pixfmt_rgb16.h /^namespace gfx {$/;" n +gfx src/gfx/gfx_pixfmt_rgba.h /^namespace gfx {$/;" n +gfx src/gfx/gfx_pixfmt_wrapper.h /^namespace gfx {$/;" n +gfx src/gfx/gfx_raster_adapter.cpp /^namespace gfx {$/;" n file: +gfx src/gfx/gfx_raster_adapter.h /^namespace gfx {$/;" n +gfx src/gfx/gfx_rasterizer_cell.h /^namespace gfx {$/;" n +gfx src/gfx/gfx_rasterizer_scanline.h /^namespace gfx {$/;" n +gfx src/gfx/gfx_renderer.h /^namespace gfx {$/;" n +gfx src/gfx/gfx_rendering_buffer.cpp /^namespace gfx {$/;" n file: +gfx src/gfx/gfx_rendering_buffer.h /^namespace gfx {$/;" n +gfx src/gfx/gfx_scanline.h /^namespace gfx {$/;" n +gfx src/gfx/gfx_scanline_renderer.h /^namespace gfx {$/;" n +gfx src/gfx/gfx_scanline_storage.h /^namespace gfx {$/;" n +gfx src/gfx/gfx_span_generator.h /^namespace gfx {$/;" n +gfx src/gfx/gfx_span_image_filters.h /^namespace gfx {$/;" n +gfx src/gfx/gfx_sqrt_tables.cpp /^namespace gfx {$/;" n file: +gfx src/gfx/gfx_trans_affine.h /^namespace gfx {$/;" n +gfx_alpha_mask_u8 src/gfx/gfx_mask_layer.h /^ explicit gfx_alpha_mask_u8(gfx_rendering_buffer& buffer)$/;" f class:gfx::gfx_alpha_mask_u8 +gfx_alpha_mask_u8 src/gfx/gfx_mask_layer.h /^ gfx_alpha_mask_u8()$/;" f class:gfx::gfx_alpha_mask_u8 +gfx_alpha_mask_u8 src/gfx/gfx_mask_layer.h /^class gfx_alpha_mask_u8$/;" c namespace:gfx +gfx_dda2_line_interpolator src/gfx/gfx_line_generator.h /^ gfx_dda2_line_interpolator()$/;" f class:gfx::gfx_dda2_line_interpolator +gfx_dda2_line_interpolator src/gfx/gfx_line_generator.h /^ gfx_dda2_line_interpolator(int y, int count)$/;" f class:gfx::gfx_dda2_line_interpolator +gfx_dda2_line_interpolator src/gfx/gfx_line_generator.h /^ gfx_dda2_line_interpolator(int y1, int y2, int count)$/;" f class:gfx::gfx_dda2_line_interpolator +gfx_dda2_line_interpolator src/gfx/gfx_line_generator.h /^ gfx_dda2_line_interpolator(int y1, int y2, int count, int)$/;" f class:gfx::gfx_dda2_line_interpolator +gfx_dda2_line_interpolator src/gfx/gfx_line_generator.h /^class gfx_dda2_line_interpolator$/;" c namespace:gfx +gfx_dda_line_interpolator src/gfx/gfx_line_generator.h /^ gfx_dda_line_interpolator()$/;" f class:gfx::gfx_dda_line_interpolator +gfx_dda_line_interpolator src/gfx/gfx_line_generator.h /^ gfx_dda_line_interpolator(int y1, int y2, unsigned int count)$/;" f class:gfx::gfx_dda_line_interpolator +gfx_dda_line_interpolator src/gfx/gfx_line_generator.h /^class gfx_dda_line_interpolator$/;" c namespace:gfx +gfx_device src/gfx/gfx_device.cpp /^gfx_device::gfx_device()$/;" f class:gfx::gfx_device +gfx_device src/gfx/gfx_device.h /^class gfx_device : public device$/;" c namespace:gfx +gfx_font_adapter src/gfx/gfx_font_adapter.h /^class gfx_font_adapter : public abstract_font_adapter$/;" c namespace:gfx +gfx_gradient src/gfx/gfx_gradient_adapter.cpp /^ gfx_gradient()$/;" f class:gfx::gfx_gradient +gfx_gradient src/gfx/gfx_gradient_adapter.cpp /^class gfx_gradient : public gfx_gradient_wrapper$/;" c namespace:gfx file: +gfx_gradient_adapter src/gfx/gfx_gradient_adapter.h /^ gfx_gradient_adapter()$/;" f class:gfx::gfx_gradient_adapter +gfx_gradient_adapter src/gfx/gfx_gradient_adapter.h /^class gfx_gradient_adapter : public abstract_gradient_adapter$/;" c namespace:gfx +gfx_gradient_table src/gfx/gfx_gradient_adapter.h /^ gfx_gradient_table()$/;" f class:gfx::gfx_gradient_table +gfx_gradient_table src/gfx/gfx_gradient_adapter.h /^class gfx_gradient_table$/;" c namespace:gfx +gfx_gradient_wrapper src/gfx/gfx_gradient_adapter.h /^ gfx_gradient_wrapper() { }$/;" f class:gfx::gfx_gradient_wrapper +gfx_gradient_wrapper src/gfx/gfx_gradient_adapter.h /^class gfx_gradient_wrapper $/;" c namespace:gfx +gfx_mask_layer src/gfx/gfx_mask_layer.h /^ gfx_mask_layer(byte* buf, unsigned int width, unsigned int height, int stride) $/;" f class:gfx::gfx_mask_layer +gfx_mask_layer src/gfx/gfx_mask_layer.h /^class gfx_mask_layer : public abstract_mask_layer$/;" c namespace:gfx +gfx_painter src/gfx/gfx_painter.h /^ gfx_painter() $/;" f class:gfx::gfx_painter +gfx_painter src/gfx/gfx_painter.h /^class gfx_painter : public abstract_painter$/;" c namespace:gfx +gfx_pixfmt_amask_adaptor src/gfx/gfx_mask_layer.h /^ gfx_pixfmt_amask_adaptor(pixfmt_type& pixfmt, const amask_type& mask)$/;" f class:gfx::gfx_pixfmt_amask_adaptor +gfx_pixfmt_amask_adaptor src/gfx/gfx_mask_layer.h /^class gfx_pixfmt_amask_adaptor$/;" c namespace:gfx +gfx_pixfmt_wrapper src/gfx/gfx_pixfmt_wrapper.h /^ explicit gfx_pixfmt_wrapper(gfx_rendering_buffer& rb)$/;" f class:gfx::gfx_pixfmt_wrapper +gfx_pixfmt_wrapper src/gfx/gfx_pixfmt_wrapper.h /^ gfx_pixfmt_wrapper()$/;" f class:gfx::gfx_pixfmt_wrapper +gfx_pixfmt_wrapper src/gfx/gfx_pixfmt_wrapper.h /^class gfx_pixfmt_wrapper$/;" c namespace:gfx +gfx_raster_adapter src/gfx/gfx_raster_adapter.cpp /^gfx_raster_adapter::gfx_raster_adapter()$/;" f class:gfx::gfx_raster_adapter +gfx_raster_adapter src/gfx/gfx_raster_adapter.h /^class gfx_raster_adapter : public abstract_raster_adapter$/;" c namespace:gfx +gfx_raster_adapter_impl src/gfx/gfx_raster_adapter.cpp /^ gfx_raster_adapter_impl()$/;" f class:gfx::gfx_raster_adapter_impl +gfx_raster_adapter_impl src/gfx/gfx_raster_adapter.cpp /^class gfx_raster_adapter_impl$/;" c namespace:gfx file: +gfx_rasterizer_cells_aa src/gfx/gfx_rasterizer_cell.h /^ gfx_rasterizer_cells_aa()$/;" f class:gfx::gfx_rasterizer_cells_aa +gfx_rasterizer_cells_aa src/gfx/gfx_rasterizer_cell.h /^class gfx_rasterizer_cells_aa$/;" c namespace:gfx +gfx_rasterizer_scanline_aa src/gfx/gfx_rasterizer_scanline.h /^ gfx_rasterizer_scanline_aa()$/;" f class:gfx::gfx_rasterizer_scanline_aa +gfx_rasterizer_scanline_aa src/gfx/gfx_rasterizer_scanline.h /^class gfx_rasterizer_scanline_aa$/;" c namespace:gfx +gfx_render_scanlines src/gfx/gfx_scanline_renderer.h /^void gfx_render_scanlines(Rasterizer& ras, Scanline& sl, Renderer& ren)$/;" f namespace:gfx +gfx_render_scanlines_aa src/gfx/gfx_scanline_renderer.h /^void gfx_render_scanlines_aa(Rasterizer& ras, Scanline& sl, Renderer& ren, $/;" f namespace:gfx +gfx_renderer src/gfx/gfx_renderer.h /^ explicit gfx_renderer(pixfmt_type& fmt)$/;" f class:gfx::gfx_renderer +gfx_renderer src/gfx/gfx_renderer.h /^ gfx_renderer()$/;" f class:gfx::gfx_renderer +gfx_renderer src/gfx/gfx_renderer.h /^class gfx_renderer$/;" c namespace:gfx +gfx_renderer_scanline_aa_solid src/gfx/gfx_scanline_renderer.h /^ explicit gfx_renderer_scanline_aa_solid(ren_type& ren)$/;" f class:gfx::gfx_renderer_scanline_aa_solid +gfx_renderer_scanline_aa_solid src/gfx/gfx_scanline_renderer.h /^ gfx_renderer_scanline_aa_solid()$/;" f class:gfx::gfx_renderer_scanline_aa_solid +gfx_renderer_scanline_aa_solid src/gfx/gfx_scanline_renderer.h /^class gfx_renderer_scanline_aa_solid$/;" c namespace:gfx +gfx_renderer_scanline_bin_solid src/gfx/gfx_scanline_renderer.h /^ explicit gfx_renderer_scanline_bin_solid(ren_type& ren)$/;" f class:gfx::gfx_renderer_scanline_bin_solid +gfx_renderer_scanline_bin_solid src/gfx/gfx_scanline_renderer.h /^ gfx_renderer_scanline_bin_solid()$/;" f class:gfx::gfx_renderer_scanline_bin_solid +gfx_renderer_scanline_bin_solid src/gfx/gfx_scanline_renderer.h /^class gfx_renderer_scanline_bin_solid$/;" c namespace:gfx +gfx_rendering_buffer src/gfx/gfx_rendering_buffer.cpp /^gfx_rendering_buffer::gfx_rendering_buffer()$/;" f class:gfx::gfx_rendering_buffer +gfx_rendering_buffer src/gfx/gfx_rendering_buffer.cpp /^gfx_rendering_buffer::gfx_rendering_buffer(byte* ptr, unsigned int width, unsigned int height, int stride)$/;" f class:gfx::gfx_rendering_buffer +gfx_rendering_buffer src/gfx/gfx_rendering_buffer.h /^class gfx_rendering_buffer : public abstract_rendering_buffer$/;" c namespace:gfx +gfx_scanline_bin src/gfx/gfx_scanline.h /^ gfx_scanline_bin()$/;" f class:gfx::gfx_scanline_bin +gfx_scanline_bin src/gfx/gfx_scanline.h /^class gfx_scanline_bin$/;" c namespace:gfx +gfx_scanline_cell_storage src/gfx/gfx_scanline_storage.h /^ gfx_scanline_cell_storage()$/;" f class:gfx::gfx_scanline_cell_storage +gfx_scanline_cell_storage src/gfx/gfx_scanline_storage.h /^ gfx_scanline_cell_storage(const gfx_scanline_cell_storage& v)$/;" f class:gfx::gfx_scanline_cell_storage +gfx_scanline_cell_storage src/gfx/gfx_scanline_storage.h /^class gfx_scanline_cell_storage$/;" c namespace:gfx +gfx_scanline_p8 src/gfx/gfx_scanline.h /^ gfx_scanline_p8()$/;" f class:gfx::gfx_scanline_p8 +gfx_scanline_p8 src/gfx/gfx_scanline.h /^class gfx_scanline_p8$/;" c namespace:gfx +gfx_scanline_storage_aa src/gfx/gfx_scanline_storage.h /^ gfx_scanline_storage_aa()$/;" f class:gfx::gfx_scanline_storage_aa +gfx_scanline_storage_aa src/gfx/gfx_scanline_storage.h /^class gfx_scanline_storage_aa$/;" c namespace:gfx +gfx_scanline_storage_aa_u8 src/gfx/gfx_scanline_storage.h /^typedef gfx_scanline_storage_aa gfx_scanline_storage_aa_u8;$/;" t namespace:gfx +gfx_scanline_storage_bin src/gfx/gfx_scanline_storage.h /^ gfx_scanline_storage_bin()$/;" f class:gfx::gfx_scanline_storage_bin +gfx_scanline_storage_bin src/gfx/gfx_scanline_storage.h /^class gfx_scanline_storage_bin$/;" c namespace:gfx +gfx_scanline_u8 src/gfx/gfx_scanline.h /^ gfx_scanline_u8()$/;" f class:gfx::gfx_scanline_u8 +gfx_scanline_u8 src/gfx/gfx_scanline.h /^class gfx_scanline_u8$/;" c namespace:gfx +gfx_serialized_scanlines_adaptor_aa src/gfx/gfx_scanline_storage.h /^ gfx_serialized_scanlines_adaptor_aa()$/;" f class:gfx::gfx_serialized_scanlines_adaptor_aa +gfx_serialized_scanlines_adaptor_aa src/gfx/gfx_scanline_storage.h /^ gfx_serialized_scanlines_adaptor_aa(const uint8_t* data,$/;" f class:gfx::gfx_serialized_scanlines_adaptor_aa +gfx_serialized_scanlines_adaptor_aa src/gfx/gfx_scanline_storage.h /^class gfx_serialized_scanlines_adaptor_aa$/;" c namespace:gfx +gfx_serialized_scanlines_adaptor_aa_u8 src/gfx/gfx_scanline_storage.h /^typedef gfx_serialized_scanlines_adaptor_aa gfx_serialized_scanlines_adaptor_aa_u8;$/;" t namespace:gfx +gfx_serialized_scanlines_adaptor_bin src/gfx/gfx_scanline_storage.h /^ gfx_serialized_scanlines_adaptor_bin()$/;" f class:gfx::gfx_serialized_scanlines_adaptor_bin +gfx_serialized_scanlines_adaptor_bin src/gfx/gfx_scanline_storage.h /^ gfx_serialized_scanlines_adaptor_bin(const uint8_t* data,$/;" f class:gfx::gfx_serialized_scanlines_adaptor_bin +gfx_serialized_scanlines_adaptor_bin src/gfx/gfx_scanline_storage.h /^class gfx_serialized_scanlines_adaptor_bin$/;" c namespace:gfx +gfx_span_allocator src/gfx/gfx_span_generator.h /^class gfx_span_allocator$/;" c namespace:gfx +gfx_span_gradient src/gfx/gfx_gradient_adapter.h /^ gfx_span_gradient(interpolator_type& inter, const gradient_type& gradient_function,$/;" f class:gfx::gfx_span_gradient +gfx_span_gradient src/gfx/gfx_gradient_adapter.h /^class gfx_span_gradient$/;" c namespace:gfx +gfx_span_image_filter src/gfx/gfx_span_image_filters.h /^ explicit gfx_span_image_filter(source_type& src,$/;" f class:gfx::gfx_span_image_filter +gfx_span_image_filter src/gfx/gfx_span_image_filters.h /^class gfx_span_image_filter$/;" c namespace:gfx +gfx_span_image_filter_rgb src/gfx/gfx_span_image_filters.h /^ explicit gfx_span_image_filter_rgb(source_type& src, $/;" f class:gfx::gfx_span_image_filter_rgb +gfx_span_image_filter_rgb src/gfx/gfx_span_image_filters.h /^class gfx_span_image_filter_rgb : public gfx_span_image_filter$/;" c namespace:gfx +gfx_span_image_filter_rgb16 src/gfx/gfx_span_image_filters.h /^ explicit gfx_span_image_filter_rgb16(source_type& src,$/;" f class:gfx::gfx_span_image_filter_rgb16 +gfx_span_image_filter_rgb16 src/gfx/gfx_span_image_filters.h /^class gfx_span_image_filter_rgb16 : public gfx_span_image_filter$/;" c namespace:gfx +gfx_span_image_filter_rgb16_nn src/gfx/gfx_span_image_filters.h /^ explicit gfx_span_image_filter_rgb16_nn(source_type& src, interpolator_type& inter)$/;" f class:gfx::gfx_span_image_filter_rgb16_nn +gfx_span_image_filter_rgb16_nn src/gfx/gfx_span_image_filters.h /^class gfx_span_image_filter_rgb16_nn : public gfx_span_image_filter$/;" c namespace:gfx +gfx_span_image_filter_rgb_nn src/gfx/gfx_span_image_filters.h /^ explicit gfx_span_image_filter_rgb_nn(source_type& src, interpolator_type& inter)$/;" f class:gfx::gfx_span_image_filter_rgb_nn +gfx_span_image_filter_rgb_nn src/gfx/gfx_span_image_filters.h /^class gfx_span_image_filter_rgb_nn : public gfx_span_image_filter$/;" c namespace:gfx +gfx_span_image_filter_rgba src/gfx/gfx_span_image_filters.h /^ explicit gfx_span_image_filter_rgba(source_type& src, $/;" f class:gfx::gfx_span_image_filter_rgba +gfx_span_image_filter_rgba src/gfx/gfx_span_image_filters.h /^class gfx_span_image_filter_rgba : public gfx_span_image_filter$/;" c namespace:gfx +gfx_span_image_filter_rgba_nb src/gfx/gfx_span_image_filters.h /^ explicit gfx_span_image_filter_rgba_nb(source_type& src, $/;" f class:gfx::gfx_span_image_filter_rgba_nb +gfx_span_image_filter_rgba_nb src/gfx/gfx_span_image_filters.h /^class gfx_span_image_filter_rgba_nb : public gfx_span_image_filter$/;" c namespace:gfx +gfx_span_image_filter_rgba_nn src/gfx/gfx_span_image_filters.h /^ explicit gfx_span_image_filter_rgba_nn(source_type& src, interpolator_type& inter)$/;" f class:gfx::gfx_span_image_filter_rgba_nn +gfx_span_image_filter_rgba_nn src/gfx/gfx_span_image_filters.h /^class gfx_span_image_filter_rgba_nn : public gfx_span_image_filter$/;" c namespace:gfx +gfx_span_image_filter_rgba_nn_nb src/gfx/gfx_span_image_filters.h /^ explicit gfx_span_image_filter_rgba_nn_nb(source_type& src, interpolator_type& inter)$/;" f class:gfx::gfx_span_image_filter_rgba_nn_nb +gfx_span_image_filter_rgba_nn_nb src/gfx/gfx_span_image_filters.h /^class gfx_span_image_filter_rgba_nn_nb : public gfx_span_image_filter$/;" c namespace:gfx +gfx_span_interpolator_linear src/gfx/gfx_span_generator.h /^ gfx_span_interpolator_linear(const gfx_trans_affine& trans)$/;" f class:gfx::gfx_span_interpolator_linear +gfx_span_interpolator_linear src/gfx/gfx_span_generator.h /^class gfx_span_interpolator_linear$/;" c namespace:gfx +gfx_trans_affine src/gfx/gfx_trans_affine.h /^ gfx_trans_affine()$/;" f class:gfx::gfx_trans_affine +gfx_trans_affine src/gfx/gfx_trans_affine.h /^ gfx_trans_affine(scalar sx, scalar shy, scalar shx, scalar sy, scalar tx, scalar ty)$/;" f class:gfx::gfx_trans_affine +gfx_trans_affine src/gfx/gfx_trans_affine.h /^class gfx_trans_affine : public abstract_trans_affine$/;" c namespace:gfx +gfx_trans_affine_rotation src/gfx/gfx_trans_affine.h /^ gfx_trans_affine_rotation(scalar a)$/;" f class:gfx::gfx_trans_affine_rotation +gfx_trans_affine_rotation src/gfx/gfx_trans_affine.h /^class gfx_trans_affine_rotation : public gfx_trans_affine$/;" c namespace:gfx +gfx_trans_affine_scaling src/gfx/gfx_trans_affine.h /^ gfx_trans_affine_scaling(scalar s)$/;" f class:gfx::gfx_trans_affine_scaling +gfx_trans_affine_scaling src/gfx/gfx_trans_affine.h /^ gfx_trans_affine_scaling(scalar x, scalar y)$/;" f class:gfx::gfx_trans_affine_scaling +gfx_trans_affine_scaling src/gfx/gfx_trans_affine.h /^class gfx_trans_affine_scaling : public gfx_trans_affine$/;" c namespace:gfx +gfx_trans_affine_skewing src/gfx/gfx_trans_affine.h /^ gfx_trans_affine_skewing(scalar x, scalar y)$/;" f class:gfx::gfx_trans_affine_skewing +gfx_trans_affine_skewing src/gfx/gfx_trans_affine.h /^class gfx_trans_affine_skewing : public gfx_trans_affine$/;" c namespace:gfx +gfx_trans_affine_translation src/gfx/gfx_trans_affine.h /^ gfx_trans_affine_translation(scalar x, scalar y)$/;" f class:gfx::gfx_trans_affine_translation +gfx_trans_affine_translation src/gfx/gfx_trans_affine.h /^class gfx_trans_affine_translation : public gfx_trans_affine$/;" c namespace:gfx +gids android/freetype/src/cff/cffcmap.h /^ FT_UShort* gids; \/* up to 256 elements *\/$/;" m struct:CFF_CMapStdRec_ +glassPath demos/clock.c /^static ps_path* glassPath;$/;" v file: +gloader android/freetype/include/freetype/internal/tttypes.h /^ FT_GlyphLoader gloader;$/;" m struct:TT_LoaderRec_ +gloader android/freetype/src/autofit/afloader.h /^ FT_GlyphLoader gloader; \/* glyph loader *\/$/;" m struct:AF_LoaderRec_ +gloader include/freetype/internal/tttypes.h /^ FT_GlyphLoader gloader;$/;" m struct:TT_LoaderRec_ +global tools/gyp/build/lib/gyp/generator/android.py /^import gyp.generator.make as make # Reuse global functions from make backend.$/;" i +global tools/gyp/pylib/gyp/generator/android.py /^import gyp.generator.make as make # Reuse global functions from make backend.$/;" i +globalCoordCount android/freetype/src/truetype/ttgxvar.c /^ FT_UShort globalCoordCount;$/;" m struct:GX_GVar_Head_ file: +global_status src/picasso_api.cpp /^ps_status global_status = STATUS_SUCCEED;$/;" v +global_subrs android/freetype/src/cff/cfftypes.h /^ FT_Byte** global_subrs;$/;" m struct:CFF_FontRec_ +global_subrs_index android/freetype/src/cff/cfftypes.h /^ CFF_IndexRec global_subrs_index;$/;" m struct:CFF_FontRec_ +globals android/freetype/src/autofit/afglobal.h /^ af_face_globals_free( AF_FaceGlobals globals );$/;" v +globals android/freetype/src/autofit/afloader.h /^ AF_FaceGlobals globals; \/* current face globals *\/$/;" m struct:AF_LoaderRec_ +globals android/freetype/src/cff/cffgload.h /^ FT_Byte** globals;$/;" m struct:CFF_Decoder_ +globals android/freetype/src/pshinter/pshalgo.h /^ PSH_Globals globals;$/;" m struct:PSH_GlyphRec_ +globals_bias android/freetype/src/cff/cffgload.h /^ FT_Int globals_bias;$/;" m struct:CFF_Decoder_ +globals_funcs android/freetype/src/pshinter/pshmod.c /^ PSH_Globals_FuncsRec globals_funcs;$/;" m struct:PS_Hinter_Module_Rec_ file: +glyf_len android/freetype/include/freetype/internal/tttypes.h /^ FT_ULong glyf_len;$/;" m struct:TT_FaceRec_ +glyf_len include/freetype/internal/tttypes.h /^ FT_ULong glyf_len;$/;" m struct:TT_FaceRec_ +glyf_offset android/freetype/include/freetype/internal/tttypes.h /^ FT_ULong glyf_offset;$/;" m struct:TT_LoaderRec_ +glyf_offset include/freetype/internal/tttypes.h /^ FT_ULong glyf_offset;$/;" m struct:TT_LoaderRec_ +glyph android/freetype/include/freetype/freetype.h /^ FT_GlyphSlot glyph;$/;" m struct:FT_FaceRec_ +glyph android/freetype/include/freetype/ftglyph.h /^ FT_Done_Glyph( FT_Glyph glyph );$/;" v +glyph android/freetype/include/freetype/internal/psaux.h /^ FT_GlyphSlot glyph;$/;" m struct:T1_BuilderRec_ +glyph android/freetype/include/freetype/internal/tttypes.h /^ FT_GlyphSlot glyph;$/;" m struct:TT_LoaderRec_ +glyph android/freetype/src/cff/cffgload.h /^ CFF_GlyphSlot glyph;$/;" m struct:CFF_Builder_ +glyph include/freetype/freetype.h /^ FT_GlyphSlot glyph;$/;" m struct:FT_FaceRec_ +glyph include/freetype/ftglyph.h /^ FT_Done_Glyph( FT_Glyph glyph );$/;" v +glyph include/freetype/internal/psaux.h /^ FT_GlyphSlot glyph;$/;" m struct:T1_BuilderRec_ +glyph include/freetype/internal/tttypes.h /^ FT_GlyphSlot glyph;$/;" m struct:TT_LoaderRec_ +glyph include/picasso.h /^ void* glyph;$/;" m struct:_ps_glyph +glyph src/include/graphic_base.h /^} glyph;$/;" t namespace:picasso typeref:struct:picasso::_glyph +glyphCount android/freetype/src/truetype/ttgxvar.c /^ FT_UShort glyphCount;$/;" m struct:GX_GVar_Head_ file: +glyphIns android/freetype/src/truetype/ttinterp.h /^ FT_Byte* glyphIns; \/* glyph instructions buffer *\/$/;" m struct:TT_ExecContextRec_ +glyphSize android/freetype/src/truetype/ttinterp.h /^ FT_UInt glyphSize; \/* glyph instructions buffer size *\/$/;" m struct:TT_ExecContextRec_ +glyph_bbox android/freetype/include/freetype/ftrender.h /^ FT_Glyph_GetBBoxFunc glyph_bbox;$/;" m struct:FT_Glyph_Class_ +glyph_bbox include/freetype/ftrender.h /^ FT_Glyph_GetBBoxFunc glyph_bbox;$/;" m struct:FT_Glyph_Class_ +glyph_cache_manager src/picasso_font_cache.h /^ glyph_cache_manager()$/;" f class:picasso::glyph_cache_manager +glyph_cache_manager src/picasso_font_cache.h /^class glyph_cache_manager $/;" c namespace:picasso +glyph_class android/freetype/include/freetype/internal/ftobjs.h /^ FT_Glyph_Class glyph_class;$/;" m struct:FT_RendererRec_ +glyph_class include/freetype/internal/ftobjs.h /^ FT_Glyph_Class glyph_class;$/;" m struct:FT_RendererRec_ +glyph_code android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort glyph_code;$/;" m struct:TT_SBit_ComponentRec_ +glyph_code include/freetype/internal/tttypes.h /^ FT_UShort glyph_code;$/;" m struct:TT_SBit_ComponentRec_ +glyph_codes android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort* glyph_codes;$/;" m struct:TT_SBit_RangeRec_ +glyph_codes include/freetype/internal/tttypes.h /^ FT_UShort* glyph_codes;$/;" m struct:TT_SBit_RangeRec_ +glyph_copy android/freetype/include/freetype/ftrender.h /^ FT_Glyph_CopyFunc glyph_copy;$/;" m struct:FT_Glyph_Class_ +glyph_copy include/freetype/ftrender.h /^ FT_Glyph_CopyFunc glyph_copy;$/;" m struct:FT_Glyph_Class_ +glyph_count android/freetype/src/autofit/afglobal.c /^ FT_UInt glyph_count; \/* same as face->num_glyphs *\/$/;" m struct:AF_FaceGlobalsRec_ file: +glyph_delta android/freetype/include/freetype/internal/ftobjs.h /^ FT_Vector glyph_delta;$/;" m struct:FT_Slot_InternalRec_ +glyph_delta include/freetype/internal/ftobjs.h /^ FT_Vector glyph_delta;$/;" m struct:FT_Slot_InternalRec_ +glyph_done android/freetype/include/freetype/ftrender.h /^ FT_Glyph_DoneFunc glyph_done;$/;" m struct:FT_Glyph_Class_ +glyph_done include/freetype/ftrender.h /^ FT_Glyph_DoneFunc glyph_done;$/;" m struct:FT_Glyph_Class_ +glyph_format android/freetype/include/freetype/ftimage.h /^ FT_Glyph_Format glyph_format;$/;" m struct:FT_Raster_Funcs_ +glyph_format android/freetype/include/freetype/ftrender.h /^ FT_Glyph_Format glyph_format;$/;" m struct:FT_Renderer_Class_ +glyph_format android/freetype/include/freetype/ftrender.h /^ FT_Glyph_Format glyph_format;$/;" m struct:FT_Glyph_Class_ +glyph_format android/freetype/include/freetype/internal/ftobjs.h /^ FT_Glyph_Format glyph_format;$/;" m struct:FT_RendererRec_ +glyph_format include/freetype/ftimage.h /^ FT_Glyph_Format glyph_format;$/;" m struct:FT_Raster_Funcs_ +glyph_format include/freetype/ftrender.h /^ FT_Glyph_Format glyph_format;$/;" m struct:FT_Renderer_Class_ +glyph_format include/freetype/ftrender.h /^ FT_Glyph_Format glyph_format;$/;" m struct:FT_Glyph_Class_ +glyph_format include/freetype/internal/ftobjs.h /^ FT_Glyph_Format glyph_format;$/;" m struct:FT_RendererRec_ +glyph_hints android/freetype/include/freetype/internal/ftobjs.h /^ void* glyph_hints;$/;" m struct:FT_Slot_InternalRec_ +glyph_hints include/freetype/internal/ftobjs.h /^ void* glyph_hints;$/;" m struct:FT_Slot_InternalRec_ +glyph_index android/freetype/include/freetype/internal/services/svpscmap.h /^ FT_UInt glyph_index;$/;" m struct:PS_UniMap_ +glyph_index android/freetype/include/freetype/internal/tttypes.h /^ FT_UInt glyph_index;$/;" m struct:TT_LoaderRec_ +glyph_index include/freetype/internal/services/svpscmap.h /^ FT_UInt glyph_index;$/;" m struct:PS_UniMap_ +glyph_index include/freetype/internal/tttypes.h /^ FT_UInt glyph_index;$/;" m struct:TT_LoaderRec_ +glyph_indices android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort* glyph_indices;$/;" m struct:TT_Post_20Rec_ +glyph_indices include/freetype/internal/tttypes.h /^ FT_UShort* glyph_indices;$/;" m struct:TT_Post_20Rec_ +glyph_init android/freetype/include/freetype/ftrender.h /^ FT_Glyph_InitFunc glyph_init;$/;" m struct:FT_Glyph_Class_ +glyph_init include/freetype/ftrender.h /^ FT_Glyph_InitFunc glyph_init;$/;" m struct:FT_Glyph_Class_ +glyph_loader android/freetype/include/freetype/internal/ftobjs.h /^ FT_GlyphLoader glyph_loader;$/;" m struct:FT_DriverRec_ +glyph_loader include/freetype/internal/ftobjs.h /^ FT_GlyphLoader glyph_loader;$/;" m struct:FT_DriverRec_ +glyph_locations android/freetype/include/freetype/internal/tttypes.h /^ FT_Byte* glyph_locations;$/;" m struct:TT_FaceRec_ +glyph_locations include/freetype/internal/tttypes.h /^ FT_Byte* glyph_locations;$/;" m struct:TT_FaceRec_ +glyph_locations_stub android/freetype/include/freetype/internal/tttypes.h /^ FT_Long* glyph_locations_stub;$/;" m struct:TT_FaceRec_ +glyph_locations_stub include/freetype/internal/tttypes.h /^ FT_Long* glyph_locations_stub;$/;" m struct:TT_FaceRec_ +glyph_matrix android/freetype/include/freetype/internal/ftobjs.h /^ FT_Matrix glyph_matrix;$/;" m struct:FT_Slot_InternalRec_ +glyph_matrix include/freetype/internal/ftobjs.h /^ FT_Matrix glyph_matrix;$/;" m struct:FT_Slot_InternalRec_ +glyph_names android/freetype/include/freetype/internal/psaux.h /^ FT_Byte** glyph_names;$/;" m struct:T1_DecoderRec_ +glyph_names android/freetype/include/freetype/internal/t1types.h /^ FT_String** glyph_names; \/* array of glyph names *\/$/;" m struct:T1_FontRec_ +glyph_names android/freetype/include/freetype/internal/tttypes.h /^ FT_Char** glyph_names;$/;" m struct:TT_Post_20Rec_ +glyph_names android/freetype/src/cff/cffgload.h /^ FT_Byte** glyph_names; \/* for pure CFF fonts only *\/$/;" m struct:CFF_Decoder_ +glyph_names android/freetype/src/psaux/t1cmap.h /^ const char* const* glyph_names;$/;" m struct:T1_CMapStdRec_ +glyph_names include/freetype/internal/psaux.h /^ FT_Byte** glyph_names;$/;" m struct:T1_DecoderRec_ +glyph_names include/freetype/internal/t1types.h /^ FT_String** glyph_names; \/* array of glyph names *\/$/;" m struct:T1_FontRec_ +glyph_names include/freetype/internal/tttypes.h /^ FT_Char** glyph_names;$/;" m struct:TT_Post_20Rec_ +glyph_names_block android/freetype/include/freetype/internal/t1types.h /^ FT_Byte* glyph_names_block;$/;" m struct:T1_FontRec_ +glyph_names_block include/freetype/internal/t1types.h /^ FT_Byte* glyph_names_block;$/;" m struct:T1_FontRec_ +glyph_offsets android/freetype/include/freetype/internal/tttypes.h /^ FT_ULong* glyph_offsets;$/;" m struct:TT_SBit_RangeRec_ +glyph_offsets include/freetype/internal/tttypes.h /^ FT_ULong* glyph_offsets;$/;" m struct:TT_SBit_RangeRec_ +glyph_prepare android/freetype/include/freetype/ftrender.h /^ FT_Glyph_PrepareFunc glyph_prepare;$/;" m struct:FT_Glyph_Class_ +glyph_prepare include/freetype/ftrender.h /^ FT_Glyph_PrepareFunc glyph_prepare;$/;" m struct:FT_Glyph_Class_ +glyph_scripts android/freetype/src/autofit/afglobal.c /^ FT_Byte* glyph_scripts;$/;" m struct:AF_FaceGlobalsRec_ file: +glyph_size android/freetype/include/freetype/ftrender.h /^ FT_Long glyph_size;$/;" m struct:FT_Glyph_Class_ +glyph_size include/freetype/ftrender.h /^ FT_Long glyph_size;$/;" m struct:FT_Glyph_Class_ +glyph_transform android/freetype/include/freetype/ftrender.h /^ FT_Glyph_TransformFunc glyph_transform;$/;" m struct:FT_Glyph_Class_ +glyph_transform include/freetype/ftrender.h /^ FT_Glyph_TransformFunc glyph_transform;$/;" m struct:FT_Glyph_Class_ +glyph_transformed android/freetype/include/freetype/internal/ftobjs.h /^ FT_Bool glyph_transformed;$/;" m struct:FT_Slot_InternalRec_ +glyph_transformed include/freetype/internal/ftobjs.h /^ FT_Bool glyph_transformed;$/;" m struct:FT_Slot_InternalRec_ +glyph_type src/include/graphic_base.h /^} glyph_type;$/;" t namespace:picasso typeref:enum:picasso::__anon211 +glyph_type_gray src/include/graphic_base.h /^ glyph_type_gray = 2,$/;" e enum:picasso::__anon211 +glyph_type_invalid src/include/graphic_base.h /^ glyph_type_invalid = 0,$/;" e enum:picasso::__anon211 +glyph_type_mono src/include/graphic_base.h /^ glyph_type_mono = 1,$/;" e enum:picasso::__anon211 +glyph_type_outline src/include/graphic_base.h /^ glyph_type_outline = 3, $/;" e enum:picasso::__anon211 +glyph_width android/freetype/src/cff/cffgload.h /^ FT_Pos glyph_width;$/;" m struct:CFF_Decoder_ +glyphoffsets android/freetype/src/truetype/ttgxvar.h /^ FT_ULong* glyphoffsets;$/;" m struct:GX_BlendRec_ +goto_table android/freetype/include/freetype/internal/sfnt.h /^ TT_Loader_GotoTableFunc goto_table;$/;" m struct:SFNT_Interface_ +goto_table android/freetype/include/freetype/internal/tttypes.h /^ TT_Loader_GotoTableFunc goto_table;$/;" m struct:TT_FaceRec_ +goto_table include/freetype/internal/sfnt.h /^ TT_Loader_GotoTableFunc goto_table;$/;" m struct:SFNT_Interface_ +goto_table include/freetype/internal/tttypes.h /^ TT_Loader_GotoTableFunc goto_table;$/;" m struct:TT_FaceRec_ +gpc_free_polygon src/picasso_gpc.cpp /^void gpc_free_polygon(gpc_polygon *p)$/;" f namespace:picasso +gpc_op src/picasso_gpc.h /^} gpc_op;$/;" t namespace:picasso typeref:enum:picasso::__anon219 +gpc_polygon src/picasso_gpc.h /^} gpc_polygon;$/;" t namespace:picasso typeref:struct:picasso::__anon221 +gpc_polygon_clip src/picasso_gpc.cpp /^void gpc_polygon_clip(gpc_op op, gpc_polygon *subj, gpc_polygon *clip,$/;" f namespace:picasso +gpc_vertex_list src/picasso_gpc.h /^} gpc_vertex_list;$/;" t namespace:picasso typeref:struct:picasso::__anon220 +gr test/gamma_func.c /^static ps_rect gr = {200, 100, 320, 240};$/;" v file: +gr test/gradient_func.c /^static ps_gradient * gr;$/;" v file: +gr test/text_func.c /^static ps_gradient * gr;$/;" v file: +gradient src/gfx/gfx_painter.h /^ abstract_gradient_adapter* gradient;$/;" m struct:gfx::gfx_painter::__anon66 +gradient src/picasso_objects.h /^ picasso::gradient_adapter gradient;$/;" m struct:_ps_gradient +gradient_adapter src/picasso_gradient.cpp /^gradient_adapter::gradient_adapter()$/;" f class:picasso::gradient_adapter +gradient_adapter src/picasso_gradient.h /^class gradient_adapter$/;" c namespace:picasso +gradient_conic src/gfx/gfx_gradient_adapter.cpp /^class gradient_conic$/;" c namespace:gfx file: +gradient_holder src/gfx/gfx_painter.h /^ } gradient_holder;$/;" t class:gfx::gfx_painter typeref:struct:gfx::gfx_painter::__anon66 +gradient_pad_adaptor src/gfx/gfx_gradient_adapter.cpp /^ gradient_pad_adaptor(const GradientFunc& gradient)$/;" f class:gfx::gradient_pad_adaptor +gradient_pad_adaptor src/gfx/gfx_gradient_adapter.cpp /^class gradient_pad_adaptor$/;" c namespace:gfx file: +gradient_radial src/gfx/gfx_gradient_adapter.cpp /^class gradient_radial$/;" c namespace:gfx file: +gradient_radial_focus src/gfx/gfx_gradient_adapter.cpp /^ gradient_radial_focus()$/;" f class:gfx::gradient_radial_focus +gradient_radial_focus src/gfx/gfx_gradient_adapter.cpp /^class gradient_radial_focus$/;" c namespace:gfx file: +gradient_reflect_adaptor src/gfx/gfx_gradient_adapter.cpp /^ gradient_reflect_adaptor(const GradientFunc& gradient)$/;" f class:gfx::gradient_reflect_adaptor +gradient_reflect_adaptor src/gfx/gfx_gradient_adapter.cpp /^class gradient_reflect_adaptor$/;" c namespace:gfx file: +gradient_repeat_adaptor src/gfx/gfx_gradient_adapter.cpp /^ gradient_repeat_adaptor(const GradientFunc& gradient)$/;" f class:gfx::gradient_repeat_adaptor +gradient_repeat_adaptor src/gfx/gfx_gradient_adapter.cpp /^class gradient_repeat_adaptor$/;" c namespace:gfx file: +gradient_subpixel_mask src/include/graphic_base.h /^ gradient_subpixel_mask = gradient_subpixel_scale - 1 \/\/ gradient_subpixel_mask$/;" e enum:picasso::__anon201 +gradient_subpixel_scale src/include/graphic_base.h /^ gradient_subpixel_scale = 1 << gradient_subpixel_shift, \/\/ gradient_subpixel_scale$/;" e enum:picasso::__anon201 +gradient_subpixel_shift src/include/graphic_base.h /^ gradient_subpixel_shift = 4, \/\/ gradient_subpixel_shift$/;" e enum:picasso::__anon201 +gradient_type src/gfx/gfx_gradient_adapter.h /^ typedef gfx_gradient_wrapper gradient_type;$/;" t class:gfx::gfx_span_gradient +gradient_x src/gfx/gfx_gradient_adapter.cpp /^class gradient_x$/;" c namespace:gfx file: +graphic_brush src/picasso_objects.h /^ graphic_brush() $/;" f struct:picasso::graphic_brush +graphic_brush src/picasso_objects.h /^ graphic_brush(const graphic_brush& o)$/;" f struct:picasso::graphic_brush +graphic_brush src/picasso_objects.h /^struct graphic_brush {$/;" s namespace:picasso +graphic_path src/core/graphic_path.cpp /^graphic_path::graphic_path()$/;" f class:picasso::graphic_path +graphic_path src/core/graphic_path.cpp /^graphic_path::graphic_path(const graphic_path& o)$/;" f class:picasso::graphic_path +graphic_path src/include/graphic_path.h /^class graphic_path : public vertex_container$/;" c namespace:picasso +graphic_path_impl src/core/graphic_path.cpp /^ graphic_path_impl() $/;" f class:picasso::graphic_path_impl +graphic_path_impl src/core/graphic_path.cpp /^ graphic_path_impl(unsigned int size) $/;" f class:picasso::graphic_path_impl +graphic_path_impl src/core/graphic_path.cpp /^class graphic_path_impl$/;" c namespace:picasso file: +graphic_pen src/picasso_objects.h /^ graphic_pen()$/;" f struct:picasso::graphic_pen +graphic_pen src/picasso_objects.h /^ graphic_pen(const graphic_pen& o)$/;" f struct:picasso::graphic_pen +graphic_pen src/picasso_objects.h /^struct graphic_pen$/;" s namespace:picasso +gray_compute_cbox android/freetype/src/smooth/ftgrays.c /^ gray_compute_cbox( RAS_ARG )$/;" f file: +gray_conic_to android/freetype/src/smooth/ftgrays.c /^ gray_conic_to( const FT_Vector* control,$/;" f file: +gray_convert_glyph android/freetype/src/smooth/ftgrays.c /^ gray_convert_glyph( RAS_ARG )$/;" f file: +gray_convert_glyph_inner android/freetype/src/smooth/ftgrays.c /^ gray_convert_glyph_inner( RAS_ARG )$/;" f file: +gray_cubic_to android/freetype/src/smooth/ftgrays.c /^ gray_cubic_to( const FT_Vector* control1,$/;" f file: +gray_dump_cells android/freetype/src/smooth/ftgrays.c /^ gray_dump_cells( RAS_ARG )$/;" f +gray_find_cell android/freetype/src/smooth/ftgrays.c /^ gray_find_cell( RAS_ARG )$/;" f file: +gray_hline android/freetype/src/smooth/ftgrays.c /^ gray_hline( RAS_ARG_ TCoord x,$/;" f file: +gray_init_cells android/freetype/src/smooth/ftgrays.c /^ gray_init_cells( RAS_ARG_ void* buffer,$/;" f file: +gray_line_to android/freetype/src/smooth/ftgrays.c /^ gray_line_to( const FT_Vector* to,$/;" f file: +gray_lines android/freetype/src/raster/ftraster.c /^ Byte gray_lines[RASTER_GRAY_LINES];$/;" m struct:TWorker_ file: +gray_max_x android/freetype/src/raster/ftraster.c /^ Short gray_max_x; \/* current max x during gray rendering *\/$/;" m struct:TWorker_ file: +gray_min_x android/freetype/src/raster/ftraster.c /^ Short gray_min_x; \/* current min x during gray rendering *\/$/;" m struct:TWorker_ file: +gray_move_to android/freetype/src/smooth/ftgrays.c /^ gray_move_to( const FT_Vector* to,$/;" f file: +gray_raster_done android/freetype/src/smooth/ftgrays.c /^ gray_raster_done( FT_Raster raster )$/;" f file: +gray_raster_new android/freetype/src/smooth/ftgrays.c /^ gray_raster_new( FT_Memory memory,$/;" f file: +gray_raster_new android/freetype/src/smooth/ftgrays.c /^ gray_raster_new( void* memory,$/;" f file: +gray_raster_render android/freetype/src/smooth/ftgrays.c /^ gray_raster_render( PRaster raster,$/;" f file: +gray_raster_reset android/freetype/src/smooth/ftgrays.c /^ gray_raster_reset( FT_Raster raster,$/;" f file: +gray_record_cell android/freetype/src/smooth/ftgrays.c /^ gray_record_cell( RAS_ARG )$/;" f file: +gray_render_conic android/freetype/src/smooth/ftgrays.c /^ gray_render_conic( RAS_ARG_ const FT_Vector* control,$/;" f file: +gray_render_cubic android/freetype/src/smooth/ftgrays.c /^ gray_render_cubic( RAS_ARG_ const FT_Vector* control1,$/;" f file: +gray_render_line android/freetype/src/smooth/ftgrays.c /^ gray_render_line( RAS_ARG_ TPos to_x,$/;" f file: +gray_render_scanline android/freetype/src/smooth/ftgrays.c /^ gray_render_scanline( RAS_ARG_ TCoord ey,$/;" f file: +gray_render_span android/freetype/src/smooth/ftgrays.c /^ gray_render_span( int y,$/;" f file: +gray_set_cell android/freetype/src/smooth/ftgrays.c /^ gray_set_cell( RAS_ARG_ TCoord ex,$/;" f file: +gray_spans android/freetype/include/freetype/ftimage.h /^ FT_SpanFunc gray_spans;$/;" m struct:FT_Raster_Params_ +gray_spans android/freetype/src/smooth/ftgrays.c /^ FT_Span gray_spans[FT_MAX_GRAY_SPANS];$/;" m struct:TWorker_ file: +gray_spans include/freetype/ftimage.h /^ FT_SpanFunc gray_spans;$/;" m struct:FT_Raster_Params_ +gray_split_conic android/freetype/src/smooth/ftgrays.c /^ gray_split_conic( FT_Vector* base )$/;" f file: +gray_split_cubic android/freetype/src/smooth/ftgrays.c /^ gray_split_cubic( FT_Vector* base )$/;" f file: +gray_start_cell android/freetype/src/smooth/ftgrays.c /^ gray_start_cell( RAS_ARG_ TCoord ex,$/;" f file: +gray_sweep android/freetype/src/smooth/ftgrays.c /^ gray_sweep( RAS_ARG_ const FT_Bitmap* target )$/;" f file: +gray_width android/freetype/src/raster/ftraster.c /^ Short gray_width; \/* width in bytes of one monochrome *\/$/;" m struct:TWorker_ file: +gray_width android/freetype/src/raster/ftraster.c /^ Short gray_width;$/;" m struct:TRaster_ file: +grays android/freetype/src/raster/ftraster.c /^ Byte grays[5];$/;" m struct:TRaster_ file: +grays android/freetype/src/raster/ftraster.c /^ Byte* grays;$/;" m struct:TWorker_ file: +grayscale android/freetype/src/truetype/ttinterp.h /^ FT_Bool grayscale; \/* are we hinting for grayscale? *\/$/;" m struct:TT_ExecContextRec_ +groupConnector android/expat/lib/xmlparse.c /^#define groupConnector /;" d file: +groupSize android/expat/lib/xmlparse.c /^#define groupSize /;" d file: +groups tools/gyp/build/lib/gyp/generator/xcode.py /^ groups = [x for x in groups if not x.endswith('_excluded')]$/;" v +groups tools/gyp/build/lib/gyp/generator/xcode.py /^ groups = ['inputs', 'inputs_excluded']$/;" v +groups tools/gyp/build/lib/gyp/generator/xcode.py /^ groups = [x for x in groups if not x.endswith('_excluded')]$/;" v +groups tools/gyp/build/lib/gyp/generator/xcode.py /^ groups = ['inputs', 'inputs_excluded', 'outputs', 'outputs_excluded']$/;" v +groups tools/gyp/pylib/gyp/generator/xcode.py /^ groups = [x for x in groups if not x.endswith('_excluded')]$/;" v +groups tools/gyp/pylib/gyp/generator/xcode.py /^ groups = ['inputs', 'inputs_excluded']$/;" v +groups tools/gyp/pylib/gyp/generator/xcode.py /^ groups = [x for x in groups if not x.endswith('_excluded')]$/;" v +groups tools/gyp/pylib/gyp/generator/xcode.py /^ groups = ['inputs', 'inputs_excluded', 'outputs', 'outputs_excluded']$/;" v +gt test/gamma_func.c /^static ps_rect gt = {100, 100, 200, 200};$/;" v file: +gtext test/text_func.c /^const char gtext[] = "ASDFG";$/;" v +gv_glyphcnt android/freetype/src/truetype/ttgxvar.h /^ FT_UInt gv_glyphcnt;$/;" m struct:GX_BlendRec_ +gxv_validate_func android/freetype/include/freetype/internal/services/svgxval.h /^ (*gxv_validate_func)( FT_Face face,$/;" t +gxv_validate_func include/freetype/internal/services/svgxval.h /^ (*gxv_validate_func)( FT_Face face,$/;" t +gyp tools/gyp/build/lib/gyp/MSVSNew.py /^import gyp.common$/;" i +gyp tools/gyp/build/lib/gyp/MSVSProject.py /^import gyp.common$/;" i +gyp tools/gyp/build/lib/gyp/MSVSProject.py /^import gyp.easy_xml as easy_xml$/;" i +gyp tools/gyp/build/lib/gyp/MSVSSettings_test.py /^import gyp.MSVSSettings as MSVSSettings$/;" i +gyp tools/gyp/build/lib/gyp/MSVSToolFile.py /^import gyp.common$/;" i +gyp tools/gyp/build/lib/gyp/MSVSToolFile.py /^import gyp.easy_xml as easy_xml$/;" i +gyp tools/gyp/build/lib/gyp/MSVSUserFile.py /^import gyp.common$/;" i +gyp tools/gyp/build/lib/gyp/MSVSUserFile.py /^import gyp.easy_xml as easy_xml$/;" i +gyp tools/gyp/build/lib/gyp/MSVSVersion.py /^import gyp$/;" i +gyp tools/gyp/build/lib/gyp/__init__.py /^import gyp.input$/;" i +gyp tools/gyp/build/lib/gyp/common_test.py /^import gyp.common$/;" i +gyp tools/gyp/build/lib/gyp/easy_xml_test.py /^import gyp.easy_xml as easy_xml$/;" i +gyp tools/gyp/build/lib/gyp/generator/android.py /^import gyp$/;" i +gyp tools/gyp/build/lib/gyp/generator/android.py /^import gyp.common$/;" i +gyp tools/gyp/build/lib/gyp/generator/android.py /^import gyp.generator.make as make # Reuse global functions from make backend.$/;" i +gyp tools/gyp/build/lib/gyp/generator/dump_dependency_json.py /^ import gyp.generator.msvs as msvs_generator$/;" i +gyp tools/gyp/build/lib/gyp/generator/dump_dependency_json.py /^import gyp$/;" i +gyp tools/gyp/build/lib/gyp/generator/dump_dependency_json.py /^import gyp.common$/;" i +gyp tools/gyp/build/lib/gyp/generator/dump_dependency_json.py /^import gyp.msvs_emulation$/;" i +gyp tools/gyp/build/lib/gyp/generator/eclipse.py /^import gyp$/;" i +gyp tools/gyp/build/lib/gyp/generator/eclipse.py /^import gyp.common$/;" i +gyp tools/gyp/build/lib/gyp/generator/gypd.py /^import gyp.common$/;" i +gyp tools/gyp/build/lib/gyp/generator/make.py /^ import gyp.generator.xcode as xcode_generator$/;" i +gyp tools/gyp/build/lib/gyp/generator/make.py /^import gyp$/;" i +gyp tools/gyp/build/lib/gyp/generator/make.py /^import gyp.common$/;" i +gyp tools/gyp/build/lib/gyp/generator/make.py /^import gyp.xcode_emulation$/;" i +gyp tools/gyp/build/lib/gyp/generator/msvs.py /^import gyp.MSVSNew as MSVSNew$/;" i +gyp tools/gyp/build/lib/gyp/generator/msvs.py /^import gyp.MSVSProject as MSVSProject$/;" i +gyp tools/gyp/build/lib/gyp/generator/msvs.py /^import gyp.MSVSSettings as MSVSSettings$/;" i +gyp tools/gyp/build/lib/gyp/generator/msvs.py /^import gyp.MSVSToolFile as MSVSToolFile$/;" i +gyp tools/gyp/build/lib/gyp/generator/msvs.py /^import gyp.MSVSUserFile as MSVSUserFile$/;" i +gyp tools/gyp/build/lib/gyp/generator/msvs.py /^import gyp.MSVSUtil as MSVSUtil$/;" i +gyp tools/gyp/build/lib/gyp/generator/msvs.py /^import gyp.MSVSVersion as MSVSVersion$/;" i +gyp tools/gyp/build/lib/gyp/generator/msvs.py /^import gyp.common$/;" i +gyp tools/gyp/build/lib/gyp/generator/msvs.py /^import gyp.easy_xml as easy_xml$/;" i +gyp tools/gyp/build/lib/gyp/generator/msvs_test.py /^import gyp.generator.msvs as msvs$/;" i +gyp tools/gyp/build/lib/gyp/generator/ninja.py /^ import gyp.generator.msvs as msvs_generator$/;" i +gyp tools/gyp/build/lib/gyp/generator/ninja.py /^ import gyp.generator.xcode as xcode_generator$/;" i +gyp tools/gyp/build/lib/gyp/generator/ninja.py /^import gyp$/;" i +gyp tools/gyp/build/lib/gyp/generator/ninja.py /^import gyp.MSVSUtil as MSVSUtil$/;" i +gyp tools/gyp/build/lib/gyp/generator/ninja.py /^import gyp.common$/;" i +gyp tools/gyp/build/lib/gyp/generator/ninja.py /^import gyp.msvs_emulation$/;" i +gyp tools/gyp/build/lib/gyp/generator/ninja.py /^import gyp.ninja_syntax as ninja_syntax$/;" i +gyp tools/gyp/build/lib/gyp/generator/ninja.py /^import gyp.xcode_emulation$/;" i +gyp tools/gyp/build/lib/gyp/generator/ninja_test.py /^import gyp.generator.ninja as ninja$/;" i +gyp tools/gyp/build/lib/gyp/generator/scons.py /^import gyp$/;" i +gyp tools/gyp/build/lib/gyp/generator/scons.py /^import gyp.SCons as SCons$/;" i +gyp tools/gyp/build/lib/gyp/generator/scons.py /^import gyp.common$/;" i +gyp tools/gyp/build/lib/gyp/generator/xcode.py /^import gyp.common$/;" i +gyp tools/gyp/build/lib/gyp/generator/xcode.py /^import gyp.xcodeproj_file$/;" i +gyp tools/gyp/build/lib/gyp/input.py /^import gyp.common$/;" i +gyp tools/gyp/build/lib/gyp/msvs_emulation.py /^import gyp.MSVSVersion$/;" i +gyp tools/gyp/build/lib/gyp/xcode_emulation.py /^import gyp.common$/;" i +gyp tools/gyp/build/lib/gyp/xcodeproj_file.py /^import gyp.common$/;" i +gyp tools/gyp/pylib/gyp/MSVSNew.py /^import gyp.common$/;" i +gyp tools/gyp/pylib/gyp/MSVSProject.py /^import gyp.common$/;" i +gyp tools/gyp/pylib/gyp/MSVSProject.py /^import gyp.easy_xml as easy_xml$/;" i +gyp tools/gyp/pylib/gyp/MSVSSettings_test.py /^import gyp.MSVSSettings as MSVSSettings$/;" i +gyp tools/gyp/pylib/gyp/MSVSToolFile.py /^import gyp.common$/;" i +gyp tools/gyp/pylib/gyp/MSVSToolFile.py /^import gyp.easy_xml as easy_xml$/;" i +gyp tools/gyp/pylib/gyp/MSVSUserFile.py /^import gyp.common$/;" i +gyp tools/gyp/pylib/gyp/MSVSUserFile.py /^import gyp.easy_xml as easy_xml$/;" i +gyp tools/gyp/pylib/gyp/MSVSVersion.py /^import gyp$/;" i +gyp tools/gyp/pylib/gyp/__init__.py /^import gyp.input$/;" i +gyp tools/gyp/pylib/gyp/common_test.py /^import gyp.common$/;" i +gyp tools/gyp/pylib/gyp/easy_xml_test.py /^import gyp.easy_xml as easy_xml$/;" i +gyp tools/gyp/pylib/gyp/generator/android.py /^import gyp$/;" i +gyp tools/gyp/pylib/gyp/generator/android.py /^import gyp.common$/;" i +gyp tools/gyp/pylib/gyp/generator/android.py /^import gyp.generator.make as make # Reuse global functions from make backend.$/;" i +gyp tools/gyp/pylib/gyp/generator/dump_dependency_json.py /^ import gyp.generator.msvs as msvs_generator$/;" i +gyp tools/gyp/pylib/gyp/generator/dump_dependency_json.py /^import gyp$/;" i +gyp tools/gyp/pylib/gyp/generator/dump_dependency_json.py /^import gyp.common$/;" i +gyp tools/gyp/pylib/gyp/generator/dump_dependency_json.py /^import gyp.msvs_emulation$/;" i +gyp tools/gyp/pylib/gyp/generator/eclipse.py /^import gyp$/;" i +gyp tools/gyp/pylib/gyp/generator/eclipse.py /^import gyp.common$/;" i +gyp tools/gyp/pylib/gyp/generator/gypd.py /^import gyp.common$/;" i +gyp tools/gyp/pylib/gyp/generator/make.py /^ import gyp.generator.xcode as xcode_generator$/;" i +gyp tools/gyp/pylib/gyp/generator/make.py /^import gyp$/;" i +gyp tools/gyp/pylib/gyp/generator/make.py /^import gyp.common$/;" i +gyp tools/gyp/pylib/gyp/generator/make.py /^import gyp.xcode_emulation$/;" i +gyp tools/gyp/pylib/gyp/generator/msvs.py /^import gyp.MSVSNew as MSVSNew$/;" i +gyp tools/gyp/pylib/gyp/generator/msvs.py /^import gyp.MSVSProject as MSVSProject$/;" i +gyp tools/gyp/pylib/gyp/generator/msvs.py /^import gyp.MSVSSettings as MSVSSettings$/;" i +gyp tools/gyp/pylib/gyp/generator/msvs.py /^import gyp.MSVSToolFile as MSVSToolFile$/;" i +gyp tools/gyp/pylib/gyp/generator/msvs.py /^import gyp.MSVSUserFile as MSVSUserFile$/;" i +gyp tools/gyp/pylib/gyp/generator/msvs.py /^import gyp.MSVSUtil as MSVSUtil$/;" i +gyp tools/gyp/pylib/gyp/generator/msvs.py /^import gyp.MSVSVersion as MSVSVersion$/;" i +gyp tools/gyp/pylib/gyp/generator/msvs.py /^import gyp.common$/;" i +gyp tools/gyp/pylib/gyp/generator/msvs.py /^import gyp.easy_xml as easy_xml$/;" i +gyp tools/gyp/pylib/gyp/generator/msvs_test.py /^import gyp.generator.msvs as msvs$/;" i +gyp tools/gyp/pylib/gyp/generator/ninja.py /^ import gyp.generator.msvs as msvs_generator$/;" i +gyp tools/gyp/pylib/gyp/generator/ninja.py /^ import gyp.generator.xcode as xcode_generator$/;" i +gyp tools/gyp/pylib/gyp/generator/ninja.py /^import gyp$/;" i +gyp tools/gyp/pylib/gyp/generator/ninja.py /^import gyp.MSVSUtil as MSVSUtil$/;" i +gyp tools/gyp/pylib/gyp/generator/ninja.py /^import gyp.common$/;" i +gyp tools/gyp/pylib/gyp/generator/ninja.py /^import gyp.msvs_emulation$/;" i +gyp tools/gyp/pylib/gyp/generator/ninja.py /^import gyp.ninja_syntax as ninja_syntax$/;" i +gyp tools/gyp/pylib/gyp/generator/ninja.py /^import gyp.xcode_emulation$/;" i +gyp tools/gyp/pylib/gyp/generator/ninja_test.py /^import gyp.generator.ninja as ninja$/;" i +gyp tools/gyp/pylib/gyp/generator/scons.py /^import gyp$/;" i +gyp tools/gyp/pylib/gyp/generator/scons.py /^import gyp.SCons as SCons$/;" i +gyp tools/gyp/pylib/gyp/generator/scons.py /^import gyp.common$/;" i +gyp tools/gyp/pylib/gyp/generator/xcode.py /^import gyp.common$/;" i +gyp tools/gyp/pylib/gyp/generator/xcode.py /^import gyp.xcodeproj_file$/;" i +gyp tools/gyp/pylib/gyp/input.py /^import gyp.common$/;" i +gyp tools/gyp/pylib/gyp/msvs_emulation.py /^import gyp.MSVSVersion$/;" i +gyp tools/gyp/pylib/gyp/xcode_emulation.py /^import gyp.common$/;" i +gyp tools/gyp/pylib/gyp/xcodeproj_file.py /^import gyp.common$/;" i +gyp-add-font-lock-keywords tools/gyp/tools/emacs/gyp.el /^(defun gyp-add-font-lock-keywords ()$/;" f +gyp-add-parse-history tools/gyp/tools/emacs/gyp.el /^(defun gyp-add-parse-history (point sections)$/;" f +gyp-conditions-regexp tools/gyp/tools/emacs/gyp.el /^(defconst gyp-conditions-regexp$/;" f +gyp-defines-regexp tools/gyp/tools/emacs/gyp.el /^(defconst gyp-defines-regexp$/;" f +gyp-dependencies-regexp tools/gyp/tools/emacs/gyp.el /^(defconst gyp-dependencies-regexp$/;" f +gyp-inside-dictionary-p tools/gyp/tools/emacs/gyp.el /^(defun gyp-inside-dictionary-p ()$/;" f +gyp-invalidate-parse-states-after tools/gyp/tools/emacs/gyp.el /^(defun gyp-invalidate-parse-states-after (target-point)$/;" f +gyp-mode tools/gyp/tools/emacs/gyp.el /^(define-derived-mode gyp-mode python-mode "Gyp"$/;" f +gyp-parse-point tools/gyp/tools/emacs/gyp.el /^(defun gyp-parse-point ()$/;" f +gyp-parse-sections tools/gyp/tools/emacs/gyp.el /^(defun gyp-parse-sections ()$/;" f +gyp-parse-to tools/gyp/tools/emacs/gyp.el /^(defun gyp-parse-to (target-point)$/;" f +gyp-section-at-point tools/gyp/tools/emacs/gyp.el /^(defun gyp-section-at-point ()$/;" f +gyp-section-match tools/gyp/tools/emacs/gyp.el /^(defun gyp-section-match (limit)$/;" f +gyp-section-name tools/gyp/tools/emacs/gyp.el /^(defun gyp-section-name (section)$/;" f +gyp-set-indentation tools/gyp/tools/emacs/gyp.el /^(defun gyp-set-indentation ()$/;" f +gyp-sources-regexp tools/gyp/tools/emacs/gyp.el /^(defconst gyp-sources-regexp$/;" f +gyp-targets-regexp tools/gyp/tools/emacs/gyp.el /^(defconst gyp-targets-regexp$/;" f +gyp-variables-regexp tools/gyp/tools/emacs/gyp.el /^(defconst gyp-variables-regexp$/;" f +gyp_main tools/gyp/build/lib/gyp/__init__.py /^def gyp_main(args):$/;" f +gyp_main tools/gyp/pylib/gyp/__init__.py /^def gyp_main(args):$/;" f +gzip_source android/freetype/include/freetype/internal/pcftypes.h /^ FT_Stream gzip_source;$/;" m struct:PCF_Public_FaceRec_ +gzip_source include/freetype/internal/pcftypes.h /^ FT_Stream gzip_source;$/;" m struct:PCF_Public_FaceRec_ +gzip_stream android/freetype/include/freetype/internal/pcftypes.h /^ FT_StreamRec gzip_stream;$/;" m struct:PCF_Public_FaceRec_ +gzip_stream include/freetype/internal/pcftypes.h /^ FT_StreamRec gzip_stream;$/;" m struct:PCF_Public_FaceRec_ +h include/picasso.h /^ float h;$/;" m struct:_ps_rect +h include/picasso.h /^ float h;$/;" m struct:_ps_size +hInst demos/platform_win32.c /^HINSTANCE hInst; $/;" v +hInst test/testWin.c /^HINSTANCE hInst; \/\/ current instance$/;" v +h_state src/picasso_gpc.cpp /^} h_state;$/;" t namespace:picasso typeref:enum:picasso::__anon217 file: +handleUnknownEncoding android/expat/lib/xmlparse.c /^handleUnknownEncoding(XML_Parser parser, const XML_Char *encodingName)$/;" f file: +handler android/expat/lib/xmlrole.h /^ int (PTRCALL *handler) (struct prolog_state *state,$/;" m struct:prolog_state +handlerArg android/expat/lib/xmlparse.c /^#define handlerArg /;" d file: +hasParamEntityRefs android/expat/lib/xmlparse.c /^ XML_Bool hasParamEntityRefs;$/;" m struct:__anon17 file: +has_color src/gfx/gfx_pixfmt_wrapper.h /^ bool has_color(const color_type& c) const$/;" f class:gfx::gfx_pixfmt_wrapper +has_color_channel src/gfx/gfx_rendering_buffer.h /^ virtual bool has_color_channel(void) const { return m_has_colorkey; }$/;" f class:gfx::gfx_rendering_buffer +has_color_channel src/picasso_rendering_buffer.cpp /^bool rendering_buffer::has_color_channel(void) const $/;" f class:picasso::rendering_buffer +hash android/expat/lib/xmlparse.c /^ unsigned long hash;$/;" m struct:__anon15 file: +hash android/expat/lib/xmlparse.c /^hash(XML_Parser parser, KEY s)$/;" f file: +hash android/freetype/src/base/ftdbgmem.c /^ FT_UInt32 hash;$/;" m struct:FT_MemSourceRec_ file: +hashTableClear android/expat/lib/xmlparse.c /^hashTableClear(HASH_TABLE *table)$/;" f file: +hashTableDestroy android/expat/lib/xmlparse.c /^hashTableDestroy(HASH_TABLE *table)$/;" f file: +hashTableInit android/expat/lib/xmlparse.c /^hashTableInit(HASH_TABLE *p, const XML_Memory_Handling_Suite *ms)$/;" f file: +hashTableIterInit android/expat/lib/xmlparse.c /^hashTableIterInit(HASH_TABLE_ITER *iter, const HASH_TABLE *table)$/;" f file: +hashTableIterNext android/expat/lib/xmlparse.c /^hashTableIterNext(HASH_TABLE_ITER *iter)$/;" f file: +hash_secret_salt android/expat/lib/xmlparse.c /^#define hash_secret_salt /;" d file: +hashlib tools/gyp/build/lib/gyp/MSVSNew.py /^ import hashlib$/;" i +hashlib tools/gyp/build/lib/gyp/generator/ninja.py /^import hashlib$/;" i +hashlib tools/gyp/build/lib/gyp/xcodeproj_file.py /^ import hashlib$/;" i +hashlib tools/gyp/pylib/gyp/MSVSNew.py /^ import hashlib$/;" i +hashlib tools/gyp/pylib/gyp/generator/ninja.py /^import hashlib$/;" i +hashlib tools/gyp/pylib/gyp/xcodeproj_file.py /^ import hashlib$/;" i +hbmp demos/platform_win32.c /^HBITMAP hbmp;$/;" v +hbmp test/testWin.c /^HBITMAP hbmp;$/;" v +hdmx android/freetype/include/freetype/internal/tttypes.h /^ TT_HdmxRec hdmx;$/;" m struct:TT_FaceRec_ +hdmx include/freetype/internal/tttypes.h /^ TT_HdmxRec hdmx;$/;" m struct:TT_FaceRec_ +hdmx_record_count android/freetype/include/freetype/internal/tttypes.h /^ FT_UInt hdmx_record_count;$/;" m struct:TT_FaceRec_ +hdmx_record_count include/freetype/internal/tttypes.h /^ FT_UInt hdmx_record_count;$/;" m struct:TT_FaceRec_ +hdmx_record_size android/freetype/include/freetype/internal/tttypes.h /^ FT_ULong hdmx_record_size;$/;" m struct:TT_FaceRec_ +hdmx_record_size include/freetype/internal/tttypes.h /^ FT_ULong hdmx_record_size;$/;" m struct:TT_FaceRec_ +hdmx_record_sizes android/freetype/include/freetype/internal/tttypes.h /^ FT_Byte* hdmx_record_sizes;$/;" m struct:TT_FaceRec_ +hdmx_record_sizes include/freetype/internal/tttypes.h /^ FT_Byte* hdmx_record_sizes;$/;" m struct:TT_FaceRec_ +hdmx_table android/freetype/include/freetype/internal/tttypes.h /^ FT_Byte* hdmx_table;$/;" m struct:TT_FaceRec_ +hdmx_table include/freetype/internal/tttypes.h /^ FT_Byte* hdmx_table;$/;" m struct:TT_FaceRec_ +hdmx_table_size android/freetype/include/freetype/internal/tttypes.h /^ FT_ULong hdmx_table_size;$/;" m struct:TT_FaceRec_ +hdmx_table_size include/freetype/internal/tttypes.h /^ FT_ULong hdmx_table_size;$/;" m struct:TT_FaceRec_ +head android/freetype/include/freetype/fttypes.h /^ FT_ListNode head;$/;" m struct:FT_ListRec_ +head include/freetype/fttypes.h /^ FT_ListNode head;$/;" m struct:FT_ListRec_ +header android/freetype/include/freetype/internal/tttypes.h /^ TT_Header header; \/* TrueType header table *\/$/;" m struct:TT_FaceRec_ +header include/freetype/internal/tttypes.h /^ TT_Header header; \/* TrueType header table *\/$/;" m struct:TT_FaceRec_ +header_size android/freetype/src/cff/cfftypes.h /^ FT_Byte header_size;$/;" m struct:CFF_FontRec_ +height android/freetype/include/freetype/freetype.h /^ FT_Long height;$/;" m struct:FT_Size_RequestRec_ +height android/freetype/include/freetype/freetype.h /^ FT_Pos height; \/* text height in 26.6 frac. pixels *\/$/;" m struct:FT_Size_Metrics_ +height android/freetype/include/freetype/freetype.h /^ FT_Pos height;$/;" m struct:FT_Glyph_Metrics_ +height android/freetype/include/freetype/freetype.h /^ FT_Short height;$/;" m struct:FT_FaceRec_ +height android/freetype/include/freetype/freetype.h /^ FT_Short height;$/;" m struct:FT_Bitmap_Size_ +height android/freetype/include/freetype/ftcache.h /^ FT_Byte height;$/;" m struct:FTC_SBitRec_ +height android/freetype/include/freetype/ftcache.h /^ FT_Int height;$/;" m struct:FTC_ImageTypeRec_ +height android/freetype/include/freetype/ftcache.h /^ FT_UInt height;$/;" m struct:FTC_ScalerRec_ +height android/freetype/include/freetype/internal/tttypes.h /^ FT_Byte height;$/;" m struct:TT_SBit_MetricsRec_ +height android/freetype/include/freetype/internal/tttypes.h /^ FT_Byte height;$/;" m struct:TT_SBit_Small_Metrics_ +height android/freetype/src/autofit/afhints.h /^ FT_Short height; \/* the hinted segment height *\/$/;" m struct:AF_SegmentRec_ +height android/freetype/src/raster/ftraster.c /^ long height; \/* profile's height in scanlines *\/$/;" m struct:TProfile_ file: +height android/jni/pat565.h /^ int height;$/;" m struct:_pat565 +height android/jni/selt2565.h /^ int height;$/;" m struct:_selt2565 +height android/jni/test_android.cpp /^ int32_t height;$/;" m struct:engine file: +height demos/clock.c /^static int height;$/;" v file: +height demos/flowers.c /^static int height;$/;" v file: +height demos/interface.h /^ unsigned height;$/;" m struct:_picture +height demos/lake.c /^static int height;$/;" v file: +height demos/platform_gix.c /^static int height;$/;" v file: +height demos/platform_gtk2.c /^static int height;$/;" v file: +height demos/platform_minigui.c /^static int height;$/;" v file: +height demos/platform_win32.c /^static int height;$/;" v file: +height demos/subwaymap.c /^static int height;$/;" v file: +height demos/tiger.c /^static int height;$/;" v file: +height include/freetype/freetype.h /^ FT_Long height;$/;" m struct:FT_Size_RequestRec_ +height include/freetype/freetype.h /^ FT_Pos height; \/* text height in 26.6 frac. pixels *\/$/;" m struct:FT_Size_Metrics_ +height include/freetype/freetype.h /^ FT_Pos height;$/;" m struct:FT_Glyph_Metrics_ +height include/freetype/freetype.h /^ FT_Short height;$/;" m struct:FT_FaceRec_ +height include/freetype/freetype.h /^ FT_Short height;$/;" m struct:FT_Bitmap_Size_ +height include/freetype/ftcache.h /^ FT_Byte height;$/;" m struct:FTC_SBitRec_ +height include/freetype/ftcache.h /^ FT_Int height;$/;" m struct:FTC_ImageTypeRec_ +height include/freetype/ftcache.h /^ FT_UInt height;$/;" m struct:FTC_ScalerRec_ +height include/freetype/internal/tttypes.h /^ FT_Byte height;$/;" m struct:TT_SBit_MetricsRec_ +height include/freetype/internal/tttypes.h /^ FT_Byte height;$/;" m struct:TT_SBit_Small_Metrics_ +height src/gfx/gfx_blur.h /^ unsigned int height(void) const { return m_pixfmt->width(); }$/;" f class:gfx::pixfmt_transformer +height src/gfx/gfx_mask_layer.h /^ unsigned int height(void) const { return m_pixfmt->height(); }$/;" f class:gfx::gfx_pixfmt_amask_adaptor +height src/gfx/gfx_pixfmt_rgb.h /^ unsigned int height(void) const { return m_buffer->internal_height(); }$/;" f class:gfx::pixfmt_blender_rgb +height src/gfx/gfx_pixfmt_rgb16.h /^ unsigned int height(void) const { return m_buffer->internal_height(); }$/;" f class:gfx::pixfmt_blender_rgb16 +height src/gfx/gfx_pixfmt_rgba.h /^ unsigned int height(void) const { return m_buffer->internal_height(); }$/;" f class:gfx::pixfmt_blender_rgba +height src/gfx/gfx_pixfmt_wrapper.h /^ unsigned int height(void) const { return m_fmt.height(); }$/;" f class:gfx::gfx_pixfmt_wrapper +height src/gfx/gfx_renderer.h /^ unsigned int height(void) const { return m_pixfmt->height(); }$/;" f class:gfx::gfx_renderer +height src/gfx/gfx_rendering_buffer.h /^ virtual unsigned int height(void) const { return m_height; }$/;" f class:gfx::gfx_rendering_buffer +height src/include/graphic_base.h /^ T height(void) { return (y2-y1); }$/;" f struct:picasso::rect_base +height src/include/graphic_base.h /^ scalar height;$/;" m struct:picasso::_glyph +height src/picasso_font.h /^ scalar height(void) const { return m_height; }$/;" f class:picasso::font_desc +height src/picasso_font.h /^ scalar height(void) const { return m_impl->height(); }$/;" f class:picasso::font_adapter +height src/picasso_rendering_buffer.cpp /^unsigned int rendering_buffer::height(void) const $/;" f class:picasso::rendering_buffer +hi android/freetype/src/base/ftcalc.c /^ FT_UInt32 hi;$/;" m struct:FT_Int64_ file: +hint android/freetype/src/cff/cffobjs.h /^ FT_Bool hint;$/;" m struct:CFF_GlyphSlotRec_ +hint android/freetype/src/pshinter/pshalgo.h /^ PSH_Hint hint;$/;" m struct:PSH_PointRec_ +hint src/picasso_font.h /^ bool hint(void) const { return m_hint; }$/;" f class:picasso::font_desc +hint_masks android/freetype/src/pshinter/pshalgo.h /^ PS_Mask_Table hint_masks;$/;" m struct:PSH_Hint_TableRec_ +hint_mode android/freetype/include/freetype/internal/psaux.h /^ FT_Render_Mode hint_mode;$/;" m struct:T1_DecoderRec_ +hint_mode android/freetype/src/cff/cffgload.h /^ FT_Render_Mode hint_mode;$/;" m struct:CFF_Decoder_ +hint_mode include/freetype/internal/psaux.h /^ FT_Render_Mode hint_mode;$/;" m struct:T1_DecoderRec_ +hint_tables android/freetype/src/pshinter/pshalgo.h /^ PSH_Hint_TableRec hint_tables[2];$/;" m struct:PSH_GlyphRec_ +hint_type android/freetype/src/pshinter/pshrec.h /^ PS_Hint_Type hint_type;$/;" m struct:PS_HintsRec_ +hintmask android/freetype/include/freetype/internal/pshints.h /^ T2_Hints_MaskFunc hintmask;$/;" m struct:T2_Hints_FuncsRec_ +hintmask include/freetype/internal/pshints.h /^ T2_Hints_MaskFunc hintmask;$/;" m struct:T2_Hints_FuncsRec_ +hints android/freetype/include/freetype/internal/pshints.h /^ T1_Hints hints;$/;" m struct:T1_Hints_FuncsRec_ +hints android/freetype/include/freetype/internal/pshints.h /^ T2_Hints hints;$/;" m struct:T2_Hints_FuncsRec_ +hints android/freetype/src/autofit/afhints.h /^ af_glyph_hints_done( AF_GlyphHints hints );$/;" v +hints android/freetype/src/autofit/afloader.h /^ AF_GlyphHintsRec hints;$/;" m struct:AF_LoaderRec_ +hints android/freetype/src/autofit/aftypes.h /^ AF_GlyphHints hints;$/;" m struct:AF_OutlineRec_ +hints android/freetype/src/pshinter/pshalgo.h /^ PSH_Hint hints;$/;" m struct:PSH_Hint_TableRec_ +hints android/freetype/src/pshinter/pshrec.h /^ PS_Hint hints;$/;" m struct:PS_Hint_TableRec_ +hints android/freetype/src/pshinter/pshrec.h /^ PS_Hint_TableRec hints;$/;" m struct:PS_DimensionRec_ +hints android/freetype/src/pshinter/pshrec.h /^ ps_hints_done( PS_Hints hints );$/;" v +hints include/freetype/internal/pshints.h /^ T1_Hints hints;$/;" m struct:T1_Hints_FuncsRec_ +hints include/freetype/internal/pshints.h /^ T2_Hints hints;$/;" m struct:T2_Hints_FuncsRec_ +hints_funcs android/freetype/include/freetype/internal/psaux.h /^ void* hints_funcs; \/* hinter-specific *\/$/;" m struct:T1_BuilderRec_ +hints_funcs android/freetype/src/cff/cffgload.h /^ void* hints_funcs; \/* hinter-specific *\/$/;" m struct:CFF_Builder_ +hints_funcs include/freetype/internal/psaux.h /^ void* hints_funcs; \/* hinter-specific *\/$/;" m struct:T1_BuilderRec_ +hints_globals android/freetype/include/freetype/internal/psaux.h /^ void* hints_globals; \/* hinter-specific *\/$/;" m struct:T1_BuilderRec_ +hints_globals android/freetype/src/cff/cffgload.h /^ void* hints_globals; \/* hinter-specific *\/$/;" m struct:CFF_Builder_ +hints_globals include/freetype/internal/psaux.h /^ void* hints_globals; \/* hinter-specific *\/$/;" m struct:T1_BuilderRec_ +hit src/gfx/gfx_rasterizer_scanline.h /^ bool hit(void) const { return m_hit; }$/;" f class:gfx::scanline_hit_test +hit_test src/gfx/gfx_rasterizer_scanline.h /^ bool hit_test(int tx, int ty)$/;" f class:gfx::gfx_rasterizer_scanline_aa +hline_rel src/core/graphic_path.cpp /^void graphic_path::hline_rel(scalar dx)$/;" f class:picasso::graphic_path +hline_to src/core/graphic_path.cpp /^void graphic_path::hline_to(scalar x)$/;" f class:picasso::graphic_path +hmWnd demos/platform_minigui.c /^HWND hmWnd;$/;" v +hmWnd demos/platform_win32.c /^HWND hmWnd;$/;" v +hole src/picasso_gpc.cpp /^ int hole; \/* Hole \/ external contour flag *\/$/;" m struct:picasso::p_shape file: +hole src/picasso_gpc.h /^ int *hole; \/\/ hole \/ external contour flags$/;" m struct:picasso::__anon221 +hole_flag src/include/convert.h /^ int hole_flag;$/;" m struct:picasso::conv_clipper::__anon188 +hori android/freetype/include/freetype/internal/tttypes.h /^ TT_SBit_LineMetricsRec hori;$/;" m struct:TT_SBit_ScaleRec_ +hori android/freetype/include/freetype/internal/tttypes.h /^ TT_SBit_LineMetricsRec hori;$/;" m struct:TT_SBit_StrikeRec_ +hori include/freetype/internal/tttypes.h /^ TT_SBit_LineMetricsRec hori;$/;" m struct:TT_SBit_ScaleRec_ +hori include/freetype/internal/tttypes.h /^ TT_SBit_LineMetricsRec hori;$/;" m struct:TT_SBit_StrikeRec_ +horiAdvance android/freetype/include/freetype/freetype.h /^ FT_Pos horiAdvance;$/;" m struct:FT_Glyph_Metrics_ +horiAdvance android/freetype/include/freetype/internal/tttypes.h /^ FT_Byte horiAdvance;$/;" m struct:TT_SBit_MetricsRec_ +horiAdvance include/freetype/freetype.h /^ FT_Pos horiAdvance;$/;" m struct:FT_Glyph_Metrics_ +horiAdvance include/freetype/internal/tttypes.h /^ FT_Byte horiAdvance;$/;" m struct:TT_SBit_MetricsRec_ +horiBearingX android/freetype/include/freetype/freetype.h /^ FT_Pos horiBearingX;$/;" m struct:FT_Glyph_Metrics_ +horiBearingX android/freetype/include/freetype/internal/tttypes.h /^ FT_Char horiBearingX;$/;" m struct:TT_SBit_MetricsRec_ +horiBearingX include/freetype/freetype.h /^ FT_Pos horiBearingX;$/;" m struct:FT_Glyph_Metrics_ +horiBearingX include/freetype/internal/tttypes.h /^ FT_Char horiBearingX;$/;" m struct:TT_SBit_MetricsRec_ +horiBearingY android/freetype/include/freetype/freetype.h /^ FT_Pos horiBearingY;$/;" m struct:FT_Glyph_Metrics_ +horiBearingY android/freetype/include/freetype/internal/tttypes.h /^ FT_Char horiBearingY;$/;" m struct:TT_SBit_MetricsRec_ +horiBearingY include/freetype/freetype.h /^ FT_Pos horiBearingY;$/;" m struct:FT_Glyph_Metrics_ +horiBearingY include/freetype/internal/tttypes.h /^ FT_Char horiBearingY;$/;" m struct:TT_SBit_MetricsRec_ +horiResolution android/freetype/include/freetype/freetype.h /^ FT_UInt horiResolution;$/;" m struct:FT_Size_RequestRec_ +horiResolution include/freetype/freetype.h /^ FT_UInt horiResolution;$/;" m struct:FT_Size_RequestRec_ +horizontal android/freetype/include/freetype/internal/tttypes.h /^ TT_HoriHeader horizontal; \/* TrueType horizontal header *\/$/;" m struct:TT_FaceRec_ +horizontal include/freetype/internal/tttypes.h /^ TT_HoriHeader horizontal; \/* TrueType horizontal header *\/$/;" m struct:TT_FaceRec_ +horizontal_resolution android/freetype/include/freetype/ftwinfnt.h /^ FT_UShort horizontal_resolution;$/;" m struct:FT_WinFNT_HeaderRec_ +horizontal_resolution include/freetype/ftwinfnt.h /^ FT_UShort horizontal_resolution;$/;" m struct:FT_WinFNT_HeaderRec_ +horz_metrics android/freetype/include/freetype/internal/tttypes.h /^ FT_Byte* horz_metrics;$/;" m struct:TT_FaceRec_ +horz_metrics include/freetype/internal/tttypes.h /^ FT_Byte* horz_metrics;$/;" m struct:TT_FaceRec_ +horz_metrics_offset android/freetype/include/freetype/internal/tttypes.h /^ FT_ULong horz_metrics_offset;$/;" m struct:TT_FaceRec_ +horz_metrics_offset include/freetype/internal/tttypes.h /^ FT_ULong horz_metrics_offset;$/;" m struct:TT_FaceRec_ +horz_metrics_size android/freetype/include/freetype/internal/tttypes.h /^ FT_ULong horz_metrics_size;$/;" m struct:TT_FaceRec_ +horz_metrics_size include/freetype/internal/tttypes.h /^ FT_ULong horz_metrics_size;$/;" m struct:TT_FaceRec_ +host src/picasso_objects.h /^ void *host;$/;" m struct:_ps_canvas +host src/picasso_objects.h /^ void *host;$/;" m struct:_ps_image +hourCursorPath demos/clock.c /^static ps_path* hourCursorPath;$/;" v file: +hourTagPath demos/clock.c /^static ps_path* hourTagPath;$/;" v file: +i android/freetype/src/psaux/afmparse.h /^ FT_Int i;$/;" m union:AFM_ValueRec_::__anon31 +i tools/gyp/build/lib/gyp/xcodeproj_file.py /^ i = i + 1$/;" v class:XCObject +i tools/gyp/build/lib/gyp/xcodeproj_file.py /^ i = 0$/;" v class:XCObject +i tools/gyp/pylib/gyp/xcodeproj_file.py /^ i = i + 1$/;" v class:XCObject +i tools/gyp/pylib/gyp/xcodeproj_file.py /^ i = 0$/;" v class:XCObject +ibmp test/testWin.c /^BITMAP ibmp;$/;" v +id android/expat/lib/xmlparse.c /^ const ATTRIBUTE_ID *id;$/;" m struct:__anon14 file: +idAtt android/expat/lib/xmlparse.c /^ const ATTRIBUTE_ID *idAtt;$/;" m struct:__anon16 file: +idAttIndex android/expat/lib/xmlparse.c /^#define idAttIndex /;" d file: +ident android/freetype/include/freetype/internal/psaux.h /^ const char* ident; \/* field identifier *\/$/;" m struct:T1_FieldRec_ +ident include/freetype/internal/psaux.h /^ const char* ident; \/* field identifier *\/$/;" m struct:T1_FieldRec_ +idx android/freetype/include/freetype/internal/ftdebug.h /^ FT_Trace_Get_Name( FT_Int idx );$/;" v +idx include/freetype/internal/ftdebug.h /^ FT_Trace_Get_Name( FT_Int idx );$/;" v +ie src/picasso_gpc.cpp /^ edge_node *ie[2]; \/* Intersecting edge (bundle) pair *\/$/;" m struct:picasso::it_shape file: +ignoreSectionProcessor android/expat/lib/xmlparse.c /^ignoreSectionProcessor(XML_Parser parser,$/;" f file: +ignoreSectionProcessor android/expat/lib/xmlparse.c /^static Processor ignoreSectionProcessor;$/;" v file: +ignoreSectionTok android/expat/lib/xmltok_impl.c /^PREFIX(ignoreSectionTok)(const ENCODING *enc, const char *ptr,$/;" f file: +ignore_unpatented_hinter android/freetype/include/freetype/internal/ftobjs.h /^ FT_Bool ignore_unpatented_hinter;$/;" m struct:FT_Face_InternalRec_ +ignore_unpatented_hinter include/freetype/internal/ftobjs.h /^ FT_Bool ignore_unpatented_hinter;$/;" m struct:FT_Face_InternalRec_ +image demos/interface.h /^ ps_image* image;$/;" m struct:_picture +image demos/platform_qt4.cpp /^ QImage image;$/;" m class:PWindow file: +image_accessor src/gfx/gfx_image_accessors.h /^ explicit image_accessor(const PixFmt& pixf)$/;" f class:gfx::image_accessor +image_accessor src/gfx/gfx_image_accessors.h /^template class image_accessor$/;" c namespace:gfx +image_accessor_wrap src/gfx/gfx_image_accessors.h /^ explicit image_accessor_wrap(const PixFmt& pixf)$/;" f class:gfx::image_accessor_wrap +image_accessor_wrap src/gfx/gfx_image_accessors.h /^template class image_accessor_wrap$/;" c namespace:gfx +image_filter src/gfx/gfx_image_filters.cpp /^ image_filter()$/;" f class:gfx::image_filter +image_filter src/gfx/gfx_image_filters.cpp /^class image_filter : public image_filter_adapter$/;" c namespace:gfx file: +image_filter_adapter src/gfx/gfx_image_filters.h /^ image_filter_adapter()$/;" f class:gfx::image_filter_adapter +image_filter_adapter src/gfx/gfx_image_filters.h /^class image_filter_adapter$/;" c namespace:gfx +image_filter_bilinear src/gfx/gfx_image_filters.cpp /^class image_filter_bilinear$/;" c namespace:gfx file: +image_filter_gaussian src/gfx/gfx_image_filters.cpp /^class image_filter_gaussian$/;" c namespace:gfx file: +image_filter_mask src/include/graphic_base.h /^ image_filter_mask = image_filter_scale - 1 \/\/ image_filter_mask $/;" e enum:picasso::__anon202 +image_filter_scale src/include/graphic_base.h /^ image_filter_scale = 1 << image_filter_shift, \/\/ image_filter_scale $/;" e enum:picasso::__anon202 +image_filter_shift src/include/graphic_base.h /^ image_filter_shift = 14, \/\/ image_filter_shift$/;" e enum:picasso::__anon202 +image_format android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort image_format;$/;" m struct:TT_SBit_RangeRec_ +image_format include/freetype/internal/tttypes.h /^ FT_UShort image_format;$/;" m struct:TT_SBit_RangeRec_ +image_holder src/gfx/gfx_painter.h /^ } image_holder;$/;" t class:gfx::gfx_painter typeref:struct:gfx::gfx_painter::__anon64 +image_offset android/freetype/include/freetype/internal/tttypes.h /^ FT_ULong image_offset;$/;" m struct:TT_SBit_RangeRec_ +image_offset include/freetype/internal/tttypes.h /^ FT_ULong image_offset;$/;" m struct:TT_SBit_RangeRec_ +image_size android/freetype/include/freetype/internal/tttypes.h /^ FT_ULong image_size;$/;" m struct:TT_SBit_RangeRec_ +image_size include/freetype/internal/tttypes.h /^ FT_ULong image_size;$/;" m struct:TT_SBit_RangeRec_ +image_subpixel_mask src/include/graphic_base.h /^ image_subpixel_mask = image_subpixel_scale - 1 \/\/ image_subpixel_mask $/;" e enum:picasso::__anon203 +image_subpixel_scale src/include/graphic_base.h /^ image_subpixel_scale = 1 << image_subpixel_shift, \/\/ image_subpixel_scale $/;" e enum:picasso::__anon203 +image_subpixel_shift src/include/graphic_base.h /^ image_subpixel_shift = 8, \/\/ image_subpixel_shift$/;" e enum:picasso::__anon203 +img src/picasso_objects.h /^ ps_image *img;$/;" m struct:_ps_pattern +img1 test/testQt4.cpp /^QImage * img1;$/;" v +img2 test/testQt4.cpp /^QImage * img2;$/;" v +img_height demos/lake.c /^static int img_height;$/;" v file: +img_width demos/lake.c /^static int img_width;$/;" v file: +impl src/picasso_gradient.h /^ abstract_gradient_adapter* impl(void) const { return m_impl; }$/;" f class:picasso::gradient_adapter +impl src/picasso_mask.h /^ abstract_mask_layer* impl(void) const { return m_impl; }$/;" f class:picasso::mask_layer +impl src/picasso_matrix.h /^ abstract_trans_affine* impl(void) const { return m_impl; }$/;" f class:picasso::trans_affine +impl src/picasso_raster_adapter.h /^ abstract_raster_adapter* impl(void) const { return m_impl; }$/;" f class:picasso::raster_adapter +impl src/picasso_rendering_buffer.h /^ abstract_rendering_buffer* impl(void) const { return m_impl; }$/;" f class:picasso::rendering_buffer +implicitContext android/expat/lib/xmlparse.c /^static const XML_Char implicitContext[] = {$/;" v file: +inEntityValue android/expat/lib/xmlrole.h /^ int inEntityValue;$/;" m struct:prolog_state +in_dir android/freetype/src/autofit/afhints.h /^ FT_Char in_dir; \/* direction of inwards vector *\/$/;" m struct:AF_PointRec_ +in_eldecl android/expat/lib/xmlparse.c /^ XML_Bool in_eldecl;$/;" m struct:__anon17 file: +inbox src/gfx/gfx_renderer.h /^ bool inbox(int x, int y) const$/;" f class:gfx::gfx_renderer +include tools/gyp/build/lib/gyp/ninja_syntax.py /^ def include(self, path):$/;" m class:Writer +include tools/gyp/pylib/gyp/ninja_syntax.py /^ def include(self, path):$/;" m class:Writer +includeLevel android/expat/lib/xmlrole.h /^ unsigned includeLevel;$/;" m struct:prolog_state +incremental_interface android/freetype/include/freetype/internal/ftobjs.h /^ FT_Incremental_InterfaceRec* incremental_interface;$/;" m struct:FT_Face_InternalRec_ +incremental_interface include/freetype/internal/ftobjs.h /^ FT_Incremental_InterfaceRec* incremental_interface;$/;" m struct:FT_Face_InternalRec_ +index android/freetype/include/freetype/internal/ftgloadr.h /^ FT_Int index;$/;" m struct:FT_SubGlyphRec_ +index android/freetype/src/truetype/ttobjs.h /^ FT_Long index; \/* subglyph index; initialized with -1 *\/$/;" m struct:TT_SubglyphRec_ +index include/freetype/internal/ftgloadr.h /^ FT_Int index;$/;" m struct:FT_SubGlyphRec_ +index src/include/graphic_base.h /^ unsigned int index;$/;" m struct:picasso::_glyph +index1 android/freetype/include/freetype/internal/t1types.h /^ FT_Int index1;$/;" m struct:AFM_KernPairRec_ +index1 include/freetype/internal/t1types.h /^ FT_Int index1;$/;" m struct:AFM_KernPairRec_ +index2 android/freetype/include/freetype/internal/t1types.h /^ FT_Int index2;$/;" m struct:AFM_KernPairRec_ +index2 include/freetype/internal/t1types.h /^ FT_Int index2;$/;" m struct:AFM_KernPairRec_ +index_format android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort index_format;$/;" m struct:TT_SBit_RangeRec_ +index_format include/freetype/internal/tttypes.h /^ FT_UShort index_format;$/;" m struct:TT_SBit_RangeRec_ +indices android/freetype/src/psaux/t1cmap.h /^ FT_UShort* indices;$/;" m struct:T1_CMapCustomRec_ +inheritedBindings android/expat/lib/xmlparse.c /^#define inheritedBindings /;" d file: +init android/freetype/include/freetype/internal/ftobjs.h /^ FT_CMap_InitFunc init;$/;" m struct:FT_CMap_ClassRec_ +init android/freetype/include/freetype/internal/psaux.h /^ (*init)( AFM_Parser parser,$/;" m struct:AFM_Parser_FuncsRec_ +init android/freetype/include/freetype/internal/psaux.h /^ (*init)( PS_Parser parser,$/;" m struct:PS_Parser_FuncsRec_ +init android/freetype/include/freetype/internal/psaux.h /^ (*init)( PS_Table table,$/;" m struct:PS_Table_FuncsRec_ +init android/freetype/include/freetype/internal/psaux.h /^ (*init)( T1_Builder builder,$/;" m struct:T1_Builder_FuncsRec_ +init android/freetype/include/freetype/internal/psaux.h /^ (*init)( T1_Decoder decoder,$/;" m struct:T1_Decoder_FuncsRec_ +init android/freetype/include/freetype/internal/psaux.h /^ FT_Long init;$/;" m struct:PS_TableRec_ +init include/freetype/internal/ftobjs.h /^ FT_CMap_InitFunc init;$/;" m struct:FT_CMap_ClassRec_ +init include/freetype/internal/psaux.h /^ (*init)( AFM_Parser parser,$/;" m struct:AFM_Parser_FuncsRec_ +init include/freetype/internal/psaux.h /^ (*init)( PS_Parser parser,$/;" m struct:PS_Parser_FuncsRec_ +init include/freetype/internal/psaux.h /^ (*init)( PS_Table table,$/;" m struct:PS_Table_FuncsRec_ +init include/freetype/internal/psaux.h /^ (*init)( T1_Builder builder,$/;" m struct:T1_Builder_FuncsRec_ +init include/freetype/internal/psaux.h /^ (*init)( T1_Decoder decoder,$/;" m struct:T1_Decoder_FuncsRec_ +init include/freetype/internal/psaux.h /^ FT_Long init;$/;" m struct:PS_TableRec_ +init src/core/curve.cpp /^void curve3_div::init(scalar x1, scalar y1, scalar x2, scalar y2, scalar x3, scalar y3)$/;" f class:picasso::curve3_div +init src/core/curve.cpp /^void curve3_inc::init(scalar x1, scalar y1, scalar x2, scalar y2, scalar x3, scalar y3)$/;" f class:picasso::curve3_inc +init src/core/curve.cpp /^void curve4_div::init(scalar x1, scalar y1, $/;" f class:picasso::curve4_div +init src/core/curve.cpp /^void curve4_inc::init(scalar x1, scalar y1, scalar x2, scalar y2, scalar x3, scalar y3, scalar x4, scalar y4)$/;" f class:picasso::curve4_inc +init src/gfx/gfx_gradient_adapter.cpp /^ virtual void init(scalar r, scalar x, scalar y)$/;" f class:gfx::gfx_gradient +init src/gfx/gfx_gradient_adapter.cpp /^ void init(scalar r, scalar fx, scalar fy)$/;" f class:gfx::gradient_radial_focus +init src/gfx/gfx_gradient_adapter.cpp /^ void init(scalar, scalar, scalar) { }$/;" f class:gfx::gradient_conic +init src/gfx/gfx_gradient_adapter.cpp /^ void init(scalar, scalar, scalar) { }$/;" f class:gfx::gradient_radial +init src/gfx/gfx_gradient_adapter.cpp /^ void init(scalar, scalar, scalar) { }$/;" f class:gfx::gradient_x +init src/gfx/gfx_rendering_buffer.cpp /^void gfx_rendering_buffer::init(byte* ptr, unsigned int width, unsigned int height, int stride)$/;" f class:gfx::gfx_rendering_buffer +init src/gfx/gfx_scanline_storage.h /^ void init(const uint8_t* ptr, int dx, int dy)$/;" f class:gfx::gfx_serialized_scanlines_adaptor_aa::embedded_scanline +init src/gfx/gfx_scanline_storage.h /^ void init(const uint8_t* ptr, int dx, int dy)$/;" f class:gfx::gfx_serialized_scanlines_adaptor_bin::embedded_scanline +init src/gfx/gfx_scanline_storage.h /^ void init(unsigned int scanline_idx)$/;" f class:gfx::gfx_scanline_storage_aa::embedded_scanline +init src/gfx/gfx_scanline_storage.h /^ void init(unsigned int scanline_idx)$/;" f class:gfx::gfx_scanline_storage_bin::embedded_scanline +init src/gfx/gfx_scanline_storage.h /^ void init(const uint8_t* data, unsigned int size, scalar dx, scalar dy)$/;" f class:gfx::gfx_serialized_scanlines_adaptor_bin +init src/gfx/gfx_scanline_storage.h /^ void init(const uint8_t* data, unsigned size, scalar dx, scalar dy)$/;" f class:gfx::gfx_serialized_scanlines_adaptor_aa +init src/include/geometry.h /^ void init(scalar x, scalar y, scalar rx, scalar ry, scalar a1, scalar a2, bool ccw = true)$/;" f class:picasso::arc +init src/include/geometry.h /^ void init(scalar x, scalar y, scalar rx, scalar ry, scalar start_angle, scalar sweep_angle) $/;" f class:picasso::bezier_arc +init src/include/geometry.h /^ void init(scalar x, scalar y, scalar rx, scalar ry, unsigned int num_steps = 0, bool cw = false) $/;" f class:picasso::ellipse +init src/include/geometry.h /^ void init(scalar x0, scalar y0, scalar rx, scalar ry, $/;" f class:picasso::bezier_arc_svg +init src/include/geometry.h /^ void init(scalar x1, scalar y1, scalar x2, scalar y2, $/;" f class:picasso::curve4 +init src/include/geometry.h /^ void init(scalar x1, scalar y1, scalar x2, scalar y2, scalar x3, scalar y3)$/;" f class:picasso::curve3 +initEnc android/expat/lib/xmltok.h /^ ENCODING initEnc;$/;" m struct:__anon22 +initEncoding android/expat/lib/xmlparse.c /^#define initEncoding /;" d file: +initScan android/expat/lib/xmltok.c /^initScan(const ENCODING * const *encodingTable,$/;" f file: +initScanContent android/expat/lib/xmltok_ns.c /^NS(initScanContent)(const ENCODING *enc, const char *ptr, const char *end,$/;" f file: +initScanProlog android/expat/lib/xmltok_ns.c /^NS(initScanProlog)(const ENCODING *enc, const char *ptr, const char *end,$/;" f file: +initUpdatePosition android/expat/lib/xmltok.c /^initUpdatePosition(const ENCODING *enc, const char *ptr,$/;" f file: +init_conic src/gfx/gfx_gradient_adapter.cpp /^void gfx_gradient_adapter::init_conic(int spread, scalar x, scalar y, scalar angle)$/;" f class:gfx::gfx_gradient_adapter +init_conic src/picasso_gradient.cpp /^void gradient_adapter::init_conic(int spread, scalar x, scalar y, scalar angle)$/;" f class:picasso::gradient_adapter +init_context test/alpha_func.c /^void init_context (ps_context* gc, ps_canvas* cs, unsigned char* buf)$/;" f +init_context test/bitblt_func.c /^void init_context (ps_context* gc, ps_canvas* cs, unsigned char* buf)$/;" f +init_context test/blur_func.c /^void init_context (ps_context* gc, ps_canvas* cs, unsigned char* buf)$/;" f +init_context test/clip_func.c /^void init_context (ps_context* gc, ps_canvas* cs, unsigned char* buf)$/;" f +init_context test/composite_func.c /^void init_context (ps_context* gc, ps_canvas* cs, unsigned char* buf)$/;" f +init_context test/gamma_func.c /^void init_context (ps_context* gc, ps_canvas* cs, unsigned char* buf)$/;" f +init_context test/gcstate_func.c /^void init_context (ps_context* gc, ps_canvas* cs, unsigned char* buf)$/;" f +init_context test/gradient_func.c /^void init_context (ps_context* gc, ps_canvas* cs, unsigned char* buf)$/;" f +init_context test/mask_func.c /^void init_context (ps_context* gc, ps_canvas* cs, unsigned char* buf)$/;" f +init_context test/part_func.c /^void init_context (ps_context* gc, ps_canvas* cs, unsigned char* buf)$/;" f +init_context test/path_func.c /^void init_context (ps_context* gc, ps_canvas* cs, unsigned char* buf)$/;" f +init_context test/pattern_func.c /^void init_context (ps_context* gc, ps_canvas* cs, unsigned char* buf)$/;" f +init_context test/shadow_func.c /^void init_context (ps_context* gc, ps_canvas* cs, unsigned char* buf)$/;" f +init_context test/text_func.c /^void init_context (ps_context* gc, ps_canvas* cs, unsigned char* buf)$/;" f +init_context test/thread_func.c /^void init_context (ps_context* gc, ps_canvas* cs, unsigned char* buf)$/;" f +init_face android/freetype/include/freetype/internal/ftdriver.h /^ FT_Face_InitFunc init_face;$/;" m struct:FT_Driver_ClassRec_ +init_face android/freetype/include/freetype/internal/sfnt.h /^ TT_Init_Face_Func init_face;$/;" m struct:SFNT_Interface_ +init_face include/freetype/internal/ftdriver.h /^ FT_Face_InitFunc init_face;$/;" m struct:FT_Driver_ClassRec_ +init_face include/freetype/internal/sfnt.h /^ TT_Init_Face_Func init_face;$/;" m struct:SFNT_Interface_ +init_linear src/gfx/gfx_gradient_adapter.cpp /^void gfx_gradient_adapter::init_linear(int spread, scalar x1, scalar y1, scalar x2, scalar y2)$/;" f class:gfx::gfx_gradient_adapter +init_linear src/picasso_gradient.cpp /^void gradient_adapter::init_linear(int spread, scalar x1, scalar y1, scalar x2, scalar y2)$/;" f class:picasso::gradient_adapter +init_mask test/mask_func.c /^void init_mask(ps_byte* buffer, int w, int h)$/;" f +init_pixbuf demos/platform_gtk2.c /^static void init_pixbuf()$/;" f file: +init_pixbuf test/testGtk2.c /^static void init_pixbuf()$/;" f file: +init_radial src/gfx/gfx_gradient_adapter.cpp /^void gfx_gradient_adapter::init_radial(int spread, scalar x1, scalar y1, scalar radius1, $/;" f class:gfx::gfx_gradient_adapter +init_radial src/picasso_gradient.cpp /^void gradient_adapter::init_radial(int spread, scalar x1, scalar y1, scalar radius1, $/;" f class:picasso::gradient_adapter +init_raster_data src/picasso_painter.cpp /^void painter::init_raster_data(context_state* state, unsigned int methods, $/;" f class:picasso::painter +init_size android/freetype/include/freetype/internal/ftdriver.h /^ FT_Size_InitFunc init_size;$/;" m struct:FT_Driver_ClassRec_ +init_size include/freetype/internal/ftdriver.h /^ FT_Size_InitFunc init_size;$/;" m struct:FT_Driver_ClassRec_ +init_slot android/freetype/include/freetype/internal/ftdriver.h /^ FT_Slot_InitFunc init_slot;$/;" m struct:FT_Driver_ClassRec_ +init_slot include/freetype/internal/ftdriver.h /^ FT_Slot_InitFunc init_slot;$/;" m struct:FT_Driver_ClassRec_ +init_source_data src/picasso_painter.cpp /^void painter::init_source_data(context_state* state, unsigned int methods, const graphic_path& p)$/;" f class:picasso::painter +init_span src/gfx/gfx_mask_layer.h /^ void init_span(unsigned int len)$/;" f class:gfx::gfx_pixfmt_amask_adaptor +init_span src/gfx/gfx_mask_layer.h /^ void init_span(unsigned int len, const cover_type* covers)$/;" f class:gfx::gfx_pixfmt_amask_adaptor +init_span src/gfx/gfx_scanline_storage.h /^ void init_span(void)$/;" f class:gfx::gfx_scanline_storage_aa::embedded_scanline::const_iterator +init_span src/gfx/gfx_scanline_storage.h /^ void init_span(void)$/;" f class:gfx::gfx_serialized_scanlines_adaptor_aa::embedded_scanline::const_iterator +initial src/gfx/gfx_rasterizer_scanline.h /^ bool initial(void)$/;" f class:gfx::gfx_rasterizer_scanline_aa +initial src/gfx/gfx_rasterizer_scanline.h /^ void initial(void)$/;" f struct:gfx::cell +initial src/include/convert.h /^ initial,$/;" e enum:picasso::conv_dash::__anon190 +initial src/include/convert.h /^ initial,$/;" e enum:picasso::conv_stroke::__anon192 +initial_random_seed android/freetype/src/cff/cfftypes.h /^ FT_Long initial_random_seed;$/;" m struct:CFF_PrivateRec_ +initialize src/picasso_font.cpp /^bool font_engine::initialize(void)$/;" f class:picasso::font_engine +initializeEncoding android/expat/lib/xmlparse.c /^initializeEncoding(XML_Parser parser)$/;" f file: +inline android/expat/lib/internal.h /^#define inline /;" d +inline android/expat/lib/internal.h /^#define inline$/;" d +inline demos/timeuse.h /^#define inline /;" d +inline test/timeuse.h /^#define inline /;" d +inner src/picasso_objects.h /^ inner_join inner;$/;" m struct:picasso::graphic_pen +innerBevelPath demos/clock.c /^static ps_path* innerBevelPath;$/;" v file: +inner_bevel src/include/graphic_base.h /^ inner_bevel,$/;" e enum:picasso::__anon206 +inner_jag src/include/graphic_base.h /^ inner_jag,$/;" e enum:picasso::__anon206 +inner_join src/include/graphic_base.h /^} inner_join;$/;" t namespace:picasso typeref:enum:picasso::__anon206 +inner_miter src/include/graphic_base.h /^ inner_miter,$/;" e enum:picasso::__anon206 +inner_round src/include/graphic_base.h /^ inner_round$/;" e enum:picasso::__anon206 +input tools/gyp/build/lib/gyp/__init__.py /^import gyp.input$/;" i +input tools/gyp/pylib/gyp/__init__.py /^import gyp.input$/;" i +ins_pos android/freetype/include/freetype/internal/tttypes.h /^ FT_ULong ins_pos;$/;" m struct:TT_LoaderRec_ +ins_pos include/freetype/internal/tttypes.h /^ FT_ULong ins_pos;$/;" m struct:TT_LoaderRec_ +insert_at src/include/data_vector.h /^inline bool pod_vector::insert_at(unsigned int pos, const T& val)$/;" f class:picasso::pod_vector +insert_bound src/picasso_gpc.cpp /^static void insert_bound(edge_node **b, edge_node *e)$/;" f namespace:picasso +install tools/gyp/setup.py /^from distutils.command.install import install$/;" i +install_lib tools/gyp/setup.py /^from distutils.command.install_lib import install_lib$/;" i +install_scripts tools/gyp/setup.py /^from distutils.command.install_scripts import install_scripts$/;" i +instanceCount android/freetype/src/truetype/ttgxvar.c /^ FT_UShort instanceCount;$/;" m struct:GX_FVar_Head_ file: +instanceSize android/freetype/src/truetype/ttgxvar.c /^ FT_UShort instanceSize;$/;" m struct:GX_FVar_Head_ file: +instruct_control android/freetype/src/truetype/ttobjs.h /^ FT_Byte instruct_control;$/;" m struct:TT_GraphicsState_ +instruction_defs android/freetype/src/truetype/ttobjs.h /^ TT_DefArray instruction_defs; \/* table of ins. definitions *\/$/;" m struct:TT_SizeRec_ +instruction_trap android/freetype/src/truetype/ttinterp.h /^ FT_Bool instruction_trap; \/* If `True', the interpreter will *\/$/;" m struct:TT_ExecContextRec_ +instructions android/freetype/include/freetype/internal/tttypes.h /^ FT_Byte* instructions;$/;" m struct:TT_LoaderRec_ +instructions include/freetype/internal/tttypes.h /^ FT_Byte* instructions;$/;" m struct:TT_LoaderRec_ +int16_t src/include/common.h /^typedef signed short int16_t;$/;" t +int32_t src/include/common.h /^typedef signed int int32_t;$/;" t +int32_t src/include/fixedopt.h /^typedef int int32_t;$/;" t +int64_t src/include/fixedopt.h /^typedef __int64 int64_t;$/;" t +int64_t src/include/fixedopt.h /^typedef long long int64_t;$/;" t +int8_t src/include/common.h /^typedef signed char int8_t;$/;" t +integer android/freetype/include/freetype/ftbdf.h /^ FT_Int32 integer;$/;" m union:BDF_PropertyRec_::__anon24 +integer include/freetype/ftbdf.h /^ FT_Int32 integer;$/;" m union:BDF_PropertyRec_::__anon53 +intermediate_builder_name tools/gyp/build/lib/gyp/SCons.py /^ intermediate_builder_name = 'SharedObject'$/;" v class:LoadableModuleTarget +intermediate_builder_name tools/gyp/build/lib/gyp/SCons.py /^ intermediate_builder_name = 'SharedObject'$/;" v class:SharedLibraryTarget +intermediate_builder_name tools/gyp/build/lib/gyp/SCons.py /^ intermediate_builder_name = 'StaticObject'$/;" v class:ProgramTarget +intermediate_builder_name tools/gyp/build/lib/gyp/SCons.py /^ intermediate_builder_name = 'StaticObject'$/;" v class:StaticLibraryTarget +intermediate_builder_name tools/gyp/build/lib/gyp/SCons.py /^ intermediate_builder_name = None$/;" v class:CompilableSourcesTargetBase +intermediate_builder_name tools/gyp/pylib/gyp/SCons.py /^ intermediate_builder_name = 'SharedObject'$/;" v class:LoadableModuleTarget +intermediate_builder_name tools/gyp/pylib/gyp/SCons.py /^ intermediate_builder_name = 'SharedObject'$/;" v class:SharedLibraryTarget +intermediate_builder_name tools/gyp/pylib/gyp/SCons.py /^ intermediate_builder_name = 'StaticObject'$/;" v class:ProgramTarget +intermediate_builder_name tools/gyp/pylib/gyp/SCons.py /^ intermediate_builder_name = 'StaticObject'$/;" v class:StaticLibraryTarget +intermediate_builder_name tools/gyp/pylib/gyp/SCons.py /^ intermediate_builder_name = None$/;" v class:CompilableSourcesTargetBase +internal android/freetype/include/freetype/freetype.h /^ FT_Face_Internal internal;$/;" m struct:FT_FaceRec_ +internal android/freetype/include/freetype/freetype.h /^ FT_Size_Internal internal;$/;" m struct:FT_SizeRec_ +internal android/freetype/include/freetype/freetype.h /^ FT_Slot_Internal internal;$/;" m struct:FT_GlyphSlotRec_ +internal include/freetype/freetype.h /^ FT_Face_Internal internal;$/;" m struct:FT_FaceRec_ +internal include/freetype/freetype.h /^ FT_Size_Internal internal;$/;" m struct:FT_SizeRec_ +internal include/freetype/freetype.h /^ FT_Slot_Internal internal;$/;" m struct:FT_GlyphSlotRec_ +internalEncoding android/expat/lib/xmlparse.c /^#define internalEncoding /;" d file: +internalEntityProcessor android/expat/lib/xmlparse.c /^internalEntityProcessor(XML_Parser parser,$/;" f file: +internalEntityProcessor android/expat/lib/xmlparse.c /^static Processor internalEntityProcessor;$/;" v file: +internalEntityRefHandler android/expat/lib/xmlparse.c /^#define internalEntityRefHandler /;" d file: +internalEventEndPtr android/expat/lib/xmlparse.c /^ const char *internalEventEndPtr;$/;" m struct:open_internal_entity file: +internalEventPtr android/expat/lib/xmlparse.c /^ const char *internalEventPtr;$/;" m struct:open_internal_entity file: +internalSubset android/expat/lib/xmlrole.c /^ internalSubset,$/;" v file: +internalSubset android/expat/lib/xmlrole.c /^internalSubset(PROLOG_STATE *state,$/;" f file: +internal_big2_encoding android/expat/lib/xmltok.c /^static const struct normal_encoding internal_big2_encoding = {$/;" v typeref:struct:normal_encoding file: +internal_big2_encoding_ns android/expat/lib/xmltok.c /^static const struct normal_encoding internal_big2_encoding_ns = {$/;" v typeref:struct:normal_encoding file: +internal_height src/gfx/gfx_rendering_buffer.h /^ unsigned int internal_height(void) const { return m_height; }$/;" f class:gfx::gfx_rendering_buffer +internal_leading android/freetype/include/freetype/ftwinfnt.h /^ FT_UShort internal_leading;$/;" m struct:FT_WinFNT_HeaderRec_ +internal_leading include/freetype/ftwinfnt.h /^ FT_UShort internal_leading;$/;" m struct:FT_WinFNT_HeaderRec_ +internal_little2_encoding android/expat/lib/xmltok.c /^static const struct normal_encoding internal_little2_encoding = {$/;" v typeref:struct:normal_encoding file: +internal_little2_encoding_ns android/expat/lib/xmltok.c /^static const struct normal_encoding internal_little2_encoding_ns = {$/;" v typeref:struct:normal_encoding file: +internal_stride src/gfx/gfx_rendering_buffer.h /^ int internal_stride(void) const { return m_stride; }$/;" f class:gfx::gfx_rendering_buffer +internal_utf8_encoding android/expat/lib/xmltok.c /^static const struct normal_encoding internal_utf8_encoding = {$/;" v typeref:struct:normal_encoding file: +internal_utf8_encoding_ns android/expat/lib/xmltok.c /^static const struct normal_encoding internal_utf8_encoding_ns = {$/;" v typeref:struct:normal_encoding file: +internal_width src/gfx/gfx_rendering_buffer.h /^ unsigned int internal_width(void) const { return m_width; }$/;" f class:gfx::gfx_rendering_buffer +interpolator src/gfx/gfx_span_image_filters.h /^ interpolator_type& interpolator(void) { return *m_interpolator; }$/;" f class:gfx::gfx_span_image_filter +interpolator src/gfx/gfx_span_image_filters.h /^ void interpolator(interpolator_type& v) { m_interpolator = &v; }$/;" f class:gfx::gfx_span_image_filter +interpolator_type src/gfx/gfx_gradient_adapter.h /^ typedef gfx_span_interpolator_linear interpolator_type;$/;" t class:gfx::gfx_span_gradient +interpolator_type src/gfx/gfx_painter_helper.h /^typedef gfx_span_interpolator_linear interpolator_type;$/;" t namespace:gfx +interpolator_type src/gfx/gfx_span_image_filters.h /^ typedef Interpolator interpolator_type;$/;" t class:gfx::gfx_span_image_filter +interpolator_type src/gfx/gfx_span_image_filters.h /^ typedef Interpolator interpolator_type;$/;" t class:gfx::gfx_span_image_filter_rgb +interpolator_type src/gfx/gfx_span_image_filters.h /^ typedef Interpolator interpolator_type;$/;" t class:gfx::gfx_span_image_filter_rgb16 +interpolator_type src/gfx/gfx_span_image_filters.h /^ typedef Interpolator interpolator_type;$/;" t class:gfx::gfx_span_image_filter_rgb16_nn +interpolator_type src/gfx/gfx_span_image_filters.h /^ typedef Interpolator interpolator_type;$/;" t class:gfx::gfx_span_image_filter_rgb_nn +interpolator_type src/gfx/gfx_span_image_filters.h /^ typedef Interpolator interpolator_type;$/;" t class:gfx::gfx_span_image_filter_rgba +interpolator_type src/gfx/gfx_span_image_filters.h /^ typedef Interpolator interpolator_type;$/;" t class:gfx::gfx_span_image_filter_rgba_nb +interpolator_type src/gfx/gfx_span_image_filters.h /^ typedef Interpolator interpolator_type;$/;" t class:gfx::gfx_span_image_filter_rgba_nn +interpolator_type src/gfx/gfx_span_image_filters.h /^ typedef Interpolator interpolator_type;$/;" t class:gfx::gfx_span_image_filter_rgba_nn_nb +interpreter android/freetype/include/freetype/internal/tttypes.h /^ TT_Interpreter interpreter;$/;" m struct:TT_FaceRec_ +interpreter include/freetype/internal/tttypes.h /^ TT_Interpreter interpreter;$/;" m struct:TT_FaceRec_ +intersection_epsilon src/include/graphic_base.h /^const scalar intersection_epsilon = FLT_TO_SCALAR(1.0e-30f);$/;" m namespace:picasso +invalid android/freetype/src/smooth/ftgrays.c /^ int invalid;$/;" m struct:TWorker_ file: +invalid_configuration_keys tools/gyp/build/lib/gyp/input.py /^invalid_configuration_keys = [$/;" v +invalid_configuration_keys tools/gyp/pylib/gyp/input.py /^invalid_configuration_keys = [$/;" v +inverse_transform src/gfx/gfx_trans_affine.h /^ virtual void inverse_transform(scalar* x, scalar* y) const$/;" f class:gfx::gfx_trans_affine +inverse_transform src/picasso_matrix.cpp /^void trans_affine::inverse_transform(scalar* x, scalar* y) const$/;" f class:picasso::trans_affine +invert src/gfx/gfx_trans_affine.h /^ virtual void invert(void)$/;" f class:gfx::gfx_trans_affine +invert src/picasso_matrix.cpp /^const trans_affine& trans_affine::invert(void)$/;" f class:picasso::trans_affine +invert_polygon src/core/graphic_path.cpp /^void graphic_path::invert_polygon(unsigned int start)$/;" f class:picasso::graphic_path +invert_polygon src/core/graphic_path.cpp /^void graphic_path::invert_polygon(unsigned int start, unsigned int end)$/;" f class:picasso::graphic_path +iround src/include/graphic_base.h /^inline int iround(scalar v)$/;" f namespace:picasso +isCdata android/expat/lib/xmlparse.c /^ XML_Bool isCdata;$/;" m struct:__anon14 file: +isFixedPitch android/freetype/include/freetype/tttables.h /^ FT_ULong isFixedPitch;$/;" m struct:TT_Postscript_ +isFixedPitch include/freetype/tttables.h /^ FT_ULong isFixedPitch;$/;" m struct:TT_Postscript_ +isGeneralTextEntity android/expat/lib/xmltok.c /^ int isGeneralTextEntity,$/;" v file: +isInvalid2 android/expat/lib/xmltok.c /^ int (PTRFASTCALL *isInvalid2)(const ENCODING *, const char *);$/;" m struct:normal_encoding file: +isInvalid3 android/expat/lib/xmltok.c /^ int (PTRFASTCALL *isInvalid3)(const ENCODING *, const char *);$/;" m struct:normal_encoding file: +isInvalid4 android/expat/lib/xmltok.c /^ int (PTRFASTCALL *isInvalid4)(const ENCODING *, const char *);$/;" m struct:normal_encoding file: +isName2 android/expat/lib/xmltok.c /^ int (PTRFASTCALL *isName2)(const ENCODING *, const char *);$/;" m struct:normal_encoding file: +isName3 android/expat/lib/xmltok.c /^ int (PTRFASTCALL *isName3)(const ENCODING *, const char *);$/;" m struct:normal_encoding file: +isName4 android/expat/lib/xmltok.c /^ int (PTRFASTCALL *isName4)(const ENCODING *, const char *);$/;" m struct:normal_encoding file: +isNameMin android/expat/lib/xmltok.c /^ int (PTRFASTCALL *isNameMin)(const ENCODING *, const char *);$/;" m struct:normal_encoding file: +isNever android/expat/lib/xmltok.c /^isNever(const ENCODING *enc, const char *p)$/;" f file: +isNmstrt2 android/expat/lib/xmltok.c /^ int (PTRFASTCALL *isNmstrt2)(const ENCODING *, const char *);$/;" m struct:normal_encoding file: +isNmstrt3 android/expat/lib/xmltok.c /^ int (PTRFASTCALL *isNmstrt3)(const ENCODING *, const char *);$/;" m struct:normal_encoding file: +isNmstrt4 android/expat/lib/xmltok.c /^ int (PTRFASTCALL *isNmstrt4)(const ENCODING *, const char *);$/;" m struct:normal_encoding file: +isNmstrtMin android/expat/lib/xmltok.c /^ int (PTRFASTCALL *isNmstrtMin)(const ENCODING *, const char *);$/;" m struct:normal_encoding file: +isParamEntity android/expat/lib/xmlparse.c /^#define isParamEntity /;" d file: +isPublicId android/expat/lib/xmltok.h /^ int (PTRCALL *isPublicId)(const ENCODING *enc,$/;" m struct:encoding +isPublicId android/expat/lib/xmltok_impl.c /^PREFIX(isPublicId)(const ENCODING *enc, const char *ptr, const char *end,$/;" f file: +isSpace android/expat/lib/xmltok.c /^isSpace(int c)$/;" f file: +isUtf16 android/expat/lib/xmltok.h /^ char isUtf16;$/;" m struct:encoding +isUtf8 android/expat/lib/xmltok.h /^ char isUtf8;$/;" m struct:encoding +is_boxer src/include/graphic_base.h /^inline bool is_boxer(scalar rad)$/;" f namespace:picasso +is_ccw src/include/graphic_base.h /^inline bool is_ccw(unsigned int c)$/;" f namespace:picasso +is_close src/include/graphic_base.h /^inline bool is_close(unsigned int c)$/;" f namespace:picasso +is_closed src/include/graphic_base.h /^inline bool is_closed(unsigned int c)$/;" f namespace:picasso +is_color_mask src/gfx/gfx_pixfmt_wrapper.h /^ bool is_color_mask() const$/;" f class:gfx::gfx_pixfmt_wrapper +is_composite android/freetype/src/truetype/ttinterp.h /^ FT_Bool is_composite; \/* true if the glyph is composite *\/$/;" m struct:TT_ExecContextRec_ +is_curve src/include/graphic_base.h /^inline bool is_curve(unsigned int c)$/;" f namespace:picasso +is_curve3 src/include/graphic_base.h /^inline bool is_curve3(unsigned int c)$/;" f namespace:picasso +is_curve4 src/include/graphic_base.h /^inline bool is_curve4(unsigned int c)$/;" f namespace:picasso +is_cw src/include/graphic_base.h /^inline bool is_cw(unsigned int c)$/;" f namespace:picasso +is_drawing src/include/graphic_base.h /^inline bool is_drawing(unsigned int c)$/;" f namespace:picasso +is_empty src/gfx/gfx_raster_adapter.cpp /^bool gfx_raster_adapter::is_empty(void)$/;" f class:gfx::gfx_raster_adapter +is_empty src/picasso_raster_adapter.cpp /^bool raster_adapter::is_empty(void)$/;" f class:picasso::raster_adapter +is_empty src/picasso_rendering_buffer.cpp /^bool rendering_buffer::is_empty(void)$/;" f class:picasso::rendering_buffer +is_end_poly src/include/graphic_base.h /^inline bool is_end_poly(unsigned int c)$/;" f namespace:picasso +is_equal src/gfx/gfx_trans_affine.h /^ virtual bool is_equal(const abstract_trans_affine* o)$/;" f class:gfx::gfx_trans_affine +is_equal_eps src/include/graphic_base.h /^template inline bool is_equal_eps(T v1, T v2, T epsilon)$/;" f namespace:picasso +is_fixed_pitch android/freetype/include/freetype/t1tables.h /^ FT_Bool is_fixed_pitch;$/;" m struct:PS_FontInfoRec_ +is_fixed_pitch android/freetype/src/cff/cfftypes.h /^ FT_Bool is_fixed_pitch;$/;" m struct:CFF_FontRecDictRec_ +is_fixed_pitch include/freetype/t1tables.h /^ FT_Bool is_fixed_pitch;$/;" m struct:PS_FontInfoRec_ +is_full src/include/data_vector.h /^ bool is_full(void) const { return m_size == m_capacity;}$/;" f class:picasso::pod_vector +is_hashable tools/gyp/build/lib/gyp/input.py /^ def is_hashable(x):$/;" f function:MergeLists +is_hashable tools/gyp/pylib/gyp/input.py /^ def is_hashable(x):$/;" f function:MergeLists +is_hinted android/freetype/src/truetype/ttobjs.h /^ FT_Bool is_hinted; \/* should it be hinted? *\/$/;" m struct:TT_SubglyphRec_ +is_identity src/gfx/gfx_trans_affine.h /^ virtual bool is_identity(void) const$/;" f class:gfx::gfx_trans_affine +is_identity src/picasso_matrix.cpp /^bool trans_affine::is_identity(void) const$/;" f class:picasso::trans_affine +is_ignored tools/gyp/build/lib/gyp/SCons.py /^ is_ignored = False$/;" v class:TargetBase +is_ignored tools/gyp/build/lib/gyp/SCons.py /^ is_ignored = True$/;" v class:SettingsTarget +is_ignored tools/gyp/pylib/gyp/SCons.py /^ is_ignored = False$/;" v class:TargetBase +is_ignored tools/gyp/pylib/gyp/SCons.py /^ is_ignored = True$/;" v class:SettingsTarget +is_in_set_or_list tools/gyp/build/lib/gyp/input.py /^ def is_in_set_or_list(x, s, l):$/;" f function:MergeLists +is_in_set_or_list tools/gyp/pylib/gyp/input.py /^ def is_in_set_or_list(x, s, l):$/;" f function:MergeLists +is_internal android/expat/lib/xmlparse.c /^ XML_Bool is_internal; \/* true if declared in internal subset outside PE *\/$/;" m struct:__anon11 file: +is_line_to src/include/graphic_base.h /^inline bool is_line_to(unsigned int c)$/;" f namespace:picasso +is_move_to src/include/graphic_base.h /^inline bool is_move_to(unsigned int c)$/;" f namespace:picasso +is_next_poly src/include/graphic_base.h /^inline bool is_next_poly(unsigned int c)$/;" f namespace:picasso +is_not_same src/picasso_objects.h /^ bool is_not_same(const clip_area& o)$/;" f struct:picasso::clip_area +is_oriented src/include/graphic_base.h /^inline bool is_oriented(unsigned int c)$/;" f namespace:picasso +is_param android/expat/lib/xmlparse.c /^ XML_Bool is_param;$/;" m struct:__anon11 file: +is_scaled android/freetype/src/truetype/ttobjs.h /^ FT_Bool is_scaled; \/* is the subglyph scaled? *\/$/;" m struct:TT_SubglyphRec_ +is_stop src/include/graphic_base.h /^inline bool is_stop(unsigned int c)$/;" f namespace:picasso +is_transparent src/gfx/gfx_rendering_buffer.h /^ virtual bool is_transparent(void) const { return m_transparent; }$/;" f class:gfx::gfx_rendering_buffer +is_transparent src/picasso_rendering_buffer.cpp /^bool rendering_buffer::is_transparent(void) const $/;" f class:picasso::rendering_buffer +is_valid_system_device src/core/device.cpp /^bool is_valid_system_device(void)$/;" f namespace:picasso +is_vertex src/include/graphic_base.h /^inline bool is_vertex(unsigned int c)$/;" f namespace:picasso +it_node src/picasso_gpc.cpp /^} it_node;$/;" t namespace:picasso typeref:struct:picasso::it_shape file: +it_shape src/picasso_gpc.cpp /^typedef struct it_shape { \/* Intersection table *\/$/;" s namespace:picasso file: +italic android/freetype/include/freetype/ftwinfnt.h /^ FT_Byte italic;$/;" m struct:FT_WinFNT_HeaderRec_ +italic include/freetype/ftwinfnt.h /^ FT_Byte italic;$/;" m struct:FT_WinFNT_HeaderRec_ +italic src/picasso_font.h /^ bool italic(void) const { return m_italic; }$/;" f class:picasso::font_desc +italicAngle android/freetype/include/freetype/tttables.h /^ FT_Fixed italicAngle;$/;" m struct:TT_Postscript_ +italicAngle include/freetype/tttables.h /^ FT_Fixed italicAngle;$/;" m struct:TT_Postscript_ +italic_angle android/freetype/include/freetype/t1tables.h /^ FT_Long italic_angle;$/;" m struct:PS_FontInfoRec_ +italic_angle android/freetype/src/cff/cfftypes.h /^ FT_Fixed italic_angle;$/;" m struct:CFF_FontRecDictRec_ +italic_angle include/freetype/t1tables.h /^ FT_Long italic_angle;$/;" m struct:PS_FontInfoRec_ +iterator src/gfx/gfx_scanline.h /^ typedef span* iterator;$/;" t class:gfx::gfx_scanline_p8 +iterator src/gfx/gfx_scanline.h /^ typedef span* iterator;$/;" t class:gfx::gfx_scanline_u8 +join src/picasso_objects.h /^ line_join join;$/;" m struct:picasso::graphic_pen +join_path src/core/graphic_path.cpp /^void graphic_path::join_path(vertex_source& vs, unsigned int id)$/;" f class:picasso::graphic_path +joint android/freetype/src/raster/ftraster.c /^ Bool joint; \/* signals that the last arc ended *\/$/;" m struct:TWorker_ file: +json tools/gyp/build/lib/gyp/generator/dump_dependency_json.py /^import json$/;" i +json tools/gyp/pylib/gyp/generator/dump_dependency_json.py /^import json$/;" i +json tools/gyp/tools/graphviz.py /^import json$/;" i +jump_buffer android/freetype/include/freetype/internal/ftvalid.h /^ ft_jmp_buf jump_buffer; \/* used for exception handling *\/$/;" m struct:FT_ValidatorRec_ +jump_buffer android/freetype/src/smooth/ftgrays.c /^ ft_jmp_buf jump_buffer;$/;" m struct:TWorker_ file: +jump_buffer include/freetype/internal/ftvalid.h /^ ft_jmp_buf jump_buffer; \/* used for exception handling *\/$/;" m struct:FT_ValidatorRec_ +keepProcessing android/expat/lib/xmlparse.c /^ XML_Bool keepProcessing;$/;" m struct:__anon17 file: +keep_alive android/freetype/src/base/ftdbgmem.c /^ FT_Bool keep_alive;$/;" m struct:FT_MemTableRec_ file: +kern_avail_bits android/freetype/include/freetype/internal/tttypes.h /^ FT_UInt32 kern_avail_bits;$/;" m struct:TT_FaceRec_ +kern_avail_bits include/freetype/internal/tttypes.h /^ FT_UInt32 kern_avail_bits;$/;" m struct:TT_FaceRec_ +kern_order_bits android/freetype/include/freetype/internal/tttypes.h /^ FT_UInt32 kern_order_bits;$/;" m struct:TT_FaceRec_ +kern_order_bits include/freetype/internal/tttypes.h /^ FT_UInt32 kern_order_bits;$/;" m struct:TT_FaceRec_ +kern_pairs android/freetype/include/freetype/internal/tttypes.h /^ TT_Kern0_Pair kern_pairs;$/;" m struct:TT_FaceRec_ +kern_pairs include/freetype/internal/tttypes.h /^ TT_Kern0_Pair kern_pairs;$/;" m struct:TT_FaceRec_ +kern_table android/freetype/include/freetype/internal/tttypes.h /^ FT_Byte* kern_table;$/;" m struct:TT_FaceRec_ +kern_table include/freetype/internal/tttypes.h /^ FT_Byte* kern_table;$/;" m struct:TT_FaceRec_ +kern_table_index android/freetype/include/freetype/internal/tttypes.h /^ FT_Int kern_table_index;$/;" m struct:TT_FaceRec_ +kern_table_index include/freetype/internal/tttypes.h /^ FT_Int kern_table_index;$/;" m struct:TT_FaceRec_ +kern_table_size android/freetype/include/freetype/internal/tttypes.h /^ FT_ULong kern_table_size;$/;" m struct:TT_FaceRec_ +kern_table_size include/freetype/internal/tttypes.h /^ FT_ULong kern_table_size;$/;" m struct:TT_FaceRec_ +key src/gfx/gfx_painter.h /^ rgba8 key;$/;" m struct:gfx::gfx_painter::__anon64 +keyPressEvent demos/platform_qt4.cpp /^inline void PWindow::keyPressEvent(QKeyEvent * event)$/;" f class:PWindow +key_conv demos/platform_minigui.c /^static unsigned key_conv(DWORD flag)$/;" f file: +key_down demos/platform_minigui.c /^static BOOL key_down;$/;" v file: +key_event_type demos/interface.h /^}key_event_type;$/;" t typeref:enum:__anon40 +key_map demos/platform_gix.c /^static KeyEntities key_map[] = {$/;" v file: +key_map demos/platform_gtk2.c /^static KeyEntities key_map[] = {$/;" v file: +key_map demos/platform_minigui.c /^static KeyEntities key_map[] = {$/;" v file: +key_map demos/platform_qt4.cpp /^static KeyEntities key_map[] = {$/;" v file: +key_press demos/platform_gtk2.c /^static gboolean key_press(GtkWidget *widget, GdkEventKey *event)$/;" f file: +key_release demos/platform_gtk2.c /^static gboolean key_release(GtkWidget *widget, GdkEventKey *event)$/;" f file: +keyeq android/expat/lib/xmlparse.c /^keyeq(KEY s1, KEY s2)$/;" f file: +kind android/freetype/src/cff/cffparse.c /^ int kind;$/;" m struct:CFF_Field_Handler_ file: +l android/freetype/src/raster/ftraster.c /^ long l;$/;" m union:Alignment_ file: +language android/freetype/include/freetype/internal/services/svttcmap.h /^ FT_ULong language;$/;" m struct:TT_CMapInfo_ +language include/freetype/internal/services/svttcmap.h /^ FT_ULong language;$/;" m struct:TT_CMapInfo_ +languageID android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort languageID;$/;" m struct:TT_NameEntryRec_ +languageID include/freetype/internal/tttypes.h /^ FT_UShort languageID;$/;" m struct:TT_NameEntryRec_ +language_group android/freetype/include/freetype/t1tables.h /^ FT_Long language_group;$/;" m struct:PS_PrivateRec_ +language_group android/freetype/src/cff/cfftypes.h /^ FT_Int language_group;$/;" m struct:CFF_PrivateRec_ +language_group include/freetype/t1tables.h /^ FT_Long language_group;$/;" m struct:PS_PrivateRec_ +language_id android/freetype/include/freetype/ftsnames.h /^ FT_UShort language_id;$/;" m struct:FT_SfntName_ +language_id include/freetype/ftsnames.h /^ FT_UShort language_id;$/;" m struct:FT_SfntName_ +last android/freetype/include/freetype/internal/psaux.h /^ FT_Vector last;$/;" m struct:T1_BuilderRec_ +last android/freetype/src/autofit/afhints.h /^ AF_Point last; \/* last point in edge segment *\/$/;" m struct:AF_SegmentRec_ +last android/freetype/src/autofit/afhints.h /^ AF_Segment last;$/;" m struct:AF_EdgeRec_ +last android/freetype/src/autofit/aftypes.h /^ FT_UInt32 last;$/;" m struct:AF_Script_UniRangeRec_ +last android/freetype/src/base/ftbbox.c /^ FT_Vector last;$/;" m struct:TBBox_Rec_ file: +last android/freetype/src/cff/cffgload.h /^ FT_Vector last;$/;" m struct:CFF_Builder_ +last src/include/data_vector.h /^ T& last(void)$/;" f class:picasso::pod_bvector +last src/include/data_vector.h /^ const T& last(void) const$/;" f class:picasso::pod_bvector +lastX android/freetype/src/raster/ftraster.c /^ Long lastX, lastY, minY, maxY;$/;" m struct:TWorker_ file: +lastY android/freetype/src/raster/ftraster.c /^ Long lastX, lastY, minY, maxY;$/;" m struct:TWorker_ file: +last_char android/freetype/include/freetype/ftwinfnt.h /^ FT_Byte last_char;$/;" m struct:FT_WinFNT_HeaderRec_ +last_char include/freetype/ftwinfnt.h /^ FT_Byte last_char;$/;" m struct:FT_WinFNT_HeaderRec_ +last_command src/core/graphic_path.cpp /^ unsigned int last_command(void) const$/;" f class:picasso::graphic_path_impl +last_ey android/freetype/src/smooth/ftgrays.c /^ TPos last_ey;$/;" m struct:TWorker_ file: +last_glyph android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort last_glyph;$/;" m struct:TT_SBit_RangeRec_ +last_glyph include/freetype/internal/tttypes.h /^ FT_UShort last_glyph;$/;" m struct:TT_SBit_RangeRec_ +last_vertex src/core/graphic_path.cpp /^ unsigned int last_vertex(scalar* x, scalar* y) const$/;" f class:picasso::graphic_path_impl +last_vertex src/core/graphic_path.cpp /^unsigned int graphic_path::last_vertex(scalar* x, scalar* y) const$/;" f class:picasso::graphic_path +last_x src/core/graphic_path.cpp /^ scalar last_x(void) const$/;" f class:picasso::graphic_path_impl +last_x src/core/graphic_path.cpp /^scalar graphic_path::last_x(void) const$/;" f class:picasso::graphic_path +last_y src/core/graphic_path.cpp /^ scalar last_y(void) const$/;" f class:picasso::graphic_path_impl +last_y src/core/graphic_path.cpp /^scalar graphic_path::last_y(void) const$/;" f class:picasso::graphic_path +lastchild android/expat/lib/xmlparse.c /^ int lastchild;$/;" m struct:__anon12 file: +late_variable_re tools/gyp/build/lib/gyp/input.py /^late_variable_re = re.compile($/;" v +late_variable_re tools/gyp/pylib/gyp/input.py /^late_variable_re = re.compile($/;" v +latelate_variable_re tools/gyp/build/lib/gyp/input.py /^latelate_variable_re = re.compile($/;" v +latelate_variable_re tools/gyp/pylib/gyp/input.py /^latelate_variable_re = re.compile($/;" v +latin1_encoding android/expat/lib/xmltok.c /^static const struct normal_encoding latin1_encoding = {$/;" v typeref:struct:normal_encoding file: +latin1_encoding_ns android/expat/lib/xmltok.c /^static const struct normal_encoding latin1_encoding_ns = {$/;" v typeref:struct:normal_encoding file: +latin1_toUtf16 android/expat/lib/xmltok.c /^latin1_toUtf16(const ENCODING *enc,$/;" f file: +latin1_toUtf8 android/expat/lib/xmltok.c /^latin1_toUtf8(const ENCODING *enc,$/;" f file: +lc test/gcstate_func.c /^static int lc = 1;$/;" v file: +lcd_extra android/freetype/include/freetype/internal/ftobjs.h /^ FT_Int lcd_extra; \/* number of extra pixels *\/$/;" m struct:FT_LibraryRec_ +lcd_extra include/freetype/internal/ftobjs.h /^ FT_Int lcd_extra; \/* number of extra pixels *\/$/;" m struct:FT_LibraryRec_ +lcd_filter android/freetype/include/freetype/internal/ftobjs.h /^ FT_LcdFilter lcd_filter;$/;" m struct:FT_LibraryRec_ +lcd_filter include/freetype/internal/ftobjs.h /^ FT_LcdFilter lcd_filter;$/;" m struct:FT_LibraryRec_ +lcd_filter_func android/freetype/include/freetype/internal/ftobjs.h /^ FT_Bitmap_LcdFilterFunc lcd_filter_func; \/* filtering callback *\/$/;" m struct:FT_LibraryRec_ +lcd_filter_func include/freetype/internal/ftobjs.h /^ FT_Bitmap_LcdFilterFunc lcd_filter_func; \/* filtering callback *\/$/;" m struct:FT_LibraryRec_ +lcd_weights android/freetype/include/freetype/internal/ftobjs.h /^ FT_Byte lcd_weights[7]; \/* filter weights, if any *\/$/;" m struct:FT_LibraryRec_ +lcd_weights include/freetype/internal/ftobjs.h /^ FT_Byte lcd_weights[7]; \/* filter weights, if any *\/$/;" m struct:FT_LibraryRec_ +leading include/picasso.h /^ float leading;$/;" m struct:_ps_font_info +leading src/picasso_font.h /^ scalar leading(void) const { return m_impl->leading(); }$/;" f class:picasso::font_adapter +left android/freetype/include/freetype/ftcache.h /^ FT_Char left;$/;" m struct:FTC_SBitRec_ +left android/freetype/include/freetype/ftglyph.h /^ FT_Int left;$/;" m struct:FT_BitmapGlyphRec_ +left android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort left; \/* index of left glyph in pair *\/$/;" m struct:TT_Kern0_PairRec_ +left include/freetype/ftcache.h /^ FT_Char left;$/;" m struct:FTC_SBitRec_ +left include/freetype/ftglyph.h /^ FT_Int left;$/;" m struct:FT_BitmapGlyphRec_ +left include/freetype/internal/tttypes.h /^ FT_UShort left; \/* index of left glyph in pair *\/$/;" m struct:TT_Kern0_PairRec_ +left_bearing android/freetype/include/freetype/internal/psaux.h /^ FT_Vector left_bearing;$/;" m struct:T1_BuilderRec_ +left_bearing android/freetype/include/freetype/internal/tttypes.h /^ FT_Int left_bearing;$/;" m struct:TT_LoaderRec_ +left_bearing android/freetype/src/cff/cffgload.h /^ FT_Vector left_bearing;$/;" m struct:CFF_Builder_ +left_bearing android/freetype/src/truetype/ttobjs.h /^ FT_Pos left_bearing;$/;" m struct:TT_SubglyphRec_ +left_bearing include/freetype/internal/psaux.h /^ FT_Vector left_bearing;$/;" m struct:T1_BuilderRec_ +left_bearing include/freetype/internal/tttypes.h /^ FT_Int left_bearing;$/;" m struct:TT_LoaderRec_ +len android/freetype/include/freetype/ftimage.h /^ unsigned short len;$/;" m struct:FT_Span_ +len android/freetype/src/autofit/afhints.h /^ FT_Pos len; \/* used during stem matching *\/$/;" m struct:AF_SegmentRec_ +len android/freetype/src/pshinter/pshrec.h /^ FT_Int len;$/;" m struct:PS_HintRec_ +len include/freetype/ftimage.h /^ unsigned short len;$/;" m struct:FT_Span_ +len src/gfx/gfx_scanline.h /^ coord_type len; \/\/ If negative, it's a solid span, covers is valid$/;" m struct:gfx::gfx_scanline_p8::__anon156 +len src/gfx/gfx_scanline.h /^ coord_type len;$/;" m struct:gfx::gfx_scanline_u8::__anon157 +len src/gfx/gfx_scanline.h /^ int16_t len;$/;" m struct:gfx::gfx_scanline_bin::__anon155 +len src/gfx/gfx_scanline_storage.h /^ int32_t len; \/\/ If negative, it's a solid span, "covers" is valid$/;" m struct:gfx::gfx_serialized_scanlines_adaptor_aa::embedded_scanline::const_iterator::__anon162 +len src/gfx/gfx_scanline_storage.h /^ int32_t len; \/\/ If negative, it's a solid span, covers is valid$/;" m struct:gfx::gfx_scanline_storage_aa::embedded_scanline::const_iterator::__anon161 +len src/gfx/gfx_scanline_storage.h /^ int32_t len;$/;" m struct:gfx::gfx_serialized_scanlines_adaptor_bin::embedded_scanline::const_iterator::__anon165 +len src/gfx/gfx_scanline_storage.h /^ int32_t len; \/\/ If negative, it's a solid span, covers is valid$/;" m struct:gfx::gfx_scanline_storage_aa::__anon159 +len src/gfx/gfx_scanline_storage.h /^ int32_t len;$/;" m struct:gfx::gfx_scanline_storage_bin::__anon163 +len src/gfx/gfx_scanline_storage.h /^ unsigned int len;$/;" m struct:gfx::gfx_scanline_cell_storage::__anon158 +lenIV android/freetype/include/freetype/internal/psaux.h /^ FT_Int lenIV; \/* internal for sub routine calls *\/$/;" m struct:T1_DecoderRec_ +lenIV android/freetype/include/freetype/t1tables.h /^ FT_Int lenIV;$/;" m struct:PS_PrivateRec_ +lenIV android/freetype/src/cff/cfftypes.h /^ FT_Int lenIV;$/;" m struct:CFF_PrivateRec_ +lenIV include/freetype/internal/psaux.h /^ FT_Int lenIV; \/* internal for sub routine calls *\/$/;" m struct:T1_DecoderRec_ +lenIV include/freetype/t1tables.h /^ FT_Int lenIV;$/;" m struct:PS_PrivateRec_ +len_buildchar android/freetype/include/freetype/internal/psaux.h /^ FT_UInt len_buildchar;$/;" m struct:T1_DecoderRec_ +len_buildchar android/freetype/include/freetype/internal/t1types.h /^ FT_UInt len_buildchar;$/;" m struct:T1_FaceRec_ +len_buildchar android/freetype/include/freetype/t1tables.h /^ FT_UInt len_buildchar;$/;" m struct:CID_FaceDictRec_ +len_buildchar android/freetype/src/cff/cffgload.h /^ FT_Int len_buildchar;$/;" m struct:CFF_Decoder_ +len_buildchar include/freetype/internal/psaux.h /^ FT_UInt len_buildchar;$/;" m struct:T1_DecoderRec_ +len_buildchar include/freetype/internal/t1types.h /^ FT_UInt len_buildchar;$/;" m struct:T1_FaceRec_ +len_buildchar include/freetype/t1tables.h /^ FT_UInt len_buildchar;$/;" m struct:CID_FaceDictRec_ +length android/freetype/include/freetype/fttypes.h /^ FT_Int length;$/;" m struct:FT_Data_ +length android/freetype/src/truetype/ttinterp.h /^ FT_Int length; \/* length of current opcode *\/$/;" m struct:TT_ExecContextRec_ +length include/freetype/fttypes.h /^ FT_Int length;$/;" m struct:FT_Data_ +length src/gfx/gfx_gradient_adapter.h /^ scalar length(void) { return m_length; }$/;" f class:gfx::gfx_gradient_adapter +lengths android/freetype/include/freetype/internal/psaux.h /^ FT_PtrDist* lengths; \/* lengths of table elements *\/$/;" m struct:PS_TableRec_ +lengths include/freetype/internal/psaux.h /^ FT_PtrDist* lengths; \/* lengths of table elements *\/$/;" m struct:PS_TableRec_ +less src/picasso_gpc.cpp /^ struct sbt_t_shape *less; \/* Pointer to nodes with lower y *\/$/;" m struct:picasso::sbt_t_shape typeref:struct:picasso::sbt_t_shape::sbt_t_shape file: +lev_stack android/freetype/src/smooth/ftgrays.c /^ int lev_stack[32];$/;" m struct:TWorker_ file: +level android/expat/lib/xmlrole.h /^ unsigned level;$/;" m struct:prolog_state +level android/freetype/include/freetype/internal/ftvalid.h /^ FT_ValidationLevel level; \/* validation level *\/$/;" m struct:FT_ValidatorRec_ +level include/freetype/internal/ftvalid.h /^ FT_ValidationLevel level; \/* validation level *\/$/;" m struct:FT_ValidatorRec_ +lft src/gfx/gfx_line_generator.h /^ int lft(void) const { return m_lft; }$/;" f class:gfx::gfx_dda2_line_interpolator +library android/freetype/include/freetype/freetype.h /^ FT_Library library;$/;" m struct:FT_GlyphSlotRec_ +library android/freetype/include/freetype/freetype.h /^ FT_Done_FreeType( FT_Library library );$/;" v +library android/freetype/include/freetype/ftglyph.h /^ FT_Library library;$/;" m struct:FT_GlyphRec_ +library android/freetype/include/freetype/ftmodapi.h /^ FT_Add_Default_Modules( FT_Library library );$/;" v +library android/freetype/include/freetype/ftmodapi.h /^ FT_Done_Library( FT_Library library );$/;" v +library android/freetype/include/freetype/ftmodapi.h /^ FT_Get_TrueType_Engine_Type( FT_Library library );$/;" v +library android/freetype/include/freetype/internal/ftobjs.h /^ FT_Library library;$/;" m struct:FT_ModuleRec_ +library include/freetype/freetype.h /^ FT_Library library;$/;" m struct:FT_GlyphSlotRec_ +library include/freetype/freetype.h /^ FT_Done_FreeType( FT_Library library );$/;" v +library include/freetype/ftglyph.h /^ FT_Library library;$/;" m struct:FT_GlyphRec_ +library include/freetype/ftmodapi.h /^ FT_Add_Default_Modules( FT_Library library );$/;" v +library include/freetype/ftmodapi.h /^ FT_Done_Library( FT_Library library );$/;" v +library include/freetype/ftmodapi.h /^ FT_Get_TrueType_Engine_Type( FT_Library library );$/;" v +library include/freetype/ftmodapi.h /^ FT_Reference_Library( FT_Library library );$/;" v +library include/freetype/internal/ftobjs.h /^ FT_Library library;$/;" m struct:FT_ModuleRec_ +library include/freetype/internal/ftpic.h /^ ft_pic_container_destroy( FT_Library library );$/;" v +library include/freetype/internal/ftpic.h /^ ft_pic_container_init( FT_Library library );$/;" v +library_dir tools/gyp/build/lib/gyp/generator/xcode.py /^ library_dir = posixpath.dirname(library)$/;" v +library_dir tools/gyp/pylib/gyp/generator/xcode.py /^ library_dir = posixpath.dirname(library)$/;" v +likely src/include/platform.h /^#define likely(/;" d +limit android/freetype/include/freetype/ftsystem.h /^ unsigned char* limit;$/;" m struct:FT_StreamRec_ +limit android/freetype/include/freetype/internal/ftvalid.h /^ const FT_Byte* limit; \/* `base' + sizeof(table) in memory *\/$/;" m struct:FT_ValidatorRec_ +limit android/freetype/include/freetype/internal/psaux.h /^ FT_Byte* limit; \/* first character after the token *\/$/;" m struct:T1_TokenRec_ +limit android/freetype/include/freetype/internal/psaux.h /^ FT_Byte* limit;$/;" m struct:PS_ParserRec_ +limit android/freetype/include/freetype/internal/psaux.h /^ FT_Byte* limit;$/;" m struct:T1_Decoder_ZoneRec_ +limit android/freetype/include/freetype/internal/tttypes.h /^ FT_Byte* limit;$/;" m struct:TT_LoaderRec_ +limit android/freetype/src/cff/cffgload.h /^ FT_Byte* limit;$/;" m struct:CFF_Decoder_Zone_ +limit android/freetype/src/cff/cffparse.h /^ FT_Byte* limit;$/;" m struct:CFF_ParserRec_ +limit android/freetype/src/psaux/afmparse.c /^ FT_Byte* limit;$/;" m struct:AFM_StreamRec_ file: +limit include/freetype/ftsystem.h /^ unsigned char* limit;$/;" m struct:FT_StreamRec_ +limit include/freetype/internal/ftvalid.h /^ const FT_Byte* limit; \/* `base' + sizeof(table) in memory *\/$/;" m struct:FT_ValidatorRec_ +limit include/freetype/internal/psaux.h /^ FT_Byte* limit; \/* first character after the token *\/$/;" m struct:T1_TokenRec_ +limit include/freetype/internal/psaux.h /^ FT_Byte* limit;$/;" m struct:PS_ParserRec_ +limit include/freetype/internal/psaux.h /^ FT_Byte* limit;$/;" m struct:T1_Decoder_ZoneRec_ +limit include/freetype/internal/tttypes.h /^ FT_Byte* limit;$/;" m struct:TT_LoaderRec_ +line src/gfx/gfx_rasterizer_cell.h /^ void line(int x1, int y1, int x2, int y2)$/;" f class:gfx::gfx_rasterizer_cells_aa +lineNumber android/expat/lib/xmltok.h /^ XML_Size lineNumber;$/;" m struct:position +line_cap android/freetype/src/base/ftstroke.c /^ FT_Stroker_LineCap line_cap;$/;" m struct:FT_StrokerRec_ file: +line_cap src/include/graphic_base.h /^} line_cap;$/;" t namespace:picasso typeref:enum:picasso::__anon204 +line_join android/freetype/src/base/ftstroke.c /^ FT_Stroker_LineJoin line_join;$/;" m struct:FT_StrokerRec_ file: +line_join src/include/graphic_base.h /^} line_join;$/;" t namespace:picasso typeref:enum:picasso::__anon205 +line_no android/freetype/src/base/ftdbgmem.c /^ long line_no;$/;" m struct:FT_MemSourceRec_ file: +line_rel src/core/graphic_path.cpp /^void graphic_path::line_rel(scalar dx, scalar dy)$/;" f class:picasso::graphic_path +line_to android/freetype/include/freetype/ftimage.h /^ FT_Outline_LineToFunc line_to;$/;" m struct:FT_Outline_Funcs_ +line_to include/freetype/ftimage.h /^ FT_Outline_LineToFunc line_to;$/;" m struct:FT_Outline_Funcs_ +line_to src/core/graphic_path.cpp /^void graphic_path::line_to(scalar x, scalar y)$/;" f class:picasso::graphic_path +line_to src/gfx/gfx_rasterizer_scanline.h /^ void line_to(Rasterizer& ras, int x2, int y2)$/;" f class:gfx::scanline_generator +line_to src/gfx/gfx_rasterizer_scanline.h /^ void line_to(int x, int y)$/;" f class:gfx::gfx_rasterizer_scanline_aa +line_to_d src/gfx/gfx_rasterizer_scanline.h /^ void line_to_d(scalar x, scalar y)$/;" f class:gfx::gfx_rasterizer_scanline_aa +linear android/freetype/include/freetype/internal/tttypes.h /^ FT_Int linear;$/;" m struct:TT_LoaderRec_ +linear include/freetype/internal/tttypes.h /^ FT_Int linear;$/;" m struct:TT_LoaderRec_ +linearHoriAdvance android/freetype/include/freetype/freetype.h /^ FT_Fixed linearHoriAdvance;$/;" m struct:FT_GlyphSlotRec_ +linearHoriAdvance include/freetype/freetype.h /^ FT_Fixed linearHoriAdvance;$/;" m struct:FT_GlyphSlotRec_ +linearVertAdvance android/freetype/include/freetype/freetype.h /^ FT_Fixed linearVertAdvance;$/;" m struct:FT_GlyphSlotRec_ +linearVertAdvance include/freetype/freetype.h /^ FT_Fixed linearVertAdvance;$/;" m struct:FT_GlyphSlotRec_ +linear_def android/freetype/include/freetype/internal/tttypes.h /^ FT_Bool linear_def;$/;" m struct:TT_LoaderRec_ +linear_def include/freetype/internal/tttypes.h /^ FT_Bool linear_def;$/;" m struct:TT_LoaderRec_ +link android/freetype/src/autofit/afhints.h /^ AF_Edge link;$/;" m struct:AF_EdgeRec_ +link android/freetype/src/autofit/afhints.h /^ AF_Segment link; \/* (stem) link segment *\/$/;" m struct:AF_SegmentRec_ +link android/freetype/src/base/ftdbgmem.c /^ FT_MemNode link;$/;" m struct:FT_MemNodeRec_ file: +link android/freetype/src/base/ftdbgmem.c /^ FT_MemSource link;$/;" m struct:FT_MemSourceRec_ file: +link android/freetype/src/raster/ftraster.c /^ PProfile link; \/* link to next profile - various purpose *\/$/;" m struct:TProfile_ file: +linkable_types tools/gyp/build/lib/gyp/input.py /^linkable_types = ['executable', 'shared_library', 'loadable_module']$/;" v +linkable_types tools/gyp/pylib/gyp/input.py /^linkable_types = ['executable', 'shared_library', 'loadable_module']$/;" v +linux_thread_1 test/thr_posix.c /^void* linux_thread_1(void *p1)$/;" f +linux_thread_2 test/thr_posix.c /^void* linux_thread_2(void *p1)$/;" f +literalScanners android/expat/lib/xmltok.h /^ SCANNER literalScanners[XML_N_LITERAL_TYPES];$/;" m struct:encoding +little2_byteToAscii android/expat/lib/xmltok.c /^little2_byteToAscii(const ENCODING *enc, const char *p)$/;" f file: +little2_byteType android/expat/lib/xmltok.c /^little2_byteType(const ENCODING *enc, const char *p)$/;" f file: +little2_charMatches android/expat/lib/xmltok.c /^little2_charMatches(const ENCODING *enc, const char *p, int c)$/;" f file: +little2_encoding android/expat/lib/xmltok.c /^static const struct normal_encoding little2_encoding = {$/;" v typeref:struct:normal_encoding file: +little2_encoding_ns android/expat/lib/xmltok.c /^static const struct normal_encoding little2_encoding_ns = {$/;" v typeref:struct:normal_encoding file: +little2_isNameMin android/expat/lib/xmltok.c /^little2_isNameMin(const ENCODING *enc, const char *p)$/;" f file: +little2_isNmstrtMin android/expat/lib/xmltok.c /^little2_isNmstrtMin(const ENCODING *enc, const char *p)$/;" f file: +lmt_node src/picasso_gpc.cpp /^} lmt_node;$/;" t namespace:picasso typeref:struct:picasso::lmt_shape file: +lmt_shape src/picasso_gpc.cpp /^typedef struct lmt_shape { \/* Local minima table *\/$/;" s namespace:picasso file: +lo android/freetype/src/base/ftcalc.c /^ FT_UInt32 lo;$/;" m struct:FT_Int64_ file: +load src/gfx/gfx_line_generator.h /^ void load(const save_data_type* data)$/;" f class:gfx::gfx_dda2_line_interpolator +load_any android/freetype/include/freetype/internal/sfnt.h /^ TT_Load_Any_Func load_any;$/;" m struct:SFNT_Interface_ +load_any include/freetype/internal/sfnt.h /^ TT_Load_Any_Func load_any;$/;" m struct:SFNT_Interface_ +load_bhed android/freetype/include/freetype/internal/sfnt.h /^ TT_Load_Table_Func load_bhed;$/;" m struct:SFNT_Interface_ +load_bhed include/freetype/internal/sfnt.h /^ TT_Load_Table_Func load_bhed;$/;" m struct:SFNT_Interface_ +load_charmap_stub android/freetype/include/freetype/internal/sfnt.h /^ TT_CharMap_Load_Func load_charmap_stub;$/;" m struct:SFNT_Interface_ +load_charmap_stub include/freetype/internal/sfnt.h /^ TT_CharMap_Load_Func load_charmap_stub;$/;" m struct:SFNT_Interface_ +load_cmap android/freetype/include/freetype/internal/sfnt.h /^ TT_Load_Table_Func load_cmap;$/;" m struct:SFNT_Interface_ +load_cmap include/freetype/internal/sfnt.h /^ TT_Load_Table_Func load_cmap;$/;" m struct:SFNT_Interface_ +load_directory android/freetype/include/freetype/internal/sfnt.h /^ TT_Load_Directory_Func load_directory;$/;" m struct:SFNT_Interface_ +load_directory include/freetype/internal/sfnt.h /^ TT_Load_Directory_Func load_directory;$/;" m struct:SFNT_Interface_ +load_eblc android/freetype/include/freetype/internal/sfnt.h /^ TT_Load_Table_Func load_eblc;$/;" m struct:SFNT_Interface_ +load_eblc include/freetype/internal/sfnt.h /^ TT_Load_Table_Func load_eblc;$/;" m struct:SFNT_Interface_ +load_face android/freetype/include/freetype/internal/sfnt.h /^ TT_Load_Face_Func load_face;$/;" m struct:SFNT_Interface_ +load_face include/freetype/internal/sfnt.h /^ TT_Load_Face_Func load_face;$/;" m struct:SFNT_Interface_ +load_face_in_embedded_rfork android/freetype/src/base/ftobjs.c /^ load_face_in_embedded_rfork( FT_Library library,$/;" f file: +load_field android/freetype/include/freetype/internal/psaux.h /^ (*load_field)( PS_Parser parser,$/;" m struct:PS_Parser_FuncsRec_ +load_field include/freetype/internal/psaux.h /^ (*load_field)( PS_Parser parser,$/;" m struct:PS_Parser_FuncsRec_ +load_field_table android/freetype/include/freetype/internal/psaux.h /^ (*load_field_table)( PS_Parser parser,$/;" m struct:PS_Parser_FuncsRec_ +load_field_table include/freetype/internal/psaux.h /^ (*load_field_table)( PS_Parser parser,$/;" m struct:PS_Parser_FuncsRec_ +load_flags android/freetype/include/freetype/internal/tttypes.h /^ FT_ULong load_flags;$/;" m struct:TT_LoaderRec_ +load_flags include/freetype/internal/tttypes.h /^ FT_ULong load_flags;$/;" m struct:TT_LoaderRec_ +load_font_dir android/freetype/include/freetype/internal/sfnt.h /^ TT_Load_Table_Func load_font_dir;$/;" m struct:SFNT_Interface_ +load_font_dir include/freetype/internal/sfnt.h /^ TT_Load_Table_Func load_font_dir;$/;" m struct:SFNT_Interface_ +load_format_20 android/freetype/src/sfnt/ttpost.c /^ load_format_20( TT_Face face,$/;" f file: +load_format_25 android/freetype/src/sfnt/ttpost.c /^ load_format_25( TT_Face face,$/;" f file: +load_from src/gfx/gfx_trans_affine.h /^ virtual void load_from(const scalar* m)$/;" f class:gfx::gfx_trans_affine +load_from src/picasso_matrix.cpp /^void trans_affine::load_from(const scalar* m)$/;" f class:picasso::trans_affine +load_gasp android/freetype/include/freetype/internal/sfnt.h /^ TT_Load_Table_Func load_gasp;$/;" m struct:SFNT_Interface_ +load_gasp include/freetype/internal/sfnt.h /^ TT_Load_Table_Func load_gasp;$/;" m struct:SFNT_Interface_ +load_glyph android/freetype/include/freetype/internal/autohint.h /^ FT_AutoHinter_GlyphLoadFunc load_glyph;$/;" m struct:FT_AutoHinter_ServiceRec_ +load_glyph android/freetype/include/freetype/internal/ftdriver.h /^ FT_Slot_LoadFunc load_glyph;$/;" m struct:FT_Driver_ClassRec_ +load_glyph include/freetype/internal/autohint.h /^ FT_AutoHinter_GlyphLoadFunc load_glyph;$/;" m struct:FT_AutoHinter_ServiceRec_ +load_glyph include/freetype/internal/ftdriver.h /^ FT_Slot_LoadFunc load_glyph;$/;" m struct:FT_Driver_ClassRec_ +load_hdmx_stub android/freetype/include/freetype/internal/sfnt.h /^ TT_Load_Table_Func load_hdmx_stub;$/;" m struct:SFNT_Interface_ +load_hdmx_stub include/freetype/internal/sfnt.h /^ TT_Load_Table_Func load_hdmx_stub;$/;" m struct:SFNT_Interface_ +load_head android/freetype/include/freetype/internal/sfnt.h /^ TT_Load_Table_Func load_head;$/;" m struct:SFNT_Interface_ +load_head include/freetype/internal/sfnt.h /^ TT_Load_Table_Func load_head;$/;" m struct:SFNT_Interface_ +load_hhea android/freetype/include/freetype/internal/sfnt.h /^ TT_Load_Metrics_Func load_hhea;$/;" m struct:SFNT_Interface_ +load_hhea include/freetype/internal/sfnt.h /^ TT_Load_Metrics_Func load_hhea;$/;" m struct:SFNT_Interface_ +load_hmtx android/freetype/include/freetype/internal/sfnt.h /^ TT_Load_Metrics_Func load_hmtx;$/;" m struct:SFNT_Interface_ +load_hmtx include/freetype/internal/sfnt.h /^ TT_Load_Metrics_Func load_hmtx;$/;" m struct:SFNT_Interface_ +load_kern android/freetype/include/freetype/internal/sfnt.h /^ TT_Load_Table_Func load_kern;$/;" m struct:SFNT_Interface_ +load_kern include/freetype/internal/sfnt.h /^ TT_Load_Table_Func load_kern;$/;" m struct:SFNT_Interface_ +load_mac_face android/freetype/src/base/ftobjs.c /^ load_mac_face( FT_Library library,$/;" f file: +load_maxp android/freetype/include/freetype/internal/sfnt.h /^ TT_Load_Table_Func load_maxp;$/;" m struct:SFNT_Interface_ +load_maxp include/freetype/internal/sfnt.h /^ TT_Load_Table_Func load_maxp;$/;" m struct:SFNT_Interface_ +load_name android/freetype/include/freetype/internal/sfnt.h /^ TT_Load_Table_Func load_name;$/;" m struct:SFNT_Interface_ +load_name include/freetype/internal/sfnt.h /^ TT_Load_Table_Func load_name;$/;" m struct:SFNT_Interface_ +load_os2 android/freetype/include/freetype/internal/sfnt.h /^ TT_Load_Table_Func load_os2;$/;" m struct:SFNT_Interface_ +load_os2 include/freetype/internal/sfnt.h /^ TT_Load_Table_Func load_os2;$/;" m struct:SFNT_Interface_ +load_pclt android/freetype/include/freetype/internal/sfnt.h /^ TT_Load_Table_Func load_pclt;$/;" m struct:SFNT_Interface_ +load_pclt include/freetype/internal/sfnt.h /^ TT_Load_Table_Func load_pclt;$/;" m struct:SFNT_Interface_ +load_picture demos/platform_gix.c /^picture* load_picture(const char* name)$/;" f +load_picture demos/platform_gtk2.c /^picture* load_picture(const char* name)$/;" f +load_picture demos/platform_minigui.c /^picture* load_picture(const char* name)$/;" f +load_picture demos/platform_qt4.cpp /^extern "C" picture* load_picture(const char* name)$/;" f +load_picture demos/platform_win32.c /^picture* load_picture(const char* name)$/;" f +load_points android/freetype/include/freetype/internal/psaux.h /^ FT_Bool load_points;$/;" m struct:T1_BuilderRec_ +load_points android/freetype/src/cff/cffgload.h /^ FT_Bool load_points;$/;" m struct:CFF_Builder_ +load_points include/freetype/internal/psaux.h /^ FT_Bool load_points;$/;" m struct:T1_BuilderRec_ +load_post android/freetype/include/freetype/internal/sfnt.h /^ TT_Load_Table_Func load_post;$/;" m struct:SFNT_Interface_ +load_post include/freetype/internal/sfnt.h /^ TT_Load_Table_Func load_post;$/;" m struct:SFNT_Interface_ +load_post_names android/freetype/src/sfnt/ttpost.c /^ load_post_names( TT_Face face )$/;" f file: +load_sbit_image android/freetype/include/freetype/internal/sfnt.h /^ TT_Load_SBit_Image_Func load_sbit_image;$/;" m struct:SFNT_Interface_ +load_sbit_image android/freetype/src/truetype/ttgload.c /^ load_sbit_image( TT_Size size,$/;" f file: +load_sbit_image include/freetype/internal/sfnt.h /^ TT_Load_SBit_Image_Func load_sbit_image;$/;" m struct:SFNT_Interface_ +load_sbit_metrics android/freetype/include/freetype/internal/sfnt.h /^ TT_Load_SBit_Metrics_Func load_sbit_metrics;$/;" m struct:SFNT_Interface_ +load_sbit_metrics include/freetype/internal/sfnt.h /^ TT_Load_SBit_Metrics_Func load_sbit_metrics;$/;" m struct:SFNT_Interface_ +load_sbits_stub android/freetype/include/freetype/internal/sfnt.h /^ TT_Load_Table_Func load_sbits_stub;$/;" m struct:SFNT_Interface_ +load_sbits_stub include/freetype/internal/sfnt.h /^ TT_Load_Table_Func load_sbits_stub;$/;" m struct:SFNT_Interface_ +load_sfnt_header android/freetype/include/freetype/internal/sfnt.h /^ TT_Load_SFNT_HeaderRec_Func load_sfnt_header;$/;" m struct:SFNT_Interface_ +load_sfnt_header include/freetype/internal/sfnt.h /^ TT_Load_SFNT_HeaderRec_Func load_sfnt_header;$/;" m struct:SFNT_Interface_ +load_strike_metrics android/freetype/include/freetype/internal/sfnt.h /^ TT_Load_Strike_Metrics_Func load_strike_metrics;$/;" m struct:SFNT_Interface_ +load_strike_metrics include/freetype/internal/sfnt.h /^ TT_Load_Strike_Metrics_Func load_strike_metrics;$/;" m struct:SFNT_Interface_ +load_truetype_glyph android/freetype/src/truetype/ttgload.c /^ load_truetype_glyph( TT_Loader loader,$/;" f file: +loaded android/freetype/include/freetype/internal/tttypes.h /^ FT_Bool loaded;$/;" m struct:TT_BDFRec_ +loaded android/freetype/include/freetype/internal/tttypes.h /^ FT_Bool loaded;$/;" m struct:TT_Post_NamesRec_ +loaded include/freetype/internal/tttypes.h /^ FT_Bool loaded;$/;" m struct:TT_BDFRec_ +loaded include/freetype/internal/tttypes.h /^ FT_Bool loaded;$/;" m struct:TT_Post_NamesRec_ +loader android/freetype/include/freetype/internal/ftgloadr.h /^ FT_GlyphLoader_Add( FT_GlyphLoader loader );$/;" v +loader android/freetype/include/freetype/internal/ftgloadr.h /^ FT_GlyphLoader_CreateExtra( FT_GlyphLoader loader );$/;" v +loader android/freetype/include/freetype/internal/ftgloadr.h /^ FT_GlyphLoader_Done( FT_GlyphLoader loader );$/;" v +loader android/freetype/include/freetype/internal/ftgloadr.h /^ FT_GlyphLoader_Prepare( FT_GlyphLoader loader );$/;" v +loader android/freetype/include/freetype/internal/ftgloadr.h /^ FT_GlyphLoader_Reset( FT_GlyphLoader loader );$/;" v +loader android/freetype/include/freetype/internal/ftgloadr.h /^ FT_GlyphLoader_Rewind( FT_GlyphLoader loader );$/;" v +loader android/freetype/include/freetype/internal/ftobjs.h /^ FT_GlyphLoader loader;$/;" m struct:FT_Slot_InternalRec_ +loader android/freetype/include/freetype/internal/psaux.h /^ FT_GlyphLoader loader;$/;" m struct:T1_BuilderRec_ +loader android/freetype/src/autofit/afloader.h /^ af_loader_done( AF_Loader loader );$/;" v +loader android/freetype/src/autofit/afmodule.c /^ AF_LoaderRec loader[1];$/;" m struct:FT_AutofitterRec_ file: +loader android/freetype/src/cff/cffgload.h /^ FT_GlyphLoader loader;$/;" m struct:CFF_Builder_ +loader include/freetype/internal/ftgloadr.h /^ FT_GlyphLoader_Add( FT_GlyphLoader loader );$/;" v +loader include/freetype/internal/ftgloadr.h /^ FT_GlyphLoader_CreateExtra( FT_GlyphLoader loader );$/;" v +loader include/freetype/internal/ftgloadr.h /^ FT_GlyphLoader_Done( FT_GlyphLoader loader );$/;" v +loader include/freetype/internal/ftgloadr.h /^ FT_GlyphLoader_Prepare( FT_GlyphLoader loader );$/;" v +loader include/freetype/internal/ftgloadr.h /^ FT_GlyphLoader_Reset( FT_GlyphLoader loader );$/;" v +loader include/freetype/internal/ftgloadr.h /^ FT_GlyphLoader_Rewind( FT_GlyphLoader loader );$/;" v +loader include/freetype/internal/ftobjs.h /^ FT_GlyphLoader loader;$/;" m struct:FT_Slot_InternalRec_ +loader include/freetype/internal/psaux.h /^ FT_GlyphLoader loader;$/;" m struct:T1_BuilderRec_ +localPart android/expat/lib/xmlparse.c /^ const XML_Char *localPart;$/;" m struct:__anon10 file: +local_subrs android/freetype/src/cff/cfftypes.h /^ FT_Byte** local_subrs;$/;" m struct:CFF_SubFontRec_ +local_subrs_index android/freetype/src/cff/cfftypes.h /^ CFF_IndexRec local_subrs_index;$/;" m struct:CFF_SubFontRec_ +local_subrs_index android/freetype/src/cff/cfftypes.h /^ CFF_IndexRec local_subrs_index;$/;" m struct:CFF_FontRec_ +local_subrs_offset android/freetype/src/cff/cfftypes.h /^ FT_ULong local_subrs_offset;$/;" m struct:CFF_PrivateRec_ +locals android/freetype/src/cff/cffgload.h /^ FT_Byte** locals;$/;" m struct:CFF_Decoder_ +locals_bias android/freetype/src/cff/cffgload.h /^ FT_Int locals_bias;$/;" m struct:CFF_Decoder_ +location android/freetype/include/freetype/internal/psaux.h /^ T1_FieldLocation location;$/;" m struct:T1_FieldRec_ +location include/freetype/internal/psaux.h /^ T1_FieldLocation location;$/;" m struct:T1_FieldRec_ +logHH demos/subwaymap.c /^float logHW, logHH;$/;" v +logHW demos/subwaymap.c /^float logHW, logHH;$/;" v +logX demos/subwaymap.c /^float logX, logY;$/;" v +logY demos/subwaymap.c /^float logX, logY;$/;" v +long_metrics android/freetype/include/freetype/tttables.h /^ void* long_metrics;$/;" m struct:TT_HoriHeader_ +long_metrics android/freetype/include/freetype/tttables.h /^ void* long_metrics;$/;" m struct:TT_VertHeader_ +long_metrics include/freetype/tttables.h /^ void* long_metrics;$/;" m struct:TT_HoriHeader_ +long_metrics include/freetype/tttables.h /^ void* long_metrics;$/;" m struct:TT_VertHeader_ +long_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::long_type long_type;$/;" t struct:gfx::composite_op_rgb_color_burn +long_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::long_type long_type;$/;" t struct:gfx::composite_op_rgb_color_dodge +long_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::long_type long_type;$/;" t struct:gfx::composite_op_rgb_contrast +long_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::long_type long_type;$/;" t struct:gfx::composite_op_rgb_difference +long_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::long_type long_type;$/;" t struct:gfx::composite_op_rgb_exclusion +long_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::long_type long_type;$/;" t struct:gfx::composite_op_rgb_hard_light +long_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::long_type long_type;$/;" t struct:gfx::composite_op_rgb_invert +long_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::long_type long_type;$/;" t struct:gfx::composite_op_rgb_invert_rgb +long_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::long_type long_type;$/;" t struct:gfx::composite_op_rgb_soft_light +long_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::long_type long_type;$/;" t struct:gfx::composite_op_rgb_16_color_burn +long_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::long_type long_type;$/;" t struct:gfx::composite_op_rgb_16_color_dodge +long_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::long_type long_type;$/;" t struct:gfx::composite_op_rgb_16_contrast +long_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::long_type long_type;$/;" t struct:gfx::composite_op_rgb_16_difference +long_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::long_type long_type;$/;" t struct:gfx::composite_op_rgb_16_exclusion +long_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::long_type long_type;$/;" t struct:gfx::composite_op_rgb_16_hard_light +long_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::long_type long_type;$/;" t struct:gfx::composite_op_rgb_16_invert +long_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::long_type long_type;$/;" t struct:gfx::composite_op_rgb_16_invert_rgb +long_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::long_type long_type;$/;" t struct:gfx::composite_op_rgb_16_soft_light +long_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::long_type long_type;$/;" t struct:gfx::composite_op_rgba_color_burn +long_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::long_type long_type;$/;" t struct:gfx::composite_op_rgba_color_dodge +long_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::long_type long_type;$/;" t struct:gfx::composite_op_rgba_contrast +long_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::long_type long_type;$/;" t struct:gfx::composite_op_rgba_difference +long_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::long_type long_type;$/;" t struct:gfx::composite_op_rgba_exclusion +long_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::long_type long_type;$/;" t struct:gfx::composite_op_rgba_hard_light +long_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::long_type long_type;$/;" t struct:gfx::composite_op_rgba_invert +long_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::long_type long_type;$/;" t struct:gfx::composite_op_rgba_invert_rgb +long_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::long_type long_type;$/;" t struct:gfx::composite_op_rgba_soft_light +long_type src/include/color_type.h /^ typedef int32_t long_type;$/;" t struct:picasso::rgba8 +lookup android/expat/lib/xmlparse.c /^lookup(XML_Parser parser, HASH_TABLE *table, KEY name, size_t createSize)$/;" f file: +loop android/freetype/src/truetype/ttobjs.h /^ FT_Long loop;$/;" m struct:TT_GraphicsState_ +loop_wait test/thr_posix.c /^void loop_wait(int ms)$/;" f +loop_wait test/thr_win32.c /^void loop_wait(int ms)$/;" f +lsb_delta android/freetype/include/freetype/freetype.h /^ FT_Pos lsb_delta;$/;" m struct:FT_GlyphSlotRec_ +lsb_delta include/freetype/freetype.h /^ FT_Pos lsb_delta;$/;" m struct:FT_GlyphSlotRec_ +m test/mask_func.c /^static ps_mask * m;$/;" v file: +m_adaptor src/gfx/gfx_gradient_adapter.cpp /^ Adaptor m_adaptor;$/;" m class:gfx::gfx_gradient file: +m_add src/gfx/gfx_image_accessors.h /^ unsigned int m_add;$/;" m class:gfx::wrap_mode_reflect +m_add src/gfx/gfx_image_accessors.h /^ unsigned int m_add;$/;" m class:gfx::wrap_mode_repeat +m_affine src/picasso_font.h /^ trans_affine m_affine;$/;" m class:picasso::font_engine +m_all_mem src/include/data_vector.h /^ unsigned int m_all_mem;$/;" m class:picasso::block_allocator +m_allocator src/picasso_font_cache.h /^ block_allocator m_allocator;$/;" m class:picasso::glyph_cache_manager +m_alpha_factor src/gfx/gfx_pixfmt_rgb.h /^ unsigned int m_alpha_factor;$/;" m class:gfx::pixfmt_blender_rgb +m_alpha_factor src/gfx/gfx_pixfmt_rgb16.h /^ unsigned int m_alpha_factor;$/;" m class:gfx::pixfmt_blender_rgb16 +m_alpha_factor src/gfx/gfx_pixfmt_rgba.h /^ unsigned int m_alpha_factor;$/;" m class:gfx::pixfmt_blender_rgba +m_angle src/include/geometry.h /^ scalar m_angle;$/;" m class:picasso::arc +m_angle_tolerance src/include/curve.h /^ scalar m_angle_tolerance;$/;" m class:picasso::curve3_div +m_angle_tolerance src/include/curve.h /^ scalar m_angle_tolerance;$/;" m class:picasso::curve4_div +m_antialias src/gfx/gfx_raster_adapter.cpp /^ bool m_antialias;$/;" m class:gfx::gfx_raster_adapter_impl file: +m_antialias src/picasso_font.h /^ bool m_antialias;$/;" m class:picasso::font_engine +m_approx_scale src/include/convert.h /^ scalar m_approx_scale;$/;" m class:picasso::conv_stroke +m_approximation_method src/include/geometry.h /^ curve_approximation_method m_approximation_method;$/;" m class:picasso::curve3 +m_approximation_method src/include/geometry.h /^ curve_approximation_method m_approximation_method;$/;" m class:picasso::curve4 +m_approximation_scale src/include/curve.h /^ scalar m_approximation_scale;$/;" m class:picasso::curve3_div +m_approximation_scale src/include/curve.h /^ scalar m_approximation_scale;$/;" m class:picasso::curve4_div +m_arc src/include/geometry.h /^ arc m_arc;$/;" m class:picasso::rounded_rect +m_arc src/include/geometry.h /^ bezier_arc m_arc;$/;" m class:picasso::bezier_arc_svg +m_array src/include/data_vector.h /^ T* m_array;$/;" m class:picasso::pod_array +m_array src/include/data_vector.h /^ T* m_array;$/;" m class:picasso::pod_vector +m_attInfo android/expat/lib/xmlparse.c /^ XML_AttrInfo *m_attInfo;$/;" m struct:XML_ParserStruct file: +m_attlistDeclHandler android/expat/lib/xmlparse.c /^ XML_AttlistDeclHandler m_attlistDeclHandler;$/;" m struct:XML_ParserStruct file: +m_atts android/expat/lib/xmlparse.c /^ ATTRIBUTE *m_atts;$/;" m struct:XML_ParserStruct file: +m_attsSize android/expat/lib/xmlparse.c /^ int m_attsSize;$/;" m struct:XML_ParserStruct file: +m_auto_close src/gfx/gfx_rasterizer_scanline.h /^ bool m_auto_close;$/;" m class:gfx::gfx_rasterizer_scanline_aa +m_bits src/include/graphic_helper.h /^ const byte* m_bits;$/;" m class:picasso::bitset_iterator +m_blend_op src/gfx/gfx_pixfmt_rgb.h /^ unsigned int m_blend_op;$/;" m class:gfx::pixfmt_blender_rgb +m_blend_op src/gfx/gfx_pixfmt_rgb16.h /^ unsigned int m_blend_op;$/;" m class:gfx::pixfmt_blender_rgb16 +m_blend_op src/gfx/gfx_pixfmt_rgba.h /^ unsigned int m_blend_op;$/;" m class:gfx::pixfmt_blender_rgba +m_block_ptr_inc src/include/data_vector.h /^ unsigned int m_block_ptr_inc;$/;" m class:picasso::block_allocator +m_block_ptr_inc src/include/data_vector.h /^ unsigned int m_block_ptr_inc;$/;" m class:picasso::pod_bvector +m_block_size src/include/data_vector.h /^ unsigned int m_block_size;$/;" m class:picasso::block_allocator +m_blocks src/include/data_vector.h /^ T** m_blocks;$/;" m class:picasso::pod_bvector +m_blocks src/include/data_vector.h /^ block_type* m_blocks;$/;" m class:picasso::block_allocator +m_buf_ptr src/include/data_vector.h /^ byte* m_buf_ptr;$/;" m class:picasso::block_allocator +m_buffer android/expat/lib/xmlparse.c /^ char *m_buffer;$/;" m struct:XML_ParserStruct file: +m_buffer src/gfx/gfx_blur.h /^ pod_vector m_buffer;$/;" m class:gfx::stack_blur +m_buffer src/gfx/gfx_mask_layer.h /^ gfx_rendering_buffer m_buffer;$/;" m class:gfx::gfx_mask_layer +m_buffer src/gfx/gfx_mask_layer.h /^ gfx_rendering_buffer* m_buffer;$/;" m class:gfx::gfx_alpha_mask_u8 +m_buffer src/gfx/gfx_pixfmt_rgb.h /^ buffer_type* m_buffer;$/;" m class:gfx::pixfmt_blender_rgb +m_buffer src/gfx/gfx_pixfmt_rgb16.h /^ buffer_type* m_buffer;$/;" m class:gfx::pixfmt_blender_rgb16 +m_buffer src/gfx/gfx_pixfmt_rgba.h /^ buffer_type* m_buffer;$/;" m class:gfx::pixfmt_blender_rgba +m_buffer src/gfx/gfx_rendering_buffer.h /^ byte* m_buffer;$/;" m class:gfx::gfx_rendering_buffer +m_bufferEnd android/expat/lib/xmlparse.c /^ char *m_bufferEnd;$/;" m struct:XML_ParserStruct file: +m_bufferLim android/expat/lib/xmlparse.c /^ const char *m_bufferLim;$/;" m struct:XML_ParserStruct file: +m_bufferPtr android/expat/lib/xmlparse.c /^ const char *m_bufferPtr;$/;" m struct:XML_ParserStruct file: +m_build src/gfx/gfx_gradient_adapter.h /^ bool m_build;$/;" m class:gfx::gfx_gradient_adapter +m_cache src/picasso_font.h /^ glyph_cache_manager * m_cache;$/;" m class:picasso::font_adapter +m_capStyle demos/tiger.c /^ ps_line_cap m_capStyle;$/;" m struct:_pathData file: +m_capacity src/include/data_vector.h /^ unsigned int m_capacity;$/;" m class:picasso::pod_array +m_capacity src/include/data_vector.h /^ unsigned int m_capacity;$/;" m class:picasso::pod_vector +m_ccw src/include/geometry.h /^ bool m_ccw;$/;" m class:picasso::arc +m_cells src/gfx/gfx_rasterizer_cell.h /^ cell_type** m_cells;$/;" m class:gfx::gfx_rasterizer_cells_aa +m_cells src/gfx/gfx_scanline_storage.h /^ pod_bvector m_cells;$/;" m class:gfx::gfx_scanline_cell_storage +m_characterDataHandler android/expat/lib/xmlparse.c /^ XML_CharacterDataHandler m_characterDataHandler;$/;" m struct:XML_ParserStruct file: +m_charset src/picasso_font.h /^ int m_charset;$/;" m class:picasso::font_desc +m_clip_path src/gfx/gfx_renderer.h /^ gfx_rasterizer_scanline_aa<> m_clip_path;$/;" m class:gfx::gfx_renderer +m_clip_rect src/gfx/gfx_renderer.h /^ rect m_clip_rect;$/;" m class:gfx::gfx_renderer +m_closed src/include/convert.h /^ unsigned int m_closed;$/;" m class:picasso::conv_dash +m_closed src/include/convert.h /^ unsigned int m_closed;$/;" m class:picasso::conv_stroke +m_cmd src/include/geometry.h /^ unsigned int m_cmd;$/;" m class:picasso::bezier_arc +m_cmds src/core/graphic_path.cpp /^ pod_vector m_cmds;$/;" m class:picasso::graphic_path_impl file: +m_cnt src/gfx/gfx_line_generator.h /^ int m_cnt;$/;" m class:gfx::gfx_dda2_line_interpolator +m_color src/gfx/gfx_scanline_renderer.h /^ color_type m_color;$/;" m class:gfx::gfx_renderer_scanline_aa_solid +m_color src/gfx/gfx_scanline_renderer.h /^ color_type m_color;$/;" m class:gfx::gfx_renderer_scanline_bin_solid +m_color_function src/gfx/gfx_gradient_adapter.h /^ const color_func* m_color_function;$/;" m class:gfx::gfx_span_gradient +m_color_profile src/gfx/gfx_gradient_adapter.h /^ color_profile_type m_color_profile;$/;" m class:gfx::gfx_gradient_table +m_color_table src/gfx/gfx_gradient_adapter.h /^ color_table_type m_color_table;$/;" m class:gfx::gfx_gradient_table +m_colorkey src/gfx/gfx_pixfmt_wrapper.h /^ rgba8 *m_colorkey;$/;" m class:gfx::gfx_pixfmt_wrapper +m_colorkey src/gfx/gfx_rendering_buffer.h /^ rgba m_colorkey;$/;" m class:gfx::gfx_rendering_buffer +m_colors src/gfx/gfx_gradient_adapter.h /^ gfx_gradient_table m_colors;$/;" m class:gfx::gfx_gradient_adapter +m_colors src/gfx/gfx_mask_layer.h /^ pod_bvector m_colors;$/;" m class:gfx::gfx_mask_layer +m_colors src/gfx/gfx_pixfmt_wrapper.h /^ pod_bvector *m_colors;$/;" m class:gfx::gfx_pixfmt_wrapper +m_commentHandler android/expat/lib/xmlparse.c /^ XML_CommentHandler m_commentHandler;$/;" m struct:XML_ParserStruct file: +m_contour src/include/convert.h /^ int m_contour;$/;" m class:picasso::conv_clipper +m_contour_accumulator src/include/convert.h /^ pod_bvector m_contour_accumulator;$/;" m class:picasso::conv_clipper +m_count src/include/curve.h /^ unsigned int m_count;$/;" m class:picasso::curve3_div +m_count src/include/curve.h /^ unsigned int m_count;$/;" m class:picasso::curve4_div +m_cover_ptr src/gfx/gfx_scanline.h /^ cover_type* m_cover_ptr;$/;" m class:gfx::gfx_scanline_p8 +m_covers src/gfx/gfx_scanline.h /^ pod_array m_covers;$/;" m class:gfx::gfx_scanline_p8 +m_covers src/gfx/gfx_scanline.h /^ pod_array m_covers;$/;" m class:gfx::gfx_scanline_u8 +m_covers src/gfx/gfx_scanline_storage.h /^ gfx_scanline_cell_storage m_covers;$/;" m class:gfx::gfx_scanline_storage_aa +m_curBase android/expat/lib/xmlparse.c /^ const XML_Char *m_curBase;$/;" m struct:XML_ParserStruct file: +m_cur_scanline src/gfx/gfx_scanline_storage.h /^ unsigned int m_cur_scanline;$/;" m class:gfx::gfx_scanline_storage_aa +m_cur_scanline src/gfx/gfx_scanline_storage.h /^ unsigned int m_cur_scanline;$/;" m class:gfx::gfx_scanline_storage_bin +m_cur_span src/gfx/gfx_scanline.h /^ span* m_cur_span;$/;" m class:gfx::gfx_scanline_bin +m_cur_span src/gfx/gfx_scanline.h /^ span* m_cur_span;$/;" m class:gfx::gfx_scanline_p8 +m_cur_span src/gfx/gfx_scanline.h /^ span* m_cur_span;$/;" m class:gfx::gfx_scanline_u8 +m_curr_block src/gfx/gfx_rasterizer_cell.h /^ unsigned int m_curr_block;$/;" m class:gfx::gfx_rasterizer_cells_aa +m_curr_cell src/gfx/gfx_rasterizer_cell.h /^ cell_type m_curr_cell;$/;" m class:gfx::gfx_rasterizer_cells_aa +m_curr_cell_ptr src/gfx/gfx_rasterizer_cell.h /^ cell_type* m_curr_cell_ptr;$/;" m class:gfx::gfx_rasterizer_cells_aa +m_curr_dash src/include/convert.h /^ unsigned int m_curr_dash;$/;" m class:picasso::conv_dash +m_curr_dash_start src/include/convert.h /^ scalar m_curr_dash_start;$/;" m class:picasso::conv_dash +m_curr_rest src/include/convert.h /^ scalar m_curr_rest;$/;" m class:picasso::conv_dash +m_current src/picasso_font.h /^ font_adapter* m_current;$/;" m class:picasso::font_engine +m_curve3 src/include/convert.h /^ curve3 m_curve3;$/;" m class:picasso::conv_curve +m_curve4 src/include/convert.h /^ curve4 m_curve4; $/;" m class:picasso::conv_curve +m_curve_div src/include/geometry.h /^ curve3_div m_curve_div;$/;" m class:picasso::curve3 +m_curve_div src/include/geometry.h /^ curve4_div m_curve_div;$/;" m class:picasso::curve4 +m_curve_inc src/include/geometry.h /^ curve3_inc m_curve_inc;$/;" m class:picasso::curve3 +m_curve_inc src/include/geometry.h /^ curve4_inc m_curve_inc;$/;" m class:picasso::curve4 +m_cusp_limit src/include/curve.h /^ scalar m_cusp_limit;$/;" m class:picasso::curve4_div +m_cw src/include/geometry.h /^ bool m_cw;$/;" m class:picasso::ellipse +m_d1 src/gfx/gfx_gradient_adapter.h /^ int m_d1;$/;" m class:gfx::gfx_span_gradient +m_d2 src/gfx/gfx_gradient_adapter.h /^ int m_d2;$/;" m class:gfx::gfx_span_gradient +m_da src/include/geometry.h /^ scalar m_da;$/;" m class:picasso::arc +m_dash_data src/gfx/gfx_raster_adapter.cpp /^ const scalar* m_dash_data;$/;" m class:gfx::gfx_raster_adapter_impl file: +m_dash_num src/gfx/gfx_raster_adapter.cpp /^ unsigned int m_dash_num;$/;" m class:gfx::gfx_raster_adapter_impl file: +m_dash_start src/gfx/gfx_raster_adapter.cpp /^ scalar m_dash_start;$/;" m class:gfx::gfx_raster_adapter_impl file: +m_dash_start src/include/convert.h /^ scalar m_dash_start;$/;" m class:picasso::conv_dash +m_dashes src/include/convert.h /^ scalar m_dashes[max_dashes];$/;" m class:picasso::conv_dash +m_dashline src/gfx/gfx_raster_adapter.cpp /^ bool m_dashline;$/;" m class:gfx::gfx_raster_adapter_impl file: +m_data src/gfx/gfx_scanline_storage.h /^ const uint8_t* m_data;$/;" m class:gfx::gfx_serialized_scanlines_adaptor_aa +m_data src/gfx/gfx_scanline_storage.h /^ const uint8_t* m_data;$/;" m class:gfx::gfx_serialized_scanlines_adaptor_bin +m_data src/include/fixedopt.h /^ fixed_type m_data;$/;" m class:fxmath::fixed +m_dataBuf android/expat/lib/xmlparse.c /^ XML_Char *m_dataBuf;$/;" m struct:XML_ParserStruct file: +m_dataBufEnd android/expat/lib/xmlparse.c /^ XML_Char *m_dataBufEnd;$/;" m struct:XML_ParserStruct file: +m_dddfx src/include/curve.h /^ scalar m_dddfx; $/;" m class:picasso::curve4_inc +m_dddfy src/include/curve.h /^ scalar m_dddfy;$/;" m class:picasso::curve4_inc +m_ddfx src/include/curve.h /^ scalar m_ddfx; $/;" m class:picasso::curve3_inc +m_ddfx src/include/curve.h /^ scalar m_ddfx; $/;" m class:picasso::curve4_inc +m_ddfy src/include/curve.h /^ scalar m_ddfy;$/;" m class:picasso::curve3_inc +m_ddfy src/include/curve.h /^ scalar m_ddfy;$/;" m class:picasso::curve4_inc +m_declAttributeId android/expat/lib/xmlparse.c /^ ATTRIBUTE_ID *m_declAttributeId;$/;" m struct:XML_ParserStruct file: +m_declAttributeIsCdata android/expat/lib/xmlparse.c /^ XML_Bool m_declAttributeIsCdata;$/;" m struct:XML_ParserStruct file: +m_declAttributeIsId android/expat/lib/xmlparse.c /^ XML_Bool m_declAttributeIsId;$/;" m struct:XML_ParserStruct file: +m_declAttributeType android/expat/lib/xmlparse.c /^ const XML_Char *m_declAttributeType;$/;" m struct:XML_ParserStruct file: +m_declElementType android/expat/lib/xmlparse.c /^ ELEMENT_TYPE *m_declElementType;$/;" m struct:XML_ParserStruct file: +m_declEntity android/expat/lib/xmlparse.c /^ ENTITY *m_declEntity;$/;" m struct:XML_ParserStruct file: +m_declNotationName android/expat/lib/xmlparse.c /^ const XML_Char *m_declNotationName;$/;" m struct:XML_ParserStruct file: +m_declNotationPublicId android/expat/lib/xmlparse.c /^ const XML_Char *m_declNotationPublicId;$/;" m struct:XML_ParserStruct file: +m_defaultExpandInternalEntities android/expat/lib/xmlparse.c /^ XML_Bool m_defaultExpandInternalEntities;$/;" m struct:XML_ParserStruct file: +m_defaultHandler android/expat/lib/xmlparse.c /^ XML_DefaultHandler m_defaultHandler;$/;" m struct:XML_ParserStruct file: +m_desc src/picasso_font.h /^ font_desc m_desc;$/;" m class:picasso::font_adapter +m_dfx src/include/curve.h /^ scalar m_dfx; $/;" m class:picasso::curve3_inc +m_dfx src/include/curve.h /^ scalar m_dfx; $/;" m class:picasso::curve4_inc +m_dfy src/include/curve.h /^ scalar m_dfy;$/;" m class:picasso::curve3_inc +m_dfy src/include/curve.h /^ scalar m_dfy;$/;" m class:picasso::curve4_inc +m_diameter src/gfx/gfx_image_filters.h /^ unsigned int m_diameter;$/;" m class:gfx::image_filter_adapter +m_distance_tolerance_square src/include/curve.h /^ scalar m_distance_tolerance_square;$/;" m class:picasso::curve3_div +m_distance_tolerance_square src/include/curve.h /^ scalar m_distance_tolerance_square;$/;" m class:picasso::curve4_div +m_doctypeName android/expat/lib/xmlparse.c /^ const XML_Char *m_doctypeName;$/;" m struct:XML_ParserStruct file: +m_doctypePubid android/expat/lib/xmlparse.c /^ const XML_Char *m_doctypePubid;$/;" m struct:XML_ParserStruct file: +m_doctypeSysid android/expat/lib/xmlparse.c /^ const XML_Char *m_doctypeSysid;$/;" m struct:XML_ParserStruct file: +m_draw_shadow src/gfx/gfx_painter.h /^ bool m_draw_shadow;$/;" m class:gfx::gfx_painter +m_dtd android/expat/lib/xmlparse.c /^ DTD *m_dtd;$/;" m struct:XML_ParserStruct file: +m_dx src/gfx/gfx_scanline_storage.h /^ int m_dx;$/;" m class:gfx::gfx_serialized_scanlines_adaptor_aa::embedded_scanline::const_iterator +m_dx src/gfx/gfx_scanline_storage.h /^ int m_dx;$/;" m class:gfx::gfx_serialized_scanlines_adaptor_bin::embedded_scanline::const_iterator +m_dx src/gfx/gfx_scanline_storage.h /^ int m_dx;$/;" m class:gfx::gfx_serialized_scanlines_adaptor_aa::embedded_scanline +m_dx src/gfx/gfx_scanline_storage.h /^ int m_dx;$/;" m class:gfx::gfx_serialized_scanlines_adaptor_bin::embedded_scanline +m_dx src/gfx/gfx_scanline_storage.h /^ int m_dx;$/;" m class:gfx::gfx_serialized_scanlines_adaptor_aa +m_dx src/gfx/gfx_scanline_storage.h /^ int m_dx;$/;" m class:gfx::gfx_serialized_scanlines_adaptor_bin +m_dx_flt src/gfx/gfx_span_image_filters.h /^ scalar m_dx_flt;$/;" m class:gfx::gfx_span_image_filter +m_dx_int src/gfx/gfx_span_image_filters.h /^ unsigned int m_dx_int;$/;" m class:gfx::gfx_span_image_filter +m_dy src/gfx/gfx_line_generator.h /^ int m_dy;$/;" m class:gfx::gfx_dda_line_interpolator +m_dy src/gfx/gfx_scanline_storage.h /^ int m_dy;$/;" m class:gfx::gfx_serialized_scanlines_adaptor_aa +m_dy src/gfx/gfx_scanline_storage.h /^ int m_dy;$/;" m class:gfx::gfx_serialized_scanlines_adaptor_bin +m_dy_flt src/gfx/gfx_span_image_filters.h /^ scalar m_dy_flt;$/;" m class:gfx::gfx_span_image_filter +m_dy_int src/gfx/gfx_span_image_filters.h /^ unsigned int m_dy_int;$/;" m class:gfx::gfx_span_image_filter +m_elementDeclHandler android/expat/lib/xmlparse.c /^ XML_ElementDeclHandler m_elementDeclHandler;$/;" m struct:XML_ParserStruct file: +m_encoding android/expat/lib/xmlparse.c /^ const ENCODING *m_encoding;$/;" m struct:XML_ParserStruct file: +m_end src/gfx/gfx_gamma_function.h /^ scalar m_end;$/;" m class:gfx::gamma_linear +m_end src/gfx/gfx_scanline_storage.h /^ const uint8_t* m_end;$/;" m class:gfx::gfx_serialized_scanlines_adaptor_aa +m_end src/gfx/gfx_scanline_storage.h /^ const uint8_t* m_end;$/;" m class:gfx::gfx_serialized_scanlines_adaptor_bin +m_end src/include/geometry.h /^ scalar m_end;$/;" m class:picasso::arc +m_endCdataSectionHandler android/expat/lib/xmlparse.c /^ XML_EndCdataSectionHandler m_endCdataSectionHandler;$/;" m struct:XML_ParserStruct file: +m_endDoctypeDeclHandler android/expat/lib/xmlparse.c /^ XML_EndDoctypeDeclHandler m_endDoctypeDeclHandler;$/;" m struct:XML_ParserStruct file: +m_endElementHandler android/expat/lib/xmlparse.c /^ XML_EndElementHandler m_endElementHandler;$/;" m struct:XML_ParserStruct file: +m_endNamespaceDeclHandler android/expat/lib/xmlparse.c /^ XML_EndNamespaceDeclHandler m_endNamespaceDeclHandler;$/;" m struct:XML_ParserStruct file: +m_end_x src/include/curve.h /^ scalar m_end_x; $/;" m class:picasso::curve3_inc +m_end_x src/include/curve.h /^ scalar m_end_x; $/;" m class:picasso::curve4_inc +m_end_y src/include/curve.h /^ scalar m_end_y;$/;" m class:picasso::curve3_inc +m_end_y src/include/curve.h /^ scalar m_end_y;$/;" m class:picasso::curve4_inc +m_entityDeclHandler android/expat/lib/xmlparse.c /^ XML_EntityDeclHandler m_entityDeclHandler;$/;" m struct:XML_ParserStruct file: +m_errorCode android/expat/lib/xmlparse.c /^ enum XML_Error m_errorCode;$/;" m struct:XML_ParserStruct typeref:enum:XML_ParserStruct::XML_Error file: +m_eventEndPtr android/expat/lib/xmlparse.c /^ const char *m_eventEndPtr;$/;" m struct:XML_ParserStruct file: +m_eventPtr android/expat/lib/xmlparse.c /^ const char *m_eventPtr;$/;" m struct:XML_ParserStruct file: +m_externalEntityRefHandler android/expat/lib/xmlparse.c /^ XML_ExternalEntityRefHandler m_externalEntityRefHandler;$/;" m struct:XML_ParserStruct file: +m_externalEntityRefHandlerArg android/expat/lib/xmlparse.c /^ XML_Parser m_externalEntityRefHandlerArg;$/;" m struct:XML_ParserStruct file: +m_extra_storage src/gfx/gfx_scanline_storage.h /^ pod_bvector m_extra_storage;$/;" m class:gfx::gfx_scanline_cell_storage +m_fake_scanline src/gfx/gfx_scanline_storage.h /^ scanline_data m_fake_scanline;$/;" m class:gfx::gfx_scanline_storage_aa +m_fake_scanline src/gfx/gfx_scanline_storage.h /^ scanline_data m_fake_scanline;$/;" m class:gfx::gfx_scanline_storage_bin +m_fake_span src/gfx/gfx_scanline_storage.h /^ span_data m_fake_span;$/;" m class:gfx::gfx_scanline_storage_aa +m_fake_span src/gfx/gfx_scanline_storage.h /^ span_data m_fake_span;$/;" m class:gfx::gfx_scanline_storage_bin +m_fcolor demos/tiger.c /^ ps_color m_fcolor;$/;" m struct:_pathData file: +m_fillRule demos/tiger.c /^ ps_fill_rule m_fillRule; $/;" m struct:_pathData file: +m_fill_color src/gfx/gfx_painter.h /^ rgba m_fill_color;$/;" m class:gfx::gfx_painter +m_fill_type src/gfx/gfx_painter.h /^ source_type m_fill_type; $/;" m class:gfx::gfx_painter +m_filling_rule src/gfx/gfx_raster_adapter.cpp /^ filling_rule m_filling_rule;$/;" m class:gfx::gfx_raster_adapter_impl file: +m_filling_rule src/gfx/gfx_rasterizer_scanline.h /^ filling_rule m_filling_rule;$/;" m class:gfx::gfx_rasterizer_scanline_aa +m_filter src/gfx/gfx_image_filters.cpp /^ FilterType m_filter;$/;" m class:gfx::image_filter file: +m_filter src/gfx/gfx_pixfmt_wrapper.h /^ amask_type m_filter;$/;" m class:gfx::gfx_pixfmt_wrapper +m_filter src/gfx/gfx_span_image_filters.h /^ const image_filter_adapter* m_filter;$/;" m class:gfx::gfx_span_image_filter +m_flip_y src/picasso_font.h /^ bool m_flip_y;$/;" m class:picasso::font_desc +m_fmt src/gfx/gfx_painter.h /^ pixfmt m_fmt;$/;" m class:gfx::gfx_painter +m_fmt src/gfx/gfx_pixfmt_wrapper.h /^ pixfmt_type m_fmt;$/;" m class:gfx::gfx_pixfmt_wrapper +m_font_fill_color src/gfx/gfx_painter.h /^ rgba m_font_fill_color; \/\/FIXME: need stroke type feature.$/;" m class:gfx::gfx_painter +m_fonts src/picasso_font.h /^ font_adapter** m_fonts;$/;" m class:picasso::font_engine +m_fraster src/gfx/gfx_raster_adapter.h /^ gfx_rasterizer_scanline_aa<> m_fraster;$/;" m class:gfx::gfx_raster_adapter +m_freeBindingList android/expat/lib/xmlparse.c /^ BINDING *m_freeBindingList;$/;" m struct:XML_ParserStruct file: +m_freeInternalEntities android/expat/lib/xmlparse.c /^ OPEN_INTERNAL_ENTITY *m_freeInternalEntities;$/;" m struct:XML_ParserStruct file: +m_freeTagList android/expat/lib/xmlparse.c /^ TAG *m_freeTagList;$/;" m struct:XML_ParserStruct file: +m_fx src/gfx/gfx_gradient_adapter.cpp /^ int m_fx;$/;" m class:gfx::gradient_radial_focus file: +m_fx src/include/curve.h /^ scalar m_fx; $/;" m class:picasso::curve3_inc +m_fx src/include/curve.h /^ scalar m_fx; $/;" m class:picasso::curve4_inc +m_fx2 src/gfx/gfx_gradient_adapter.cpp /^ scalar m_fx2;$/;" m class:gfx::gradient_radial_focus file: +m_fy src/gfx/gfx_gradient_adapter.cpp /^ int m_fy;$/;" m class:gfx::gradient_radial_focus file: +m_fy src/include/curve.h /^ scalar m_fy;$/;" m class:picasso::curve3_inc +m_fy src/include/curve.h /^ scalar m_fy;$/;" m class:picasso::curve4_inc +m_fy2 src/gfx/gfx_gradient_adapter.cpp /^ scalar m_fy2;$/;" m class:gfx::gradient_radial_focus file: +m_gamma src/gfx/gfx_gamma_function.h /^ scalar m_gamma;$/;" m class:gfx::gamma_power +m_gamma src/gfx/gfx_rasterizer_scanline.h /^ int m_gamma[aa_scale];$/;" m class:gfx::gfx_rasterizer_scanline_aa +m_gen src/gfx/gfx_rasterizer_scanline.h /^ gen_type m_gen;$/;" m class:gfx::gfx_rasterizer_scanline_aa +m_glyphs src/picasso_font_cache.h /^ glyph** m_glyphs[MAX_CACHE];$/;" m class:picasso::glyph_cache_manager +m_gradient src/gfx/gfx_gradient_adapter.cpp /^ GradientFunc m_gradient;$/;" m class:gfx::gfx_gradient file: +m_gradient src/gfx/gfx_gradient_adapter.cpp /^ const GradientFunc* m_gradient;$/;" m class:gfx::gradient_pad_adaptor file: +m_gradient src/gfx/gfx_gradient_adapter.cpp /^ const GradientFunc* m_gradient;$/;" m class:gfx::gradient_reflect_adaptor file: +m_gradient src/gfx/gfx_gradient_adapter.cpp /^ const GradientFunc* m_gradient;$/;" m class:gfx::gradient_repeat_adaptor file: +m_gradient_function src/gfx/gfx_gradient_adapter.h /^ const gradient_type* m_gradient_function;$/;" m class:gfx::gfx_span_gradient +m_gradient_source src/gfx/gfx_painter.h /^ gradient_holder m_gradient_source;$/;" m class:gfx::gfx_painter +m_groupConnector android/expat/lib/xmlparse.c /^ char *m_groupConnector;$/;" m struct:XML_ParserStruct file: +m_groupSize android/expat/lib/xmlparse.c /^ unsigned int m_groupSize;$/;" m struct:XML_ParserStruct file: +m_handlerArg android/expat/lib/xmlparse.c /^ void *m_handlerArg;$/;" m struct:XML_ParserStruct file: +m_has_colorkey src/gfx/gfx_rendering_buffer.h /^ bool m_has_colorkey;$/;" m class:gfx::gfx_rendering_buffer +m_hash_secret_salt android/expat/lib/xmlparse.c /^ unsigned long m_hash_secret_salt;$/;" m struct:XML_ParserStruct file: +m_height src/gfx/gfx_rendering_buffer.h /^ unsigned int m_height; \/\/ height in pixels$/;" m class:gfx::gfx_rendering_buffer +m_height src/picasso_font.h /^ scalar m_height;$/;" m class:picasso::font_desc +m_hint src/picasso_font.h /^ bool m_hint;$/;" m class:picasso::font_desc +m_hit src/gfx/gfx_rasterizer_scanline.h /^ bool m_hit;$/;" m class:gfx::scanline_hit_test +m_idAttIndex android/expat/lib/xmlparse.c /^ int m_idAttIndex;$/;" m struct:XML_ParserStruct file: +m_image_source src/gfx/gfx_painter.h /^ image_holder m_image_source;$/;" m class:gfx::gfx_painter +m_impl src/gfx/gfx_font_adapter.h /^ font_adapter_impl* m_impl;$/;" m class:gfx::gfx_font_adapter +m_impl src/gfx/gfx_raster_adapter.h /^ gfx_raster_adapter_impl * m_impl;$/;" m class:gfx::gfx_raster_adapter +m_impl src/include/graphic_path.h /^ graphic_path_impl *m_impl;$/;" m class:picasso::graphic_path +m_impl src/picasso_font.h /^ abstract_font_adapter * m_impl;$/;" m class:picasso::font_adapter +m_impl src/picasso_gradient.h /^ abstract_gradient_adapter* m_impl;$/;" m class:picasso::gradient_adapter +m_impl src/picasso_mask.h /^ abstract_mask_layer* m_impl;$/;" m class:picasso::mask_layer +m_impl src/picasso_matrix.h /^ abstract_trans_affine* m_impl;$/;" m class:picasso::trans_affine +m_impl src/picasso_painter.h /^ abstract_painter * m_impl;$/;" m class:picasso::painter +m_impl src/picasso_raster_adapter.h /^ abstract_raster_adapter * m_impl;$/;" m class:picasso::raster_adapter +m_impl src/picasso_rendering_buffer.h /^ abstract_rendering_buffer * m_impl;$/;" m class:picasso::rendering_buffer +m_inc src/gfx/gfx_line_generator.h /^ int m_inc;$/;" m class:gfx::gfx_dda_line_interpolator +m_inheritedBindings android/expat/lib/xmlparse.c /^ BINDING *m_inheritedBindings;$/;" m struct:XML_ParserStruct file: +m_initEncoding android/expat/lib/xmlparse.c /^ INIT_ENCODING m_initEncoding;$/;" m struct:XML_ParserStruct file: +m_initialized src/include/geometry.h /^ bool m_initialized;$/;" m class:picasso::arc +m_inner_join src/gfx/gfx_raster_adapter.cpp /^ inner_join m_inner_join;$/;" m class:gfx::gfx_raster_adapter_impl file: +m_inner_join src/include/convert.h /^ inner_join m_inner_join;$/;" m class:picasso::conv_stroke +m_inner_miter_limit src/include/convert.h /^ scalar m_inner_miter_limit;$/;" m class:picasso::conv_stroke +m_internalEncoding android/expat/lib/xmlparse.c /^ const ENCODING *m_internalEncoding;$/;" m struct:XML_ParserStruct file: +m_interpolator src/gfx/gfx_gradient_adapter.h /^ interpolator_type* m_interpolator;$/;" m class:gfx::gfx_span_gradient +m_interpolator src/gfx/gfx_span_image_filters.h /^ interpolator_type* m_interpolator;$/;" m class:gfx::gfx_span_image_filter +m_isParamEntity android/expat/lib/xmlparse.c /^ XML_Bool m_isParamEntity;$/;" m struct:XML_ParserStruct file: +m_is_path_clip src/gfx/gfx_renderer.h /^ bool m_is_path_clip;$/;" m class:gfx::gfx_renderer +m_italic src/picasso_font.h /^ bool m_italic;$/;" m class:picasso::font_desc +m_iterator src/include/graphic_path.h /^ unsigned int m_iterator;$/;" m class:picasso::graphic_path +m_joinStyle demos/tiger.c /^ ps_line_join m_joinStyle;$/;" m struct:_pathData file: +m_last_cmd src/include/convert.h /^ unsigned int m_last_cmd;$/;" m class:picasso::conv_line_generator +m_last_glyph src/picasso_font.h /^ const glyph* m_last_glyph;$/;" m class:picasso::font_adapter +m_last_x src/gfx/gfx_scanline.h /^ int m_last_x;$/;" m class:gfx::gfx_scanline_bin +m_last_x src/gfx/gfx_scanline.h /^ int m_last_x;$/;" m class:gfx::gfx_scanline_p8 +m_last_x src/gfx/gfx_scanline.h /^ int m_last_x;$/;" m class:gfx::gfx_scanline_u8 +m_last_x src/include/convert.h /^ scalar m_last_x;$/;" m class:picasso::conv_curve +m_last_y src/include/convert.h /^ scalar m_last_y;$/;" m class:picasso::conv_curve +m_length src/gfx/gfx_gradient_adapter.h /^ scalar m_length;$/;" m class:gfx::gfx_gradient_adapter +m_lft src/gfx/gfx_line_generator.h /^ int m_lft;$/;" m class:gfx::gfx_dda2_line_interpolator +m_li_x src/gfx/gfx_span_generator.h /^ gfx_dda2_line_interpolator m_li_x;$/;" m class:gfx::gfx_span_interpolator_linear +m_li_y src/gfx/gfx_span_generator.h /^ gfx_dda2_line_interpolator m_li_y;$/;" m class:gfx::gfx_span_interpolator_linear +m_lineWidth demos/tiger.c /^ float m_lineWidth;$/;" m struct:_pathData file: +m_line_cap src/gfx/gfx_raster_adapter.cpp /^ line_cap m_line_cap;$/;" m class:gfx::gfx_raster_adapter_impl file: +m_line_cap src/include/convert.h /^ line_cap m_line_cap;$/;" m class:picasso::conv_stroke +m_line_join src/gfx/gfx_raster_adapter.cpp /^ line_join m_line_join;$/;" m class:gfx::gfx_raster_adapter_impl file: +m_line_join src/include/convert.h /^ line_join m_line_join;$/;" m class:picasso::conv_stroke +m_line_width src/gfx/gfx_raster_adapter.cpp /^ scalar m_line_width;$/;" m class:gfx::gfx_raster_adapter_impl file: +m_mask src/gfx/gfx_mask_layer.h /^ const amask_type* m_mask;$/;" m class:gfx::gfx_pixfmt_amask_adaptor +m_mask src/gfx/gfx_pixfmt_wrapper.h /^ gfx_pixfmt_amask_adaptor m_mask;$/;" m class:gfx::gfx_pixfmt_wrapper +m_mask src/include/graphic_helper.h /^ byte m_mask;$/;" m class:picasso::bitset_iterator +m_matrix src/gfx/gfx_gradient_adapter.h /^ gfx_trans_affine m_matrix;$/;" m class:gfx::gfx_gradient_adapter +m_max_blocks src/gfx/gfx_rasterizer_cell.h /^ unsigned int m_max_blocks;$/;" m class:gfx::gfx_rasterizer_cells_aa +m_max_blocks src/include/data_vector.h /^ unsigned int m_max_blocks;$/;" m class:picasso::block_allocator +m_max_blocks src/include/data_vector.h /^ unsigned int m_max_blocks;$/;" m class:picasso::pod_bvector +m_max_fonts src/picasso_font.h /^ unsigned int m_max_fonts;$/;" m class:picasso::font_engine +m_max_x src/gfx/gfx_rasterizer_cell.h /^ int m_max_x;$/;" m class:gfx::gfx_rasterizer_cells_aa +m_max_x src/gfx/gfx_scanline_storage.h /^ int m_max_x;$/;" m class:gfx::gfx_scanline_storage_aa +m_max_x src/gfx/gfx_scanline_storage.h /^ int m_max_x;$/;" m class:gfx::gfx_scanline_storage_bin +m_max_x src/gfx/gfx_scanline_storage.h /^ int m_max_x;$/;" m class:gfx::gfx_serialized_scanlines_adaptor_aa +m_max_x src/gfx/gfx_scanline_storage.h /^ int m_max_x;$/;" m class:gfx::gfx_serialized_scanlines_adaptor_bin +m_max_y src/gfx/gfx_rasterizer_cell.h /^ int m_max_y;$/;" m class:gfx::gfx_rasterizer_cells_aa +m_max_y src/gfx/gfx_scanline_storage.h /^ int m_max_y;$/;" m class:gfx::gfx_scanline_storage_aa +m_max_y src/gfx/gfx_scanline_storage.h /^ int m_max_y;$/;" m class:gfx::gfx_scanline_storage_bin +m_max_y src/gfx/gfx_scanline_storage.h /^ int m_max_y;$/;" m class:gfx::gfx_serialized_scanlines_adaptor_aa +m_max_y src/gfx/gfx_scanline_storage.h /^ int m_max_y;$/;" m class:gfx::gfx_serialized_scanlines_adaptor_bin +m_mem android/expat/lib/xmlparse.c /^ const XML_Memory_Handling_Suite m_mem;$/;" m struct:XML_ParserStruct file: +m_method src/gfx/gfx_raster_adapter.cpp /^ unsigned int m_method;$/;" m class:gfx::gfx_raster_adapter_impl file: +m_min_x src/gfx/gfx_rasterizer_cell.h /^ int m_min_x;$/;" m class:gfx::gfx_rasterizer_cells_aa +m_min_x src/gfx/gfx_scanline.h /^ int m_min_x;$/;" m class:gfx::gfx_scanline_u8 +m_min_x src/gfx/gfx_scanline_storage.h /^ int m_min_x;$/;" m class:gfx::gfx_scanline_storage_aa +m_min_x src/gfx/gfx_scanline_storage.h /^ int m_min_x;$/;" m class:gfx::gfx_scanline_storage_bin +m_min_x src/gfx/gfx_scanline_storage.h /^ int m_min_x;$/;" m class:gfx::gfx_serialized_scanlines_adaptor_aa +m_min_x src/gfx/gfx_scanline_storage.h /^ int m_min_x;$/;" m class:gfx::gfx_serialized_scanlines_adaptor_bin +m_min_y src/gfx/gfx_rasterizer_cell.h /^ int m_min_y;$/;" m class:gfx::gfx_rasterizer_cells_aa +m_min_y src/gfx/gfx_scanline_storage.h /^ int m_min_y;$/;" m class:gfx::gfx_scanline_storage_aa +m_min_y src/gfx/gfx_scanline_storage.h /^ int m_min_y;$/;" m class:gfx::gfx_scanline_storage_bin +m_min_y src/gfx/gfx_scanline_storage.h /^ int m_min_y;$/;" m class:gfx::gfx_serialized_scanlines_adaptor_aa +m_min_y src/gfx/gfx_scanline_storage.h /^ int m_min_y;$/;" m class:gfx::gfx_serialized_scanlines_adaptor_bin +m_miterLimit demos/tiger.c /^ float m_miterLimit;$/;" m struct:_pathData file: +m_miter_limit src/gfx/gfx_raster_adapter.cpp /^ scalar m_miter_limit;$/;" m class:gfx::gfx_raster_adapter_impl file: +m_miter_limit src/include/convert.h /^ scalar m_miter_limit;$/;" m class:picasso::conv_stroke +m_mod src/gfx/gfx_line_generator.h /^ int m_mod;$/;" m class:gfx::gfx_dda2_line_interpolator +m_mono_storage src/picasso_font.h /^ mono_storage m_mono_storage;$/;" m class:picasso::font_adapter +m_mul src/gfx/gfx_gamma_function.h /^ scalar m_mul;$/;" m class:gfx::gamma_multiply +m_mul src/gfx/gfx_gradient_adapter.cpp /^ scalar m_mul;$/;" m class:gfx::gradient_radial_focus file: +m_nSpecifiedAtts android/expat/lib/xmlparse.c /^ int m_nSpecifiedAtts;$/;" m struct:XML_ParserStruct file: +m_name src/picasso_font.h /^ char* m_name;$/;" m class:picasso::font_desc +m_namespaceSeparator android/expat/lib/xmlparse.c /^ XML_Char m_namespaceSeparator;$/;" m struct:XML_ParserStruct file: +m_notStandaloneHandler android/expat/lib/xmlparse.c /^ XML_NotStandaloneHandler m_notStandaloneHandler;$/;" m struct:XML_ParserStruct file: +m_notationDeclHandler android/expat/lib/xmlparse.c /^ XML_NotationDeclHandler m_notationDeclHandler;$/;" m struct:XML_ParserStruct file: +m_ns android/expat/lib/xmlparse.c /^ XML_Bool m_ns;$/;" m struct:XML_ParserStruct file: +m_nsAtts android/expat/lib/xmlparse.c /^ NS_ATT *m_nsAtts;$/;" m struct:XML_ParserStruct file: +m_nsAttsPower android/expat/lib/xmlparse.c /^ unsigned char m_nsAttsPower;$/;" m struct:XML_ParserStruct file: +m_nsAttsVersion android/expat/lib/xmlparse.c /^ unsigned long m_nsAttsVersion;$/;" m struct:XML_ParserStruct file: +m_ns_triplets android/expat/lib/xmlparse.c /^ XML_Bool m_ns_triplets;$/;" m struct:XML_ParserStruct file: +m_num src/include/geometry.h /^ unsigned int m_num;$/;" m class:picasso::ellipse +m_numPaths demos/tiger.c /^ int m_numPaths;$/;" m struct:_PS file: +m_num_blocks src/gfx/gfx_rasterizer_cell.h /^ unsigned int m_num_blocks;$/;" m class:gfx::gfx_rasterizer_cells_aa +m_num_blocks src/include/data_vector.h /^ unsigned int m_num_blocks;$/;" m class:picasso::block_allocator +m_num_blocks src/include/data_vector.h /^ unsigned int m_num_blocks;$/;" m class:picasso::pod_bvector +m_num_cells src/gfx/gfx_rasterizer_cell.h /^ unsigned int m_num_cells;$/;" m class:gfx::gfx_rasterizer_cells_aa +m_num_dashes src/include/convert.h /^ unsigned int m_num_dashes;$/;" m class:picasso::conv_dash +m_num_fonts src/picasso_font.h /^ unsigned int m_num_fonts;$/;" m class:picasso::font_engine +m_num_spans src/gfx/gfx_scanline_storage.h /^ unsigned int m_num_spans;$/;" m class:gfx::gfx_serialized_scanlines_adaptor_aa::embedded_scanline +m_num_spans src/gfx/gfx_scanline_storage.h /^ unsigned int m_num_spans;$/;" m class:gfx::gfx_serialized_scanlines_adaptor_bin::embedded_scanline +m_num_steps src/include/curve.h /^ int m_num_steps;$/;" m class:picasso::curve3_inc +m_num_steps src/include/curve.h /^ int m_num_steps;$/;" m class:picasso::curve4_inc +m_num_vertices src/include/geometry.h /^ unsigned int m_num_vertices;$/;" m class:picasso::bezier_arc +m_openInternalEntities android/expat/lib/xmlparse.c /^ OPEN_INTERNAL_ENTITY *m_openInternalEntities;$/;" m struct:XML_ParserStruct file: +m_operation src/include/convert.h /^ clip_op m_operation;$/;" m class:picasso::conv_clipper +m_out_vertex src/include/convert.h /^ unsigned int m_out_vertex;$/;" m class:picasso::conv_stroke +m_out_vertices src/include/convert.h /^ coord_storage m_out_vertices;$/;" m class:picasso::conv_stroke +m_outline src/gfx/gfx_rasterizer_scanline.h /^ gfx_rasterizer_cells_aa m_outline;$/;" m class:gfx::gfx_rasterizer_scanline_aa +m_paintMode demos/tiger.c /^ unsigned int m_paintMode; \/* 1: fill, 2 stroke*\/$/;" m struct:_pathData file: +m_paramEntityParsing android/expat/lib/xmlparse.c /^ enum XML_ParamEntityParsing m_paramEntityParsing;$/;" m struct:XML_ParserStruct typeref:enum:XML_ParserStruct::XML_ParamEntityParsing file: +m_parentParser android/expat/lib/xmlparse.c /^ XML_Parser m_parentParser;$/;" m struct:XML_ParserStruct file: +m_parseEndByteIndex android/expat/lib/xmlparse.c /^ XML_Index m_parseEndByteIndex;$/;" m struct:XML_ParserStruct file: +m_parseEndPtr android/expat/lib/xmlparse.c /^ const char *m_parseEndPtr;$/;" m struct:XML_ParserStruct file: +m_parsingStatus android/expat/lib/xmlparse.c /^ XML_ParsingStatus m_parsingStatus;$/;" m struct:XML_ParserStruct file: +m_path demos/tiger.c /^ ps_path * m_path;$/;" m struct:_pathData file: +m_path_adaptor src/picasso_font.h /^ graphic_path m_path_adaptor;$/;" m class:picasso::font_adapter +m_path_cmd src/include/geometry.h /^ unsigned int m_path_cmd;$/;" m class:picasso::arc +m_paths demos/tiger.c /^ pathData* m_paths;$/;" m struct:_PS file: +m_pattern_source src/gfx/gfx_painter.h /^ pattern_holder m_pattern_source;$/;" m class:gfx::gfx_painter +m_pix_ptr src/gfx/gfx_image_accessors.h /^ const byte* m_pix_ptr;$/;" m class:gfx::image_accessor +m_pixf src/gfx/gfx_image_accessors.h /^ const PixFmt* m_pixf;$/;" m class:gfx::image_accessor +m_pixf src/gfx/gfx_image_accessors.h /^ const PixFmt* m_pixf;$/;" m class:gfx::image_accessor_wrap +m_pixfmt src/gfx/gfx_blur.h /^ pixfmt_type* m_pixfmt;$/;" m class:gfx::pixfmt_transformer +m_pixfmt src/gfx/gfx_mask_layer.h /^ pixfmt_type* m_pixfmt;$/;" m class:gfx::gfx_pixfmt_amask_adaptor +m_pixfmt src/gfx/gfx_renderer.h /^ pixfmt_type* m_pixfmt;$/;" m class:gfx::gfx_renderer +m_points src/include/curve.h /^ pod_bvector m_points;$/;" m class:picasso::curve3_div +m_points src/include/curve.h /^ pod_bvector m_points;$/;" m class:picasso::curve4_div +m_poly_a src/include/convert.h /^ gpc_polygon m_poly_a;$/;" m class:picasso::conv_clipper +m_poly_b src/include/convert.h /^ gpc_polygon m_poly_b;$/;" m class:picasso::conv_clipper +m_position android/expat/lib/xmlparse.c /^ POSITION m_position;$/;" m struct:XML_ParserStruct file: +m_positionPtr android/expat/lib/xmlparse.c /^ const char *m_positionPtr;$/;" m struct:XML_ParserStruct file: +m_prev_glyph src/picasso_font.h /^ const glyph* m_prev_glyph;$/;" m class:picasso::font_adapter +m_prev_status src/include/convert.h /^ status m_prev_status;$/;" m class:picasso::conv_stroke +m_processingInstructionHandler android/expat/lib/xmlparse.c /^ XML_ProcessingInstructionHandler m_processingInstructionHandler;$/;" m struct:XML_ParserStruct file: +m_processor android/expat/lib/xmlparse.c /^ Processor *m_processor;$/;" m struct:XML_ParserStruct file: +m_prologState android/expat/lib/xmlparse.c /^ PROLOG_STATE m_prologState;$/;" m struct:XML_ParserStruct file: +m_protocolEncodingName android/expat/lib/xmlparse.c /^ const XML_Char *m_protocolEncodingName;$/;" m struct:XML_ParserStruct file: +m_ptr src/gfx/gfx_scanline_storage.h /^ const uint8_t* m_ptr;$/;" m class:gfx::gfx_serialized_scanlines_adaptor_aa::embedded_scanline::const_iterator +m_ptr src/gfx/gfx_scanline_storage.h /^ const uint8_t* m_ptr;$/;" m class:gfx::gfx_serialized_scanlines_adaptor_bin::embedded_scanline::const_iterator +m_ptr src/gfx/gfx_scanline_storage.h /^ const uint8_t* m_ptr;$/;" m class:gfx::gfx_serialized_scanlines_adaptor_aa::embedded_scanline +m_ptr src/gfx/gfx_scanline_storage.h /^ const uint8_t* m_ptr;$/;" m class:gfx::gfx_serialized_scanlines_adaptor_bin::embedded_scanline +m_ptr src/gfx/gfx_scanline_storage.h /^ const uint8_t* m_ptr;$/;" m class:gfx::gfx_serialized_scanlines_adaptor_aa +m_ptr src/gfx/gfx_scanline_storage.h /^ const uint8_t* m_ptr;$/;" m class:gfx::gfx_serialized_scanlines_adaptor_bin +m_ptr src/include/refptr.h /^ T *m_ptr;$/;" m class:picasso::refptr +m_r src/gfx/gfx_gradient_adapter.cpp /^ int m_r;$/;" m class:gfx::gradient_radial_focus file: +m_r2 src/gfx/gfx_gradient_adapter.cpp /^ scalar m_r2;$/;" m class:gfx::gradient_radial_focus file: +m_radii_ok src/include/geometry.h /^ bool m_radii_ok;$/;" m class:picasso::bezier_arc_svg +m_radius src/gfx/gfx_image_filters.h /^ scalar m_radius;$/;" m class:gfx::image_filter_adapter +m_rb src/gfx/gfx_painter.h /^ renderer_base_type m_rb;$/;" m class:gfx::gfx_painter +m_refCount src/include/shared.h /^ int m_refCount;$/;" m class:picasso::shared +m_rem src/gfx/gfx_line_generator.h /^ int m_rem;$/;" m class:gfx::gfx_dda2_line_interpolator +m_remain_size src/include/data_vector.h /^ unsigned int m_remain_size;$/;" m class:picasso::block_allocator +m_ren src/gfx/gfx_scanline_renderer.h /^ ren_type* m_ren;$/;" m class:gfx::gfx_renderer_scanline_aa_solid +m_ren src/gfx/gfx_scanline_renderer.h /^ ren_type* m_ren;$/;" m class:gfx::gfx_renderer_scanline_bin_solid +m_result src/include/convert.h /^ gpc_polygon m_result;$/;" m class:picasso::conv_clipper +m_row_ptr src/gfx/gfx_image_accessors.h /^ const byte* m_row_ptr;$/;" m class:gfx::image_accessor_wrap +m_rows src/gfx/gfx_rendering_buffer.h /^ pod_array m_rows;$/;" m class:gfx::gfx_rendering_buffer +m_rx src/include/geometry.h /^ scalar m_rx;$/;" m class:picasso::arc +m_rx src/include/geometry.h /^ scalar m_rx;$/;" m class:picasso::ellipse +m_rx1 src/include/geometry.h /^ scalar m_rx1;$/;" m class:picasso::rounded_rect +m_rx2 src/include/geometry.h /^ scalar m_rx2;$/;" m class:picasso::rounded_rect +m_rx3 src/include/geometry.h /^ scalar m_rx3;$/;" m class:picasso::rounded_rect +m_rx4 src/include/geometry.h /^ scalar m_rx4;$/;" m class:picasso::rounded_rect +m_ry src/include/geometry.h /^ scalar m_ry;$/;" m class:picasso::arc +m_ry src/include/geometry.h /^ scalar m_ry;$/;" m class:picasso::ellipse +m_ry1 src/include/geometry.h /^ scalar m_ry1;$/;" m class:picasso::rounded_rect +m_ry2 src/include/geometry.h /^ scalar m_ry2;$/;" m class:picasso::rounded_rect +m_ry3 src/include/geometry.h /^ scalar m_ry3;$/;" m class:picasso::rounded_rect +m_ry4 src/include/geometry.h /^ scalar m_ry4;$/;" m class:picasso::rounded_rect +m_saved_ddfx src/include/curve.h /^ scalar m_saved_ddfx; $/;" m class:picasso::curve4_inc +m_saved_ddfy src/include/curve.h /^ scalar m_saved_ddfy;$/;" m class:picasso::curve4_inc +m_saved_dfx src/include/curve.h /^ scalar m_saved_dfx; $/;" m class:picasso::curve3_inc +m_saved_dfx src/include/curve.h /^ scalar m_saved_dfx; $/;" m class:picasso::curve4_inc +m_saved_dfy src/include/curve.h /^ scalar m_saved_dfy;$/;" m class:picasso::curve3_inc +m_saved_dfy src/include/curve.h /^ scalar m_saved_dfy;$/;" m class:picasso::curve4_inc +m_saved_fx src/include/curve.h /^ scalar m_saved_fx; $/;" m class:picasso::curve3_inc +m_saved_fx src/include/curve.h /^ scalar m_saved_fx; $/;" m class:picasso::curve4_inc +m_saved_fy src/include/curve.h /^ scalar m_saved_fy;$/;" m class:picasso::curve3_inc +m_saved_fy src/include/curve.h /^ scalar m_saved_fy;$/;" m class:picasso::curve4_inc +m_scale src/include/curve.h /^ scalar m_scale;$/;" m class:picasso::curve3_inc +m_scale src/include/curve.h /^ scalar m_scale;$/;" m class:picasso::curve4_inc +m_scale src/include/geometry.h /^ scalar m_scale;$/;" m class:picasso::arc +m_scale src/include/geometry.h /^ scalar m_scale;$/;" m class:picasso::ellipse +m_scan_y src/gfx/gfx_rasterizer_scanline.h /^ int m_scan_y;$/;" m class:gfx::gfx_rasterizer_scanline_aa +m_scanline src/gfx/gfx_scanline_storage.h /^ scanline_data m_scanline;$/;" m class:gfx::gfx_scanline_storage_aa::embedded_scanline +m_scanline src/gfx/gfx_scanline_storage.h /^ scanline_data m_scanline;$/;" m class:gfx::gfx_scanline_storage_bin::embedded_scanline +m_scanline_bin src/gfx/gfx_painter.h /^ gfx_scanline_bin m_scanline_bin;$/;" m class:gfx::gfx_painter +m_scanline_idx src/gfx/gfx_scanline_storage.h /^ unsigned int m_scanline_idx;$/;" m class:gfx::gfx_scanline_storage_aa::embedded_scanline +m_scanline_idx src/gfx/gfx_scanline_storage.h /^ unsigned int m_scanline_idx;$/;" m class:gfx::gfx_scanline_storage_bin::embedded_scanline +m_scanline_p src/gfx/gfx_painter.h /^ gfx_scanline_p8 m_scanline_p;$/;" m class:gfx::gfx_painter +m_scanline_u src/gfx/gfx_painter.h /^ gfx_scanline_u8 m_scanline_u;$/;" m class:gfx::gfx_painter +m_scanlines src/gfx/gfx_scanline_storage.h /^ picasso::pod_bvector m_scanlines;$/;" m class:gfx::gfx_scanline_storage_aa +m_scanlines src/gfx/gfx_scanline_storage.h /^ pod_bvector m_scanlines;$/;" m class:gfx::gfx_scanline_storage_bin +m_scolor demos/tiger.c /^ ps_color m_scolor;$/;" m struct:_pathData file: +m_shading src/gfx/gfx_blur.h /^ color_type m_shading;$/;" m class:gfx::stack_blur +m_shadow_area src/gfx/gfx_painter.h /^ rect_s m_shadow_area;$/;" m class:gfx::gfx_painter +m_shadow_base src/gfx/gfx_painter.h /^ gfx_renderer m_shadow_base;$/;" m class:gfx::gfx_painter +m_shadow_buffer src/gfx/gfx_painter.h /^ byte* m_shadow_buffer;$/;" m class:gfx::gfx_painter +m_shadow_fmt src/gfx/gfx_painter.h /^ pixfmt_rgba32 m_shadow_fmt;$/;" m class:gfx::gfx_painter +m_shadow_rb src/gfx/gfx_painter.h /^ gfx_rendering_buffer m_shadow_rb;$/;" m class:gfx::gfx_painter +m_shape src/include/graphic_path.h /^ unsigned int m_shape;$/;" m class:picasso::graphic_path +m_shorten src/include/convert.h /^ scalar m_shorten;$/;" m class:picasso::conv_dash +m_shorten src/include/convert.h /^ scalar m_shorten;$/;" m class:picasso::conv_stroke +m_shx src/gfx/gfx_trans_affine.h /^ scalar m_shx;$/;" m class:gfx::gfx_trans_affine +m_shy src/gfx/gfx_trans_affine.h /^ scalar m_shy;$/;" m class:gfx::gfx_trans_affine +m_signature src/picasso_font.h /^ char* m_signature;$/;" m class:picasso::font_engine +m_signature src/picasso_font_cache.h /^ char* m_signature;$/;" m class:picasso::glyph_cache_manager +m_size src/gfx/gfx_image_accessors.h /^ unsigned int m_size;$/;" m class:gfx::wrap_mode_reflect +m_size src/gfx/gfx_image_accessors.h /^ unsigned int m_size;$/;" m class:gfx::wrap_mode_repeat +m_size src/include/data_vector.h /^ unsigned int m_size;$/;" m class:picasso::pod_array +m_size src/include/data_vector.h /^ unsigned int m_size;$/;" m class:picasso::pod_bvector +m_size src/include/data_vector.h /^ unsigned int m_size;$/;" m class:picasso::pod_vector +m_size2 src/gfx/gfx_image_accessors.h /^ unsigned int m_size2;$/;" m class:gfx::wrap_mode_reflect +m_skippedEntityHandler android/expat/lib/xmlparse.c /^ XML_SkippedEntityHandler m_skippedEntityHandler;$/;" m struct:XML_ParserStruct file: +m_sorted src/gfx/gfx_rasterizer_cell.h /^ bool m_sorted;$/;" m class:gfx::gfx_rasterizer_cells_aa +m_sorted_cells src/gfx/gfx_rasterizer_cell.h /^ pod_vector m_sorted_cells;$/;" m class:gfx::gfx_rasterizer_cells_aa +m_sorted_y src/gfx/gfx_rasterizer_cell.h /^ pod_vector m_sorted_y;$/;" m class:gfx::gfx_rasterizer_cells_aa +m_source src/gfx/gfx_raster_adapter.cpp /^ const vertex_source* m_source;$/;" m class:gfx::gfx_raster_adapter_impl file: +m_source src/include/convert.h /^ vertex_source* m_source;$/;" m class:picasso::conv_curve +m_source src/include/convert.h /^ vertex_source* m_source;$/;" m class:picasso::conv_line_generator +m_source src/include/convert.h /^ vertex_source* m_source;$/;" m class:picasso::conv_transform +m_span src/gfx/gfx_mask_layer.h /^ pod_array m_span;$/;" m class:gfx::gfx_pixfmt_amask_adaptor +m_span src/gfx/gfx_scanline_storage.h /^ span m_span;$/;" m class:gfx::gfx_scanline_storage_aa::embedded_scanline::const_iterator +m_span src/gfx/gfx_scanline_storage.h /^ span m_span;$/;" m class:gfx::gfx_serialized_scanlines_adaptor_aa::embedded_scanline::const_iterator +m_span src/gfx/gfx_scanline_storage.h /^ span m_span;$/;" m class:gfx::gfx_serialized_scanlines_adaptor_bin::embedded_scanline::const_iterator +m_span src/gfx/gfx_scanline_storage.h /^ span_data m_span;$/;" m class:gfx::gfx_scanline_storage_bin::embedded_scanline::const_iterator +m_span src/gfx/gfx_span_generator.h /^ pod_array m_span;$/;" m class:gfx::gfx_span_allocator +m_span_idx src/gfx/gfx_scanline_storage.h /^ unsigned int m_span_idx;$/;" m class:gfx::gfx_scanline_storage_aa::embedded_scanline::const_iterator +m_span_idx src/gfx/gfx_scanline_storage.h /^ unsigned int m_span_idx;$/;" m class:gfx::gfx_scanline_storage_bin::embedded_scanline::const_iterator +m_spans src/gfx/gfx_painter.h /^ gfx_span_allocator m_spans;$/;" m class:gfx::gfx_painter +m_spans src/gfx/gfx_scanline.h /^ pod_array m_spans;$/;" m class:gfx::gfx_scanline_bin +m_spans src/gfx/gfx_scanline.h /^ pod_array m_spans;$/;" m class:gfx::gfx_scanline_p8 +m_spans src/gfx/gfx_scanline.h /^ pod_array m_spans;$/;" m class:gfx::gfx_scanline_u8 +m_spans src/gfx/gfx_scanline_storage.h /^ picasso::pod_bvector m_spans;$/;" m class:gfx::gfx_scanline_storage_aa +m_spans src/gfx/gfx_scanline_storage.h /^ pod_bvector m_spans;$/;" m class:gfx::gfx_scanline_storage_bin +m_sraster src/gfx/gfx_raster_adapter.h /^ gfx_rasterizer_scanline_aa<> m_sraster;$/;" m class:gfx::gfx_raster_adapter +m_src src/gfx/gfx_span_image_filters.h /^ source_type* m_src;$/;" m class:gfx::gfx_span_image_filter +m_src_a src/include/convert.h /^ vertex_source* m_src_a;$/;" m class:picasso::conv_clipper +m_src_b src/include/convert.h /^ vertex_source* m_src_b;$/;" m class:picasso::conv_clipper +m_src_vertex src/include/convert.h /^ unsigned int m_src_vertex;$/;" m class:picasso::conv_dash +m_src_vertex src/include/convert.h /^ unsigned int m_src_vertex;$/;" m class:picasso::conv_stroke +m_src_vertices src/include/convert.h /^ vertex_storage m_src_vertices;$/;" m class:picasso::conv_dash +m_src_vertices src/include/convert.h /^ vertex_storage m_src_vertices;$/;" m class:picasso::conv_stroke +m_stack src/gfx/gfx_blur.h /^ pod_vector m_stack;$/;" m class:gfx::stack_blur +m_stamp_change src/picasso_font.h /^ bool m_stamp_change;$/;" m class:picasso::font_engine +m_start src/gfx/gfx_gamma_function.h /^ scalar m_start;$/;" m class:gfx::gamma_linear +m_start src/gfx/gfx_gradient_adapter.h /^ scalar m_start;$/;" m class:gfx::gfx_gradient_adapter +m_start src/gfx/gfx_image_filters.h /^ int m_start;$/;" m class:gfx::image_filter_adapter +m_start src/include/geometry.h /^ scalar m_start;$/;" m class:picasso::arc +m_startCdataSectionHandler android/expat/lib/xmlparse.c /^ XML_StartCdataSectionHandler m_startCdataSectionHandler;$/;" m struct:XML_ParserStruct file: +m_startDoctypeDeclHandler android/expat/lib/xmlparse.c /^ XML_StartDoctypeDeclHandler m_startDoctypeDeclHandler;$/;" m struct:XML_ParserStruct file: +m_startElementHandler android/expat/lib/xmlparse.c /^ XML_StartElementHandler m_startElementHandler;$/;" m struct:XML_ParserStruct file: +m_startNamespaceDeclHandler android/expat/lib/xmlparse.c /^ XML_StartNamespaceDeclHandler m_startNamespaceDeclHandler;$/;" m struct:XML_ParserStruct file: +m_start_x src/gfx/gfx_rasterizer_scanline.h /^ coord_type m_start_x;$/;" m class:gfx::gfx_rasterizer_scanline_aa +m_start_x src/include/convert.h /^ scalar m_start_x;$/;" m class:picasso::conv_line_generator +m_start_x src/include/curve.h /^ scalar m_start_x; $/;" m class:picasso::curve3_inc +m_start_x src/include/curve.h /^ scalar m_start_x; $/;" m class:picasso::curve4_inc +m_start_y src/gfx/gfx_rasterizer_scanline.h /^ coord_type m_start_y;$/;" m class:gfx::gfx_rasterizer_scanline_aa +m_start_y src/include/convert.h /^ scalar m_start_y;$/;" m class:picasso::conv_line_generator +m_start_y src/include/curve.h /^ scalar m_start_y;$/;" m class:picasso::curve3_inc +m_start_y src/include/curve.h /^ scalar m_start_y;$/;" m class:picasso::curve4_inc +m_status src/gfx/gfx_rasterizer_scanline.h /^ unsigned int m_status;$/;" m class:gfx::gfx_rasterizer_scanline_aa +m_status src/include/convert.h /^ status m_status;$/;" m class:picasso::conv_clipper +m_status src/include/convert.h /^ status m_status;$/;" m class:picasso::conv_dash +m_status src/include/convert.h /^ status m_status;$/;" m class:picasso::conv_line_generator +m_status src/include/convert.h /^ status m_status;$/;" m class:picasso::conv_stroke +m_status src/include/geometry.h /^ unsigned int m_status;$/;" m class:picasso::rounded_rect +m_step src/include/curve.h /^ int m_step;$/;" m class:picasso::curve3_inc +m_step src/include/curve.h /^ int m_step;$/;" m class:picasso::curve4_inc +m_step src/include/geometry.h /^ unsigned int m_step;$/;" m class:picasso::ellipse +m_storage src/gfx/gfx_scanline_storage.h /^ const gfx_scanline_storage_aa* m_storage;$/;" m class:gfx::gfx_scanline_storage_aa::embedded_scanline::const_iterator +m_storage src/gfx/gfx_scanline_storage.h /^ const gfx_scanline_storage_bin* m_storage;$/;" m class:gfx::gfx_scanline_storage_bin::embedded_scanline::const_iterator +m_storage src/gfx/gfx_scanline_storage.h /^ const gfx_scanline_storage_aa* m_storage;$/;" m class:gfx::gfx_scanline_storage_aa::embedded_scanline +m_storage src/gfx/gfx_scanline_storage.h /^ const gfx_scanline_storage_bin* m_storage;$/;" m class:gfx::gfx_scanline_storage_bin::embedded_scanline +m_stride src/gfx/gfx_rendering_buffer.h /^ int m_stride; \/\/ number of bytes per row, link pitch. can < 0$/;" m class:gfx::gfx_rendering_buffer +m_stroke_color src/gfx/gfx_painter.h /^ rgba m_stroke_color; \/\/FIXME: need stroke type feature.$/;" m class:gfx::gfx_painter +m_style_cell src/gfx/gfx_rasterizer_cell.h /^ cell_type m_style_cell;$/;" m class:gfx::gfx_rasterizer_cells_aa +m_sx src/gfx/gfx_trans_affine.h /^ scalar m_sx;$/;" m class:gfx::gfx_trans_affine +m_sy src/gfx/gfx_trans_affine.h /^ scalar m_sy;$/;" m class:gfx::gfx_trans_affine +m_tagLevel android/expat/lib/xmlparse.c /^ int m_tagLevel;$/;" m struct:XML_ParserStruct file: +m_tagStack android/expat/lib/xmlparse.c /^ TAG *m_tagStack;$/;" m struct:XML_ParserStruct file: +m_temp2Pool android/expat/lib/xmlparse.c /^ STRING_POOL m_temp2Pool;$/;" m struct:XML_ParserStruct file: +m_tempPool android/expat/lib/xmlparse.c /^ STRING_POOL m_tempPool;$/;" m struct:XML_ParserStruct file: +m_threshold src/gfx/gfx_gamma_function.h /^ scalar m_threshold;$/;" m class:gfx::gamma_threshold +m_total_dash_len src/include/convert.h /^ scalar m_total_dash_len;$/;" m class:picasso::conv_dash +m_trans src/gfx/gfx_span_generator.h /^ const gfx_trans_affine* m_trans;$/;" m class:gfx::gfx_span_interpolator_linear +m_trans src/include/convert.h /^ const abstract_trans_affine* m_trans;$/;" m class:picasso::conv_transform +m_transform src/gfx/gfx_raster_adapter.cpp /^ const gfx_trans_affine* m_transform;$/;" m class:gfx::gfx_raster_adapter_impl file: +m_transparent src/gfx/gfx_rendering_buffer.h /^ bool m_transparent;$/;" m class:gfx::gfx_rendering_buffer +m_tx src/gfx/gfx_image_accessors.h /^ int m_tx;$/;" m class:gfx::image_accessor +m_tx src/gfx/gfx_trans_affine.h /^ scalar m_tx;$/;" m class:gfx::gfx_trans_affine +m_ty src/gfx/gfx_trans_affine.h /^ scalar m_ty;$/;" m class:gfx::gfx_trans_affine +m_type src/gfx/gfx_mask_layer.h /^ int m_type;$/;" m class:gfx::gfx_mask_layer +m_unknownEncodingData android/expat/lib/xmlparse.c /^ void *m_unknownEncodingData;$/;" m struct:XML_ParserStruct file: +m_unknownEncodingHandler android/expat/lib/xmlparse.c /^ XML_UnknownEncodingHandler m_unknownEncodingHandler;$/;" m struct:XML_ParserStruct file: +m_unknownEncodingHandlerData android/expat/lib/xmlparse.c /^ void *m_unknownEncodingHandlerData;$/;" m struct:XML_ParserStruct file: +m_unknownEncodingMem android/expat/lib/xmlparse.c /^ void *m_unknownEncodingMem;$/;" m struct:XML_ParserStruct file: +m_unknownEncodingRelease android/expat/lib/xmlparse.c /^ void (XMLCALL *m_unknownEncodingRelease)(void *);$/;" m struct:XML_ParserStruct file: +m_unparsedEntityDeclHandler android/expat/lib/xmlparse.c /^ XML_UnparsedEntityDeclHandler m_unparsedEntityDeclHandler;$/;" m struct:XML_ParserStruct file: +m_useForeignDTD android/expat/lib/xmlparse.c /^ XML_Bool m_useForeignDTD;$/;" m struct:XML_ParserStruct file: +m_userData android/expat/lib/xmlparse.c /^ void *m_userData;$/;" m struct:XML_ParserStruct file: +m_v1 src/include/convert.h /^ const vertex_dist* m_v1;$/;" m class:picasso::conv_dash +m_v2 src/include/convert.h /^ const vertex_dist* m_v2;$/;" m class:picasso::conv_dash +m_value src/gfx/gfx_image_accessors.h /^ unsigned int m_value;$/;" m class:gfx::wrap_mode_reflect +m_value src/gfx/gfx_image_accessors.h /^ unsigned int m_value;$/;" m class:gfx::wrap_mode_repeat +m_vertex src/include/convert.h /^ int m_vertex;$/;" m class:picasso::conv_clipper +m_vertex src/include/geometry.h /^ unsigned int m_vertex;$/;" m class:picasso::bezier_arc +m_vertex_accumulator src/include/convert.h /^ pod_bvector m_vertex_accumulator;$/;" m class:picasso::conv_clipper +m_vertices src/core/graphic_path.cpp /^ pod_vector m_vertices;$/;" m class:picasso::graphic_path_impl file: +m_vertices src/include/geometry.h /^ scalar m_vertices[vertex_max_num];$/;" m class:picasso::bezier_arc +m_weight src/picasso_font.h /^ scalar m_weight;$/;" m class:picasso::font_desc +m_weight_array src/gfx/gfx_image_filters.h /^ pod_array m_weight_array;$/;" m class:gfx::image_filter_adapter +m_width src/gfx/gfx_rendering_buffer.h /^ unsigned int m_width; \/\/ width in pixels$/;" m class:gfx::gfx_rendering_buffer +m_width src/include/convert.h /^ scalar m_width;$/;" m class:picasso::conv_stroke +m_width_abs src/include/convert.h /^ scalar m_width_abs;$/;" m class:picasso::conv_stroke +m_width_eps src/include/convert.h /^ scalar m_width_eps;$/;" m class:picasso::conv_stroke +m_width_sign src/include/convert.h /^ int m_width_sign;$/;" m class:picasso::conv_stroke +m_wrap src/gfx/gfx_pixfmt_wrapper.h /^ image_accessor_wrap m_wrap;$/;" m class:gfx::pattern_wrapper_adaptor +m_wrap_x src/gfx/gfx_image_accessors.h /^ WrapX m_wrap_x;$/;" m class:gfx::image_accessor_wrap +m_wrap_y src/gfx/gfx_image_accessors.h /^ WrapY m_wrap_y;$/;" m class:gfx::image_accessor_wrap +m_wrapper src/gfx/gfx_gradient_adapter.h /^ gfx_gradient_wrapper* m_wrapper;$/;" m class:gfx::gfx_gradient_adapter +m_x src/gfx/gfx_image_accessors.h /^ int m_x;$/;" m class:gfx::image_accessor +m_x src/gfx/gfx_image_accessors.h /^ int m_x;$/;" m class:gfx::image_accessor_wrap +m_x src/gfx/gfx_rasterizer_scanline.h /^ int m_x;$/;" m class:gfx::scanline_hit_test +m_x src/include/geometry.h /^ scalar m_x;$/;" m class:picasso::arc +m_x src/include/geometry.h /^ scalar m_x;$/;" m class:picasso::ellipse +m_x1 src/gfx/gfx_rasterizer_scanline.h /^ int m_x1;$/;" m class:gfx::scanline_generator +m_x1 src/include/geometry.h /^ scalar m_x1;$/;" m class:picasso::rounded_rect +m_x2 src/include/geometry.h /^ scalar m_x2;$/;" m class:picasso::rounded_rect +m_xmlDeclHandler android/expat/lib/xmlparse.c /^ XML_XmlDeclHandler m_xmlDeclHandler;$/;" m struct:XML_ParserStruct file: +m_y src/gfx/gfx_image_accessors.h /^ int m_y;$/;" m class:gfx::image_accessor +m_y src/gfx/gfx_line_generator.h /^ int m_y;$/;" m class:gfx::gfx_dda2_line_interpolator +m_y src/gfx/gfx_line_generator.h /^ int m_y;$/;" m class:gfx::gfx_dda_line_interpolator +m_y src/gfx/gfx_scanline.h /^ int m_y;$/;" m class:gfx::gfx_scanline_bin +m_y src/gfx/gfx_scanline.h /^ int m_y;$/;" m class:gfx::gfx_scanline_p8 +m_y src/gfx/gfx_scanline.h /^ int m_y;$/;" m class:gfx::gfx_scanline_u8 +m_y src/gfx/gfx_scanline_storage.h /^ int m_y;$/;" m class:gfx::gfx_serialized_scanlines_adaptor_aa::embedded_scanline +m_y src/gfx/gfx_scanline_storage.h /^ int m_y;$/;" m class:gfx::gfx_serialized_scanlines_adaptor_bin::embedded_scanline +m_y src/include/geometry.h /^ scalar m_y;$/;" m class:picasso::arc +m_y src/include/geometry.h /^ scalar m_y;$/;" m class:picasso::ellipse +m_y1 src/gfx/gfx_rasterizer_scanline.h /^ int m_y1;$/;" m class:gfx::scanline_generator +m_y1 src/include/geometry.h /^ scalar m_y1;$/;" m class:picasso::rounded_rect +m_y2 src/include/geometry.h /^ scalar m_y2;$/;" m class:picasso::rounded_rect +magic android/freetype/src/pshinter/pshrec.h /^ FT_UInt32 magic;$/;" m struct:PS_HintsRec_ +main demos/platform_gix.c /^int main(void)$/;" f +main demos/platform_gtk2.c /^int main(int argc, char* argv[])$/;" f +main demos/platform_qt4.cpp /^int main(int argc, char* argv[])$/;" f +main test/testGtk2.c /^int main(int argc, char* argv[])$/;" f +main test/testQt4.cpp /^int main(int argc, char* argv[])$/;" f +main tools/gyp/build/lib/gyp/__init__.py /^def main(args):$/;" f +main tools/gyp/build/lib/gyp/mac_tool.py /^def main(args):$/;" f +main tools/gyp/build/lib/gyp/sun_tool.py /^def main(args):$/;" f +main tools/gyp/build/lib/gyp/win_tool.py /^def main(args):$/;" f +main tools/gyp/gyp_dummy.c /^int main() {$/;" f +main tools/gyp/gyptest.py /^def main(argv=None):$/;" f +main tools/gyp/pylib/gyp/__init__.py /^def main(args):$/;" f +main tools/gyp/pylib/gyp/mac_tool.py /^def main(args):$/;" f +main tools/gyp/pylib/gyp/sun_tool.py /^def main(args):$/;" f +main tools/gyp/pylib/gyp/win_tool.py /^def main(args):$/;" f +main tools/gyp/tools/graphviz.py /^def main():$/;" f +main tools/gyp/tools/pretty_gyp.py /^def main():$/;" f +main tools/gyp/tools/pretty_sln.py /^def main():$/;" f +main tools/gyp/tools/pretty_vcproj.py /^def main(argv):$/;" f +major android/expat/lib/expat.h /^ int major;$/;" m struct:__anon5 +major include/expat.h /^ int major;$/;" m struct:__anon51 +major_dir android/freetype/src/autofit/afhints.h /^ AF_Direction major_dir;$/;" m struct:AF_AxisHintsRec_ +major_dir android/freetype/src/pshinter/pshalgo.h /^ FT_Int major_dir;$/;" m struct:PSH_GlyphRec_ +make tools/gyp/build/lib/gyp/generator/android.py /^import gyp.generator.make as make # Reuse global functions from make backend.$/;" i +make tools/gyp/pylib/gyp/generator/android.py /^import gyp.generator.make as make # Reuse global functions from make backend.$/;" i +make_color src/gfx/gfx_pixfmt_rgb16.h /^ static color_type make_color(pixel_type p)$/;" f class:gfx::blender_rgb555 +make_color src/gfx/gfx_pixfmt_rgb16.h /^ static color_type make_color(pixel_type p)$/;" f class:gfx::blender_rgb565 +make_pix src/gfx/gfx_pixfmt_rgb.h /^ static void make_pix(byte* p, const color_type& c)$/;" f class:gfx::pixfmt_blender_rgb +make_pix src/gfx/gfx_pixfmt_rgb16.h /^ static pixel_type make_pix(unsigned int r, unsigned int g, unsigned int b)$/;" f class:gfx::blender_rgb555 +make_pix src/gfx/gfx_pixfmt_rgb16.h /^ static pixel_type make_pix(unsigned int r, unsigned int g, unsigned int b)$/;" f class:gfx::blender_rgb565 +make_pix src/gfx/gfx_pixfmt_rgb16.h /^ static void make_pix(byte* p, const color_type& c)$/;" f class:gfx::pixfmt_blender_rgb16 +make_pix src/gfx/gfx_pixfmt_rgba.h /^ static void make_pix(byte* p, const color_type& c)$/;" f class:gfx::pixfmt_blender_rgba +make_pix src/gfx/gfx_pixfmt_wrapper.h /^ static void make_pix(byte* p, const color_type& c)$/;" f class:gfx::gfx_pixfmt_wrapper +make_polygon src/include/convert.h /^ void make_polygon(gpc_polygon& p)$/;" f class:picasso::conv_clipper +malloc_fcn android/expat/lib/expat.h /^ void *(*malloc_fcn)(size_t size);$/;" m struct:__anon1 +malloc_fcn include/expat.h /^ void *(*malloc_fcn)(size_t size);$/;" m struct:__anon47 +manager android/freetype/include/freetype/ftcache.h /^ FTC_Manager_Done( FTC_Manager manager );$/;" v +manager android/freetype/include/freetype/ftcache.h /^ FTC_Manager_Reset( FTC_Manager manager );$/;" v +manager include/freetype/ftcache.h /^ FTC_Manager_Done( FTC_Manager manager );$/;" v +manager include/freetype/ftcache.h /^ FTC_Manager_Reset( FTC_Manager manager );$/;" v +map android/expat/lib/expat.h /^ int map[256];$/;" m struct:__anon2 +map include/expat.h /^ int map[256];$/;" m struct:__anon48 +maps android/freetype/include/freetype/internal/services/svpscmap.h /^ PS_UniMap* maps;$/;" m struct:PS_UnicodesRec_ +maps include/freetype/internal/services/svpscmap.h /^ PS_UniMap* maps;$/;" m struct:PS_UnicodesRec_ +mask src/picasso_objects.h /^ picasso::mask_layer mask;$/;" m struct:_ps_mask +mask src/picasso_objects.h /^ ps_mask* mask;$/;" m struct:_ps_canvas +mask_buf test/mask_func.c /^static ps_byte* mask_buf;$/;" v file: +mask_comments tools/gyp/tools/pretty_gyp.py /^def mask_comments(input):$/;" f +mask_layer src/picasso_mask.cpp /^mask_layer::mask_layer(byte* buf, unsigned int width, unsigned int height, int stride, int type)$/;" f class:picasso::mask_layer +mask_layer src/picasso_mask.h /^class mask_layer$/;" c namespace:picasso +mask_quotes tools/gyp/tools/pretty_gyp.py /^def mask_quotes(input):$/;" f +mask_type src/gfx/gfx_painter_helper.h /^typedef gfx_alpha_mask_u8 mask_type; $/;" t namespace:gfx +masks android/freetype/src/pshinter/pshrec.h /^ PS_Mask masks;$/;" m struct:PS_Mask_TableRec_ +masks android/freetype/src/pshinter/pshrec.h /^ PS_Mask_TableRec masks;$/;" m struct:PS_DimensionRec_ +matrix android/freetype/include/freetype/ftglyph.h /^ FT_Matrix_Invert( FT_Matrix* matrix );$/;" v +matrix demos/tiger.c /^static ps_matrix* matrix = 0;$/;" v file: +matrix include/freetype/ftglyph.h /^ FT_Matrix_Invert( FT_Matrix* matrix );$/;" v +matrix src/gfx/gfx_gradient_adapter.h /^ gfx_trans_affine& matrix(void) { return m_matrix; }$/;" f class:gfx::gfx_gradient_adapter +matrix src/gfx/gfx_painter.h /^ abstract_trans_affine* matrix;$/;" m struct:gfx::gfx_painter::__anon65 +matrix src/picasso_objects.h /^ picasso::trans_affine matrix;$/;" m struct:_ps_matrix +matrix src/picasso_objects.h /^ picasso::trans_affine matrix;$/;" m struct:_ps_pattern +max android/freetype/src/pshinter/pshalgo.h /^ FT_Pos max;$/;" m struct:PSH_ZoneRec_ +max android/freetype/src/smooth/ftgrays.c /^ TPos min, max;$/;" m struct:TBand_ file: +maxBuff android/freetype/src/raster/ftraster.c /^ PLong maxBuff; \/* Profiles buffer size *\/$/;" m struct:TWorker_ file: +maxComponentDepth android/freetype/include/freetype/tttables.h /^ FT_UShort maxComponentDepth;$/;" m struct:TT_MaxProfile_ +maxComponentDepth include/freetype/tttables.h /^ FT_UShort maxComponentDepth;$/;" m struct:TT_MaxProfile_ +maxComponentElements android/freetype/include/freetype/tttables.h /^ FT_UShort maxComponentElements;$/;" m struct:TT_MaxProfile_ +maxComponentElements include/freetype/tttables.h /^ FT_UShort maxComponentElements;$/;" m struct:TT_MaxProfile_ +maxCompositeContours android/freetype/include/freetype/tttables.h /^ FT_UShort maxCompositeContours;$/;" m struct:TT_MaxProfile_ +maxCompositeContours include/freetype/tttables.h /^ FT_UShort maxCompositeContours;$/;" m struct:TT_MaxProfile_ +maxCompositePoints android/freetype/include/freetype/tttables.h /^ FT_UShort maxCompositePoints;$/;" m struct:TT_MaxProfile_ +maxCompositePoints include/freetype/tttables.h /^ FT_UShort maxCompositePoints;$/;" m struct:TT_MaxProfile_ +maxContours android/freetype/include/freetype/tttables.h /^ FT_UShort maxContours;$/;" m struct:TT_MaxProfile_ +maxContours android/freetype/src/truetype/ttinterp.h /^ FT_Short maxContours; \/* record, expressed in points and *\/$/;" m struct:TT_ExecContextRec_ +maxContours include/freetype/tttables.h /^ FT_UShort maxContours;$/;" m struct:TT_MaxProfile_ +maxFDefs android/freetype/src/truetype/ttinterp.h /^ FT_UInt maxFDefs; \/* maximum number of function defs *\/$/;" m struct:TT_ExecContextRec_ +maxFunc android/freetype/src/truetype/ttinterp.h /^ FT_UInt maxFunc; \/* maximum function index *\/$/;" m struct:TT_ExecContextRec_ +maxFunctionDefs android/freetype/include/freetype/tttables.h /^ FT_UShort maxFunctionDefs;$/;" m struct:TT_MaxProfile_ +maxFunctionDefs include/freetype/tttables.h /^ FT_UShort maxFunctionDefs;$/;" m struct:TT_MaxProfile_ +maxIDefs android/freetype/src/truetype/ttinterp.h /^ FT_UInt maxIDefs; \/* maximum number of ins defs *\/$/;" m struct:TT_ExecContextRec_ +maxIns android/freetype/src/truetype/ttinterp.h /^ FT_UInt maxIns; \/* maximum instruction index *\/$/;" m struct:TT_ExecContextRec_ +maxInstructionDefs android/freetype/include/freetype/tttables.h /^ FT_UShort maxInstructionDefs;$/;" m struct:TT_MaxProfile_ +maxInstructionDefs include/freetype/tttables.h /^ FT_UShort maxInstructionDefs;$/;" m struct:TT_MaxProfile_ +maxMemType1 android/freetype/include/freetype/tttables.h /^ FT_ULong maxMemType1;$/;" m struct:TT_Postscript_ +maxMemType1 include/freetype/tttables.h /^ FT_ULong maxMemType1;$/;" m struct:TT_Postscript_ +maxMemType42 android/freetype/include/freetype/tttables.h /^ FT_ULong maxMemType42;$/;" m struct:TT_Postscript_ +maxMemType42 include/freetype/tttables.h /^ FT_ULong maxMemType42;$/;" m struct:TT_Postscript_ +maxPPEM android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort maxPPEM;$/;" m struct:TT_GaspRangeRec_ +maxPPEM include/freetype/internal/tttypes.h /^ FT_UShort maxPPEM;$/;" m struct:TT_GaspRangeRec_ +maxPoints android/freetype/include/freetype/tttables.h /^ FT_UShort maxPoints;$/;" m struct:TT_MaxProfile_ +maxPoints android/freetype/src/truetype/ttinterp.h /^ FT_UShort maxPoints; \/* capacity of this context's `pts' *\/$/;" m struct:TT_ExecContextRec_ +maxPoints include/freetype/tttables.h /^ FT_UShort maxPoints;$/;" m struct:TT_MaxProfile_ +maxSizeOfInstructions android/freetype/include/freetype/tttables.h /^ FT_UShort maxSizeOfInstructions;$/;" m struct:TT_MaxProfile_ +maxSizeOfInstructions include/freetype/tttables.h /^ FT_UShort maxSizeOfInstructions;$/;" m struct:TT_MaxProfile_ +maxStackElements android/freetype/include/freetype/tttables.h /^ FT_UShort maxStackElements;$/;" m struct:TT_MaxProfile_ +maxStackElements include/freetype/tttables.h /^ FT_UShort maxStackElements;$/;" m struct:TT_MaxProfile_ +maxStorage android/freetype/include/freetype/tttables.h /^ FT_UShort maxStorage;$/;" m struct:TT_MaxProfile_ +maxStorage include/freetype/tttables.h /^ FT_UShort maxStorage;$/;" m struct:TT_MaxProfile_ +maxTwilightPoints android/freetype/include/freetype/tttables.h /^ FT_UShort maxTwilightPoints;$/;" m struct:TT_MaxProfile_ +maxTwilightPoints include/freetype/tttables.h /^ FT_UShort maxTwilightPoints;$/;" m struct:TT_MaxProfile_ +maxValue android/freetype/src/truetype/ttgxvar.c /^ FT_ULong maxValue;$/;" m struct:fvar_axis_ file: +maxY android/freetype/src/raster/ftraster.c /^ Long lastX, lastY, minY, maxY;$/;" m struct:TWorker_ file: +maxZones android/freetype/include/freetype/tttables.h /^ FT_UShort maxZones;$/;" m struct:TT_MaxProfile_ +maxZones include/freetype/tttables.h /^ FT_UShort maxZones;$/;" m struct:TT_MaxProfile_ +max_advance android/freetype/include/freetype/freetype.h /^ FT_Pos max_advance; \/* max horizontal advance, in 26.6 pixels *\/$/;" m struct:FT_Size_Metrics_ +max_advance include/freetype/freetype.h /^ FT_Pos max_advance; \/* max horizontal advance, in 26.6 pixels *\/$/;" m struct:FT_Size_Metrics_ +max_advance_height android/freetype/include/freetype/freetype.h /^ FT_Short max_advance_height;$/;" m struct:FT_FaceRec_ +max_advance_height include/freetype/freetype.h /^ FT_Short max_advance_height;$/;" m struct:FT_FaceRec_ +max_advance_width android/freetype/include/freetype/freetype.h /^ FT_Short max_advance_width;$/;" m struct:FT_FaceRec_ +max_advance_width include/freetype/freetype.h /^ FT_Short max_advance_width;$/;" m struct:FT_FaceRec_ +max_before_BL android/freetype/include/freetype/internal/tttypes.h /^ FT_Char max_before_BL;$/;" m struct:TT_SBit_LineMetricsRec_ +max_before_BL include/freetype/internal/tttypes.h /^ FT_Char max_before_BL;$/;" m struct:TT_SBit_LineMetricsRec_ +max_bits android/freetype/src/pshinter/pshrec.h /^ FT_UInt max_bits;$/;" m struct:PS_MaskRec_ +max_blocks android/freetype/src/base/ftdbgmem.c /^ FT_Long max_blocks; \/* max. number of allocated blocks *\/$/;" m struct:FT_MemSourceRec_ file: +max_cells android/freetype/src/smooth/ftgrays.c /^ int max_cells;$/;" m struct:TWorker_ file: +max_cid android/freetype/src/cff/cfftypes.h /^ FT_UInt max_cid;$/;" m struct:CFF_CharsetRec_ +max_components android/freetype/include/freetype/internal/tttypes.h /^ FT_ULong max_components; \/* stubbed to 0 *\/$/;" m struct:TT_FaceRec_ +max_components include/freetype/internal/tttypes.h /^ FT_ULong max_components; \/* stubbed to 0 *\/$/;" m struct:TT_FaceRec_ +max_contours android/freetype/include/freetype/internal/ftgloadr.h /^ FT_UInt max_contours;$/;" m struct:FT_GlyphLoaderRec_ +max_contours android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort max_contours;$/;" m struct:TT_GlyphZoneRec_ +max_contours android/freetype/src/autofit/afhints.h /^ FT_Int max_contours;$/;" m struct:AF_GlyphHintsRec_ +max_contours include/freetype/internal/ftgloadr.h /^ FT_UInt max_contours;$/;" m struct:FT_GlyphLoaderRec_ +max_contours include/freetype/internal/tttypes.h /^ FT_UShort max_contours;$/;" m struct:TT_GlyphZoneRec_ +max_coord android/freetype/src/autofit/afhints.h /^ FT_Short max_coord; \/* maximum coordinate of segment *\/$/;" m struct:AF_SegmentRec_ +max_dashes src/include/convert.h /^ enum { max_dashes = 32 };$/;" e enum:picasso::conv_dash::__anon191 +max_edges android/freetype/src/autofit/afhints.h /^ FT_Int max_edges;$/;" m struct:AF_AxisHintsRec_ +max_elems android/freetype/include/freetype/internal/psaux.h /^ FT_Int max_elems;$/;" m struct:PS_TableRec_ +max_elems include/freetype/internal/psaux.h /^ FT_Int max_elems;$/;" m struct:PS_TableRec_ +max_ex android/freetype/src/smooth/ftgrays.c /^ TPos min_ex, max_ex;$/;" m struct:TWorker_ file: +max_ey android/freetype/src/smooth/ftgrays.c /^ TPos min_ey, max_ey;$/;" m struct:TWorker_ file: +max_func android/freetype/src/truetype/ttobjs.h /^ FT_UInt max_func;$/;" m struct:TT_SizeRec_ +max_function_defs android/freetype/src/truetype/ttobjs.h /^ FT_UInt max_function_defs;$/;" m struct:TT_SizeRec_ +max_grays android/freetype/include/freetype/ftcache.h /^ FT_Byte max_grays;$/;" m struct:FTC_SBitRec_ +max_grays include/freetype/ftcache.h /^ FT_Byte max_grays;$/;" m struct:FTC_SBitRec_ +max_hints android/freetype/src/pshinter/pshalgo.h /^ FT_UInt max_hints;$/;" m struct:PSH_Hint_TableRec_ +max_hints android/freetype/src/pshinter/pshrec.h /^ FT_UInt max_hints;$/;" m struct:PS_Hint_TableRec_ +max_ins android/freetype/src/truetype/ttobjs.h /^ FT_UInt max_ins;$/;" m struct:TT_SizeRec_ +max_instruction_defs android/freetype/src/truetype/ttobjs.h /^ FT_UInt max_instruction_defs;$/;" m struct:TT_SizeRec_ +max_kern android/freetype/include/freetype/internal/t1types.h /^ FT_Fixed max_kern;$/;" m struct:AFM_TrackKernRec_ +max_kern include/freetype/internal/t1types.h /^ FT_Fixed max_kern;$/;" m struct:AFM_TrackKernRec_ +max_limit src/include/data_vector.h /^ max_limit = 16384,$/;" e enum:picasso::pod_vector::__anon194 +max_masks android/freetype/src/pshinter/pshrec.h /^ FT_UInt max_masks;$/;" m struct:PS_Mask_TableRec_ +max_points android/freetype/include/freetype/internal/ftgloadr.h /^ FT_UInt max_points;$/;" m struct:FT_GlyphLoaderRec_ +max_points android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort max_points;$/;" m struct:TT_GlyphZoneRec_ +max_points android/freetype/src/autofit/afhints.h /^ FT_Int max_points;$/;" m struct:AF_GlyphHintsRec_ +max_points android/freetype/src/base/ftstroke.c /^ FT_UInt max_points;$/;" m struct:FT_StrokeBorderRec_ file: +max_points android/freetype/src/truetype/ttinterp.c /^ FT_UInt max_points;$/;" m struct:IUP_WorkerRec_ file: +max_points include/freetype/internal/ftgloadr.h /^ FT_UInt max_points;$/;" m struct:FT_GlyphLoaderRec_ +max_points include/freetype/internal/tttypes.h /^ FT_UShort max_points;$/;" m struct:TT_GlyphZoneRec_ +max_profile android/freetype/include/freetype/internal/tttypes.h /^ TT_MaxProfile max_profile;$/;" m struct:TT_FaceRec_ +max_profile include/freetype/internal/tttypes.h /^ TT_MaxProfile max_profile;$/;" m struct:TT_FaceRec_ +max_ptsize android/freetype/include/freetype/internal/t1types.h /^ FT_Fixed max_ptsize;$/;" m struct:AFM_TrackKernRec_ +max_ptsize include/freetype/internal/t1types.h /^ FT_Fixed max_ptsize;$/;" m struct:AFM_TrackKernRec_ +max_results android/freetype/src/sfnt/ttcmap.c /^ FT_UInt max_results;$/;" m struct:TT_CMap14Rec_ file: +max_segments android/freetype/src/autofit/afhints.h /^ FT_Int max_segments;$/;" m struct:AF_AxisHintsRec_ +max_size android/freetype/src/base/ftdbgmem.c /^ FT_Long max_size; \/* maximum cumulative allocated size *\/$/;" m struct:FT_MemSourceRec_ file: +max_span_len src/gfx/gfx_span_generator.h /^ unsigned int max_span_len(void) const { return m_span.size(); }$/;" f class:gfx::gfx_span_allocator +max_subglyphs android/freetype/include/freetype/internal/ftgloadr.h /^ FT_UInt max_subglyphs;$/;" m struct:FT_GlyphLoaderRec_ +max_subglyphs include/freetype/internal/ftgloadr.h /^ FT_UInt max_subglyphs;$/;" m struct:FT_GlyphLoaderRec_ +max_width android/freetype/include/freetype/ftwinfnt.h /^ FT_UShort max_width;$/;" m struct:FT_WinFNT_HeaderRec_ +max_width android/freetype/include/freetype/internal/tttypes.h /^ FT_Byte max_width;$/;" m struct:TT_HdmxEntryRec_ +max_width android/freetype/include/freetype/internal/tttypes.h /^ FT_Byte max_width;$/;" m struct:TT_SBit_LineMetricsRec_ +max_width include/freetype/ftwinfnt.h /^ FT_UShort max_width;$/;" m struct:FT_WinFNT_HeaderRec_ +max_width include/freetype/internal/tttypes.h /^ FT_Byte max_width;$/;" m struct:TT_HdmxEntryRec_ +max_width include/freetype/internal/tttypes.h /^ FT_Byte max_width;$/;" m struct:TT_SBit_LineMetricsRec_ +max_x src/gfx/gfx_rasterizer_cell.h /^ int max_x(void) const { return m_max_x; }$/;" f class:gfx::gfx_rasterizer_cells_aa +max_x src/gfx/gfx_rasterizer_scanline.h /^ int max_x(void) const { return m_outline.max_x(); }$/;" f class:gfx::gfx_rasterizer_scanline_aa +max_x src/gfx/gfx_scanline_storage.h /^ int max_x(void) const { return m_max_x; }$/;" f class:gfx::gfx_scanline_storage_aa +max_x src/gfx/gfx_scanline_storage.h /^ int max_x(void) const { return m_max_x; }$/;" f class:gfx::gfx_scanline_storage_bin +max_x src/gfx/gfx_scanline_storage.h /^ int max_x(void) const { return m_max_x; }$/;" f class:gfx::gfx_serialized_scanlines_adaptor_aa +max_x src/gfx/gfx_scanline_storage.h /^ int max_x(void) const { return m_max_x; }$/;" f class:gfx::gfx_serialized_scanlines_adaptor_bin +max_y src/gfx/gfx_rasterizer_cell.h /^ int max_y(void) const { return m_max_y; }$/;" f class:gfx::gfx_rasterizer_cells_aa +max_y src/gfx/gfx_rasterizer_scanline.h /^ int max_y(void) const { return m_outline.max_y(); }$/;" f class:gfx::gfx_rasterizer_scanline_aa +max_y src/gfx/gfx_scanline_storage.h /^ int max_y(void) const { return m_max_y; }$/;" f class:gfx::gfx_scanline_storage_aa +max_y src/gfx/gfx_scanline_storage.h /^ int max_y(void) const { return m_max_y; }$/;" f class:gfx::gfx_scanline_storage_bin +max_y src/gfx/gfx_scanline_storage.h /^ int max_y(void) const { return m_max_y; }$/;" f class:gfx::gfx_serialized_scanlines_adaptor_aa +max_y src/gfx/gfx_scanline_storage.h /^ int max_y(void) const { return m_max_y; }$/;" f class:gfx::gfx_serialized_scanlines_adaptor_bin +maximum android/freetype/include/freetype/ftmm.h /^ FT_Fixed maximum;$/;" m struct:FT_Var_Axis_ +maximum android/freetype/include/freetype/ftmm.h /^ FT_Long maximum;$/;" m struct:FT_MM_Axis_ +maximum include/freetype/ftmm.h /^ FT_Fixed maximum;$/;" m struct:FT_Var_Axis_ +maximum include/freetype/ftmm.h /^ FT_Long maximum;$/;" m struct:FT_MM_Axis_ +maybeTokenized android/expat/lib/xmlparse.c /^ XML_Bool maybeTokenized;$/;" m struct:attribute_id file: +mc test/alpha_func.c /^static ps_context* mc;$/;" v file: +md5 tools/gyp/build/lib/gyp/MSVSNew.py /^ import md5$/;" i +md5 tools/gyp/pylib/gyp/MSVSNew.py /^ import md5$/;" i +mem android/expat/lib/xmlparse.c /^ const XML_Memory_Handling_Suite *mem;$/;" m struct:__anon13 file: +mem android/expat/lib/xmlparse.c /^ const XML_Memory_Handling_Suite *mem;$/;" m struct:__anon8 file: +mem_calloc src/include/memory_manager.h /^#define mem_calloc(/;" d +mem_copy src/include/memory_manager.h /^#define mem_copy(/;" d +mem_deep_copy src/include/memory_manager.h /^#define mem_deep_copy(/;" d +mem_free src/include/memory_manager.h /^#define mem_free(/;" d +mem_malloc src/include/memory_manager.h /^#define mem_malloc(/;" d +mem_realloc src/include/memory_manager.h /^#define mem_realloc(/;" d +memmove android/expat/lib/xmlparse.c /^#define memmove(/;" d file: +memoize tools/gyp/build/lib/gyp/common.py /^class memoize(object):$/;" c +memoize tools/gyp/pylib/gyp/common.py /^class memoize(object):$/;" c +memory android/freetype/include/freetype/freetype.h /^ FT_Memory memory;$/;" m struct:FT_FaceRec_ +memory android/freetype/include/freetype/ftsystem.h /^ FT_Memory memory;$/;" m struct:FT_StreamRec_ +memory android/freetype/include/freetype/internal/ftgloadr.h /^ FT_Memory memory;$/;" m struct:FT_GlyphLoaderRec_ +memory android/freetype/include/freetype/internal/ftobjs.h /^ FT_Memory memory; \/* library's memory manager *\/$/;" m struct:FT_LibraryRec_ +memory android/freetype/include/freetype/internal/ftobjs.h /^ FT_Memory memory;$/;" m struct:FT_ModuleRec_ +memory android/freetype/include/freetype/internal/ftobjs.h /^ FT_Done_Memory( FT_Memory memory );$/;" v +memory android/freetype/include/freetype/internal/psaux.h /^ FT_Memory memory;$/;" m struct:PS_TableRec_ +memory android/freetype/include/freetype/internal/psaux.h /^ FT_Memory memory;$/;" m struct:T1_BuilderRec_ +memory android/freetype/include/freetype/internal/psaux.h /^ FT_Memory memory;$/;" m struct:AFM_ParserRec_ +memory android/freetype/include/freetype/internal/psaux.h /^ FT_Memory memory;$/;" m struct:PS_ParserRec_ +memory android/freetype/include/freetype/internal/tttypes.h /^ FT_Memory memory;$/;" m struct:TT_GlyphZoneRec_ +memory android/freetype/src/autofit/afhints.h /^ FT_Memory memory;$/;" m struct:AF_GlyphHintsRec_ +memory android/freetype/src/base/ftdbgmem.c /^ FT_Memory memory;$/;" m struct:FT_MemTableRec_ file: +memory android/freetype/src/base/ftstroke.c /^ FT_Memory memory;$/;" m struct:FT_StrokerRec_ file: +memory android/freetype/src/base/ftstroke.c /^ FT_Memory memory;$/;" m struct:FT_StrokeBorderRec_ file: +memory android/freetype/src/cff/cffgload.h /^ FT_Memory memory;$/;" m struct:CFF_Builder_ +memory android/freetype/src/cff/cfftypes.h /^ FT_Memory memory;$/;" m struct:CFF_FontRec_ +memory android/freetype/src/pshinter/pshalgo.h /^ FT_Memory memory;$/;" m struct:PSH_GlyphRec_ +memory android/freetype/src/pshinter/pshglob.h /^ FT_Memory memory;$/;" m struct:PSH_GlobalsRec_ +memory android/freetype/src/pshinter/pshrec.h /^ FT_Memory memory;$/;" m struct:PS_HintsRec_ +memory android/freetype/src/raster/ftraster.c /^ void* memory;$/;" m struct:TRaster_ file: +memory android/freetype/src/sfnt/ttcmap.c /^ FT_Memory memory;$/;" m struct:TT_CMap14Rec_ file: +memory android/freetype/src/smooth/ftgrays.c /^ void* memory;$/;" m struct:TRaster_ file: +memory android/freetype/src/truetype/ttinterp.h /^ FT_Memory memory;$/;" m struct:TT_ExecContextRec_ +memory include/freetype/freetype.h /^ FT_Memory memory;$/;" m struct:FT_FaceRec_ +memory include/freetype/ftsystem.h /^ FT_Memory memory;$/;" m struct:FT_StreamRec_ +memory include/freetype/internal/ftgloadr.h /^ FT_Memory memory;$/;" m struct:FT_GlyphLoaderRec_ +memory include/freetype/internal/ftobjs.h /^ FT_Memory memory; \/* library's memory manager *\/$/;" m struct:FT_LibraryRec_ +memory include/freetype/internal/ftobjs.h /^ FT_Memory memory;$/;" m struct:FT_ModuleRec_ +memory include/freetype/internal/ftobjs.h /^ FT_Done_Memory( FT_Memory memory );$/;" v +memory include/freetype/internal/psaux.h /^ FT_Memory memory;$/;" m struct:PS_TableRec_ +memory include/freetype/internal/psaux.h /^ FT_Memory memory;$/;" m struct:T1_BuilderRec_ +memory include/freetype/internal/psaux.h /^ FT_Memory memory;$/;" m struct:AFM_ParserRec_ +memory include/freetype/internal/psaux.h /^ FT_Memory memory;$/;" m struct:PS_ParserRec_ +memory include/freetype/internal/tttypes.h /^ FT_Memory memory;$/;" m struct:TT_GlyphZoneRec_ +memory_base android/freetype/include/freetype/freetype.h /^ const FT_Byte* memory_base;$/;" m struct:FT_Open_Args_ +memory_base include/freetype/freetype.h /^ const FT_Byte* memory_base;$/;" m struct:FT_Open_Args_ +memory_size android/freetype/include/freetype/freetype.h /^ FT_Long memory_size;$/;" m struct:FT_Open_Args_ +memory_size include/freetype/freetype.h /^ FT_Long memory_size;$/;" m struct:FT_Open_Args_ +memory_stream_close android/freetype/src/base/ftobjs.c /^ memory_stream_close( FT_Stream stream )$/;" f file: +memory_user android/freetype/src/base/ftdbgmem.c /^ FT_Pointer memory_user;$/;" m struct:FT_MemTableRec_ file: +merge_left src/picasso_gpc.cpp /^static void merge_left(polygon_node *p, polygon_node *q, polygon_node *list)$/;" f namespace:picasso +merge_right src/picasso_gpc.cpp /^static void merge_right(polygon_node *p, polygon_node *q, polygon_node *list)$/;" f namespace:picasso +metric_Data_Format android/freetype/include/freetype/tttables.h /^ FT_Short metric_Data_Format;$/;" m struct:TT_HoriHeader_ +metric_Data_Format android/freetype/include/freetype/tttables.h /^ FT_Short metric_Data_Format;$/;" m struct:TT_VertHeader_ +metric_Data_Format include/freetype/tttables.h /^ FT_Short metric_Data_Format;$/;" m struct:TT_HoriHeader_ +metric_Data_Format include/freetype/tttables.h /^ FT_Short metric_Data_Format;$/;" m struct:TT_VertHeader_ +metrics android/freetype/include/freetype/freetype.h /^ FT_Glyph_Metrics metrics;$/;" m struct:FT_GlyphSlotRec_ +metrics android/freetype/include/freetype/freetype.h /^ FT_Size_Metrics metrics; \/* size metrics *\/$/;" m struct:FT_SizeRec_ +metrics android/freetype/include/freetype/internal/tttypes.h /^ TT_SBit_MetricsRec metrics;$/;" m struct:TT_SBit_RangeRec_ +metrics android/freetype/src/autofit/afglobal.c /^ AF_ScriptMetrics metrics[AF_SCRIPT_MAX];$/;" m struct:AF_FaceGlobalsRec_ file: +metrics android/freetype/src/autofit/afhints.h /^ AF_ScriptMetrics metrics;$/;" m struct:AF_GlyphHintsRec_ +metrics android/freetype/src/autofit/afloader.h /^ AF_ScriptMetrics metrics;$/;" m struct:AF_LoaderRec_ +metrics android/freetype/src/sfnt/ttsbit0.c /^ TT_SBit_Metrics metrics;$/;" m struct:TT_SBitDecoderRec_ file: +metrics android/freetype/src/truetype/ttinterp.h /^ FT_Size_Metrics metrics;$/;" m struct:TT_ExecContextRec_ +metrics android/freetype/src/truetype/ttobjs.h /^ FT_Size_Metrics metrics;$/;" m struct:TT_SizeRec_ +metrics include/freetype/freetype.h /^ FT_Glyph_Metrics metrics;$/;" m struct:FT_GlyphSlotRec_ +metrics include/freetype/freetype.h /^ FT_Size_Metrics metrics; \/* size metrics *\/$/;" m struct:FT_SizeRec_ +metrics include/freetype/internal/tttypes.h /^ TT_SBit_MetricsRec metrics;$/;" m struct:TT_SBit_RangeRec_ +metrics_loaded android/freetype/src/sfnt/ttsbit0.c /^ FT_Bool metrics_loaded;$/;" m struct:TT_SBitDecoderRec_ file: +metrics_only android/freetype/include/freetype/internal/psaux.h /^ FT_Bool metrics_only;$/;" m struct:T1_BuilderRec_ +metrics_only android/freetype/src/cff/cffgload.h /^ FT_Bool metrics_only;$/;" m struct:CFF_Builder_ +metrics_only include/freetype/internal/psaux.h /^ FT_Bool metrics_only;$/;" m struct:T1_BuilderRec_ +metrics_resolution android/freetype/src/autofit/aftypes.h /^ FT_UInt metrics_resolution;$/;" m struct:AF_OutlineRec_ +micro android/expat/lib/expat.h /^ int micro;$/;" m struct:__anon5 +micro include/expat.h /^ int micro;$/;" m struct:__anon51 +mid_segments android/freetype/src/autofit/afhints.h /^ FT_Int mid_segments;$/;" m struct:AF_AxisHintsRec_ +midl tools/gyp/build/lib/gyp/msvs_emulation.py /^ def midl(name, default=None):$/;" f function:MsvsSettings.GetIdlBuildData +midl tools/gyp/pylib/gyp/msvs_emulation.py /^ def midl(name, default=None):$/;" f function:MsvsSettings.GetIdlBuildData +millsecons demos/clock.c /^static unsigned millsecons = 0;$/;" v file: +min android/freetype/src/pshinter/pshalgo.h /^ FT_Pos min;$/;" m struct:PSH_ZoneRec_ +min android/freetype/src/smooth/ftgrays.c /^ TPos min, max;$/;" m struct:TBand_ file: +minBytesPerChar android/expat/lib/xmltok.h /^ int minBytesPerChar;$/;" m struct:encoding +minMemType1 android/freetype/include/freetype/tttables.h /^ FT_ULong minMemType1;$/;" m struct:TT_Postscript_ +minMemType1 include/freetype/tttables.h /^ FT_ULong minMemType1;$/;" m struct:TT_Postscript_ +minMemType42 android/freetype/include/freetype/tttables.h /^ FT_ULong minMemType42;$/;" m struct:TT_Postscript_ +minMemType42 include/freetype/tttables.h /^ FT_ULong minMemType42;$/;" m struct:TT_Postscript_ +minValue android/freetype/src/truetype/ttgxvar.c /^ FT_ULong minValue;$/;" m struct:fvar_axis_ file: +minY android/freetype/src/raster/ftraster.c /^ Long lastX, lastY, minY, maxY;$/;" m struct:TWorker_ file: +min_Bottom_Side_Bearing android/freetype/include/freetype/tttables.h /^ FT_Short min_Bottom_Side_Bearing; \/* minimum right-sb or bottom-sb *\/$/;" m struct:TT_VertHeader_ +min_Bottom_Side_Bearing include/freetype/tttables.h /^ FT_Short min_Bottom_Side_Bearing; \/* minimum right-sb or bottom-sb *\/$/;" m struct:TT_VertHeader_ +min_Left_Side_Bearing android/freetype/include/freetype/tttables.h /^ FT_Short min_Left_Side_Bearing; \/* minimum left-sb *\/$/;" m struct:TT_HoriHeader_ +min_Left_Side_Bearing include/freetype/tttables.h /^ FT_Short min_Left_Side_Bearing; \/* minimum left-sb *\/$/;" m struct:TT_HoriHeader_ +min_Right_Side_Bearing android/freetype/include/freetype/tttables.h /^ FT_Short min_Right_Side_Bearing; \/* minimum right-sb *\/$/;" m struct:TT_HoriHeader_ +min_Right_Side_Bearing include/freetype/tttables.h /^ FT_Short min_Right_Side_Bearing; \/* minimum right-sb *\/$/;" m struct:TT_HoriHeader_ +min_Top_Side_Bearing android/freetype/include/freetype/tttables.h /^ FT_Short min_Top_Side_Bearing; \/* minimum left-sb or top-sb *\/$/;" m struct:TT_VertHeader_ +min_Top_Side_Bearing include/freetype/tttables.h /^ FT_Short min_Top_Side_Bearing; \/* minimum left-sb or top-sb *\/$/;" m struct:TT_VertHeader_ +min_advance_SB android/freetype/include/freetype/internal/tttypes.h /^ FT_Char min_advance_SB;$/;" m struct:TT_SBit_LineMetricsRec_ +min_advance_SB include/freetype/internal/tttypes.h /^ FT_Char min_advance_SB;$/;" m struct:TT_SBit_LineMetricsRec_ +min_after_BL android/freetype/include/freetype/internal/tttypes.h /^ FT_Char min_after_BL;$/;" m struct:TT_SBit_LineMetricsRec_ +min_after_BL include/freetype/internal/tttypes.h /^ FT_Char min_after_BL;$/;" m struct:TT_SBit_LineMetricsRec_ +min_coord android/freetype/src/autofit/afhints.h /^ FT_Short min_coord; \/* minimum coordinate of segment *\/$/;" m struct:AF_SegmentRec_ +min_ex android/freetype/src/smooth/ftgrays.c /^ TPos min_ex, max_ex;$/;" m struct:TWorker_ file: +min_ey android/freetype/src/smooth/ftgrays.c /^ TPos min_ey, max_ey;$/;" m struct:TWorker_ file: +min_feature android/freetype/include/freetype/t1tables.h /^ FT_Short min_feature[2];$/;" m struct:PS_PrivateRec_ +min_feature include/freetype/t1tables.h /^ FT_Short min_feature[2];$/;" m struct:PS_PrivateRec_ +min_kern android/freetype/include/freetype/internal/t1types.h /^ FT_Fixed min_kern;$/;" m struct:AFM_TrackKernRec_ +min_kern include/freetype/internal/t1types.h /^ FT_Fixed min_kern;$/;" m struct:AFM_TrackKernRec_ +min_origin_SB android/freetype/include/freetype/internal/tttypes.h /^ FT_Char min_origin_SB;$/;" m struct:TT_SBit_LineMetricsRec_ +min_origin_SB include/freetype/internal/tttypes.h /^ FT_Char min_origin_SB;$/;" m struct:TT_SBit_LineMetricsRec_ +min_ptsize android/freetype/include/freetype/internal/t1types.h /^ FT_Fixed min_ptsize;$/;" m struct:AFM_TrackKernRec_ +min_ptsize include/freetype/internal/t1types.h /^ FT_Fixed min_ptsize;$/;" m struct:AFM_TrackKernRec_ +min_x src/gfx/gfx_rasterizer_cell.h /^ int min_x(void) const { return m_min_x; }$/;" f class:gfx::gfx_rasterizer_cells_aa +min_x src/gfx/gfx_rasterizer_scanline.h /^ int min_x(void) const { return m_outline.min_x(); }$/;" f class:gfx::gfx_rasterizer_scanline_aa +min_x src/gfx/gfx_scanline_storage.h /^ int min_x(void) const { return m_min_x; }$/;" f class:gfx::gfx_scanline_storage_aa +min_x src/gfx/gfx_scanline_storage.h /^ int min_x(void) const { return m_min_x; }$/;" f class:gfx::gfx_scanline_storage_bin +min_x src/gfx/gfx_scanline_storage.h /^ int min_x(void) const { return m_min_x; }$/;" f class:gfx::gfx_serialized_scanlines_adaptor_aa +min_x src/gfx/gfx_scanline_storage.h /^ int min_x(void) const { return m_min_x; }$/;" f class:gfx::gfx_serialized_scanlines_adaptor_bin +min_y src/gfx/gfx_rasterizer_cell.h /^ int min_y(void) const { return m_min_y; }$/;" f class:gfx::gfx_rasterizer_cells_aa +min_y src/gfx/gfx_rasterizer_scanline.h /^ int min_y(void) const { return m_outline.min_y(); }$/;" f class:gfx::gfx_rasterizer_scanline_aa +min_y src/gfx/gfx_scanline_storage.h /^ int min_y(void) const { return m_min_y; }$/;" f class:gfx::gfx_scanline_storage_aa +min_y src/gfx/gfx_scanline_storage.h /^ int min_y(void) const { return m_min_y; }$/;" f class:gfx::gfx_scanline_storage_bin +min_y src/gfx/gfx_scanline_storage.h /^ int min_y(void) const { return m_min_y; }$/;" f class:gfx::gfx_serialized_scanlines_adaptor_aa +min_y src/gfx/gfx_scanline_storage.h /^ int min_y(void) const { return m_min_y; }$/;" f class:gfx::gfx_serialized_scanlines_adaptor_bin +minidom tools/gyp/build/lib/gyp/xml_fix.py /^import xml.dom.minidom$/;" i +minidom tools/gyp/pylib/gyp/xml_fix.py /^import xml.dom.minidom$/;" i +minimax_test src/picasso_gpc.cpp /^static void minimax_test(gpc_polygon *subj, gpc_polygon *clip, gpc_op op)$/;" f namespace:picasso +minimum android/freetype/include/freetype/ftmm.h /^ FT_Fixed minimum;$/;" m struct:FT_Var_Axis_ +minimum android/freetype/include/freetype/ftmm.h /^ FT_Long minimum;$/;" m struct:FT_MM_Axis_ +minimum include/freetype/ftmm.h /^ FT_Fixed minimum;$/;" m struct:FT_Var_Axis_ +minimum include/freetype/ftmm.h /^ FT_Long minimum;$/;" m struct:FT_MM_Axis_ +minimum_distance android/freetype/src/truetype/ttobjs.h /^ FT_F26Dot6 minimum_distance;$/;" m struct:TT_GraphicsState_ +minor android/expat/lib/expat.h /^ int minor;$/;" m struct:__anon5 +minor include/expat.h /^ int minor;$/;" m struct:__anon51 +minor_dir android/freetype/src/pshinter/pshalgo.h /^ FT_Int minor_dir;$/;" m struct:PSH_GlyphRec_ +minuteCursorPath demos/clock.c /^static ps_path* minuteCursorPath;$/;" v file: +miter_join src/include/graphic_base.h /^ miter_join = 0,$/;" e enum:picasso::__anon205 +miter_join_revert src/include/graphic_base.h /^ miter_join_revert = 1,$/;" e enum:picasso::__anon205 +miter_join_round src/include/graphic_base.h /^ miter_join_round = 4,$/;" e enum:picasso::__anon205 +miter_limit android/freetype/src/base/ftstroke.c /^ FT_Fixed miter_limit;$/;" m struct:FT_StrokerRec_ file: +miter_limit src/picasso_objects.h /^ scalar miter_limit;$/;" m struct:picasso::graphic_pen +mmvar android/freetype/src/truetype/ttgxvar.h /^ FT_MM_Var* mmvar;$/;" m struct:GX_BlendRec_ +mmvar_len android/freetype/src/truetype/ttgxvar.h /^ FT_Int mmvar_len;$/;" m struct:GX_BlendRec_ +mod src/gfx/gfx_line_generator.h /^ int mod(void) const { return m_mod; }$/;" f class:gfx::gfx_dda2_line_interpolator +modify_command src/core/graphic_path.cpp /^ void modify_command(unsigned int idx, unsigned int cmd)$/;" f class:picasso::graphic_path_impl +modify_command src/core/graphic_path.cpp /^void graphic_path::modify_command(unsigned int idx, unsigned int cmd)$/;" f class:picasso::graphic_path +modify_last src/include/data_vector.h /^inline void pod_bvector::modify_last(const T& v)$/;" f class:picasso::pod_bvector +modify_last src/include/vertex_dist.h /^ void modify_last(const T& val)$/;" f class:picasso::vertex_sequence +modify_vertex src/core/graphic_path.cpp /^ void modify_vertex(unsigned int idx, scalar x, scalar y)$/;" f class:picasso::graphic_path_impl +modify_vertex src/core/graphic_path.cpp /^ void modify_vertex(unsigned int idx, scalar x, scalar y, unsigned int cmd)$/;" f class:picasso::graphic_path_impl +modify_vertex src/core/graphic_path.cpp /^void graphic_path::modify_vertex(unsigned int idx, scalar x, scalar y)$/;" f class:picasso::graphic_path +modify_vertex src/core/graphic_path.cpp /^void graphic_path::modify_vertex(unsigned int idx, scalar x, scalar y, unsigned int cmd)$/;" f class:picasso::graphic_path +module android/freetype/src/cff/cffobjs.h /^ cff_driver_done( FT_Module module );$/;" v +module android/freetype/src/cff/cffobjs.h /^ cff_driver_init( FT_Module module );$/;" v +module_done android/freetype/include/freetype/ftmodapi.h /^ FT_Module_Destructor module_done;$/;" m struct:FT_Module_Class_ +module_done include/freetype/ftmodapi.h /^ FT_Module_Destructor module_done;$/;" m struct:FT_Module_Class_ +module_flags android/freetype/include/freetype/ftmodapi.h /^ FT_ULong module_flags;$/;" m struct:FT_Module_Class_ +module_flags include/freetype/ftmodapi.h /^ FT_ULong module_flags;$/;" m struct:FT_Module_Class_ +module_init android/freetype/include/freetype/ftmodapi.h /^ FT_Module_Constructor module_init;$/;" m struct:FT_Module_Class_ +module_init include/freetype/ftmodapi.h /^ FT_Module_Constructor module_init;$/;" m struct:FT_Module_Class_ +module_interface android/freetype/include/freetype/ftmodapi.h /^ const void* module_interface;$/;" m struct:FT_Module_Class_ +module_interface include/freetype/ftmodapi.h /^ const void* module_interface;$/;" m struct:FT_Module_Class_ +module_name android/freetype/include/freetype/ftmodapi.h /^ const FT_String* module_name;$/;" m struct:FT_Module_Class_ +module_name include/freetype/ftmodapi.h /^ const FT_String* module_name;$/;" m struct:FT_Module_Class_ +module_requires android/freetype/include/freetype/ftmodapi.h /^ FT_Fixed module_requires;$/;" m struct:FT_Module_Class_ +module_requires include/freetype/ftmodapi.h /^ FT_Fixed module_requires;$/;" m struct:FT_Module_Class_ +module_size android/freetype/include/freetype/ftmodapi.h /^ FT_Long module_size;$/;" m struct:FT_Module_Class_ +module_size include/freetype/ftmodapi.h /^ FT_Long module_size;$/;" m struct:FT_Module_Class_ +module_version android/freetype/include/freetype/ftmodapi.h /^ FT_Fixed module_version;$/;" m struct:FT_Module_Class_ +module_version include/freetype/ftmodapi.h /^ FT_Fixed module_version;$/;" m struct:FT_Module_Class_ +modules android/freetype/include/freetype/internal/ftobjs.h /^ FT_Module modules[FT_MAX_MODULES]; \/* module objects *\/$/;" m struct:FT_LibraryRec_ +modules include/freetype/internal/ftobjs.h /^ FT_Module modules[FT_MAX_MODULES]; \/* module objects *\/$/;" m struct:FT_LibraryRec_ +mono_adaptor src/picasso_font.h /^ mono_storage& mono_adaptor(void) { return m_mono_storage; }$/;" f class:picasso::font_adapter +mono_storage src/picasso_font.h /^ mono_storage()$/;" f class:picasso::mono_storage +mono_storage src/picasso_font.h /^class mono_storage$/;" c namespace:picasso +more src/picasso_gpc.cpp /^ struct sbt_t_shape *more; \/* Pointer to nodes with higher y *\/$/;" m struct:picasso::sbt_t_shape typeref:struct:picasso::sbt_t_shape::sbt_t_shape file: +mouseMoveEvent demos/platform_qt4.cpp /^inline void PWindow::mouseMoveEvent(QMouseEvent *event)$/;" f class:PWindow +mousePressEvent demos/platform_qt4.cpp /^inline void PWindow::mousePressEvent(QMouseEvent *event)$/;" f class:PWindow +mouse_button_press demos/platform_gtk2.c /^static gboolean mouse_button_press(GtkWidget *widget, GdkEventButton *event)$/;" f file: +mouse_button_release demos/platform_gtk2.c /^static gboolean mouse_button_release(GtkWidget *widget, GdkEventButton *event)$/;" f file: +mouse_event_key demos/interface.h /^}mouse_event_key;$/;" t typeref:enum:__anon39 +mouse_event_type demos/interface.h /^}mouse_event_type;$/;" t typeref:enum:__anon38 +mouse_motion_notify demos/platform_gtk2.c /^static gboolean mouse_motion_notify(GtkWidget *widget, GdkEventMotion *event)$/;" f file: +movable android/freetype/src/base/ftstroke.c /^ FT_Bool movable;$/;" m struct:FT_StrokeBorderRec_ file: +moveToFreeBindingList android/expat/lib/xmlparse.c /^moveToFreeBindingList(XML_Parser parser, BINDING *bindings)$/;" f file: +move_rel src/core/graphic_path.cpp /^void graphic_path::move_rel(scalar dx, scalar dy)$/;" f class:picasso::graphic_path +move_to android/freetype/include/freetype/ftimage.h /^ FT_Outline_MoveToFunc move_to;$/;" m struct:FT_Outline_Funcs_ +move_to include/freetype/ftimage.h /^ FT_Outline_MoveToFunc move_to;$/;" m struct:FT_Outline_Funcs_ +move_to src/core/graphic_path.cpp /^void graphic_path::move_to(scalar x, scalar y)$/;" f class:picasso::graphic_path +move_to src/gfx/gfx_rasterizer_scanline.h /^ void move_to(int x, int y)$/;" f class:gfx::gfx_rasterizer_scanline_aa +move_to src/gfx/gfx_rasterizer_scanline.h /^ void move_to(int x1, int y1)$/;" f class:gfx::scanline_generator +move_to_d src/gfx/gfx_rasterizer_scanline.h /^ void move_to_d(scalar x, scalar y)$/;" f class:gfx::gfx_rasterizer_scanline_aa +msCursorPath demos/clock.c /^static ps_path* msCursorPath;$/;" v file: +msTagPath demos/clock.c /^static ps_path* msTagPath;$/;" v file: +msvs tools/gyp/build/lib/gyp/generator/msvs_test.py /^import gyp.generator.msvs as msvs$/;" i +msvs tools/gyp/pylib/gyp/generator/msvs_test.py /^import gyp.generator.msvs as msvs$/;" i +msvs_emulation tools/gyp/build/lib/gyp/generator/dump_dependency_json.py /^import gyp.msvs_emulation$/;" i +msvs_emulation tools/gyp/build/lib/gyp/generator/ninja.py /^import gyp.msvs_emulation$/;" i +msvs_emulation tools/gyp/pylib/gyp/generator/dump_dependency_json.py /^import gyp.msvs_emulation$/;" i +msvs_emulation tools/gyp/pylib/gyp/generator/ninja.py /^import gyp.msvs_emulation$/;" i +msvs_generator tools/gyp/build/lib/gyp/generator/dump_dependency_json.py /^ import gyp.generator.msvs as msvs_generator$/;" i +msvs_generator tools/gyp/build/lib/gyp/generator/ninja.py /^ import gyp.generator.msvs as msvs_generator$/;" i +msvs_generator tools/gyp/pylib/gyp/generator/dump_dependency_json.py /^ import gyp.generator.msvs as msvs_generator$/;" i +msvs_generator tools/gyp/pylib/gyp/generator/ninja.py /^ import gyp.generator.msvs as msvs_generator$/;" i +multiple_toolsets tools/gyp/build/lib/gyp/input.py /^multiple_toolsets = False$/;" v +multiple_toolsets tools/gyp/pylib/gyp/input.py /^multiple_toolsets = False$/;" v +multiply src/gfx/gfx_trans_affine.h /^ virtual void multiply(const abstract_trans_affine* o)$/;" f class:gfx::gfx_trans_affine +multiply src/picasso_matrix.cpp /^const trans_affine& trans_affine::multiply(const trans_affine& o)$/;" f class:picasso::trans_affine +multiprocessing tools/gyp/build/lib/gyp/generator/ninja.py /^import multiprocessing$/;" i +multiprocessing tools/gyp/build/lib/gyp/input.py /^import multiprocessing$/;" i +multiprocessing tools/gyp/pylib/gyp/generator/ninja.py /^import multiprocessing$/;" i +multiprocessing tools/gyp/pylib/gyp/input.py /^import multiprocessing$/;" i +my_timer_handler demos/platform_gix.c /^static int my_timer_handler(void* arg)$/;" f file: +n tools/gyp/build/lib/gyp/generator/scons.py /^ fp.write('\\nimport os\\n')$/;" i +n tools/gyp/pylib/gyp/generator/scons.py /^ fp.write('\\nimport os\\n')$/;" i +nCommands demos/subwaymap.c /^ unsigned nCommands;$/;" m struct:__anon46 file: +nDefaultAtts android/expat/lib/xmlparse.c /^ int nDefaultAtts;$/;" m struct:__anon16 file: +nFloats demos/subwaymap.c /^ unsigned nFloats;$/;" m struct:__anon46 file: +nSpecifiedAtts android/expat/lib/xmlparse.c /^#define nSpecifiedAtts /;" d file: +n_contours android/freetype/include/freetype/ftimage.h /^ short n_contours; \/* number of contours in glyph *\/$/;" m struct:FT_Outline_ +n_contours android/freetype/include/freetype/internal/tttypes.h /^ FT_Short n_contours;$/;" m struct:TT_LoaderRec_ +n_contours android/freetype/include/freetype/internal/tttypes.h /^ FT_Short n_contours; \/* number of contours *\/$/;" m struct:TT_GlyphZoneRec_ +n_contours include/freetype/ftimage.h /^ short n_contours; \/* number of contours in glyph *\/$/;" m struct:FT_Outline_ +n_contours include/freetype/internal/tttypes.h /^ FT_Short n_contours;$/;" m struct:TT_LoaderRec_ +n_contours include/freetype/internal/tttypes.h /^ FT_Short n_contours; \/* number of contours *\/$/;" m struct:TT_GlyphZoneRec_ +n_points android/freetype/include/freetype/ftimage.h /^ short n_points; \/* number of points in the glyph *\/$/;" m struct:FT_Outline_ +n_points android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort n_points; \/* number of points in zone *\/$/;" m struct:TT_GlyphZoneRec_ +n_points include/freetype/ftimage.h /^ short n_points; \/* number of points in the glyph *\/$/;" m struct:FT_Outline_ +n_points include/freetype/internal/tttypes.h /^ FT_UShort n_points; \/* number of points in zone *\/$/;" m struct:TT_GlyphZoneRec_ +name android/expat/lib/expat.h /^ XML_Char * name;$/;" m struct:XML_cp +name android/expat/lib/expat.h /^ const XML_LChar *name;$/;" m struct:__anon6 +name android/expat/lib/xmlparse.c /^ KEY name;$/;" m struct:__anon7 file: +name android/expat/lib/xmlparse.c /^ TAG_NAME name; \/* tagName in the API encoding *\/$/;" m struct:tag file: +name android/expat/lib/xmlparse.c /^ XML_Char *name;$/;" m struct:attribute_id file: +name android/expat/lib/xmlparse.c /^ const XML_Char * name;$/;" m struct:__anon12 file: +name android/expat/lib/xmlparse.c /^ const XML_Char *name;$/;" m struct:__anon11 file: +name android/expat/lib/xmlparse.c /^ const XML_Char *name;$/;" m struct:__anon16 file: +name android/expat/lib/xmlparse.c /^ const XML_Char *name;$/;" m struct:prefix file: +name android/expat/lib/xmltok.h /^ const char *name;$/;" m struct:__anon21 +name android/freetype/include/freetype/ftmm.h /^ FT_String* name;$/;" m struct:FT_MM_Axis_ +name android/freetype/include/freetype/ftmm.h /^ FT_String* name;$/;" m struct:FT_Var_Axis_ +name include/expat.h /^ XML_Char * name;$/;" m struct:XML_cp +name include/expat.h /^ const XML_LChar *name;$/;" m struct:__anon52 +name include/freetype/ftmm.h /^ FT_String* name;$/;" m struct:FT_MM_Axis_ +name include/freetype/ftmm.h /^ FT_String* name;$/;" m struct:FT_Var_Axis_ +name src/picasso_font.h /^ const char* name(void) const { return m_name; }$/;" f class:picasso::font_desc +name tools/gyp/setup.py /^ name='gyp',$/;" v +nameEnd android/expat/lib/expat.h /^ XML_Index nameEnd; \/* Offset after the attribute name's last byte. *\/$/;" m struct:__anon3 +nameEnd include/expat.h /^ XML_Index nameEnd; \/* Offset after the attribute name's last byte. *\/$/;" m struct:__anon49 +nameID android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort nameID;$/;" m struct:TT_NameEntryRec_ +nameID android/freetype/src/truetype/ttgxvar.c /^ FT_UShort nameID;$/;" m struct:fvar_axis_ file: +nameID include/freetype/internal/tttypes.h /^ FT_UShort nameID;$/;" m struct:TT_NameEntryRec_ +nameLength android/expat/lib/xmltok.h /^ int (PTRFASTCALL *nameLength)(const ENCODING *, const char *);$/;" m struct:encoding +nameLength android/expat/lib/xmltok_impl.c /^PREFIX(nameLength)(const ENCODING *enc, const char *ptr)$/;" f file: +nameMatchesAscii android/expat/lib/xmltok.h /^ int (PTRCALL *nameMatchesAscii)(const ENCODING *,$/;" m struct:encoding +nameMatchesAscii android/expat/lib/xmltok_impl.c /^PREFIX(nameMatchesAscii)(const ENCODING *enc, const char *ptr1,$/;" f file: +namePages android/expat/lib/nametab.h /^static const unsigned char namePages[] = {$/;" v +nameStart android/expat/lib/expat.h /^ XML_Index nameStart; \/* Offset to beginning of the attribute name. *\/$/;" m struct:__anon3 +nameStart include/expat.h /^ XML_Index nameStart; \/* Offset to beginning of the attribute name. *\/$/;" m struct:__anon49 +name_id android/freetype/include/freetype/ftsnames.h /^ FT_UShort name_id;$/;" m struct:FT_SfntName_ +name_id include/freetype/ftsnames.h /^ FT_UShort name_id;$/;" m struct:FT_SfntName_ +name_index android/freetype/src/cff/cfftypes.h /^ CFF_IndexRec name_index;$/;" m struct:CFF_FontRec_ +name_table android/freetype/include/freetype/internal/tttypes.h /^ TT_NameTableRec name_table; \/* name table *\/$/;" m struct:TT_FaceRec_ +name_table include/freetype/internal/tttypes.h /^ TT_NameTableRec name_table; \/* name table *\/$/;" m struct:TT_FaceRec_ +namedstyle android/freetype/include/freetype/ftmm.h /^ FT_Var_Named_Style* namedstyle;$/;" m struct:FT_MM_Var_ +namedstyle include/freetype/ftmm.h /^ FT_Var_Named_Style* namedstyle;$/;" m struct:FT_MM_Var_ +names android/freetype/include/freetype/internal/tttypes.h /^ TT_NameEntryRec* names;$/;" m struct:TT_NameTableRec_ +names android/freetype/include/freetype/internal/tttypes.h /^ } names;$/;" m struct:TT_Post_NamesRec_ typeref:union:TT_Post_NamesRec_::__anon25 +names include/freetype/internal/tttypes.h /^ TT_NameEntryRec* names;$/;" m struct:TT_NameTableRec_ +names include/freetype/internal/tttypes.h /^ } names;$/;" m struct:TT_Post_NamesRec_ typeref:union:TT_Post_NamesRec_::__anon54 +namespaceSeparator android/expat/lib/xmlparse.c /^#define namespaceSeparator /;" d file: +namingBitmap android/expat/lib/nametab.h /^static const unsigned namingBitmap[] = {$/;" v +native demos/interface.h /^ void* native;$/;" m struct:_picture +navigate_scanline src/gfx/gfx_rasterizer_scanline.h /^ bool navigate_scanline(int y)$/;" f class:gfx::gfx_rasterizer_scanline_aa +ndashes src/picasso_objects.h /^ unsigned int ndashes;$/;" m struct:picasso::graphic_pen +ndv_idx android/freetype/include/freetype/internal/t1types.h /^ FT_Int ndv_idx;$/;" m struct:T1_FaceRec_ +ndv_idx include/freetype/internal/t1types.h /^ FT_Int ndv_idx;$/;" m struct:T1_FaceRec_ +new tools/gyp/build/lib/gyp/MSVSSettings.py /^ new=['SendErrorReport'])) # \/ERRORREPORT:SEND$/;" v +new tools/gyp/build/lib/gyp/MSVSSettings.py /^ new=['Disabled'])) # \/Ob0$/;" v +new tools/gyp/build/lib/gyp/MSVSSettings.py /^ new=['EnableAllWarnings'])) # \/Wall$/;" v +new tools/gyp/build/lib/gyp/MSVSSettings.py /^ new=['LinkVerboseICF', # \/VERBOSE:ICF$/;" v +new tools/gyp/build/lib/gyp/MSVSSettings.py /^ new=['Send'])) # \/errorReport:send"$/;" v +new tools/gyp/build/lib/gyp/MSVSSettings.py /^ new=['SyncCThrow'])) # \/EHs$/;" v +new tools/gyp/build/lib/gyp/MSVSSettings.py /^ new=['POSIX']) # \/SUBSYSTEM:POSIX$/;" v +new tools/gyp/pylib/gyp/MSVSSettings.py /^ new=['SendErrorReport'])) # \/ERRORREPORT:SEND$/;" v +new tools/gyp/pylib/gyp/MSVSSettings.py /^ new=['Disabled'])) # \/Ob0$/;" v +new tools/gyp/pylib/gyp/MSVSSettings.py /^ new=['EnableAllWarnings'])) # \/Wall$/;" v +new tools/gyp/pylib/gyp/MSVSSettings.py /^ new=['LinkVerboseICF', # \/VERBOSE:ICF$/;" v +new tools/gyp/pylib/gyp/MSVSSettings.py /^ new=['Send'])) # \/errorReport:send"$/;" v +new tools/gyp/pylib/gyp/MSVSSettings.py /^ new=['SyncCThrow'])) # \/EHs$/;" v +new tools/gyp/pylib/gyp/MSVSSettings.py /^ new=['POSIX']) # \/SUBSYSTEM:POSIX$/;" v +new_memory_stream android/freetype/src/base/ftobjs.c /^ new_memory_stream( FT_Library library,$/;" f file: +new_top android/freetype/src/truetype/ttinterp.h /^ FT_UInt new_top; \/* new top after exec. *\/$/;" m struct:TT_ExecContextRec_ +newline tools/gyp/build/lib/gyp/ninja_syntax.py /^ def newline(self):$/;" m class:Writer +newline tools/gyp/pylib/gyp/ninja_syntax.py /^ def newline(self):$/;" m class:Writer +next android/expat/lib/xmlparse.c /^ struct block *next;$/;" m struct:block typeref:struct:block::block file: +next android/expat/lib/xmlparse.c /^ struct open_internal_entity *next;$/;" m struct:open_internal_entity typeref:struct:open_internal_entity::open_internal_entity file: +next android/freetype/include/freetype/freetype.h /^ FT_GlyphSlot next;$/;" m struct:FT_GlyphSlotRec_ +next android/freetype/include/freetype/fttypes.h /^ FT_ListNode next;$/;" m struct:FT_ListNodeRec_ +next android/freetype/src/autofit/afhints.h /^ AF_Point next; \/* next point in contour *\/$/;" m struct:AF_PointRec_ +next android/freetype/src/pshinter/pshalgo.h /^ PSH_Point next;$/;" m struct:PSH_PointRec_ +next android/freetype/src/raster/ftraster.c /^ PProfile next; \/* next profile in same contour, used *\/$/;" m struct:TProfile_ file: +next android/freetype/src/smooth/ftgrays.c /^ PCell next;$/;" m struct:TCell_ file: +next include/freetype/freetype.h /^ FT_GlyphSlot next;$/;" m struct:FT_GlyphSlotRec_ +next include/freetype/fttypes.h /^ FT_ListNode next;$/;" m struct:FT_ListNodeRec_ +next src/include/data_vector.h /^ T& next(unsigned int idx)$/;" f class:picasso::pod_bvector +next src/include/data_vector.h /^ const T& next(unsigned int idx) const$/;" f class:picasso::pod_bvector +next src/picasso_gpc.cpp /^ struct edge_shape *next; \/* Next edge in the AET *\/$/;" m struct:picasso::edge_shape typeref:struct:picasso::edge_shape::edge_shape file: +next src/picasso_gpc.cpp /^ struct it_shape *next; \/* The next intersection table node *\/$/;" m struct:picasso::it_shape typeref:struct:picasso::it_shape::it_shape file: +next src/picasso_gpc.cpp /^ struct lmt_shape *next; \/* Pointer to next local minimum *\/$/;" m struct:picasso::lmt_shape typeref:struct:picasso::lmt_shape::lmt_shape file: +next src/picasso_gpc.cpp /^ struct p_shape *next; \/* Pointer to next polygon contour *\/$/;" m struct:picasso::p_shape typeref:struct:picasso::p_shape::p_shape file: +next src/picasso_gpc.cpp /^ struct v_shape *next; \/* Pointer to next vertex in list *\/$/;" m struct:picasso::v_shape typeref:struct:picasso::v_shape::v_shape file: +next src/picasso_objects.h /^ struct context_state * next;$/;" m struct:picasso::context_state typeref:struct:picasso::context_state::context_state +nextScaffoldPart android/expat/lib/xmlparse.c /^nextScaffoldPart(XML_Parser parser)$/;" f file: +nextTagBinding android/expat/lib/xmlparse.c /^ struct binding *nextTagBinding;$/;" m struct:binding typeref:struct:binding::binding file: +next_bound src/picasso_gpc.cpp /^ struct edge_shape *next_bound; \/* Pointer to next bound in LMT *\/$/;" m struct:picasso::edge_shape typeref:struct:picasso::edge_shape::edge_shape file: +next_contour src/include/convert.h /^ bool next_contour(void)$/;" f class:picasso::conv_clipper +next_h_state src/picasso_gpc.cpp /^const h_state next_h_state[3][6]=$/;" m namespace:picasso file: +next_vertex src/include/convert.h /^ bool next_vertex(scalar* x, scalar* y)$/;" f class:picasso::conv_clipper +next_x src/gfx/gfx_image_accessors.h /^ const byte* next_x(void)$/;" f class:gfx::image_accessor +next_x src/gfx/gfx_image_accessors.h /^ const byte* next_x(void)$/;" f class:gfx::image_accessor_wrap +next_x src/gfx/gfx_pixfmt_wrapper.h /^ virtual const byte* next_x()$/;" f class:gfx::pattern_wrapper_adaptor +next_y src/gfx/gfx_image_accessors.h /^ const byte* next_y(void)$/;" f class:gfx::image_accessor +next_y src/gfx/gfx_image_accessors.h /^ const byte* next_y(void)$/;" f class:gfx::image_accessor_wrap +next_y src/gfx/gfx_pixfmt_wrapper.h /^ virtual const byte* next_y()$/;" f class:gfx::pattern_wrapper_adaptor +nextsib android/expat/lib/xmlparse.c /^ int nextsib;$/;" m struct:__anon12 file: +ninja tools/gyp/build/lib/gyp/generator/ninja_test.py /^import gyp.generator.ninja as ninja$/;" i +ninja tools/gyp/pylib/gyp/generator/ninja_test.py /^import gyp.generator.ninja as ninja$/;" i +ninja_syntax tools/gyp/build/lib/gyp/generator/ninja.py /^import gyp.ninja_syntax as ninja_syntax$/;" i +ninja_syntax tools/gyp/pylib/gyp/generator/ninja.py /^import gyp.ninja_syntax as ninja_syntax$/;" i +nmstrtPages android/expat/lib/nametab.h /^static const unsigned char nmstrtPages[] = {$/;" v +no_overshoots android/freetype/src/pshinter/pshglob.h /^ FT_Bool no_overshoots;$/;" m struct:PSH_BluesRec_ +no_recurse android/freetype/include/freetype/internal/psaux.h /^ FT_Bool no_recurse;$/;" m struct:T1_BuilderRec_ +no_recurse android/freetype/src/cff/cffgload.h /^ FT_Bool no_recurse;$/;" m struct:CFF_Builder_ +no_recurse include/freetype/internal/psaux.h /^ FT_Bool no_recurse;$/;" m struct:T1_BuilderRec_ +nodes android/freetype/src/base/ftdbgmem.c /^ FT_ULong nodes;$/;" m struct:FT_MemTableRec_ file: +nominal_point_size android/freetype/include/freetype/ftwinfnt.h /^ FT_UShort nominal_point_size;$/;" m struct:FT_WinFNT_HeaderRec_ +nominal_point_size include/freetype/ftwinfnt.h /^ FT_UShort nominal_point_size;$/;" m struct:FT_WinFNT_HeaderRec_ +nominal_width android/freetype/src/cff/cffgload.h /^ FT_Pos nominal_width;$/;" m struct:CFF_Decoder_ +nominal_width android/freetype/src/cff/cfftypes.h /^ FT_Pos nominal_width;$/;" m struct:CFF_PrivateRec_ +non_configuration_keys tools/gyp/build/lib/gyp/input.py /^non_configuration_keys = []$/;" v +non_configuration_keys tools/gyp/pylib/gyp/input.py /^non_configuration_keys = []$/;" v +normal android/expat/lib/xmltok.c /^ struct normal_encoding normal;$/;" m struct:unknown_encoding typeref:struct:unknown_encoding::normal_encoding file: +normal_bottom android/freetype/src/pshinter/pshglob.h /^ PSH_Blue_TableRec normal_bottom;$/;" m struct:PSH_BluesRec_ +normal_encoding android/expat/lib/xmltok.c /^struct normal_encoding {$/;" s file: +normal_top android/freetype/src/pshinter/pshglob.h /^ PSH_Blue_TableRec normal_top;$/;" m struct:PSH_BluesRec_ +normalize src/gfx/gfx_image_filters.h /^ void normalize(void)$/;" f class:gfx::image_filter_adapter +normalize src/gfx/gfx_renderer.h /^ void normalize(int& min, int& max)$/;" f class:gfx::gfx_renderer +normalize src/include/geometry.h /^ void normalize(scalar a1, scalar a2, bool ccw)$/;" f class:picasso::arc +normalize src/include/graphic_base.h /^ const self_type& normalize(void)$/;" f struct:picasso::rect_base +normalizeLines android/expat/lib/xmlparse.c /^normalizeLines(XML_Char *s)$/;" f file: +normalizePublicId android/expat/lib/xmlparse.c /^normalizePublicId(XML_Char *publicId)$/;" f file: +normalize_radius src/include/geometry.h /^ void normalize_radius(void)$/;" f class:picasso::rounded_rect +normalized android/expat/lib/xmltok.h /^ char normalized;$/;" m struct:__anon21 +normalizedcoords android/freetype/src/truetype/ttgxvar.h /^ FT_Fixed* normalizedcoords;$/;" m struct:GX_BlendRec_ +notStandaloneHandler android/expat/lib/xmlparse.c /^#define notStandaloneHandler /;" d file: +not_equal src/gfx/gfx_rasterizer_scanline.h /^ int not_equal(int ex, int ey, const cell&) const$/;" f struct:gfx::cell +notation android/expat/lib/xmlparse.c /^ const XML_Char *notation;$/;" m struct:__anon11 file: +notation0 android/expat/lib/xmlrole.c /^ notation0, notation1, notation2, notation3, notation4,$/;" v file: +notation0 android/expat/lib/xmlrole.c /^notation0(PROLOG_STATE *state,$/;" f file: +notation1 android/expat/lib/xmlrole.c /^ notation0, notation1, notation2, notation3, notation4,$/;" v file: +notation1 android/expat/lib/xmlrole.c /^notation1(PROLOG_STATE *state,$/;" f file: +notation2 android/expat/lib/xmlrole.c /^ notation0, notation1, notation2, notation3, notation4,$/;" v file: +notation2 android/expat/lib/xmlrole.c /^notation2(PROLOG_STATE *state,$/;" f file: +notation3 android/expat/lib/xmlrole.c /^ notation0, notation1, notation2, notation3, notation4,$/;" v file: +notation3 android/expat/lib/xmlrole.c /^notation3(PROLOG_STATE *state,$/;" f file: +notation4 android/expat/lib/xmlrole.c /^ notation0, notation1, notation2, notation3, notation4,$/;" v file: +notation4 android/expat/lib/xmlrole.c /^notation4(PROLOG_STATE *state,$/;" f file: +notationDeclHandler android/expat/lib/xmlparse.c /^#define notationDeclHandler /;" d file: +notice android/freetype/include/freetype/t1tables.h /^ FT_String* notice;$/;" m struct:PS_FontInfoRec_ +notice android/freetype/src/cff/cfftypes.h /^ FT_UInt notice;$/;" m struct:CFF_FontRecDictRec_ +notice include/freetype/t1tables.h /^ FT_String* notice;$/;" m struct:PS_FontInfoRec_ +ns android/expat/lib/xmlparse.c /^#define ns /;" d file: +ns android/expat/lib/xmltok.c /^#define ns(/;" d file: +ns android/expat/lib/xmltok.c /^#undef ns$/;" d file: +nsAtts android/expat/lib/xmlparse.c /^#define nsAtts /;" d file: +nsAttsPower android/expat/lib/xmlparse.c /^#define nsAttsPower /;" d file: +nsAttsVersion android/expat/lib/xmlparse.c /^#define nsAttsVersion /;" d file: +ns_triplets android/expat/lib/xmlparse.c /^#define ns_triplets /;" d file: +ntpath tools/gyp/build/lib/gyp/generator/msvs.py /^import ntpath$/;" i +ntpath tools/gyp/pylib/gyp/generator/msvs.py /^import ntpath$/;" i +null_bitmap android/freetype/src/base/ftbitmap.c /^ const FT_Bitmap null_bitmap = { 0, 0, 0, 0, 0, 0, 0, 0 };$/;" v file: +null_outline android/freetype/src/base/ftoutln.c /^ const FT_Outline null_outline = { 0, 0, 0, 0, 0, 0 };$/;" v file: +num src/gfx/gfx_rasterizer_cell.h /^ unsigned int num;$/;" m struct:gfx::gfx_rasterizer_cells_aa::sorted_y +numFDefs android/freetype/src/truetype/ttinterp.h /^ FT_UInt numFDefs; \/* number of function defs *\/$/;" m struct:TT_ExecContextRec_ +numGlyphs android/freetype/include/freetype/tttables.h /^ FT_UShort numGlyphs;$/;" m struct:TT_MaxProfile_ +numGlyphs include/freetype/tttables.h /^ FT_UShort numGlyphs;$/;" m struct:TT_MaxProfile_ +numIDefs android/freetype/src/truetype/ttinterp.h /^ FT_UInt numIDefs; \/* number of instruction defs *\/$/;" m struct:TT_ExecContextRec_ +numNameRecords android/freetype/include/freetype/internal/tttypes.h /^ FT_UInt numNameRecords;$/;" m struct:TT_NameTableRec_ +numNameRecords include/freetype/internal/tttypes.h /^ FT_UInt numNameRecords;$/;" m struct:TT_NameTableRec_ +numRanges android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort numRanges;$/;" m struct:TT_Gasp_ +numRanges include/freetype/internal/tttypes.h /^ FT_UShort numRanges;$/;" m struct:TT_Gasp_ +numTurns android/freetype/src/raster/ftraster.c /^ Int numTurns; \/* number of Y-turns in outline *\/$/;" m struct:TWorker_ file: +num_Profs android/freetype/src/raster/ftraster.c /^ UShort num_Profs; \/* current number of profiles *\/$/;" m struct:TWorker_ file: +num_axis android/freetype/include/freetype/ftmm.h /^ FT_UInt num_axis;$/;" m struct:FT_MM_Var_ +num_axis android/freetype/include/freetype/ftmm.h /^ FT_UInt num_axis;$/;" m struct:FT_Multi_Master_ +num_axis android/freetype/include/freetype/t1tables.h /^ FT_UInt num_axis;$/;" m struct:PS_BlendRec_ +num_axis android/freetype/src/truetype/ttgxvar.h /^ FT_UInt num_axis;$/;" m struct:GX_BlendRec_ +num_axis include/freetype/ftmm.h /^ FT_UInt num_axis;$/;" m struct:FT_MM_Var_ +num_axis include/freetype/ftmm.h /^ FT_UInt num_axis;$/;" m struct:FT_Multi_Master_ +num_axis include/freetype/t1tables.h /^ FT_UInt num_axis;$/;" m struct:PS_BlendRec_ +num_bits android/freetype/src/pshinter/pshrec.h /^ FT_UInt num_bits;$/;" m struct:PS_MaskRec_ +num_blue_values android/freetype/include/freetype/t1tables.h /^ FT_Byte num_blue_values;$/;" m struct:PS_PrivateRec_ +num_blue_values android/freetype/src/cff/cfftypes.h /^ FT_Byte num_blue_values;$/;" m struct:CFF_PrivateRec_ +num_blue_values include/freetype/t1tables.h /^ FT_Byte num_blue_values;$/;" m struct:PS_PrivateRec_ +num_cells android/freetype/src/smooth/ftgrays.c /^ int num_cells;$/;" m struct:TWorker_ file: +num_charmaps android/freetype/include/freetype/freetype.h /^ FT_Int num_charmaps;$/;" m struct:FT_FaceRec_ +num_charmaps include/freetype/freetype.h /^ FT_Int num_charmaps;$/;" m struct:FT_FaceRec_ +num_chars android/freetype/include/freetype/internal/t1types.h /^ FT_Int num_chars;$/;" m struct:T1_EncodingRecRec_ +num_chars include/freetype/internal/t1types.h /^ FT_Int num_chars;$/;" m struct:T1_EncodingRecRec_ +num_contours android/freetype/src/autofit/afhints.h /^ FT_Int num_contours;$/;" m struct:AF_GlyphHintsRec_ +num_contours android/freetype/src/pshinter/pshalgo.h /^ FT_UInt num_contours;$/;" m struct:PSH_GlyphRec_ +num_contours src/picasso_gpc.h /^ int num_contours; \/\/ number of contours in polygon$/;" m struct:picasso::__anon221 +num_default_design_vector android/freetype/include/freetype/t1tables.h /^ FT_UInt num_default_design_vector;$/;" m struct:PS_BlendRec_ +num_default_design_vector include/freetype/t1tables.h /^ FT_UInt num_default_design_vector;$/;" m struct:PS_BlendRec_ +num_designs android/freetype/include/freetype/ftmm.h /^ FT_UInt num_designs;$/;" m struct:FT_MM_Var_ +num_designs android/freetype/include/freetype/ftmm.h /^ FT_UInt num_designs;$/;" m struct:FT_Multi_Master_ +num_designs android/freetype/include/freetype/t1tables.h /^ FT_UInt num_designs;$/;" m struct:PS_BlendRec_ +num_designs include/freetype/ftmm.h /^ FT_UInt num_designs;$/;" m struct:FT_MM_Var_ +num_designs include/freetype/ftmm.h /^ FT_UInt num_designs;$/;" m struct:FT_Multi_Master_ +num_designs include/freetype/t1tables.h /^ FT_UInt num_designs;$/;" m struct:PS_BlendRec_ +num_dicts android/freetype/include/freetype/t1tables.h /^ FT_Int num_dicts;$/;" m struct:CID_FaceInfoRec_ +num_dicts include/freetype/t1tables.h /^ FT_Int num_dicts;$/;" m struct:CID_FaceInfoRec_ +num_edges android/freetype/src/autofit/afhints.h /^ FT_Int num_edges;$/;" m struct:AF_AxisHintsRec_ +num_elems android/freetype/include/freetype/internal/psaux.h /^ FT_Int num_elems;$/;" m struct:PS_TableRec_ +num_elems include/freetype/internal/psaux.h /^ FT_Int num_elems;$/;" m struct:PS_TableRec_ +num_faces android/freetype/include/freetype/freetype.h /^ FT_Long num_faces;$/;" m struct:FT_FaceRec_ +num_faces android/freetype/src/cff/cfftypes.h /^ FT_UInt num_faces;$/;" m struct:CFF_FontRec_ +num_faces include/freetype/freetype.h /^ FT_Long num_faces;$/;" m struct:FT_FaceRec_ +num_family_blues android/freetype/include/freetype/t1tables.h /^ FT_Byte num_family_blues;$/;" m struct:PS_PrivateRec_ +num_family_blues android/freetype/src/cff/cfftypes.h /^ FT_Byte num_family_blues;$/;" m struct:CFF_PrivateRec_ +num_family_blues include/freetype/t1tables.h /^ FT_Byte num_family_blues;$/;" m struct:PS_PrivateRec_ +num_family_other_blues android/freetype/include/freetype/t1tables.h /^ FT_Byte num_family_other_blues;$/;" m struct:PS_PrivateRec_ +num_family_other_blues android/freetype/src/cff/cfftypes.h /^ FT_Byte num_family_other_blues;$/;" m struct:CFF_PrivateRec_ +num_family_other_blues include/freetype/t1tables.h /^ FT_Byte num_family_other_blues;$/;" m struct:PS_PrivateRec_ +num_fixed_sizes android/freetype/include/freetype/freetype.h /^ FT_Int num_fixed_sizes;$/;" m struct:FT_FaceRec_ +num_fixed_sizes include/freetype/freetype.h /^ FT_Int num_fixed_sizes;$/;" m struct:FT_FaceRec_ +num_flex_vectors android/freetype/include/freetype/internal/psaux.h /^ FT_Int num_flex_vectors;$/;" m struct:T1_DecoderRec_ +num_flex_vectors android/freetype/src/cff/cffgload.h /^ FT_Int num_flex_vectors;$/;" m struct:CFF_Decoder_ +num_flex_vectors include/freetype/internal/psaux.h /^ FT_Int num_flex_vectors;$/;" m struct:T1_DecoderRec_ +num_function_defs android/freetype/src/truetype/ttobjs.h /^ FT_UInt num_function_defs; \/* number of function definitions *\/$/;" m struct:TT_SizeRec_ +num_global_subrs android/freetype/src/cff/cfftypes.h /^ FT_UInt num_global_subrs;$/;" m struct:CFF_FontRec_ +num_globals android/freetype/src/cff/cffgload.h /^ FT_UInt num_globals;$/;" m struct:CFF_Decoder_ +num_glyphs android/freetype/include/freetype/freetype.h /^ FT_Long num_glyphs;$/;" m struct:FT_FaceRec_ +num_glyphs android/freetype/include/freetype/internal/psaux.h /^ FT_UInt num_glyphs;$/;" m struct:T1_DecoderRec_ +num_glyphs android/freetype/include/freetype/internal/t1types.h /^ FT_Int num_glyphs;$/;" m struct:T1_FontRec_ +num_glyphs android/freetype/include/freetype/internal/tttypes.h /^ FT_ULong num_glyphs;$/;" m struct:TT_SBit_RangeRec_ +num_glyphs android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort num_glyphs;$/;" m struct:TT_Post_20Rec_ +num_glyphs android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort num_glyphs;$/;" m struct:TT_Post_25_ +num_glyphs android/freetype/src/cff/cffgload.h /^ FT_UInt num_glyphs; \/* number of glyphs in font *\/$/;" m struct:CFF_Decoder_ +num_glyphs android/freetype/src/cff/cfftypes.h /^ FT_UInt num_glyphs;$/;" m struct:CFF_FontRec_ +num_glyphs android/freetype/src/cff/cfftypes.h /^ FT_UInt num_glyphs;$/;" m struct:CFF_CharsetRec_ +num_glyphs android/freetype/src/psaux/t1cmap.h /^ FT_UInt num_glyphs;$/;" m struct:T1_CMapStdRec_ +num_glyphs android/freetype/src/sfnt/ttcmap.h /^ FT_UInt num_glyphs;$/;" m struct:TT_ValidatorRec_ +num_glyphs include/freetype/freetype.h /^ FT_Long num_glyphs;$/;" m struct:FT_FaceRec_ +num_glyphs include/freetype/internal/psaux.h /^ FT_UInt num_glyphs;$/;" m struct:T1_DecoderRec_ +num_glyphs include/freetype/internal/t1types.h /^ FT_Int num_glyphs;$/;" m struct:T1_FontRec_ +num_glyphs include/freetype/internal/tttypes.h /^ FT_ULong num_glyphs;$/;" m struct:TT_SBit_RangeRec_ +num_glyphs include/freetype/internal/tttypes.h /^ FT_UShort num_glyphs;$/;" m struct:TT_Post_20Rec_ +num_glyphs include/freetype/internal/tttypes.h /^ FT_UShort num_glyphs;$/;" m struct:TT_Post_25_ +num_gray_spans android/freetype/src/smooth/ftgrays.c /^ int num_gray_spans;$/;" m struct:TWorker_ file: +num_grays android/freetype/include/freetype/ftimage.h /^ short num_grays;$/;" m struct:FT_Bitmap_ +num_grays include/freetype/ftimage.h /^ short num_grays;$/;" m struct:FT_Bitmap_ +num_groups android/freetype/src/sfnt/ttcmap.c /^ FT_ULong num_groups;$/;" m struct:TT_CMap12Rec_ file: +num_hints android/freetype/src/cff/cffgload.h /^ FT_Int num_hints;$/;" m struct:CFF_Decoder_ +num_hints android/freetype/src/pshinter/pshalgo.h /^ FT_UInt num_hints;$/;" m struct:PSH_Hint_TableRec_ +num_hints android/freetype/src/pshinter/pshrec.h /^ FT_UInt num_hints;$/;" m struct:PS_Hint_TableRec_ +num_instruction_defs android/freetype/src/truetype/ttobjs.h /^ FT_UInt num_instruction_defs; \/* number of ins. definitions *\/$/;" m struct:TT_SizeRec_ +num_kern_pairs android/freetype/include/freetype/internal/tttypes.h /^ FT_Int num_kern_pairs;$/;" m struct:TT_FaceRec_ +num_kern_pairs include/freetype/internal/tttypes.h /^ FT_Int num_kern_pairs;$/;" m struct:TT_FaceRec_ +num_kern_tables android/freetype/include/freetype/internal/tttypes.h /^ FT_UInt num_kern_tables;$/;" m struct:TT_FaceRec_ +num_kern_tables include/freetype/internal/tttypes.h /^ FT_UInt num_kern_tables;$/;" m struct:TT_FaceRec_ +num_linked android/freetype/src/autofit/afhints.h /^ FT_Pos num_linked; \/* number of linked segments *\/$/;" m struct:AF_SegmentRec_ +num_linked android/freetype/src/autofit/afhints.h /^ FT_Short num_linked;$/;" m struct:AF_EdgeRec_ +num_local_subrs android/freetype/src/cff/cfftypes.h /^ FT_UInt num_local_subrs;$/;" m struct:CFF_SubFontRec_ +num_locals android/freetype/src/cff/cffgload.h /^ FT_UInt num_locals;$/;" m struct:CFF_Decoder_ +num_locations android/freetype/include/freetype/internal/tttypes.h /^ FT_UInt num_locations;$/;" m struct:TT_FaceRec_ +num_locations include/freetype/internal/tttypes.h /^ FT_ULong num_locations; \/* in broken TTF, gid > 0xFFFF *\/ $/;" m struct:TT_FaceRec_ +num_locations_stub android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort num_locations_stub;$/;" m struct:TT_FaceRec_ +num_locations_stub include/freetype/internal/tttypes.h /^ FT_UShort num_locations_stub;$/;" m struct:TT_FaceRec_ +num_maps android/freetype/include/freetype/internal/services/svpscmap.h /^ FT_UInt num_maps;$/;" m struct:PS_UnicodesRec_ +num_maps include/freetype/internal/services/svpscmap.h /^ FT_UInt num_maps;$/;" m struct:PS_UnicodesRec_ +num_masks android/freetype/src/pshinter/pshrec.h /^ FT_UInt num_masks;$/;" m struct:PS_Mask_TableRec_ +num_modules android/freetype/include/freetype/internal/ftobjs.h /^ FT_UInt num_modules;$/;" m struct:FT_LibraryRec_ +num_modules include/freetype/internal/ftobjs.h /^ FT_UInt num_modules;$/;" m struct:FT_LibraryRec_ +num_namedstyles android/freetype/include/freetype/ftmm.h /^ FT_UInt num_namedstyles;$/;" m struct:FT_MM_Var_ +num_namedstyles include/freetype/ftmm.h /^ FT_UInt num_namedstyles;$/;" m struct:FT_MM_Var_ +num_names android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort num_names; \/* number of name records *\/$/;" m struct:TT_FaceRec_ +num_names android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort num_names;$/;" m struct:TT_Post_20Rec_ +num_names include/freetype/internal/tttypes.h /^ FT_UShort num_names; \/* number of name records *\/$/;" m struct:TT_FaceRec_ +num_names include/freetype/internal/tttypes.h /^ FT_UShort num_names;$/;" m struct:TT_Post_20Rec_ +num_other_blues android/freetype/include/freetype/t1tables.h /^ FT_Byte num_other_blues;$/;" m struct:PS_PrivateRec_ +num_other_blues android/freetype/src/cff/cfftypes.h /^ FT_Byte num_other_blues;$/;" m struct:CFF_PrivateRec_ +num_other_blues include/freetype/t1tables.h /^ FT_Byte num_other_blues;$/;" m struct:PS_PrivateRec_ +num_params android/freetype/include/freetype/freetype.h /^ FT_Int num_params;$/;" m struct:FT_Open_Args_ +num_params include/freetype/freetype.h /^ FT_Int num_params;$/;" m struct:FT_Open_Args_ +num_points android/freetype/include/freetype/t1tables.h /^ FT_Byte num_points;$/;" m struct:PS_DesignMap_ +num_points android/freetype/src/autofit/afhints.h /^ FT_Int num_points;$/;" m struct:AF_GlyphHintsRec_ +num_points android/freetype/src/base/ftstroke.c /^ FT_UInt num_points;$/;" m struct:FT_StrokeBorderRec_ file: +num_points android/freetype/src/pshinter/pshalgo.h /^ FT_UInt num_points;$/;" m struct:PSH_GlyphRec_ +num_points include/freetype/t1tables.h /^ FT_Byte num_points;$/;" m struct:PS_DesignMap_ +num_ranges android/freetype/include/freetype/internal/tttypes.h /^ FT_Int num_ranges;$/;" m struct:TT_SBit_StrikeRec_ +num_ranges android/freetype/src/sfnt/ttcmap.c /^ FT_UInt num_ranges;$/;" m struct:TT_CMap4Rec_ file: +num_ranges include/freetype/internal/tttypes.h /^ FT_Int num_ranges;$/;" m struct:TT_SBit_StrikeRec_ +num_records android/freetype/include/freetype/internal/tttypes.h /^ FT_Short num_records;$/;" m struct:TT_HdmxRec_ +num_records include/freetype/internal/tttypes.h /^ FT_Short num_records;$/;" m struct:TT_HdmxRec_ +num_sbit_scales android/freetype/include/freetype/internal/tttypes.h /^ FT_ULong num_sbit_scales;$/;" m struct:TT_FaceRec_ +num_sbit_scales include/freetype/internal/tttypes.h /^ FT_ULong num_sbit_scales;$/;" m struct:TT_FaceRec_ +num_sbit_strikes android/freetype/include/freetype/internal/tttypes.h /^ FT_ULong num_sbit_strikes;$/;" m struct:TT_FaceRec_ +num_sbit_strikes include/freetype/internal/tttypes.h /^ FT_ULong num_sbit_strikes;$/;" m struct:TT_FaceRec_ +num_segments android/freetype/src/autofit/afhints.h /^ FT_Int num_segments;$/;" m struct:AF_AxisHintsRec_ +num_selectors android/freetype/src/sfnt/ttcmap.c /^ FT_ULong num_selectors;$/;" m struct:TT_CMap14Rec_ file: +num_snap_heights android/freetype/include/freetype/t1tables.h /^ FT_Byte num_snap_heights;$/;" m struct:PS_PrivateRec_ +num_snap_heights android/freetype/src/cff/cfftypes.h /^ FT_Byte num_snap_heights;$/;" m struct:CFF_PrivateRec_ +num_snap_heights include/freetype/t1tables.h /^ FT_Byte num_snap_heights;$/;" m struct:PS_PrivateRec_ +num_snap_widths android/freetype/include/freetype/t1tables.h /^ FT_Byte num_snap_widths;$/;" m struct:PS_PrivateRec_ +num_snap_widths android/freetype/src/cff/cfftypes.h /^ FT_Byte num_snap_widths;$/;" m struct:CFF_PrivateRec_ +num_snap_widths include/freetype/t1tables.h /^ FT_Byte num_snap_widths;$/;" m struct:PS_PrivateRec_ +num_spans src/gfx/gfx_rasterizer_scanline.h /^ unsigned int num_spans(void) const { return 1; }$/;" f class:gfx::scanline_hit_test +num_spans src/gfx/gfx_scanline.h /^ unsigned int num_spans(void) const { return (unsigned int)(m_cur_span - &m_spans[0]); }$/;" f class:gfx::gfx_scanline_bin +num_spans src/gfx/gfx_scanline.h /^ unsigned int num_spans(void) const { return (unsigned int)(m_cur_span - &m_spans[0]); }$/;" f class:gfx::gfx_scanline_p8 +num_spans src/gfx/gfx_scanline.h /^ unsigned int num_spans(void) const { return (unsigned int)(m_cur_span - &m_spans[0]); }$/;" f class:gfx::gfx_scanline_u8 +num_spans src/gfx/gfx_scanline_storage.h /^ unsigned int num_spans(void) const { return m_num_spans; }$/;" f class:gfx::gfx_serialized_scanlines_adaptor_aa::embedded_scanline +num_spans src/gfx/gfx_scanline_storage.h /^ unsigned int num_spans(void) const { return m_num_spans; }$/;" f class:gfx::gfx_serialized_scanlines_adaptor_bin::embedded_scanline +num_spans src/gfx/gfx_scanline_storage.h /^ unsigned int num_spans(void) const { return m_scanline.num_spans; }$/;" f class:gfx::gfx_scanline_storage_aa::embedded_scanline +num_spans src/gfx/gfx_scanline_storage.h /^ unsigned int num_spans(void) const { return m_scanline.num_spans; }$/;" f class:gfx::gfx_scanline_storage_bin::embedded_scanline +num_spans src/gfx/gfx_scanline_storage.h /^ unsigned int num_spans;$/;" m struct:gfx::gfx_scanline_storage_aa::__anon160 +num_spans src/gfx/gfx_scanline_storage.h /^ unsigned int num_spans;$/;" m struct:gfx::gfx_scanline_storage_bin::__anon164 +num_strikes android/freetype/include/freetype/internal/tttypes.h /^ FT_UInt num_strikes;$/;" m struct:TT_BDFRec_ +num_strikes include/freetype/internal/tttypes.h /^ FT_UInt num_strikes;$/;" m struct:TT_BDFRec_ +num_subfonts android/freetype/src/cff/cfftypes.h /^ FT_UInt num_subfonts;$/;" m struct:CFF_FontRec_ +num_subglyphs android/freetype/include/freetype/freetype.h /^ FT_UInt num_subglyphs;$/;" m struct:FT_GlyphSlotRec_ +num_subglyphs android/freetype/include/freetype/internal/ftgloadr.h /^ FT_UInt num_subglyphs; \/* number of subglyphs *\/$/;" m struct:FT_GlyphLoadRec_ +num_subglyphs include/freetype/freetype.h /^ FT_UInt num_subglyphs;$/;" m struct:FT_GlyphSlotRec_ +num_subglyphs include/freetype/internal/ftgloadr.h /^ FT_UInt num_subglyphs; \/* number of subglyphs *\/$/;" m struct:FT_GlyphLoadRec_ +num_subrs android/freetype/include/freetype/internal/psaux.h /^ FT_UInt num_subrs;$/;" m struct:T1_DecoderRec_ +num_subrs android/freetype/include/freetype/internal/t1types.h /^ FT_Int num_subrs;$/;" m struct:T1_FontRec_ +num_subrs android/freetype/include/freetype/internal/t1types.h /^ FT_UInt num_subrs;$/;" m struct:CID_SubrsRec_ +num_subrs android/freetype/include/freetype/t1tables.h /^ FT_UInt num_subrs;$/;" m struct:CID_FaceDictRec_ +num_subrs include/freetype/internal/psaux.h /^ FT_UInt num_subrs;$/;" m struct:T1_DecoderRec_ +num_subrs include/freetype/internal/t1types.h /^ FT_Int num_subrs;$/;" m struct:T1_FontRec_ +num_subrs include/freetype/internal/t1types.h /^ FT_UInt num_subrs;$/;" m struct:CID_SubrsRec_ +num_subrs include/freetype/t1tables.h /^ FT_UInt num_subrs;$/;" m struct:CID_FaceDictRec_ +num_tables android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort num_tables;$/;" m struct:TT_FaceRec_ +num_tables android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort num_tables;$/;" m struct:SFNT_HeaderRec_ +num_tables include/freetype/internal/tttypes.h /^ FT_UShort num_tables;$/;" m struct:TT_FaceRec_ +num_tables include/freetype/internal/tttypes.h /^ FT_UShort num_tables;$/;" m struct:SFNT_HeaderRec_ +num_vertices src/include/convert.h /^ int num_vertices;$/;" m struct:picasso::conv_clipper::__anon188 +num_vertices src/include/geometry.h /^ unsigned int num_vertices(void) const { return m_arc.num_vertices(); }$/;" f class:picasso::bezier_arc_svg +num_vertices src/include/geometry.h /^ unsigned int num_vertices(void) const { return m_num_vertices; }$/;" f class:picasso::bezier_arc +num_vertices src/picasso_gpc.h /^ int num_vertices; \/\/ number of vertices in list$/;" m struct:picasso::__anon220 +num_xuid android/freetype/include/freetype/t1tables.h /^ FT_Int num_xuid;$/;" m struct:CID_FaceInfoRec_ +num_xuid include/freetype/t1tables.h /^ FT_Int num_xuid;$/;" m struct:CID_FaceInfoRec_ +num_zones android/freetype/src/pshinter/pshalgo.h /^ FT_UInt num_zones;$/;" m struct:PSH_Hint_TableRec_ +number_Of_HMetrics android/freetype/include/freetype/tttables.h /^ FT_UShort number_Of_HMetrics;$/;" m struct:TT_HoriHeader_ +number_Of_HMetrics include/freetype/tttables.h /^ FT_UShort number_Of_HMetrics;$/;" m struct:TT_HoriHeader_ +number_Of_VMetrics android/freetype/include/freetype/tttables.h /^ FT_UShort number_Of_VMetrics;$/;" m struct:TT_VertHeader_ +number_Of_VMetrics include/freetype/tttables.h /^ FT_UShort number_Of_VMetrics;$/;" m struct:TT_VertHeader_ +numchildren android/expat/lib/expat.h /^ unsigned int numchildren;$/;" m struct:XML_cp +numchildren include/expat.h /^ unsigned int numchildren;$/;" m struct:XML_cp +object android/freetype/include/freetype/ftincrem.h /^ FT_Incremental object;$/;" m struct:FT_Incremental_InterfaceRec_ +object android/freetype/src/cff/cffparse.h /^ void* object;$/;" m struct:CFF_ParserRec_ +object include/freetype/ftincrem.h /^ FT_Incremental object;$/;" m struct:FT_Incremental_InterfaceRec_ +object_code android/freetype/src/cff/cffparse.h /^ FT_UInt object_code;$/;" m struct:CFF_ParserRec_ +objl_path_0_cmds demos/subwaymap.c /^static const unsigned char objl_path_0_cmds[]={$/;" v file: +objl_path_0_floats demos/subwaymap.c /^static const float objl_path_0_floats[]={$/;" v file: +objl_path_1000_cmds demos/subwaymap.c /^static const unsigned char objl_path_1000_cmds[]={$/;" v file: +objl_path_1000_floats demos/subwaymap.c /^static const float objl_path_1000_floats[]={$/;" v file: +objl_path_1001_cmds demos/subwaymap.c /^static const unsigned char objl_path_1001_cmds[]={$/;" v file: +objl_path_1001_floats demos/subwaymap.c /^static const float objl_path_1001_floats[]={$/;" v file: +objl_path_1002_cmds demos/subwaymap.c /^static const unsigned char objl_path_1002_cmds[]={$/;" v file: +objl_path_1002_floats demos/subwaymap.c /^static const float objl_path_1002_floats[]={$/;" v file: +objl_path_1003_cmds demos/subwaymap.c /^static const unsigned char objl_path_1003_cmds[]={$/;" v file: +objl_path_1003_floats demos/subwaymap.c /^static const float objl_path_1003_floats[]={$/;" v file: +objl_path_1004_cmds demos/subwaymap.c /^static const unsigned char objl_path_1004_cmds[]={$/;" v file: +objl_path_1004_floats demos/subwaymap.c /^static const float objl_path_1004_floats[]={$/;" v file: +objl_path_1005_cmds demos/subwaymap.c /^static const unsigned char objl_path_1005_cmds[]={$/;" v file: +objl_path_1005_floats demos/subwaymap.c /^static const float objl_path_1005_floats[]={$/;" v file: +objl_path_1006_cmds demos/subwaymap.c /^static const unsigned char objl_path_1006_cmds[]={$/;" v file: +objl_path_1006_floats demos/subwaymap.c /^static const float objl_path_1006_floats[]={$/;" v file: +objl_path_1007_cmds demos/subwaymap.c /^static const unsigned char objl_path_1007_cmds[]={$/;" v file: +objl_path_1007_floats demos/subwaymap.c /^static const float objl_path_1007_floats[]={$/;" v file: +objl_path_1008_cmds demos/subwaymap.c /^static const unsigned char objl_path_1008_cmds[]={$/;" v file: +objl_path_1008_floats demos/subwaymap.c /^static const float objl_path_1008_floats[]={$/;" v file: +objl_path_1009_cmds demos/subwaymap.c /^static const unsigned char objl_path_1009_cmds[]={$/;" v file: +objl_path_1009_floats demos/subwaymap.c /^static const float objl_path_1009_floats[]={$/;" v file: +objl_path_100_cmds demos/subwaymap.c /^static const unsigned char objl_path_100_cmds[]={$/;" v file: +objl_path_100_floats demos/subwaymap.c /^static const float objl_path_100_floats[]={$/;" v file: +objl_path_1010_cmds demos/subwaymap.c /^static const unsigned char objl_path_1010_cmds[]={$/;" v file: +objl_path_1010_floats demos/subwaymap.c /^static const float objl_path_1010_floats[]={$/;" v file: +objl_path_1011_cmds demos/subwaymap.c /^static const unsigned char objl_path_1011_cmds[]={$/;" v file: +objl_path_1011_floats demos/subwaymap.c /^static const float objl_path_1011_floats[]={$/;" v file: +objl_path_1012_cmds demos/subwaymap.c /^static const unsigned char objl_path_1012_cmds[]={$/;" v file: +objl_path_1012_floats demos/subwaymap.c /^static const float objl_path_1012_floats[]={$/;" v file: +objl_path_1013_cmds demos/subwaymap.c /^static const unsigned char objl_path_1013_cmds[]={$/;" v file: +objl_path_1013_floats demos/subwaymap.c /^static const float objl_path_1013_floats[]={$/;" v file: +objl_path_1014_cmds demos/subwaymap.c /^static const unsigned char objl_path_1014_cmds[]={$/;" v file: +objl_path_1014_floats demos/subwaymap.c /^static const float objl_path_1014_floats[]={$/;" v file: +objl_path_1015_cmds demos/subwaymap.c /^static const unsigned char objl_path_1015_cmds[]={$/;" v file: +objl_path_1015_floats demos/subwaymap.c /^static const float objl_path_1015_floats[]={$/;" v file: +objl_path_1016_cmds demos/subwaymap.c /^static const unsigned char objl_path_1016_cmds[]={$/;" v file: +objl_path_1016_floats demos/subwaymap.c /^static const float objl_path_1016_floats[]={$/;" v file: +objl_path_1017_cmds demos/subwaymap.c /^static const unsigned char objl_path_1017_cmds[]={$/;" v file: +objl_path_1017_floats demos/subwaymap.c /^static const float objl_path_1017_floats[]={$/;" v file: +objl_path_1018_cmds demos/subwaymap.c /^static const unsigned char objl_path_1018_cmds[]={$/;" v file: +objl_path_1018_floats demos/subwaymap.c /^static const float objl_path_1018_floats[]={$/;" v file: +objl_path_1019_cmds demos/subwaymap.c /^static const unsigned char objl_path_1019_cmds[]={$/;" v file: +objl_path_1019_floats demos/subwaymap.c /^static const float objl_path_1019_floats[]={$/;" v file: +objl_path_101_cmds demos/subwaymap.c /^static const unsigned char objl_path_101_cmds[]={$/;" v file: +objl_path_101_floats demos/subwaymap.c /^static const float objl_path_101_floats[]={$/;" v file: +objl_path_1020_cmds demos/subwaymap.c /^static const unsigned char objl_path_1020_cmds[]={$/;" v file: +objl_path_1020_floats demos/subwaymap.c /^static const float objl_path_1020_floats[]={$/;" v file: +objl_path_1021_cmds demos/subwaymap.c /^static const unsigned char objl_path_1021_cmds[]={$/;" v file: +objl_path_1021_floats demos/subwaymap.c /^static const float objl_path_1021_floats[]={$/;" v file: +objl_path_1022_cmds demos/subwaymap.c /^static const unsigned char objl_path_1022_cmds[]={$/;" v file: +objl_path_1022_floats demos/subwaymap.c /^static const float objl_path_1022_floats[]={$/;" v file: +objl_path_1023_cmds demos/subwaymap.c /^static const unsigned char objl_path_1023_cmds[]={$/;" v file: +objl_path_1023_floats demos/subwaymap.c /^static const float objl_path_1023_floats[]={$/;" v file: +objl_path_1024_cmds demos/subwaymap.c /^static const unsigned char objl_path_1024_cmds[]={$/;" v file: +objl_path_1024_floats demos/subwaymap.c /^static const float objl_path_1024_floats[]={$/;" v file: +objl_path_1025_cmds demos/subwaymap.c /^static const unsigned char objl_path_1025_cmds[]={$/;" v file: +objl_path_1025_floats demos/subwaymap.c /^static const float objl_path_1025_floats[]={$/;" v file: +objl_path_1026_cmds demos/subwaymap.c /^static const unsigned char objl_path_1026_cmds[]={$/;" v file: +objl_path_1026_floats demos/subwaymap.c /^static const float objl_path_1026_floats[]={$/;" v file: +objl_path_1027_cmds demos/subwaymap.c /^static const unsigned char objl_path_1027_cmds[]={$/;" v file: +objl_path_1027_floats demos/subwaymap.c /^static const float objl_path_1027_floats[]={$/;" v file: +objl_path_1028_cmds demos/subwaymap.c /^static const unsigned char objl_path_1028_cmds[]={$/;" v file: +objl_path_1028_floats demos/subwaymap.c /^static const float objl_path_1028_floats[]={$/;" v file: +objl_path_1029_cmds demos/subwaymap.c /^static const unsigned char objl_path_1029_cmds[]={$/;" v file: +objl_path_1029_floats demos/subwaymap.c /^static const float objl_path_1029_floats[]={$/;" v file: +objl_path_102_cmds demos/subwaymap.c /^static const unsigned char objl_path_102_cmds[]={$/;" v file: +objl_path_102_floats demos/subwaymap.c /^static const float objl_path_102_floats[]={$/;" v file: +objl_path_1030_cmds demos/subwaymap.c /^static const unsigned char objl_path_1030_cmds[]={$/;" v file: +objl_path_1030_floats demos/subwaymap.c /^static const float objl_path_1030_floats[]={$/;" v file: +objl_path_1031_cmds demos/subwaymap.c /^static const unsigned char objl_path_1031_cmds[]={$/;" v file: +objl_path_1031_floats demos/subwaymap.c /^static const float objl_path_1031_floats[]={$/;" v file: +objl_path_1032_cmds demos/subwaymap.c /^static const unsigned char objl_path_1032_cmds[]={$/;" v file: +objl_path_1032_floats demos/subwaymap.c /^static const float objl_path_1032_floats[]={$/;" v file: +objl_path_1033_cmds demos/subwaymap.c /^static const unsigned char objl_path_1033_cmds[]={$/;" v file: +objl_path_1033_floats demos/subwaymap.c /^static const float objl_path_1033_floats[]={$/;" v file: +objl_path_1034_cmds demos/subwaymap.c /^static const unsigned char objl_path_1034_cmds[]={$/;" v file: +objl_path_1034_floats demos/subwaymap.c /^static const float objl_path_1034_floats[]={$/;" v file: +objl_path_1035_cmds demos/subwaymap.c /^static const unsigned char objl_path_1035_cmds[]={$/;" v file: +objl_path_1035_floats demos/subwaymap.c /^static const float objl_path_1035_floats[]={$/;" v file: +objl_path_1036_cmds demos/subwaymap.c /^static const unsigned char objl_path_1036_cmds[]={$/;" v file: +objl_path_1036_floats demos/subwaymap.c /^static const float objl_path_1036_floats[]={$/;" v file: +objl_path_1037_cmds demos/subwaymap.c /^static const unsigned char objl_path_1037_cmds[]={$/;" v file: +objl_path_1037_floats demos/subwaymap.c /^static const float objl_path_1037_floats[]={$/;" v file: +objl_path_1038_cmds demos/subwaymap.c /^static const unsigned char objl_path_1038_cmds[]={$/;" v file: +objl_path_1038_floats demos/subwaymap.c /^static const float objl_path_1038_floats[]={$/;" v file: +objl_path_1039_cmds demos/subwaymap.c /^static const unsigned char objl_path_1039_cmds[]={$/;" v file: +objl_path_1039_floats demos/subwaymap.c /^static const float objl_path_1039_floats[]={$/;" v file: +objl_path_103_cmds demos/subwaymap.c /^static const unsigned char objl_path_103_cmds[]={$/;" v file: +objl_path_103_floats demos/subwaymap.c /^static const float objl_path_103_floats[]={$/;" v file: +objl_path_1040_cmds demos/subwaymap.c /^static const unsigned char objl_path_1040_cmds[]={$/;" v file: +objl_path_1040_floats demos/subwaymap.c /^static const float objl_path_1040_floats[]={$/;" v file: +objl_path_1041_cmds demos/subwaymap.c /^static const unsigned char objl_path_1041_cmds[]={$/;" v file: +objl_path_1041_floats demos/subwaymap.c /^static const float objl_path_1041_floats[]={$/;" v file: +objl_path_1042_cmds demos/subwaymap.c /^static const unsigned char objl_path_1042_cmds[]={$/;" v file: +objl_path_1042_floats demos/subwaymap.c /^static const float objl_path_1042_floats[]={$/;" v file: +objl_path_1043_cmds demos/subwaymap.c /^static const unsigned char objl_path_1043_cmds[]={$/;" v file: +objl_path_1043_floats demos/subwaymap.c /^static const float objl_path_1043_floats[]={$/;" v file: +objl_path_1044_cmds demos/subwaymap.c /^static const unsigned char objl_path_1044_cmds[]={$/;" v file: +objl_path_1044_floats demos/subwaymap.c /^static const float objl_path_1044_floats[]={$/;" v file: +objl_path_1045_cmds demos/subwaymap.c /^static const unsigned char objl_path_1045_cmds[]={$/;" v file: +objl_path_1045_floats demos/subwaymap.c /^static const float objl_path_1045_floats[]={$/;" v file: +objl_path_1046_cmds demos/subwaymap.c /^static const unsigned char objl_path_1046_cmds[]={$/;" v file: +objl_path_1046_floats demos/subwaymap.c /^static const float objl_path_1046_floats[]={$/;" v file: +objl_path_1047_cmds demos/subwaymap.c /^static const unsigned char objl_path_1047_cmds[]={$/;" v file: +objl_path_1047_floats demos/subwaymap.c /^static const float objl_path_1047_floats[]={$/;" v file: +objl_path_1048_cmds demos/subwaymap.c /^static const unsigned char objl_path_1048_cmds[]={$/;" v file: +objl_path_1048_floats demos/subwaymap.c /^static const float objl_path_1048_floats[]={$/;" v file: +objl_path_1049_cmds demos/subwaymap.c /^static const unsigned char objl_path_1049_cmds[]={$/;" v file: +objl_path_1049_floats demos/subwaymap.c /^static const float objl_path_1049_floats[]={$/;" v file: +objl_path_104_cmds demos/subwaymap.c /^static const unsigned char objl_path_104_cmds[]={$/;" v file: +objl_path_104_floats demos/subwaymap.c /^static const float objl_path_104_floats[]={$/;" v file: +objl_path_1050_cmds demos/subwaymap.c /^static const unsigned char objl_path_1050_cmds[]={$/;" v file: +objl_path_1050_floats demos/subwaymap.c /^static const float objl_path_1050_floats[]={$/;" v file: +objl_path_1051_cmds demos/subwaymap.c /^static const unsigned char objl_path_1051_cmds[]={$/;" v file: +objl_path_1051_floats demos/subwaymap.c /^static const float objl_path_1051_floats[]={$/;" v file: +objl_path_1052_cmds demos/subwaymap.c /^static const unsigned char objl_path_1052_cmds[]={$/;" v file: +objl_path_1052_floats demos/subwaymap.c /^static const float objl_path_1052_floats[]={$/;" v file: +objl_path_1053_cmds demos/subwaymap.c /^static const unsigned char objl_path_1053_cmds[]={$/;" v file: +objl_path_1053_floats demos/subwaymap.c /^static const float objl_path_1053_floats[]={$/;" v file: +objl_path_1054_cmds demos/subwaymap.c /^static const unsigned char objl_path_1054_cmds[]={$/;" v file: +objl_path_1054_floats demos/subwaymap.c /^static const float objl_path_1054_floats[]={$/;" v file: +objl_path_1055_cmds demos/subwaymap.c /^static const unsigned char objl_path_1055_cmds[]={$/;" v file: +objl_path_1055_floats demos/subwaymap.c /^static const float objl_path_1055_floats[]={$/;" v file: +objl_path_1056_cmds demos/subwaymap.c /^static const unsigned char objl_path_1056_cmds[]={$/;" v file: +objl_path_1056_floats demos/subwaymap.c /^static const float objl_path_1056_floats[]={$/;" v file: +objl_path_1057_cmds demos/subwaymap.c /^static const unsigned char objl_path_1057_cmds[]={$/;" v file: +objl_path_1057_floats demos/subwaymap.c /^static const float objl_path_1057_floats[]={$/;" v file: +objl_path_1058_cmds demos/subwaymap.c /^static const unsigned char objl_path_1058_cmds[]={$/;" v file: +objl_path_1058_floats demos/subwaymap.c /^static const float objl_path_1058_floats[]={$/;" v file: +objl_path_1059_cmds demos/subwaymap.c /^static const unsigned char objl_path_1059_cmds[]={$/;" v file: +objl_path_1059_floats demos/subwaymap.c /^static const float objl_path_1059_floats[]={$/;" v file: +objl_path_105_cmds demos/subwaymap.c /^static const unsigned char objl_path_105_cmds[]={$/;" v file: +objl_path_105_floats demos/subwaymap.c /^static const float objl_path_105_floats[]={$/;" v file: +objl_path_1060_cmds demos/subwaymap.c /^static const unsigned char objl_path_1060_cmds[]={$/;" v file: +objl_path_1060_floats demos/subwaymap.c /^static const float objl_path_1060_floats[]={$/;" v file: +objl_path_1061_cmds demos/subwaymap.c /^static const unsigned char objl_path_1061_cmds[]={$/;" v file: +objl_path_1061_floats demos/subwaymap.c /^static const float objl_path_1061_floats[]={$/;" v file: +objl_path_1062_cmds demos/subwaymap.c /^static const unsigned char objl_path_1062_cmds[]={$/;" v file: +objl_path_1062_floats demos/subwaymap.c /^static const float objl_path_1062_floats[]={$/;" v file: +objl_path_1063_cmds demos/subwaymap.c /^static const unsigned char objl_path_1063_cmds[]={$/;" v file: +objl_path_1063_floats demos/subwaymap.c /^static const float objl_path_1063_floats[]={$/;" v file: +objl_path_1064_cmds demos/subwaymap.c /^static const unsigned char objl_path_1064_cmds[]={$/;" v file: +objl_path_1064_floats demos/subwaymap.c /^static const float objl_path_1064_floats[]={$/;" v file: +objl_path_1065_cmds demos/subwaymap.c /^static const unsigned char objl_path_1065_cmds[]={$/;" v file: +objl_path_1065_floats demos/subwaymap.c /^static const float objl_path_1065_floats[]={$/;" v file: +objl_path_1066_cmds demos/subwaymap.c /^static const unsigned char objl_path_1066_cmds[]={$/;" v file: +objl_path_1066_floats demos/subwaymap.c /^static const float objl_path_1066_floats[]={$/;" v file: +objl_path_1067_cmds demos/subwaymap.c /^static const unsigned char objl_path_1067_cmds[]={$/;" v file: +objl_path_1067_floats demos/subwaymap.c /^static const float objl_path_1067_floats[]={$/;" v file: +objl_path_1068_cmds demos/subwaymap.c /^static const unsigned char objl_path_1068_cmds[]={$/;" v file: +objl_path_1068_floats demos/subwaymap.c /^static const float objl_path_1068_floats[]={$/;" v file: +objl_path_1069_cmds demos/subwaymap.c /^static const unsigned char objl_path_1069_cmds[]={$/;" v file: +objl_path_1069_floats demos/subwaymap.c /^static const float objl_path_1069_floats[]={$/;" v file: +objl_path_106_cmds demos/subwaymap.c /^static const unsigned char objl_path_106_cmds[]={$/;" v file: +objl_path_106_floats demos/subwaymap.c /^static const float objl_path_106_floats[]={$/;" v file: +objl_path_1070_cmds demos/subwaymap.c /^static const unsigned char objl_path_1070_cmds[]={$/;" v file: +objl_path_1070_floats demos/subwaymap.c /^static const float objl_path_1070_floats[]={$/;" v file: +objl_path_1071_cmds demos/subwaymap.c /^static const unsigned char objl_path_1071_cmds[]={$/;" v file: +objl_path_1071_floats demos/subwaymap.c /^static const float objl_path_1071_floats[]={$/;" v file: +objl_path_1072_cmds demos/subwaymap.c /^static const unsigned char objl_path_1072_cmds[]={$/;" v file: +objl_path_1072_floats demos/subwaymap.c /^static const float objl_path_1072_floats[]={$/;" v file: +objl_path_1073_cmds demos/subwaymap.c /^static const unsigned char objl_path_1073_cmds[]={$/;" v file: +objl_path_1073_floats demos/subwaymap.c /^static const float objl_path_1073_floats[]={$/;" v file: +objl_path_1074_cmds demos/subwaymap.c /^static const unsigned char objl_path_1074_cmds[]={$/;" v file: +objl_path_1074_floats demos/subwaymap.c /^static const float objl_path_1074_floats[]={$/;" v file: +objl_path_1075_cmds demos/subwaymap.c /^static const unsigned char objl_path_1075_cmds[]={$/;" v file: +objl_path_1075_floats demos/subwaymap.c /^static const float objl_path_1075_floats[]={$/;" v file: +objl_path_1076_cmds demos/subwaymap.c /^static const unsigned char objl_path_1076_cmds[]={$/;" v file: +objl_path_1076_floats demos/subwaymap.c /^static const float objl_path_1076_floats[]={$/;" v file: +objl_path_1077_cmds demos/subwaymap.c /^static const unsigned char objl_path_1077_cmds[]={$/;" v file: +objl_path_1077_floats demos/subwaymap.c /^static const float objl_path_1077_floats[]={$/;" v file: +objl_path_1078_cmds demos/subwaymap.c /^static const unsigned char objl_path_1078_cmds[]={$/;" v file: +objl_path_1078_floats demos/subwaymap.c /^static const float objl_path_1078_floats[]={$/;" v file: +objl_path_1079_cmds demos/subwaymap.c /^static const unsigned char objl_path_1079_cmds[]={$/;" v file: +objl_path_1079_floats demos/subwaymap.c /^static const float objl_path_1079_floats[]={$/;" v file: +objl_path_107_cmds demos/subwaymap.c /^static const unsigned char objl_path_107_cmds[]={$/;" v file: +objl_path_107_floats demos/subwaymap.c /^static const float objl_path_107_floats[]={$/;" v file: +objl_path_1080_cmds demos/subwaymap.c /^static const unsigned char objl_path_1080_cmds[]={$/;" v file: +objl_path_1080_floats demos/subwaymap.c /^static const float objl_path_1080_floats[]={$/;" v file: +objl_path_1081_cmds demos/subwaymap.c /^static const unsigned char objl_path_1081_cmds[]={$/;" v file: +objl_path_1081_floats demos/subwaymap.c /^static const float objl_path_1081_floats[]={$/;" v file: +objl_path_1082_cmds demos/subwaymap.c /^static const unsigned char objl_path_1082_cmds[]={$/;" v file: +objl_path_1082_floats demos/subwaymap.c /^static const float objl_path_1082_floats[]={$/;" v file: +objl_path_1083_cmds demos/subwaymap.c /^static const unsigned char objl_path_1083_cmds[]={$/;" v file: +objl_path_1083_floats demos/subwaymap.c /^static const float objl_path_1083_floats[]={$/;" v file: +objl_path_1084_cmds demos/subwaymap.c /^static const unsigned char objl_path_1084_cmds[]={$/;" v file: +objl_path_1084_floats demos/subwaymap.c /^static const float objl_path_1084_floats[]={$/;" v file: +objl_path_1085_cmds demos/subwaymap.c /^static const unsigned char objl_path_1085_cmds[]={$/;" v file: +objl_path_1085_floats demos/subwaymap.c /^static const float objl_path_1085_floats[]={$/;" v file: +objl_path_1086_cmds demos/subwaymap.c /^static const unsigned char objl_path_1086_cmds[]={$/;" v file: +objl_path_1086_floats demos/subwaymap.c /^static const float objl_path_1086_floats[]={$/;" v file: +objl_path_1087_cmds demos/subwaymap.c /^static const unsigned char objl_path_1087_cmds[]={$/;" v file: +objl_path_1087_floats demos/subwaymap.c /^static const float objl_path_1087_floats[]={$/;" v file: +objl_path_1088_cmds demos/subwaymap.c /^static const unsigned char objl_path_1088_cmds[]={$/;" v file: +objl_path_1088_floats demos/subwaymap.c /^static const float objl_path_1088_floats[]={$/;" v file: +objl_path_1089_cmds demos/subwaymap.c /^static const unsigned char objl_path_1089_cmds[]={$/;" v file: +objl_path_1089_floats demos/subwaymap.c /^static const float objl_path_1089_floats[]={$/;" v file: +objl_path_108_cmds demos/subwaymap.c /^static const unsigned char objl_path_108_cmds[]={$/;" v file: +objl_path_108_floats demos/subwaymap.c /^static const float objl_path_108_floats[]={$/;" v file: +objl_path_1090_cmds demos/subwaymap.c /^static const unsigned char objl_path_1090_cmds[]={$/;" v file: +objl_path_1090_floats demos/subwaymap.c /^static const float objl_path_1090_floats[]={$/;" v file: +objl_path_1091_cmds demos/subwaymap.c /^static const unsigned char objl_path_1091_cmds[]={$/;" v file: +objl_path_1091_floats demos/subwaymap.c /^static const float objl_path_1091_floats[]={$/;" v file: +objl_path_1092_cmds demos/subwaymap.c /^static const unsigned char objl_path_1092_cmds[]={$/;" v file: +objl_path_1092_floats demos/subwaymap.c /^static const float objl_path_1092_floats[]={$/;" v file: +objl_path_1093_cmds demos/subwaymap.c /^static const unsigned char objl_path_1093_cmds[]={$/;" v file: +objl_path_1093_floats demos/subwaymap.c /^static const float objl_path_1093_floats[]={$/;" v file: +objl_path_1094_cmds demos/subwaymap.c /^static const unsigned char objl_path_1094_cmds[]={$/;" v file: +objl_path_1094_floats demos/subwaymap.c /^static const float objl_path_1094_floats[]={$/;" v file: +objl_path_1095_cmds demos/subwaymap.c /^static const unsigned char objl_path_1095_cmds[]={$/;" v file: +objl_path_1095_floats demos/subwaymap.c /^static const float objl_path_1095_floats[]={$/;" v file: +objl_path_1096_cmds demos/subwaymap.c /^static const unsigned char objl_path_1096_cmds[]={$/;" v file: +objl_path_1096_floats demos/subwaymap.c /^static const float objl_path_1096_floats[]={$/;" v file: +objl_path_1097_cmds demos/subwaymap.c /^static const unsigned char objl_path_1097_cmds[]={$/;" v file: +objl_path_1097_floats demos/subwaymap.c /^static const float objl_path_1097_floats[]={$/;" v file: +objl_path_1098_cmds demos/subwaymap.c /^static const unsigned char objl_path_1098_cmds[]={$/;" v file: +objl_path_1098_floats demos/subwaymap.c /^static const float objl_path_1098_floats[]={$/;" v file: +objl_path_1099_cmds demos/subwaymap.c /^static const unsigned char objl_path_1099_cmds[]={$/;" v file: +objl_path_1099_floats demos/subwaymap.c /^static const float objl_path_1099_floats[]={$/;" v file: +objl_path_109_cmds demos/subwaymap.c /^static const unsigned char objl_path_109_cmds[]={$/;" v file: +objl_path_109_floats demos/subwaymap.c /^static const float objl_path_109_floats[]={$/;" v file: +objl_path_10_cmds demos/subwaymap.c /^static const unsigned char objl_path_10_cmds[]={$/;" v file: +objl_path_10_floats demos/subwaymap.c /^static const float objl_path_10_floats[]={$/;" v file: +objl_path_1100_cmds demos/subwaymap.c /^static const unsigned char objl_path_1100_cmds[]={$/;" v file: +objl_path_1100_floats demos/subwaymap.c /^static const float objl_path_1100_floats[]={$/;" v file: +objl_path_1101_cmds demos/subwaymap.c /^static const unsigned char objl_path_1101_cmds[]={$/;" v file: +objl_path_1101_floats demos/subwaymap.c /^static const float objl_path_1101_floats[]={$/;" v file: +objl_path_1102_cmds demos/subwaymap.c /^static const unsigned char objl_path_1102_cmds[]={$/;" v file: +objl_path_1102_floats demos/subwaymap.c /^static const float objl_path_1102_floats[]={$/;" v file: +objl_path_1103_cmds demos/subwaymap.c /^static const unsigned char objl_path_1103_cmds[]={$/;" v file: +objl_path_1103_floats demos/subwaymap.c /^static const float objl_path_1103_floats[]={$/;" v file: +objl_path_1104_cmds demos/subwaymap.c /^static const unsigned char objl_path_1104_cmds[]={$/;" v file: +objl_path_1104_floats demos/subwaymap.c /^static const float objl_path_1104_floats[]={$/;" v file: +objl_path_1105_cmds demos/subwaymap.c /^static const unsigned char objl_path_1105_cmds[]={$/;" v file: +objl_path_1105_floats demos/subwaymap.c /^static const float objl_path_1105_floats[]={$/;" v file: +objl_path_1106_cmds demos/subwaymap.c /^static const unsigned char objl_path_1106_cmds[]={$/;" v file: +objl_path_1106_floats demos/subwaymap.c /^static const float objl_path_1106_floats[]={$/;" v file: +objl_path_1107_cmds demos/subwaymap.c /^static const unsigned char objl_path_1107_cmds[]={$/;" v file: +objl_path_1107_floats demos/subwaymap.c /^static const float objl_path_1107_floats[]={$/;" v file: +objl_path_1108_cmds demos/subwaymap.c /^static const unsigned char objl_path_1108_cmds[]={$/;" v file: +objl_path_1108_floats demos/subwaymap.c /^static const float objl_path_1108_floats[]={$/;" v file: +objl_path_1109_cmds demos/subwaymap.c /^static const unsigned char objl_path_1109_cmds[]={$/;" v file: +objl_path_1109_floats demos/subwaymap.c /^static const float objl_path_1109_floats[]={$/;" v file: +objl_path_110_cmds demos/subwaymap.c /^static const unsigned char objl_path_110_cmds[]={$/;" v file: +objl_path_110_floats demos/subwaymap.c /^static const float objl_path_110_floats[]={$/;" v file: +objl_path_1110_cmds demos/subwaymap.c /^static const unsigned char objl_path_1110_cmds[]={$/;" v file: +objl_path_1110_floats demos/subwaymap.c /^static const float objl_path_1110_floats[]={$/;" v file: +objl_path_1111_cmds demos/subwaymap.c /^static const unsigned char objl_path_1111_cmds[]={$/;" v file: +objl_path_1111_floats demos/subwaymap.c /^static const float objl_path_1111_floats[]={$/;" v file: +objl_path_1112_cmds demos/subwaymap.c /^static const unsigned char objl_path_1112_cmds[]={$/;" v file: +objl_path_1112_floats demos/subwaymap.c /^static const float objl_path_1112_floats[]={$/;" v file: +objl_path_1113_cmds demos/subwaymap.c /^static const unsigned char objl_path_1113_cmds[]={$/;" v file: +objl_path_1113_floats demos/subwaymap.c /^static const float objl_path_1113_floats[]={$/;" v file: +objl_path_1114_cmds demos/subwaymap.c /^static const unsigned char objl_path_1114_cmds[]={$/;" v file: +objl_path_1114_floats demos/subwaymap.c /^static const float objl_path_1114_floats[]={$/;" v file: +objl_path_1115_cmds demos/subwaymap.c /^static const unsigned char objl_path_1115_cmds[]={$/;" v file: +objl_path_1115_floats demos/subwaymap.c /^static const float objl_path_1115_floats[]={$/;" v file: +objl_path_1116_cmds demos/subwaymap.c /^static const unsigned char objl_path_1116_cmds[]={$/;" v file: +objl_path_1116_floats demos/subwaymap.c /^static const float objl_path_1116_floats[]={$/;" v file: +objl_path_1117_cmds demos/subwaymap.c /^static const unsigned char objl_path_1117_cmds[]={$/;" v file: +objl_path_1117_floats demos/subwaymap.c /^static const float objl_path_1117_floats[]={$/;" v file: +objl_path_1118_cmds demos/subwaymap.c /^static const unsigned char objl_path_1118_cmds[]={$/;" v file: +objl_path_1118_floats demos/subwaymap.c /^static const float objl_path_1118_floats[]={$/;" v file: +objl_path_1119_cmds demos/subwaymap.c /^static const unsigned char objl_path_1119_cmds[]={$/;" v file: +objl_path_1119_floats demos/subwaymap.c /^static const float objl_path_1119_floats[]={$/;" v file: +objl_path_111_cmds demos/subwaymap.c /^static const unsigned char objl_path_111_cmds[]={$/;" v file: +objl_path_111_floats demos/subwaymap.c /^static const float objl_path_111_floats[]={$/;" v file: +objl_path_1120_cmds demos/subwaymap.c /^static const unsigned char objl_path_1120_cmds[]={$/;" v file: +objl_path_1120_floats demos/subwaymap.c /^static const float objl_path_1120_floats[]={$/;" v file: +objl_path_1121_cmds demos/subwaymap.c /^static const unsigned char objl_path_1121_cmds[]={$/;" v file: +objl_path_1121_floats demos/subwaymap.c /^static const float objl_path_1121_floats[]={$/;" v file: +objl_path_1122_cmds demos/subwaymap.c /^static const unsigned char objl_path_1122_cmds[]={$/;" v file: +objl_path_1122_floats demos/subwaymap.c /^static const float objl_path_1122_floats[]={$/;" v file: +objl_path_1123_cmds demos/subwaymap.c /^static const unsigned char objl_path_1123_cmds[]={$/;" v file: +objl_path_1123_floats demos/subwaymap.c /^static const float objl_path_1123_floats[]={$/;" v file: +objl_path_1124_cmds demos/subwaymap.c /^static const unsigned char objl_path_1124_cmds[]={$/;" v file: +objl_path_1124_floats demos/subwaymap.c /^static const float objl_path_1124_floats[]={$/;" v file: +objl_path_1125_cmds demos/subwaymap.c /^static const unsigned char objl_path_1125_cmds[]={$/;" v file: +objl_path_1125_floats demos/subwaymap.c /^static const float objl_path_1125_floats[]={$/;" v file: +objl_path_1126_cmds demos/subwaymap.c /^static const unsigned char objl_path_1126_cmds[]={$/;" v file: +objl_path_1126_floats demos/subwaymap.c /^static const float objl_path_1126_floats[]={$/;" v file: +objl_path_1127_cmds demos/subwaymap.c /^static const unsigned char objl_path_1127_cmds[]={$/;" v file: +objl_path_1127_floats demos/subwaymap.c /^static const float objl_path_1127_floats[]={$/;" v file: +objl_path_1128_cmds demos/subwaymap.c /^static const unsigned char objl_path_1128_cmds[]={$/;" v file: +objl_path_1128_floats demos/subwaymap.c /^static const float objl_path_1128_floats[]={$/;" v file: +objl_path_1129_cmds demos/subwaymap.c /^static const unsigned char objl_path_1129_cmds[]={$/;" v file: +objl_path_1129_floats demos/subwaymap.c /^static const float objl_path_1129_floats[]={$/;" v file: +objl_path_112_cmds demos/subwaymap.c /^static const unsigned char objl_path_112_cmds[]={$/;" v file: +objl_path_112_floats demos/subwaymap.c /^static const float objl_path_112_floats[]={$/;" v file: +objl_path_1130_cmds demos/subwaymap.c /^static const unsigned char objl_path_1130_cmds[]={$/;" v file: +objl_path_1130_floats demos/subwaymap.c /^static const float objl_path_1130_floats[]={$/;" v file: +objl_path_1131_cmds demos/subwaymap.c /^static const unsigned char objl_path_1131_cmds[]={$/;" v file: +objl_path_1131_floats demos/subwaymap.c /^static const float objl_path_1131_floats[]={$/;" v file: +objl_path_1132_cmds demos/subwaymap.c /^static const unsigned char objl_path_1132_cmds[]={$/;" v file: +objl_path_1132_floats demos/subwaymap.c /^static const float objl_path_1132_floats[]={$/;" v file: +objl_path_1133_cmds demos/subwaymap.c /^static const unsigned char objl_path_1133_cmds[]={$/;" v file: +objl_path_1133_floats demos/subwaymap.c /^static const float objl_path_1133_floats[]={$/;" v file: +objl_path_1134_cmds demos/subwaymap.c /^static const unsigned char objl_path_1134_cmds[]={$/;" v file: +objl_path_1134_floats demos/subwaymap.c /^static const float objl_path_1134_floats[]={$/;" v file: +objl_path_1135_cmds demos/subwaymap.c /^static const unsigned char objl_path_1135_cmds[]={$/;" v file: +objl_path_1135_floats demos/subwaymap.c /^static const float objl_path_1135_floats[]={$/;" v file: +objl_path_1136_cmds demos/subwaymap.c /^static const unsigned char objl_path_1136_cmds[]={$/;" v file: +objl_path_1136_floats demos/subwaymap.c /^static const float objl_path_1136_floats[]={$/;" v file: +objl_path_1137_cmds demos/subwaymap.c /^static const unsigned char objl_path_1137_cmds[]={$/;" v file: +objl_path_1137_floats demos/subwaymap.c /^static const float objl_path_1137_floats[]={$/;" v file: +objl_path_1138_cmds demos/subwaymap.c /^static const unsigned char objl_path_1138_cmds[]={$/;" v file: +objl_path_1138_floats demos/subwaymap.c /^static const float objl_path_1138_floats[]={$/;" v file: +objl_path_1139_cmds demos/subwaymap.c /^static const unsigned char objl_path_1139_cmds[]={$/;" v file: +objl_path_1139_floats demos/subwaymap.c /^static const float objl_path_1139_floats[]={$/;" v file: +objl_path_113_cmds demos/subwaymap.c /^static const unsigned char objl_path_113_cmds[]={$/;" v file: +objl_path_113_floats demos/subwaymap.c /^static const float objl_path_113_floats[]={$/;" v file: +objl_path_1140_cmds demos/subwaymap.c /^static const unsigned char objl_path_1140_cmds[]={$/;" v file: +objl_path_1140_floats demos/subwaymap.c /^static const float objl_path_1140_floats[]={$/;" v file: +objl_path_1141_cmds demos/subwaymap.c /^static const unsigned char objl_path_1141_cmds[]={$/;" v file: +objl_path_1141_floats demos/subwaymap.c /^static const float objl_path_1141_floats[]={$/;" v file: +objl_path_1142_cmds demos/subwaymap.c /^static const unsigned char objl_path_1142_cmds[]={$/;" v file: +objl_path_1142_floats demos/subwaymap.c /^static const float objl_path_1142_floats[]={$/;" v file: +objl_path_1143_cmds demos/subwaymap.c /^static const unsigned char objl_path_1143_cmds[]={$/;" v file: +objl_path_1143_floats demos/subwaymap.c /^static const float objl_path_1143_floats[]={$/;" v file: +objl_path_1144_cmds demos/subwaymap.c /^static const unsigned char objl_path_1144_cmds[]={$/;" v file: +objl_path_1144_floats demos/subwaymap.c /^static const float objl_path_1144_floats[]={$/;" v file: +objl_path_1145_cmds demos/subwaymap.c /^static const unsigned char objl_path_1145_cmds[]={$/;" v file: +objl_path_1145_floats demos/subwaymap.c /^static const float objl_path_1145_floats[]={$/;" v file: +objl_path_1146_cmds demos/subwaymap.c /^static const unsigned char objl_path_1146_cmds[]={$/;" v file: +objl_path_1146_floats demos/subwaymap.c /^static const float objl_path_1146_floats[]={$/;" v file: +objl_path_1147_cmds demos/subwaymap.c /^static const unsigned char objl_path_1147_cmds[]={$/;" v file: +objl_path_1147_floats demos/subwaymap.c /^static const float objl_path_1147_floats[]={$/;" v file: +objl_path_1148_cmds demos/subwaymap.c /^static const unsigned char objl_path_1148_cmds[]={$/;" v file: +objl_path_1148_floats demos/subwaymap.c /^static const float objl_path_1148_floats[]={$/;" v file: +objl_path_1149_cmds demos/subwaymap.c /^static const unsigned char objl_path_1149_cmds[]={$/;" v file: +objl_path_1149_floats demos/subwaymap.c /^static const float objl_path_1149_floats[]={$/;" v file: +objl_path_114_cmds demos/subwaymap.c /^static const unsigned char objl_path_114_cmds[]={$/;" v file: +objl_path_114_floats demos/subwaymap.c /^static const float objl_path_114_floats[]={$/;" v file: +objl_path_1150_cmds demos/subwaymap.c /^static const unsigned char objl_path_1150_cmds[]={$/;" v file: +objl_path_1150_floats demos/subwaymap.c /^static const float objl_path_1150_floats[]={$/;" v file: +objl_path_1151_cmds demos/subwaymap.c /^static const unsigned char objl_path_1151_cmds[]={$/;" v file: +objl_path_1151_floats demos/subwaymap.c /^static const float objl_path_1151_floats[]={$/;" v file: +objl_path_1152_cmds demos/subwaymap.c /^static const unsigned char objl_path_1152_cmds[]={$/;" v file: +objl_path_1152_floats demos/subwaymap.c /^static const float objl_path_1152_floats[]={$/;" v file: +objl_path_1153_cmds demos/subwaymap.c /^static const unsigned char objl_path_1153_cmds[]={$/;" v file: +objl_path_1153_floats demos/subwaymap.c /^static const float objl_path_1153_floats[]={$/;" v file: +objl_path_1154_cmds demos/subwaymap.c /^static const unsigned char objl_path_1154_cmds[]={$/;" v file: +objl_path_1154_floats demos/subwaymap.c /^static const float objl_path_1154_floats[]={$/;" v file: +objl_path_1155_cmds demos/subwaymap.c /^static const unsigned char objl_path_1155_cmds[]={$/;" v file: +objl_path_1155_floats demos/subwaymap.c /^static const float objl_path_1155_floats[]={$/;" v file: +objl_path_1156_cmds demos/subwaymap.c /^static const unsigned char objl_path_1156_cmds[]={$/;" v file: +objl_path_1156_floats demos/subwaymap.c /^static const float objl_path_1156_floats[]={$/;" v file: +objl_path_1157_cmds demos/subwaymap.c /^static const unsigned char objl_path_1157_cmds[]={$/;" v file: +objl_path_1157_floats demos/subwaymap.c /^static const float objl_path_1157_floats[]={$/;" v file: +objl_path_1158_cmds demos/subwaymap.c /^static const unsigned char objl_path_1158_cmds[]={$/;" v file: +objl_path_1158_floats demos/subwaymap.c /^static const float objl_path_1158_floats[]={$/;" v file: +objl_path_1159_cmds demos/subwaymap.c /^static const unsigned char objl_path_1159_cmds[]={$/;" v file: +objl_path_1159_floats demos/subwaymap.c /^static const float objl_path_1159_floats[]={$/;" v file: +objl_path_115_cmds demos/subwaymap.c /^static const unsigned char objl_path_115_cmds[]={$/;" v file: +objl_path_115_floats demos/subwaymap.c /^static const float objl_path_115_floats[]={$/;" v file: +objl_path_1160_cmds demos/subwaymap.c /^static const unsigned char objl_path_1160_cmds[]={$/;" v file: +objl_path_1160_floats demos/subwaymap.c /^static const float objl_path_1160_floats[]={$/;" v file: +objl_path_1161_cmds demos/subwaymap.c /^static const unsigned char objl_path_1161_cmds[]={$/;" v file: +objl_path_1161_floats demos/subwaymap.c /^static const float objl_path_1161_floats[]={$/;" v file: +objl_path_1162_cmds demos/subwaymap.c /^static const unsigned char objl_path_1162_cmds[]={$/;" v file: +objl_path_1162_floats demos/subwaymap.c /^static const float objl_path_1162_floats[]={$/;" v file: +objl_path_1163_cmds demos/subwaymap.c /^static const unsigned char objl_path_1163_cmds[]={$/;" v file: +objl_path_1163_floats demos/subwaymap.c /^static const float objl_path_1163_floats[]={$/;" v file: +objl_path_1164_cmds demos/subwaymap.c /^static const unsigned char objl_path_1164_cmds[]={$/;" v file: +objl_path_1164_floats demos/subwaymap.c /^static const float objl_path_1164_floats[]={$/;" v file: +objl_path_1165_cmds demos/subwaymap.c /^static const unsigned char objl_path_1165_cmds[]={$/;" v file: +objl_path_1165_floats demos/subwaymap.c /^static const float objl_path_1165_floats[]={$/;" v file: +objl_path_1166_cmds demos/subwaymap.c /^static const unsigned char objl_path_1166_cmds[]={$/;" v file: +objl_path_1166_floats demos/subwaymap.c /^static const float objl_path_1166_floats[]={$/;" v file: +objl_path_1167_cmds demos/subwaymap.c /^static const unsigned char objl_path_1167_cmds[]={$/;" v file: +objl_path_1167_floats demos/subwaymap.c /^static const float objl_path_1167_floats[]={$/;" v file: +objl_path_1168_cmds demos/subwaymap.c /^static const unsigned char objl_path_1168_cmds[]={$/;" v file: +objl_path_1168_floats demos/subwaymap.c /^static const float objl_path_1168_floats[]={$/;" v file: +objl_path_1169_cmds demos/subwaymap.c /^static const unsigned char objl_path_1169_cmds[]={$/;" v file: +objl_path_1169_floats demos/subwaymap.c /^static const float objl_path_1169_floats[]={$/;" v file: +objl_path_116_cmds demos/subwaymap.c /^static const unsigned char objl_path_116_cmds[]={$/;" v file: +objl_path_116_floats demos/subwaymap.c /^static const float objl_path_116_floats[]={$/;" v file: +objl_path_1170_cmds demos/subwaymap.c /^static const unsigned char objl_path_1170_cmds[]={$/;" v file: +objl_path_1170_floats demos/subwaymap.c /^static const float objl_path_1170_floats[]={$/;" v file: +objl_path_1171_cmds demos/subwaymap.c /^static const unsigned char objl_path_1171_cmds[]={$/;" v file: +objl_path_1171_floats demos/subwaymap.c /^static const float objl_path_1171_floats[]={$/;" v file: +objl_path_1172_cmds demos/subwaymap.c /^static const unsigned char objl_path_1172_cmds[]={$/;" v file: +objl_path_1172_floats demos/subwaymap.c /^static const float objl_path_1172_floats[]={$/;" v file: +objl_path_1173_cmds demos/subwaymap.c /^static const unsigned char objl_path_1173_cmds[]={$/;" v file: +objl_path_1173_floats demos/subwaymap.c /^static const float objl_path_1173_floats[]={$/;" v file: +objl_path_1174_cmds demos/subwaymap.c /^static const unsigned char objl_path_1174_cmds[]={$/;" v file: +objl_path_1174_floats demos/subwaymap.c /^static const float objl_path_1174_floats[]={$/;" v file: +objl_path_1175_cmds demos/subwaymap.c /^static const unsigned char objl_path_1175_cmds[]={$/;" v file: +objl_path_1175_floats demos/subwaymap.c /^static const float objl_path_1175_floats[]={$/;" v file: +objl_path_1176_cmds demos/subwaymap.c /^static const unsigned char objl_path_1176_cmds[]={$/;" v file: +objl_path_1176_floats demos/subwaymap.c /^static const float objl_path_1176_floats[]={$/;" v file: +objl_path_1177_cmds demos/subwaymap.c /^static const unsigned char objl_path_1177_cmds[]={$/;" v file: +objl_path_1177_floats demos/subwaymap.c /^static const float objl_path_1177_floats[]={$/;" v file: +objl_path_1178_cmds demos/subwaymap.c /^static const unsigned char objl_path_1178_cmds[]={$/;" v file: +objl_path_1178_floats demos/subwaymap.c /^static const float objl_path_1178_floats[]={$/;" v file: +objl_path_1179_cmds demos/subwaymap.c /^static const unsigned char objl_path_1179_cmds[]={$/;" v file: +objl_path_1179_floats demos/subwaymap.c /^static const float objl_path_1179_floats[]={$/;" v file: +objl_path_117_cmds demos/subwaymap.c /^static const unsigned char objl_path_117_cmds[]={$/;" v file: +objl_path_117_floats demos/subwaymap.c /^static const float objl_path_117_floats[]={$/;" v file: +objl_path_1180_cmds demos/subwaymap.c /^static const unsigned char objl_path_1180_cmds[]={$/;" v file: +objl_path_1180_floats demos/subwaymap.c /^static const float objl_path_1180_floats[]={$/;" v file: +objl_path_1181_cmds demos/subwaymap.c /^static const unsigned char objl_path_1181_cmds[]={$/;" v file: +objl_path_1181_floats demos/subwaymap.c /^static const float objl_path_1181_floats[]={$/;" v file: +objl_path_1182_cmds demos/subwaymap.c /^static const unsigned char objl_path_1182_cmds[]={$/;" v file: +objl_path_1182_floats demos/subwaymap.c /^static const float objl_path_1182_floats[]={$/;" v file: +objl_path_1183_cmds demos/subwaymap.c /^static const unsigned char objl_path_1183_cmds[]={$/;" v file: +objl_path_1183_floats demos/subwaymap.c /^static const float objl_path_1183_floats[]={$/;" v file: +objl_path_1184_cmds demos/subwaymap.c /^static const unsigned char objl_path_1184_cmds[]={$/;" v file: +objl_path_1184_floats demos/subwaymap.c /^static const float objl_path_1184_floats[]={$/;" v file: +objl_path_1185_cmds demos/subwaymap.c /^static const unsigned char objl_path_1185_cmds[]={$/;" v file: +objl_path_1185_floats demos/subwaymap.c /^static const float objl_path_1185_floats[]={$/;" v file: +objl_path_1186_cmds demos/subwaymap.c /^static const unsigned char objl_path_1186_cmds[]={$/;" v file: +objl_path_1186_floats demos/subwaymap.c /^static const float objl_path_1186_floats[]={$/;" v file: +objl_path_1187_cmds demos/subwaymap.c /^static const unsigned char objl_path_1187_cmds[]={$/;" v file: +objl_path_1187_floats demos/subwaymap.c /^static const float objl_path_1187_floats[]={$/;" v file: +objl_path_1188_cmds demos/subwaymap.c /^static const unsigned char objl_path_1188_cmds[]={$/;" v file: +objl_path_1188_floats demos/subwaymap.c /^static const float objl_path_1188_floats[]={$/;" v file: +objl_path_1189_cmds demos/subwaymap.c /^static const unsigned char objl_path_1189_cmds[]={$/;" v file: +objl_path_1189_floats demos/subwaymap.c /^static const float objl_path_1189_floats[]={$/;" v file: +objl_path_118_cmds demos/subwaymap.c /^static const unsigned char objl_path_118_cmds[]={$/;" v file: +objl_path_118_floats demos/subwaymap.c /^static const float objl_path_118_floats[]={$/;" v file: +objl_path_1190_cmds demos/subwaymap.c /^static const unsigned char objl_path_1190_cmds[]={$/;" v file: +objl_path_1190_floats demos/subwaymap.c /^static const float objl_path_1190_floats[]={$/;" v file: +objl_path_1191_cmds demos/subwaymap.c /^static const unsigned char objl_path_1191_cmds[]={$/;" v file: +objl_path_1191_floats demos/subwaymap.c /^static const float objl_path_1191_floats[]={$/;" v file: +objl_path_1192_cmds demos/subwaymap.c /^static const unsigned char objl_path_1192_cmds[]={$/;" v file: +objl_path_1192_floats demos/subwaymap.c /^static const float objl_path_1192_floats[]={$/;" v file: +objl_path_1193_cmds demos/subwaymap.c /^static const unsigned char objl_path_1193_cmds[]={$/;" v file: +objl_path_1193_floats demos/subwaymap.c /^static const float objl_path_1193_floats[]={$/;" v file: +objl_path_1194_cmds demos/subwaymap.c /^static const unsigned char objl_path_1194_cmds[]={$/;" v file: +objl_path_1194_floats demos/subwaymap.c /^static const float objl_path_1194_floats[]={$/;" v file: +objl_path_1195_cmds demos/subwaymap.c /^static const unsigned char objl_path_1195_cmds[]={$/;" v file: +objl_path_1195_floats demos/subwaymap.c /^static const float objl_path_1195_floats[]={$/;" v file: +objl_path_1196_cmds demos/subwaymap.c /^static const unsigned char objl_path_1196_cmds[]={$/;" v file: +objl_path_1196_floats demos/subwaymap.c /^static const float objl_path_1196_floats[]={$/;" v file: +objl_path_1197_cmds demos/subwaymap.c /^static const unsigned char objl_path_1197_cmds[]={$/;" v file: +objl_path_1197_floats demos/subwaymap.c /^static const float objl_path_1197_floats[]={$/;" v file: +objl_path_1198_cmds demos/subwaymap.c /^static const unsigned char objl_path_1198_cmds[]={$/;" v file: +objl_path_1198_floats demos/subwaymap.c /^static const float objl_path_1198_floats[]={$/;" v file: +objl_path_1199_cmds demos/subwaymap.c /^static const unsigned char objl_path_1199_cmds[]={$/;" v file: +objl_path_1199_floats demos/subwaymap.c /^static const float objl_path_1199_floats[]={$/;" v file: +objl_path_119_cmds demos/subwaymap.c /^static const unsigned char objl_path_119_cmds[]={$/;" v file: +objl_path_119_floats demos/subwaymap.c /^static const float objl_path_119_floats[]={$/;" v file: +objl_path_11_cmds demos/subwaymap.c /^static const unsigned char objl_path_11_cmds[]={$/;" v file: +objl_path_11_floats demos/subwaymap.c /^static const float objl_path_11_floats[]={$/;" v file: +objl_path_1200_cmds demos/subwaymap.c /^static const unsigned char objl_path_1200_cmds[]={$/;" v file: +objl_path_1200_floats demos/subwaymap.c /^static const float objl_path_1200_floats[]={$/;" v file: +objl_path_1201_cmds demos/subwaymap.c /^static const unsigned char objl_path_1201_cmds[]={$/;" v file: +objl_path_1201_floats demos/subwaymap.c /^static const float objl_path_1201_floats[]={$/;" v file: +objl_path_1202_cmds demos/subwaymap.c /^static const unsigned char objl_path_1202_cmds[]={$/;" v file: +objl_path_1202_floats demos/subwaymap.c /^static const float objl_path_1202_floats[]={$/;" v file: +objl_path_1203_cmds demos/subwaymap.c /^static const unsigned char objl_path_1203_cmds[]={$/;" v file: +objl_path_1203_floats demos/subwaymap.c /^static const float objl_path_1203_floats[]={$/;" v file: +objl_path_1204_cmds demos/subwaymap.c /^static const unsigned char objl_path_1204_cmds[]={$/;" v file: +objl_path_1204_floats demos/subwaymap.c /^static const float objl_path_1204_floats[]={$/;" v file: +objl_path_1205_cmds demos/subwaymap.c /^static const unsigned char objl_path_1205_cmds[]={$/;" v file: +objl_path_1205_floats demos/subwaymap.c /^static const float objl_path_1205_floats[]={$/;" v file: +objl_path_1206_cmds demos/subwaymap.c /^static const unsigned char objl_path_1206_cmds[]={$/;" v file: +objl_path_1206_floats demos/subwaymap.c /^static const float objl_path_1206_floats[]={$/;" v file: +objl_path_1207_cmds demos/subwaymap.c /^static const unsigned char objl_path_1207_cmds[]={$/;" v file: +objl_path_1207_floats demos/subwaymap.c /^static const float objl_path_1207_floats[]={$/;" v file: +objl_path_1208_cmds demos/subwaymap.c /^static const unsigned char objl_path_1208_cmds[]={$/;" v file: +objl_path_1208_floats demos/subwaymap.c /^static const float objl_path_1208_floats[]={$/;" v file: +objl_path_1209_cmds demos/subwaymap.c /^static const unsigned char objl_path_1209_cmds[]={$/;" v file: +objl_path_1209_floats demos/subwaymap.c /^static const float objl_path_1209_floats[]={$/;" v file: +objl_path_120_cmds demos/subwaymap.c /^static const unsigned char objl_path_120_cmds[]={$/;" v file: +objl_path_120_floats demos/subwaymap.c /^static const float objl_path_120_floats[]={$/;" v file: +objl_path_1210_cmds demos/subwaymap.c /^static const unsigned char objl_path_1210_cmds[]={$/;" v file: +objl_path_1210_floats demos/subwaymap.c /^static const float objl_path_1210_floats[]={$/;" v file: +objl_path_1211_cmds demos/subwaymap.c /^static const unsigned char objl_path_1211_cmds[]={$/;" v file: +objl_path_1211_floats demos/subwaymap.c /^static const float objl_path_1211_floats[]={$/;" v file: +objl_path_1212_cmds demos/subwaymap.c /^static const unsigned char objl_path_1212_cmds[]={$/;" v file: +objl_path_1212_floats demos/subwaymap.c /^static const float objl_path_1212_floats[]={$/;" v file: +objl_path_1213_cmds demos/subwaymap.c /^static const unsigned char objl_path_1213_cmds[]={$/;" v file: +objl_path_1213_floats demos/subwaymap.c /^static const float objl_path_1213_floats[]={$/;" v file: +objl_path_1214_cmds demos/subwaymap.c /^static const unsigned char objl_path_1214_cmds[]={$/;" v file: +objl_path_1214_floats demos/subwaymap.c /^static const float objl_path_1214_floats[]={$/;" v file: +objl_path_1215_cmds demos/subwaymap.c /^static const unsigned char objl_path_1215_cmds[]={$/;" v file: +objl_path_1215_floats demos/subwaymap.c /^static const float objl_path_1215_floats[]={$/;" v file: +objl_path_1216_cmds demos/subwaymap.c /^static const unsigned char objl_path_1216_cmds[]={$/;" v file: +objl_path_1216_floats demos/subwaymap.c /^static const float objl_path_1216_floats[]={$/;" v file: +objl_path_1217_cmds demos/subwaymap.c /^static const unsigned char objl_path_1217_cmds[]={$/;" v file: +objl_path_1217_floats demos/subwaymap.c /^static const float objl_path_1217_floats[]={$/;" v file: +objl_path_1218_cmds demos/subwaymap.c /^static const unsigned char objl_path_1218_cmds[]={$/;" v file: +objl_path_1218_floats demos/subwaymap.c /^static const float objl_path_1218_floats[]={$/;" v file: +objl_path_1219_cmds demos/subwaymap.c /^static const unsigned char objl_path_1219_cmds[]={$/;" v file: +objl_path_1219_floats demos/subwaymap.c /^static const float objl_path_1219_floats[]={$/;" v file: +objl_path_121_cmds demos/subwaymap.c /^static const unsigned char objl_path_121_cmds[]={$/;" v file: +objl_path_121_floats demos/subwaymap.c /^static const float objl_path_121_floats[]={$/;" v file: +objl_path_1220_cmds demos/subwaymap.c /^static const unsigned char objl_path_1220_cmds[]={$/;" v file: +objl_path_1220_floats demos/subwaymap.c /^static const float objl_path_1220_floats[]={$/;" v file: +objl_path_1221_cmds demos/subwaymap.c /^static const unsigned char objl_path_1221_cmds[]={$/;" v file: +objl_path_1221_floats demos/subwaymap.c /^static const float objl_path_1221_floats[]={$/;" v file: +objl_path_1222_cmds demos/subwaymap.c /^static const unsigned char objl_path_1222_cmds[]={$/;" v file: +objl_path_1222_floats demos/subwaymap.c /^static const float objl_path_1222_floats[]={$/;" v file: +objl_path_1223_cmds demos/subwaymap.c /^static const unsigned char objl_path_1223_cmds[]={$/;" v file: +objl_path_1223_floats demos/subwaymap.c /^static const float objl_path_1223_floats[]={$/;" v file: +objl_path_1224_cmds demos/subwaymap.c /^static const unsigned char objl_path_1224_cmds[]={$/;" v file: +objl_path_1224_floats demos/subwaymap.c /^static const float objl_path_1224_floats[]={$/;" v file: +objl_path_1225_cmds demos/subwaymap.c /^static const unsigned char objl_path_1225_cmds[]={$/;" v file: +objl_path_1225_floats demos/subwaymap.c /^static const float objl_path_1225_floats[]={$/;" v file: +objl_path_1226_cmds demos/subwaymap.c /^static const unsigned char objl_path_1226_cmds[]={$/;" v file: +objl_path_1226_floats demos/subwaymap.c /^static const float objl_path_1226_floats[]={$/;" v file: +objl_path_1227_cmds demos/subwaymap.c /^static const unsigned char objl_path_1227_cmds[]={$/;" v file: +objl_path_1227_floats demos/subwaymap.c /^static const float objl_path_1227_floats[]={$/;" v file: +objl_path_1228_cmds demos/subwaymap.c /^static const unsigned char objl_path_1228_cmds[]={$/;" v file: +objl_path_1228_floats demos/subwaymap.c /^static const float objl_path_1228_floats[]={$/;" v file: +objl_path_1229_cmds demos/subwaymap.c /^static const unsigned char objl_path_1229_cmds[]={$/;" v file: +objl_path_1229_floats demos/subwaymap.c /^static const float objl_path_1229_floats[]={$/;" v file: +objl_path_122_cmds demos/subwaymap.c /^static const unsigned char objl_path_122_cmds[]={$/;" v file: +objl_path_122_floats demos/subwaymap.c /^static const float objl_path_122_floats[]={$/;" v file: +objl_path_1230_cmds demos/subwaymap.c /^static const unsigned char objl_path_1230_cmds[]={$/;" v file: +objl_path_1230_floats demos/subwaymap.c /^static const float objl_path_1230_floats[]={$/;" v file: +objl_path_1231_cmds demos/subwaymap.c /^static const unsigned char objl_path_1231_cmds[]={$/;" v file: +objl_path_1231_floats demos/subwaymap.c /^static const float objl_path_1231_floats[]={$/;" v file: +objl_path_1232_cmds demos/subwaymap.c /^static const unsigned char objl_path_1232_cmds[]={$/;" v file: +objl_path_1232_floats demos/subwaymap.c /^static const float objl_path_1232_floats[]={$/;" v file: +objl_path_1233_cmds demos/subwaymap.c /^static const unsigned char objl_path_1233_cmds[]={$/;" v file: +objl_path_1233_floats demos/subwaymap.c /^static const float objl_path_1233_floats[]={$/;" v file: +objl_path_1234_cmds demos/subwaymap.c /^static const unsigned char objl_path_1234_cmds[]={$/;" v file: +objl_path_1234_floats demos/subwaymap.c /^static const float objl_path_1234_floats[]={$/;" v file: +objl_path_1235_cmds demos/subwaymap.c /^static const unsigned char objl_path_1235_cmds[]={$/;" v file: +objl_path_1235_floats demos/subwaymap.c /^static const float objl_path_1235_floats[]={$/;" v file: +objl_path_1236_cmds demos/subwaymap.c /^static const unsigned char objl_path_1236_cmds[]={$/;" v file: +objl_path_1236_floats demos/subwaymap.c /^static const float objl_path_1236_floats[]={$/;" v file: +objl_path_1237_cmds demos/subwaymap.c /^static const unsigned char objl_path_1237_cmds[]={$/;" v file: +objl_path_1237_floats demos/subwaymap.c /^static const float objl_path_1237_floats[]={$/;" v file: +objl_path_1238_cmds demos/subwaymap.c /^static const unsigned char objl_path_1238_cmds[]={$/;" v file: +objl_path_1238_floats demos/subwaymap.c /^static const float objl_path_1238_floats[]={$/;" v file: +objl_path_1239_cmds demos/subwaymap.c /^static const unsigned char objl_path_1239_cmds[]={$/;" v file: +objl_path_1239_floats demos/subwaymap.c /^static const float objl_path_1239_floats[]={$/;" v file: +objl_path_123_cmds demos/subwaymap.c /^static const unsigned char objl_path_123_cmds[]={$/;" v file: +objl_path_123_floats demos/subwaymap.c /^static const float objl_path_123_floats[]={$/;" v file: +objl_path_1240_cmds demos/subwaymap.c /^static const unsigned char objl_path_1240_cmds[]={$/;" v file: +objl_path_1240_floats demos/subwaymap.c /^static const float objl_path_1240_floats[]={$/;" v file: +objl_path_1241_cmds demos/subwaymap.c /^static const unsigned char objl_path_1241_cmds[]={$/;" v file: +objl_path_1241_floats demos/subwaymap.c /^static const float objl_path_1241_floats[]={$/;" v file: +objl_path_1242_cmds demos/subwaymap.c /^static const unsigned char objl_path_1242_cmds[]={$/;" v file: +objl_path_1242_floats demos/subwaymap.c /^static const float objl_path_1242_floats[]={$/;" v file: +objl_path_1243_cmds demos/subwaymap.c /^static const unsigned char objl_path_1243_cmds[]={$/;" v file: +objl_path_1243_floats demos/subwaymap.c /^static const float objl_path_1243_floats[]={$/;" v file: +objl_path_1244_cmds demos/subwaymap.c /^static const unsigned char objl_path_1244_cmds[]={$/;" v file: +objl_path_1244_floats demos/subwaymap.c /^static const float objl_path_1244_floats[]={$/;" v file: +objl_path_1245_cmds demos/subwaymap.c /^static const unsigned char objl_path_1245_cmds[]={$/;" v file: +objl_path_1245_floats demos/subwaymap.c /^static const float objl_path_1245_floats[]={$/;" v file: +objl_path_1246_cmds demos/subwaymap.c /^static const unsigned char objl_path_1246_cmds[]={$/;" v file: +objl_path_1246_floats demos/subwaymap.c /^static const float objl_path_1246_floats[]={$/;" v file: +objl_path_1247_cmds demos/subwaymap.c /^static const unsigned char objl_path_1247_cmds[]={$/;" v file: +objl_path_1247_floats demos/subwaymap.c /^static const float objl_path_1247_floats[]={$/;" v file: +objl_path_1248_cmds demos/subwaymap.c /^static const unsigned char objl_path_1248_cmds[]={$/;" v file: +objl_path_1248_floats demos/subwaymap.c /^static const float objl_path_1248_floats[]={$/;" v file: +objl_path_1249_cmds demos/subwaymap.c /^static const unsigned char objl_path_1249_cmds[]={$/;" v file: +objl_path_1249_floats demos/subwaymap.c /^static const float objl_path_1249_floats[]={$/;" v file: +objl_path_124_cmds demos/subwaymap.c /^static const unsigned char objl_path_124_cmds[]={$/;" v file: +objl_path_124_floats demos/subwaymap.c /^static const float objl_path_124_floats[]={$/;" v file: +objl_path_1250_cmds demos/subwaymap.c /^static const unsigned char objl_path_1250_cmds[]={$/;" v file: +objl_path_1250_floats demos/subwaymap.c /^static const float objl_path_1250_floats[]={$/;" v file: +objl_path_1251_cmds demos/subwaymap.c /^static const unsigned char objl_path_1251_cmds[]={$/;" v file: +objl_path_1251_floats demos/subwaymap.c /^static const float objl_path_1251_floats[]={$/;" v file: +objl_path_1252_cmds demos/subwaymap.c /^static const unsigned char objl_path_1252_cmds[]={$/;" v file: +objl_path_1252_floats demos/subwaymap.c /^static const float objl_path_1252_floats[]={$/;" v file: +objl_path_1253_cmds demos/subwaymap.c /^static const unsigned char objl_path_1253_cmds[]={$/;" v file: +objl_path_1253_floats demos/subwaymap.c /^static const float objl_path_1253_floats[]={$/;" v file: +objl_path_1254_cmds demos/subwaymap.c /^static const unsigned char objl_path_1254_cmds[]={$/;" v file: +objl_path_1254_floats demos/subwaymap.c /^static const float objl_path_1254_floats[]={$/;" v file: +objl_path_1255_cmds demos/subwaymap.c /^static const unsigned char objl_path_1255_cmds[]={$/;" v file: +objl_path_1255_floats demos/subwaymap.c /^static const float objl_path_1255_floats[]={$/;" v file: +objl_path_1256_cmds demos/subwaymap.c /^static const unsigned char objl_path_1256_cmds[]={$/;" v file: +objl_path_1256_floats demos/subwaymap.c /^static const float objl_path_1256_floats[]={$/;" v file: +objl_path_1257_cmds demos/subwaymap.c /^static const unsigned char objl_path_1257_cmds[]={$/;" v file: +objl_path_1257_floats demos/subwaymap.c /^static const float objl_path_1257_floats[]={$/;" v file: +objl_path_1258_cmds demos/subwaymap.c /^static const unsigned char objl_path_1258_cmds[]={$/;" v file: +objl_path_1258_floats demos/subwaymap.c /^static const float objl_path_1258_floats[]={$/;" v file: +objl_path_1259_cmds demos/subwaymap.c /^static const unsigned char objl_path_1259_cmds[]={$/;" v file: +objl_path_1259_floats demos/subwaymap.c /^static const float objl_path_1259_floats[]={$/;" v file: +objl_path_125_cmds demos/subwaymap.c /^static const unsigned char objl_path_125_cmds[]={$/;" v file: +objl_path_125_floats demos/subwaymap.c /^static const float objl_path_125_floats[]={$/;" v file: +objl_path_1260_cmds demos/subwaymap.c /^static const unsigned char objl_path_1260_cmds[]={$/;" v file: +objl_path_1260_floats demos/subwaymap.c /^static const float objl_path_1260_floats[]={$/;" v file: +objl_path_1261_cmds demos/subwaymap.c /^static const unsigned char objl_path_1261_cmds[]={$/;" v file: +objl_path_1261_floats demos/subwaymap.c /^static const float objl_path_1261_floats[]={$/;" v file: +objl_path_1262_cmds demos/subwaymap.c /^static const unsigned char objl_path_1262_cmds[]={$/;" v file: +objl_path_1262_floats demos/subwaymap.c /^static const float objl_path_1262_floats[]={$/;" v file: +objl_path_1263_cmds demos/subwaymap.c /^static const unsigned char objl_path_1263_cmds[]={$/;" v file: +objl_path_1263_floats demos/subwaymap.c /^static const float objl_path_1263_floats[]={$/;" v file: +objl_path_1264_cmds demos/subwaymap.c /^static const unsigned char objl_path_1264_cmds[]={$/;" v file: +objl_path_1264_floats demos/subwaymap.c /^static const float objl_path_1264_floats[]={$/;" v file: +objl_path_1265_cmds demos/subwaymap.c /^static const unsigned char objl_path_1265_cmds[]={$/;" v file: +objl_path_1265_floats demos/subwaymap.c /^static const float objl_path_1265_floats[]={$/;" v file: +objl_path_1266_cmds demos/subwaymap.c /^static const unsigned char objl_path_1266_cmds[]={$/;" v file: +objl_path_1266_floats demos/subwaymap.c /^static const float objl_path_1266_floats[]={$/;" v file: +objl_path_1267_cmds demos/subwaymap.c /^static const unsigned char objl_path_1267_cmds[]={$/;" v file: +objl_path_1267_floats demos/subwaymap.c /^static const float objl_path_1267_floats[]={$/;" v file: +objl_path_1268_cmds demos/subwaymap.c /^static const unsigned char objl_path_1268_cmds[]={$/;" v file: +objl_path_1268_floats demos/subwaymap.c /^static const float objl_path_1268_floats[]={$/;" v file: +objl_path_1269_cmds demos/subwaymap.c /^static const unsigned char objl_path_1269_cmds[]={$/;" v file: +objl_path_1269_floats demos/subwaymap.c /^static const float objl_path_1269_floats[]={$/;" v file: +objl_path_126_cmds demos/subwaymap.c /^static const unsigned char objl_path_126_cmds[]={$/;" v file: +objl_path_126_floats demos/subwaymap.c /^static const float objl_path_126_floats[]={$/;" v file: +objl_path_1270_cmds demos/subwaymap.c /^static const unsigned char objl_path_1270_cmds[]={$/;" v file: +objl_path_1270_floats demos/subwaymap.c /^static const float objl_path_1270_floats[]={$/;" v file: +objl_path_1271_cmds demos/subwaymap.c /^static const unsigned char objl_path_1271_cmds[]={$/;" v file: +objl_path_1271_floats demos/subwaymap.c /^static const float objl_path_1271_floats[]={$/;" v file: +objl_path_1272_cmds demos/subwaymap.c /^static const unsigned char objl_path_1272_cmds[]={$/;" v file: +objl_path_1272_floats demos/subwaymap.c /^static const float objl_path_1272_floats[]={$/;" v file: +objl_path_1273_cmds demos/subwaymap.c /^static const unsigned char objl_path_1273_cmds[]={$/;" v file: +objl_path_1273_floats demos/subwaymap.c /^static const float objl_path_1273_floats[]={$/;" v file: +objl_path_1274_cmds demos/subwaymap.c /^static const unsigned char objl_path_1274_cmds[]={$/;" v file: +objl_path_1274_floats demos/subwaymap.c /^static const float objl_path_1274_floats[]={$/;" v file: +objl_path_1275_cmds demos/subwaymap.c /^static const unsigned char objl_path_1275_cmds[]={$/;" v file: +objl_path_1275_floats demos/subwaymap.c /^static const float objl_path_1275_floats[]={$/;" v file: +objl_path_1276_cmds demos/subwaymap.c /^static const unsigned char objl_path_1276_cmds[]={$/;" v file: +objl_path_1276_floats demos/subwaymap.c /^static const float objl_path_1276_floats[]={$/;" v file: +objl_path_1277_cmds demos/subwaymap.c /^static const unsigned char objl_path_1277_cmds[]={$/;" v file: +objl_path_1277_floats demos/subwaymap.c /^static const float objl_path_1277_floats[]={$/;" v file: +objl_path_1278_cmds demos/subwaymap.c /^static const unsigned char objl_path_1278_cmds[]={$/;" v file: +objl_path_1278_floats demos/subwaymap.c /^static const float objl_path_1278_floats[]={$/;" v file: +objl_path_1279_cmds demos/subwaymap.c /^static const unsigned char objl_path_1279_cmds[]={$/;" v file: +objl_path_1279_floats demos/subwaymap.c /^static const float objl_path_1279_floats[]={$/;" v file: +objl_path_127_cmds demos/subwaymap.c /^static const unsigned char objl_path_127_cmds[]={$/;" v file: +objl_path_127_floats demos/subwaymap.c /^static const float objl_path_127_floats[]={$/;" v file: +objl_path_1280_cmds demos/subwaymap.c /^static const unsigned char objl_path_1280_cmds[]={$/;" v file: +objl_path_1280_floats demos/subwaymap.c /^static const float objl_path_1280_floats[]={$/;" v file: +objl_path_1281_cmds demos/subwaymap.c /^static const unsigned char objl_path_1281_cmds[]={$/;" v file: +objl_path_1281_floats demos/subwaymap.c /^static const float objl_path_1281_floats[]={$/;" v file: +objl_path_1282_cmds demos/subwaymap.c /^static const unsigned char objl_path_1282_cmds[]={$/;" v file: +objl_path_1282_floats demos/subwaymap.c /^static const float objl_path_1282_floats[]={$/;" v file: +objl_path_1283_cmds demos/subwaymap.c /^static const unsigned char objl_path_1283_cmds[]={$/;" v file: +objl_path_1283_floats demos/subwaymap.c /^static const float objl_path_1283_floats[]={$/;" v file: +objl_path_1284_cmds demos/subwaymap.c /^static const unsigned char objl_path_1284_cmds[]={$/;" v file: +objl_path_1284_floats demos/subwaymap.c /^static const float objl_path_1284_floats[]={$/;" v file: +objl_path_1285_cmds demos/subwaymap.c /^static const unsigned char objl_path_1285_cmds[]={$/;" v file: +objl_path_1285_floats demos/subwaymap.c /^static const float objl_path_1285_floats[]={$/;" v file: +objl_path_1286_cmds demos/subwaymap.c /^static const unsigned char objl_path_1286_cmds[]={$/;" v file: +objl_path_1286_floats demos/subwaymap.c /^static const float objl_path_1286_floats[]={$/;" v file: +objl_path_1287_cmds demos/subwaymap.c /^static const unsigned char objl_path_1287_cmds[]={$/;" v file: +objl_path_1287_floats demos/subwaymap.c /^static const float objl_path_1287_floats[]={$/;" v file: +objl_path_1288_cmds demos/subwaymap.c /^static const unsigned char objl_path_1288_cmds[]={$/;" v file: +objl_path_1288_floats demos/subwaymap.c /^static const float objl_path_1288_floats[]={$/;" v file: +objl_path_1289_cmds demos/subwaymap.c /^static const unsigned char objl_path_1289_cmds[]={$/;" v file: +objl_path_1289_floats demos/subwaymap.c /^static const float objl_path_1289_floats[]={$/;" v file: +objl_path_128_cmds demos/subwaymap.c /^static const unsigned char objl_path_128_cmds[]={$/;" v file: +objl_path_128_floats demos/subwaymap.c /^static const float objl_path_128_floats[]={$/;" v file: +objl_path_1290_cmds demos/subwaymap.c /^static const unsigned char objl_path_1290_cmds[]={$/;" v file: +objl_path_1290_floats demos/subwaymap.c /^static const float objl_path_1290_floats[]={$/;" v file: +objl_path_1291_cmds demos/subwaymap.c /^static const unsigned char objl_path_1291_cmds[]={$/;" v file: +objl_path_1291_floats demos/subwaymap.c /^static const float objl_path_1291_floats[]={$/;" v file: +objl_path_1292_cmds demos/subwaymap.c /^static const unsigned char objl_path_1292_cmds[]={$/;" v file: +objl_path_1292_floats demos/subwaymap.c /^static const float objl_path_1292_floats[]={$/;" v file: +objl_path_1293_cmds demos/subwaymap.c /^static const unsigned char objl_path_1293_cmds[]={$/;" v file: +objl_path_1293_floats demos/subwaymap.c /^static const float objl_path_1293_floats[]={$/;" v file: +objl_path_1294_cmds demos/subwaymap.c /^static const unsigned char objl_path_1294_cmds[]={$/;" v file: +objl_path_1294_floats demos/subwaymap.c /^static const float objl_path_1294_floats[]={$/;" v file: +objl_path_1295_cmds demos/subwaymap.c /^static const unsigned char objl_path_1295_cmds[]={$/;" v file: +objl_path_1295_floats demos/subwaymap.c /^static const float objl_path_1295_floats[]={$/;" v file: +objl_path_1296_cmds demos/subwaymap.c /^static const unsigned char objl_path_1296_cmds[]={$/;" v file: +objl_path_1296_floats demos/subwaymap.c /^static const float objl_path_1296_floats[]={$/;" v file: +objl_path_1297_cmds demos/subwaymap.c /^static const unsigned char objl_path_1297_cmds[]={$/;" v file: +objl_path_1297_floats demos/subwaymap.c /^static const float objl_path_1297_floats[]={$/;" v file: +objl_path_1298_cmds demos/subwaymap.c /^static const unsigned char objl_path_1298_cmds[]={$/;" v file: +objl_path_1298_floats demos/subwaymap.c /^static const float objl_path_1298_floats[]={$/;" v file: +objl_path_1299_cmds demos/subwaymap.c /^static const unsigned char objl_path_1299_cmds[]={$/;" v file: +objl_path_1299_floats demos/subwaymap.c /^static const float objl_path_1299_floats[]={$/;" v file: +objl_path_129_cmds demos/subwaymap.c /^static const unsigned char objl_path_129_cmds[]={$/;" v file: +objl_path_129_floats demos/subwaymap.c /^static const float objl_path_129_floats[]={$/;" v file: +objl_path_12_cmds demos/subwaymap.c /^static const unsigned char objl_path_12_cmds[]={$/;" v file: +objl_path_12_floats demos/subwaymap.c /^static const float objl_path_12_floats[]={$/;" v file: +objl_path_1300_cmds demos/subwaymap.c /^static const unsigned char objl_path_1300_cmds[]={$/;" v file: +objl_path_1300_floats demos/subwaymap.c /^static const float objl_path_1300_floats[]={$/;" v file: +objl_path_1301_cmds demos/subwaymap.c /^static const unsigned char objl_path_1301_cmds[]={$/;" v file: +objl_path_1301_floats demos/subwaymap.c /^static const float objl_path_1301_floats[]={$/;" v file: +objl_path_1302_cmds demos/subwaymap.c /^static const unsigned char objl_path_1302_cmds[]={$/;" v file: +objl_path_1302_floats demos/subwaymap.c /^static const float objl_path_1302_floats[]={$/;" v file: +objl_path_1303_cmds demos/subwaymap.c /^static const unsigned char objl_path_1303_cmds[]={$/;" v file: +objl_path_1303_floats demos/subwaymap.c /^static const float objl_path_1303_floats[]={$/;" v file: +objl_path_1304_cmds demos/subwaymap.c /^static const unsigned char objl_path_1304_cmds[]={$/;" v file: +objl_path_1304_floats demos/subwaymap.c /^static const float objl_path_1304_floats[]={$/;" v file: +objl_path_1305_cmds demos/subwaymap.c /^static const unsigned char objl_path_1305_cmds[]={$/;" v file: +objl_path_1305_floats demos/subwaymap.c /^static const float objl_path_1305_floats[]={$/;" v file: +objl_path_1306_cmds demos/subwaymap.c /^static const unsigned char objl_path_1306_cmds[]={$/;" v file: +objl_path_1306_floats demos/subwaymap.c /^static const float objl_path_1306_floats[]={$/;" v file: +objl_path_1307_cmds demos/subwaymap.c /^static const unsigned char objl_path_1307_cmds[]={$/;" v file: +objl_path_1307_floats demos/subwaymap.c /^static const float objl_path_1307_floats[]={$/;" v file: +objl_path_1308_cmds demos/subwaymap.c /^static const unsigned char objl_path_1308_cmds[]={$/;" v file: +objl_path_1308_floats demos/subwaymap.c /^static const float objl_path_1308_floats[]={$/;" v file: +objl_path_1309_cmds demos/subwaymap.c /^static const unsigned char objl_path_1309_cmds[]={$/;" v file: +objl_path_1309_floats demos/subwaymap.c /^static const float objl_path_1309_floats[]={$/;" v file: +objl_path_130_cmds demos/subwaymap.c /^static const unsigned char objl_path_130_cmds[]={$/;" v file: +objl_path_130_floats demos/subwaymap.c /^static const float objl_path_130_floats[]={$/;" v file: +objl_path_1310_cmds demos/subwaymap.c /^static const unsigned char objl_path_1310_cmds[]={$/;" v file: +objl_path_1310_floats demos/subwaymap.c /^static const float objl_path_1310_floats[]={$/;" v file: +objl_path_1311_cmds demos/subwaymap.c /^static const unsigned char objl_path_1311_cmds[]={$/;" v file: +objl_path_1311_floats demos/subwaymap.c /^static const float objl_path_1311_floats[]={$/;" v file: +objl_path_1312_cmds demos/subwaymap.c /^static const unsigned char objl_path_1312_cmds[]={$/;" v file: +objl_path_1312_floats demos/subwaymap.c /^static const float objl_path_1312_floats[]={$/;" v file: +objl_path_1313_cmds demos/subwaymap.c /^static const unsigned char objl_path_1313_cmds[]={$/;" v file: +objl_path_1313_floats demos/subwaymap.c /^static const float objl_path_1313_floats[]={$/;" v file: +objl_path_1314_cmds demos/subwaymap.c /^static const unsigned char objl_path_1314_cmds[]={$/;" v file: +objl_path_1314_floats demos/subwaymap.c /^static const float objl_path_1314_floats[]={$/;" v file: +objl_path_1315_cmds demos/subwaymap.c /^static const unsigned char objl_path_1315_cmds[]={$/;" v file: +objl_path_1315_floats demos/subwaymap.c /^static const float objl_path_1315_floats[]={$/;" v file: +objl_path_1316_cmds demos/subwaymap.c /^static const unsigned char objl_path_1316_cmds[]={$/;" v file: +objl_path_1316_floats demos/subwaymap.c /^static const float objl_path_1316_floats[]={$/;" v file: +objl_path_1317_cmds demos/subwaymap.c /^static const unsigned char objl_path_1317_cmds[]={$/;" v file: +objl_path_1317_floats demos/subwaymap.c /^static const float objl_path_1317_floats[]={$/;" v file: +objl_path_1318_cmds demos/subwaymap.c /^static const unsigned char objl_path_1318_cmds[]={$/;" v file: +objl_path_1318_floats demos/subwaymap.c /^static const float objl_path_1318_floats[]={$/;" v file: +objl_path_1319_cmds demos/subwaymap.c /^static const unsigned char objl_path_1319_cmds[]={$/;" v file: +objl_path_1319_floats demos/subwaymap.c /^static const float objl_path_1319_floats[]={$/;" v file: +objl_path_131_cmds demos/subwaymap.c /^static const unsigned char objl_path_131_cmds[]={$/;" v file: +objl_path_131_floats demos/subwaymap.c /^static const float objl_path_131_floats[]={$/;" v file: +objl_path_1320_cmds demos/subwaymap.c /^static const unsigned char objl_path_1320_cmds[]={$/;" v file: +objl_path_1320_floats demos/subwaymap.c /^static const float objl_path_1320_floats[]={$/;" v file: +objl_path_1321_cmds demos/subwaymap.c /^static const unsigned char objl_path_1321_cmds[]={$/;" v file: +objl_path_1321_floats demos/subwaymap.c /^static const float objl_path_1321_floats[]={$/;" v file: +objl_path_1322_cmds demos/subwaymap.c /^static const unsigned char objl_path_1322_cmds[]={$/;" v file: +objl_path_1322_floats demos/subwaymap.c /^static const float objl_path_1322_floats[]={$/;" v file: +objl_path_1323_cmds demos/subwaymap.c /^static const unsigned char objl_path_1323_cmds[]={$/;" v file: +objl_path_1323_floats demos/subwaymap.c /^static const float objl_path_1323_floats[]={$/;" v file: +objl_path_1324_cmds demos/subwaymap.c /^static const unsigned char objl_path_1324_cmds[]={$/;" v file: +objl_path_1324_floats demos/subwaymap.c /^static const float objl_path_1324_floats[]={$/;" v file: +objl_path_1325_cmds demos/subwaymap.c /^static const unsigned char objl_path_1325_cmds[]={$/;" v file: +objl_path_1325_floats demos/subwaymap.c /^static const float objl_path_1325_floats[]={$/;" v file: +objl_path_1326_cmds demos/subwaymap.c /^static const unsigned char objl_path_1326_cmds[]={$/;" v file: +objl_path_1326_floats demos/subwaymap.c /^static const float objl_path_1326_floats[]={$/;" v file: +objl_path_1327_cmds demos/subwaymap.c /^static const unsigned char objl_path_1327_cmds[]={$/;" v file: +objl_path_1327_floats demos/subwaymap.c /^static const float objl_path_1327_floats[]={$/;" v file: +objl_path_1328_cmds demos/subwaymap.c /^static const unsigned char objl_path_1328_cmds[]={$/;" v file: +objl_path_1328_floats demos/subwaymap.c /^static const float objl_path_1328_floats[]={$/;" v file: +objl_path_1329_cmds demos/subwaymap.c /^static const unsigned char objl_path_1329_cmds[]={$/;" v file: +objl_path_1329_floats demos/subwaymap.c /^static const float objl_path_1329_floats[]={$/;" v file: +objl_path_132_cmds demos/subwaymap.c /^static const unsigned char objl_path_132_cmds[]={$/;" v file: +objl_path_132_floats demos/subwaymap.c /^static const float objl_path_132_floats[]={$/;" v file: +objl_path_1330_cmds demos/subwaymap.c /^static const unsigned char objl_path_1330_cmds[]={$/;" v file: +objl_path_1330_floats demos/subwaymap.c /^static const float objl_path_1330_floats[]={$/;" v file: +objl_path_1331_cmds demos/subwaymap.c /^static const unsigned char objl_path_1331_cmds[]={$/;" v file: +objl_path_1331_floats demos/subwaymap.c /^static const float objl_path_1331_floats[]={$/;" v file: +objl_path_1332_cmds demos/subwaymap.c /^static const unsigned char objl_path_1332_cmds[]={$/;" v file: +objl_path_1332_floats demos/subwaymap.c /^static const float objl_path_1332_floats[]={$/;" v file: +objl_path_1333_cmds demos/subwaymap.c /^static const unsigned char objl_path_1333_cmds[]={$/;" v file: +objl_path_1333_floats demos/subwaymap.c /^static const float objl_path_1333_floats[]={$/;" v file: +objl_path_1334_cmds demos/subwaymap.c /^static const unsigned char objl_path_1334_cmds[]={$/;" v file: +objl_path_1334_floats demos/subwaymap.c /^static const float objl_path_1334_floats[]={$/;" v file: +objl_path_1335_cmds demos/subwaymap.c /^static const unsigned char objl_path_1335_cmds[]={$/;" v file: +objl_path_1335_floats demos/subwaymap.c /^static const float objl_path_1335_floats[]={$/;" v file: +objl_path_1336_cmds demos/subwaymap.c /^static const unsigned char objl_path_1336_cmds[]={$/;" v file: +objl_path_1336_floats demos/subwaymap.c /^static const float objl_path_1336_floats[]={$/;" v file: +objl_path_1337_cmds demos/subwaymap.c /^static const unsigned char objl_path_1337_cmds[]={$/;" v file: +objl_path_1337_floats demos/subwaymap.c /^static const float objl_path_1337_floats[]={$/;" v file: +objl_path_1338_cmds demos/subwaymap.c /^static const unsigned char objl_path_1338_cmds[]={$/;" v file: +objl_path_1338_floats demos/subwaymap.c /^static const float objl_path_1338_floats[]={$/;" v file: +objl_path_1339_cmds demos/subwaymap.c /^static const unsigned char objl_path_1339_cmds[]={$/;" v file: +objl_path_1339_floats demos/subwaymap.c /^static const float objl_path_1339_floats[]={$/;" v file: +objl_path_133_cmds demos/subwaymap.c /^static const unsigned char objl_path_133_cmds[]={$/;" v file: +objl_path_133_floats demos/subwaymap.c /^static const float objl_path_133_floats[]={$/;" v file: +objl_path_1340_cmds demos/subwaymap.c /^static const unsigned char objl_path_1340_cmds[]={$/;" v file: +objl_path_1340_floats demos/subwaymap.c /^static const float objl_path_1340_floats[]={$/;" v file: +objl_path_1341_cmds demos/subwaymap.c /^static const unsigned char objl_path_1341_cmds[]={$/;" v file: +objl_path_1341_floats demos/subwaymap.c /^static const float objl_path_1341_floats[]={$/;" v file: +objl_path_1342_cmds demos/subwaymap.c /^static const unsigned char objl_path_1342_cmds[]={$/;" v file: +objl_path_1342_floats demos/subwaymap.c /^static const float objl_path_1342_floats[]={$/;" v file: +objl_path_1343_cmds demos/subwaymap.c /^static const unsigned char objl_path_1343_cmds[]={$/;" v file: +objl_path_1343_floats demos/subwaymap.c /^static const float objl_path_1343_floats[]={$/;" v file: +objl_path_1344_cmds demos/subwaymap.c /^static const unsigned char objl_path_1344_cmds[]={$/;" v file: +objl_path_1344_floats demos/subwaymap.c /^static const float objl_path_1344_floats[]={$/;" v file: +objl_path_1345_cmds demos/subwaymap.c /^static const unsigned char objl_path_1345_cmds[]={$/;" v file: +objl_path_1345_floats demos/subwaymap.c /^static const float objl_path_1345_floats[]={$/;" v file: +objl_path_1346_cmds demos/subwaymap.c /^static const unsigned char objl_path_1346_cmds[]={$/;" v file: +objl_path_1346_floats demos/subwaymap.c /^static const float objl_path_1346_floats[]={$/;" v file: +objl_path_1347_cmds demos/subwaymap.c /^static const unsigned char objl_path_1347_cmds[]={$/;" v file: +objl_path_1347_floats demos/subwaymap.c /^static const float objl_path_1347_floats[]={$/;" v file: +objl_path_1348_cmds demos/subwaymap.c /^static const unsigned char objl_path_1348_cmds[]={$/;" v file: +objl_path_1348_floats demos/subwaymap.c /^static const float objl_path_1348_floats[]={$/;" v file: +objl_path_1349_cmds demos/subwaymap.c /^static const unsigned char objl_path_1349_cmds[]={$/;" v file: +objl_path_1349_floats demos/subwaymap.c /^static const float objl_path_1349_floats[]={$/;" v file: +objl_path_134_cmds demos/subwaymap.c /^static const unsigned char objl_path_134_cmds[]={$/;" v file: +objl_path_134_floats demos/subwaymap.c /^static const float objl_path_134_floats[]={$/;" v file: +objl_path_1350_cmds demos/subwaymap.c /^static const unsigned char objl_path_1350_cmds[]={$/;" v file: +objl_path_1350_floats demos/subwaymap.c /^static const float objl_path_1350_floats[]={$/;" v file: +objl_path_1351_cmds demos/subwaymap.c /^static const unsigned char objl_path_1351_cmds[]={$/;" v file: +objl_path_1351_floats demos/subwaymap.c /^static const float objl_path_1351_floats[]={$/;" v file: +objl_path_1352_cmds demos/subwaymap.c /^static const unsigned char objl_path_1352_cmds[]={$/;" v file: +objl_path_1352_floats demos/subwaymap.c /^static const float objl_path_1352_floats[]={$/;" v file: +objl_path_1353_cmds demos/subwaymap.c /^static const unsigned char objl_path_1353_cmds[]={$/;" v file: +objl_path_1353_floats demos/subwaymap.c /^static const float objl_path_1353_floats[]={$/;" v file: +objl_path_1354_cmds demos/subwaymap.c /^static const unsigned char objl_path_1354_cmds[]={$/;" v file: +objl_path_1354_floats demos/subwaymap.c /^static const float objl_path_1354_floats[]={$/;" v file: +objl_path_1355_cmds demos/subwaymap.c /^static const unsigned char objl_path_1355_cmds[]={$/;" v file: +objl_path_1355_floats demos/subwaymap.c /^static const float objl_path_1355_floats[]={$/;" v file: +objl_path_1356_cmds demos/subwaymap.c /^static const unsigned char objl_path_1356_cmds[]={$/;" v file: +objl_path_1356_floats demos/subwaymap.c /^static const float objl_path_1356_floats[]={$/;" v file: +objl_path_1357_cmds demos/subwaymap.c /^static const unsigned char objl_path_1357_cmds[]={$/;" v file: +objl_path_1357_floats demos/subwaymap.c /^static const float objl_path_1357_floats[]={$/;" v file: +objl_path_1358_cmds demos/subwaymap.c /^static const unsigned char objl_path_1358_cmds[]={$/;" v file: +objl_path_1358_floats demos/subwaymap.c /^static const float objl_path_1358_floats[]={$/;" v file: +objl_path_1359_cmds demos/subwaymap.c /^static const unsigned char objl_path_1359_cmds[]={$/;" v file: +objl_path_1359_floats demos/subwaymap.c /^static const float objl_path_1359_floats[]={$/;" v file: +objl_path_135_cmds demos/subwaymap.c /^static const unsigned char objl_path_135_cmds[]={$/;" v file: +objl_path_135_floats demos/subwaymap.c /^static const float objl_path_135_floats[]={$/;" v file: +objl_path_1360_cmds demos/subwaymap.c /^static const unsigned char objl_path_1360_cmds[]={$/;" v file: +objl_path_1360_floats demos/subwaymap.c /^static const float objl_path_1360_floats[]={$/;" v file: +objl_path_1361_cmds demos/subwaymap.c /^static const unsigned char objl_path_1361_cmds[]={$/;" v file: +objl_path_1361_floats demos/subwaymap.c /^static const float objl_path_1361_floats[]={$/;" v file: +objl_path_1362_cmds demos/subwaymap.c /^static const unsigned char objl_path_1362_cmds[]={$/;" v file: +objl_path_1362_floats demos/subwaymap.c /^static const float objl_path_1362_floats[]={$/;" v file: +objl_path_1363_cmds demos/subwaymap.c /^static const unsigned char objl_path_1363_cmds[]={$/;" v file: +objl_path_1363_floats demos/subwaymap.c /^static const float objl_path_1363_floats[]={$/;" v file: +objl_path_1364_cmds demos/subwaymap.c /^static const unsigned char objl_path_1364_cmds[]={$/;" v file: +objl_path_1364_floats demos/subwaymap.c /^static const float objl_path_1364_floats[]={$/;" v file: +objl_path_1365_cmds demos/subwaymap.c /^static const unsigned char objl_path_1365_cmds[]={$/;" v file: +objl_path_1365_floats demos/subwaymap.c /^static const float objl_path_1365_floats[]={$/;" v file: +objl_path_1366_cmds demos/subwaymap.c /^static const unsigned char objl_path_1366_cmds[]={$/;" v file: +objl_path_1366_floats demos/subwaymap.c /^static const float objl_path_1366_floats[]={$/;" v file: +objl_path_1367_cmds demos/subwaymap.c /^static const unsigned char objl_path_1367_cmds[]={$/;" v file: +objl_path_1367_floats demos/subwaymap.c /^static const float objl_path_1367_floats[]={$/;" v file: +objl_path_1368_cmds demos/subwaymap.c /^static const unsigned char objl_path_1368_cmds[]={$/;" v file: +objl_path_1368_floats demos/subwaymap.c /^static const float objl_path_1368_floats[]={$/;" v file: +objl_path_1369_cmds demos/subwaymap.c /^static const unsigned char objl_path_1369_cmds[]={$/;" v file: +objl_path_1369_floats demos/subwaymap.c /^static const float objl_path_1369_floats[]={$/;" v file: +objl_path_136_cmds demos/subwaymap.c /^static const unsigned char objl_path_136_cmds[]={$/;" v file: +objl_path_136_floats demos/subwaymap.c /^static const float objl_path_136_floats[]={$/;" v file: +objl_path_1370_cmds demos/subwaymap.c /^static const unsigned char objl_path_1370_cmds[]={$/;" v file: +objl_path_1370_floats demos/subwaymap.c /^static const float objl_path_1370_floats[]={$/;" v file: +objl_path_1371_cmds demos/subwaymap.c /^static const unsigned char objl_path_1371_cmds[]={$/;" v file: +objl_path_1371_floats demos/subwaymap.c /^static const float objl_path_1371_floats[]={$/;" v file: +objl_path_1372_cmds demos/subwaymap.c /^static const unsigned char objl_path_1372_cmds[]={$/;" v file: +objl_path_1372_floats demos/subwaymap.c /^static const float objl_path_1372_floats[]={$/;" v file: +objl_path_1373_cmds demos/subwaymap.c /^static const unsigned char objl_path_1373_cmds[]={$/;" v file: +objl_path_1373_floats demos/subwaymap.c /^static const float objl_path_1373_floats[]={$/;" v file: +objl_path_1374_cmds demos/subwaymap.c /^static const unsigned char objl_path_1374_cmds[]={$/;" v file: +objl_path_1374_floats demos/subwaymap.c /^static const float objl_path_1374_floats[]={$/;" v file: +objl_path_1375_cmds demos/subwaymap.c /^static const unsigned char objl_path_1375_cmds[]={$/;" v file: +objl_path_1375_floats demos/subwaymap.c /^static const float objl_path_1375_floats[]={$/;" v file: +objl_path_1376_cmds demos/subwaymap.c /^static const unsigned char objl_path_1376_cmds[]={$/;" v file: +objl_path_1376_floats demos/subwaymap.c /^static const float objl_path_1376_floats[]={$/;" v file: +objl_path_1377_cmds demos/subwaymap.c /^static const unsigned char objl_path_1377_cmds[]={$/;" v file: +objl_path_1377_floats demos/subwaymap.c /^static const float objl_path_1377_floats[]={$/;" v file: +objl_path_1378_cmds demos/subwaymap.c /^static const unsigned char objl_path_1378_cmds[]={$/;" v file: +objl_path_1378_floats demos/subwaymap.c /^static const float objl_path_1378_floats[]={$/;" v file: +objl_path_1379_cmds demos/subwaymap.c /^static const unsigned char objl_path_1379_cmds[]={$/;" v file: +objl_path_1379_floats demos/subwaymap.c /^static const float objl_path_1379_floats[]={$/;" v file: +objl_path_137_cmds demos/subwaymap.c /^static const unsigned char objl_path_137_cmds[]={$/;" v file: +objl_path_137_floats demos/subwaymap.c /^static const float objl_path_137_floats[]={$/;" v file: +objl_path_1380_cmds demos/subwaymap.c /^static const unsigned char objl_path_1380_cmds[]={$/;" v file: +objl_path_1380_floats demos/subwaymap.c /^static const float objl_path_1380_floats[]={$/;" v file: +objl_path_1381_cmds demos/subwaymap.c /^static const unsigned char objl_path_1381_cmds[]={$/;" v file: +objl_path_1381_floats demos/subwaymap.c /^static const float objl_path_1381_floats[]={$/;" v file: +objl_path_1382_cmds demos/subwaymap.c /^static const unsigned char objl_path_1382_cmds[]={$/;" v file: +objl_path_1382_floats demos/subwaymap.c /^static const float objl_path_1382_floats[]={$/;" v file: +objl_path_1383_cmds demos/subwaymap.c /^static const unsigned char objl_path_1383_cmds[]={$/;" v file: +objl_path_1383_floats demos/subwaymap.c /^static const float objl_path_1383_floats[]={$/;" v file: +objl_path_1384_cmds demos/subwaymap.c /^static const unsigned char objl_path_1384_cmds[]={$/;" v file: +objl_path_1384_floats demos/subwaymap.c /^static const float objl_path_1384_floats[]={$/;" v file: +objl_path_1385_cmds demos/subwaymap.c /^static const unsigned char objl_path_1385_cmds[]={$/;" v file: +objl_path_1385_floats demos/subwaymap.c /^static const float objl_path_1385_floats[]={$/;" v file: +objl_path_1386_cmds demos/subwaymap.c /^static const unsigned char objl_path_1386_cmds[]={$/;" v file: +objl_path_1386_floats demos/subwaymap.c /^static const float objl_path_1386_floats[]={$/;" v file: +objl_path_1387_cmds demos/subwaymap.c /^static const unsigned char objl_path_1387_cmds[]={$/;" v file: +objl_path_1387_floats demos/subwaymap.c /^static const float objl_path_1387_floats[]={$/;" v file: +objl_path_1388_cmds demos/subwaymap.c /^static const unsigned char objl_path_1388_cmds[]={$/;" v file: +objl_path_1388_floats demos/subwaymap.c /^static const float objl_path_1388_floats[]={$/;" v file: +objl_path_1389_cmds demos/subwaymap.c /^static const unsigned char objl_path_1389_cmds[]={$/;" v file: +objl_path_1389_floats demos/subwaymap.c /^static const float objl_path_1389_floats[]={$/;" v file: +objl_path_138_cmds demos/subwaymap.c /^static const unsigned char objl_path_138_cmds[]={$/;" v file: +objl_path_138_floats demos/subwaymap.c /^static const float objl_path_138_floats[]={$/;" v file: +objl_path_1390_cmds demos/subwaymap.c /^static const unsigned char objl_path_1390_cmds[]={$/;" v file: +objl_path_1390_floats demos/subwaymap.c /^static const float objl_path_1390_floats[]={$/;" v file: +objl_path_1391_cmds demos/subwaymap.c /^static const unsigned char objl_path_1391_cmds[]={$/;" v file: +objl_path_1391_floats demos/subwaymap.c /^static const float objl_path_1391_floats[]={$/;" v file: +objl_path_1392_cmds demos/subwaymap.c /^static const unsigned char objl_path_1392_cmds[]={$/;" v file: +objl_path_1392_floats demos/subwaymap.c /^static const float objl_path_1392_floats[]={$/;" v file: +objl_path_1393_cmds demos/subwaymap.c /^static const unsigned char objl_path_1393_cmds[]={$/;" v file: +objl_path_1393_floats demos/subwaymap.c /^static const float objl_path_1393_floats[]={$/;" v file: +objl_path_1394_cmds demos/subwaymap.c /^static const unsigned char objl_path_1394_cmds[]={$/;" v file: +objl_path_1394_floats demos/subwaymap.c /^static const float objl_path_1394_floats[]={$/;" v file: +objl_path_1395_cmds demos/subwaymap.c /^static const unsigned char objl_path_1395_cmds[]={$/;" v file: +objl_path_1395_floats demos/subwaymap.c /^static const float objl_path_1395_floats[]={$/;" v file: +objl_path_1396_cmds demos/subwaymap.c /^static const unsigned char objl_path_1396_cmds[]={$/;" v file: +objl_path_1396_floats demos/subwaymap.c /^static const float objl_path_1396_floats[]={$/;" v file: +objl_path_1397_cmds demos/subwaymap.c /^static const unsigned char objl_path_1397_cmds[]={$/;" v file: +objl_path_1397_floats demos/subwaymap.c /^static const float objl_path_1397_floats[]={$/;" v file: +objl_path_1398_cmds demos/subwaymap.c /^static const unsigned char objl_path_1398_cmds[]={$/;" v file: +objl_path_1398_floats demos/subwaymap.c /^static const float objl_path_1398_floats[]={$/;" v file: +objl_path_1399_cmds demos/subwaymap.c /^static const unsigned char objl_path_1399_cmds[]={$/;" v file: +objl_path_1399_floats demos/subwaymap.c /^static const float objl_path_1399_floats[]={$/;" v file: +objl_path_139_cmds demos/subwaymap.c /^static const unsigned char objl_path_139_cmds[]={$/;" v file: +objl_path_139_floats demos/subwaymap.c /^static const float objl_path_139_floats[]={$/;" v file: +objl_path_13_cmds demos/subwaymap.c /^static const unsigned char objl_path_13_cmds[]={$/;" v file: +objl_path_13_floats demos/subwaymap.c /^static const float objl_path_13_floats[]={$/;" v file: +objl_path_1400_cmds demos/subwaymap.c /^static const unsigned char objl_path_1400_cmds[]={$/;" v file: +objl_path_1400_floats demos/subwaymap.c /^static const float objl_path_1400_floats[]={$/;" v file: +objl_path_1401_cmds demos/subwaymap.c /^static const unsigned char objl_path_1401_cmds[]={$/;" v file: +objl_path_1401_floats demos/subwaymap.c /^static const float objl_path_1401_floats[]={$/;" v file: +objl_path_1402_cmds demos/subwaymap.c /^static const unsigned char objl_path_1402_cmds[]={$/;" v file: +objl_path_1402_floats demos/subwaymap.c /^static const float objl_path_1402_floats[]={$/;" v file: +objl_path_1403_cmds demos/subwaymap.c /^static const unsigned char objl_path_1403_cmds[]={$/;" v file: +objl_path_1403_floats demos/subwaymap.c /^static const float objl_path_1403_floats[]={$/;" v file: +objl_path_1404_cmds demos/subwaymap.c /^static const unsigned char objl_path_1404_cmds[]={$/;" v file: +objl_path_1404_floats demos/subwaymap.c /^static const float objl_path_1404_floats[]={$/;" v file: +objl_path_1405_cmds demos/subwaymap.c /^static const unsigned char objl_path_1405_cmds[]={$/;" v file: +objl_path_1405_floats demos/subwaymap.c /^static const float objl_path_1405_floats[]={$/;" v file: +objl_path_1406_cmds demos/subwaymap.c /^static const unsigned char objl_path_1406_cmds[]={$/;" v file: +objl_path_1406_floats demos/subwaymap.c /^static const float objl_path_1406_floats[]={$/;" v file: +objl_path_1407_cmds demos/subwaymap.c /^static const unsigned char objl_path_1407_cmds[]={$/;" v file: +objl_path_1407_floats demos/subwaymap.c /^static const float objl_path_1407_floats[]={$/;" v file: +objl_path_1408_cmds demos/subwaymap.c /^static const unsigned char objl_path_1408_cmds[]={$/;" v file: +objl_path_1408_floats demos/subwaymap.c /^static const float objl_path_1408_floats[]={$/;" v file: +objl_path_1409_cmds demos/subwaymap.c /^static const unsigned char objl_path_1409_cmds[]={$/;" v file: +objl_path_1409_floats demos/subwaymap.c /^static const float objl_path_1409_floats[]={$/;" v file: +objl_path_140_cmds demos/subwaymap.c /^static const unsigned char objl_path_140_cmds[]={$/;" v file: +objl_path_140_floats demos/subwaymap.c /^static const float objl_path_140_floats[]={$/;" v file: +objl_path_1410_cmds demos/subwaymap.c /^static const unsigned char objl_path_1410_cmds[]={$/;" v file: +objl_path_1410_floats demos/subwaymap.c /^static const float objl_path_1410_floats[]={$/;" v file: +objl_path_1411_cmds demos/subwaymap.c /^static const unsigned char objl_path_1411_cmds[]={$/;" v file: +objl_path_1411_floats demos/subwaymap.c /^static const float objl_path_1411_floats[]={$/;" v file: +objl_path_1412_cmds demos/subwaymap.c /^static const unsigned char objl_path_1412_cmds[]={$/;" v file: +objl_path_1412_floats demos/subwaymap.c /^static const float objl_path_1412_floats[]={$/;" v file: +objl_path_1413_cmds demos/subwaymap.c /^static const unsigned char objl_path_1413_cmds[]={$/;" v file: +objl_path_1413_floats demos/subwaymap.c /^static const float objl_path_1413_floats[]={$/;" v file: +objl_path_1414_cmds demos/subwaymap.c /^static const unsigned char objl_path_1414_cmds[]={$/;" v file: +objl_path_1414_floats demos/subwaymap.c /^static const float objl_path_1414_floats[]={$/;" v file: +objl_path_1415_cmds demos/subwaymap.c /^static const unsigned char objl_path_1415_cmds[]={$/;" v file: +objl_path_1415_floats demos/subwaymap.c /^static const float objl_path_1415_floats[]={$/;" v file: +objl_path_1416_cmds demos/subwaymap.c /^static const unsigned char objl_path_1416_cmds[]={$/;" v file: +objl_path_1416_floats demos/subwaymap.c /^static const float objl_path_1416_floats[]={$/;" v file: +objl_path_1417_cmds demos/subwaymap.c /^static const unsigned char objl_path_1417_cmds[]={$/;" v file: +objl_path_1417_floats demos/subwaymap.c /^static const float objl_path_1417_floats[]={$/;" v file: +objl_path_1418_cmds demos/subwaymap.c /^static const unsigned char objl_path_1418_cmds[]={$/;" v file: +objl_path_1418_floats demos/subwaymap.c /^static const float objl_path_1418_floats[]={$/;" v file: +objl_path_1419_cmds demos/subwaymap.c /^static const unsigned char objl_path_1419_cmds[]={$/;" v file: +objl_path_1419_floats demos/subwaymap.c /^static const float objl_path_1419_floats[]={$/;" v file: +objl_path_141_cmds demos/subwaymap.c /^static const unsigned char objl_path_141_cmds[]={$/;" v file: +objl_path_141_floats demos/subwaymap.c /^static const float objl_path_141_floats[]={$/;" v file: +objl_path_1420_cmds demos/subwaymap.c /^static const unsigned char objl_path_1420_cmds[]={$/;" v file: +objl_path_1420_floats demos/subwaymap.c /^static const float objl_path_1420_floats[]={$/;" v file: +objl_path_1421_cmds demos/subwaymap.c /^static const unsigned char objl_path_1421_cmds[]={$/;" v file: +objl_path_1421_floats demos/subwaymap.c /^static const float objl_path_1421_floats[]={$/;" v file: +objl_path_1422_cmds demos/subwaymap.c /^static const unsigned char objl_path_1422_cmds[]={$/;" v file: +objl_path_1422_floats demos/subwaymap.c /^static const float objl_path_1422_floats[]={$/;" v file: +objl_path_1423_cmds demos/subwaymap.c /^static const unsigned char objl_path_1423_cmds[]={$/;" v file: +objl_path_1423_floats demos/subwaymap.c /^static const float objl_path_1423_floats[]={$/;" v file: +objl_path_1424_cmds demos/subwaymap.c /^static const unsigned char objl_path_1424_cmds[]={$/;" v file: +objl_path_1424_floats demos/subwaymap.c /^static const float objl_path_1424_floats[]={$/;" v file: +objl_path_1425_cmds demos/subwaymap.c /^static const unsigned char objl_path_1425_cmds[]={$/;" v file: +objl_path_1425_floats demos/subwaymap.c /^static const float objl_path_1425_floats[]={$/;" v file: +objl_path_1426_cmds demos/subwaymap.c /^static const unsigned char objl_path_1426_cmds[]={$/;" v file: +objl_path_1426_floats demos/subwaymap.c /^static const float objl_path_1426_floats[]={$/;" v file: +objl_path_1427_cmds demos/subwaymap.c /^static const unsigned char objl_path_1427_cmds[]={$/;" v file: +objl_path_1427_floats demos/subwaymap.c /^static const float objl_path_1427_floats[]={$/;" v file: +objl_path_1428_cmds demos/subwaymap.c /^static const unsigned char objl_path_1428_cmds[]={$/;" v file: +objl_path_1428_floats demos/subwaymap.c /^static const float objl_path_1428_floats[]={$/;" v file: +objl_path_1429_cmds demos/subwaymap.c /^static const unsigned char objl_path_1429_cmds[]={$/;" v file: +objl_path_1429_floats demos/subwaymap.c /^static const float objl_path_1429_floats[]={$/;" v file: +objl_path_142_cmds demos/subwaymap.c /^static const unsigned char objl_path_142_cmds[]={$/;" v file: +objl_path_142_floats demos/subwaymap.c /^static const float objl_path_142_floats[]={$/;" v file: +objl_path_1430_cmds demos/subwaymap.c /^static const unsigned char objl_path_1430_cmds[]={$/;" v file: +objl_path_1430_floats demos/subwaymap.c /^static const float objl_path_1430_floats[]={$/;" v file: +objl_path_1431_cmds demos/subwaymap.c /^static const unsigned char objl_path_1431_cmds[]={$/;" v file: +objl_path_1431_floats demos/subwaymap.c /^static const float objl_path_1431_floats[]={$/;" v file: +objl_path_1432_cmds demos/subwaymap.c /^static const unsigned char objl_path_1432_cmds[]={$/;" v file: +objl_path_1432_floats demos/subwaymap.c /^static const float objl_path_1432_floats[]={$/;" v file: +objl_path_1433_cmds demos/subwaymap.c /^static const unsigned char objl_path_1433_cmds[]={$/;" v file: +objl_path_1433_floats demos/subwaymap.c /^static const float objl_path_1433_floats[]={$/;" v file: +objl_path_1434_cmds demos/subwaymap.c /^static const unsigned char objl_path_1434_cmds[]={$/;" v file: +objl_path_1434_floats demos/subwaymap.c /^static const float objl_path_1434_floats[]={$/;" v file: +objl_path_1435_cmds demos/subwaymap.c /^static const unsigned char objl_path_1435_cmds[]={$/;" v file: +objl_path_1435_floats demos/subwaymap.c /^static const float objl_path_1435_floats[]={$/;" v file: +objl_path_1436_cmds demos/subwaymap.c /^static const unsigned char objl_path_1436_cmds[]={$/;" v file: +objl_path_1436_floats demos/subwaymap.c /^static const float objl_path_1436_floats[]={$/;" v file: +objl_path_1437_cmds demos/subwaymap.c /^static const unsigned char objl_path_1437_cmds[]={$/;" v file: +objl_path_1437_floats demos/subwaymap.c /^static const float objl_path_1437_floats[]={$/;" v file: +objl_path_1438_cmds demos/subwaymap.c /^static const unsigned char objl_path_1438_cmds[]={$/;" v file: +objl_path_1438_floats demos/subwaymap.c /^static const float objl_path_1438_floats[]={$/;" v file: +objl_path_1439_cmds demos/subwaymap.c /^static const unsigned char objl_path_1439_cmds[]={$/;" v file: +objl_path_1439_floats demos/subwaymap.c /^static const float objl_path_1439_floats[]={$/;" v file: +objl_path_143_cmds demos/subwaymap.c /^static const unsigned char objl_path_143_cmds[]={$/;" v file: +objl_path_143_floats demos/subwaymap.c /^static const float objl_path_143_floats[]={$/;" v file: +objl_path_1440_cmds demos/subwaymap.c /^static const unsigned char objl_path_1440_cmds[]={$/;" v file: +objl_path_1440_floats demos/subwaymap.c /^static const float objl_path_1440_floats[]={$/;" v file: +objl_path_1441_cmds demos/subwaymap.c /^static const unsigned char objl_path_1441_cmds[]={$/;" v file: +objl_path_1441_floats demos/subwaymap.c /^static const float objl_path_1441_floats[]={$/;" v file: +objl_path_1442_cmds demos/subwaymap.c /^static const unsigned char objl_path_1442_cmds[]={$/;" v file: +objl_path_1442_floats demos/subwaymap.c /^static const float objl_path_1442_floats[]={$/;" v file: +objl_path_1443_cmds demos/subwaymap.c /^static const unsigned char objl_path_1443_cmds[]={$/;" v file: +objl_path_1443_floats demos/subwaymap.c /^static const float objl_path_1443_floats[]={$/;" v file: +objl_path_1444_cmds demos/subwaymap.c /^static const unsigned char objl_path_1444_cmds[]={$/;" v file: +objl_path_1444_floats demos/subwaymap.c /^static const float objl_path_1444_floats[]={$/;" v file: +objl_path_1445_cmds demos/subwaymap.c /^static const unsigned char objl_path_1445_cmds[]={$/;" v file: +objl_path_1445_floats demos/subwaymap.c /^static const float objl_path_1445_floats[]={$/;" v file: +objl_path_1446_cmds demos/subwaymap.c /^static const unsigned char objl_path_1446_cmds[]={$/;" v file: +objl_path_1446_floats demos/subwaymap.c /^static const float objl_path_1446_floats[]={$/;" v file: +objl_path_1447_cmds demos/subwaymap.c /^static const unsigned char objl_path_1447_cmds[]={$/;" v file: +objl_path_1447_floats demos/subwaymap.c /^static const float objl_path_1447_floats[]={$/;" v file: +objl_path_1448_cmds demos/subwaymap.c /^static const unsigned char objl_path_1448_cmds[]={$/;" v file: +objl_path_1448_floats demos/subwaymap.c /^static const float objl_path_1448_floats[]={$/;" v file: +objl_path_1449_cmds demos/subwaymap.c /^static const unsigned char objl_path_1449_cmds[]={$/;" v file: +objl_path_1449_floats demos/subwaymap.c /^static const float objl_path_1449_floats[]={$/;" v file: +objl_path_144_cmds demos/subwaymap.c /^static const unsigned char objl_path_144_cmds[]={$/;" v file: +objl_path_144_floats demos/subwaymap.c /^static const float objl_path_144_floats[]={$/;" v file: +objl_path_1450_cmds demos/subwaymap.c /^static const unsigned char objl_path_1450_cmds[]={$/;" v file: +objl_path_1450_floats demos/subwaymap.c /^static const float objl_path_1450_floats[]={$/;" v file: +objl_path_1451_cmds demos/subwaymap.c /^static const unsigned char objl_path_1451_cmds[]={$/;" v file: +objl_path_1451_floats demos/subwaymap.c /^static const float objl_path_1451_floats[]={$/;" v file: +objl_path_1452_cmds demos/subwaymap.c /^static const unsigned char objl_path_1452_cmds[]={$/;" v file: +objl_path_1452_floats demos/subwaymap.c /^static const float objl_path_1452_floats[]={$/;" v file: +objl_path_1453_cmds demos/subwaymap.c /^static const unsigned char objl_path_1453_cmds[]={$/;" v file: +objl_path_1453_floats demos/subwaymap.c /^static const float objl_path_1453_floats[]={$/;" v file: +objl_path_1454_cmds demos/subwaymap.c /^static const unsigned char objl_path_1454_cmds[]={$/;" v file: +objl_path_1454_floats demos/subwaymap.c /^static const float objl_path_1454_floats[]={$/;" v file: +objl_path_1455_cmds demos/subwaymap.c /^static const unsigned char objl_path_1455_cmds[]={$/;" v file: +objl_path_1455_floats demos/subwaymap.c /^static const float objl_path_1455_floats[]={$/;" v file: +objl_path_1456_cmds demos/subwaymap.c /^static const unsigned char objl_path_1456_cmds[]={$/;" v file: +objl_path_1456_floats demos/subwaymap.c /^static const float objl_path_1456_floats[]={$/;" v file: +objl_path_1457_cmds demos/subwaymap.c /^static const unsigned char objl_path_1457_cmds[]={$/;" v file: +objl_path_1457_floats demos/subwaymap.c /^static const float objl_path_1457_floats[]={$/;" v file: +objl_path_1458_cmds demos/subwaymap.c /^static const unsigned char objl_path_1458_cmds[]={$/;" v file: +objl_path_1458_floats demos/subwaymap.c /^static const float objl_path_1458_floats[]={$/;" v file: +objl_path_1459_cmds demos/subwaymap.c /^static const unsigned char objl_path_1459_cmds[]={$/;" v file: +objl_path_1459_floats demos/subwaymap.c /^static const float objl_path_1459_floats[]={$/;" v file: +objl_path_145_cmds demos/subwaymap.c /^static const unsigned char objl_path_145_cmds[]={$/;" v file: +objl_path_145_floats demos/subwaymap.c /^static const float objl_path_145_floats[]={$/;" v file: +objl_path_1460_cmds demos/subwaymap.c /^static const unsigned char objl_path_1460_cmds[]={$/;" v file: +objl_path_1460_floats demos/subwaymap.c /^static const float objl_path_1460_floats[]={$/;" v file: +objl_path_1461_cmds demos/subwaymap.c /^static const unsigned char objl_path_1461_cmds[]={$/;" v file: +objl_path_1461_floats demos/subwaymap.c /^static const float objl_path_1461_floats[]={$/;" v file: +objl_path_1462_cmds demos/subwaymap.c /^static const unsigned char objl_path_1462_cmds[]={$/;" v file: +objl_path_1462_floats demos/subwaymap.c /^static const float objl_path_1462_floats[]={$/;" v file: +objl_path_1463_cmds demos/subwaymap.c /^static const unsigned char objl_path_1463_cmds[]={$/;" v file: +objl_path_1463_floats demos/subwaymap.c /^static const float objl_path_1463_floats[]={$/;" v file: +objl_path_1464_cmds demos/subwaymap.c /^static const unsigned char objl_path_1464_cmds[]={$/;" v file: +objl_path_1464_floats demos/subwaymap.c /^static const float objl_path_1464_floats[]={$/;" v file: +objl_path_1465_cmds demos/subwaymap.c /^static const unsigned char objl_path_1465_cmds[]={$/;" v file: +objl_path_1465_floats demos/subwaymap.c /^static const float objl_path_1465_floats[]={$/;" v file: +objl_path_1466_cmds demos/subwaymap.c /^static const unsigned char objl_path_1466_cmds[]={$/;" v file: +objl_path_1466_floats demos/subwaymap.c /^static const float objl_path_1466_floats[]={$/;" v file: +objl_path_1467_cmds demos/subwaymap.c /^static const unsigned char objl_path_1467_cmds[]={$/;" v file: +objl_path_1467_floats demos/subwaymap.c /^static const float objl_path_1467_floats[]={$/;" v file: +objl_path_1468_cmds demos/subwaymap.c /^static const unsigned char objl_path_1468_cmds[]={$/;" v file: +objl_path_1468_floats demos/subwaymap.c /^static const float objl_path_1468_floats[]={$/;" v file: +objl_path_1469_cmds demos/subwaymap.c /^static const unsigned char objl_path_1469_cmds[]={$/;" v file: +objl_path_1469_floats demos/subwaymap.c /^static const float objl_path_1469_floats[]={$/;" v file: +objl_path_146_cmds demos/subwaymap.c /^static const unsigned char objl_path_146_cmds[]={$/;" v file: +objl_path_146_floats demos/subwaymap.c /^static const float objl_path_146_floats[]={$/;" v file: +objl_path_1470_cmds demos/subwaymap.c /^static const unsigned char objl_path_1470_cmds[]={$/;" v file: +objl_path_1470_floats demos/subwaymap.c /^static const float objl_path_1470_floats[]={$/;" v file: +objl_path_1471_cmds demos/subwaymap.c /^static const unsigned char objl_path_1471_cmds[]={$/;" v file: +objl_path_1471_floats demos/subwaymap.c /^static const float objl_path_1471_floats[]={$/;" v file: +objl_path_1472_cmds demos/subwaymap.c /^static const unsigned char objl_path_1472_cmds[]={$/;" v file: +objl_path_1472_floats demos/subwaymap.c /^static const float objl_path_1472_floats[]={$/;" v file: +objl_path_1473_cmds demos/subwaymap.c /^static const unsigned char objl_path_1473_cmds[]={$/;" v file: +objl_path_1473_floats demos/subwaymap.c /^static const float objl_path_1473_floats[]={$/;" v file: +objl_path_1474_cmds demos/subwaymap.c /^static const unsigned char objl_path_1474_cmds[]={$/;" v file: +objl_path_1474_floats demos/subwaymap.c /^static const float objl_path_1474_floats[]={$/;" v file: +objl_path_1475_cmds demos/subwaymap.c /^static const unsigned char objl_path_1475_cmds[]={$/;" v file: +objl_path_1475_floats demos/subwaymap.c /^static const float objl_path_1475_floats[]={$/;" v file: +objl_path_1476_cmds demos/subwaymap.c /^static const unsigned char objl_path_1476_cmds[]={$/;" v file: +objl_path_1476_floats demos/subwaymap.c /^static const float objl_path_1476_floats[]={$/;" v file: +objl_path_1477_cmds demos/subwaymap.c /^static const unsigned char objl_path_1477_cmds[]={$/;" v file: +objl_path_1477_floats demos/subwaymap.c /^static const float objl_path_1477_floats[]={$/;" v file: +objl_path_1478_cmds demos/subwaymap.c /^static const unsigned char objl_path_1478_cmds[]={$/;" v file: +objl_path_1478_floats demos/subwaymap.c /^static const float objl_path_1478_floats[]={$/;" v file: +objl_path_1479_cmds demos/subwaymap.c /^static const unsigned char objl_path_1479_cmds[]={$/;" v file: +objl_path_1479_floats demos/subwaymap.c /^static const float objl_path_1479_floats[]={$/;" v file: +objl_path_147_cmds demos/subwaymap.c /^static const unsigned char objl_path_147_cmds[]={$/;" v file: +objl_path_147_floats demos/subwaymap.c /^static const float objl_path_147_floats[]={$/;" v file: +objl_path_1480_cmds demos/subwaymap.c /^static const unsigned char objl_path_1480_cmds[]={$/;" v file: +objl_path_1480_floats demos/subwaymap.c /^static const float objl_path_1480_floats[]={$/;" v file: +objl_path_1481_cmds demos/subwaymap.c /^static const unsigned char objl_path_1481_cmds[]={$/;" v file: +objl_path_1481_floats demos/subwaymap.c /^static const float objl_path_1481_floats[]={$/;" v file: +objl_path_1482_cmds demos/subwaymap.c /^static const unsigned char objl_path_1482_cmds[]={$/;" v file: +objl_path_1482_floats demos/subwaymap.c /^static const float objl_path_1482_floats[]={$/;" v file: +objl_path_1483_cmds demos/subwaymap.c /^static const unsigned char objl_path_1483_cmds[]={$/;" v file: +objl_path_1483_floats demos/subwaymap.c /^static const float objl_path_1483_floats[]={$/;" v file: +objl_path_1484_cmds demos/subwaymap.c /^static const unsigned char objl_path_1484_cmds[]={$/;" v file: +objl_path_1484_floats demos/subwaymap.c /^static const float objl_path_1484_floats[]={$/;" v file: +objl_path_1485_cmds demos/subwaymap.c /^static const unsigned char objl_path_1485_cmds[]={$/;" v file: +objl_path_1485_floats demos/subwaymap.c /^static const float objl_path_1485_floats[]={$/;" v file: +objl_path_1486_cmds demos/subwaymap.c /^static const unsigned char objl_path_1486_cmds[]={$/;" v file: +objl_path_1486_floats demos/subwaymap.c /^static const float objl_path_1486_floats[]={$/;" v file: +objl_path_1487_cmds demos/subwaymap.c /^static const unsigned char objl_path_1487_cmds[]={$/;" v file: +objl_path_1487_floats demos/subwaymap.c /^static const float objl_path_1487_floats[]={$/;" v file: +objl_path_1488_cmds demos/subwaymap.c /^static const unsigned char objl_path_1488_cmds[]={$/;" v file: +objl_path_1488_floats demos/subwaymap.c /^static const float objl_path_1488_floats[]={$/;" v file: +objl_path_1489_cmds demos/subwaymap.c /^static const unsigned char objl_path_1489_cmds[]={$/;" v file: +objl_path_1489_floats demos/subwaymap.c /^static const float objl_path_1489_floats[]={$/;" v file: +objl_path_148_cmds demos/subwaymap.c /^static const unsigned char objl_path_148_cmds[]={$/;" v file: +objl_path_148_floats demos/subwaymap.c /^static const float objl_path_148_floats[]={$/;" v file: +objl_path_1490_cmds demos/subwaymap.c /^static const unsigned char objl_path_1490_cmds[]={$/;" v file: +objl_path_1490_floats demos/subwaymap.c /^static const float objl_path_1490_floats[]={$/;" v file: +objl_path_1491_cmds demos/subwaymap.c /^static const unsigned char objl_path_1491_cmds[]={$/;" v file: +objl_path_1491_floats demos/subwaymap.c /^static const float objl_path_1491_floats[]={$/;" v file: +objl_path_1492_cmds demos/subwaymap.c /^static const unsigned char objl_path_1492_cmds[]={$/;" v file: +objl_path_1492_floats demos/subwaymap.c /^static const float objl_path_1492_floats[]={$/;" v file: +objl_path_1493_cmds demos/subwaymap.c /^static const unsigned char objl_path_1493_cmds[]={$/;" v file: +objl_path_1493_floats demos/subwaymap.c /^static const float objl_path_1493_floats[]={$/;" v file: +objl_path_1494_cmds demos/subwaymap.c /^static const unsigned char objl_path_1494_cmds[]={$/;" v file: +objl_path_1494_floats demos/subwaymap.c /^static const float objl_path_1494_floats[]={$/;" v file: +objl_path_1495_cmds demos/subwaymap.c /^static const unsigned char objl_path_1495_cmds[]={$/;" v file: +objl_path_1495_floats demos/subwaymap.c /^static const float objl_path_1495_floats[]={$/;" v file: +objl_path_1496_cmds demos/subwaymap.c /^static const unsigned char objl_path_1496_cmds[]={$/;" v file: +objl_path_1496_floats demos/subwaymap.c /^static const float objl_path_1496_floats[]={$/;" v file: +objl_path_1497_cmds demos/subwaymap.c /^static const unsigned char objl_path_1497_cmds[]={$/;" v file: +objl_path_1497_floats demos/subwaymap.c /^static const float objl_path_1497_floats[]={$/;" v file: +objl_path_1498_cmds demos/subwaymap.c /^static const unsigned char objl_path_1498_cmds[]={$/;" v file: +objl_path_1498_floats demos/subwaymap.c /^static const float objl_path_1498_floats[]={$/;" v file: +objl_path_1499_cmds demos/subwaymap.c /^static const unsigned char objl_path_1499_cmds[]={$/;" v file: +objl_path_1499_floats demos/subwaymap.c /^static const float objl_path_1499_floats[]={$/;" v file: +objl_path_149_cmds demos/subwaymap.c /^static const unsigned char objl_path_149_cmds[]={$/;" v file: +objl_path_149_floats demos/subwaymap.c /^static const float objl_path_149_floats[]={$/;" v file: +objl_path_14_cmds demos/subwaymap.c /^static const unsigned char objl_path_14_cmds[]={$/;" v file: +objl_path_14_floats demos/subwaymap.c /^static const float objl_path_14_floats[]={$/;" v file: +objl_path_1500_cmds demos/subwaymap.c /^static const unsigned char objl_path_1500_cmds[]={$/;" v file: +objl_path_1500_floats demos/subwaymap.c /^static const float objl_path_1500_floats[]={$/;" v file: +objl_path_1501_cmds demos/subwaymap.c /^static const unsigned char objl_path_1501_cmds[]={$/;" v file: +objl_path_1501_floats demos/subwaymap.c /^static const float objl_path_1501_floats[]={$/;" v file: +objl_path_1502_cmds demos/subwaymap.c /^static const unsigned char objl_path_1502_cmds[]={$/;" v file: +objl_path_1502_floats demos/subwaymap.c /^static const float objl_path_1502_floats[]={$/;" v file: +objl_path_1503_cmds demos/subwaymap.c /^static const unsigned char objl_path_1503_cmds[]={$/;" v file: +objl_path_1503_floats demos/subwaymap.c /^static const float objl_path_1503_floats[]={$/;" v file: +objl_path_1504_cmds demos/subwaymap.c /^static const unsigned char objl_path_1504_cmds[]={$/;" v file: +objl_path_1504_floats demos/subwaymap.c /^static const float objl_path_1504_floats[]={$/;" v file: +objl_path_1505_cmds demos/subwaymap.c /^static const unsigned char objl_path_1505_cmds[]={$/;" v file: +objl_path_1505_floats demos/subwaymap.c /^static const float objl_path_1505_floats[]={$/;" v file: +objl_path_1506_cmds demos/subwaymap.c /^static const unsigned char objl_path_1506_cmds[]={$/;" v file: +objl_path_1506_floats demos/subwaymap.c /^static const float objl_path_1506_floats[]={$/;" v file: +objl_path_1507_cmds demos/subwaymap.c /^static const unsigned char objl_path_1507_cmds[]={$/;" v file: +objl_path_1507_floats demos/subwaymap.c /^static const float objl_path_1507_floats[]={$/;" v file: +objl_path_1508_cmds demos/subwaymap.c /^static const unsigned char objl_path_1508_cmds[]={$/;" v file: +objl_path_1508_floats demos/subwaymap.c /^static const float objl_path_1508_floats[]={$/;" v file: +objl_path_1509_cmds demos/subwaymap.c /^static const unsigned char objl_path_1509_cmds[]={$/;" v file: +objl_path_1509_floats demos/subwaymap.c /^static const float objl_path_1509_floats[]={$/;" v file: +objl_path_150_cmds demos/subwaymap.c /^static const unsigned char objl_path_150_cmds[]={$/;" v file: +objl_path_150_floats demos/subwaymap.c /^static const float objl_path_150_floats[]={$/;" v file: +objl_path_1510_cmds demos/subwaymap.c /^static const unsigned char objl_path_1510_cmds[]={$/;" v file: +objl_path_1510_floats demos/subwaymap.c /^static const float objl_path_1510_floats[]={$/;" v file: +objl_path_1511_cmds demos/subwaymap.c /^static const unsigned char objl_path_1511_cmds[]={$/;" v file: +objl_path_1511_floats demos/subwaymap.c /^static const float objl_path_1511_floats[]={$/;" v file: +objl_path_1512_cmds demos/subwaymap.c /^static const unsigned char objl_path_1512_cmds[]={$/;" v file: +objl_path_1512_floats demos/subwaymap.c /^static const float objl_path_1512_floats[]={$/;" v file: +objl_path_1513_cmds demos/subwaymap.c /^static const unsigned char objl_path_1513_cmds[]={$/;" v file: +objl_path_1513_floats demos/subwaymap.c /^static const float objl_path_1513_floats[]={$/;" v file: +objl_path_1514_cmds demos/subwaymap.c /^static const unsigned char objl_path_1514_cmds[]={$/;" v file: +objl_path_1514_floats demos/subwaymap.c /^static const float objl_path_1514_floats[]={$/;" v file: +objl_path_1515_cmds demos/subwaymap.c /^static const unsigned char objl_path_1515_cmds[]={$/;" v file: +objl_path_1515_floats demos/subwaymap.c /^static const float objl_path_1515_floats[]={$/;" v file: +objl_path_1516_cmds demos/subwaymap.c /^static const unsigned char objl_path_1516_cmds[]={$/;" v file: +objl_path_1516_floats demos/subwaymap.c /^static const float objl_path_1516_floats[]={$/;" v file: +objl_path_1517_cmds demos/subwaymap.c /^static const unsigned char objl_path_1517_cmds[]={$/;" v file: +objl_path_1517_floats demos/subwaymap.c /^static const float objl_path_1517_floats[]={$/;" v file: +objl_path_1518_cmds demos/subwaymap.c /^static const unsigned char objl_path_1518_cmds[]={$/;" v file: +objl_path_1518_floats demos/subwaymap.c /^static const float objl_path_1518_floats[]={$/;" v file: +objl_path_1519_cmds demos/subwaymap.c /^static const unsigned char objl_path_1519_cmds[]={$/;" v file: +objl_path_1519_floats demos/subwaymap.c /^static const float objl_path_1519_floats[]={$/;" v file: +objl_path_151_cmds demos/subwaymap.c /^static const unsigned char objl_path_151_cmds[]={$/;" v file: +objl_path_151_floats demos/subwaymap.c /^static const float objl_path_151_floats[]={$/;" v file: +objl_path_1520_cmds demos/subwaymap.c /^static const unsigned char objl_path_1520_cmds[]={$/;" v file: +objl_path_1520_floats demos/subwaymap.c /^static const float objl_path_1520_floats[]={$/;" v file: +objl_path_1521_cmds demos/subwaymap.c /^static const unsigned char objl_path_1521_cmds[]={$/;" v file: +objl_path_1521_floats demos/subwaymap.c /^static const float objl_path_1521_floats[]={$/;" v file: +objl_path_1522_cmds demos/subwaymap.c /^static const unsigned char objl_path_1522_cmds[]={$/;" v file: +objl_path_1522_floats demos/subwaymap.c /^static const float objl_path_1522_floats[]={$/;" v file: +objl_path_1523_cmds demos/subwaymap.c /^static const unsigned char objl_path_1523_cmds[]={$/;" v file: +objl_path_1523_floats demos/subwaymap.c /^static const float objl_path_1523_floats[]={$/;" v file: +objl_path_1524_cmds demos/subwaymap.c /^static const unsigned char objl_path_1524_cmds[]={$/;" v file: +objl_path_1524_floats demos/subwaymap.c /^static const float objl_path_1524_floats[]={$/;" v file: +objl_path_1525_cmds demos/subwaymap.c /^static const unsigned char objl_path_1525_cmds[]={$/;" v file: +objl_path_1525_floats demos/subwaymap.c /^static const float objl_path_1525_floats[]={$/;" v file: +objl_path_1526_cmds demos/subwaymap.c /^static const unsigned char objl_path_1526_cmds[]={$/;" v file: +objl_path_1526_floats demos/subwaymap.c /^static const float objl_path_1526_floats[]={$/;" v file: +objl_path_1527_cmds demos/subwaymap.c /^static const unsigned char objl_path_1527_cmds[]={$/;" v file: +objl_path_1527_floats demos/subwaymap.c /^static const float objl_path_1527_floats[]={$/;" v file: +objl_path_1528_cmds demos/subwaymap.c /^static const unsigned char objl_path_1528_cmds[]={$/;" v file: +objl_path_1528_floats demos/subwaymap.c /^static const float objl_path_1528_floats[]={$/;" v file: +objl_path_1529_cmds demos/subwaymap.c /^static const unsigned char objl_path_1529_cmds[]={$/;" v file: +objl_path_1529_floats demos/subwaymap.c /^static const float objl_path_1529_floats[]={$/;" v file: +objl_path_152_cmds demos/subwaymap.c /^static const unsigned char objl_path_152_cmds[]={$/;" v file: +objl_path_152_floats demos/subwaymap.c /^static const float objl_path_152_floats[]={$/;" v file: +objl_path_1530_cmds demos/subwaymap.c /^static const unsigned char objl_path_1530_cmds[]={$/;" v file: +objl_path_1530_floats demos/subwaymap.c /^static const float objl_path_1530_floats[]={$/;" v file: +objl_path_1531_cmds demos/subwaymap.c /^static const unsigned char objl_path_1531_cmds[]={$/;" v file: +objl_path_1531_floats demos/subwaymap.c /^static const float objl_path_1531_floats[]={$/;" v file: +objl_path_1532_cmds demos/subwaymap.c /^static const unsigned char objl_path_1532_cmds[]={$/;" v file: +objl_path_1532_floats demos/subwaymap.c /^static const float objl_path_1532_floats[]={$/;" v file: +objl_path_1533_cmds demos/subwaymap.c /^static const unsigned char objl_path_1533_cmds[]={$/;" v file: +objl_path_1533_floats demos/subwaymap.c /^static const float objl_path_1533_floats[]={$/;" v file: +objl_path_1534_cmds demos/subwaymap.c /^static const unsigned char objl_path_1534_cmds[]={$/;" v file: +objl_path_1534_floats demos/subwaymap.c /^static const float objl_path_1534_floats[]={$/;" v file: +objl_path_1535_cmds demos/subwaymap.c /^static const unsigned char objl_path_1535_cmds[]={$/;" v file: +objl_path_1535_floats demos/subwaymap.c /^static const float objl_path_1535_floats[]={$/;" v file: +objl_path_1536_cmds demos/subwaymap.c /^static const unsigned char objl_path_1536_cmds[]={$/;" v file: +objl_path_1536_floats demos/subwaymap.c /^static const float objl_path_1536_floats[]={$/;" v file: +objl_path_1537_cmds demos/subwaymap.c /^static const unsigned char objl_path_1537_cmds[]={$/;" v file: +objl_path_1537_floats demos/subwaymap.c /^static const float objl_path_1537_floats[]={$/;" v file: +objl_path_1538_cmds demos/subwaymap.c /^static const unsigned char objl_path_1538_cmds[]={$/;" v file: +objl_path_1538_floats demos/subwaymap.c /^static const float objl_path_1538_floats[]={$/;" v file: +objl_path_1539_cmds demos/subwaymap.c /^static const unsigned char objl_path_1539_cmds[]={$/;" v file: +objl_path_1539_floats demos/subwaymap.c /^static const float objl_path_1539_floats[]={$/;" v file: +objl_path_153_cmds demos/subwaymap.c /^static const unsigned char objl_path_153_cmds[]={$/;" v file: +objl_path_153_floats demos/subwaymap.c /^static const float objl_path_153_floats[]={$/;" v file: +objl_path_1540_cmds demos/subwaymap.c /^static const unsigned char objl_path_1540_cmds[]={$/;" v file: +objl_path_1540_floats demos/subwaymap.c /^static const float objl_path_1540_floats[]={$/;" v file: +objl_path_1541_cmds demos/subwaymap.c /^static const unsigned char objl_path_1541_cmds[]={$/;" v file: +objl_path_1541_floats demos/subwaymap.c /^static const float objl_path_1541_floats[]={$/;" v file: +objl_path_1542_cmds demos/subwaymap.c /^static const unsigned char objl_path_1542_cmds[]={$/;" v file: +objl_path_1542_floats demos/subwaymap.c /^static const float objl_path_1542_floats[]={$/;" v file: +objl_path_1543_cmds demos/subwaymap.c /^static const unsigned char objl_path_1543_cmds[]={$/;" v file: +objl_path_1543_floats demos/subwaymap.c /^static const float objl_path_1543_floats[]={$/;" v file: +objl_path_1544_cmds demos/subwaymap.c /^static const unsigned char objl_path_1544_cmds[]={$/;" v file: +objl_path_1544_floats demos/subwaymap.c /^static const float objl_path_1544_floats[]={$/;" v file: +objl_path_1545_cmds demos/subwaymap.c /^static const unsigned char objl_path_1545_cmds[]={$/;" v file: +objl_path_1545_floats demos/subwaymap.c /^static const float objl_path_1545_floats[]={$/;" v file: +objl_path_1546_cmds demos/subwaymap.c /^static const unsigned char objl_path_1546_cmds[]={$/;" v file: +objl_path_1546_floats demos/subwaymap.c /^static const float objl_path_1546_floats[]={$/;" v file: +objl_path_1547_cmds demos/subwaymap.c /^static const unsigned char objl_path_1547_cmds[]={$/;" v file: +objl_path_1547_floats demos/subwaymap.c /^static const float objl_path_1547_floats[]={$/;" v file: +objl_path_1548_cmds demos/subwaymap.c /^static const unsigned char objl_path_1548_cmds[]={$/;" v file: +objl_path_1548_floats demos/subwaymap.c /^static const float objl_path_1548_floats[]={$/;" v file: +objl_path_1549_cmds demos/subwaymap.c /^static const unsigned char objl_path_1549_cmds[]={$/;" v file: +objl_path_1549_floats demos/subwaymap.c /^static const float objl_path_1549_floats[]={$/;" v file: +objl_path_154_cmds demos/subwaymap.c /^static const unsigned char objl_path_154_cmds[]={$/;" v file: +objl_path_154_floats demos/subwaymap.c /^static const float objl_path_154_floats[]={$/;" v file: +objl_path_1550_cmds demos/subwaymap.c /^static const unsigned char objl_path_1550_cmds[]={$/;" v file: +objl_path_1550_floats demos/subwaymap.c /^static const float objl_path_1550_floats[]={$/;" v file: +objl_path_1551_cmds demos/subwaymap.c /^static const unsigned char objl_path_1551_cmds[]={$/;" v file: +objl_path_1551_floats demos/subwaymap.c /^static const float objl_path_1551_floats[]={$/;" v file: +objl_path_1552_cmds demos/subwaymap.c /^static const unsigned char objl_path_1552_cmds[]={$/;" v file: +objl_path_1552_floats demos/subwaymap.c /^static const float objl_path_1552_floats[]={$/;" v file: +objl_path_1553_cmds demos/subwaymap.c /^static const unsigned char objl_path_1553_cmds[]={$/;" v file: +objl_path_1553_floats demos/subwaymap.c /^static const float objl_path_1553_floats[]={$/;" v file: +objl_path_1554_cmds demos/subwaymap.c /^static const unsigned char objl_path_1554_cmds[]={$/;" v file: +objl_path_1554_floats demos/subwaymap.c /^static const float objl_path_1554_floats[]={$/;" v file: +objl_path_1555_cmds demos/subwaymap.c /^static const unsigned char objl_path_1555_cmds[]={$/;" v file: +objl_path_1555_floats demos/subwaymap.c /^static const float objl_path_1555_floats[]={$/;" v file: +objl_path_1556_cmds demos/subwaymap.c /^static const unsigned char objl_path_1556_cmds[]={$/;" v file: +objl_path_1556_floats demos/subwaymap.c /^static const float objl_path_1556_floats[]={$/;" v file: +objl_path_1557_cmds demos/subwaymap.c /^static const unsigned char objl_path_1557_cmds[]={$/;" v file: +objl_path_1557_floats demos/subwaymap.c /^static const float objl_path_1557_floats[]={$/;" v file: +objl_path_1558_cmds demos/subwaymap.c /^static const unsigned char objl_path_1558_cmds[]={$/;" v file: +objl_path_1558_floats demos/subwaymap.c /^static const float objl_path_1558_floats[]={$/;" v file: +objl_path_1559_cmds demos/subwaymap.c /^static const unsigned char objl_path_1559_cmds[]={$/;" v file: +objl_path_1559_floats demos/subwaymap.c /^static const float objl_path_1559_floats[]={$/;" v file: +objl_path_155_cmds demos/subwaymap.c /^static const unsigned char objl_path_155_cmds[]={$/;" v file: +objl_path_155_floats demos/subwaymap.c /^static const float objl_path_155_floats[]={$/;" v file: +objl_path_1560_cmds demos/subwaymap.c /^static const unsigned char objl_path_1560_cmds[]={$/;" v file: +objl_path_1560_floats demos/subwaymap.c /^static const float objl_path_1560_floats[]={$/;" v file: +objl_path_1561_cmds demos/subwaymap.c /^static const unsigned char objl_path_1561_cmds[]={$/;" v file: +objl_path_1561_floats demos/subwaymap.c /^static const float objl_path_1561_floats[]={$/;" v file: +objl_path_1562_cmds demos/subwaymap.c /^static const unsigned char objl_path_1562_cmds[]={$/;" v file: +objl_path_1562_floats demos/subwaymap.c /^static const float objl_path_1562_floats[]={$/;" v file: +objl_path_1563_cmds demos/subwaymap.c /^static const unsigned char objl_path_1563_cmds[]={$/;" v file: +objl_path_1563_floats demos/subwaymap.c /^static const float objl_path_1563_floats[]={$/;" v file: +objl_path_1564_cmds demos/subwaymap.c /^static const unsigned char objl_path_1564_cmds[]={$/;" v file: +objl_path_1564_floats demos/subwaymap.c /^static const float objl_path_1564_floats[]={$/;" v file: +objl_path_1565_cmds demos/subwaymap.c /^static const unsigned char objl_path_1565_cmds[]={$/;" v file: +objl_path_1565_floats demos/subwaymap.c /^static const float objl_path_1565_floats[]={$/;" v file: +objl_path_1566_cmds demos/subwaymap.c /^static const unsigned char objl_path_1566_cmds[]={$/;" v file: +objl_path_1566_floats demos/subwaymap.c /^static const float objl_path_1566_floats[]={$/;" v file: +objl_path_1567_cmds demos/subwaymap.c /^static const unsigned char objl_path_1567_cmds[]={$/;" v file: +objl_path_1567_floats demos/subwaymap.c /^static const float objl_path_1567_floats[]={$/;" v file: +objl_path_1568_cmds demos/subwaymap.c /^static const unsigned char objl_path_1568_cmds[]={$/;" v file: +objl_path_1568_floats demos/subwaymap.c /^static const float objl_path_1568_floats[]={$/;" v file: +objl_path_1569_cmds demos/subwaymap.c /^static const unsigned char objl_path_1569_cmds[]={$/;" v file: +objl_path_1569_floats demos/subwaymap.c /^static const float objl_path_1569_floats[]={$/;" v file: +objl_path_156_cmds demos/subwaymap.c /^static const unsigned char objl_path_156_cmds[]={$/;" v file: +objl_path_156_floats demos/subwaymap.c /^static const float objl_path_156_floats[]={$/;" v file: +objl_path_1570_cmds demos/subwaymap.c /^static const unsigned char objl_path_1570_cmds[]={$/;" v file: +objl_path_1570_floats demos/subwaymap.c /^static const float objl_path_1570_floats[]={$/;" v file: +objl_path_1571_cmds demos/subwaymap.c /^static const unsigned char objl_path_1571_cmds[]={$/;" v file: +objl_path_1571_floats demos/subwaymap.c /^static const float objl_path_1571_floats[]={$/;" v file: +objl_path_1572_cmds demos/subwaymap.c /^static const unsigned char objl_path_1572_cmds[]={$/;" v file: +objl_path_1572_floats demos/subwaymap.c /^static const float objl_path_1572_floats[]={$/;" v file: +objl_path_1573_cmds demos/subwaymap.c /^static const unsigned char objl_path_1573_cmds[]={$/;" v file: +objl_path_1573_floats demos/subwaymap.c /^static const float objl_path_1573_floats[]={$/;" v file: +objl_path_1574_cmds demos/subwaymap.c /^static const unsigned char objl_path_1574_cmds[]={$/;" v file: +objl_path_1574_floats demos/subwaymap.c /^static const float objl_path_1574_floats[]={$/;" v file: +objl_path_1575_cmds demos/subwaymap.c /^static const unsigned char objl_path_1575_cmds[]={$/;" v file: +objl_path_1575_floats demos/subwaymap.c /^static const float objl_path_1575_floats[]={$/;" v file: +objl_path_1576_cmds demos/subwaymap.c /^static const unsigned char objl_path_1576_cmds[]={$/;" v file: +objl_path_1576_floats demos/subwaymap.c /^static const float objl_path_1576_floats[]={$/;" v file: +objl_path_1577_cmds demos/subwaymap.c /^static const unsigned char objl_path_1577_cmds[]={$/;" v file: +objl_path_1577_floats demos/subwaymap.c /^static const float objl_path_1577_floats[]={$/;" v file: +objl_path_1578_cmds demos/subwaymap.c /^static const unsigned char objl_path_1578_cmds[]={$/;" v file: +objl_path_1578_floats demos/subwaymap.c /^static const float objl_path_1578_floats[]={$/;" v file: +objl_path_1579_cmds demos/subwaymap.c /^static const unsigned char objl_path_1579_cmds[]={$/;" v file: +objl_path_1579_floats demos/subwaymap.c /^static const float objl_path_1579_floats[]={$/;" v file: +objl_path_157_cmds demos/subwaymap.c /^static const unsigned char objl_path_157_cmds[]={$/;" v file: +objl_path_157_floats demos/subwaymap.c /^static const float objl_path_157_floats[]={$/;" v file: +objl_path_1580_cmds demos/subwaymap.c /^static const unsigned char objl_path_1580_cmds[]={$/;" v file: +objl_path_1580_floats demos/subwaymap.c /^static const float objl_path_1580_floats[]={$/;" v file: +objl_path_1581_cmds demos/subwaymap.c /^static const unsigned char objl_path_1581_cmds[]={$/;" v file: +objl_path_1581_floats demos/subwaymap.c /^static const float objl_path_1581_floats[]={$/;" v file: +objl_path_1582_cmds demos/subwaymap.c /^static const unsigned char objl_path_1582_cmds[]={$/;" v file: +objl_path_1582_floats demos/subwaymap.c /^static const float objl_path_1582_floats[]={$/;" v file: +objl_path_1583_cmds demos/subwaymap.c /^static const unsigned char objl_path_1583_cmds[]={$/;" v file: +objl_path_1583_floats demos/subwaymap.c /^static const float objl_path_1583_floats[]={$/;" v file: +objl_path_1584_cmds demos/subwaymap.c /^static const unsigned char objl_path_1584_cmds[]={$/;" v file: +objl_path_1584_floats demos/subwaymap.c /^static const float objl_path_1584_floats[]={$/;" v file: +objl_path_1585_cmds demos/subwaymap.c /^static const unsigned char objl_path_1585_cmds[]={$/;" v file: +objl_path_1585_floats demos/subwaymap.c /^static const float objl_path_1585_floats[]={$/;" v file: +objl_path_1586_cmds demos/subwaymap.c /^static const unsigned char objl_path_1586_cmds[]={$/;" v file: +objl_path_1586_floats demos/subwaymap.c /^static const float objl_path_1586_floats[]={$/;" v file: +objl_path_1587_cmds demos/subwaymap.c /^static const unsigned char objl_path_1587_cmds[]={$/;" v file: +objl_path_1587_floats demos/subwaymap.c /^static const float objl_path_1587_floats[]={$/;" v file: +objl_path_1588_cmds demos/subwaymap.c /^static const unsigned char objl_path_1588_cmds[]={$/;" v file: +objl_path_1588_floats demos/subwaymap.c /^static const float objl_path_1588_floats[]={$/;" v file: +objl_path_1589_cmds demos/subwaymap.c /^static const unsigned char objl_path_1589_cmds[]={$/;" v file: +objl_path_1589_floats demos/subwaymap.c /^static const float objl_path_1589_floats[]={$/;" v file: +objl_path_158_cmds demos/subwaymap.c /^static const unsigned char objl_path_158_cmds[]={$/;" v file: +objl_path_158_floats demos/subwaymap.c /^static const float objl_path_158_floats[]={$/;" v file: +objl_path_1590_cmds demos/subwaymap.c /^static const unsigned char objl_path_1590_cmds[]={$/;" v file: +objl_path_1590_floats demos/subwaymap.c /^static const float objl_path_1590_floats[]={$/;" v file: +objl_path_1591_cmds demos/subwaymap.c /^static const unsigned char objl_path_1591_cmds[]={$/;" v file: +objl_path_1591_floats demos/subwaymap.c /^static const float objl_path_1591_floats[]={$/;" v file: +objl_path_1592_cmds demos/subwaymap.c /^static const unsigned char objl_path_1592_cmds[]={$/;" v file: +objl_path_1592_floats demos/subwaymap.c /^static const float objl_path_1592_floats[]={$/;" v file: +objl_path_1593_cmds demos/subwaymap.c /^static const unsigned char objl_path_1593_cmds[]={$/;" v file: +objl_path_1593_floats demos/subwaymap.c /^static const float objl_path_1593_floats[]={$/;" v file: +objl_path_1594_cmds demos/subwaymap.c /^static const unsigned char objl_path_1594_cmds[]={$/;" v file: +objl_path_1594_floats demos/subwaymap.c /^static const float objl_path_1594_floats[]={$/;" v file: +objl_path_1595_cmds demos/subwaymap.c /^static const unsigned char objl_path_1595_cmds[]={$/;" v file: +objl_path_1595_floats demos/subwaymap.c /^static const float objl_path_1595_floats[]={$/;" v file: +objl_path_1596_cmds demos/subwaymap.c /^static const unsigned char objl_path_1596_cmds[]={$/;" v file: +objl_path_1596_floats demos/subwaymap.c /^static const float objl_path_1596_floats[]={$/;" v file: +objl_path_1597_cmds demos/subwaymap.c /^static const unsigned char objl_path_1597_cmds[]={$/;" v file: +objl_path_1597_floats demos/subwaymap.c /^static const float objl_path_1597_floats[]={$/;" v file: +objl_path_1598_cmds demos/subwaymap.c /^static const unsigned char objl_path_1598_cmds[]={$/;" v file: +objl_path_1598_floats demos/subwaymap.c /^static const float objl_path_1598_floats[]={$/;" v file: +objl_path_1599_cmds demos/subwaymap.c /^static const unsigned char objl_path_1599_cmds[]={$/;" v file: +objl_path_1599_floats demos/subwaymap.c /^static const float objl_path_1599_floats[]={$/;" v file: +objl_path_159_cmds demos/subwaymap.c /^static const unsigned char objl_path_159_cmds[]={$/;" v file: +objl_path_159_floats demos/subwaymap.c /^static const float objl_path_159_floats[]={$/;" v file: +objl_path_15_cmds demos/subwaymap.c /^static const unsigned char objl_path_15_cmds[]={$/;" v file: +objl_path_15_floats demos/subwaymap.c /^static const float objl_path_15_floats[]={$/;" v file: +objl_path_1600_cmds demos/subwaymap.c /^static const unsigned char objl_path_1600_cmds[]={$/;" v file: +objl_path_1600_floats demos/subwaymap.c /^static const float objl_path_1600_floats[]={$/;" v file: +objl_path_1601_cmds demos/subwaymap.c /^static const unsigned char objl_path_1601_cmds[]={$/;" v file: +objl_path_1601_floats demos/subwaymap.c /^static const float objl_path_1601_floats[]={$/;" v file: +objl_path_1602_cmds demos/subwaymap.c /^static const unsigned char objl_path_1602_cmds[]={$/;" v file: +objl_path_1602_floats demos/subwaymap.c /^static const float objl_path_1602_floats[]={$/;" v file: +objl_path_1603_cmds demos/subwaymap.c /^static const unsigned char objl_path_1603_cmds[]={$/;" v file: +objl_path_1603_floats demos/subwaymap.c /^static const float objl_path_1603_floats[]={$/;" v file: +objl_path_1604_cmds demos/subwaymap.c /^static const unsigned char objl_path_1604_cmds[]={$/;" v file: +objl_path_1604_floats demos/subwaymap.c /^static const float objl_path_1604_floats[]={$/;" v file: +objl_path_1605_cmds demos/subwaymap.c /^static const unsigned char objl_path_1605_cmds[]={$/;" v file: +objl_path_1605_floats demos/subwaymap.c /^static const float objl_path_1605_floats[]={$/;" v file: +objl_path_1606_cmds demos/subwaymap.c /^static const unsigned char objl_path_1606_cmds[]={$/;" v file: +objl_path_1606_floats demos/subwaymap.c /^static const float objl_path_1606_floats[]={$/;" v file: +objl_path_1607_cmds demos/subwaymap.c /^static const unsigned char objl_path_1607_cmds[]={$/;" v file: +objl_path_1607_floats demos/subwaymap.c /^static const float objl_path_1607_floats[]={$/;" v file: +objl_path_1608_cmds demos/subwaymap.c /^static const unsigned char objl_path_1608_cmds[]={$/;" v file: +objl_path_1608_floats demos/subwaymap.c /^static const float objl_path_1608_floats[]={$/;" v file: +objl_path_1609_cmds demos/subwaymap.c /^static const unsigned char objl_path_1609_cmds[]={$/;" v file: +objl_path_1609_floats demos/subwaymap.c /^static const float objl_path_1609_floats[]={$/;" v file: +objl_path_160_cmds demos/subwaymap.c /^static const unsigned char objl_path_160_cmds[]={$/;" v file: +objl_path_160_floats demos/subwaymap.c /^static const float objl_path_160_floats[]={$/;" v file: +objl_path_1610_cmds demos/subwaymap.c /^static const unsigned char objl_path_1610_cmds[]={$/;" v file: +objl_path_1610_floats demos/subwaymap.c /^static const float objl_path_1610_floats[]={$/;" v file: +objl_path_1611_cmds demos/subwaymap.c /^static const unsigned char objl_path_1611_cmds[]={$/;" v file: +objl_path_1611_floats demos/subwaymap.c /^static const float objl_path_1611_floats[]={$/;" v file: +objl_path_1612_cmds demos/subwaymap.c /^static const unsigned char objl_path_1612_cmds[]={$/;" v file: +objl_path_1612_floats demos/subwaymap.c /^static const float objl_path_1612_floats[]={$/;" v file: +objl_path_1613_cmds demos/subwaymap.c /^static const unsigned char objl_path_1613_cmds[]={$/;" v file: +objl_path_1613_floats demos/subwaymap.c /^static const float objl_path_1613_floats[]={$/;" v file: +objl_path_1614_cmds demos/subwaymap.c /^static const unsigned char objl_path_1614_cmds[]={$/;" v file: +objl_path_1614_floats demos/subwaymap.c /^static const float objl_path_1614_floats[]={$/;" v file: +objl_path_1615_cmds demos/subwaymap.c /^static const unsigned char objl_path_1615_cmds[]={$/;" v file: +objl_path_1615_floats demos/subwaymap.c /^static const float objl_path_1615_floats[]={$/;" v file: +objl_path_1616_cmds demos/subwaymap.c /^static const unsigned char objl_path_1616_cmds[]={$/;" v file: +objl_path_1616_floats demos/subwaymap.c /^static const float objl_path_1616_floats[]={$/;" v file: +objl_path_1617_cmds demos/subwaymap.c /^static const unsigned char objl_path_1617_cmds[]={$/;" v file: +objl_path_1617_floats demos/subwaymap.c /^static const float objl_path_1617_floats[]={$/;" v file: +objl_path_1618_cmds demos/subwaymap.c /^static const unsigned char objl_path_1618_cmds[]={$/;" v file: +objl_path_1618_floats demos/subwaymap.c /^static const float objl_path_1618_floats[]={$/;" v file: +objl_path_1619_cmds demos/subwaymap.c /^static const unsigned char objl_path_1619_cmds[]={$/;" v file: +objl_path_1619_floats demos/subwaymap.c /^static const float objl_path_1619_floats[]={$/;" v file: +objl_path_161_cmds demos/subwaymap.c /^static const unsigned char objl_path_161_cmds[]={$/;" v file: +objl_path_161_floats demos/subwaymap.c /^static const float objl_path_161_floats[]={$/;" v file: +objl_path_1620_cmds demos/subwaymap.c /^static const unsigned char objl_path_1620_cmds[]={$/;" v file: +objl_path_1620_floats demos/subwaymap.c /^static const float objl_path_1620_floats[]={$/;" v file: +objl_path_1621_cmds demos/subwaymap.c /^static const unsigned char objl_path_1621_cmds[]={$/;" v file: +objl_path_1621_floats demos/subwaymap.c /^static const float objl_path_1621_floats[]={$/;" v file: +objl_path_1622_cmds demos/subwaymap.c /^static const unsigned char objl_path_1622_cmds[]={$/;" v file: +objl_path_1622_floats demos/subwaymap.c /^static const float objl_path_1622_floats[]={$/;" v file: +objl_path_1623_cmds demos/subwaymap.c /^static const unsigned char objl_path_1623_cmds[]={$/;" v file: +objl_path_1623_floats demos/subwaymap.c /^static const float objl_path_1623_floats[]={$/;" v file: +objl_path_1624_cmds demos/subwaymap.c /^static const unsigned char objl_path_1624_cmds[]={$/;" v file: +objl_path_1624_floats demos/subwaymap.c /^static const float objl_path_1624_floats[]={$/;" v file: +objl_path_1625_cmds demos/subwaymap.c /^static const unsigned char objl_path_1625_cmds[]={$/;" v file: +objl_path_1625_floats demos/subwaymap.c /^static const float objl_path_1625_floats[]={$/;" v file: +objl_path_1626_cmds demos/subwaymap.c /^static const unsigned char objl_path_1626_cmds[]={$/;" v file: +objl_path_1626_floats demos/subwaymap.c /^static const float objl_path_1626_floats[]={$/;" v file: +objl_path_1627_cmds demos/subwaymap.c /^static const unsigned char objl_path_1627_cmds[]={$/;" v file: +objl_path_1627_floats demos/subwaymap.c /^static const float objl_path_1627_floats[]={$/;" v file: +objl_path_1628_cmds demos/subwaymap.c /^static const unsigned char objl_path_1628_cmds[]={$/;" v file: +objl_path_1628_floats demos/subwaymap.c /^static const float objl_path_1628_floats[]={$/;" v file: +objl_path_1629_cmds demos/subwaymap.c /^static const unsigned char objl_path_1629_cmds[]={$/;" v file: +objl_path_1629_floats demos/subwaymap.c /^static const float objl_path_1629_floats[]={$/;" v file: +objl_path_162_cmds demos/subwaymap.c /^static const unsigned char objl_path_162_cmds[]={$/;" v file: +objl_path_162_floats demos/subwaymap.c /^static const float objl_path_162_floats[]={$/;" v file: +objl_path_1630_cmds demos/subwaymap.c /^static const unsigned char objl_path_1630_cmds[]={$/;" v file: +objl_path_1630_floats demos/subwaymap.c /^static const float objl_path_1630_floats[]={$/;" v file: +objl_path_1631_cmds demos/subwaymap.c /^static const unsigned char objl_path_1631_cmds[]={$/;" v file: +objl_path_1631_floats demos/subwaymap.c /^static const float objl_path_1631_floats[]={$/;" v file: +objl_path_1632_cmds demos/subwaymap.c /^static const unsigned char objl_path_1632_cmds[]={$/;" v file: +objl_path_1632_floats demos/subwaymap.c /^static const float objl_path_1632_floats[]={$/;" v file: +objl_path_1633_cmds demos/subwaymap.c /^static const unsigned char objl_path_1633_cmds[]={$/;" v file: +objl_path_1633_floats demos/subwaymap.c /^static const float objl_path_1633_floats[]={$/;" v file: +objl_path_1634_cmds demos/subwaymap.c /^static const unsigned char objl_path_1634_cmds[]={$/;" v file: +objl_path_1634_floats demos/subwaymap.c /^static const float objl_path_1634_floats[]={$/;" v file: +objl_path_1635_cmds demos/subwaymap.c /^static const unsigned char objl_path_1635_cmds[]={$/;" v file: +objl_path_1635_floats demos/subwaymap.c /^static const float objl_path_1635_floats[]={$/;" v file: +objl_path_1636_cmds demos/subwaymap.c /^static const unsigned char objl_path_1636_cmds[]={$/;" v file: +objl_path_1636_floats demos/subwaymap.c /^static const float objl_path_1636_floats[]={$/;" v file: +objl_path_1637_cmds demos/subwaymap.c /^static const unsigned char objl_path_1637_cmds[]={$/;" v file: +objl_path_1637_floats demos/subwaymap.c /^static const float objl_path_1637_floats[]={$/;" v file: +objl_path_1638_cmds demos/subwaymap.c /^static const unsigned char objl_path_1638_cmds[]={$/;" v file: +objl_path_1638_floats demos/subwaymap.c /^static const float objl_path_1638_floats[]={$/;" v file: +objl_path_1639_cmds demos/subwaymap.c /^static const unsigned char objl_path_1639_cmds[]={$/;" v file: +objl_path_1639_floats demos/subwaymap.c /^static const float objl_path_1639_floats[]={$/;" v file: +objl_path_163_cmds demos/subwaymap.c /^static const unsigned char objl_path_163_cmds[]={$/;" v file: +objl_path_163_floats demos/subwaymap.c /^static const float objl_path_163_floats[]={$/;" v file: +objl_path_1640_cmds demos/subwaymap.c /^static const unsigned char objl_path_1640_cmds[]={$/;" v file: +objl_path_1640_floats demos/subwaymap.c /^static const float objl_path_1640_floats[]={$/;" v file: +objl_path_1641_cmds demos/subwaymap.c /^static const unsigned char objl_path_1641_cmds[]={$/;" v file: +objl_path_1641_floats demos/subwaymap.c /^static const float objl_path_1641_floats[]={$/;" v file: +objl_path_1642_cmds demos/subwaymap.c /^static const unsigned char objl_path_1642_cmds[]={$/;" v file: +objl_path_1642_floats demos/subwaymap.c /^static const float objl_path_1642_floats[]={$/;" v file: +objl_path_1643_cmds demos/subwaymap.c /^static const unsigned char objl_path_1643_cmds[]={$/;" v file: +objl_path_1643_floats demos/subwaymap.c /^static const float objl_path_1643_floats[]={$/;" v file: +objl_path_1644_cmds demos/subwaymap.c /^static const unsigned char objl_path_1644_cmds[]={$/;" v file: +objl_path_1644_floats demos/subwaymap.c /^static const float objl_path_1644_floats[]={$/;" v file: +objl_path_1645_cmds demos/subwaymap.c /^static const unsigned char objl_path_1645_cmds[]={$/;" v file: +objl_path_1645_floats demos/subwaymap.c /^static const float objl_path_1645_floats[]={$/;" v file: +objl_path_1646_cmds demos/subwaymap.c /^static const unsigned char objl_path_1646_cmds[]={$/;" v file: +objl_path_1646_floats demos/subwaymap.c /^static const float objl_path_1646_floats[]={$/;" v file: +objl_path_1647_cmds demos/subwaymap.c /^static const unsigned char objl_path_1647_cmds[]={$/;" v file: +objl_path_1647_floats demos/subwaymap.c /^static const float objl_path_1647_floats[]={$/;" v file: +objl_path_1648_cmds demos/subwaymap.c /^static const unsigned char objl_path_1648_cmds[]={$/;" v file: +objl_path_1648_floats demos/subwaymap.c /^static const float objl_path_1648_floats[]={$/;" v file: +objl_path_1649_cmds demos/subwaymap.c /^static const unsigned char objl_path_1649_cmds[]={$/;" v file: +objl_path_1649_floats demos/subwaymap.c /^static const float objl_path_1649_floats[]={$/;" v file: +objl_path_164_cmds demos/subwaymap.c /^static const unsigned char objl_path_164_cmds[]={$/;" v file: +objl_path_164_floats demos/subwaymap.c /^static const float objl_path_164_floats[]={$/;" v file: +objl_path_1650_cmds demos/subwaymap.c /^static const unsigned char objl_path_1650_cmds[]={$/;" v file: +objl_path_1650_floats demos/subwaymap.c /^static const float objl_path_1650_floats[]={$/;" v file: +objl_path_1651_cmds demos/subwaymap.c /^static const unsigned char objl_path_1651_cmds[]={$/;" v file: +objl_path_1651_floats demos/subwaymap.c /^static const float objl_path_1651_floats[]={$/;" v file: +objl_path_1652_cmds demos/subwaymap.c /^static const unsigned char objl_path_1652_cmds[]={$/;" v file: +objl_path_1652_floats demos/subwaymap.c /^static const float objl_path_1652_floats[]={$/;" v file: +objl_path_1653_cmds demos/subwaymap.c /^static const unsigned char objl_path_1653_cmds[]={$/;" v file: +objl_path_1653_floats demos/subwaymap.c /^static const float objl_path_1653_floats[]={$/;" v file: +objl_path_1654_cmds demos/subwaymap.c /^static const unsigned char objl_path_1654_cmds[]={$/;" v file: +objl_path_1654_floats demos/subwaymap.c /^static const float objl_path_1654_floats[]={$/;" v file: +objl_path_1655_cmds demos/subwaymap.c /^static const unsigned char objl_path_1655_cmds[]={$/;" v file: +objl_path_1655_floats demos/subwaymap.c /^static const float objl_path_1655_floats[]={$/;" v file: +objl_path_1656_cmds demos/subwaymap.c /^static const unsigned char objl_path_1656_cmds[]={$/;" v file: +objl_path_1656_floats demos/subwaymap.c /^static const float objl_path_1656_floats[]={$/;" v file: +objl_path_1657_cmds demos/subwaymap.c /^static const unsigned char objl_path_1657_cmds[]={$/;" v file: +objl_path_1657_floats demos/subwaymap.c /^static const float objl_path_1657_floats[]={$/;" v file: +objl_path_1658_cmds demos/subwaymap.c /^static const unsigned char objl_path_1658_cmds[]={$/;" v file: +objl_path_1658_floats demos/subwaymap.c /^static const float objl_path_1658_floats[]={$/;" v file: +objl_path_1659_cmds demos/subwaymap.c /^static const unsigned char objl_path_1659_cmds[]={$/;" v file: +objl_path_1659_floats demos/subwaymap.c /^static const float objl_path_1659_floats[]={$/;" v file: +objl_path_165_cmds demos/subwaymap.c /^static const unsigned char objl_path_165_cmds[]={$/;" v file: +objl_path_165_floats demos/subwaymap.c /^static const float objl_path_165_floats[]={$/;" v file: +objl_path_1660_cmds demos/subwaymap.c /^static const unsigned char objl_path_1660_cmds[]={$/;" v file: +objl_path_1660_floats demos/subwaymap.c /^static const float objl_path_1660_floats[]={$/;" v file: +objl_path_1661_cmds demos/subwaymap.c /^static const unsigned char objl_path_1661_cmds[]={$/;" v file: +objl_path_1661_floats demos/subwaymap.c /^static const float objl_path_1661_floats[]={$/;" v file: +objl_path_1662_cmds demos/subwaymap.c /^static const unsigned char objl_path_1662_cmds[]={$/;" v file: +objl_path_1662_floats demos/subwaymap.c /^static const float objl_path_1662_floats[]={$/;" v file: +objl_path_1663_cmds demos/subwaymap.c /^static const unsigned char objl_path_1663_cmds[]={$/;" v file: +objl_path_1663_floats demos/subwaymap.c /^static const float objl_path_1663_floats[]={$/;" v file: +objl_path_1664_cmds demos/subwaymap.c /^static const unsigned char objl_path_1664_cmds[]={$/;" v file: +objl_path_1664_floats demos/subwaymap.c /^static const float objl_path_1664_floats[]={$/;" v file: +objl_path_1665_cmds demos/subwaymap.c /^static const unsigned char objl_path_1665_cmds[]={$/;" v file: +objl_path_1665_floats demos/subwaymap.c /^static const float objl_path_1665_floats[]={$/;" v file: +objl_path_1666_cmds demos/subwaymap.c /^static const unsigned char objl_path_1666_cmds[]={$/;" v file: +objl_path_1666_floats demos/subwaymap.c /^static const float objl_path_1666_floats[]={$/;" v file: +objl_path_1667_cmds demos/subwaymap.c /^static const unsigned char objl_path_1667_cmds[]={$/;" v file: +objl_path_1667_floats demos/subwaymap.c /^static const float objl_path_1667_floats[]={$/;" v file: +objl_path_1668_cmds demos/subwaymap.c /^static const unsigned char objl_path_1668_cmds[]={$/;" v file: +objl_path_1668_floats demos/subwaymap.c /^static const float objl_path_1668_floats[]={$/;" v file: +objl_path_1669_cmds demos/subwaymap.c /^static const unsigned char objl_path_1669_cmds[]={$/;" v file: +objl_path_1669_floats demos/subwaymap.c /^static const float objl_path_1669_floats[]={$/;" v file: +objl_path_166_cmds demos/subwaymap.c /^static const unsigned char objl_path_166_cmds[]={$/;" v file: +objl_path_166_floats demos/subwaymap.c /^static const float objl_path_166_floats[]={$/;" v file: +objl_path_1670_cmds demos/subwaymap.c /^static const unsigned char objl_path_1670_cmds[]={$/;" v file: +objl_path_1670_floats demos/subwaymap.c /^static const float objl_path_1670_floats[]={$/;" v file: +objl_path_1671_cmds demos/subwaymap.c /^static const unsigned char objl_path_1671_cmds[]={$/;" v file: +objl_path_1671_floats demos/subwaymap.c /^static const float objl_path_1671_floats[]={$/;" v file: +objl_path_1672_cmds demos/subwaymap.c /^static const unsigned char objl_path_1672_cmds[]={$/;" v file: +objl_path_1672_floats demos/subwaymap.c /^static const float objl_path_1672_floats[]={$/;" v file: +objl_path_1673_cmds demos/subwaymap.c /^static const unsigned char objl_path_1673_cmds[]={$/;" v file: +objl_path_1673_floats demos/subwaymap.c /^static const float objl_path_1673_floats[]={$/;" v file: +objl_path_1674_cmds demos/subwaymap.c /^static const unsigned char objl_path_1674_cmds[]={$/;" v file: +objl_path_1674_floats demos/subwaymap.c /^static const float objl_path_1674_floats[]={$/;" v file: +objl_path_1675_cmds demos/subwaymap.c /^static const unsigned char objl_path_1675_cmds[]={$/;" v file: +objl_path_1675_floats demos/subwaymap.c /^static const float objl_path_1675_floats[]={$/;" v file: +objl_path_1676_cmds demos/subwaymap.c /^static const unsigned char objl_path_1676_cmds[]={$/;" v file: +objl_path_1676_floats demos/subwaymap.c /^static const float objl_path_1676_floats[]={$/;" v file: +objl_path_1677_cmds demos/subwaymap.c /^static const unsigned char objl_path_1677_cmds[]={$/;" v file: +objl_path_1677_floats demos/subwaymap.c /^static const float objl_path_1677_floats[]={$/;" v file: +objl_path_1678_cmds demos/subwaymap.c /^static const unsigned char objl_path_1678_cmds[]={$/;" v file: +objl_path_1678_floats demos/subwaymap.c /^static const float objl_path_1678_floats[]={$/;" v file: +objl_path_1679_cmds demos/subwaymap.c /^static const unsigned char objl_path_1679_cmds[]={$/;" v file: +objl_path_1679_floats demos/subwaymap.c /^static const float objl_path_1679_floats[]={$/;" v file: +objl_path_167_cmds demos/subwaymap.c /^static const unsigned char objl_path_167_cmds[]={$/;" v file: +objl_path_167_floats demos/subwaymap.c /^static const float objl_path_167_floats[]={$/;" v file: +objl_path_1680_cmds demos/subwaymap.c /^static const unsigned char objl_path_1680_cmds[]={$/;" v file: +objl_path_1680_floats demos/subwaymap.c /^static const float objl_path_1680_floats[]={$/;" v file: +objl_path_1681_cmds demos/subwaymap.c /^static const unsigned char objl_path_1681_cmds[]={$/;" v file: +objl_path_1681_floats demos/subwaymap.c /^static const float objl_path_1681_floats[]={$/;" v file: +objl_path_1682_cmds demos/subwaymap.c /^static const unsigned char objl_path_1682_cmds[]={$/;" v file: +objl_path_1682_floats demos/subwaymap.c /^static const float objl_path_1682_floats[]={$/;" v file: +objl_path_1683_cmds demos/subwaymap.c /^static const unsigned char objl_path_1683_cmds[]={$/;" v file: +objl_path_1683_floats demos/subwaymap.c /^static const float objl_path_1683_floats[]={$/;" v file: +objl_path_1684_cmds demos/subwaymap.c /^static const unsigned char objl_path_1684_cmds[]={$/;" v file: +objl_path_1684_floats demos/subwaymap.c /^static const float objl_path_1684_floats[]={$/;" v file: +objl_path_1685_cmds demos/subwaymap.c /^static const unsigned char objl_path_1685_cmds[]={$/;" v file: +objl_path_1685_floats demos/subwaymap.c /^static const float objl_path_1685_floats[]={$/;" v file: +objl_path_1686_cmds demos/subwaymap.c /^static const unsigned char objl_path_1686_cmds[]={$/;" v file: +objl_path_1686_floats demos/subwaymap.c /^static const float objl_path_1686_floats[]={$/;" v file: +objl_path_1687_cmds demos/subwaymap.c /^static const unsigned char objl_path_1687_cmds[]={$/;" v file: +objl_path_1687_floats demos/subwaymap.c /^static const float objl_path_1687_floats[]={$/;" v file: +objl_path_1688_cmds demos/subwaymap.c /^static const unsigned char objl_path_1688_cmds[]={$/;" v file: +objl_path_1688_floats demos/subwaymap.c /^static const float objl_path_1688_floats[]={$/;" v file: +objl_path_1689_cmds demos/subwaymap.c /^static const unsigned char objl_path_1689_cmds[]={$/;" v file: +objl_path_1689_floats demos/subwaymap.c /^static const float objl_path_1689_floats[]={$/;" v file: +objl_path_168_cmds demos/subwaymap.c /^static const unsigned char objl_path_168_cmds[]={$/;" v file: +objl_path_168_floats demos/subwaymap.c /^static const float objl_path_168_floats[]={$/;" v file: +objl_path_1690_cmds demos/subwaymap.c /^static const unsigned char objl_path_1690_cmds[]={$/;" v file: +objl_path_1690_floats demos/subwaymap.c /^static const float objl_path_1690_floats[]={$/;" v file: +objl_path_1691_cmds demos/subwaymap.c /^static const unsigned char objl_path_1691_cmds[]={$/;" v file: +objl_path_1691_floats demos/subwaymap.c /^static const float objl_path_1691_floats[]={$/;" v file: +objl_path_1692_cmds demos/subwaymap.c /^static const unsigned char objl_path_1692_cmds[]={$/;" v file: +objl_path_1692_floats demos/subwaymap.c /^static const float objl_path_1692_floats[]={$/;" v file: +objl_path_1693_cmds demos/subwaymap.c /^static const unsigned char objl_path_1693_cmds[]={$/;" v file: +objl_path_1693_floats demos/subwaymap.c /^static const float objl_path_1693_floats[]={$/;" v file: +objl_path_1694_cmds demos/subwaymap.c /^static const unsigned char objl_path_1694_cmds[]={$/;" v file: +objl_path_1694_floats demos/subwaymap.c /^static const float objl_path_1694_floats[]={$/;" v file: +objl_path_1695_cmds demos/subwaymap.c /^static const unsigned char objl_path_1695_cmds[]={$/;" v file: +objl_path_1695_floats demos/subwaymap.c /^static const float objl_path_1695_floats[]={$/;" v file: +objl_path_1696_cmds demos/subwaymap.c /^static const unsigned char objl_path_1696_cmds[]={$/;" v file: +objl_path_1696_floats demos/subwaymap.c /^static const float objl_path_1696_floats[]={$/;" v file: +objl_path_1697_cmds demos/subwaymap.c /^static const unsigned char objl_path_1697_cmds[]={$/;" v file: +objl_path_1697_floats demos/subwaymap.c /^static const float objl_path_1697_floats[]={$/;" v file: +objl_path_1698_cmds demos/subwaymap.c /^static const unsigned char objl_path_1698_cmds[]={$/;" v file: +objl_path_1698_floats demos/subwaymap.c /^static const float objl_path_1698_floats[]={$/;" v file: +objl_path_1699_cmds demos/subwaymap.c /^static const unsigned char objl_path_1699_cmds[]={$/;" v file: +objl_path_1699_floats demos/subwaymap.c /^static const float objl_path_1699_floats[]={$/;" v file: +objl_path_169_cmds demos/subwaymap.c /^static const unsigned char objl_path_169_cmds[]={$/;" v file: +objl_path_169_floats demos/subwaymap.c /^static const float objl_path_169_floats[]={$/;" v file: +objl_path_16_cmds demos/subwaymap.c /^static const unsigned char objl_path_16_cmds[]={$/;" v file: +objl_path_16_floats demos/subwaymap.c /^static const float objl_path_16_floats[]={$/;" v file: +objl_path_1700_cmds demos/subwaymap.c /^static const unsigned char objl_path_1700_cmds[]={$/;" v file: +objl_path_1700_floats demos/subwaymap.c /^static const float objl_path_1700_floats[]={$/;" v file: +objl_path_1701_cmds demos/subwaymap.c /^static const unsigned char objl_path_1701_cmds[]={$/;" v file: +objl_path_1701_floats demos/subwaymap.c /^static const float objl_path_1701_floats[]={$/;" v file: +objl_path_1702_cmds demos/subwaymap.c /^static const unsigned char objl_path_1702_cmds[]={$/;" v file: +objl_path_1702_floats demos/subwaymap.c /^static const float objl_path_1702_floats[]={$/;" v file: +objl_path_1703_cmds demos/subwaymap.c /^static const unsigned char objl_path_1703_cmds[]={$/;" v file: +objl_path_1703_floats demos/subwaymap.c /^static const float objl_path_1703_floats[]={$/;" v file: +objl_path_1704_cmds demos/subwaymap.c /^static const unsigned char objl_path_1704_cmds[]={$/;" v file: +objl_path_1704_floats demos/subwaymap.c /^static const float objl_path_1704_floats[]={$/;" v file: +objl_path_1705_cmds demos/subwaymap.c /^static const unsigned char objl_path_1705_cmds[]={$/;" v file: +objl_path_1705_floats demos/subwaymap.c /^static const float objl_path_1705_floats[]={$/;" v file: +objl_path_1706_cmds demos/subwaymap.c /^static const unsigned char objl_path_1706_cmds[]={$/;" v file: +objl_path_1706_floats demos/subwaymap.c /^static const float objl_path_1706_floats[]={$/;" v file: +objl_path_1707_cmds demos/subwaymap.c /^static const unsigned char objl_path_1707_cmds[]={$/;" v file: +objl_path_1707_floats demos/subwaymap.c /^static const float objl_path_1707_floats[]={$/;" v file: +objl_path_1708_cmds demos/subwaymap.c /^static const unsigned char objl_path_1708_cmds[]={$/;" v file: +objl_path_1708_floats demos/subwaymap.c /^static const float objl_path_1708_floats[]={$/;" v file: +objl_path_1709_cmds demos/subwaymap.c /^static const unsigned char objl_path_1709_cmds[]={$/;" v file: +objl_path_1709_floats demos/subwaymap.c /^static const float objl_path_1709_floats[]={$/;" v file: +objl_path_170_cmds demos/subwaymap.c /^static const unsigned char objl_path_170_cmds[]={$/;" v file: +objl_path_170_floats demos/subwaymap.c /^static const float objl_path_170_floats[]={$/;" v file: +objl_path_1710_cmds demos/subwaymap.c /^static const unsigned char objl_path_1710_cmds[]={$/;" v file: +objl_path_1710_floats demos/subwaymap.c /^static const float objl_path_1710_floats[]={$/;" v file: +objl_path_1711_cmds demos/subwaymap.c /^static const unsigned char objl_path_1711_cmds[]={$/;" v file: +objl_path_1711_floats demos/subwaymap.c /^static const float objl_path_1711_floats[]={$/;" v file: +objl_path_1712_cmds demos/subwaymap.c /^static const unsigned char objl_path_1712_cmds[]={$/;" v file: +objl_path_1712_floats demos/subwaymap.c /^static const float objl_path_1712_floats[]={$/;" v file: +objl_path_1713_cmds demos/subwaymap.c /^static const unsigned char objl_path_1713_cmds[]={$/;" v file: +objl_path_1713_floats demos/subwaymap.c /^static const float objl_path_1713_floats[]={$/;" v file: +objl_path_1714_cmds demos/subwaymap.c /^static const unsigned char objl_path_1714_cmds[]={$/;" v file: +objl_path_1714_floats demos/subwaymap.c /^static const float objl_path_1714_floats[]={$/;" v file: +objl_path_1715_cmds demos/subwaymap.c /^static const unsigned char objl_path_1715_cmds[]={$/;" v file: +objl_path_1715_floats demos/subwaymap.c /^static const float objl_path_1715_floats[]={$/;" v file: +objl_path_1716_cmds demos/subwaymap.c /^static const unsigned char objl_path_1716_cmds[]={$/;" v file: +objl_path_1716_floats demos/subwaymap.c /^static const float objl_path_1716_floats[]={$/;" v file: +objl_path_1717_cmds demos/subwaymap.c /^static const unsigned char objl_path_1717_cmds[]={$/;" v file: +objl_path_1717_floats demos/subwaymap.c /^static const float objl_path_1717_floats[]={$/;" v file: +objl_path_1718_cmds demos/subwaymap.c /^static const unsigned char objl_path_1718_cmds[]={$/;" v file: +objl_path_1718_floats demos/subwaymap.c /^static const float objl_path_1718_floats[]={$/;" v file: +objl_path_1719_cmds demos/subwaymap.c /^static const unsigned char objl_path_1719_cmds[]={$/;" v file: +objl_path_1719_floats demos/subwaymap.c /^static const float objl_path_1719_floats[]={$/;" v file: +objl_path_171_cmds demos/subwaymap.c /^static const unsigned char objl_path_171_cmds[]={$/;" v file: +objl_path_171_floats demos/subwaymap.c /^static const float objl_path_171_floats[]={$/;" v file: +objl_path_1720_cmds demos/subwaymap.c /^static const unsigned char objl_path_1720_cmds[]={$/;" v file: +objl_path_1720_floats demos/subwaymap.c /^static const float objl_path_1720_floats[]={$/;" v file: +objl_path_1721_cmds demos/subwaymap.c /^static const unsigned char objl_path_1721_cmds[]={$/;" v file: +objl_path_1721_floats demos/subwaymap.c /^static const float objl_path_1721_floats[]={$/;" v file: +objl_path_1722_cmds demos/subwaymap.c /^static const unsigned char objl_path_1722_cmds[]={$/;" v file: +objl_path_1722_floats demos/subwaymap.c /^static const float objl_path_1722_floats[]={$/;" v file: +objl_path_1723_cmds demos/subwaymap.c /^static const unsigned char objl_path_1723_cmds[]={$/;" v file: +objl_path_1723_floats demos/subwaymap.c /^static const float objl_path_1723_floats[]={$/;" v file: +objl_path_1724_cmds demos/subwaymap.c /^static const unsigned char objl_path_1724_cmds[]={$/;" v file: +objl_path_1724_floats demos/subwaymap.c /^static const float objl_path_1724_floats[]={$/;" v file: +objl_path_1725_cmds demos/subwaymap.c /^static const unsigned char objl_path_1725_cmds[]={$/;" v file: +objl_path_1725_floats demos/subwaymap.c /^static const float objl_path_1725_floats[]={$/;" v file: +objl_path_1726_cmds demos/subwaymap.c /^static const unsigned char objl_path_1726_cmds[]={$/;" v file: +objl_path_1726_floats demos/subwaymap.c /^static const float objl_path_1726_floats[]={$/;" v file: +objl_path_1727_cmds demos/subwaymap.c /^static const unsigned char objl_path_1727_cmds[]={$/;" v file: +objl_path_1727_floats demos/subwaymap.c /^static const float objl_path_1727_floats[]={$/;" v file: +objl_path_1728_cmds demos/subwaymap.c /^static const unsigned char objl_path_1728_cmds[]={$/;" v file: +objl_path_1728_floats demos/subwaymap.c /^static const float objl_path_1728_floats[]={$/;" v file: +objl_path_1729_cmds demos/subwaymap.c /^static const unsigned char objl_path_1729_cmds[]={$/;" v file: +objl_path_1729_floats demos/subwaymap.c /^static const float objl_path_1729_floats[]={$/;" v file: +objl_path_172_cmds demos/subwaymap.c /^static const unsigned char objl_path_172_cmds[]={$/;" v file: +objl_path_172_floats demos/subwaymap.c /^static const float objl_path_172_floats[]={$/;" v file: +objl_path_1730_cmds demos/subwaymap.c /^static const unsigned char objl_path_1730_cmds[]={$/;" v file: +objl_path_1730_floats demos/subwaymap.c /^static const float objl_path_1730_floats[]={$/;" v file: +objl_path_1731_cmds demos/subwaymap.c /^static const unsigned char objl_path_1731_cmds[]={$/;" v file: +objl_path_1731_floats demos/subwaymap.c /^static const float objl_path_1731_floats[]={$/;" v file: +objl_path_1732_cmds demos/subwaymap.c /^static const unsigned char objl_path_1732_cmds[]={$/;" v file: +objl_path_1732_floats demos/subwaymap.c /^static const float objl_path_1732_floats[]={$/;" v file: +objl_path_1733_cmds demos/subwaymap.c /^static const unsigned char objl_path_1733_cmds[]={$/;" v file: +objl_path_1733_floats demos/subwaymap.c /^static const float objl_path_1733_floats[]={$/;" v file: +objl_path_1734_cmds demos/subwaymap.c /^static const unsigned char objl_path_1734_cmds[]={$/;" v file: +objl_path_1734_floats demos/subwaymap.c /^static const float objl_path_1734_floats[]={$/;" v file: +objl_path_1735_cmds demos/subwaymap.c /^static const unsigned char objl_path_1735_cmds[]={$/;" v file: +objl_path_1735_floats demos/subwaymap.c /^static const float objl_path_1735_floats[]={$/;" v file: +objl_path_1736_cmds demos/subwaymap.c /^static const unsigned char objl_path_1736_cmds[]={$/;" v file: +objl_path_1736_floats demos/subwaymap.c /^static const float objl_path_1736_floats[]={$/;" v file: +objl_path_1737_cmds demos/subwaymap.c /^static const unsigned char objl_path_1737_cmds[]={$/;" v file: +objl_path_1737_floats demos/subwaymap.c /^static const float objl_path_1737_floats[]={$/;" v file: +objl_path_1738_cmds demos/subwaymap.c /^static const unsigned char objl_path_1738_cmds[]={$/;" v file: +objl_path_1738_floats demos/subwaymap.c /^static const float objl_path_1738_floats[]={$/;" v file: +objl_path_1739_cmds demos/subwaymap.c /^static const unsigned char objl_path_1739_cmds[]={$/;" v file: +objl_path_1739_floats demos/subwaymap.c /^static const float objl_path_1739_floats[]={$/;" v file: +objl_path_173_cmds demos/subwaymap.c /^static const unsigned char objl_path_173_cmds[]={$/;" v file: +objl_path_173_floats demos/subwaymap.c /^static const float objl_path_173_floats[]={$/;" v file: +objl_path_1740_cmds demos/subwaymap.c /^static const unsigned char objl_path_1740_cmds[]={$/;" v file: +objl_path_1740_floats demos/subwaymap.c /^static const float objl_path_1740_floats[]={$/;" v file: +objl_path_1741_cmds demos/subwaymap.c /^static const unsigned char objl_path_1741_cmds[]={$/;" v file: +objl_path_1741_floats demos/subwaymap.c /^static const float objl_path_1741_floats[]={$/;" v file: +objl_path_1742_cmds demos/subwaymap.c /^static const unsigned char objl_path_1742_cmds[]={$/;" v file: +objl_path_1742_floats demos/subwaymap.c /^static const float objl_path_1742_floats[]={$/;" v file: +objl_path_1743_cmds demos/subwaymap.c /^static const unsigned char objl_path_1743_cmds[]={$/;" v file: +objl_path_1743_floats demos/subwaymap.c /^static const float objl_path_1743_floats[]={$/;" v file: +objl_path_1744_cmds demos/subwaymap.c /^static const unsigned char objl_path_1744_cmds[]={$/;" v file: +objl_path_1744_floats demos/subwaymap.c /^static const float objl_path_1744_floats[]={$/;" v file: +objl_path_1745_cmds demos/subwaymap.c /^static const unsigned char objl_path_1745_cmds[]={$/;" v file: +objl_path_1745_floats demos/subwaymap.c /^static const float objl_path_1745_floats[]={$/;" v file: +objl_path_1746_cmds demos/subwaymap.c /^static const unsigned char objl_path_1746_cmds[]={$/;" v file: +objl_path_1746_floats demos/subwaymap.c /^static const float objl_path_1746_floats[]={$/;" v file: +objl_path_1747_cmds demos/subwaymap.c /^static const unsigned char objl_path_1747_cmds[]={$/;" v file: +objl_path_1747_floats demos/subwaymap.c /^static const float objl_path_1747_floats[]={$/;" v file: +objl_path_1748_cmds demos/subwaymap.c /^static const unsigned char objl_path_1748_cmds[]={$/;" v file: +objl_path_1748_floats demos/subwaymap.c /^static const float objl_path_1748_floats[]={$/;" v file: +objl_path_1749_cmds demos/subwaymap.c /^static const unsigned char objl_path_1749_cmds[]={$/;" v file: +objl_path_1749_floats demos/subwaymap.c /^static const float objl_path_1749_floats[]={$/;" v file: +objl_path_174_cmds demos/subwaymap.c /^static const unsigned char objl_path_174_cmds[]={$/;" v file: +objl_path_174_floats demos/subwaymap.c /^static const float objl_path_174_floats[]={$/;" v file: +objl_path_1750_cmds demos/subwaymap.c /^static const unsigned char objl_path_1750_cmds[]={$/;" v file: +objl_path_1750_floats demos/subwaymap.c /^static const float objl_path_1750_floats[]={$/;" v file: +objl_path_1751_cmds demos/subwaymap.c /^static const unsigned char objl_path_1751_cmds[]={$/;" v file: +objl_path_1751_floats demos/subwaymap.c /^static const float objl_path_1751_floats[]={$/;" v file: +objl_path_1752_cmds demos/subwaymap.c /^static const unsigned char objl_path_1752_cmds[]={$/;" v file: +objl_path_1752_floats demos/subwaymap.c /^static const float objl_path_1752_floats[]={$/;" v file: +objl_path_1753_cmds demos/subwaymap.c /^static const unsigned char objl_path_1753_cmds[]={$/;" v file: +objl_path_1753_floats demos/subwaymap.c /^static const float objl_path_1753_floats[]={$/;" v file: +objl_path_1754_cmds demos/subwaymap.c /^static const unsigned char objl_path_1754_cmds[]={$/;" v file: +objl_path_1754_floats demos/subwaymap.c /^static const float objl_path_1754_floats[]={$/;" v file: +objl_path_1755_cmds demos/subwaymap.c /^static const unsigned char objl_path_1755_cmds[]={$/;" v file: +objl_path_1755_floats demos/subwaymap.c /^static const float objl_path_1755_floats[]={$/;" v file: +objl_path_1756_cmds demos/subwaymap.c /^static const unsigned char objl_path_1756_cmds[]={$/;" v file: +objl_path_1756_floats demos/subwaymap.c /^static const float objl_path_1756_floats[]={$/;" v file: +objl_path_1757_cmds demos/subwaymap.c /^static const unsigned char objl_path_1757_cmds[]={$/;" v file: +objl_path_1757_floats demos/subwaymap.c /^static const float objl_path_1757_floats[]={$/;" v file: +objl_path_1758_cmds demos/subwaymap.c /^static const unsigned char objl_path_1758_cmds[]={$/;" v file: +objl_path_1758_floats demos/subwaymap.c /^static const float objl_path_1758_floats[]={$/;" v file: +objl_path_1759_cmds demos/subwaymap.c /^static const unsigned char objl_path_1759_cmds[]={$/;" v file: +objl_path_1759_floats demos/subwaymap.c /^static const float objl_path_1759_floats[]={$/;" v file: +objl_path_175_cmds demos/subwaymap.c /^static const unsigned char objl_path_175_cmds[]={$/;" v file: +objl_path_175_floats demos/subwaymap.c /^static const float objl_path_175_floats[]={$/;" v file: +objl_path_1760_cmds demos/subwaymap.c /^static const unsigned char objl_path_1760_cmds[]={$/;" v file: +objl_path_1760_floats demos/subwaymap.c /^static const float objl_path_1760_floats[]={$/;" v file: +objl_path_1761_cmds demos/subwaymap.c /^static const unsigned char objl_path_1761_cmds[]={$/;" v file: +objl_path_1761_floats demos/subwaymap.c /^static const float objl_path_1761_floats[]={$/;" v file: +objl_path_1762_cmds demos/subwaymap.c /^static const unsigned char objl_path_1762_cmds[]={$/;" v file: +objl_path_1762_floats demos/subwaymap.c /^static const float objl_path_1762_floats[]={$/;" v file: +objl_path_1763_cmds demos/subwaymap.c /^static const unsigned char objl_path_1763_cmds[]={$/;" v file: +objl_path_1763_floats demos/subwaymap.c /^static const float objl_path_1763_floats[]={$/;" v file: +objl_path_1764_cmds demos/subwaymap.c /^static const unsigned char objl_path_1764_cmds[]={$/;" v file: +objl_path_1764_floats demos/subwaymap.c /^static const float objl_path_1764_floats[]={$/;" v file: +objl_path_1765_cmds demos/subwaymap.c /^static const unsigned char objl_path_1765_cmds[]={$/;" v file: +objl_path_1765_floats demos/subwaymap.c /^static const float objl_path_1765_floats[]={$/;" v file: +objl_path_1766_cmds demos/subwaymap.c /^static const unsigned char objl_path_1766_cmds[]={$/;" v file: +objl_path_1766_floats demos/subwaymap.c /^static const float objl_path_1766_floats[]={$/;" v file: +objl_path_1767_cmds demos/subwaymap.c /^static const unsigned char objl_path_1767_cmds[]={$/;" v file: +objl_path_1767_floats demos/subwaymap.c /^static const float objl_path_1767_floats[]={$/;" v file: +objl_path_1768_cmds demos/subwaymap.c /^static const unsigned char objl_path_1768_cmds[]={$/;" v file: +objl_path_1768_floats demos/subwaymap.c /^static const float objl_path_1768_floats[]={$/;" v file: +objl_path_1769_cmds demos/subwaymap.c /^static const unsigned char objl_path_1769_cmds[]={$/;" v file: +objl_path_1769_floats demos/subwaymap.c /^static const float objl_path_1769_floats[]={$/;" v file: +objl_path_176_cmds demos/subwaymap.c /^static const unsigned char objl_path_176_cmds[]={$/;" v file: +objl_path_176_floats demos/subwaymap.c /^static const float objl_path_176_floats[]={$/;" v file: +objl_path_1770_cmds demos/subwaymap.c /^static const unsigned char objl_path_1770_cmds[]={$/;" v file: +objl_path_1770_floats demos/subwaymap.c /^static const float objl_path_1770_floats[]={$/;" v file: +objl_path_1771_cmds demos/subwaymap.c /^static const unsigned char objl_path_1771_cmds[]={$/;" v file: +objl_path_1771_floats demos/subwaymap.c /^static const float objl_path_1771_floats[]={$/;" v file: +objl_path_1772_cmds demos/subwaymap.c /^static const unsigned char objl_path_1772_cmds[]={$/;" v file: +objl_path_1772_floats demos/subwaymap.c /^static const float objl_path_1772_floats[]={$/;" v file: +objl_path_1773_cmds demos/subwaymap.c /^static const unsigned char objl_path_1773_cmds[]={$/;" v file: +objl_path_1773_floats demos/subwaymap.c /^static const float objl_path_1773_floats[]={$/;" v file: +objl_path_1774_cmds demos/subwaymap.c /^static const unsigned char objl_path_1774_cmds[]={$/;" v file: +objl_path_1774_floats demos/subwaymap.c /^static const float objl_path_1774_floats[]={$/;" v file: +objl_path_1775_cmds demos/subwaymap.c /^static const unsigned char objl_path_1775_cmds[]={$/;" v file: +objl_path_1775_floats demos/subwaymap.c /^static const float objl_path_1775_floats[]={$/;" v file: +objl_path_1776_cmds demos/subwaymap.c /^static const unsigned char objl_path_1776_cmds[]={$/;" v file: +objl_path_1776_floats demos/subwaymap.c /^static const float objl_path_1776_floats[]={$/;" v file: +objl_path_1777_cmds demos/subwaymap.c /^static const unsigned char objl_path_1777_cmds[]={$/;" v file: +objl_path_1777_floats demos/subwaymap.c /^static const float objl_path_1777_floats[]={$/;" v file: +objl_path_1778_cmds demos/subwaymap.c /^static const unsigned char objl_path_1778_cmds[]={$/;" v file: +objl_path_1778_floats demos/subwaymap.c /^static const float objl_path_1778_floats[]={$/;" v file: +objl_path_1779_cmds demos/subwaymap.c /^static const unsigned char objl_path_1779_cmds[]={$/;" v file: +objl_path_1779_floats demos/subwaymap.c /^static const float objl_path_1779_floats[]={$/;" v file: +objl_path_177_cmds demos/subwaymap.c /^static const unsigned char objl_path_177_cmds[]={$/;" v file: +objl_path_177_floats demos/subwaymap.c /^static const float objl_path_177_floats[]={$/;" v file: +objl_path_1780_cmds demos/subwaymap.c /^static const unsigned char objl_path_1780_cmds[]={$/;" v file: +objl_path_1780_floats demos/subwaymap.c /^static const float objl_path_1780_floats[]={$/;" v file: +objl_path_1781_cmds demos/subwaymap.c /^static const unsigned char objl_path_1781_cmds[]={$/;" v file: +objl_path_1781_floats demos/subwaymap.c /^static const float objl_path_1781_floats[]={$/;" v file: +objl_path_1782_cmds demos/subwaymap.c /^static const unsigned char objl_path_1782_cmds[]={$/;" v file: +objl_path_1782_floats demos/subwaymap.c /^static const float objl_path_1782_floats[]={$/;" v file: +objl_path_1783_cmds demos/subwaymap.c /^static const unsigned char objl_path_1783_cmds[]={$/;" v file: +objl_path_1783_floats demos/subwaymap.c /^static const float objl_path_1783_floats[]={$/;" v file: +objl_path_1784_cmds demos/subwaymap.c /^static const unsigned char objl_path_1784_cmds[]={$/;" v file: +objl_path_1784_floats demos/subwaymap.c /^static const float objl_path_1784_floats[]={$/;" v file: +objl_path_1785_cmds demos/subwaymap.c /^static const unsigned char objl_path_1785_cmds[]={$/;" v file: +objl_path_1785_floats demos/subwaymap.c /^static const float objl_path_1785_floats[]={$/;" v file: +objl_path_1786_cmds demos/subwaymap.c /^static const unsigned char objl_path_1786_cmds[]={$/;" v file: +objl_path_1786_floats demos/subwaymap.c /^static const float objl_path_1786_floats[]={$/;" v file: +objl_path_1787_cmds demos/subwaymap.c /^static const unsigned char objl_path_1787_cmds[]={$/;" v file: +objl_path_1787_floats demos/subwaymap.c /^static const float objl_path_1787_floats[]={$/;" v file: +objl_path_1788_cmds demos/subwaymap.c /^static const unsigned char objl_path_1788_cmds[]={$/;" v file: +objl_path_1788_floats demos/subwaymap.c /^static const float objl_path_1788_floats[]={$/;" v file: +objl_path_1789_cmds demos/subwaymap.c /^static const unsigned char objl_path_1789_cmds[]={$/;" v file: +objl_path_1789_floats demos/subwaymap.c /^static const float objl_path_1789_floats[]={$/;" v file: +objl_path_178_cmds demos/subwaymap.c /^static const unsigned char objl_path_178_cmds[]={$/;" v file: +objl_path_178_floats demos/subwaymap.c /^static const float objl_path_178_floats[]={$/;" v file: +objl_path_1790_cmds demos/subwaymap.c /^static const unsigned char objl_path_1790_cmds[]={$/;" v file: +objl_path_1790_floats demos/subwaymap.c /^static const float objl_path_1790_floats[]={$/;" v file: +objl_path_1791_cmds demos/subwaymap.c /^static const unsigned char objl_path_1791_cmds[]={$/;" v file: +objl_path_1791_floats demos/subwaymap.c /^static const float objl_path_1791_floats[]={$/;" v file: +objl_path_1792_cmds demos/subwaymap.c /^static const unsigned char objl_path_1792_cmds[]={$/;" v file: +objl_path_1792_floats demos/subwaymap.c /^static const float objl_path_1792_floats[]={$/;" v file: +objl_path_1793_cmds demos/subwaymap.c /^static const unsigned char objl_path_1793_cmds[]={$/;" v file: +objl_path_1793_floats demos/subwaymap.c /^static const float objl_path_1793_floats[]={$/;" v file: +objl_path_1794_cmds demos/subwaymap.c /^static const unsigned char objl_path_1794_cmds[]={$/;" v file: +objl_path_1794_floats demos/subwaymap.c /^static const float objl_path_1794_floats[]={$/;" v file: +objl_path_1795_cmds demos/subwaymap.c /^static const unsigned char objl_path_1795_cmds[]={$/;" v file: +objl_path_1795_floats demos/subwaymap.c /^static const float objl_path_1795_floats[]={$/;" v file: +objl_path_1796_cmds demos/subwaymap.c /^static const unsigned char objl_path_1796_cmds[]={$/;" v file: +objl_path_1796_floats demos/subwaymap.c /^static const float objl_path_1796_floats[]={$/;" v file: +objl_path_1797_cmds demos/subwaymap.c /^static const unsigned char objl_path_1797_cmds[]={$/;" v file: +objl_path_1797_floats demos/subwaymap.c /^static const float objl_path_1797_floats[]={$/;" v file: +objl_path_1798_cmds demos/subwaymap.c /^static const unsigned char objl_path_1798_cmds[]={$/;" v file: +objl_path_1798_floats demos/subwaymap.c /^static const float objl_path_1798_floats[]={$/;" v file: +objl_path_1799_cmds demos/subwaymap.c /^static const unsigned char objl_path_1799_cmds[]={$/;" v file: +objl_path_1799_floats demos/subwaymap.c /^static const float objl_path_1799_floats[]={$/;" v file: +objl_path_179_cmds demos/subwaymap.c /^static const unsigned char objl_path_179_cmds[]={$/;" v file: +objl_path_179_floats demos/subwaymap.c /^static const float objl_path_179_floats[]={$/;" v file: +objl_path_17_cmds demos/subwaymap.c /^static const unsigned char objl_path_17_cmds[]={$/;" v file: +objl_path_17_floats demos/subwaymap.c /^static const float objl_path_17_floats[]={$/;" v file: +objl_path_1800_cmds demos/subwaymap.c /^static const unsigned char objl_path_1800_cmds[]={$/;" v file: +objl_path_1800_floats demos/subwaymap.c /^static const float objl_path_1800_floats[]={$/;" v file: +objl_path_1801_cmds demos/subwaymap.c /^static const unsigned char objl_path_1801_cmds[]={$/;" v file: +objl_path_1801_floats demos/subwaymap.c /^static const float objl_path_1801_floats[]={$/;" v file: +objl_path_1802_cmds demos/subwaymap.c /^static const unsigned char objl_path_1802_cmds[]={$/;" v file: +objl_path_1802_floats demos/subwaymap.c /^static const float objl_path_1802_floats[]={$/;" v file: +objl_path_1803_cmds demos/subwaymap.c /^static const unsigned char objl_path_1803_cmds[]={$/;" v file: +objl_path_1803_floats demos/subwaymap.c /^static const float objl_path_1803_floats[]={$/;" v file: +objl_path_1804_cmds demos/subwaymap.c /^static const unsigned char objl_path_1804_cmds[]={$/;" v file: +objl_path_1804_floats demos/subwaymap.c /^static const float objl_path_1804_floats[]={$/;" v file: +objl_path_1805_cmds demos/subwaymap.c /^static const unsigned char objl_path_1805_cmds[]={$/;" v file: +objl_path_1805_floats demos/subwaymap.c /^static const float objl_path_1805_floats[]={$/;" v file: +objl_path_1806_cmds demos/subwaymap.c /^static const unsigned char objl_path_1806_cmds[]={$/;" v file: +objl_path_1806_floats demos/subwaymap.c /^static const float objl_path_1806_floats[]={$/;" v file: +objl_path_1807_cmds demos/subwaymap.c /^static const unsigned char objl_path_1807_cmds[]={$/;" v file: +objl_path_1807_floats demos/subwaymap.c /^static const float objl_path_1807_floats[]={$/;" v file: +objl_path_1808_cmds demos/subwaymap.c /^static const unsigned char objl_path_1808_cmds[]={$/;" v file: +objl_path_1808_floats demos/subwaymap.c /^static const float objl_path_1808_floats[]={$/;" v file: +objl_path_1809_cmds demos/subwaymap.c /^static const unsigned char objl_path_1809_cmds[]={$/;" v file: +objl_path_1809_floats demos/subwaymap.c /^static const float objl_path_1809_floats[]={$/;" v file: +objl_path_180_cmds demos/subwaymap.c /^static const unsigned char objl_path_180_cmds[]={$/;" v file: +objl_path_180_floats demos/subwaymap.c /^static const float objl_path_180_floats[]={$/;" v file: +objl_path_1810_cmds demos/subwaymap.c /^static const unsigned char objl_path_1810_cmds[]={$/;" v file: +objl_path_1810_floats demos/subwaymap.c /^static const float objl_path_1810_floats[]={$/;" v file: +objl_path_1811_cmds demos/subwaymap.c /^static const unsigned char objl_path_1811_cmds[]={$/;" v file: +objl_path_1811_floats demos/subwaymap.c /^static const float objl_path_1811_floats[]={$/;" v file: +objl_path_1812_cmds demos/subwaymap.c /^static const unsigned char objl_path_1812_cmds[]={$/;" v file: +objl_path_1812_floats demos/subwaymap.c /^static const float objl_path_1812_floats[]={$/;" v file: +objl_path_1813_cmds demos/subwaymap.c /^static const unsigned char objl_path_1813_cmds[]={$/;" v file: +objl_path_1813_floats demos/subwaymap.c /^static const float objl_path_1813_floats[]={$/;" v file: +objl_path_1814_cmds demos/subwaymap.c /^static const unsigned char objl_path_1814_cmds[]={$/;" v file: +objl_path_1814_floats demos/subwaymap.c /^static const float objl_path_1814_floats[]={$/;" v file: +objl_path_1815_cmds demos/subwaymap.c /^static const unsigned char objl_path_1815_cmds[]={$/;" v file: +objl_path_1815_floats demos/subwaymap.c /^static const float objl_path_1815_floats[]={$/;" v file: +objl_path_1816_cmds demos/subwaymap.c /^static const unsigned char objl_path_1816_cmds[]={$/;" v file: +objl_path_1816_floats demos/subwaymap.c /^static const float objl_path_1816_floats[]={$/;" v file: +objl_path_1817_cmds demos/subwaymap.c /^static const unsigned char objl_path_1817_cmds[]={$/;" v file: +objl_path_1817_floats demos/subwaymap.c /^static const float objl_path_1817_floats[]={$/;" v file: +objl_path_1818_cmds demos/subwaymap.c /^static const unsigned char objl_path_1818_cmds[]={$/;" v file: +objl_path_1818_floats demos/subwaymap.c /^static const float objl_path_1818_floats[]={$/;" v file: +objl_path_1819_cmds demos/subwaymap.c /^static const unsigned char objl_path_1819_cmds[]={$/;" v file: +objl_path_1819_floats demos/subwaymap.c /^static const float objl_path_1819_floats[]={$/;" v file: +objl_path_181_cmds demos/subwaymap.c /^static const unsigned char objl_path_181_cmds[]={$/;" v file: +objl_path_181_floats demos/subwaymap.c /^static const float objl_path_181_floats[]={$/;" v file: +objl_path_1820_cmds demos/subwaymap.c /^static const unsigned char objl_path_1820_cmds[]={$/;" v file: +objl_path_1820_floats demos/subwaymap.c /^static const float objl_path_1820_floats[]={$/;" v file: +objl_path_1821_cmds demos/subwaymap.c /^static const unsigned char objl_path_1821_cmds[]={$/;" v file: +objl_path_1821_floats demos/subwaymap.c /^static const float objl_path_1821_floats[]={$/;" v file: +objl_path_1822_cmds demos/subwaymap.c /^static const unsigned char objl_path_1822_cmds[]={$/;" v file: +objl_path_1822_floats demos/subwaymap.c /^static const float objl_path_1822_floats[]={$/;" v file: +objl_path_1823_cmds demos/subwaymap.c /^static const unsigned char objl_path_1823_cmds[]={$/;" v file: +objl_path_1823_floats demos/subwaymap.c /^static const float objl_path_1823_floats[]={$/;" v file: +objl_path_1824_cmds demos/subwaymap.c /^static const unsigned char objl_path_1824_cmds[]={$/;" v file: +objl_path_1824_floats demos/subwaymap.c /^static const float objl_path_1824_floats[]={$/;" v file: +objl_path_1825_cmds demos/subwaymap.c /^static const unsigned char objl_path_1825_cmds[]={$/;" v file: +objl_path_1825_floats demos/subwaymap.c /^static const float objl_path_1825_floats[]={$/;" v file: +objl_path_1826_cmds demos/subwaymap.c /^static const unsigned char objl_path_1826_cmds[]={$/;" v file: +objl_path_1826_floats demos/subwaymap.c /^static const float objl_path_1826_floats[]={$/;" v file: +objl_path_1827_cmds demos/subwaymap.c /^static const unsigned char objl_path_1827_cmds[]={$/;" v file: +objl_path_1827_floats demos/subwaymap.c /^static const float objl_path_1827_floats[]={$/;" v file: +objl_path_1828_cmds demos/subwaymap.c /^static const unsigned char objl_path_1828_cmds[]={$/;" v file: +objl_path_1828_floats demos/subwaymap.c /^static const float objl_path_1828_floats[]={$/;" v file: +objl_path_1829_cmds demos/subwaymap.c /^static const unsigned char objl_path_1829_cmds[]={$/;" v file: +objl_path_1829_floats demos/subwaymap.c /^static const float objl_path_1829_floats[]={$/;" v file: +objl_path_182_cmds demos/subwaymap.c /^static const unsigned char objl_path_182_cmds[]={$/;" v file: +objl_path_182_floats demos/subwaymap.c /^static const float objl_path_182_floats[]={$/;" v file: +objl_path_1830_cmds demos/subwaymap.c /^static const unsigned char objl_path_1830_cmds[]={$/;" v file: +objl_path_1830_floats demos/subwaymap.c /^static const float objl_path_1830_floats[]={$/;" v file: +objl_path_1831_cmds demos/subwaymap.c /^static const unsigned char objl_path_1831_cmds[]={$/;" v file: +objl_path_1831_floats demos/subwaymap.c /^static const float objl_path_1831_floats[]={$/;" v file: +objl_path_1832_cmds demos/subwaymap.c /^static const unsigned char objl_path_1832_cmds[]={$/;" v file: +objl_path_1832_floats demos/subwaymap.c /^static const float objl_path_1832_floats[]={$/;" v file: +objl_path_1833_cmds demos/subwaymap.c /^static const unsigned char objl_path_1833_cmds[]={$/;" v file: +objl_path_1833_floats demos/subwaymap.c /^static const float objl_path_1833_floats[]={$/;" v file: +objl_path_1834_cmds demos/subwaymap.c /^static const unsigned char objl_path_1834_cmds[]={$/;" v file: +objl_path_1834_floats demos/subwaymap.c /^static const float objl_path_1834_floats[]={$/;" v file: +objl_path_1835_cmds demos/subwaymap.c /^static const unsigned char objl_path_1835_cmds[]={$/;" v file: +objl_path_1835_floats demos/subwaymap.c /^static const float objl_path_1835_floats[]={$/;" v file: +objl_path_1836_cmds demos/subwaymap.c /^static const unsigned char objl_path_1836_cmds[]={$/;" v file: +objl_path_1836_floats demos/subwaymap.c /^static const float objl_path_1836_floats[]={$/;" v file: +objl_path_1837_cmds demos/subwaymap.c /^static const unsigned char objl_path_1837_cmds[]={$/;" v file: +objl_path_1837_floats demos/subwaymap.c /^static const float objl_path_1837_floats[]={$/;" v file: +objl_path_1838_cmds demos/subwaymap.c /^static const unsigned char objl_path_1838_cmds[]={$/;" v file: +objl_path_1838_floats demos/subwaymap.c /^static const float objl_path_1838_floats[]={$/;" v file: +objl_path_1839_cmds demos/subwaymap.c /^static const unsigned char objl_path_1839_cmds[]={$/;" v file: +objl_path_1839_floats demos/subwaymap.c /^static const float objl_path_1839_floats[]={$/;" v file: +objl_path_183_cmds demos/subwaymap.c /^static const unsigned char objl_path_183_cmds[]={$/;" v file: +objl_path_183_floats demos/subwaymap.c /^static const float objl_path_183_floats[]={$/;" v file: +objl_path_1840_cmds demos/subwaymap.c /^static const unsigned char objl_path_1840_cmds[]={$/;" v file: +objl_path_1840_floats demos/subwaymap.c /^static const float objl_path_1840_floats[]={$/;" v file: +objl_path_1841_cmds demos/subwaymap.c /^static const unsigned char objl_path_1841_cmds[]={$/;" v file: +objl_path_1841_floats demos/subwaymap.c /^static const float objl_path_1841_floats[]={$/;" v file: +objl_path_1842_cmds demos/subwaymap.c /^static const unsigned char objl_path_1842_cmds[]={$/;" v file: +objl_path_1842_floats demos/subwaymap.c /^static const float objl_path_1842_floats[]={$/;" v file: +objl_path_1843_cmds demos/subwaymap.c /^static const unsigned char objl_path_1843_cmds[]={$/;" v file: +objl_path_1843_floats demos/subwaymap.c /^static const float objl_path_1843_floats[]={$/;" v file: +objl_path_1844_cmds demos/subwaymap.c /^static const unsigned char objl_path_1844_cmds[]={$/;" v file: +objl_path_1844_floats demos/subwaymap.c /^static const float objl_path_1844_floats[]={$/;" v file: +objl_path_1845_cmds demos/subwaymap.c /^static const unsigned char objl_path_1845_cmds[]={$/;" v file: +objl_path_1845_floats demos/subwaymap.c /^static const float objl_path_1845_floats[]={$/;" v file: +objl_path_1846_cmds demos/subwaymap.c /^static const unsigned char objl_path_1846_cmds[]={$/;" v file: +objl_path_1846_floats demos/subwaymap.c /^static const float objl_path_1846_floats[]={$/;" v file: +objl_path_1847_cmds demos/subwaymap.c /^static const unsigned char objl_path_1847_cmds[]={$/;" v file: +objl_path_1847_floats demos/subwaymap.c /^static const float objl_path_1847_floats[]={$/;" v file: +objl_path_1848_cmds demos/subwaymap.c /^static const unsigned char objl_path_1848_cmds[]={$/;" v file: +objl_path_1848_floats demos/subwaymap.c /^static const float objl_path_1848_floats[]={$/;" v file: +objl_path_1849_cmds demos/subwaymap.c /^static const unsigned char objl_path_1849_cmds[]={$/;" v file: +objl_path_1849_floats demos/subwaymap.c /^static const float objl_path_1849_floats[]={$/;" v file: +objl_path_184_cmds demos/subwaymap.c /^static const unsigned char objl_path_184_cmds[]={$/;" v file: +objl_path_184_floats demos/subwaymap.c /^static const float objl_path_184_floats[]={$/;" v file: +objl_path_1850_cmds demos/subwaymap.c /^static const unsigned char objl_path_1850_cmds[]={$/;" v file: +objl_path_1850_floats demos/subwaymap.c /^static const float objl_path_1850_floats[]={$/;" v file: +objl_path_1851_cmds demos/subwaymap.c /^static const unsigned char objl_path_1851_cmds[]={$/;" v file: +objl_path_1851_floats demos/subwaymap.c /^static const float objl_path_1851_floats[]={$/;" v file: +objl_path_1852_cmds demos/subwaymap.c /^static const unsigned char objl_path_1852_cmds[]={$/;" v file: +objl_path_1852_floats demos/subwaymap.c /^static const float objl_path_1852_floats[]={$/;" v file: +objl_path_1853_cmds demos/subwaymap.c /^static const unsigned char objl_path_1853_cmds[]={$/;" v file: +objl_path_1853_floats demos/subwaymap.c /^static const float objl_path_1853_floats[]={$/;" v file: +objl_path_1854_cmds demos/subwaymap.c /^static const unsigned char objl_path_1854_cmds[]={$/;" v file: +objl_path_1854_floats demos/subwaymap.c /^static const float objl_path_1854_floats[]={$/;" v file: +objl_path_1855_cmds demos/subwaymap.c /^static const unsigned char objl_path_1855_cmds[]={$/;" v file: +objl_path_1855_floats demos/subwaymap.c /^static const float objl_path_1855_floats[]={$/;" v file: +objl_path_1856_cmds demos/subwaymap.c /^static const unsigned char objl_path_1856_cmds[]={$/;" v file: +objl_path_1856_floats demos/subwaymap.c /^static const float objl_path_1856_floats[]={$/;" v file: +objl_path_1857_cmds demos/subwaymap.c /^static const unsigned char objl_path_1857_cmds[]={$/;" v file: +objl_path_1857_floats demos/subwaymap.c /^static const float objl_path_1857_floats[]={$/;" v file: +objl_path_1858_cmds demos/subwaymap.c /^static const unsigned char objl_path_1858_cmds[]={$/;" v file: +objl_path_1858_floats demos/subwaymap.c /^static const float objl_path_1858_floats[]={$/;" v file: +objl_path_1859_cmds demos/subwaymap.c /^static const unsigned char objl_path_1859_cmds[]={$/;" v file: +objl_path_1859_floats demos/subwaymap.c /^static const float objl_path_1859_floats[]={$/;" v file: +objl_path_185_cmds demos/subwaymap.c /^static const unsigned char objl_path_185_cmds[]={$/;" v file: +objl_path_185_floats demos/subwaymap.c /^static const float objl_path_185_floats[]={$/;" v file: +objl_path_1860_cmds demos/subwaymap.c /^static const unsigned char objl_path_1860_cmds[]={$/;" v file: +objl_path_1860_floats demos/subwaymap.c /^static const float objl_path_1860_floats[]={$/;" v file: +objl_path_1861_cmds demos/subwaymap.c /^static const unsigned char objl_path_1861_cmds[]={$/;" v file: +objl_path_1861_floats demos/subwaymap.c /^static const float objl_path_1861_floats[]={$/;" v file: +objl_path_1862_cmds demos/subwaymap.c /^static const unsigned char objl_path_1862_cmds[]={$/;" v file: +objl_path_1862_floats demos/subwaymap.c /^static const float objl_path_1862_floats[]={$/;" v file: +objl_path_1863_cmds demos/subwaymap.c /^static const unsigned char objl_path_1863_cmds[]={$/;" v file: +objl_path_1863_floats demos/subwaymap.c /^static const float objl_path_1863_floats[]={$/;" v file: +objl_path_1864_cmds demos/subwaymap.c /^static const unsigned char objl_path_1864_cmds[]={$/;" v file: +objl_path_1864_floats demos/subwaymap.c /^static const float objl_path_1864_floats[]={$/;" v file: +objl_path_1865_cmds demos/subwaymap.c /^static const unsigned char objl_path_1865_cmds[]={$/;" v file: +objl_path_1865_floats demos/subwaymap.c /^static const float objl_path_1865_floats[]={$/;" v file: +objl_path_1866_cmds demos/subwaymap.c /^static const unsigned char objl_path_1866_cmds[]={$/;" v file: +objl_path_1866_floats demos/subwaymap.c /^static const float objl_path_1866_floats[]={$/;" v file: +objl_path_1867_cmds demos/subwaymap.c /^static const unsigned char objl_path_1867_cmds[]={$/;" v file: +objl_path_1867_floats demos/subwaymap.c /^static const float objl_path_1867_floats[]={$/;" v file: +objl_path_1868_cmds demos/subwaymap.c /^static const unsigned char objl_path_1868_cmds[]={$/;" v file: +objl_path_1868_floats demos/subwaymap.c /^static const float objl_path_1868_floats[]={$/;" v file: +objl_path_1869_cmds demos/subwaymap.c /^static const unsigned char objl_path_1869_cmds[]={$/;" v file: +objl_path_1869_floats demos/subwaymap.c /^static const float objl_path_1869_floats[]={$/;" v file: +objl_path_186_cmds demos/subwaymap.c /^static const unsigned char objl_path_186_cmds[]={$/;" v file: +objl_path_186_floats demos/subwaymap.c /^static const float objl_path_186_floats[]={$/;" v file: +objl_path_1870_cmds demos/subwaymap.c /^static const unsigned char objl_path_1870_cmds[]={$/;" v file: +objl_path_1870_floats demos/subwaymap.c /^static const float objl_path_1870_floats[]={$/;" v file: +objl_path_1871_cmds demos/subwaymap.c /^static const unsigned char objl_path_1871_cmds[]={$/;" v file: +objl_path_1871_floats demos/subwaymap.c /^static const float objl_path_1871_floats[]={$/;" v file: +objl_path_1872_cmds demos/subwaymap.c /^static const unsigned char objl_path_1872_cmds[]={$/;" v file: +objl_path_1872_floats demos/subwaymap.c /^static const float objl_path_1872_floats[]={$/;" v file: +objl_path_1873_cmds demos/subwaymap.c /^static const unsigned char objl_path_1873_cmds[]={$/;" v file: +objl_path_1873_floats demos/subwaymap.c /^static const float objl_path_1873_floats[]={$/;" v file: +objl_path_1874_cmds demos/subwaymap.c /^static const unsigned char objl_path_1874_cmds[]={$/;" v file: +objl_path_1874_floats demos/subwaymap.c /^static const float objl_path_1874_floats[]={$/;" v file: +objl_path_1875_cmds demos/subwaymap.c /^static const unsigned char objl_path_1875_cmds[]={$/;" v file: +objl_path_1875_floats demos/subwaymap.c /^static const float objl_path_1875_floats[]={$/;" v file: +objl_path_1876_cmds demos/subwaymap.c /^static const unsigned char objl_path_1876_cmds[]={$/;" v file: +objl_path_1876_floats demos/subwaymap.c /^static const float objl_path_1876_floats[]={$/;" v file: +objl_path_1877_cmds demos/subwaymap.c /^static const unsigned char objl_path_1877_cmds[]={$/;" v file: +objl_path_1877_floats demos/subwaymap.c /^static const float objl_path_1877_floats[]={$/;" v file: +objl_path_1878_cmds demos/subwaymap.c /^static const unsigned char objl_path_1878_cmds[]={$/;" v file: +objl_path_1878_floats demos/subwaymap.c /^static const float objl_path_1878_floats[]={$/;" v file: +objl_path_1879_cmds demos/subwaymap.c /^static const unsigned char objl_path_1879_cmds[]={$/;" v file: +objl_path_1879_floats demos/subwaymap.c /^static const float objl_path_1879_floats[]={$/;" v file: +objl_path_187_cmds demos/subwaymap.c /^static const unsigned char objl_path_187_cmds[]={$/;" v file: +objl_path_187_floats demos/subwaymap.c /^static const float objl_path_187_floats[]={$/;" v file: +objl_path_1880_cmds demos/subwaymap.c /^static const unsigned char objl_path_1880_cmds[]={$/;" v file: +objl_path_1880_floats demos/subwaymap.c /^static const float objl_path_1880_floats[]={$/;" v file: +objl_path_1881_cmds demos/subwaymap.c /^static const unsigned char objl_path_1881_cmds[]={$/;" v file: +objl_path_1881_floats demos/subwaymap.c /^static const float objl_path_1881_floats[]={$/;" v file: +objl_path_1882_cmds demos/subwaymap.c /^static const unsigned char objl_path_1882_cmds[]={$/;" v file: +objl_path_1882_floats demos/subwaymap.c /^static const float objl_path_1882_floats[]={$/;" v file: +objl_path_1883_cmds demos/subwaymap.c /^static const unsigned char objl_path_1883_cmds[]={$/;" v file: +objl_path_1883_floats demos/subwaymap.c /^static const float objl_path_1883_floats[]={$/;" v file: +objl_path_1884_cmds demos/subwaymap.c /^static const unsigned char objl_path_1884_cmds[]={$/;" v file: +objl_path_1884_floats demos/subwaymap.c /^static const float objl_path_1884_floats[]={$/;" v file: +objl_path_1885_cmds demos/subwaymap.c /^static const unsigned char objl_path_1885_cmds[]={$/;" v file: +objl_path_1885_floats demos/subwaymap.c /^static const float objl_path_1885_floats[]={$/;" v file: +objl_path_1886_cmds demos/subwaymap.c /^static const unsigned char objl_path_1886_cmds[]={$/;" v file: +objl_path_1886_floats demos/subwaymap.c /^static const float objl_path_1886_floats[]={$/;" v file: +objl_path_1887_cmds demos/subwaymap.c /^static const unsigned char objl_path_1887_cmds[]={$/;" v file: +objl_path_1887_floats demos/subwaymap.c /^static const float objl_path_1887_floats[]={$/;" v file: +objl_path_1888_cmds demos/subwaymap.c /^static const unsigned char objl_path_1888_cmds[]={$/;" v file: +objl_path_1888_floats demos/subwaymap.c /^static const float objl_path_1888_floats[]={$/;" v file: +objl_path_1889_cmds demos/subwaymap.c /^static const unsigned char objl_path_1889_cmds[]={$/;" v file: +objl_path_1889_floats demos/subwaymap.c /^static const float objl_path_1889_floats[]={$/;" v file: +objl_path_188_cmds demos/subwaymap.c /^static const unsigned char objl_path_188_cmds[]={$/;" v file: +objl_path_188_floats demos/subwaymap.c /^static const float objl_path_188_floats[]={$/;" v file: +objl_path_1890_cmds demos/subwaymap.c /^static const unsigned char objl_path_1890_cmds[]={$/;" v file: +objl_path_1890_floats demos/subwaymap.c /^static const float objl_path_1890_floats[]={$/;" v file: +objl_path_1891_cmds demos/subwaymap.c /^static const unsigned char objl_path_1891_cmds[]={$/;" v file: +objl_path_1891_floats demos/subwaymap.c /^static const float objl_path_1891_floats[]={$/;" v file: +objl_path_1892_cmds demos/subwaymap.c /^static const unsigned char objl_path_1892_cmds[]={$/;" v file: +objl_path_1892_floats demos/subwaymap.c /^static const float objl_path_1892_floats[]={$/;" v file: +objl_path_1893_cmds demos/subwaymap.c /^static const unsigned char objl_path_1893_cmds[]={$/;" v file: +objl_path_1893_floats demos/subwaymap.c /^static const float objl_path_1893_floats[]={$/;" v file: +objl_path_1894_cmds demos/subwaymap.c /^static const unsigned char objl_path_1894_cmds[]={$/;" v file: +objl_path_1894_floats demos/subwaymap.c /^static const float objl_path_1894_floats[]={$/;" v file: +objl_path_1895_cmds demos/subwaymap.c /^static const unsigned char objl_path_1895_cmds[]={$/;" v file: +objl_path_1895_floats demos/subwaymap.c /^static const float objl_path_1895_floats[]={$/;" v file: +objl_path_1896_cmds demos/subwaymap.c /^static const unsigned char objl_path_1896_cmds[]={$/;" v file: +objl_path_1896_floats demos/subwaymap.c /^static const float objl_path_1896_floats[]={$/;" v file: +objl_path_1897_cmds demos/subwaymap.c /^static const unsigned char objl_path_1897_cmds[]={$/;" v file: +objl_path_1897_floats demos/subwaymap.c /^static const float objl_path_1897_floats[]={$/;" v file: +objl_path_1898_cmds demos/subwaymap.c /^static const unsigned char objl_path_1898_cmds[]={$/;" v file: +objl_path_1898_floats demos/subwaymap.c /^static const float objl_path_1898_floats[]={$/;" v file: +objl_path_1899_cmds demos/subwaymap.c /^static const unsigned char objl_path_1899_cmds[]={$/;" v file: +objl_path_1899_floats demos/subwaymap.c /^static const float objl_path_1899_floats[]={$/;" v file: +objl_path_189_cmds demos/subwaymap.c /^static const unsigned char objl_path_189_cmds[]={$/;" v file: +objl_path_189_floats demos/subwaymap.c /^static const float objl_path_189_floats[]={$/;" v file: +objl_path_18_cmds demos/subwaymap.c /^static const unsigned char objl_path_18_cmds[]={$/;" v file: +objl_path_18_floats demos/subwaymap.c /^static const float objl_path_18_floats[]={$/;" v file: +objl_path_1900_cmds demos/subwaymap.c /^static const unsigned char objl_path_1900_cmds[]={$/;" v file: +objl_path_1900_floats demos/subwaymap.c /^static const float objl_path_1900_floats[]={$/;" v file: +objl_path_1901_cmds demos/subwaymap.c /^static const unsigned char objl_path_1901_cmds[]={$/;" v file: +objl_path_1901_floats demos/subwaymap.c /^static const float objl_path_1901_floats[]={$/;" v file: +objl_path_1902_cmds demos/subwaymap.c /^static const unsigned char objl_path_1902_cmds[]={$/;" v file: +objl_path_1902_floats demos/subwaymap.c /^static const float objl_path_1902_floats[]={$/;" v file: +objl_path_1903_cmds demos/subwaymap.c /^static const unsigned char objl_path_1903_cmds[]={$/;" v file: +objl_path_1903_floats demos/subwaymap.c /^static const float objl_path_1903_floats[]={$/;" v file: +objl_path_1904_cmds demos/subwaymap.c /^static const unsigned char objl_path_1904_cmds[]={$/;" v file: +objl_path_1904_floats demos/subwaymap.c /^static const float objl_path_1904_floats[]={$/;" v file: +objl_path_1905_cmds demos/subwaymap.c /^static const unsigned char objl_path_1905_cmds[]={$/;" v file: +objl_path_1905_floats demos/subwaymap.c /^static const float objl_path_1905_floats[]={$/;" v file: +objl_path_1906_cmds demos/subwaymap.c /^static const unsigned char objl_path_1906_cmds[]={$/;" v file: +objl_path_1906_floats demos/subwaymap.c /^static const float objl_path_1906_floats[]={$/;" v file: +objl_path_1907_cmds demos/subwaymap.c /^static const unsigned char objl_path_1907_cmds[]={$/;" v file: +objl_path_1907_floats demos/subwaymap.c /^static const float objl_path_1907_floats[]={$/;" v file: +objl_path_1908_cmds demos/subwaymap.c /^static const unsigned char objl_path_1908_cmds[]={$/;" v file: +objl_path_1908_floats demos/subwaymap.c /^static const float objl_path_1908_floats[]={$/;" v file: +objl_path_1909_cmds demos/subwaymap.c /^static const unsigned char objl_path_1909_cmds[]={$/;" v file: +objl_path_1909_floats demos/subwaymap.c /^static const float objl_path_1909_floats[]={$/;" v file: +objl_path_190_cmds demos/subwaymap.c /^static const unsigned char objl_path_190_cmds[]={$/;" v file: +objl_path_190_floats demos/subwaymap.c /^static const float objl_path_190_floats[]={$/;" v file: +objl_path_1910_cmds demos/subwaymap.c /^static const unsigned char objl_path_1910_cmds[]={$/;" v file: +objl_path_1910_floats demos/subwaymap.c /^static const float objl_path_1910_floats[]={$/;" v file: +objl_path_1911_cmds demos/subwaymap.c /^static const unsigned char objl_path_1911_cmds[]={$/;" v file: +objl_path_1911_floats demos/subwaymap.c /^static const float objl_path_1911_floats[]={$/;" v file: +objl_path_1912_cmds demos/subwaymap.c /^static const unsigned char objl_path_1912_cmds[]={$/;" v file: +objl_path_1912_floats demos/subwaymap.c /^static const float objl_path_1912_floats[]={$/;" v file: +objl_path_1913_cmds demos/subwaymap.c /^static const unsigned char objl_path_1913_cmds[]={$/;" v file: +objl_path_1913_floats demos/subwaymap.c /^static const float objl_path_1913_floats[]={$/;" v file: +objl_path_1914_cmds demos/subwaymap.c /^static const unsigned char objl_path_1914_cmds[]={$/;" v file: +objl_path_1914_floats demos/subwaymap.c /^static const float objl_path_1914_floats[]={$/;" v file: +objl_path_1915_cmds demos/subwaymap.c /^static const unsigned char objl_path_1915_cmds[]={$/;" v file: +objl_path_1915_floats demos/subwaymap.c /^static const float objl_path_1915_floats[]={$/;" v file: +objl_path_1916_cmds demos/subwaymap.c /^static const unsigned char objl_path_1916_cmds[]={$/;" v file: +objl_path_1916_floats demos/subwaymap.c /^static const float objl_path_1916_floats[]={$/;" v file: +objl_path_1917_cmds demos/subwaymap.c /^static const unsigned char objl_path_1917_cmds[]={$/;" v file: +objl_path_1917_floats demos/subwaymap.c /^static const float objl_path_1917_floats[]={$/;" v file: +objl_path_1918_cmds demos/subwaymap.c /^static const unsigned char objl_path_1918_cmds[]={$/;" v file: +objl_path_1918_floats demos/subwaymap.c /^static const float objl_path_1918_floats[]={$/;" v file: +objl_path_1919_cmds demos/subwaymap.c /^static const unsigned char objl_path_1919_cmds[]={$/;" v file: +objl_path_1919_floats demos/subwaymap.c /^static const float objl_path_1919_floats[]={$/;" v file: +objl_path_191_cmds demos/subwaymap.c /^static const unsigned char objl_path_191_cmds[]={$/;" v file: +objl_path_191_floats demos/subwaymap.c /^static const float objl_path_191_floats[]={$/;" v file: +objl_path_1920_cmds demos/subwaymap.c /^static const unsigned char objl_path_1920_cmds[]={$/;" v file: +objl_path_1920_floats demos/subwaymap.c /^static const float objl_path_1920_floats[]={$/;" v file: +objl_path_1921_cmds demos/subwaymap.c /^static const unsigned char objl_path_1921_cmds[]={$/;" v file: +objl_path_1921_floats demos/subwaymap.c /^static const float objl_path_1921_floats[]={$/;" v file: +objl_path_1922_cmds demos/subwaymap.c /^static const unsigned char objl_path_1922_cmds[]={$/;" v file: +objl_path_1922_floats demos/subwaymap.c /^static const float objl_path_1922_floats[]={$/;" v file: +objl_path_1923_cmds demos/subwaymap.c /^static const unsigned char objl_path_1923_cmds[]={$/;" v file: +objl_path_1923_floats demos/subwaymap.c /^static const float objl_path_1923_floats[]={$/;" v file: +objl_path_1924_cmds demos/subwaymap.c /^static const unsigned char objl_path_1924_cmds[]={$/;" v file: +objl_path_1924_floats demos/subwaymap.c /^static const float objl_path_1924_floats[]={$/;" v file: +objl_path_1925_cmds demos/subwaymap.c /^static const unsigned char objl_path_1925_cmds[]={$/;" v file: +objl_path_1925_floats demos/subwaymap.c /^static const float objl_path_1925_floats[]={$/;" v file: +objl_path_1926_cmds demos/subwaymap.c /^static const unsigned char objl_path_1926_cmds[]={$/;" v file: +objl_path_1926_floats demos/subwaymap.c /^static const float objl_path_1926_floats[]={$/;" v file: +objl_path_1927_cmds demos/subwaymap.c /^static const unsigned char objl_path_1927_cmds[]={$/;" v file: +objl_path_1927_floats demos/subwaymap.c /^static const float objl_path_1927_floats[]={$/;" v file: +objl_path_1928_cmds demos/subwaymap.c /^static const unsigned char objl_path_1928_cmds[]={$/;" v file: +objl_path_1928_floats demos/subwaymap.c /^static const float objl_path_1928_floats[]={$/;" v file: +objl_path_1929_cmds demos/subwaymap.c /^static const unsigned char objl_path_1929_cmds[]={$/;" v file: +objl_path_1929_floats demos/subwaymap.c /^static const float objl_path_1929_floats[]={$/;" v file: +objl_path_192_cmds demos/subwaymap.c /^static const unsigned char objl_path_192_cmds[]={$/;" v file: +objl_path_192_floats demos/subwaymap.c /^static const float objl_path_192_floats[]={$/;" v file: +objl_path_1930_cmds demos/subwaymap.c /^static const unsigned char objl_path_1930_cmds[]={$/;" v file: +objl_path_1930_floats demos/subwaymap.c /^static const float objl_path_1930_floats[]={$/;" v file: +objl_path_1931_cmds demos/subwaymap.c /^static const unsigned char objl_path_1931_cmds[]={$/;" v file: +objl_path_1931_floats demos/subwaymap.c /^static const float objl_path_1931_floats[]={$/;" v file: +objl_path_1932_cmds demos/subwaymap.c /^static const unsigned char objl_path_1932_cmds[]={$/;" v file: +objl_path_1932_floats demos/subwaymap.c /^static const float objl_path_1932_floats[]={$/;" v file: +objl_path_1933_cmds demos/subwaymap.c /^static const unsigned char objl_path_1933_cmds[]={$/;" v file: +objl_path_1933_floats demos/subwaymap.c /^static const float objl_path_1933_floats[]={$/;" v file: +objl_path_1934_cmds demos/subwaymap.c /^static const unsigned char objl_path_1934_cmds[]={$/;" v file: +objl_path_1934_floats demos/subwaymap.c /^static const float objl_path_1934_floats[]={$/;" v file: +objl_path_1935_cmds demos/subwaymap.c /^static const unsigned char objl_path_1935_cmds[]={$/;" v file: +objl_path_1935_floats demos/subwaymap.c /^static const float objl_path_1935_floats[]={$/;" v file: +objl_path_1936_cmds demos/subwaymap.c /^static const unsigned char objl_path_1936_cmds[]={$/;" v file: +objl_path_1936_floats demos/subwaymap.c /^static const float objl_path_1936_floats[]={$/;" v file: +objl_path_1937_cmds demos/subwaymap.c /^static const unsigned char objl_path_1937_cmds[]={$/;" v file: +objl_path_1937_floats demos/subwaymap.c /^static const float objl_path_1937_floats[]={$/;" v file: +objl_path_1938_cmds demos/subwaymap.c /^static const unsigned char objl_path_1938_cmds[]={$/;" v file: +objl_path_1938_floats demos/subwaymap.c /^static const float objl_path_1938_floats[]={$/;" v file: +objl_path_1939_cmds demos/subwaymap.c /^static const unsigned char objl_path_1939_cmds[]={$/;" v file: +objl_path_1939_floats demos/subwaymap.c /^static const float objl_path_1939_floats[]={$/;" v file: +objl_path_193_cmds demos/subwaymap.c /^static const unsigned char objl_path_193_cmds[]={$/;" v file: +objl_path_193_floats demos/subwaymap.c /^static const float objl_path_193_floats[]={$/;" v file: +objl_path_1940_cmds demos/subwaymap.c /^static const unsigned char objl_path_1940_cmds[]={$/;" v file: +objl_path_1940_floats demos/subwaymap.c /^static const float objl_path_1940_floats[]={$/;" v file: +objl_path_1941_cmds demos/subwaymap.c /^static const unsigned char objl_path_1941_cmds[]={$/;" v file: +objl_path_1941_floats demos/subwaymap.c /^static const float objl_path_1941_floats[]={$/;" v file: +objl_path_1942_cmds demos/subwaymap.c /^static const unsigned char objl_path_1942_cmds[]={$/;" v file: +objl_path_1942_floats demos/subwaymap.c /^static const float objl_path_1942_floats[]={$/;" v file: +objl_path_1943_cmds demos/subwaymap.c /^static const unsigned char objl_path_1943_cmds[]={$/;" v file: +objl_path_1943_floats demos/subwaymap.c /^static const float objl_path_1943_floats[]={$/;" v file: +objl_path_1944_cmds demos/subwaymap.c /^static const unsigned char objl_path_1944_cmds[]={$/;" v file: +objl_path_1944_floats demos/subwaymap.c /^static const float objl_path_1944_floats[]={$/;" v file: +objl_path_1945_cmds demos/subwaymap.c /^static const unsigned char objl_path_1945_cmds[]={$/;" v file: +objl_path_1945_floats demos/subwaymap.c /^static const float objl_path_1945_floats[]={$/;" v file: +objl_path_1946_cmds demos/subwaymap.c /^static const unsigned char objl_path_1946_cmds[]={$/;" v file: +objl_path_1946_floats demos/subwaymap.c /^static const float objl_path_1946_floats[]={$/;" v file: +objl_path_1947_cmds demos/subwaymap.c /^static const unsigned char objl_path_1947_cmds[]={$/;" v file: +objl_path_1947_floats demos/subwaymap.c /^static const float objl_path_1947_floats[]={$/;" v file: +objl_path_1948_cmds demos/subwaymap.c /^static const unsigned char objl_path_1948_cmds[]={$/;" v file: +objl_path_1948_floats demos/subwaymap.c /^static const float objl_path_1948_floats[]={$/;" v file: +objl_path_1949_cmds demos/subwaymap.c /^static const unsigned char objl_path_1949_cmds[]={$/;" v file: +objl_path_1949_floats demos/subwaymap.c /^static const float objl_path_1949_floats[]={$/;" v file: +objl_path_194_cmds demos/subwaymap.c /^static const unsigned char objl_path_194_cmds[]={$/;" v file: +objl_path_194_floats demos/subwaymap.c /^static const float objl_path_194_floats[]={$/;" v file: +objl_path_1950_cmds demos/subwaymap.c /^static const unsigned char objl_path_1950_cmds[]={$/;" v file: +objl_path_1950_floats demos/subwaymap.c /^static const float objl_path_1950_floats[]={$/;" v file: +objl_path_1951_cmds demos/subwaymap.c /^static const unsigned char objl_path_1951_cmds[]={$/;" v file: +objl_path_1951_floats demos/subwaymap.c /^static const float objl_path_1951_floats[]={$/;" v file: +objl_path_1952_cmds demos/subwaymap.c /^static const unsigned char objl_path_1952_cmds[]={$/;" v file: +objl_path_1952_floats demos/subwaymap.c /^static const float objl_path_1952_floats[]={$/;" v file: +objl_path_1953_cmds demos/subwaymap.c /^static const unsigned char objl_path_1953_cmds[]={$/;" v file: +objl_path_1953_floats demos/subwaymap.c /^static const float objl_path_1953_floats[]={$/;" v file: +objl_path_1954_cmds demos/subwaymap.c /^static const unsigned char objl_path_1954_cmds[]={$/;" v file: +objl_path_1954_floats demos/subwaymap.c /^static const float objl_path_1954_floats[]={$/;" v file: +objl_path_1955_cmds demos/subwaymap.c /^static const unsigned char objl_path_1955_cmds[]={$/;" v file: +objl_path_1955_floats demos/subwaymap.c /^static const float objl_path_1955_floats[]={$/;" v file: +objl_path_1956_cmds demos/subwaymap.c /^static const unsigned char objl_path_1956_cmds[]={$/;" v file: +objl_path_1956_floats demos/subwaymap.c /^static const float objl_path_1956_floats[]={$/;" v file: +objl_path_1957_cmds demos/subwaymap.c /^static const unsigned char objl_path_1957_cmds[]={$/;" v file: +objl_path_1957_floats demos/subwaymap.c /^static const float objl_path_1957_floats[]={$/;" v file: +objl_path_1958_cmds demos/subwaymap.c /^static const unsigned char objl_path_1958_cmds[]={$/;" v file: +objl_path_1958_floats demos/subwaymap.c /^static const float objl_path_1958_floats[]={$/;" v file: +objl_path_1959_cmds demos/subwaymap.c /^static const unsigned char objl_path_1959_cmds[]={$/;" v file: +objl_path_1959_floats demos/subwaymap.c /^static const float objl_path_1959_floats[]={$/;" v file: +objl_path_195_cmds demos/subwaymap.c /^static const unsigned char objl_path_195_cmds[]={$/;" v file: +objl_path_195_floats demos/subwaymap.c /^static const float objl_path_195_floats[]={$/;" v file: +objl_path_1960_cmds demos/subwaymap.c /^static const unsigned char objl_path_1960_cmds[]={$/;" v file: +objl_path_1960_floats demos/subwaymap.c /^static const float objl_path_1960_floats[]={$/;" v file: +objl_path_1961_cmds demos/subwaymap.c /^static const unsigned char objl_path_1961_cmds[]={$/;" v file: +objl_path_1961_floats demos/subwaymap.c /^static const float objl_path_1961_floats[]={$/;" v file: +objl_path_1962_cmds demos/subwaymap.c /^static const unsigned char objl_path_1962_cmds[]={$/;" v file: +objl_path_1962_floats demos/subwaymap.c /^static const float objl_path_1962_floats[]={$/;" v file: +objl_path_1963_cmds demos/subwaymap.c /^static const unsigned char objl_path_1963_cmds[]={$/;" v file: +objl_path_1963_floats demos/subwaymap.c /^static const float objl_path_1963_floats[]={$/;" v file: +objl_path_1964_cmds demos/subwaymap.c /^static const unsigned char objl_path_1964_cmds[]={$/;" v file: +objl_path_1964_floats demos/subwaymap.c /^static const float objl_path_1964_floats[]={$/;" v file: +objl_path_1965_cmds demos/subwaymap.c /^static const unsigned char objl_path_1965_cmds[]={$/;" v file: +objl_path_1965_floats demos/subwaymap.c /^static const float objl_path_1965_floats[]={$/;" v file: +objl_path_1966_cmds demos/subwaymap.c /^static const unsigned char objl_path_1966_cmds[]={$/;" v file: +objl_path_1966_floats demos/subwaymap.c /^static const float objl_path_1966_floats[]={$/;" v file: +objl_path_1967_cmds demos/subwaymap.c /^static const unsigned char objl_path_1967_cmds[]={$/;" v file: +objl_path_1967_floats demos/subwaymap.c /^static const float objl_path_1967_floats[]={$/;" v file: +objl_path_1968_cmds demos/subwaymap.c /^static const unsigned char objl_path_1968_cmds[]={$/;" v file: +objl_path_1968_floats demos/subwaymap.c /^static const float objl_path_1968_floats[]={$/;" v file: +objl_path_1969_cmds demos/subwaymap.c /^static const unsigned char objl_path_1969_cmds[]={$/;" v file: +objl_path_1969_floats demos/subwaymap.c /^static const float objl_path_1969_floats[]={$/;" v file: +objl_path_196_cmds demos/subwaymap.c /^static const unsigned char objl_path_196_cmds[]={$/;" v file: +objl_path_196_floats demos/subwaymap.c /^static const float objl_path_196_floats[]={$/;" v file: +objl_path_1970_cmds demos/subwaymap.c /^static const unsigned char objl_path_1970_cmds[]={$/;" v file: +objl_path_1970_floats demos/subwaymap.c /^static const float objl_path_1970_floats[]={$/;" v file: +objl_path_1971_cmds demos/subwaymap.c /^static const unsigned char objl_path_1971_cmds[]={$/;" v file: +objl_path_1971_floats demos/subwaymap.c /^static const float objl_path_1971_floats[]={$/;" v file: +objl_path_1972_cmds demos/subwaymap.c /^static const unsigned char objl_path_1972_cmds[]={$/;" v file: +objl_path_1972_floats demos/subwaymap.c /^static const float objl_path_1972_floats[]={$/;" v file: +objl_path_1973_cmds demos/subwaymap.c /^static const unsigned char objl_path_1973_cmds[]={$/;" v file: +objl_path_1973_floats demos/subwaymap.c /^static const float objl_path_1973_floats[]={$/;" v file: +objl_path_1974_cmds demos/subwaymap.c /^static const unsigned char objl_path_1974_cmds[]={$/;" v file: +objl_path_1974_floats demos/subwaymap.c /^static const float objl_path_1974_floats[]={$/;" v file: +objl_path_1975_cmds demos/subwaymap.c /^static const unsigned char objl_path_1975_cmds[]={$/;" v file: +objl_path_1975_floats demos/subwaymap.c /^static const float objl_path_1975_floats[]={$/;" v file: +objl_path_1976_cmds demos/subwaymap.c /^static const unsigned char objl_path_1976_cmds[]={$/;" v file: +objl_path_1976_floats demos/subwaymap.c /^static const float objl_path_1976_floats[]={$/;" v file: +objl_path_1977_cmds demos/subwaymap.c /^static const unsigned char objl_path_1977_cmds[]={$/;" v file: +objl_path_1977_floats demos/subwaymap.c /^static const float objl_path_1977_floats[]={$/;" v file: +objl_path_1978_cmds demos/subwaymap.c /^static const unsigned char objl_path_1978_cmds[]={$/;" v file: +objl_path_1978_floats demos/subwaymap.c /^static const float objl_path_1978_floats[]={$/;" v file: +objl_path_1979_cmds demos/subwaymap.c /^static const unsigned char objl_path_1979_cmds[]={$/;" v file: +objl_path_1979_floats demos/subwaymap.c /^static const float objl_path_1979_floats[]={$/;" v file: +objl_path_197_cmds demos/subwaymap.c /^static const unsigned char objl_path_197_cmds[]={$/;" v file: +objl_path_197_floats demos/subwaymap.c /^static const float objl_path_197_floats[]={$/;" v file: +objl_path_1980_cmds demos/subwaymap.c /^static const unsigned char objl_path_1980_cmds[]={$/;" v file: +objl_path_1980_floats demos/subwaymap.c /^static const float objl_path_1980_floats[]={$/;" v file: +objl_path_1981_cmds demos/subwaymap.c /^static const unsigned char objl_path_1981_cmds[]={$/;" v file: +objl_path_1981_floats demos/subwaymap.c /^static const float objl_path_1981_floats[]={$/;" v file: +objl_path_1982_cmds demos/subwaymap.c /^static const unsigned char objl_path_1982_cmds[]={$/;" v file: +objl_path_1982_floats demos/subwaymap.c /^static const float objl_path_1982_floats[]={$/;" v file: +objl_path_1983_cmds demos/subwaymap.c /^static const unsigned char objl_path_1983_cmds[]={$/;" v file: +objl_path_1983_floats demos/subwaymap.c /^static const float objl_path_1983_floats[]={$/;" v file: +objl_path_1984_cmds demos/subwaymap.c /^static const unsigned char objl_path_1984_cmds[]={$/;" v file: +objl_path_1984_floats demos/subwaymap.c /^static const float objl_path_1984_floats[]={$/;" v file: +objl_path_1985_cmds demos/subwaymap.c /^static const unsigned char objl_path_1985_cmds[]={$/;" v file: +objl_path_1985_floats demos/subwaymap.c /^static const float objl_path_1985_floats[]={$/;" v file: +objl_path_1986_cmds demos/subwaymap.c /^static const unsigned char objl_path_1986_cmds[]={$/;" v file: +objl_path_1986_floats demos/subwaymap.c /^static const float objl_path_1986_floats[]={$/;" v file: +objl_path_1987_cmds demos/subwaymap.c /^static const unsigned char objl_path_1987_cmds[]={$/;" v file: +objl_path_1987_floats demos/subwaymap.c /^static const float objl_path_1987_floats[]={$/;" v file: +objl_path_1988_cmds demos/subwaymap.c /^static const unsigned char objl_path_1988_cmds[]={$/;" v file: +objl_path_1988_floats demos/subwaymap.c /^static const float objl_path_1988_floats[]={$/;" v file: +objl_path_1989_cmds demos/subwaymap.c /^static const unsigned char objl_path_1989_cmds[]={$/;" v file: +objl_path_1989_floats demos/subwaymap.c /^static const float objl_path_1989_floats[]={$/;" v file: +objl_path_198_cmds demos/subwaymap.c /^static const unsigned char objl_path_198_cmds[]={$/;" v file: +objl_path_198_floats demos/subwaymap.c /^static const float objl_path_198_floats[]={$/;" v file: +objl_path_1990_cmds demos/subwaymap.c /^static const unsigned char objl_path_1990_cmds[]={$/;" v file: +objl_path_1990_floats demos/subwaymap.c /^static const float objl_path_1990_floats[]={$/;" v file: +objl_path_1991_cmds demos/subwaymap.c /^static const unsigned char objl_path_1991_cmds[]={$/;" v file: +objl_path_1991_floats demos/subwaymap.c /^static const float objl_path_1991_floats[]={$/;" v file: +objl_path_1992_cmds demos/subwaymap.c /^static const unsigned char objl_path_1992_cmds[]={$/;" v file: +objl_path_1992_floats demos/subwaymap.c /^static const float objl_path_1992_floats[]={$/;" v file: +objl_path_1993_cmds demos/subwaymap.c /^static const unsigned char objl_path_1993_cmds[]={$/;" v file: +objl_path_1993_floats demos/subwaymap.c /^static const float objl_path_1993_floats[]={$/;" v file: +objl_path_1994_cmds demos/subwaymap.c /^static const unsigned char objl_path_1994_cmds[]={$/;" v file: +objl_path_1994_floats demos/subwaymap.c /^static const float objl_path_1994_floats[]={$/;" v file: +objl_path_1995_cmds demos/subwaymap.c /^static const unsigned char objl_path_1995_cmds[]={$/;" v file: +objl_path_1995_floats demos/subwaymap.c /^static const float objl_path_1995_floats[]={$/;" v file: +objl_path_1996_cmds demos/subwaymap.c /^static const unsigned char objl_path_1996_cmds[]={$/;" v file: +objl_path_1996_floats demos/subwaymap.c /^static const float objl_path_1996_floats[]={$/;" v file: +objl_path_1997_cmds demos/subwaymap.c /^static const unsigned char objl_path_1997_cmds[]={$/;" v file: +objl_path_1997_floats demos/subwaymap.c /^static const float objl_path_1997_floats[]={$/;" v file: +objl_path_1998_cmds demos/subwaymap.c /^static const unsigned char objl_path_1998_cmds[]={$/;" v file: +objl_path_1998_floats demos/subwaymap.c /^static const float objl_path_1998_floats[]={$/;" v file: +objl_path_1999_cmds demos/subwaymap.c /^static const unsigned char objl_path_1999_cmds[]={$/;" v file: +objl_path_1999_floats demos/subwaymap.c /^static const float objl_path_1999_floats[]={$/;" v file: +objl_path_199_cmds demos/subwaymap.c /^static const unsigned char objl_path_199_cmds[]={$/;" v file: +objl_path_199_floats demos/subwaymap.c /^static const float objl_path_199_floats[]={$/;" v file: +objl_path_19_cmds demos/subwaymap.c /^static const unsigned char objl_path_19_cmds[]={$/;" v file: +objl_path_19_floats demos/subwaymap.c /^static const float objl_path_19_floats[]={$/;" v file: +objl_path_1_cmds demos/subwaymap.c /^static const unsigned char objl_path_1_cmds[]={$/;" v file: +objl_path_1_floats demos/subwaymap.c /^static const float objl_path_1_floats[]={$/;" v file: +objl_path_2000_cmds demos/subwaymap.c /^static const unsigned char objl_path_2000_cmds[]={$/;" v file: +objl_path_2000_floats demos/subwaymap.c /^static const float objl_path_2000_floats[]={$/;" v file: +objl_path_2001_cmds demos/subwaymap.c /^static const unsigned char objl_path_2001_cmds[]={$/;" v file: +objl_path_2001_floats demos/subwaymap.c /^static const float objl_path_2001_floats[]={$/;" v file: +objl_path_2002_cmds demos/subwaymap.c /^static const unsigned char objl_path_2002_cmds[]={$/;" v file: +objl_path_2002_floats demos/subwaymap.c /^static const float objl_path_2002_floats[]={$/;" v file: +objl_path_2003_cmds demos/subwaymap.c /^static const unsigned char objl_path_2003_cmds[]={$/;" v file: +objl_path_2003_floats demos/subwaymap.c /^static const float objl_path_2003_floats[]={$/;" v file: +objl_path_2004_cmds demos/subwaymap.c /^static const unsigned char objl_path_2004_cmds[]={$/;" v file: +objl_path_2004_floats demos/subwaymap.c /^static const float objl_path_2004_floats[]={$/;" v file: +objl_path_2005_cmds demos/subwaymap.c /^static const unsigned char objl_path_2005_cmds[]={$/;" v file: +objl_path_2005_floats demos/subwaymap.c /^static const float objl_path_2005_floats[]={$/;" v file: +objl_path_2006_cmds demos/subwaymap.c /^static const unsigned char objl_path_2006_cmds[]={$/;" v file: +objl_path_2006_floats demos/subwaymap.c /^static const float objl_path_2006_floats[]={$/;" v file: +objl_path_2007_cmds demos/subwaymap.c /^static const unsigned char objl_path_2007_cmds[]={$/;" v file: +objl_path_2007_floats demos/subwaymap.c /^static const float objl_path_2007_floats[]={$/;" v file: +objl_path_2008_cmds demos/subwaymap.c /^static const unsigned char objl_path_2008_cmds[]={$/;" v file: +objl_path_2008_floats demos/subwaymap.c /^static const float objl_path_2008_floats[]={$/;" v file: +objl_path_2009_cmds demos/subwaymap.c /^static const unsigned char objl_path_2009_cmds[]={$/;" v file: +objl_path_2009_floats demos/subwaymap.c /^static const float objl_path_2009_floats[]={$/;" v file: +objl_path_200_cmds demos/subwaymap.c /^static const unsigned char objl_path_200_cmds[]={$/;" v file: +objl_path_200_floats demos/subwaymap.c /^static const float objl_path_200_floats[]={$/;" v file: +objl_path_2010_cmds demos/subwaymap.c /^static const unsigned char objl_path_2010_cmds[]={$/;" v file: +objl_path_2010_floats demos/subwaymap.c /^static const float objl_path_2010_floats[]={$/;" v file: +objl_path_2011_cmds demos/subwaymap.c /^static const unsigned char objl_path_2011_cmds[]={$/;" v file: +objl_path_2011_floats demos/subwaymap.c /^static const float objl_path_2011_floats[]={$/;" v file: +objl_path_2012_cmds demos/subwaymap.c /^static const unsigned char objl_path_2012_cmds[]={$/;" v file: +objl_path_2012_floats demos/subwaymap.c /^static const float objl_path_2012_floats[]={$/;" v file: +objl_path_2013_cmds demos/subwaymap.c /^static const unsigned char objl_path_2013_cmds[]={$/;" v file: +objl_path_2013_floats demos/subwaymap.c /^static const float objl_path_2013_floats[]={$/;" v file: +objl_path_2014_cmds demos/subwaymap.c /^static const unsigned char objl_path_2014_cmds[]={$/;" v file: +objl_path_2014_floats demos/subwaymap.c /^static const float objl_path_2014_floats[]={$/;" v file: +objl_path_2015_cmds demos/subwaymap.c /^static const unsigned char objl_path_2015_cmds[]={$/;" v file: +objl_path_2015_floats demos/subwaymap.c /^static const float objl_path_2015_floats[]={$/;" v file: +objl_path_2016_cmds demos/subwaymap.c /^static const unsigned char objl_path_2016_cmds[]={$/;" v file: +objl_path_2016_floats demos/subwaymap.c /^static const float objl_path_2016_floats[]={$/;" v file: +objl_path_2017_cmds demos/subwaymap.c /^static const unsigned char objl_path_2017_cmds[]={$/;" v file: +objl_path_2017_floats demos/subwaymap.c /^static const float objl_path_2017_floats[]={$/;" v file: +objl_path_2018_cmds demos/subwaymap.c /^static const unsigned char objl_path_2018_cmds[]={$/;" v file: +objl_path_2018_floats demos/subwaymap.c /^static const float objl_path_2018_floats[]={$/;" v file: +objl_path_2019_cmds demos/subwaymap.c /^static const unsigned char objl_path_2019_cmds[]={$/;" v file: +objl_path_2019_floats demos/subwaymap.c /^static const float objl_path_2019_floats[]={$/;" v file: +objl_path_201_cmds demos/subwaymap.c /^static const unsigned char objl_path_201_cmds[]={$/;" v file: +objl_path_201_floats demos/subwaymap.c /^static const float objl_path_201_floats[]={$/;" v file: +objl_path_2020_cmds demos/subwaymap.c /^static const unsigned char objl_path_2020_cmds[]={$/;" v file: +objl_path_2020_floats demos/subwaymap.c /^static const float objl_path_2020_floats[]={$/;" v file: +objl_path_2021_cmds demos/subwaymap.c /^static const unsigned char objl_path_2021_cmds[]={$/;" v file: +objl_path_2021_floats demos/subwaymap.c /^static const float objl_path_2021_floats[]={$/;" v file: +objl_path_2022_cmds demos/subwaymap.c /^static const unsigned char objl_path_2022_cmds[]={$/;" v file: +objl_path_2022_floats demos/subwaymap.c /^static const float objl_path_2022_floats[]={$/;" v file: +objl_path_2023_cmds demos/subwaymap.c /^static const unsigned char objl_path_2023_cmds[]={$/;" v file: +objl_path_2023_floats demos/subwaymap.c /^static const float objl_path_2023_floats[]={$/;" v file: +objl_path_2024_cmds demos/subwaymap.c /^static const unsigned char objl_path_2024_cmds[]={$/;" v file: +objl_path_2024_floats demos/subwaymap.c /^static const float objl_path_2024_floats[]={$/;" v file: +objl_path_2025_cmds demos/subwaymap.c /^static const unsigned char objl_path_2025_cmds[]={$/;" v file: +objl_path_2025_floats demos/subwaymap.c /^static const float objl_path_2025_floats[]={$/;" v file: +objl_path_2026_cmds demos/subwaymap.c /^static const unsigned char objl_path_2026_cmds[]={$/;" v file: +objl_path_2026_floats demos/subwaymap.c /^static const float objl_path_2026_floats[]={$/;" v file: +objl_path_2027_cmds demos/subwaymap.c /^static const unsigned char objl_path_2027_cmds[]={$/;" v file: +objl_path_2027_floats demos/subwaymap.c /^static const float objl_path_2027_floats[]={$/;" v file: +objl_path_2028_cmds demos/subwaymap.c /^static const unsigned char objl_path_2028_cmds[]={$/;" v file: +objl_path_2028_floats demos/subwaymap.c /^static const float objl_path_2028_floats[]={$/;" v file: +objl_path_2029_cmds demos/subwaymap.c /^static const unsigned char objl_path_2029_cmds[]={$/;" v file: +objl_path_2029_floats demos/subwaymap.c /^static const float objl_path_2029_floats[]={$/;" v file: +objl_path_202_cmds demos/subwaymap.c /^static const unsigned char objl_path_202_cmds[]={$/;" v file: +objl_path_202_floats demos/subwaymap.c /^static const float objl_path_202_floats[]={$/;" v file: +objl_path_2030_cmds demos/subwaymap.c /^static const unsigned char objl_path_2030_cmds[]={$/;" v file: +objl_path_2030_floats demos/subwaymap.c /^static const float objl_path_2030_floats[]={$/;" v file: +objl_path_2031_cmds demos/subwaymap.c /^static const unsigned char objl_path_2031_cmds[]={$/;" v file: +objl_path_2031_floats demos/subwaymap.c /^static const float objl_path_2031_floats[]={$/;" v file: +objl_path_2032_cmds demos/subwaymap.c /^static const unsigned char objl_path_2032_cmds[]={$/;" v file: +objl_path_2032_floats demos/subwaymap.c /^static const float objl_path_2032_floats[]={$/;" v file: +objl_path_2033_cmds demos/subwaymap.c /^static const unsigned char objl_path_2033_cmds[]={$/;" v file: +objl_path_2033_floats demos/subwaymap.c /^static const float objl_path_2033_floats[]={$/;" v file: +objl_path_2034_cmds demos/subwaymap.c /^static const unsigned char objl_path_2034_cmds[]={$/;" v file: +objl_path_2034_floats demos/subwaymap.c /^static const float objl_path_2034_floats[]={$/;" v file: +objl_path_2035_cmds demos/subwaymap.c /^static const unsigned char objl_path_2035_cmds[]={$/;" v file: +objl_path_2035_floats demos/subwaymap.c /^static const float objl_path_2035_floats[]={$/;" v file: +objl_path_2036_cmds demos/subwaymap.c /^static const unsigned char objl_path_2036_cmds[]={$/;" v file: +objl_path_2036_floats demos/subwaymap.c /^static const float objl_path_2036_floats[]={$/;" v file: +objl_path_2037_cmds demos/subwaymap.c /^static const unsigned char objl_path_2037_cmds[]={$/;" v file: +objl_path_2037_floats demos/subwaymap.c /^static const float objl_path_2037_floats[]={$/;" v file: +objl_path_2038_cmds demos/subwaymap.c /^static const unsigned char objl_path_2038_cmds[]={$/;" v file: +objl_path_2038_floats demos/subwaymap.c /^static const float objl_path_2038_floats[]={$/;" v file: +objl_path_2039_cmds demos/subwaymap.c /^static const unsigned char objl_path_2039_cmds[]={$/;" v file: +objl_path_2039_floats demos/subwaymap.c /^static const float objl_path_2039_floats[]={$/;" v file: +objl_path_203_cmds demos/subwaymap.c /^static const unsigned char objl_path_203_cmds[]={$/;" v file: +objl_path_203_floats demos/subwaymap.c /^static const float objl_path_203_floats[]={$/;" v file: +objl_path_2040_cmds demos/subwaymap.c /^static const unsigned char objl_path_2040_cmds[]={$/;" v file: +objl_path_2040_floats demos/subwaymap.c /^static const float objl_path_2040_floats[]={$/;" v file: +objl_path_2041_cmds demos/subwaymap.c /^static const unsigned char objl_path_2041_cmds[]={$/;" v file: +objl_path_2041_floats demos/subwaymap.c /^static const float objl_path_2041_floats[]={$/;" v file: +objl_path_2042_cmds demos/subwaymap.c /^static const unsigned char objl_path_2042_cmds[]={$/;" v file: +objl_path_2042_floats demos/subwaymap.c /^static const float objl_path_2042_floats[]={$/;" v file: +objl_path_2043_cmds demos/subwaymap.c /^static const unsigned char objl_path_2043_cmds[]={$/;" v file: +objl_path_2043_floats demos/subwaymap.c /^static const float objl_path_2043_floats[]={$/;" v file: +objl_path_2044_cmds demos/subwaymap.c /^static const unsigned char objl_path_2044_cmds[]={$/;" v file: +objl_path_2044_floats demos/subwaymap.c /^static const float objl_path_2044_floats[]={$/;" v file: +objl_path_2045_cmds demos/subwaymap.c /^static const unsigned char objl_path_2045_cmds[]={$/;" v file: +objl_path_2045_floats demos/subwaymap.c /^static const float objl_path_2045_floats[]={$/;" v file: +objl_path_2046_cmds demos/subwaymap.c /^static const unsigned char objl_path_2046_cmds[]={$/;" v file: +objl_path_2046_floats demos/subwaymap.c /^static const float objl_path_2046_floats[]={$/;" v file: +objl_path_2047_cmds demos/subwaymap.c /^static const unsigned char objl_path_2047_cmds[]={$/;" v file: +objl_path_2047_floats demos/subwaymap.c /^static const float objl_path_2047_floats[]={$/;" v file: +objl_path_2048_cmds demos/subwaymap.c /^static const unsigned char objl_path_2048_cmds[]={$/;" v file: +objl_path_2048_floats demos/subwaymap.c /^static const float objl_path_2048_floats[]={$/;" v file: +objl_path_2049_cmds demos/subwaymap.c /^static const unsigned char objl_path_2049_cmds[]={$/;" v file: +objl_path_2049_floats demos/subwaymap.c /^static const float objl_path_2049_floats[]={$/;" v file: +objl_path_204_cmds demos/subwaymap.c /^static const unsigned char objl_path_204_cmds[]={$/;" v file: +objl_path_204_floats demos/subwaymap.c /^static const float objl_path_204_floats[]={$/;" v file: +objl_path_2050_cmds demos/subwaymap.c /^static const unsigned char objl_path_2050_cmds[]={$/;" v file: +objl_path_2050_floats demos/subwaymap.c /^static const float objl_path_2050_floats[]={$/;" v file: +objl_path_2051_cmds demos/subwaymap.c /^static const unsigned char objl_path_2051_cmds[]={$/;" v file: +objl_path_2051_floats demos/subwaymap.c /^static const float objl_path_2051_floats[]={$/;" v file: +objl_path_2052_cmds demos/subwaymap.c /^static const unsigned char objl_path_2052_cmds[]={$/;" v file: +objl_path_2052_floats demos/subwaymap.c /^static const float objl_path_2052_floats[]={$/;" v file: +objl_path_2053_cmds demos/subwaymap.c /^static const unsigned char objl_path_2053_cmds[]={$/;" v file: +objl_path_2053_floats demos/subwaymap.c /^static const float objl_path_2053_floats[]={$/;" v file: +objl_path_2054_cmds demos/subwaymap.c /^static const unsigned char objl_path_2054_cmds[]={$/;" v file: +objl_path_2054_floats demos/subwaymap.c /^static const float objl_path_2054_floats[]={$/;" v file: +objl_path_2055_cmds demos/subwaymap.c /^static const unsigned char objl_path_2055_cmds[]={$/;" v file: +objl_path_2055_floats demos/subwaymap.c /^static const float objl_path_2055_floats[]={$/;" v file: +objl_path_2056_cmds demos/subwaymap.c /^static const unsigned char objl_path_2056_cmds[]={$/;" v file: +objl_path_2056_floats demos/subwaymap.c /^static const float objl_path_2056_floats[]={$/;" v file: +objl_path_2057_cmds demos/subwaymap.c /^static const unsigned char objl_path_2057_cmds[]={$/;" v file: +objl_path_2057_floats demos/subwaymap.c /^static const float objl_path_2057_floats[]={$/;" v file: +objl_path_2058_cmds demos/subwaymap.c /^static const unsigned char objl_path_2058_cmds[]={$/;" v file: +objl_path_2058_floats demos/subwaymap.c /^static const float objl_path_2058_floats[]={$/;" v file: +objl_path_2059_cmds demos/subwaymap.c /^static const unsigned char objl_path_2059_cmds[]={$/;" v file: +objl_path_2059_floats demos/subwaymap.c /^static const float objl_path_2059_floats[]={$/;" v file: +objl_path_205_cmds demos/subwaymap.c /^static const unsigned char objl_path_205_cmds[]={$/;" v file: +objl_path_205_floats demos/subwaymap.c /^static const float objl_path_205_floats[]={$/;" v file: +objl_path_2060_cmds demos/subwaymap.c /^static const unsigned char objl_path_2060_cmds[]={$/;" v file: +objl_path_2060_floats demos/subwaymap.c /^static const float objl_path_2060_floats[]={$/;" v file: +objl_path_2061_cmds demos/subwaymap.c /^static const unsigned char objl_path_2061_cmds[]={$/;" v file: +objl_path_2061_floats demos/subwaymap.c /^static const float objl_path_2061_floats[]={$/;" v file: +objl_path_2062_cmds demos/subwaymap.c /^static const unsigned char objl_path_2062_cmds[]={$/;" v file: +objl_path_2062_floats demos/subwaymap.c /^static const float objl_path_2062_floats[]={$/;" v file: +objl_path_2063_cmds demos/subwaymap.c /^static const unsigned char objl_path_2063_cmds[]={$/;" v file: +objl_path_2063_floats demos/subwaymap.c /^static const float objl_path_2063_floats[]={$/;" v file: +objl_path_2064_cmds demos/subwaymap.c /^static const unsigned char objl_path_2064_cmds[]={$/;" v file: +objl_path_2064_floats demos/subwaymap.c /^static const float objl_path_2064_floats[]={$/;" v file: +objl_path_2065_cmds demos/subwaymap.c /^static const unsigned char objl_path_2065_cmds[]={$/;" v file: +objl_path_2065_floats demos/subwaymap.c /^static const float objl_path_2065_floats[]={$/;" v file: +objl_path_2066_cmds demos/subwaymap.c /^static const unsigned char objl_path_2066_cmds[]={$/;" v file: +objl_path_2066_floats demos/subwaymap.c /^static const float objl_path_2066_floats[]={$/;" v file: +objl_path_2067_cmds demos/subwaymap.c /^static const unsigned char objl_path_2067_cmds[]={$/;" v file: +objl_path_2067_floats demos/subwaymap.c /^static const float objl_path_2067_floats[]={$/;" v file: +objl_path_2068_cmds demos/subwaymap.c /^static const unsigned char objl_path_2068_cmds[]={$/;" v file: +objl_path_2068_floats demos/subwaymap.c /^static const float objl_path_2068_floats[]={$/;" v file: +objl_path_2069_cmds demos/subwaymap.c /^static const unsigned char objl_path_2069_cmds[]={$/;" v file: +objl_path_2069_floats demos/subwaymap.c /^static const float objl_path_2069_floats[]={$/;" v file: +objl_path_206_cmds demos/subwaymap.c /^static const unsigned char objl_path_206_cmds[]={$/;" v file: +objl_path_206_floats demos/subwaymap.c /^static const float objl_path_206_floats[]={$/;" v file: +objl_path_2070_cmds demos/subwaymap.c /^static const unsigned char objl_path_2070_cmds[]={$/;" v file: +objl_path_2070_floats demos/subwaymap.c /^static const float objl_path_2070_floats[]={$/;" v file: +objl_path_2071_cmds demos/subwaymap.c /^static const unsigned char objl_path_2071_cmds[]={$/;" v file: +objl_path_2071_floats demos/subwaymap.c /^static const float objl_path_2071_floats[]={$/;" v file: +objl_path_2072_cmds demos/subwaymap.c /^static const unsigned char objl_path_2072_cmds[]={$/;" v file: +objl_path_2072_floats demos/subwaymap.c /^static const float objl_path_2072_floats[]={$/;" v file: +objl_path_2073_cmds demos/subwaymap.c /^static const unsigned char objl_path_2073_cmds[]={$/;" v file: +objl_path_2073_floats demos/subwaymap.c /^static const float objl_path_2073_floats[]={$/;" v file: +objl_path_2074_cmds demos/subwaymap.c /^static const unsigned char objl_path_2074_cmds[]={$/;" v file: +objl_path_2074_floats demos/subwaymap.c /^static const float objl_path_2074_floats[]={$/;" v file: +objl_path_2075_cmds demos/subwaymap.c /^static const unsigned char objl_path_2075_cmds[]={$/;" v file: +objl_path_2075_floats demos/subwaymap.c /^static const float objl_path_2075_floats[]={$/;" v file: +objl_path_2076_cmds demos/subwaymap.c /^static const unsigned char objl_path_2076_cmds[]={$/;" v file: +objl_path_2076_floats demos/subwaymap.c /^static const float objl_path_2076_floats[]={$/;" v file: +objl_path_2077_cmds demos/subwaymap.c /^static const unsigned char objl_path_2077_cmds[]={$/;" v file: +objl_path_2077_floats demos/subwaymap.c /^static const float objl_path_2077_floats[]={$/;" v file: +objl_path_2078_cmds demos/subwaymap.c /^static const unsigned char objl_path_2078_cmds[]={$/;" v file: +objl_path_2078_floats demos/subwaymap.c /^static const float objl_path_2078_floats[]={$/;" v file: +objl_path_2079_cmds demos/subwaymap.c /^static const unsigned char objl_path_2079_cmds[]={$/;" v file: +objl_path_2079_floats demos/subwaymap.c /^static const float objl_path_2079_floats[]={$/;" v file: +objl_path_207_cmds demos/subwaymap.c /^static const unsigned char objl_path_207_cmds[]={$/;" v file: +objl_path_207_floats demos/subwaymap.c /^static const float objl_path_207_floats[]={$/;" v file: +objl_path_2080_cmds demos/subwaymap.c /^static const unsigned char objl_path_2080_cmds[]={$/;" v file: +objl_path_2080_floats demos/subwaymap.c /^static const float objl_path_2080_floats[]={$/;" v file: +objl_path_2081_cmds demos/subwaymap.c /^static const unsigned char objl_path_2081_cmds[]={$/;" v file: +objl_path_2081_floats demos/subwaymap.c /^static const float objl_path_2081_floats[]={$/;" v file: +objl_path_2082_cmds demos/subwaymap.c /^static const unsigned char objl_path_2082_cmds[]={$/;" v file: +objl_path_2082_floats demos/subwaymap.c /^static const float objl_path_2082_floats[]={$/;" v file: +objl_path_2083_cmds demos/subwaymap.c /^static const unsigned char objl_path_2083_cmds[]={$/;" v file: +objl_path_2083_floats demos/subwaymap.c /^static const float objl_path_2083_floats[]={$/;" v file: +objl_path_2084_cmds demos/subwaymap.c /^static const unsigned char objl_path_2084_cmds[]={$/;" v file: +objl_path_2084_floats demos/subwaymap.c /^static const float objl_path_2084_floats[]={$/;" v file: +objl_path_2085_cmds demos/subwaymap.c /^static const unsigned char objl_path_2085_cmds[]={$/;" v file: +objl_path_2085_floats demos/subwaymap.c /^static const float objl_path_2085_floats[]={$/;" v file: +objl_path_2086_cmds demos/subwaymap.c /^static const unsigned char objl_path_2086_cmds[]={$/;" v file: +objl_path_2086_floats demos/subwaymap.c /^static const float objl_path_2086_floats[]={$/;" v file: +objl_path_2087_cmds demos/subwaymap.c /^static const unsigned char objl_path_2087_cmds[]={$/;" v file: +objl_path_2087_floats demos/subwaymap.c /^static const float objl_path_2087_floats[]={$/;" v file: +objl_path_2088_cmds demos/subwaymap.c /^static const unsigned char objl_path_2088_cmds[]={$/;" v file: +objl_path_2088_floats demos/subwaymap.c /^static const float objl_path_2088_floats[]={$/;" v file: +objl_path_2089_cmds demos/subwaymap.c /^static const unsigned char objl_path_2089_cmds[]={$/;" v file: +objl_path_2089_floats demos/subwaymap.c /^static const float objl_path_2089_floats[]={$/;" v file: +objl_path_208_cmds demos/subwaymap.c /^static const unsigned char objl_path_208_cmds[]={$/;" v file: +objl_path_208_floats demos/subwaymap.c /^static const float objl_path_208_floats[]={$/;" v file: +objl_path_2090_cmds demos/subwaymap.c /^static const unsigned char objl_path_2090_cmds[]={$/;" v file: +objl_path_2090_floats demos/subwaymap.c /^static const float objl_path_2090_floats[]={$/;" v file: +objl_path_2091_cmds demos/subwaymap.c /^static const unsigned char objl_path_2091_cmds[]={$/;" v file: +objl_path_2091_floats demos/subwaymap.c /^static const float objl_path_2091_floats[]={$/;" v file: +objl_path_2092_cmds demos/subwaymap.c /^static const unsigned char objl_path_2092_cmds[]={$/;" v file: +objl_path_2092_floats demos/subwaymap.c /^static const float objl_path_2092_floats[]={$/;" v file: +objl_path_2093_cmds demos/subwaymap.c /^static const unsigned char objl_path_2093_cmds[]={$/;" v file: +objl_path_2093_floats demos/subwaymap.c /^static const float objl_path_2093_floats[]={$/;" v file: +objl_path_2094_cmds demos/subwaymap.c /^static const unsigned char objl_path_2094_cmds[]={$/;" v file: +objl_path_2094_floats demos/subwaymap.c /^static const float objl_path_2094_floats[]={$/;" v file: +objl_path_2095_cmds demos/subwaymap.c /^static const unsigned char objl_path_2095_cmds[]={$/;" v file: +objl_path_2095_floats demos/subwaymap.c /^static const float objl_path_2095_floats[]={$/;" v file: +objl_path_2096_cmds demos/subwaymap.c /^static const unsigned char objl_path_2096_cmds[]={$/;" v file: +objl_path_2096_floats demos/subwaymap.c /^static const float objl_path_2096_floats[]={$/;" v file: +objl_path_2097_cmds demos/subwaymap.c /^static const unsigned char objl_path_2097_cmds[]={$/;" v file: +objl_path_2097_floats demos/subwaymap.c /^static const float objl_path_2097_floats[]={$/;" v file: +objl_path_2098_cmds demos/subwaymap.c /^static const unsigned char objl_path_2098_cmds[]={$/;" v file: +objl_path_2098_floats demos/subwaymap.c /^static const float objl_path_2098_floats[]={$/;" v file: +objl_path_2099_cmds demos/subwaymap.c /^static const unsigned char objl_path_2099_cmds[]={$/;" v file: +objl_path_2099_floats demos/subwaymap.c /^static const float objl_path_2099_floats[]={$/;" v file: +objl_path_209_cmds demos/subwaymap.c /^static const unsigned char objl_path_209_cmds[]={$/;" v file: +objl_path_209_floats demos/subwaymap.c /^static const float objl_path_209_floats[]={$/;" v file: +objl_path_20_cmds demos/subwaymap.c /^static const unsigned char objl_path_20_cmds[]={$/;" v file: +objl_path_20_floats demos/subwaymap.c /^static const float objl_path_20_floats[]={$/;" v file: +objl_path_2100_cmds demos/subwaymap.c /^static const unsigned char objl_path_2100_cmds[]={$/;" v file: +objl_path_2100_floats demos/subwaymap.c /^static const float objl_path_2100_floats[]={$/;" v file: +objl_path_2101_cmds demos/subwaymap.c /^static const unsigned char objl_path_2101_cmds[]={$/;" v file: +objl_path_2101_floats demos/subwaymap.c /^static const float objl_path_2101_floats[]={$/;" v file: +objl_path_2102_cmds demos/subwaymap.c /^static const unsigned char objl_path_2102_cmds[]={$/;" v file: +objl_path_2102_floats demos/subwaymap.c /^static const float objl_path_2102_floats[]={$/;" v file: +objl_path_2103_cmds demos/subwaymap.c /^static const unsigned char objl_path_2103_cmds[]={$/;" v file: +objl_path_2103_floats demos/subwaymap.c /^static const float objl_path_2103_floats[]={$/;" v file: +objl_path_2104_cmds demos/subwaymap.c /^static const unsigned char objl_path_2104_cmds[]={$/;" v file: +objl_path_2104_floats demos/subwaymap.c /^static const float objl_path_2104_floats[]={$/;" v file: +objl_path_2105_cmds demos/subwaymap.c /^static const unsigned char objl_path_2105_cmds[]={$/;" v file: +objl_path_2105_floats demos/subwaymap.c /^static const float objl_path_2105_floats[]={$/;" v file: +objl_path_2106_cmds demos/subwaymap.c /^static const unsigned char objl_path_2106_cmds[]={$/;" v file: +objl_path_2106_floats demos/subwaymap.c /^static const float objl_path_2106_floats[]={$/;" v file: +objl_path_2107_cmds demos/subwaymap.c /^static const unsigned char objl_path_2107_cmds[]={$/;" v file: +objl_path_2107_floats demos/subwaymap.c /^static const float objl_path_2107_floats[]={$/;" v file: +objl_path_2108_cmds demos/subwaymap.c /^static const unsigned char objl_path_2108_cmds[]={$/;" v file: +objl_path_2108_floats demos/subwaymap.c /^static const float objl_path_2108_floats[]={$/;" v file: +objl_path_2109_cmds demos/subwaymap.c /^static const unsigned char objl_path_2109_cmds[]={$/;" v file: +objl_path_2109_floats demos/subwaymap.c /^static const float objl_path_2109_floats[]={$/;" v file: +objl_path_210_cmds demos/subwaymap.c /^static const unsigned char objl_path_210_cmds[]={$/;" v file: +objl_path_210_floats demos/subwaymap.c /^static const float objl_path_210_floats[]={$/;" v file: +objl_path_2110_cmds demos/subwaymap.c /^static const unsigned char objl_path_2110_cmds[]={$/;" v file: +objl_path_2110_floats demos/subwaymap.c /^static const float objl_path_2110_floats[]={$/;" v file: +objl_path_2111_cmds demos/subwaymap.c /^static const unsigned char objl_path_2111_cmds[]={$/;" v file: +objl_path_2111_floats demos/subwaymap.c /^static const float objl_path_2111_floats[]={$/;" v file: +objl_path_2112_cmds demos/subwaymap.c /^static const unsigned char objl_path_2112_cmds[]={$/;" v file: +objl_path_2112_floats demos/subwaymap.c /^static const float objl_path_2112_floats[]={$/;" v file: +objl_path_2113_cmds demos/subwaymap.c /^static const unsigned char objl_path_2113_cmds[]={$/;" v file: +objl_path_2113_floats demos/subwaymap.c /^static const float objl_path_2113_floats[]={$/;" v file: +objl_path_2114_cmds demos/subwaymap.c /^static const unsigned char objl_path_2114_cmds[]={$/;" v file: +objl_path_2114_floats demos/subwaymap.c /^static const float objl_path_2114_floats[]={$/;" v file: +objl_path_2115_cmds demos/subwaymap.c /^static const unsigned char objl_path_2115_cmds[]={$/;" v file: +objl_path_2115_floats demos/subwaymap.c /^static const float objl_path_2115_floats[]={$/;" v file: +objl_path_2116_cmds demos/subwaymap.c /^static const unsigned char objl_path_2116_cmds[]={$/;" v file: +objl_path_2116_floats demos/subwaymap.c /^static const float objl_path_2116_floats[]={$/;" v file: +objl_path_2117_cmds demos/subwaymap.c /^static const unsigned char objl_path_2117_cmds[]={$/;" v file: +objl_path_2117_floats demos/subwaymap.c /^static const float objl_path_2117_floats[]={$/;" v file: +objl_path_2118_cmds demos/subwaymap.c /^static const unsigned char objl_path_2118_cmds[]={$/;" v file: +objl_path_2118_floats demos/subwaymap.c /^static const float objl_path_2118_floats[]={$/;" v file: +objl_path_2119_cmds demos/subwaymap.c /^static const unsigned char objl_path_2119_cmds[]={$/;" v file: +objl_path_2119_floats demos/subwaymap.c /^static const float objl_path_2119_floats[]={$/;" v file: +objl_path_211_cmds demos/subwaymap.c /^static const unsigned char objl_path_211_cmds[]={$/;" v file: +objl_path_211_floats demos/subwaymap.c /^static const float objl_path_211_floats[]={$/;" v file: +objl_path_2120_cmds demos/subwaymap.c /^static const unsigned char objl_path_2120_cmds[]={$/;" v file: +objl_path_2120_floats demos/subwaymap.c /^static const float objl_path_2120_floats[]={$/;" v file: +objl_path_2121_cmds demos/subwaymap.c /^static const unsigned char objl_path_2121_cmds[]={$/;" v file: +objl_path_2121_floats demos/subwaymap.c /^static const float objl_path_2121_floats[]={$/;" v file: +objl_path_2122_cmds demos/subwaymap.c /^static const unsigned char objl_path_2122_cmds[]={$/;" v file: +objl_path_2122_floats demos/subwaymap.c /^static const float objl_path_2122_floats[]={$/;" v file: +objl_path_2123_cmds demos/subwaymap.c /^static const unsigned char objl_path_2123_cmds[]={$/;" v file: +objl_path_2123_floats demos/subwaymap.c /^static const float objl_path_2123_floats[]={$/;" v file: +objl_path_2124_cmds demos/subwaymap.c /^static const unsigned char objl_path_2124_cmds[]={$/;" v file: +objl_path_2124_floats demos/subwaymap.c /^static const float objl_path_2124_floats[]={$/;" v file: +objl_path_2125_cmds demos/subwaymap.c /^static const unsigned char objl_path_2125_cmds[]={$/;" v file: +objl_path_2125_floats demos/subwaymap.c /^static const float objl_path_2125_floats[]={$/;" v file: +objl_path_2126_cmds demos/subwaymap.c /^static const unsigned char objl_path_2126_cmds[]={$/;" v file: +objl_path_2126_floats demos/subwaymap.c /^static const float objl_path_2126_floats[]={$/;" v file: +objl_path_2127_cmds demos/subwaymap.c /^static const unsigned char objl_path_2127_cmds[]={$/;" v file: +objl_path_2127_floats demos/subwaymap.c /^static const float objl_path_2127_floats[]={$/;" v file: +objl_path_2128_cmds demos/subwaymap.c /^static const unsigned char objl_path_2128_cmds[]={$/;" v file: +objl_path_2128_floats demos/subwaymap.c /^static const float objl_path_2128_floats[]={$/;" v file: +objl_path_2129_cmds demos/subwaymap.c /^static const unsigned char objl_path_2129_cmds[]={$/;" v file: +objl_path_2129_floats demos/subwaymap.c /^static const float objl_path_2129_floats[]={$/;" v file: +objl_path_212_cmds demos/subwaymap.c /^static const unsigned char objl_path_212_cmds[]={$/;" v file: +objl_path_212_floats demos/subwaymap.c /^static const float objl_path_212_floats[]={$/;" v file: +objl_path_213_cmds demos/subwaymap.c /^static const unsigned char objl_path_213_cmds[]={$/;" v file: +objl_path_213_floats demos/subwaymap.c /^static const float objl_path_213_floats[]={$/;" v file: +objl_path_214_cmds demos/subwaymap.c /^static const unsigned char objl_path_214_cmds[]={$/;" v file: +objl_path_214_floats demos/subwaymap.c /^static const float objl_path_214_floats[]={$/;" v file: +objl_path_215_cmds demos/subwaymap.c /^static const unsigned char objl_path_215_cmds[]={$/;" v file: +objl_path_215_floats demos/subwaymap.c /^static const float objl_path_215_floats[]={$/;" v file: +objl_path_216_cmds demos/subwaymap.c /^static const unsigned char objl_path_216_cmds[]={$/;" v file: +objl_path_216_floats demos/subwaymap.c /^static const float objl_path_216_floats[]={$/;" v file: +objl_path_217_cmds demos/subwaymap.c /^static const unsigned char objl_path_217_cmds[]={$/;" v file: +objl_path_217_floats demos/subwaymap.c /^static const float objl_path_217_floats[]={$/;" v file: +objl_path_218_cmds demos/subwaymap.c /^static const unsigned char objl_path_218_cmds[]={$/;" v file: +objl_path_218_floats demos/subwaymap.c /^static const float objl_path_218_floats[]={$/;" v file: +objl_path_219_cmds demos/subwaymap.c /^static const unsigned char objl_path_219_cmds[]={$/;" v file: +objl_path_219_floats demos/subwaymap.c /^static const float objl_path_219_floats[]={$/;" v file: +objl_path_21_cmds demos/subwaymap.c /^static const unsigned char objl_path_21_cmds[]={$/;" v file: +objl_path_21_floats demos/subwaymap.c /^static const float objl_path_21_floats[]={$/;" v file: +objl_path_220_cmds demos/subwaymap.c /^static const unsigned char objl_path_220_cmds[]={$/;" v file: +objl_path_220_floats demos/subwaymap.c /^static const float objl_path_220_floats[]={$/;" v file: +objl_path_221_cmds demos/subwaymap.c /^static const unsigned char objl_path_221_cmds[]={$/;" v file: +objl_path_221_floats demos/subwaymap.c /^static const float objl_path_221_floats[]={$/;" v file: +objl_path_222_cmds demos/subwaymap.c /^static const unsigned char objl_path_222_cmds[]={$/;" v file: +objl_path_222_floats demos/subwaymap.c /^static const float objl_path_222_floats[]={$/;" v file: +objl_path_223_cmds demos/subwaymap.c /^static const unsigned char objl_path_223_cmds[]={$/;" v file: +objl_path_223_floats demos/subwaymap.c /^static const float objl_path_223_floats[]={$/;" v file: +objl_path_224_cmds demos/subwaymap.c /^static const unsigned char objl_path_224_cmds[]={$/;" v file: +objl_path_224_floats demos/subwaymap.c /^static const float objl_path_224_floats[]={$/;" v file: +objl_path_225_cmds demos/subwaymap.c /^static const unsigned char objl_path_225_cmds[]={$/;" v file: +objl_path_225_floats demos/subwaymap.c /^static const float objl_path_225_floats[]={$/;" v file: +objl_path_226_cmds demos/subwaymap.c /^static const unsigned char objl_path_226_cmds[]={$/;" v file: +objl_path_226_floats demos/subwaymap.c /^static const float objl_path_226_floats[]={$/;" v file: +objl_path_227_cmds demos/subwaymap.c /^static const unsigned char objl_path_227_cmds[]={$/;" v file: +objl_path_227_floats demos/subwaymap.c /^static const float objl_path_227_floats[]={$/;" v file: +objl_path_228_cmds demos/subwaymap.c /^static const unsigned char objl_path_228_cmds[]={$/;" v file: +objl_path_228_floats demos/subwaymap.c /^static const float objl_path_228_floats[]={$/;" v file: +objl_path_229_cmds demos/subwaymap.c /^static const unsigned char objl_path_229_cmds[]={$/;" v file: +objl_path_229_floats demos/subwaymap.c /^static const float objl_path_229_floats[]={$/;" v file: +objl_path_22_cmds demos/subwaymap.c /^static const unsigned char objl_path_22_cmds[]={$/;" v file: +objl_path_22_floats demos/subwaymap.c /^static const float objl_path_22_floats[]={$/;" v file: +objl_path_230_cmds demos/subwaymap.c /^static const unsigned char objl_path_230_cmds[]={$/;" v file: +objl_path_230_floats demos/subwaymap.c /^static const float objl_path_230_floats[]={$/;" v file: +objl_path_231_cmds demos/subwaymap.c /^static const unsigned char objl_path_231_cmds[]={$/;" v file: +objl_path_231_floats demos/subwaymap.c /^static const float objl_path_231_floats[]={$/;" v file: +objl_path_232_cmds demos/subwaymap.c /^static const unsigned char objl_path_232_cmds[]={$/;" v file: +objl_path_232_floats demos/subwaymap.c /^static const float objl_path_232_floats[]={$/;" v file: +objl_path_233_cmds demos/subwaymap.c /^static const unsigned char objl_path_233_cmds[]={$/;" v file: +objl_path_233_floats demos/subwaymap.c /^static const float objl_path_233_floats[]={$/;" v file: +objl_path_234_cmds demos/subwaymap.c /^static const unsigned char objl_path_234_cmds[]={$/;" v file: +objl_path_234_floats demos/subwaymap.c /^static const float objl_path_234_floats[]={$/;" v file: +objl_path_235_cmds demos/subwaymap.c /^static const unsigned char objl_path_235_cmds[]={$/;" v file: +objl_path_235_floats demos/subwaymap.c /^static const float objl_path_235_floats[]={$/;" v file: +objl_path_236_cmds demos/subwaymap.c /^static const unsigned char objl_path_236_cmds[]={$/;" v file: +objl_path_236_floats demos/subwaymap.c /^static const float objl_path_236_floats[]={$/;" v file: +objl_path_237_cmds demos/subwaymap.c /^static const unsigned char objl_path_237_cmds[]={$/;" v file: +objl_path_237_floats demos/subwaymap.c /^static const float objl_path_237_floats[]={$/;" v file: +objl_path_238_cmds demos/subwaymap.c /^static const unsigned char objl_path_238_cmds[]={$/;" v file: +objl_path_238_floats demos/subwaymap.c /^static const float objl_path_238_floats[]={$/;" v file: +objl_path_239_cmds demos/subwaymap.c /^static const unsigned char objl_path_239_cmds[]={$/;" v file: +objl_path_239_floats demos/subwaymap.c /^static const float objl_path_239_floats[]={$/;" v file: +objl_path_23_cmds demos/subwaymap.c /^static const unsigned char objl_path_23_cmds[]={$/;" v file: +objl_path_23_floats demos/subwaymap.c /^static const float objl_path_23_floats[]={$/;" v file: +objl_path_240_cmds demos/subwaymap.c /^static const unsigned char objl_path_240_cmds[]={$/;" v file: +objl_path_240_floats demos/subwaymap.c /^static const float objl_path_240_floats[]={$/;" v file: +objl_path_241_cmds demos/subwaymap.c /^static const unsigned char objl_path_241_cmds[]={$/;" v file: +objl_path_241_floats demos/subwaymap.c /^static const float objl_path_241_floats[]={$/;" v file: +objl_path_242_cmds demos/subwaymap.c /^static const unsigned char objl_path_242_cmds[]={$/;" v file: +objl_path_242_floats demos/subwaymap.c /^static const float objl_path_242_floats[]={$/;" v file: +objl_path_243_cmds demos/subwaymap.c /^static const unsigned char objl_path_243_cmds[]={$/;" v file: +objl_path_243_floats demos/subwaymap.c /^static const float objl_path_243_floats[]={$/;" v file: +objl_path_244_cmds demos/subwaymap.c /^static const unsigned char objl_path_244_cmds[]={$/;" v file: +objl_path_244_floats demos/subwaymap.c /^static const float objl_path_244_floats[]={$/;" v file: +objl_path_245_cmds demos/subwaymap.c /^static const unsigned char objl_path_245_cmds[]={$/;" v file: +objl_path_245_floats demos/subwaymap.c /^static const float objl_path_245_floats[]={$/;" v file: +objl_path_246_cmds demos/subwaymap.c /^static const unsigned char objl_path_246_cmds[]={$/;" v file: +objl_path_246_floats demos/subwaymap.c /^static const float objl_path_246_floats[]={$/;" v file: +objl_path_247_cmds demos/subwaymap.c /^static const unsigned char objl_path_247_cmds[]={$/;" v file: +objl_path_247_floats demos/subwaymap.c /^static const float objl_path_247_floats[]={$/;" v file: +objl_path_248_cmds demos/subwaymap.c /^static const unsigned char objl_path_248_cmds[]={$/;" v file: +objl_path_248_floats demos/subwaymap.c /^static const float objl_path_248_floats[]={$/;" v file: +objl_path_249_cmds demos/subwaymap.c /^static const unsigned char objl_path_249_cmds[]={$/;" v file: +objl_path_249_floats demos/subwaymap.c /^static const float objl_path_249_floats[]={$/;" v file: +objl_path_24_cmds demos/subwaymap.c /^static const unsigned char objl_path_24_cmds[]={$/;" v file: +objl_path_24_floats demos/subwaymap.c /^static const float objl_path_24_floats[]={$/;" v file: +objl_path_250_cmds demos/subwaymap.c /^static const unsigned char objl_path_250_cmds[]={$/;" v file: +objl_path_250_floats demos/subwaymap.c /^static const float objl_path_250_floats[]={$/;" v file: +objl_path_251_cmds demos/subwaymap.c /^static const unsigned char objl_path_251_cmds[]={$/;" v file: +objl_path_251_floats demos/subwaymap.c /^static const float objl_path_251_floats[]={$/;" v file: +objl_path_252_cmds demos/subwaymap.c /^static const unsigned char objl_path_252_cmds[]={$/;" v file: +objl_path_252_floats demos/subwaymap.c /^static const float objl_path_252_floats[]={$/;" v file: +objl_path_253_cmds demos/subwaymap.c /^static const unsigned char objl_path_253_cmds[]={$/;" v file: +objl_path_253_floats demos/subwaymap.c /^static const float objl_path_253_floats[]={$/;" v file: +objl_path_254_cmds demos/subwaymap.c /^static const unsigned char objl_path_254_cmds[]={$/;" v file: +objl_path_254_floats demos/subwaymap.c /^static const float objl_path_254_floats[]={$/;" v file: +objl_path_255_cmds demos/subwaymap.c /^static const unsigned char objl_path_255_cmds[]={$/;" v file: +objl_path_255_floats demos/subwaymap.c /^static const float objl_path_255_floats[]={$/;" v file: +objl_path_256_cmds demos/subwaymap.c /^static const unsigned char objl_path_256_cmds[]={$/;" v file: +objl_path_256_floats demos/subwaymap.c /^static const float objl_path_256_floats[]={$/;" v file: +objl_path_257_cmds demos/subwaymap.c /^static const unsigned char objl_path_257_cmds[]={$/;" v file: +objl_path_257_floats demos/subwaymap.c /^static const float objl_path_257_floats[]={$/;" v file: +objl_path_258_cmds demos/subwaymap.c /^static const unsigned char objl_path_258_cmds[]={$/;" v file: +objl_path_258_floats demos/subwaymap.c /^static const float objl_path_258_floats[]={$/;" v file: +objl_path_259_cmds demos/subwaymap.c /^static const unsigned char objl_path_259_cmds[]={$/;" v file: +objl_path_259_floats demos/subwaymap.c /^static const float objl_path_259_floats[]={$/;" v file: +objl_path_25_cmds demos/subwaymap.c /^static const unsigned char objl_path_25_cmds[]={$/;" v file: +objl_path_25_floats demos/subwaymap.c /^static const float objl_path_25_floats[]={$/;" v file: +objl_path_260_cmds demos/subwaymap.c /^static const unsigned char objl_path_260_cmds[]={$/;" v file: +objl_path_260_floats demos/subwaymap.c /^static const float objl_path_260_floats[]={$/;" v file: +objl_path_261_cmds demos/subwaymap.c /^static const unsigned char objl_path_261_cmds[]={$/;" v file: +objl_path_261_floats demos/subwaymap.c /^static const float objl_path_261_floats[]={$/;" v file: +objl_path_262_cmds demos/subwaymap.c /^static const unsigned char objl_path_262_cmds[]={$/;" v file: +objl_path_262_floats demos/subwaymap.c /^static const float objl_path_262_floats[]={$/;" v file: +objl_path_263_cmds demos/subwaymap.c /^static const unsigned char objl_path_263_cmds[]={$/;" v file: +objl_path_263_floats demos/subwaymap.c /^static const float objl_path_263_floats[]={$/;" v file: +objl_path_264_cmds demos/subwaymap.c /^static const unsigned char objl_path_264_cmds[]={$/;" v file: +objl_path_264_floats demos/subwaymap.c /^static const float objl_path_264_floats[]={$/;" v file: +objl_path_265_cmds demos/subwaymap.c /^static const unsigned char objl_path_265_cmds[]={$/;" v file: +objl_path_265_floats demos/subwaymap.c /^static const float objl_path_265_floats[]={$/;" v file: +objl_path_266_cmds demos/subwaymap.c /^static const unsigned char objl_path_266_cmds[]={$/;" v file: +objl_path_266_floats demos/subwaymap.c /^static const float objl_path_266_floats[]={$/;" v file: +objl_path_267_cmds demos/subwaymap.c /^static const unsigned char objl_path_267_cmds[]={$/;" v file: +objl_path_267_floats demos/subwaymap.c /^static const float objl_path_267_floats[]={$/;" v file: +objl_path_268_cmds demos/subwaymap.c /^static const unsigned char objl_path_268_cmds[]={$/;" v file: +objl_path_268_floats demos/subwaymap.c /^static const float objl_path_268_floats[]={$/;" v file: +objl_path_269_cmds demos/subwaymap.c /^static const unsigned char objl_path_269_cmds[]={$/;" v file: +objl_path_269_floats demos/subwaymap.c /^static const float objl_path_269_floats[]={$/;" v file: +objl_path_26_cmds demos/subwaymap.c /^static const unsigned char objl_path_26_cmds[]={$/;" v file: +objl_path_26_floats demos/subwaymap.c /^static const float objl_path_26_floats[]={$/;" v file: +objl_path_270_cmds demos/subwaymap.c /^static const unsigned char objl_path_270_cmds[]={$/;" v file: +objl_path_270_floats demos/subwaymap.c /^static const float objl_path_270_floats[]={$/;" v file: +objl_path_271_cmds demos/subwaymap.c /^static const unsigned char objl_path_271_cmds[]={$/;" v file: +objl_path_271_floats demos/subwaymap.c /^static const float objl_path_271_floats[]={$/;" v file: +objl_path_272_cmds demos/subwaymap.c /^static const unsigned char objl_path_272_cmds[]={$/;" v file: +objl_path_272_floats demos/subwaymap.c /^static const float objl_path_272_floats[]={$/;" v file: +objl_path_273_cmds demos/subwaymap.c /^static const unsigned char objl_path_273_cmds[]={$/;" v file: +objl_path_273_floats demos/subwaymap.c /^static const float objl_path_273_floats[]={$/;" v file: +objl_path_274_cmds demos/subwaymap.c /^static const unsigned char objl_path_274_cmds[]={$/;" v file: +objl_path_274_floats demos/subwaymap.c /^static const float objl_path_274_floats[]={$/;" v file: +objl_path_275_cmds demos/subwaymap.c /^static const unsigned char objl_path_275_cmds[]={$/;" v file: +objl_path_275_floats demos/subwaymap.c /^static const float objl_path_275_floats[]={$/;" v file: +objl_path_276_cmds demos/subwaymap.c /^static const unsigned char objl_path_276_cmds[]={$/;" v file: +objl_path_276_floats demos/subwaymap.c /^static const float objl_path_276_floats[]={$/;" v file: +objl_path_277_cmds demos/subwaymap.c /^static const unsigned char objl_path_277_cmds[]={$/;" v file: +objl_path_277_floats demos/subwaymap.c /^static const float objl_path_277_floats[]={$/;" v file: +objl_path_278_cmds demos/subwaymap.c /^static const unsigned char objl_path_278_cmds[]={$/;" v file: +objl_path_278_floats demos/subwaymap.c /^static const float objl_path_278_floats[]={$/;" v file: +objl_path_279_cmds demos/subwaymap.c /^static const unsigned char objl_path_279_cmds[]={$/;" v file: +objl_path_279_floats demos/subwaymap.c /^static const float objl_path_279_floats[]={$/;" v file: +objl_path_27_cmds demos/subwaymap.c /^static const unsigned char objl_path_27_cmds[]={$/;" v file: +objl_path_27_floats demos/subwaymap.c /^static const float objl_path_27_floats[]={$/;" v file: +objl_path_280_cmds demos/subwaymap.c /^static const unsigned char objl_path_280_cmds[]={$/;" v file: +objl_path_280_floats demos/subwaymap.c /^static const float objl_path_280_floats[]={$/;" v file: +objl_path_281_cmds demos/subwaymap.c /^static const unsigned char objl_path_281_cmds[]={$/;" v file: +objl_path_281_floats demos/subwaymap.c /^static const float objl_path_281_floats[]={$/;" v file: +objl_path_282_cmds demos/subwaymap.c /^static const unsigned char objl_path_282_cmds[]={$/;" v file: +objl_path_282_floats demos/subwaymap.c /^static const float objl_path_282_floats[]={$/;" v file: +objl_path_283_cmds demos/subwaymap.c /^static const unsigned char objl_path_283_cmds[]={$/;" v file: +objl_path_283_floats demos/subwaymap.c /^static const float objl_path_283_floats[]={$/;" v file: +objl_path_284_cmds demos/subwaymap.c /^static const unsigned char objl_path_284_cmds[]={$/;" v file: +objl_path_284_floats demos/subwaymap.c /^static const float objl_path_284_floats[]={$/;" v file: +objl_path_285_cmds demos/subwaymap.c /^static const unsigned char objl_path_285_cmds[]={$/;" v file: +objl_path_285_floats demos/subwaymap.c /^static const float objl_path_285_floats[]={$/;" v file: +objl_path_286_cmds demos/subwaymap.c /^static const unsigned char objl_path_286_cmds[]={$/;" v file: +objl_path_286_floats demos/subwaymap.c /^static const float objl_path_286_floats[]={$/;" v file: +objl_path_287_cmds demos/subwaymap.c /^static const unsigned char objl_path_287_cmds[]={$/;" v file: +objl_path_287_floats demos/subwaymap.c /^static const float objl_path_287_floats[]={$/;" v file: +objl_path_288_cmds demos/subwaymap.c /^static const unsigned char objl_path_288_cmds[]={$/;" v file: +objl_path_288_floats demos/subwaymap.c /^static const float objl_path_288_floats[]={$/;" v file: +objl_path_289_cmds demos/subwaymap.c /^static const unsigned char objl_path_289_cmds[]={$/;" v file: +objl_path_289_floats demos/subwaymap.c /^static const float objl_path_289_floats[]={$/;" v file: +objl_path_28_cmds demos/subwaymap.c /^static const unsigned char objl_path_28_cmds[]={$/;" v file: +objl_path_28_floats demos/subwaymap.c /^static const float objl_path_28_floats[]={$/;" v file: +objl_path_290_cmds demos/subwaymap.c /^static const unsigned char objl_path_290_cmds[]={$/;" v file: +objl_path_290_floats demos/subwaymap.c /^static const float objl_path_290_floats[]={$/;" v file: +objl_path_291_cmds demos/subwaymap.c /^static const unsigned char objl_path_291_cmds[]={$/;" v file: +objl_path_291_floats demos/subwaymap.c /^static const float objl_path_291_floats[]={$/;" v file: +objl_path_292_cmds demos/subwaymap.c /^static const unsigned char objl_path_292_cmds[]={$/;" v file: +objl_path_292_floats demos/subwaymap.c /^static const float objl_path_292_floats[]={$/;" v file: +objl_path_293_cmds demos/subwaymap.c /^static const unsigned char objl_path_293_cmds[]={$/;" v file: +objl_path_293_floats demos/subwaymap.c /^static const float objl_path_293_floats[]={$/;" v file: +objl_path_294_cmds demos/subwaymap.c /^static const unsigned char objl_path_294_cmds[]={$/;" v file: +objl_path_294_floats demos/subwaymap.c /^static const float objl_path_294_floats[]={$/;" v file: +objl_path_295_cmds demos/subwaymap.c /^static const unsigned char objl_path_295_cmds[]={$/;" v file: +objl_path_295_floats demos/subwaymap.c /^static const float objl_path_295_floats[]={$/;" v file: +objl_path_296_cmds demos/subwaymap.c /^static const unsigned char objl_path_296_cmds[]={$/;" v file: +objl_path_296_floats demos/subwaymap.c /^static const float objl_path_296_floats[]={$/;" v file: +objl_path_297_cmds demos/subwaymap.c /^static const unsigned char objl_path_297_cmds[]={$/;" v file: +objl_path_297_floats demos/subwaymap.c /^static const float objl_path_297_floats[]={$/;" v file: +objl_path_298_cmds demos/subwaymap.c /^static const unsigned char objl_path_298_cmds[]={$/;" v file: +objl_path_298_floats demos/subwaymap.c /^static const float objl_path_298_floats[]={$/;" v file: +objl_path_299_cmds demos/subwaymap.c /^static const unsigned char objl_path_299_cmds[]={$/;" v file: +objl_path_299_floats demos/subwaymap.c /^static const float objl_path_299_floats[]={$/;" v file: +objl_path_29_cmds demos/subwaymap.c /^static const unsigned char objl_path_29_cmds[]={$/;" v file: +objl_path_29_floats demos/subwaymap.c /^static const float objl_path_29_floats[]={$/;" v file: +objl_path_2_cmds demos/subwaymap.c /^static const unsigned char objl_path_2_cmds[]={$/;" v file: +objl_path_2_floats demos/subwaymap.c /^static const float objl_path_2_floats[]={$/;" v file: +objl_path_300_cmds demos/subwaymap.c /^static const unsigned char objl_path_300_cmds[]={$/;" v file: +objl_path_300_floats demos/subwaymap.c /^static const float objl_path_300_floats[]={$/;" v file: +objl_path_301_cmds demos/subwaymap.c /^static const unsigned char objl_path_301_cmds[]={$/;" v file: +objl_path_301_floats demos/subwaymap.c /^static const float objl_path_301_floats[]={$/;" v file: +objl_path_302_cmds demos/subwaymap.c /^static const unsigned char objl_path_302_cmds[]={$/;" v file: +objl_path_302_floats demos/subwaymap.c /^static const float objl_path_302_floats[]={$/;" v file: +objl_path_303_cmds demos/subwaymap.c /^static const unsigned char objl_path_303_cmds[]={$/;" v file: +objl_path_303_floats demos/subwaymap.c /^static const float objl_path_303_floats[]={$/;" v file: +objl_path_304_cmds demos/subwaymap.c /^static const unsigned char objl_path_304_cmds[]={$/;" v file: +objl_path_304_floats demos/subwaymap.c /^static const float objl_path_304_floats[]={$/;" v file: +objl_path_305_cmds demos/subwaymap.c /^static const unsigned char objl_path_305_cmds[]={$/;" v file: +objl_path_305_floats demos/subwaymap.c /^static const float objl_path_305_floats[]={$/;" v file: +objl_path_306_cmds demos/subwaymap.c /^static const unsigned char objl_path_306_cmds[]={$/;" v file: +objl_path_306_floats demos/subwaymap.c /^static const float objl_path_306_floats[]={$/;" v file: +objl_path_307_cmds demos/subwaymap.c /^static const unsigned char objl_path_307_cmds[]={$/;" v file: +objl_path_307_floats demos/subwaymap.c /^static const float objl_path_307_floats[]={$/;" v file: +objl_path_308_cmds demos/subwaymap.c /^static const unsigned char objl_path_308_cmds[]={$/;" v file: +objl_path_308_floats demos/subwaymap.c /^static const float objl_path_308_floats[]={$/;" v file: +objl_path_309_cmds demos/subwaymap.c /^static const unsigned char objl_path_309_cmds[]={$/;" v file: +objl_path_309_floats demos/subwaymap.c /^static const float objl_path_309_floats[]={$/;" v file: +objl_path_30_cmds demos/subwaymap.c /^static const unsigned char objl_path_30_cmds[]={$/;" v file: +objl_path_30_floats demos/subwaymap.c /^static const float objl_path_30_floats[]={$/;" v file: +objl_path_310_cmds demos/subwaymap.c /^static const unsigned char objl_path_310_cmds[]={$/;" v file: +objl_path_310_floats demos/subwaymap.c /^static const float objl_path_310_floats[]={$/;" v file: +objl_path_311_cmds demos/subwaymap.c /^static const unsigned char objl_path_311_cmds[]={$/;" v file: +objl_path_311_floats demos/subwaymap.c /^static const float objl_path_311_floats[]={$/;" v file: +objl_path_312_cmds demos/subwaymap.c /^static const unsigned char objl_path_312_cmds[]={$/;" v file: +objl_path_312_floats demos/subwaymap.c /^static const float objl_path_312_floats[]={$/;" v file: +objl_path_313_cmds demos/subwaymap.c /^static const unsigned char objl_path_313_cmds[]={$/;" v file: +objl_path_313_floats demos/subwaymap.c /^static const float objl_path_313_floats[]={$/;" v file: +objl_path_314_cmds demos/subwaymap.c /^static const unsigned char objl_path_314_cmds[]={$/;" v file: +objl_path_314_floats demos/subwaymap.c /^static const float objl_path_314_floats[]={$/;" v file: +objl_path_315_cmds demos/subwaymap.c /^static const unsigned char objl_path_315_cmds[]={$/;" v file: +objl_path_315_floats demos/subwaymap.c /^static const float objl_path_315_floats[]={$/;" v file: +objl_path_316_cmds demos/subwaymap.c /^static const unsigned char objl_path_316_cmds[]={$/;" v file: +objl_path_316_floats demos/subwaymap.c /^static const float objl_path_316_floats[]={$/;" v file: +objl_path_317_cmds demos/subwaymap.c /^static const unsigned char objl_path_317_cmds[]={$/;" v file: +objl_path_317_floats demos/subwaymap.c /^static const float objl_path_317_floats[]={$/;" v file: +objl_path_318_cmds demos/subwaymap.c /^static const unsigned char objl_path_318_cmds[]={$/;" v file: +objl_path_318_floats demos/subwaymap.c /^static const float objl_path_318_floats[]={$/;" v file: +objl_path_319_cmds demos/subwaymap.c /^static const unsigned char objl_path_319_cmds[]={$/;" v file: +objl_path_319_floats demos/subwaymap.c /^static const float objl_path_319_floats[]={$/;" v file: +objl_path_31_cmds demos/subwaymap.c /^static const unsigned char objl_path_31_cmds[]={$/;" v file: +objl_path_31_floats demos/subwaymap.c /^static const float objl_path_31_floats[]={$/;" v file: +objl_path_320_cmds demos/subwaymap.c /^static const unsigned char objl_path_320_cmds[]={$/;" v file: +objl_path_320_floats demos/subwaymap.c /^static const float objl_path_320_floats[]={$/;" v file: +objl_path_321_cmds demos/subwaymap.c /^static const unsigned char objl_path_321_cmds[]={$/;" v file: +objl_path_321_floats demos/subwaymap.c /^static const float objl_path_321_floats[]={$/;" v file: +objl_path_322_cmds demos/subwaymap.c /^static const unsigned char objl_path_322_cmds[]={$/;" v file: +objl_path_322_floats demos/subwaymap.c /^static const float objl_path_322_floats[]={$/;" v file: +objl_path_323_cmds demos/subwaymap.c /^static const unsigned char objl_path_323_cmds[]={$/;" v file: +objl_path_323_floats demos/subwaymap.c /^static const float objl_path_323_floats[]={$/;" v file: +objl_path_324_cmds demos/subwaymap.c /^static const unsigned char objl_path_324_cmds[]={$/;" v file: +objl_path_324_floats demos/subwaymap.c /^static const float objl_path_324_floats[]={$/;" v file: +objl_path_325_cmds demos/subwaymap.c /^static const unsigned char objl_path_325_cmds[]={$/;" v file: +objl_path_325_floats demos/subwaymap.c /^static const float objl_path_325_floats[]={$/;" v file: +objl_path_326_cmds demos/subwaymap.c /^static const unsigned char objl_path_326_cmds[]={$/;" v file: +objl_path_326_floats demos/subwaymap.c /^static const float objl_path_326_floats[]={$/;" v file: +objl_path_327_cmds demos/subwaymap.c /^static const unsigned char objl_path_327_cmds[]={$/;" v file: +objl_path_327_floats demos/subwaymap.c /^static const float objl_path_327_floats[]={$/;" v file: +objl_path_328_cmds demos/subwaymap.c /^static const unsigned char objl_path_328_cmds[]={$/;" v file: +objl_path_328_floats demos/subwaymap.c /^static const float objl_path_328_floats[]={$/;" v file: +objl_path_329_cmds demos/subwaymap.c /^static const unsigned char objl_path_329_cmds[]={$/;" v file: +objl_path_329_floats demos/subwaymap.c /^static const float objl_path_329_floats[]={$/;" v file: +objl_path_32_cmds demos/subwaymap.c /^static const unsigned char objl_path_32_cmds[]={$/;" v file: +objl_path_32_floats demos/subwaymap.c /^static const float objl_path_32_floats[]={$/;" v file: +objl_path_330_cmds demos/subwaymap.c /^static const unsigned char objl_path_330_cmds[]={$/;" v file: +objl_path_330_floats demos/subwaymap.c /^static const float objl_path_330_floats[]={$/;" v file: +objl_path_331_cmds demos/subwaymap.c /^static const unsigned char objl_path_331_cmds[]={$/;" v file: +objl_path_331_floats demos/subwaymap.c /^static const float objl_path_331_floats[]={$/;" v file: +objl_path_332_cmds demos/subwaymap.c /^static const unsigned char objl_path_332_cmds[]={$/;" v file: +objl_path_332_floats demos/subwaymap.c /^static const float objl_path_332_floats[]={$/;" v file: +objl_path_333_cmds demos/subwaymap.c /^static const unsigned char objl_path_333_cmds[]={$/;" v file: +objl_path_333_floats demos/subwaymap.c /^static const float objl_path_333_floats[]={$/;" v file: +objl_path_334_cmds demos/subwaymap.c /^static const unsigned char objl_path_334_cmds[]={$/;" v file: +objl_path_334_floats demos/subwaymap.c /^static const float objl_path_334_floats[]={$/;" v file: +objl_path_335_cmds demos/subwaymap.c /^static const unsigned char objl_path_335_cmds[]={$/;" v file: +objl_path_335_floats demos/subwaymap.c /^static const float objl_path_335_floats[]={$/;" v file: +objl_path_336_cmds demos/subwaymap.c /^static const unsigned char objl_path_336_cmds[]={$/;" v file: +objl_path_336_floats demos/subwaymap.c /^static const float objl_path_336_floats[]={$/;" v file: +objl_path_337_cmds demos/subwaymap.c /^static const unsigned char objl_path_337_cmds[]={$/;" v file: +objl_path_337_floats demos/subwaymap.c /^static const float objl_path_337_floats[]={$/;" v file: +objl_path_338_cmds demos/subwaymap.c /^static const unsigned char objl_path_338_cmds[]={$/;" v file: +objl_path_338_floats demos/subwaymap.c /^static const float objl_path_338_floats[]={$/;" v file: +objl_path_339_cmds demos/subwaymap.c /^static const unsigned char objl_path_339_cmds[]={$/;" v file: +objl_path_339_floats demos/subwaymap.c /^static const float objl_path_339_floats[]={$/;" v file: +objl_path_33_cmds demos/subwaymap.c /^static const unsigned char objl_path_33_cmds[]={$/;" v file: +objl_path_33_floats demos/subwaymap.c /^static const float objl_path_33_floats[]={$/;" v file: +objl_path_340_cmds demos/subwaymap.c /^static const unsigned char objl_path_340_cmds[]={$/;" v file: +objl_path_340_floats demos/subwaymap.c /^static const float objl_path_340_floats[]={$/;" v file: +objl_path_341_cmds demos/subwaymap.c /^static const unsigned char objl_path_341_cmds[]={$/;" v file: +objl_path_341_floats demos/subwaymap.c /^static const float objl_path_341_floats[]={$/;" v file: +objl_path_342_cmds demos/subwaymap.c /^static const unsigned char objl_path_342_cmds[]={$/;" v file: +objl_path_342_floats demos/subwaymap.c /^static const float objl_path_342_floats[]={$/;" v file: +objl_path_343_cmds demos/subwaymap.c /^static const unsigned char objl_path_343_cmds[]={$/;" v file: +objl_path_343_floats demos/subwaymap.c /^static const float objl_path_343_floats[]={$/;" v file: +objl_path_344_cmds demos/subwaymap.c /^static const unsigned char objl_path_344_cmds[]={$/;" v file: +objl_path_344_floats demos/subwaymap.c /^static const float objl_path_344_floats[]={$/;" v file: +objl_path_345_cmds demos/subwaymap.c /^static const unsigned char objl_path_345_cmds[]={$/;" v file: +objl_path_345_floats demos/subwaymap.c /^static const float objl_path_345_floats[]={$/;" v file: +objl_path_346_cmds demos/subwaymap.c /^static const unsigned char objl_path_346_cmds[]={$/;" v file: +objl_path_346_floats demos/subwaymap.c /^static const float objl_path_346_floats[]={$/;" v file: +objl_path_347_cmds demos/subwaymap.c /^static const unsigned char objl_path_347_cmds[]={$/;" v file: +objl_path_347_floats demos/subwaymap.c /^static const float objl_path_347_floats[]={$/;" v file: +objl_path_348_cmds demos/subwaymap.c /^static const unsigned char objl_path_348_cmds[]={$/;" v file: +objl_path_348_floats demos/subwaymap.c /^static const float objl_path_348_floats[]={$/;" v file: +objl_path_349_cmds demos/subwaymap.c /^static const unsigned char objl_path_349_cmds[]={$/;" v file: +objl_path_349_floats demos/subwaymap.c /^static const float objl_path_349_floats[]={$/;" v file: +objl_path_34_cmds demos/subwaymap.c /^static const unsigned char objl_path_34_cmds[]={$/;" v file: +objl_path_34_floats demos/subwaymap.c /^static const float objl_path_34_floats[]={$/;" v file: +objl_path_350_cmds demos/subwaymap.c /^static const unsigned char objl_path_350_cmds[]={$/;" v file: +objl_path_350_floats demos/subwaymap.c /^static const float objl_path_350_floats[]={$/;" v file: +objl_path_351_cmds demos/subwaymap.c /^static const unsigned char objl_path_351_cmds[]={$/;" v file: +objl_path_351_floats demos/subwaymap.c /^static const float objl_path_351_floats[]={$/;" v file: +objl_path_352_cmds demos/subwaymap.c /^static const unsigned char objl_path_352_cmds[]={$/;" v file: +objl_path_352_floats demos/subwaymap.c /^static const float objl_path_352_floats[]={$/;" v file: +objl_path_353_cmds demos/subwaymap.c /^static const unsigned char objl_path_353_cmds[]={$/;" v file: +objl_path_353_floats demos/subwaymap.c /^static const float objl_path_353_floats[]={$/;" v file: +objl_path_354_cmds demos/subwaymap.c /^static const unsigned char objl_path_354_cmds[]={$/;" v file: +objl_path_354_floats demos/subwaymap.c /^static const float objl_path_354_floats[]={$/;" v file: +objl_path_355_cmds demos/subwaymap.c /^static const unsigned char objl_path_355_cmds[]={$/;" v file: +objl_path_355_floats demos/subwaymap.c /^static const float objl_path_355_floats[]={$/;" v file: +objl_path_356_cmds demos/subwaymap.c /^static const unsigned char objl_path_356_cmds[]={$/;" v file: +objl_path_356_floats demos/subwaymap.c /^static const float objl_path_356_floats[]={$/;" v file: +objl_path_357_cmds demos/subwaymap.c /^static const unsigned char objl_path_357_cmds[]={$/;" v file: +objl_path_357_floats demos/subwaymap.c /^static const float objl_path_357_floats[]={$/;" v file: +objl_path_358_cmds demos/subwaymap.c /^static const unsigned char objl_path_358_cmds[]={$/;" v file: +objl_path_358_floats demos/subwaymap.c /^static const float objl_path_358_floats[]={$/;" v file: +objl_path_359_cmds demos/subwaymap.c /^static const unsigned char objl_path_359_cmds[]={$/;" v file: +objl_path_359_floats demos/subwaymap.c /^static const float objl_path_359_floats[]={$/;" v file: +objl_path_35_cmds demos/subwaymap.c /^static const unsigned char objl_path_35_cmds[]={$/;" v file: +objl_path_35_floats demos/subwaymap.c /^static const float objl_path_35_floats[]={$/;" v file: +objl_path_360_cmds demos/subwaymap.c /^static const unsigned char objl_path_360_cmds[]={$/;" v file: +objl_path_360_floats demos/subwaymap.c /^static const float objl_path_360_floats[]={$/;" v file: +objl_path_361_cmds demos/subwaymap.c /^static const unsigned char objl_path_361_cmds[]={$/;" v file: +objl_path_361_floats demos/subwaymap.c /^static const float objl_path_361_floats[]={$/;" v file: +objl_path_362_cmds demos/subwaymap.c /^static const unsigned char objl_path_362_cmds[]={$/;" v file: +objl_path_362_floats demos/subwaymap.c /^static const float objl_path_362_floats[]={$/;" v file: +objl_path_363_cmds demos/subwaymap.c /^static const unsigned char objl_path_363_cmds[]={$/;" v file: +objl_path_363_floats demos/subwaymap.c /^static const float objl_path_363_floats[]={$/;" v file: +objl_path_364_cmds demos/subwaymap.c /^static const unsigned char objl_path_364_cmds[]={$/;" v file: +objl_path_364_floats demos/subwaymap.c /^static const float objl_path_364_floats[]={$/;" v file: +objl_path_365_cmds demos/subwaymap.c /^static const unsigned char objl_path_365_cmds[]={$/;" v file: +objl_path_365_floats demos/subwaymap.c /^static const float objl_path_365_floats[]={$/;" v file: +objl_path_366_cmds demos/subwaymap.c /^static const unsigned char objl_path_366_cmds[]={$/;" v file: +objl_path_366_floats demos/subwaymap.c /^static const float objl_path_366_floats[]={$/;" v file: +objl_path_367_cmds demos/subwaymap.c /^static const unsigned char objl_path_367_cmds[]={$/;" v file: +objl_path_367_floats demos/subwaymap.c /^static const float objl_path_367_floats[]={$/;" v file: +objl_path_368_cmds demos/subwaymap.c /^static const unsigned char objl_path_368_cmds[]={$/;" v file: +objl_path_368_floats demos/subwaymap.c /^static const float objl_path_368_floats[]={$/;" v file: +objl_path_369_cmds demos/subwaymap.c /^static const unsigned char objl_path_369_cmds[]={$/;" v file: +objl_path_369_floats demos/subwaymap.c /^static const float objl_path_369_floats[]={$/;" v file: +objl_path_36_cmds demos/subwaymap.c /^static const unsigned char objl_path_36_cmds[]={$/;" v file: +objl_path_36_floats demos/subwaymap.c /^static const float objl_path_36_floats[]={$/;" v file: +objl_path_370_cmds demos/subwaymap.c /^static const unsigned char objl_path_370_cmds[]={$/;" v file: +objl_path_370_floats demos/subwaymap.c /^static const float objl_path_370_floats[]={$/;" v file: +objl_path_371_cmds demos/subwaymap.c /^static const unsigned char objl_path_371_cmds[]={$/;" v file: +objl_path_371_floats demos/subwaymap.c /^static const float objl_path_371_floats[]={$/;" v file: +objl_path_372_cmds demos/subwaymap.c /^static const unsigned char objl_path_372_cmds[]={$/;" v file: +objl_path_372_floats demos/subwaymap.c /^static const float objl_path_372_floats[]={$/;" v file: +objl_path_373_cmds demos/subwaymap.c /^static const unsigned char objl_path_373_cmds[]={$/;" v file: +objl_path_373_floats demos/subwaymap.c /^static const float objl_path_373_floats[]={$/;" v file: +objl_path_374_cmds demos/subwaymap.c /^static const unsigned char objl_path_374_cmds[]={$/;" v file: +objl_path_374_floats demos/subwaymap.c /^static const float objl_path_374_floats[]={$/;" v file: +objl_path_375_cmds demos/subwaymap.c /^static const unsigned char objl_path_375_cmds[]={$/;" v file: +objl_path_375_floats demos/subwaymap.c /^static const float objl_path_375_floats[]={$/;" v file: +objl_path_376_cmds demos/subwaymap.c /^static const unsigned char objl_path_376_cmds[]={$/;" v file: +objl_path_376_floats demos/subwaymap.c /^static const float objl_path_376_floats[]={$/;" v file: +objl_path_377_cmds demos/subwaymap.c /^static const unsigned char objl_path_377_cmds[]={$/;" v file: +objl_path_377_floats demos/subwaymap.c /^static const float objl_path_377_floats[]={$/;" v file: +objl_path_378_cmds demos/subwaymap.c /^static const unsigned char objl_path_378_cmds[]={$/;" v file: +objl_path_378_floats demos/subwaymap.c /^static const float objl_path_378_floats[]={$/;" v file: +objl_path_379_cmds demos/subwaymap.c /^static const unsigned char objl_path_379_cmds[]={$/;" v file: +objl_path_379_floats demos/subwaymap.c /^static const float objl_path_379_floats[]={$/;" v file: +objl_path_37_cmds demos/subwaymap.c /^static const unsigned char objl_path_37_cmds[]={$/;" v file: +objl_path_37_floats demos/subwaymap.c /^static const float objl_path_37_floats[]={$/;" v file: +objl_path_380_cmds demos/subwaymap.c /^static const unsigned char objl_path_380_cmds[]={$/;" v file: +objl_path_380_floats demos/subwaymap.c /^static const float objl_path_380_floats[]={$/;" v file: +objl_path_381_cmds demos/subwaymap.c /^static const unsigned char objl_path_381_cmds[]={$/;" v file: +objl_path_381_floats demos/subwaymap.c /^static const float objl_path_381_floats[]={$/;" v file: +objl_path_382_cmds demos/subwaymap.c /^static const unsigned char objl_path_382_cmds[]={$/;" v file: +objl_path_382_floats demos/subwaymap.c /^static const float objl_path_382_floats[]={$/;" v file: +objl_path_383_cmds demos/subwaymap.c /^static const unsigned char objl_path_383_cmds[]={$/;" v file: +objl_path_383_floats demos/subwaymap.c /^static const float objl_path_383_floats[]={$/;" v file: +objl_path_384_cmds demos/subwaymap.c /^static const unsigned char objl_path_384_cmds[]={$/;" v file: +objl_path_384_floats demos/subwaymap.c /^static const float objl_path_384_floats[]={$/;" v file: +objl_path_385_cmds demos/subwaymap.c /^static const unsigned char objl_path_385_cmds[]={$/;" v file: +objl_path_385_floats demos/subwaymap.c /^static const float objl_path_385_floats[]={$/;" v file: +objl_path_386_cmds demos/subwaymap.c /^static const unsigned char objl_path_386_cmds[]={$/;" v file: +objl_path_386_floats demos/subwaymap.c /^static const float objl_path_386_floats[]={$/;" v file: +objl_path_387_cmds demos/subwaymap.c /^static const unsigned char objl_path_387_cmds[]={$/;" v file: +objl_path_387_floats demos/subwaymap.c /^static const float objl_path_387_floats[]={$/;" v file: +objl_path_388_cmds demos/subwaymap.c /^static const unsigned char objl_path_388_cmds[]={$/;" v file: +objl_path_388_floats demos/subwaymap.c /^static const float objl_path_388_floats[]={$/;" v file: +objl_path_389_cmds demos/subwaymap.c /^static const unsigned char objl_path_389_cmds[]={$/;" v file: +objl_path_389_floats demos/subwaymap.c /^static const float objl_path_389_floats[]={$/;" v file: +objl_path_38_cmds demos/subwaymap.c /^static const unsigned char objl_path_38_cmds[]={$/;" v file: +objl_path_38_floats demos/subwaymap.c /^static const float objl_path_38_floats[]={$/;" v file: +objl_path_390_cmds demos/subwaymap.c /^static const unsigned char objl_path_390_cmds[]={$/;" v file: +objl_path_390_floats demos/subwaymap.c /^static const float objl_path_390_floats[]={$/;" v file: +objl_path_391_cmds demos/subwaymap.c /^static const unsigned char objl_path_391_cmds[]={$/;" v file: +objl_path_391_floats demos/subwaymap.c /^static const float objl_path_391_floats[]={$/;" v file: +objl_path_392_cmds demos/subwaymap.c /^static const unsigned char objl_path_392_cmds[]={$/;" v file: +objl_path_392_floats demos/subwaymap.c /^static const float objl_path_392_floats[]={$/;" v file: +objl_path_393_cmds demos/subwaymap.c /^static const unsigned char objl_path_393_cmds[]={$/;" v file: +objl_path_393_floats demos/subwaymap.c /^static const float objl_path_393_floats[]={$/;" v file: +objl_path_394_cmds demos/subwaymap.c /^static const unsigned char objl_path_394_cmds[]={$/;" v file: +objl_path_394_floats demos/subwaymap.c /^static const float objl_path_394_floats[]={$/;" v file: +objl_path_395_cmds demos/subwaymap.c /^static const unsigned char objl_path_395_cmds[]={$/;" v file: +objl_path_395_floats demos/subwaymap.c /^static const float objl_path_395_floats[]={$/;" v file: +objl_path_396_cmds demos/subwaymap.c /^static const unsigned char objl_path_396_cmds[]={$/;" v file: +objl_path_396_floats demos/subwaymap.c /^static const float objl_path_396_floats[]={$/;" v file: +objl_path_397_cmds demos/subwaymap.c /^static const unsigned char objl_path_397_cmds[]={$/;" v file: +objl_path_397_floats demos/subwaymap.c /^static const float objl_path_397_floats[]={$/;" v file: +objl_path_398_cmds demos/subwaymap.c /^static const unsigned char objl_path_398_cmds[]={$/;" v file: +objl_path_398_floats demos/subwaymap.c /^static const float objl_path_398_floats[]={$/;" v file: +objl_path_399_cmds demos/subwaymap.c /^static const unsigned char objl_path_399_cmds[]={$/;" v file: +objl_path_399_floats demos/subwaymap.c /^static const float objl_path_399_floats[]={$/;" v file: +objl_path_39_cmds demos/subwaymap.c /^static const unsigned char objl_path_39_cmds[]={$/;" v file: +objl_path_39_floats demos/subwaymap.c /^static const float objl_path_39_floats[]={$/;" v file: +objl_path_3_cmds demos/subwaymap.c /^static const unsigned char objl_path_3_cmds[]={$/;" v file: +objl_path_3_floats demos/subwaymap.c /^static const float objl_path_3_floats[]={$/;" v file: +objl_path_400_cmds demos/subwaymap.c /^static const unsigned char objl_path_400_cmds[]={$/;" v file: +objl_path_400_floats demos/subwaymap.c /^static const float objl_path_400_floats[]={$/;" v file: +objl_path_401_cmds demos/subwaymap.c /^static const unsigned char objl_path_401_cmds[]={$/;" v file: +objl_path_401_floats demos/subwaymap.c /^static const float objl_path_401_floats[]={$/;" v file: +objl_path_402_cmds demos/subwaymap.c /^static const unsigned char objl_path_402_cmds[]={$/;" v file: +objl_path_402_floats demos/subwaymap.c /^static const float objl_path_402_floats[]={$/;" v file: +objl_path_403_cmds demos/subwaymap.c /^static const unsigned char objl_path_403_cmds[]={$/;" v file: +objl_path_403_floats demos/subwaymap.c /^static const float objl_path_403_floats[]={$/;" v file: +objl_path_404_cmds demos/subwaymap.c /^static const unsigned char objl_path_404_cmds[]={$/;" v file: +objl_path_404_floats demos/subwaymap.c /^static const float objl_path_404_floats[]={$/;" v file: +objl_path_405_cmds demos/subwaymap.c /^static const unsigned char objl_path_405_cmds[]={$/;" v file: +objl_path_405_floats demos/subwaymap.c /^static const float objl_path_405_floats[]={$/;" v file: +objl_path_406_cmds demos/subwaymap.c /^static const unsigned char objl_path_406_cmds[]={$/;" v file: +objl_path_406_floats demos/subwaymap.c /^static const float objl_path_406_floats[]={$/;" v file: +objl_path_407_cmds demos/subwaymap.c /^static const unsigned char objl_path_407_cmds[]={$/;" v file: +objl_path_407_floats demos/subwaymap.c /^static const float objl_path_407_floats[]={$/;" v file: +objl_path_408_cmds demos/subwaymap.c /^static const unsigned char objl_path_408_cmds[]={$/;" v file: +objl_path_408_floats demos/subwaymap.c /^static const float objl_path_408_floats[]={$/;" v file: +objl_path_409_cmds demos/subwaymap.c /^static const unsigned char objl_path_409_cmds[]={$/;" v file: +objl_path_409_floats demos/subwaymap.c /^static const float objl_path_409_floats[]={$/;" v file: +objl_path_40_cmds demos/subwaymap.c /^static const unsigned char objl_path_40_cmds[]={$/;" v file: +objl_path_40_floats demos/subwaymap.c /^static const float objl_path_40_floats[]={$/;" v file: +objl_path_410_cmds demos/subwaymap.c /^static const unsigned char objl_path_410_cmds[]={$/;" v file: +objl_path_410_floats demos/subwaymap.c /^static const float objl_path_410_floats[]={$/;" v file: +objl_path_411_cmds demos/subwaymap.c /^static const unsigned char objl_path_411_cmds[]={$/;" v file: +objl_path_411_floats demos/subwaymap.c /^static const float objl_path_411_floats[]={$/;" v file: +objl_path_412_cmds demos/subwaymap.c /^static const unsigned char objl_path_412_cmds[]={$/;" v file: +objl_path_412_floats demos/subwaymap.c /^static const float objl_path_412_floats[]={$/;" v file: +objl_path_413_cmds demos/subwaymap.c /^static const unsigned char objl_path_413_cmds[]={$/;" v file: +objl_path_413_floats demos/subwaymap.c /^static const float objl_path_413_floats[]={$/;" v file: +objl_path_414_cmds demos/subwaymap.c /^static const unsigned char objl_path_414_cmds[]={$/;" v file: +objl_path_414_floats demos/subwaymap.c /^static const float objl_path_414_floats[]={$/;" v file: +objl_path_415_cmds demos/subwaymap.c /^static const unsigned char objl_path_415_cmds[]={$/;" v file: +objl_path_415_floats demos/subwaymap.c /^static const float objl_path_415_floats[]={$/;" v file: +objl_path_416_cmds demos/subwaymap.c /^static const unsigned char objl_path_416_cmds[]={$/;" v file: +objl_path_416_floats demos/subwaymap.c /^static const float objl_path_416_floats[]={$/;" v file: +objl_path_417_cmds demos/subwaymap.c /^static const unsigned char objl_path_417_cmds[]={$/;" v file: +objl_path_417_floats demos/subwaymap.c /^static const float objl_path_417_floats[]={$/;" v file: +objl_path_418_cmds demos/subwaymap.c /^static const unsigned char objl_path_418_cmds[]={$/;" v file: +objl_path_418_floats demos/subwaymap.c /^static const float objl_path_418_floats[]={$/;" v file: +objl_path_419_cmds demos/subwaymap.c /^static const unsigned char objl_path_419_cmds[]={$/;" v file: +objl_path_419_floats demos/subwaymap.c /^static const float objl_path_419_floats[]={$/;" v file: +objl_path_41_cmds demos/subwaymap.c /^static const unsigned char objl_path_41_cmds[]={$/;" v file: +objl_path_41_floats demos/subwaymap.c /^static const float objl_path_41_floats[]={$/;" v file: +objl_path_420_cmds demos/subwaymap.c /^static const unsigned char objl_path_420_cmds[]={$/;" v file: +objl_path_420_floats demos/subwaymap.c /^static const float objl_path_420_floats[]={$/;" v file: +objl_path_421_cmds demos/subwaymap.c /^static const unsigned char objl_path_421_cmds[]={$/;" v file: +objl_path_421_floats demos/subwaymap.c /^static const float objl_path_421_floats[]={$/;" v file: +objl_path_422_cmds demos/subwaymap.c /^static const unsigned char objl_path_422_cmds[]={$/;" v file: +objl_path_422_floats demos/subwaymap.c /^static const float objl_path_422_floats[]={$/;" v file: +objl_path_423_cmds demos/subwaymap.c /^static const unsigned char objl_path_423_cmds[]={$/;" v file: +objl_path_423_floats demos/subwaymap.c /^static const float objl_path_423_floats[]={$/;" v file: +objl_path_424_cmds demos/subwaymap.c /^static const unsigned char objl_path_424_cmds[]={$/;" v file: +objl_path_424_floats demos/subwaymap.c /^static const float objl_path_424_floats[]={$/;" v file: +objl_path_425_cmds demos/subwaymap.c /^static const unsigned char objl_path_425_cmds[]={$/;" v file: +objl_path_425_floats demos/subwaymap.c /^static const float objl_path_425_floats[]={$/;" v file: +objl_path_426_cmds demos/subwaymap.c /^static const unsigned char objl_path_426_cmds[]={$/;" v file: +objl_path_426_floats demos/subwaymap.c /^static const float objl_path_426_floats[]={$/;" v file: +objl_path_427_cmds demos/subwaymap.c /^static const unsigned char objl_path_427_cmds[]={$/;" v file: +objl_path_427_floats demos/subwaymap.c /^static const float objl_path_427_floats[]={$/;" v file: +objl_path_428_cmds demos/subwaymap.c /^static const unsigned char objl_path_428_cmds[]={$/;" v file: +objl_path_428_floats demos/subwaymap.c /^static const float objl_path_428_floats[]={$/;" v file: +objl_path_429_cmds demos/subwaymap.c /^static const unsigned char objl_path_429_cmds[]={$/;" v file: +objl_path_429_floats demos/subwaymap.c /^static const float objl_path_429_floats[]={$/;" v file: +objl_path_42_cmds demos/subwaymap.c /^static const unsigned char objl_path_42_cmds[]={$/;" v file: +objl_path_42_floats demos/subwaymap.c /^static const float objl_path_42_floats[]={$/;" v file: +objl_path_430_cmds demos/subwaymap.c /^static const unsigned char objl_path_430_cmds[]={$/;" v file: +objl_path_430_floats demos/subwaymap.c /^static const float objl_path_430_floats[]={$/;" v file: +objl_path_431_cmds demos/subwaymap.c /^static const unsigned char objl_path_431_cmds[]={$/;" v file: +objl_path_431_floats demos/subwaymap.c /^static const float objl_path_431_floats[]={$/;" v file: +objl_path_432_cmds demos/subwaymap.c /^static const unsigned char objl_path_432_cmds[]={$/;" v file: +objl_path_432_floats demos/subwaymap.c /^static const float objl_path_432_floats[]={$/;" v file: +objl_path_433_cmds demos/subwaymap.c /^static const unsigned char objl_path_433_cmds[]={$/;" v file: +objl_path_433_floats demos/subwaymap.c /^static const float objl_path_433_floats[]={$/;" v file: +objl_path_434_cmds demos/subwaymap.c /^static const unsigned char objl_path_434_cmds[]={$/;" v file: +objl_path_434_floats demos/subwaymap.c /^static const float objl_path_434_floats[]={$/;" v file: +objl_path_435_cmds demos/subwaymap.c /^static const unsigned char objl_path_435_cmds[]={$/;" v file: +objl_path_435_floats demos/subwaymap.c /^static const float objl_path_435_floats[]={$/;" v file: +objl_path_436_cmds demos/subwaymap.c /^static const unsigned char objl_path_436_cmds[]={$/;" v file: +objl_path_436_floats demos/subwaymap.c /^static const float objl_path_436_floats[]={$/;" v file: +objl_path_437_cmds demos/subwaymap.c /^static const unsigned char objl_path_437_cmds[]={$/;" v file: +objl_path_437_floats demos/subwaymap.c /^static const float objl_path_437_floats[]={$/;" v file: +objl_path_438_cmds demos/subwaymap.c /^static const unsigned char objl_path_438_cmds[]={$/;" v file: +objl_path_438_floats demos/subwaymap.c /^static const float objl_path_438_floats[]={$/;" v file: +objl_path_439_cmds demos/subwaymap.c /^static const unsigned char objl_path_439_cmds[]={$/;" v file: +objl_path_439_floats demos/subwaymap.c /^static const float objl_path_439_floats[]={$/;" v file: +objl_path_43_cmds demos/subwaymap.c /^static const unsigned char objl_path_43_cmds[]={$/;" v file: +objl_path_43_floats demos/subwaymap.c /^static const float objl_path_43_floats[]={$/;" v file: +objl_path_440_cmds demos/subwaymap.c /^static const unsigned char objl_path_440_cmds[]={$/;" v file: +objl_path_440_floats demos/subwaymap.c /^static const float objl_path_440_floats[]={$/;" v file: +objl_path_441_cmds demos/subwaymap.c /^static const unsigned char objl_path_441_cmds[]={$/;" v file: +objl_path_441_floats demos/subwaymap.c /^static const float objl_path_441_floats[]={$/;" v file: +objl_path_442_cmds demos/subwaymap.c /^static const unsigned char objl_path_442_cmds[]={$/;" v file: +objl_path_442_floats demos/subwaymap.c /^static const float objl_path_442_floats[]={$/;" v file: +objl_path_443_cmds demos/subwaymap.c /^static const unsigned char objl_path_443_cmds[]={$/;" v file: +objl_path_443_floats demos/subwaymap.c /^static const float objl_path_443_floats[]={$/;" v file: +objl_path_444_cmds demos/subwaymap.c /^static const unsigned char objl_path_444_cmds[]={$/;" v file: +objl_path_444_floats demos/subwaymap.c /^static const float objl_path_444_floats[]={$/;" v file: +objl_path_445_cmds demos/subwaymap.c /^static const unsigned char objl_path_445_cmds[]={$/;" v file: +objl_path_445_floats demos/subwaymap.c /^static const float objl_path_445_floats[]={$/;" v file: +objl_path_446_cmds demos/subwaymap.c /^static const unsigned char objl_path_446_cmds[]={$/;" v file: +objl_path_446_floats demos/subwaymap.c /^static const float objl_path_446_floats[]={$/;" v file: +objl_path_447_cmds demos/subwaymap.c /^static const unsigned char objl_path_447_cmds[]={$/;" v file: +objl_path_447_floats demos/subwaymap.c /^static const float objl_path_447_floats[]={$/;" v file: +objl_path_448_cmds demos/subwaymap.c /^static const unsigned char objl_path_448_cmds[]={$/;" v file: +objl_path_448_floats demos/subwaymap.c /^static const float objl_path_448_floats[]={$/;" v file: +objl_path_449_cmds demos/subwaymap.c /^static const unsigned char objl_path_449_cmds[]={$/;" v file: +objl_path_449_floats demos/subwaymap.c /^static const float objl_path_449_floats[]={$/;" v file: +objl_path_44_cmds demos/subwaymap.c /^static const unsigned char objl_path_44_cmds[]={$/;" v file: +objl_path_44_floats demos/subwaymap.c /^static const float objl_path_44_floats[]={$/;" v file: +objl_path_450_cmds demos/subwaymap.c /^static const unsigned char objl_path_450_cmds[]={$/;" v file: +objl_path_450_floats demos/subwaymap.c /^static const float objl_path_450_floats[]={$/;" v file: +objl_path_451_cmds demos/subwaymap.c /^static const unsigned char objl_path_451_cmds[]={$/;" v file: +objl_path_451_floats demos/subwaymap.c /^static const float objl_path_451_floats[]={$/;" v file: +objl_path_452_cmds demos/subwaymap.c /^static const unsigned char objl_path_452_cmds[]={$/;" v file: +objl_path_452_floats demos/subwaymap.c /^static const float objl_path_452_floats[]={$/;" v file: +objl_path_453_cmds demos/subwaymap.c /^static const unsigned char objl_path_453_cmds[]={$/;" v file: +objl_path_453_floats demos/subwaymap.c /^static const float objl_path_453_floats[]={$/;" v file: +objl_path_454_cmds demos/subwaymap.c /^static const unsigned char objl_path_454_cmds[]={$/;" v file: +objl_path_454_floats demos/subwaymap.c /^static const float objl_path_454_floats[]={$/;" v file: +objl_path_455_cmds demos/subwaymap.c /^static const unsigned char objl_path_455_cmds[]={$/;" v file: +objl_path_455_floats demos/subwaymap.c /^static const float objl_path_455_floats[]={$/;" v file: +objl_path_456_cmds demos/subwaymap.c /^static const unsigned char objl_path_456_cmds[]={$/;" v file: +objl_path_456_floats demos/subwaymap.c /^static const float objl_path_456_floats[]={$/;" v file: +objl_path_457_cmds demos/subwaymap.c /^static const unsigned char objl_path_457_cmds[]={$/;" v file: +objl_path_457_floats demos/subwaymap.c /^static const float objl_path_457_floats[]={$/;" v file: +objl_path_458_cmds demos/subwaymap.c /^static const unsigned char objl_path_458_cmds[]={$/;" v file: +objl_path_458_floats demos/subwaymap.c /^static const float objl_path_458_floats[]={$/;" v file: +objl_path_459_cmds demos/subwaymap.c /^static const unsigned char objl_path_459_cmds[]={$/;" v file: +objl_path_459_floats demos/subwaymap.c /^static const float objl_path_459_floats[]={$/;" v file: +objl_path_45_cmds demos/subwaymap.c /^static const unsigned char objl_path_45_cmds[]={$/;" v file: +objl_path_45_floats demos/subwaymap.c /^static const float objl_path_45_floats[]={$/;" v file: +objl_path_460_cmds demos/subwaymap.c /^static const unsigned char objl_path_460_cmds[]={$/;" v file: +objl_path_460_floats demos/subwaymap.c /^static const float objl_path_460_floats[]={$/;" v file: +objl_path_461_cmds demos/subwaymap.c /^static const unsigned char objl_path_461_cmds[]={$/;" v file: +objl_path_461_floats demos/subwaymap.c /^static const float objl_path_461_floats[]={$/;" v file: +objl_path_462_cmds demos/subwaymap.c /^static const unsigned char objl_path_462_cmds[]={$/;" v file: +objl_path_462_floats demos/subwaymap.c /^static const float objl_path_462_floats[]={$/;" v file: +objl_path_463_cmds demos/subwaymap.c /^static const unsigned char objl_path_463_cmds[]={$/;" v file: +objl_path_463_floats demos/subwaymap.c /^static const float objl_path_463_floats[]={$/;" v file: +objl_path_464_cmds demos/subwaymap.c /^static const unsigned char objl_path_464_cmds[]={$/;" v file: +objl_path_464_floats demos/subwaymap.c /^static const float objl_path_464_floats[]={$/;" v file: +objl_path_465_cmds demos/subwaymap.c /^static const unsigned char objl_path_465_cmds[]={$/;" v file: +objl_path_465_floats demos/subwaymap.c /^static const float objl_path_465_floats[]={$/;" v file: +objl_path_466_cmds demos/subwaymap.c /^static const unsigned char objl_path_466_cmds[]={$/;" v file: +objl_path_466_floats demos/subwaymap.c /^static const float objl_path_466_floats[]={$/;" v file: +objl_path_467_cmds demos/subwaymap.c /^static const unsigned char objl_path_467_cmds[]={$/;" v file: +objl_path_467_floats demos/subwaymap.c /^static const float objl_path_467_floats[]={$/;" v file: +objl_path_468_cmds demos/subwaymap.c /^static const unsigned char objl_path_468_cmds[]={$/;" v file: +objl_path_468_floats demos/subwaymap.c /^static const float objl_path_468_floats[]={$/;" v file: +objl_path_469_cmds demos/subwaymap.c /^static const unsigned char objl_path_469_cmds[]={$/;" v file: +objl_path_469_floats demos/subwaymap.c /^static const float objl_path_469_floats[]={$/;" v file: +objl_path_46_cmds demos/subwaymap.c /^static const unsigned char objl_path_46_cmds[]={$/;" v file: +objl_path_46_floats demos/subwaymap.c /^static const float objl_path_46_floats[]={$/;" v file: +objl_path_470_cmds demos/subwaymap.c /^static const unsigned char objl_path_470_cmds[]={$/;" v file: +objl_path_470_floats demos/subwaymap.c /^static const float objl_path_470_floats[]={$/;" v file: +objl_path_471_cmds demos/subwaymap.c /^static const unsigned char objl_path_471_cmds[]={$/;" v file: +objl_path_471_floats demos/subwaymap.c /^static const float objl_path_471_floats[]={$/;" v file: +objl_path_472_cmds demos/subwaymap.c /^static const unsigned char objl_path_472_cmds[]={$/;" v file: +objl_path_472_floats demos/subwaymap.c /^static const float objl_path_472_floats[]={$/;" v file: +objl_path_473_cmds demos/subwaymap.c /^static const unsigned char objl_path_473_cmds[]={$/;" v file: +objl_path_473_floats demos/subwaymap.c /^static const float objl_path_473_floats[]={$/;" v file: +objl_path_474_cmds demos/subwaymap.c /^static const unsigned char objl_path_474_cmds[]={$/;" v file: +objl_path_474_floats demos/subwaymap.c /^static const float objl_path_474_floats[]={$/;" v file: +objl_path_475_cmds demos/subwaymap.c /^static const unsigned char objl_path_475_cmds[]={$/;" v file: +objl_path_475_floats demos/subwaymap.c /^static const float objl_path_475_floats[]={$/;" v file: +objl_path_476_cmds demos/subwaymap.c /^static const unsigned char objl_path_476_cmds[]={$/;" v file: +objl_path_476_floats demos/subwaymap.c /^static const float objl_path_476_floats[]={$/;" v file: +objl_path_477_cmds demos/subwaymap.c /^static const unsigned char objl_path_477_cmds[]={$/;" v file: +objl_path_477_floats demos/subwaymap.c /^static const float objl_path_477_floats[]={$/;" v file: +objl_path_478_cmds demos/subwaymap.c /^static const unsigned char objl_path_478_cmds[]={$/;" v file: +objl_path_478_floats demos/subwaymap.c /^static const float objl_path_478_floats[]={$/;" v file: +objl_path_479_cmds demos/subwaymap.c /^static const unsigned char objl_path_479_cmds[]={$/;" v file: +objl_path_479_floats demos/subwaymap.c /^static const float objl_path_479_floats[]={$/;" v file: +objl_path_47_cmds demos/subwaymap.c /^static const unsigned char objl_path_47_cmds[]={$/;" v file: +objl_path_47_floats demos/subwaymap.c /^static const float objl_path_47_floats[]={$/;" v file: +objl_path_480_cmds demos/subwaymap.c /^static const unsigned char objl_path_480_cmds[]={$/;" v file: +objl_path_480_floats demos/subwaymap.c /^static const float objl_path_480_floats[]={$/;" v file: +objl_path_481_cmds demos/subwaymap.c /^static const unsigned char objl_path_481_cmds[]={$/;" v file: +objl_path_481_floats demos/subwaymap.c /^static const float objl_path_481_floats[]={$/;" v file: +objl_path_482_cmds demos/subwaymap.c /^static const unsigned char objl_path_482_cmds[]={$/;" v file: +objl_path_482_floats demos/subwaymap.c /^static const float objl_path_482_floats[]={$/;" v file: +objl_path_483_cmds demos/subwaymap.c /^static const unsigned char objl_path_483_cmds[]={$/;" v file: +objl_path_483_floats demos/subwaymap.c /^static const float objl_path_483_floats[]={$/;" v file: +objl_path_484_cmds demos/subwaymap.c /^static const unsigned char objl_path_484_cmds[]={$/;" v file: +objl_path_484_floats demos/subwaymap.c /^static const float objl_path_484_floats[]={$/;" v file: +objl_path_485_cmds demos/subwaymap.c /^static const unsigned char objl_path_485_cmds[]={$/;" v file: +objl_path_485_floats demos/subwaymap.c /^static const float objl_path_485_floats[]={$/;" v file: +objl_path_486_cmds demos/subwaymap.c /^static const unsigned char objl_path_486_cmds[]={$/;" v file: +objl_path_486_floats demos/subwaymap.c /^static const float objl_path_486_floats[]={$/;" v file: +objl_path_487_cmds demos/subwaymap.c /^static const unsigned char objl_path_487_cmds[]={$/;" v file: +objl_path_487_floats demos/subwaymap.c /^static const float objl_path_487_floats[]={$/;" v file: +objl_path_488_cmds demos/subwaymap.c /^static const unsigned char objl_path_488_cmds[]={$/;" v file: +objl_path_488_floats demos/subwaymap.c /^static const float objl_path_488_floats[]={$/;" v file: +objl_path_489_cmds demos/subwaymap.c /^static const unsigned char objl_path_489_cmds[]={$/;" v file: +objl_path_489_floats demos/subwaymap.c /^static const float objl_path_489_floats[]={$/;" v file: +objl_path_48_cmds demos/subwaymap.c /^static const unsigned char objl_path_48_cmds[]={$/;" v file: +objl_path_48_floats demos/subwaymap.c /^static const float objl_path_48_floats[]={$/;" v file: +objl_path_490_cmds demos/subwaymap.c /^static const unsigned char objl_path_490_cmds[]={$/;" v file: +objl_path_490_floats demos/subwaymap.c /^static const float objl_path_490_floats[]={$/;" v file: +objl_path_491_cmds demos/subwaymap.c /^static const unsigned char objl_path_491_cmds[]={$/;" v file: +objl_path_491_floats demos/subwaymap.c /^static const float objl_path_491_floats[]={$/;" v file: +objl_path_492_cmds demos/subwaymap.c /^static const unsigned char objl_path_492_cmds[]={$/;" v file: +objl_path_492_floats demos/subwaymap.c /^static const float objl_path_492_floats[]={$/;" v file: +objl_path_493_cmds demos/subwaymap.c /^static const unsigned char objl_path_493_cmds[]={$/;" v file: +objl_path_493_floats demos/subwaymap.c /^static const float objl_path_493_floats[]={$/;" v file: +objl_path_494_cmds demos/subwaymap.c /^static const unsigned char objl_path_494_cmds[]={$/;" v file: +objl_path_494_floats demos/subwaymap.c /^static const float objl_path_494_floats[]={$/;" v file: +objl_path_495_cmds demos/subwaymap.c /^static const unsigned char objl_path_495_cmds[]={$/;" v file: +objl_path_495_floats demos/subwaymap.c /^static const float objl_path_495_floats[]={$/;" v file: +objl_path_496_cmds demos/subwaymap.c /^static const unsigned char objl_path_496_cmds[]={$/;" v file: +objl_path_496_floats demos/subwaymap.c /^static const float objl_path_496_floats[]={$/;" v file: +objl_path_497_cmds demos/subwaymap.c /^static const unsigned char objl_path_497_cmds[]={$/;" v file: +objl_path_497_floats demos/subwaymap.c /^static const float objl_path_497_floats[]={$/;" v file: +objl_path_498_cmds demos/subwaymap.c /^static const unsigned char objl_path_498_cmds[]={$/;" v file: +objl_path_498_floats demos/subwaymap.c /^static const float objl_path_498_floats[]={$/;" v file: +objl_path_499_cmds demos/subwaymap.c /^static const unsigned char objl_path_499_cmds[]={$/;" v file: +objl_path_499_floats demos/subwaymap.c /^static const float objl_path_499_floats[]={$/;" v file: +objl_path_49_cmds demos/subwaymap.c /^static const unsigned char objl_path_49_cmds[]={$/;" v file: +objl_path_49_floats demos/subwaymap.c /^static const float objl_path_49_floats[]={$/;" v file: +objl_path_4_cmds demos/subwaymap.c /^static const unsigned char objl_path_4_cmds[]={$/;" v file: +objl_path_4_floats demos/subwaymap.c /^static const float objl_path_4_floats[]={$/;" v file: +objl_path_500_cmds demos/subwaymap.c /^static const unsigned char objl_path_500_cmds[]={$/;" v file: +objl_path_500_floats demos/subwaymap.c /^static const float objl_path_500_floats[]={$/;" v file: +objl_path_501_cmds demos/subwaymap.c /^static const unsigned char objl_path_501_cmds[]={$/;" v file: +objl_path_501_floats demos/subwaymap.c /^static const float objl_path_501_floats[]={$/;" v file: +objl_path_502_cmds demos/subwaymap.c /^static const unsigned char objl_path_502_cmds[]={$/;" v file: +objl_path_502_floats demos/subwaymap.c /^static const float objl_path_502_floats[]={$/;" v file: +objl_path_503_cmds demos/subwaymap.c /^static const unsigned char objl_path_503_cmds[]={$/;" v file: +objl_path_503_floats demos/subwaymap.c /^static const float objl_path_503_floats[]={$/;" v file: +objl_path_504_cmds demos/subwaymap.c /^static const unsigned char objl_path_504_cmds[]={$/;" v file: +objl_path_504_floats demos/subwaymap.c /^static const float objl_path_504_floats[]={$/;" v file: +objl_path_505_cmds demos/subwaymap.c /^static const unsigned char objl_path_505_cmds[]={$/;" v file: +objl_path_505_floats demos/subwaymap.c /^static const float objl_path_505_floats[]={$/;" v file: +objl_path_506_cmds demos/subwaymap.c /^static const unsigned char objl_path_506_cmds[]={$/;" v file: +objl_path_506_floats demos/subwaymap.c /^static const float objl_path_506_floats[]={$/;" v file: +objl_path_507_cmds demos/subwaymap.c /^static const unsigned char objl_path_507_cmds[]={$/;" v file: +objl_path_507_floats demos/subwaymap.c /^static const float objl_path_507_floats[]={$/;" v file: +objl_path_508_cmds demos/subwaymap.c /^static const unsigned char objl_path_508_cmds[]={$/;" v file: +objl_path_508_floats demos/subwaymap.c /^static const float objl_path_508_floats[]={$/;" v file: +objl_path_509_cmds demos/subwaymap.c /^static const unsigned char objl_path_509_cmds[]={$/;" v file: +objl_path_509_floats demos/subwaymap.c /^static const float objl_path_509_floats[]={$/;" v file: +objl_path_50_cmds demos/subwaymap.c /^static const unsigned char objl_path_50_cmds[]={$/;" v file: +objl_path_50_floats demos/subwaymap.c /^static const float objl_path_50_floats[]={$/;" v file: +objl_path_510_cmds demos/subwaymap.c /^static const unsigned char objl_path_510_cmds[]={$/;" v file: +objl_path_510_floats demos/subwaymap.c /^static const float objl_path_510_floats[]={$/;" v file: +objl_path_511_cmds demos/subwaymap.c /^static const unsigned char objl_path_511_cmds[]={$/;" v file: +objl_path_511_floats demos/subwaymap.c /^static const float objl_path_511_floats[]={$/;" v file: +objl_path_512_cmds demos/subwaymap.c /^static const unsigned char objl_path_512_cmds[]={$/;" v file: +objl_path_512_floats demos/subwaymap.c /^static const float objl_path_512_floats[]={$/;" v file: +objl_path_513_cmds demos/subwaymap.c /^static const unsigned char objl_path_513_cmds[]={$/;" v file: +objl_path_513_floats demos/subwaymap.c /^static const float objl_path_513_floats[]={$/;" v file: +objl_path_514_cmds demos/subwaymap.c /^static const unsigned char objl_path_514_cmds[]={$/;" v file: +objl_path_514_floats demos/subwaymap.c /^static const float objl_path_514_floats[]={$/;" v file: +objl_path_515_cmds demos/subwaymap.c /^static const unsigned char objl_path_515_cmds[]={$/;" v file: +objl_path_515_floats demos/subwaymap.c /^static const float objl_path_515_floats[]={$/;" v file: +objl_path_516_cmds demos/subwaymap.c /^static const unsigned char objl_path_516_cmds[]={$/;" v file: +objl_path_516_floats demos/subwaymap.c /^static const float objl_path_516_floats[]={$/;" v file: +objl_path_517_cmds demos/subwaymap.c /^static const unsigned char objl_path_517_cmds[]={$/;" v file: +objl_path_517_floats demos/subwaymap.c /^static const float objl_path_517_floats[]={$/;" v file: +objl_path_518_cmds demos/subwaymap.c /^static const unsigned char objl_path_518_cmds[]={$/;" v file: +objl_path_518_floats demos/subwaymap.c /^static const float objl_path_518_floats[]={$/;" v file: +objl_path_519_cmds demos/subwaymap.c /^static const unsigned char objl_path_519_cmds[]={$/;" v file: +objl_path_519_floats demos/subwaymap.c /^static const float objl_path_519_floats[]={$/;" v file: +objl_path_51_cmds demos/subwaymap.c /^static const unsigned char objl_path_51_cmds[]={$/;" v file: +objl_path_51_floats demos/subwaymap.c /^static const float objl_path_51_floats[]={$/;" v file: +objl_path_520_cmds demos/subwaymap.c /^static const unsigned char objl_path_520_cmds[]={$/;" v file: +objl_path_520_floats demos/subwaymap.c /^static const float objl_path_520_floats[]={$/;" v file: +objl_path_521_cmds demos/subwaymap.c /^static const unsigned char objl_path_521_cmds[]={$/;" v file: +objl_path_521_floats demos/subwaymap.c /^static const float objl_path_521_floats[]={$/;" v file: +objl_path_522_cmds demos/subwaymap.c /^static const unsigned char objl_path_522_cmds[]={$/;" v file: +objl_path_522_floats demos/subwaymap.c /^static const float objl_path_522_floats[]={$/;" v file: +objl_path_523_cmds demos/subwaymap.c /^static const unsigned char objl_path_523_cmds[]={$/;" v file: +objl_path_523_floats demos/subwaymap.c /^static const float objl_path_523_floats[]={$/;" v file: +objl_path_524_cmds demos/subwaymap.c /^static const unsigned char objl_path_524_cmds[]={$/;" v file: +objl_path_524_floats demos/subwaymap.c /^static const float objl_path_524_floats[]={$/;" v file: +objl_path_525_cmds demos/subwaymap.c /^static const unsigned char objl_path_525_cmds[]={$/;" v file: +objl_path_525_floats demos/subwaymap.c /^static const float objl_path_525_floats[]={$/;" v file: +objl_path_526_cmds demos/subwaymap.c /^static const unsigned char objl_path_526_cmds[]={$/;" v file: +objl_path_526_floats demos/subwaymap.c /^static const float objl_path_526_floats[]={$/;" v file: +objl_path_527_cmds demos/subwaymap.c /^static const unsigned char objl_path_527_cmds[]={$/;" v file: +objl_path_527_floats demos/subwaymap.c /^static const float objl_path_527_floats[]={$/;" v file: +objl_path_528_cmds demos/subwaymap.c /^static const unsigned char objl_path_528_cmds[]={$/;" v file: +objl_path_528_floats demos/subwaymap.c /^static const float objl_path_528_floats[]={$/;" v file: +objl_path_529_cmds demos/subwaymap.c /^static const unsigned char objl_path_529_cmds[]={$/;" v file: +objl_path_529_floats demos/subwaymap.c /^static const float objl_path_529_floats[]={$/;" v file: +objl_path_52_cmds demos/subwaymap.c /^static const unsigned char objl_path_52_cmds[]={$/;" v file: +objl_path_52_floats demos/subwaymap.c /^static const float objl_path_52_floats[]={$/;" v file: +objl_path_530_cmds demos/subwaymap.c /^static const unsigned char objl_path_530_cmds[]={$/;" v file: +objl_path_530_floats demos/subwaymap.c /^static const float objl_path_530_floats[]={$/;" v file: +objl_path_531_cmds demos/subwaymap.c /^static const unsigned char objl_path_531_cmds[]={$/;" v file: +objl_path_531_floats demos/subwaymap.c /^static const float objl_path_531_floats[]={$/;" v file: +objl_path_532_cmds demos/subwaymap.c /^static const unsigned char objl_path_532_cmds[]={$/;" v file: +objl_path_532_floats demos/subwaymap.c /^static const float objl_path_532_floats[]={$/;" v file: +objl_path_533_cmds demos/subwaymap.c /^static const unsigned char objl_path_533_cmds[]={$/;" v file: +objl_path_533_floats demos/subwaymap.c /^static const float objl_path_533_floats[]={$/;" v file: +objl_path_534_cmds demos/subwaymap.c /^static const unsigned char objl_path_534_cmds[]={$/;" v file: +objl_path_534_floats demos/subwaymap.c /^static const float objl_path_534_floats[]={$/;" v file: +objl_path_535_cmds demos/subwaymap.c /^static const unsigned char objl_path_535_cmds[]={$/;" v file: +objl_path_535_floats demos/subwaymap.c /^static const float objl_path_535_floats[]={$/;" v file: +objl_path_536_cmds demos/subwaymap.c /^static const unsigned char objl_path_536_cmds[]={$/;" v file: +objl_path_536_floats demos/subwaymap.c /^static const float objl_path_536_floats[]={$/;" v file: +objl_path_537_cmds demos/subwaymap.c /^static const unsigned char objl_path_537_cmds[]={$/;" v file: +objl_path_537_floats demos/subwaymap.c /^static const float objl_path_537_floats[]={$/;" v file: +objl_path_538_cmds demos/subwaymap.c /^static const unsigned char objl_path_538_cmds[]={$/;" v file: +objl_path_538_floats demos/subwaymap.c /^static const float objl_path_538_floats[]={$/;" v file: +objl_path_539_cmds demos/subwaymap.c /^static const unsigned char objl_path_539_cmds[]={$/;" v file: +objl_path_539_floats demos/subwaymap.c /^static const float objl_path_539_floats[]={$/;" v file: +objl_path_53_cmds demos/subwaymap.c /^static const unsigned char objl_path_53_cmds[]={$/;" v file: +objl_path_53_floats demos/subwaymap.c /^static const float objl_path_53_floats[]={$/;" v file: +objl_path_540_cmds demos/subwaymap.c /^static const unsigned char objl_path_540_cmds[]={$/;" v file: +objl_path_540_floats demos/subwaymap.c /^static const float objl_path_540_floats[]={$/;" v file: +objl_path_541_cmds demos/subwaymap.c /^static const unsigned char objl_path_541_cmds[]={$/;" v file: +objl_path_541_floats demos/subwaymap.c /^static const float objl_path_541_floats[]={$/;" v file: +objl_path_542_cmds demos/subwaymap.c /^static const unsigned char objl_path_542_cmds[]={$/;" v file: +objl_path_542_floats demos/subwaymap.c /^static const float objl_path_542_floats[]={$/;" v file: +objl_path_543_cmds demos/subwaymap.c /^static const unsigned char objl_path_543_cmds[]={$/;" v file: +objl_path_543_floats demos/subwaymap.c /^static const float objl_path_543_floats[]={$/;" v file: +objl_path_544_cmds demos/subwaymap.c /^static const unsigned char objl_path_544_cmds[]={$/;" v file: +objl_path_544_floats demos/subwaymap.c /^static const float objl_path_544_floats[]={$/;" v file: +objl_path_545_cmds demos/subwaymap.c /^static const unsigned char objl_path_545_cmds[]={$/;" v file: +objl_path_545_floats demos/subwaymap.c /^static const float objl_path_545_floats[]={$/;" v file: +objl_path_546_cmds demos/subwaymap.c /^static const unsigned char objl_path_546_cmds[]={$/;" v file: +objl_path_546_floats demos/subwaymap.c /^static const float objl_path_546_floats[]={$/;" v file: +objl_path_547_cmds demos/subwaymap.c /^static const unsigned char objl_path_547_cmds[]={$/;" v file: +objl_path_547_floats demos/subwaymap.c /^static const float objl_path_547_floats[]={$/;" v file: +objl_path_548_cmds demos/subwaymap.c /^static const unsigned char objl_path_548_cmds[]={$/;" v file: +objl_path_548_floats demos/subwaymap.c /^static const float objl_path_548_floats[]={$/;" v file: +objl_path_549_cmds demos/subwaymap.c /^static const unsigned char objl_path_549_cmds[]={$/;" v file: +objl_path_549_floats demos/subwaymap.c /^static const float objl_path_549_floats[]={$/;" v file: +objl_path_54_cmds demos/subwaymap.c /^static const unsigned char objl_path_54_cmds[]={$/;" v file: +objl_path_54_floats demos/subwaymap.c /^static const float objl_path_54_floats[]={$/;" v file: +objl_path_550_cmds demos/subwaymap.c /^static const unsigned char objl_path_550_cmds[]={$/;" v file: +objl_path_550_floats demos/subwaymap.c /^static const float objl_path_550_floats[]={$/;" v file: +objl_path_551_cmds demos/subwaymap.c /^static const unsigned char objl_path_551_cmds[]={$/;" v file: +objl_path_551_floats demos/subwaymap.c /^static const float objl_path_551_floats[]={$/;" v file: +objl_path_552_cmds demos/subwaymap.c /^static const unsigned char objl_path_552_cmds[]={$/;" v file: +objl_path_552_floats demos/subwaymap.c /^static const float objl_path_552_floats[]={$/;" v file: +objl_path_553_cmds demos/subwaymap.c /^static const unsigned char objl_path_553_cmds[]={$/;" v file: +objl_path_553_floats demos/subwaymap.c /^static const float objl_path_553_floats[]={$/;" v file: +objl_path_554_cmds demos/subwaymap.c /^static const unsigned char objl_path_554_cmds[]={$/;" v file: +objl_path_554_floats demos/subwaymap.c /^static const float objl_path_554_floats[]={$/;" v file: +objl_path_555_cmds demos/subwaymap.c /^static const unsigned char objl_path_555_cmds[]={$/;" v file: +objl_path_555_floats demos/subwaymap.c /^static const float objl_path_555_floats[]={$/;" v file: +objl_path_556_cmds demos/subwaymap.c /^static const unsigned char objl_path_556_cmds[]={$/;" v file: +objl_path_556_floats demos/subwaymap.c /^static const float objl_path_556_floats[]={$/;" v file: +objl_path_557_cmds demos/subwaymap.c /^static const unsigned char objl_path_557_cmds[]={$/;" v file: +objl_path_557_floats demos/subwaymap.c /^static const float objl_path_557_floats[]={$/;" v file: +objl_path_558_cmds demos/subwaymap.c /^static const unsigned char objl_path_558_cmds[]={$/;" v file: +objl_path_558_floats demos/subwaymap.c /^static const float objl_path_558_floats[]={$/;" v file: +objl_path_559_cmds demos/subwaymap.c /^static const unsigned char objl_path_559_cmds[]={$/;" v file: +objl_path_559_floats demos/subwaymap.c /^static const float objl_path_559_floats[]={$/;" v file: +objl_path_55_cmds demos/subwaymap.c /^static const unsigned char objl_path_55_cmds[]={$/;" v file: +objl_path_55_floats demos/subwaymap.c /^static const float objl_path_55_floats[]={$/;" v file: +objl_path_560_cmds demos/subwaymap.c /^static const unsigned char objl_path_560_cmds[]={$/;" v file: +objl_path_560_floats demos/subwaymap.c /^static const float objl_path_560_floats[]={$/;" v file: +objl_path_561_cmds demos/subwaymap.c /^static const unsigned char objl_path_561_cmds[]={$/;" v file: +objl_path_561_floats demos/subwaymap.c /^static const float objl_path_561_floats[]={$/;" v file: +objl_path_562_cmds demos/subwaymap.c /^static const unsigned char objl_path_562_cmds[]={$/;" v file: +objl_path_562_floats demos/subwaymap.c /^static const float objl_path_562_floats[]={$/;" v file: +objl_path_563_cmds demos/subwaymap.c /^static const unsigned char objl_path_563_cmds[]={$/;" v file: +objl_path_563_floats demos/subwaymap.c /^static const float objl_path_563_floats[]={$/;" v file: +objl_path_564_cmds demos/subwaymap.c /^static const unsigned char objl_path_564_cmds[]={$/;" v file: +objl_path_564_floats demos/subwaymap.c /^static const float objl_path_564_floats[]={$/;" v file: +objl_path_565_cmds demos/subwaymap.c /^static const unsigned char objl_path_565_cmds[]={$/;" v file: +objl_path_565_floats demos/subwaymap.c /^static const float objl_path_565_floats[]={$/;" v file: +objl_path_566_cmds demos/subwaymap.c /^static const unsigned char objl_path_566_cmds[]={$/;" v file: +objl_path_566_floats demos/subwaymap.c /^static const float objl_path_566_floats[]={$/;" v file: +objl_path_567_cmds demos/subwaymap.c /^static const unsigned char objl_path_567_cmds[]={$/;" v file: +objl_path_567_floats demos/subwaymap.c /^static const float objl_path_567_floats[]={$/;" v file: +objl_path_568_cmds demos/subwaymap.c /^static const unsigned char objl_path_568_cmds[]={$/;" v file: +objl_path_568_floats demos/subwaymap.c /^static const float objl_path_568_floats[]={$/;" v file: +objl_path_569_cmds demos/subwaymap.c /^static const unsigned char objl_path_569_cmds[]={$/;" v file: +objl_path_569_floats demos/subwaymap.c /^static const float objl_path_569_floats[]={$/;" v file: +objl_path_56_cmds demos/subwaymap.c /^static const unsigned char objl_path_56_cmds[]={$/;" v file: +objl_path_56_floats demos/subwaymap.c /^static const float objl_path_56_floats[]={$/;" v file: +objl_path_570_cmds demos/subwaymap.c /^static const unsigned char objl_path_570_cmds[]={$/;" v file: +objl_path_570_floats demos/subwaymap.c /^static const float objl_path_570_floats[]={$/;" v file: +objl_path_571_cmds demos/subwaymap.c /^static const unsigned char objl_path_571_cmds[]={$/;" v file: +objl_path_571_floats demos/subwaymap.c /^static const float objl_path_571_floats[]={$/;" v file: +objl_path_572_cmds demos/subwaymap.c /^static const unsigned char objl_path_572_cmds[]={$/;" v file: +objl_path_572_floats demos/subwaymap.c /^static const float objl_path_572_floats[]={$/;" v file: +objl_path_573_cmds demos/subwaymap.c /^static const unsigned char objl_path_573_cmds[]={$/;" v file: +objl_path_573_floats demos/subwaymap.c /^static const float objl_path_573_floats[]={$/;" v file: +objl_path_574_cmds demos/subwaymap.c /^static const unsigned char objl_path_574_cmds[]={$/;" v file: +objl_path_574_floats demos/subwaymap.c /^static const float objl_path_574_floats[]={$/;" v file: +objl_path_575_cmds demos/subwaymap.c /^static const unsigned char objl_path_575_cmds[]={$/;" v file: +objl_path_575_floats demos/subwaymap.c /^static const float objl_path_575_floats[]={$/;" v file: +objl_path_576_cmds demos/subwaymap.c /^static const unsigned char objl_path_576_cmds[]={$/;" v file: +objl_path_576_floats demos/subwaymap.c /^static const float objl_path_576_floats[]={$/;" v file: +objl_path_577_cmds demos/subwaymap.c /^static const unsigned char objl_path_577_cmds[]={$/;" v file: +objl_path_577_floats demos/subwaymap.c /^static const float objl_path_577_floats[]={$/;" v file: +objl_path_578_cmds demos/subwaymap.c /^static const unsigned char objl_path_578_cmds[]={$/;" v file: +objl_path_578_floats demos/subwaymap.c /^static const float objl_path_578_floats[]={$/;" v file: +objl_path_579_cmds demos/subwaymap.c /^static const unsigned char objl_path_579_cmds[]={$/;" v file: +objl_path_579_floats demos/subwaymap.c /^static const float objl_path_579_floats[]={$/;" v file: +objl_path_57_cmds demos/subwaymap.c /^static const unsigned char objl_path_57_cmds[]={$/;" v file: +objl_path_57_floats demos/subwaymap.c /^static const float objl_path_57_floats[]={$/;" v file: +objl_path_580_cmds demos/subwaymap.c /^static const unsigned char objl_path_580_cmds[]={$/;" v file: +objl_path_580_floats demos/subwaymap.c /^static const float objl_path_580_floats[]={$/;" v file: +objl_path_581_cmds demos/subwaymap.c /^static const unsigned char objl_path_581_cmds[]={$/;" v file: +objl_path_581_floats demos/subwaymap.c /^static const float objl_path_581_floats[]={$/;" v file: +objl_path_582_cmds demos/subwaymap.c /^static const unsigned char objl_path_582_cmds[]={$/;" v file: +objl_path_582_floats demos/subwaymap.c /^static const float objl_path_582_floats[]={$/;" v file: +objl_path_583_cmds demos/subwaymap.c /^static const unsigned char objl_path_583_cmds[]={$/;" v file: +objl_path_583_floats demos/subwaymap.c /^static const float objl_path_583_floats[]={$/;" v file: +objl_path_584_cmds demos/subwaymap.c /^static const unsigned char objl_path_584_cmds[]={$/;" v file: +objl_path_584_floats demos/subwaymap.c /^static const float objl_path_584_floats[]={$/;" v file: +objl_path_585_cmds demos/subwaymap.c /^static const unsigned char objl_path_585_cmds[]={$/;" v file: +objl_path_585_floats demos/subwaymap.c /^static const float objl_path_585_floats[]={$/;" v file: +objl_path_586_cmds demos/subwaymap.c /^static const unsigned char objl_path_586_cmds[]={$/;" v file: +objl_path_586_floats demos/subwaymap.c /^static const float objl_path_586_floats[]={$/;" v file: +objl_path_587_cmds demos/subwaymap.c /^static const unsigned char objl_path_587_cmds[]={$/;" v file: +objl_path_587_floats demos/subwaymap.c /^static const float objl_path_587_floats[]={$/;" v file: +objl_path_588_cmds demos/subwaymap.c /^static const unsigned char objl_path_588_cmds[]={$/;" v file: +objl_path_588_floats demos/subwaymap.c /^static const float objl_path_588_floats[]={$/;" v file: +objl_path_589_cmds demos/subwaymap.c /^static const unsigned char objl_path_589_cmds[]={$/;" v file: +objl_path_589_floats demos/subwaymap.c /^static const float objl_path_589_floats[]={$/;" v file: +objl_path_58_cmds demos/subwaymap.c /^static const unsigned char objl_path_58_cmds[]={$/;" v file: +objl_path_58_floats demos/subwaymap.c /^static const float objl_path_58_floats[]={$/;" v file: +objl_path_590_cmds demos/subwaymap.c /^static const unsigned char objl_path_590_cmds[]={$/;" v file: +objl_path_590_floats demos/subwaymap.c /^static const float objl_path_590_floats[]={$/;" v file: +objl_path_591_cmds demos/subwaymap.c /^static const unsigned char objl_path_591_cmds[]={$/;" v file: +objl_path_591_floats demos/subwaymap.c /^static const float objl_path_591_floats[]={$/;" v file: +objl_path_592_cmds demos/subwaymap.c /^static const unsigned char objl_path_592_cmds[]={$/;" v file: +objl_path_592_floats demos/subwaymap.c /^static const float objl_path_592_floats[]={$/;" v file: +objl_path_593_cmds demos/subwaymap.c /^static const unsigned char objl_path_593_cmds[]={$/;" v file: +objl_path_593_floats demos/subwaymap.c /^static const float objl_path_593_floats[]={$/;" v file: +objl_path_594_cmds demos/subwaymap.c /^static const unsigned char objl_path_594_cmds[]={$/;" v file: +objl_path_594_floats demos/subwaymap.c /^static const float objl_path_594_floats[]={$/;" v file: +objl_path_595_cmds demos/subwaymap.c /^static const unsigned char objl_path_595_cmds[]={$/;" v file: +objl_path_595_floats demos/subwaymap.c /^static const float objl_path_595_floats[]={$/;" v file: +objl_path_596_cmds demos/subwaymap.c /^static const unsigned char objl_path_596_cmds[]={$/;" v file: +objl_path_596_floats demos/subwaymap.c /^static const float objl_path_596_floats[]={$/;" v file: +objl_path_597_cmds demos/subwaymap.c /^static const unsigned char objl_path_597_cmds[]={$/;" v file: +objl_path_597_floats demos/subwaymap.c /^static const float objl_path_597_floats[]={$/;" v file: +objl_path_598_cmds demos/subwaymap.c /^static const unsigned char objl_path_598_cmds[]={$/;" v file: +objl_path_598_floats demos/subwaymap.c /^static const float objl_path_598_floats[]={$/;" v file: +objl_path_599_cmds demos/subwaymap.c /^static const unsigned char objl_path_599_cmds[]={$/;" v file: +objl_path_599_floats demos/subwaymap.c /^static const float objl_path_599_floats[]={$/;" v file: +objl_path_59_cmds demos/subwaymap.c /^static const unsigned char objl_path_59_cmds[]={$/;" v file: +objl_path_59_floats demos/subwaymap.c /^static const float objl_path_59_floats[]={$/;" v file: +objl_path_5_cmds demos/subwaymap.c /^static const unsigned char objl_path_5_cmds[]={$/;" v file: +objl_path_5_floats demos/subwaymap.c /^static const float objl_path_5_floats[]={$/;" v file: +objl_path_600_cmds demos/subwaymap.c /^static const unsigned char objl_path_600_cmds[]={$/;" v file: +objl_path_600_floats demos/subwaymap.c /^static const float objl_path_600_floats[]={$/;" v file: +objl_path_601_cmds demos/subwaymap.c /^static const unsigned char objl_path_601_cmds[]={$/;" v file: +objl_path_601_floats demos/subwaymap.c /^static const float objl_path_601_floats[]={$/;" v file: +objl_path_602_cmds demos/subwaymap.c /^static const unsigned char objl_path_602_cmds[]={$/;" v file: +objl_path_602_floats demos/subwaymap.c /^static const float objl_path_602_floats[]={$/;" v file: +objl_path_603_cmds demos/subwaymap.c /^static const unsigned char objl_path_603_cmds[]={$/;" v file: +objl_path_603_floats demos/subwaymap.c /^static const float objl_path_603_floats[]={$/;" v file: +objl_path_604_cmds demos/subwaymap.c /^static const unsigned char objl_path_604_cmds[]={$/;" v file: +objl_path_604_floats demos/subwaymap.c /^static const float objl_path_604_floats[]={$/;" v file: +objl_path_605_cmds demos/subwaymap.c /^static const unsigned char objl_path_605_cmds[]={$/;" v file: +objl_path_605_floats demos/subwaymap.c /^static const float objl_path_605_floats[]={$/;" v file: +objl_path_606_cmds demos/subwaymap.c /^static const unsigned char objl_path_606_cmds[]={$/;" v file: +objl_path_606_floats demos/subwaymap.c /^static const float objl_path_606_floats[]={$/;" v file: +objl_path_607_cmds demos/subwaymap.c /^static const unsigned char objl_path_607_cmds[]={$/;" v file: +objl_path_607_floats demos/subwaymap.c /^static const float objl_path_607_floats[]={$/;" v file: +objl_path_608_cmds demos/subwaymap.c /^static const unsigned char objl_path_608_cmds[]={$/;" v file: +objl_path_608_floats demos/subwaymap.c /^static const float objl_path_608_floats[]={$/;" v file: +objl_path_609_cmds demos/subwaymap.c /^static const unsigned char objl_path_609_cmds[]={$/;" v file: +objl_path_609_floats demos/subwaymap.c /^static const float objl_path_609_floats[]={$/;" v file: +objl_path_60_cmds demos/subwaymap.c /^static const unsigned char objl_path_60_cmds[]={$/;" v file: +objl_path_60_floats demos/subwaymap.c /^static const float objl_path_60_floats[]={$/;" v file: +objl_path_610_cmds demos/subwaymap.c /^static const unsigned char objl_path_610_cmds[]={$/;" v file: +objl_path_610_floats demos/subwaymap.c /^static const float objl_path_610_floats[]={$/;" v file: +objl_path_611_cmds demos/subwaymap.c /^static const unsigned char objl_path_611_cmds[]={$/;" v file: +objl_path_611_floats demos/subwaymap.c /^static const float objl_path_611_floats[]={$/;" v file: +objl_path_612_cmds demos/subwaymap.c /^static const unsigned char objl_path_612_cmds[]={$/;" v file: +objl_path_612_floats demos/subwaymap.c /^static const float objl_path_612_floats[]={$/;" v file: +objl_path_613_cmds demos/subwaymap.c /^static const unsigned char objl_path_613_cmds[]={$/;" v file: +objl_path_613_floats demos/subwaymap.c /^static const float objl_path_613_floats[]={$/;" v file: +objl_path_614_cmds demos/subwaymap.c /^static const unsigned char objl_path_614_cmds[]={$/;" v file: +objl_path_614_floats demos/subwaymap.c /^static const float objl_path_614_floats[]={$/;" v file: +objl_path_615_cmds demos/subwaymap.c /^static const unsigned char objl_path_615_cmds[]={$/;" v file: +objl_path_615_floats demos/subwaymap.c /^static const float objl_path_615_floats[]={$/;" v file: +objl_path_616_cmds demos/subwaymap.c /^static const unsigned char objl_path_616_cmds[]={$/;" v file: +objl_path_616_floats demos/subwaymap.c /^static const float objl_path_616_floats[]={$/;" v file: +objl_path_617_cmds demos/subwaymap.c /^static const unsigned char objl_path_617_cmds[]={$/;" v file: +objl_path_617_floats demos/subwaymap.c /^static const float objl_path_617_floats[]={$/;" v file: +objl_path_618_cmds demos/subwaymap.c /^static const unsigned char objl_path_618_cmds[]={$/;" v file: +objl_path_618_floats demos/subwaymap.c /^static const float objl_path_618_floats[]={$/;" v file: +objl_path_619_cmds demos/subwaymap.c /^static const unsigned char objl_path_619_cmds[]={$/;" v file: +objl_path_619_floats demos/subwaymap.c /^static const float objl_path_619_floats[]={$/;" v file: +objl_path_61_cmds demos/subwaymap.c /^static const unsigned char objl_path_61_cmds[]={$/;" v file: +objl_path_61_floats demos/subwaymap.c /^static const float objl_path_61_floats[]={$/;" v file: +objl_path_620_cmds demos/subwaymap.c /^static const unsigned char objl_path_620_cmds[]={$/;" v file: +objl_path_620_floats demos/subwaymap.c /^static const float objl_path_620_floats[]={$/;" v file: +objl_path_621_cmds demos/subwaymap.c /^static const unsigned char objl_path_621_cmds[]={$/;" v file: +objl_path_621_floats demos/subwaymap.c /^static const float objl_path_621_floats[]={$/;" v file: +objl_path_622_cmds demos/subwaymap.c /^static const unsigned char objl_path_622_cmds[]={$/;" v file: +objl_path_622_floats demos/subwaymap.c /^static const float objl_path_622_floats[]={$/;" v file: +objl_path_623_cmds demos/subwaymap.c /^static const unsigned char objl_path_623_cmds[]={$/;" v file: +objl_path_623_floats demos/subwaymap.c /^static const float objl_path_623_floats[]={$/;" v file: +objl_path_624_cmds demos/subwaymap.c /^static const unsigned char objl_path_624_cmds[]={$/;" v file: +objl_path_624_floats demos/subwaymap.c /^static const float objl_path_624_floats[]={$/;" v file: +objl_path_625_cmds demos/subwaymap.c /^static const unsigned char objl_path_625_cmds[]={$/;" v file: +objl_path_625_floats demos/subwaymap.c /^static const float objl_path_625_floats[]={$/;" v file: +objl_path_626_cmds demos/subwaymap.c /^static const unsigned char objl_path_626_cmds[]={$/;" v file: +objl_path_626_floats demos/subwaymap.c /^static const float objl_path_626_floats[]={$/;" v file: +objl_path_627_cmds demos/subwaymap.c /^static const unsigned char objl_path_627_cmds[]={$/;" v file: +objl_path_627_floats demos/subwaymap.c /^static const float objl_path_627_floats[]={$/;" v file: +objl_path_628_cmds demos/subwaymap.c /^static const unsigned char objl_path_628_cmds[]={$/;" v file: +objl_path_628_floats demos/subwaymap.c /^static const float objl_path_628_floats[]={$/;" v file: +objl_path_629_cmds demos/subwaymap.c /^static const unsigned char objl_path_629_cmds[]={$/;" v file: +objl_path_629_floats demos/subwaymap.c /^static const float objl_path_629_floats[]={$/;" v file: +objl_path_62_cmds demos/subwaymap.c /^static const unsigned char objl_path_62_cmds[]={$/;" v file: +objl_path_62_floats demos/subwaymap.c /^static const float objl_path_62_floats[]={$/;" v file: +objl_path_630_cmds demos/subwaymap.c /^static const unsigned char objl_path_630_cmds[]={$/;" v file: +objl_path_630_floats demos/subwaymap.c /^static const float objl_path_630_floats[]={$/;" v file: +objl_path_631_cmds demos/subwaymap.c /^static const unsigned char objl_path_631_cmds[]={$/;" v file: +objl_path_631_floats demos/subwaymap.c /^static const float objl_path_631_floats[]={$/;" v file: +objl_path_632_cmds demos/subwaymap.c /^static const unsigned char objl_path_632_cmds[]={$/;" v file: +objl_path_632_floats demos/subwaymap.c /^static const float objl_path_632_floats[]={$/;" v file: +objl_path_633_cmds demos/subwaymap.c /^static const unsigned char objl_path_633_cmds[]={$/;" v file: +objl_path_633_floats demos/subwaymap.c /^static const float objl_path_633_floats[]={$/;" v file: +objl_path_634_cmds demos/subwaymap.c /^static const unsigned char objl_path_634_cmds[]={$/;" v file: +objl_path_634_floats demos/subwaymap.c /^static const float objl_path_634_floats[]={$/;" v file: +objl_path_635_cmds demos/subwaymap.c /^static const unsigned char objl_path_635_cmds[]={$/;" v file: +objl_path_635_floats demos/subwaymap.c /^static const float objl_path_635_floats[]={$/;" v file: +objl_path_636_cmds demos/subwaymap.c /^static const unsigned char objl_path_636_cmds[]={$/;" v file: +objl_path_636_floats demos/subwaymap.c /^static const float objl_path_636_floats[]={$/;" v file: +objl_path_637_cmds demos/subwaymap.c /^static const unsigned char objl_path_637_cmds[]={$/;" v file: +objl_path_637_floats demos/subwaymap.c /^static const float objl_path_637_floats[]={$/;" v file: +objl_path_638_cmds demos/subwaymap.c /^static const unsigned char objl_path_638_cmds[]={$/;" v file: +objl_path_638_floats demos/subwaymap.c /^static const float objl_path_638_floats[]={$/;" v file: +objl_path_639_cmds demos/subwaymap.c /^static const unsigned char objl_path_639_cmds[]={$/;" v file: +objl_path_639_floats demos/subwaymap.c /^static const float objl_path_639_floats[]={$/;" v file: +objl_path_63_cmds demos/subwaymap.c /^static const unsigned char objl_path_63_cmds[]={$/;" v file: +objl_path_63_floats demos/subwaymap.c /^static const float objl_path_63_floats[]={$/;" v file: +objl_path_640_cmds demos/subwaymap.c /^static const unsigned char objl_path_640_cmds[]={$/;" v file: +objl_path_640_floats demos/subwaymap.c /^static const float objl_path_640_floats[]={$/;" v file: +objl_path_641_cmds demos/subwaymap.c /^static const unsigned char objl_path_641_cmds[]={$/;" v file: +objl_path_641_floats demos/subwaymap.c /^static const float objl_path_641_floats[]={$/;" v file: +objl_path_642_cmds demos/subwaymap.c /^static const unsigned char objl_path_642_cmds[]={$/;" v file: +objl_path_642_floats demos/subwaymap.c /^static const float objl_path_642_floats[]={$/;" v file: +objl_path_643_cmds demos/subwaymap.c /^static const unsigned char objl_path_643_cmds[]={$/;" v file: +objl_path_643_floats demos/subwaymap.c /^static const float objl_path_643_floats[]={$/;" v file: +objl_path_644_cmds demos/subwaymap.c /^static const unsigned char objl_path_644_cmds[]={$/;" v file: +objl_path_644_floats demos/subwaymap.c /^static const float objl_path_644_floats[]={$/;" v file: +objl_path_645_cmds demos/subwaymap.c /^static const unsigned char objl_path_645_cmds[]={$/;" v file: +objl_path_645_floats demos/subwaymap.c /^static const float objl_path_645_floats[]={$/;" v file: +objl_path_646_cmds demos/subwaymap.c /^static const unsigned char objl_path_646_cmds[]={$/;" v file: +objl_path_646_floats demos/subwaymap.c /^static const float objl_path_646_floats[]={$/;" v file: +objl_path_647_cmds demos/subwaymap.c /^static const unsigned char objl_path_647_cmds[]={$/;" v file: +objl_path_647_floats demos/subwaymap.c /^static const float objl_path_647_floats[]={$/;" v file: +objl_path_648_cmds demos/subwaymap.c /^static const unsigned char objl_path_648_cmds[]={$/;" v file: +objl_path_648_floats demos/subwaymap.c /^static const float objl_path_648_floats[]={$/;" v file: +objl_path_649_cmds demos/subwaymap.c /^static const unsigned char objl_path_649_cmds[]={$/;" v file: +objl_path_649_floats demos/subwaymap.c /^static const float objl_path_649_floats[]={$/;" v file: +objl_path_64_cmds demos/subwaymap.c /^static const unsigned char objl_path_64_cmds[]={$/;" v file: +objl_path_64_floats demos/subwaymap.c /^static const float objl_path_64_floats[]={$/;" v file: +objl_path_650_cmds demos/subwaymap.c /^static const unsigned char objl_path_650_cmds[]={$/;" v file: +objl_path_650_floats demos/subwaymap.c /^static const float objl_path_650_floats[]={$/;" v file: +objl_path_651_cmds demos/subwaymap.c /^static const unsigned char objl_path_651_cmds[]={$/;" v file: +objl_path_651_floats demos/subwaymap.c /^static const float objl_path_651_floats[]={$/;" v file: +objl_path_652_cmds demos/subwaymap.c /^static const unsigned char objl_path_652_cmds[]={$/;" v file: +objl_path_652_floats demos/subwaymap.c /^static const float objl_path_652_floats[]={$/;" v file: +objl_path_653_cmds demos/subwaymap.c /^static const unsigned char objl_path_653_cmds[]={$/;" v file: +objl_path_653_floats demos/subwaymap.c /^static const float objl_path_653_floats[]={$/;" v file: +objl_path_654_cmds demos/subwaymap.c /^static const unsigned char objl_path_654_cmds[]={$/;" v file: +objl_path_654_floats demos/subwaymap.c /^static const float objl_path_654_floats[]={$/;" v file: +objl_path_655_cmds demos/subwaymap.c /^static const unsigned char objl_path_655_cmds[]={$/;" v file: +objl_path_655_floats demos/subwaymap.c /^static const float objl_path_655_floats[]={$/;" v file: +objl_path_656_cmds demos/subwaymap.c /^static const unsigned char objl_path_656_cmds[]={$/;" v file: +objl_path_656_floats demos/subwaymap.c /^static const float objl_path_656_floats[]={$/;" v file: +objl_path_657_cmds demos/subwaymap.c /^static const unsigned char objl_path_657_cmds[]={$/;" v file: +objl_path_657_floats demos/subwaymap.c /^static const float objl_path_657_floats[]={$/;" v file: +objl_path_658_cmds demos/subwaymap.c /^static const unsigned char objl_path_658_cmds[]={$/;" v file: +objl_path_658_floats demos/subwaymap.c /^static const float objl_path_658_floats[]={$/;" v file: +objl_path_659_cmds demos/subwaymap.c /^static const unsigned char objl_path_659_cmds[]={$/;" v file: +objl_path_659_floats demos/subwaymap.c /^static const float objl_path_659_floats[]={$/;" v file: +objl_path_65_cmds demos/subwaymap.c /^static const unsigned char objl_path_65_cmds[]={$/;" v file: +objl_path_65_floats demos/subwaymap.c /^static const float objl_path_65_floats[]={$/;" v file: +objl_path_660_cmds demos/subwaymap.c /^static const unsigned char objl_path_660_cmds[]={$/;" v file: +objl_path_660_floats demos/subwaymap.c /^static const float objl_path_660_floats[]={$/;" v file: +objl_path_661_cmds demos/subwaymap.c /^static const unsigned char objl_path_661_cmds[]={$/;" v file: +objl_path_661_floats demos/subwaymap.c /^static const float objl_path_661_floats[]={$/;" v file: +objl_path_662_cmds demos/subwaymap.c /^static const unsigned char objl_path_662_cmds[]={$/;" v file: +objl_path_662_floats demos/subwaymap.c /^static const float objl_path_662_floats[]={$/;" v file: +objl_path_663_cmds demos/subwaymap.c /^static const unsigned char objl_path_663_cmds[]={$/;" v file: +objl_path_663_floats demos/subwaymap.c /^static const float objl_path_663_floats[]={$/;" v file: +objl_path_664_cmds demos/subwaymap.c /^static const unsigned char objl_path_664_cmds[]={$/;" v file: +objl_path_664_floats demos/subwaymap.c /^static const float objl_path_664_floats[]={$/;" v file: +objl_path_665_cmds demos/subwaymap.c /^static const unsigned char objl_path_665_cmds[]={$/;" v file: +objl_path_665_floats demos/subwaymap.c /^static const float objl_path_665_floats[]={$/;" v file: +objl_path_666_cmds demos/subwaymap.c /^static const unsigned char objl_path_666_cmds[]={$/;" v file: +objl_path_666_floats demos/subwaymap.c /^static const float objl_path_666_floats[]={$/;" v file: +objl_path_667_cmds demos/subwaymap.c /^static const unsigned char objl_path_667_cmds[]={$/;" v file: +objl_path_667_floats demos/subwaymap.c /^static const float objl_path_667_floats[]={$/;" v file: +objl_path_668_cmds demos/subwaymap.c /^static const unsigned char objl_path_668_cmds[]={$/;" v file: +objl_path_668_floats demos/subwaymap.c /^static const float objl_path_668_floats[]={$/;" v file: +objl_path_669_cmds demos/subwaymap.c /^static const unsigned char objl_path_669_cmds[]={$/;" v file: +objl_path_669_floats demos/subwaymap.c /^static const float objl_path_669_floats[]={$/;" v file: +objl_path_66_cmds demos/subwaymap.c /^static const unsigned char objl_path_66_cmds[]={$/;" v file: +objl_path_66_floats demos/subwaymap.c /^static const float objl_path_66_floats[]={$/;" v file: +objl_path_670_cmds demos/subwaymap.c /^static const unsigned char objl_path_670_cmds[]={$/;" v file: +objl_path_670_floats demos/subwaymap.c /^static const float objl_path_670_floats[]={$/;" v file: +objl_path_671_cmds demos/subwaymap.c /^static const unsigned char objl_path_671_cmds[]={$/;" v file: +objl_path_671_floats demos/subwaymap.c /^static const float objl_path_671_floats[]={$/;" v file: +objl_path_672_cmds demos/subwaymap.c /^static const unsigned char objl_path_672_cmds[]={$/;" v file: +objl_path_672_floats demos/subwaymap.c /^static const float objl_path_672_floats[]={$/;" v file: +objl_path_673_cmds demos/subwaymap.c /^static const unsigned char objl_path_673_cmds[]={$/;" v file: +objl_path_673_floats demos/subwaymap.c /^static const float objl_path_673_floats[]={$/;" v file: +objl_path_674_cmds demos/subwaymap.c /^static const unsigned char objl_path_674_cmds[]={$/;" v file: +objl_path_674_floats demos/subwaymap.c /^static const float objl_path_674_floats[]={$/;" v file: +objl_path_675_cmds demos/subwaymap.c /^static const unsigned char objl_path_675_cmds[]={$/;" v file: +objl_path_675_floats demos/subwaymap.c /^static const float objl_path_675_floats[]={$/;" v file: +objl_path_676_cmds demos/subwaymap.c /^static const unsigned char objl_path_676_cmds[]={$/;" v file: +objl_path_676_floats demos/subwaymap.c /^static const float objl_path_676_floats[]={$/;" v file: +objl_path_677_cmds demos/subwaymap.c /^static const unsigned char objl_path_677_cmds[]={$/;" v file: +objl_path_677_floats demos/subwaymap.c /^static const float objl_path_677_floats[]={$/;" v file: +objl_path_678_cmds demos/subwaymap.c /^static const unsigned char objl_path_678_cmds[]={$/;" v file: +objl_path_678_floats demos/subwaymap.c /^static const float objl_path_678_floats[]={$/;" v file: +objl_path_679_cmds demos/subwaymap.c /^static const unsigned char objl_path_679_cmds[]={$/;" v file: +objl_path_679_floats demos/subwaymap.c /^static const float objl_path_679_floats[]={$/;" v file: +objl_path_67_cmds demos/subwaymap.c /^static const unsigned char objl_path_67_cmds[]={$/;" v file: +objl_path_67_floats demos/subwaymap.c /^static const float objl_path_67_floats[]={$/;" v file: +objl_path_680_cmds demos/subwaymap.c /^static const unsigned char objl_path_680_cmds[]={$/;" v file: +objl_path_680_floats demos/subwaymap.c /^static const float objl_path_680_floats[]={$/;" v file: +objl_path_681_cmds demos/subwaymap.c /^static const unsigned char objl_path_681_cmds[]={$/;" v file: +objl_path_681_floats demos/subwaymap.c /^static const float objl_path_681_floats[]={$/;" v file: +objl_path_682_cmds demos/subwaymap.c /^static const unsigned char objl_path_682_cmds[]={$/;" v file: +objl_path_682_floats demos/subwaymap.c /^static const float objl_path_682_floats[]={$/;" v file: +objl_path_683_cmds demos/subwaymap.c /^static const unsigned char objl_path_683_cmds[]={$/;" v file: +objl_path_683_floats demos/subwaymap.c /^static const float objl_path_683_floats[]={$/;" v file: +objl_path_684_cmds demos/subwaymap.c /^static const unsigned char objl_path_684_cmds[]={$/;" v file: +objl_path_684_floats demos/subwaymap.c /^static const float objl_path_684_floats[]={$/;" v file: +objl_path_685_cmds demos/subwaymap.c /^static const unsigned char objl_path_685_cmds[]={$/;" v file: +objl_path_685_floats demos/subwaymap.c /^static const float objl_path_685_floats[]={$/;" v file: +objl_path_686_cmds demos/subwaymap.c /^static const unsigned char objl_path_686_cmds[]={$/;" v file: +objl_path_686_floats demos/subwaymap.c /^static const float objl_path_686_floats[]={$/;" v file: +objl_path_687_cmds demos/subwaymap.c /^static const unsigned char objl_path_687_cmds[]={$/;" v file: +objl_path_687_floats demos/subwaymap.c /^static const float objl_path_687_floats[]={$/;" v file: +objl_path_688_cmds demos/subwaymap.c /^static const unsigned char objl_path_688_cmds[]={$/;" v file: +objl_path_688_floats demos/subwaymap.c /^static const float objl_path_688_floats[]={$/;" v file: +objl_path_689_cmds demos/subwaymap.c /^static const unsigned char objl_path_689_cmds[]={$/;" v file: +objl_path_689_floats demos/subwaymap.c /^static const float objl_path_689_floats[]={$/;" v file: +objl_path_68_cmds demos/subwaymap.c /^static const unsigned char objl_path_68_cmds[]={$/;" v file: +objl_path_68_floats demos/subwaymap.c /^static const float objl_path_68_floats[]={$/;" v file: +objl_path_690_cmds demos/subwaymap.c /^static const unsigned char objl_path_690_cmds[]={$/;" v file: +objl_path_690_floats demos/subwaymap.c /^static const float objl_path_690_floats[]={$/;" v file: +objl_path_691_cmds demos/subwaymap.c /^static const unsigned char objl_path_691_cmds[]={$/;" v file: +objl_path_691_floats demos/subwaymap.c /^static const float objl_path_691_floats[]={$/;" v file: +objl_path_692_cmds demos/subwaymap.c /^static const unsigned char objl_path_692_cmds[]={$/;" v file: +objl_path_692_floats demos/subwaymap.c /^static const float objl_path_692_floats[]={$/;" v file: +objl_path_693_cmds demos/subwaymap.c /^static const unsigned char objl_path_693_cmds[]={$/;" v file: +objl_path_693_floats demos/subwaymap.c /^static const float objl_path_693_floats[]={$/;" v file: +objl_path_694_cmds demos/subwaymap.c /^static const unsigned char objl_path_694_cmds[]={$/;" v file: +objl_path_694_floats demos/subwaymap.c /^static const float objl_path_694_floats[]={$/;" v file: +objl_path_695_cmds demos/subwaymap.c /^static const unsigned char objl_path_695_cmds[]={$/;" v file: +objl_path_695_floats demos/subwaymap.c /^static const float objl_path_695_floats[]={$/;" v file: +objl_path_696_cmds demos/subwaymap.c /^static const unsigned char objl_path_696_cmds[]={$/;" v file: +objl_path_696_floats demos/subwaymap.c /^static const float objl_path_696_floats[]={$/;" v file: +objl_path_697_cmds demos/subwaymap.c /^static const unsigned char objl_path_697_cmds[]={$/;" v file: +objl_path_697_floats demos/subwaymap.c /^static const float objl_path_697_floats[]={$/;" v file: +objl_path_698_cmds demos/subwaymap.c /^static const unsigned char objl_path_698_cmds[]={$/;" v file: +objl_path_698_floats demos/subwaymap.c /^static const float objl_path_698_floats[]={$/;" v file: +objl_path_699_cmds demos/subwaymap.c /^static const unsigned char objl_path_699_cmds[]={$/;" v file: +objl_path_699_floats demos/subwaymap.c /^static const float objl_path_699_floats[]={$/;" v file: +objl_path_69_cmds demos/subwaymap.c /^static const unsigned char objl_path_69_cmds[]={$/;" v file: +objl_path_69_floats demos/subwaymap.c /^static const float objl_path_69_floats[]={$/;" v file: +objl_path_6_cmds demos/subwaymap.c /^static const unsigned char objl_path_6_cmds[]={$/;" v file: +objl_path_6_floats demos/subwaymap.c /^static const float objl_path_6_floats[]={$/;" v file: +objl_path_700_cmds demos/subwaymap.c /^static const unsigned char objl_path_700_cmds[]={$/;" v file: +objl_path_700_floats demos/subwaymap.c /^static const float objl_path_700_floats[]={$/;" v file: +objl_path_701_cmds demos/subwaymap.c /^static const unsigned char objl_path_701_cmds[]={$/;" v file: +objl_path_701_floats demos/subwaymap.c /^static const float objl_path_701_floats[]={$/;" v file: +objl_path_702_cmds demos/subwaymap.c /^static const unsigned char objl_path_702_cmds[]={$/;" v file: +objl_path_702_floats demos/subwaymap.c /^static const float objl_path_702_floats[]={$/;" v file: +objl_path_703_cmds demos/subwaymap.c /^static const unsigned char objl_path_703_cmds[]={$/;" v file: +objl_path_703_floats demos/subwaymap.c /^static const float objl_path_703_floats[]={$/;" v file: +objl_path_704_cmds demos/subwaymap.c /^static const unsigned char objl_path_704_cmds[]={$/;" v file: +objl_path_704_floats demos/subwaymap.c /^static const float objl_path_704_floats[]={$/;" v file: +objl_path_705_cmds demos/subwaymap.c /^static const unsigned char objl_path_705_cmds[]={$/;" v file: +objl_path_705_floats demos/subwaymap.c /^static const float objl_path_705_floats[]={$/;" v file: +objl_path_706_cmds demos/subwaymap.c /^static const unsigned char objl_path_706_cmds[]={$/;" v file: +objl_path_706_floats demos/subwaymap.c /^static const float objl_path_706_floats[]={$/;" v file: +objl_path_707_cmds demos/subwaymap.c /^static const unsigned char objl_path_707_cmds[]={$/;" v file: +objl_path_707_floats demos/subwaymap.c /^static const float objl_path_707_floats[]={$/;" v file: +objl_path_708_cmds demos/subwaymap.c /^static const unsigned char objl_path_708_cmds[]={$/;" v file: +objl_path_708_floats demos/subwaymap.c /^static const float objl_path_708_floats[]={$/;" v file: +objl_path_709_cmds demos/subwaymap.c /^static const unsigned char objl_path_709_cmds[]={$/;" v file: +objl_path_709_floats demos/subwaymap.c /^static const float objl_path_709_floats[]={$/;" v file: +objl_path_70_cmds demos/subwaymap.c /^static const unsigned char objl_path_70_cmds[]={$/;" v file: +objl_path_70_floats demos/subwaymap.c /^static const float objl_path_70_floats[]={$/;" v file: +objl_path_710_cmds demos/subwaymap.c /^static const unsigned char objl_path_710_cmds[]={$/;" v file: +objl_path_710_floats demos/subwaymap.c /^static const float objl_path_710_floats[]={$/;" v file: +objl_path_711_cmds demos/subwaymap.c /^static const unsigned char objl_path_711_cmds[]={$/;" v file: +objl_path_711_floats demos/subwaymap.c /^static const float objl_path_711_floats[]={$/;" v file: +objl_path_712_cmds demos/subwaymap.c /^static const unsigned char objl_path_712_cmds[]={$/;" v file: +objl_path_712_floats demos/subwaymap.c /^static const float objl_path_712_floats[]={$/;" v file: +objl_path_713_cmds demos/subwaymap.c /^static const unsigned char objl_path_713_cmds[]={$/;" v file: +objl_path_713_floats demos/subwaymap.c /^static const float objl_path_713_floats[]={$/;" v file: +objl_path_714_cmds demos/subwaymap.c /^static const unsigned char objl_path_714_cmds[]={$/;" v file: +objl_path_714_floats demos/subwaymap.c /^static const float objl_path_714_floats[]={$/;" v file: +objl_path_715_cmds demos/subwaymap.c /^static const unsigned char objl_path_715_cmds[]={$/;" v file: +objl_path_715_floats demos/subwaymap.c /^static const float objl_path_715_floats[]={$/;" v file: +objl_path_716_cmds demos/subwaymap.c /^static const unsigned char objl_path_716_cmds[]={$/;" v file: +objl_path_716_floats demos/subwaymap.c /^static const float objl_path_716_floats[]={$/;" v file: +objl_path_717_cmds demos/subwaymap.c /^static const unsigned char objl_path_717_cmds[]={$/;" v file: +objl_path_717_floats demos/subwaymap.c /^static const float objl_path_717_floats[]={$/;" v file: +objl_path_718_cmds demos/subwaymap.c /^static const unsigned char objl_path_718_cmds[]={$/;" v file: +objl_path_718_floats demos/subwaymap.c /^static const float objl_path_718_floats[]={$/;" v file: +objl_path_719_cmds demos/subwaymap.c /^static const unsigned char objl_path_719_cmds[]={$/;" v file: +objl_path_719_floats demos/subwaymap.c /^static const float objl_path_719_floats[]={$/;" v file: +objl_path_71_cmds demos/subwaymap.c /^static const unsigned char objl_path_71_cmds[]={$/;" v file: +objl_path_71_floats demos/subwaymap.c /^static const float objl_path_71_floats[]={$/;" v file: +objl_path_720_cmds demos/subwaymap.c /^static const unsigned char objl_path_720_cmds[]={$/;" v file: +objl_path_720_floats demos/subwaymap.c /^static const float objl_path_720_floats[]={$/;" v file: +objl_path_721_cmds demos/subwaymap.c /^static const unsigned char objl_path_721_cmds[]={$/;" v file: +objl_path_721_floats demos/subwaymap.c /^static const float objl_path_721_floats[]={$/;" v file: +objl_path_722_cmds demos/subwaymap.c /^static const unsigned char objl_path_722_cmds[]={$/;" v file: +objl_path_722_floats demos/subwaymap.c /^static const float objl_path_722_floats[]={$/;" v file: +objl_path_723_cmds demos/subwaymap.c /^static const unsigned char objl_path_723_cmds[]={$/;" v file: +objl_path_723_floats demos/subwaymap.c /^static const float objl_path_723_floats[]={$/;" v file: +objl_path_724_cmds demos/subwaymap.c /^static const unsigned char objl_path_724_cmds[]={$/;" v file: +objl_path_724_floats demos/subwaymap.c /^static const float objl_path_724_floats[]={$/;" v file: +objl_path_725_cmds demos/subwaymap.c /^static const unsigned char objl_path_725_cmds[]={$/;" v file: +objl_path_725_floats demos/subwaymap.c /^static const float objl_path_725_floats[]={$/;" v file: +objl_path_726_cmds demos/subwaymap.c /^static const unsigned char objl_path_726_cmds[]={$/;" v file: +objl_path_726_floats demos/subwaymap.c /^static const float objl_path_726_floats[]={$/;" v file: +objl_path_727_cmds demos/subwaymap.c /^static const unsigned char objl_path_727_cmds[]={$/;" v file: +objl_path_727_floats demos/subwaymap.c /^static const float objl_path_727_floats[]={$/;" v file: +objl_path_728_cmds demos/subwaymap.c /^static const unsigned char objl_path_728_cmds[]={$/;" v file: +objl_path_728_floats demos/subwaymap.c /^static const float objl_path_728_floats[]={$/;" v file: +objl_path_729_cmds demos/subwaymap.c /^static const unsigned char objl_path_729_cmds[]={$/;" v file: +objl_path_729_floats demos/subwaymap.c /^static const float objl_path_729_floats[]={$/;" v file: +objl_path_72_cmds demos/subwaymap.c /^static const unsigned char objl_path_72_cmds[]={$/;" v file: +objl_path_72_floats demos/subwaymap.c /^static const float objl_path_72_floats[]={$/;" v file: +objl_path_730_cmds demos/subwaymap.c /^static const unsigned char objl_path_730_cmds[]={$/;" v file: +objl_path_730_floats demos/subwaymap.c /^static const float objl_path_730_floats[]={$/;" v file: +objl_path_731_cmds demos/subwaymap.c /^static const unsigned char objl_path_731_cmds[]={$/;" v file: +objl_path_731_floats demos/subwaymap.c /^static const float objl_path_731_floats[]={$/;" v file: +objl_path_732_cmds demos/subwaymap.c /^static const unsigned char objl_path_732_cmds[]={$/;" v file: +objl_path_732_floats demos/subwaymap.c /^static const float objl_path_732_floats[]={$/;" v file: +objl_path_733_cmds demos/subwaymap.c /^static const unsigned char objl_path_733_cmds[]={$/;" v file: +objl_path_733_floats demos/subwaymap.c /^static const float objl_path_733_floats[]={$/;" v file: +objl_path_734_cmds demos/subwaymap.c /^static const unsigned char objl_path_734_cmds[]={$/;" v file: +objl_path_734_floats demos/subwaymap.c /^static const float objl_path_734_floats[]={$/;" v file: +objl_path_735_cmds demos/subwaymap.c /^static const unsigned char objl_path_735_cmds[]={$/;" v file: +objl_path_735_floats demos/subwaymap.c /^static const float objl_path_735_floats[]={$/;" v file: +objl_path_736_cmds demos/subwaymap.c /^static const unsigned char objl_path_736_cmds[]={$/;" v file: +objl_path_736_floats demos/subwaymap.c /^static const float objl_path_736_floats[]={$/;" v file: +objl_path_737_cmds demos/subwaymap.c /^static const unsigned char objl_path_737_cmds[]={$/;" v file: +objl_path_737_floats demos/subwaymap.c /^static const float objl_path_737_floats[]={$/;" v file: +objl_path_738_cmds demos/subwaymap.c /^static const unsigned char objl_path_738_cmds[]={$/;" v file: +objl_path_738_floats demos/subwaymap.c /^static const float objl_path_738_floats[]={$/;" v file: +objl_path_739_cmds demos/subwaymap.c /^static const unsigned char objl_path_739_cmds[]={$/;" v file: +objl_path_739_floats demos/subwaymap.c /^static const float objl_path_739_floats[]={$/;" v file: +objl_path_73_cmds demos/subwaymap.c /^static const unsigned char objl_path_73_cmds[]={$/;" v file: +objl_path_73_floats demos/subwaymap.c /^static const float objl_path_73_floats[]={$/;" v file: +objl_path_740_cmds demos/subwaymap.c /^static const unsigned char objl_path_740_cmds[]={$/;" v file: +objl_path_740_floats demos/subwaymap.c /^static const float objl_path_740_floats[]={$/;" v file: +objl_path_741_cmds demos/subwaymap.c /^static const unsigned char objl_path_741_cmds[]={$/;" v file: +objl_path_741_floats demos/subwaymap.c /^static const float objl_path_741_floats[]={$/;" v file: +objl_path_742_cmds demos/subwaymap.c /^static const unsigned char objl_path_742_cmds[]={$/;" v file: +objl_path_742_floats demos/subwaymap.c /^static const float objl_path_742_floats[]={$/;" v file: +objl_path_743_cmds demos/subwaymap.c /^static const unsigned char objl_path_743_cmds[]={$/;" v file: +objl_path_743_floats demos/subwaymap.c /^static const float objl_path_743_floats[]={$/;" v file: +objl_path_744_cmds demos/subwaymap.c /^static const unsigned char objl_path_744_cmds[]={$/;" v file: +objl_path_744_floats demos/subwaymap.c /^static const float objl_path_744_floats[]={$/;" v file: +objl_path_745_cmds demos/subwaymap.c /^static const unsigned char objl_path_745_cmds[]={$/;" v file: +objl_path_745_floats demos/subwaymap.c /^static const float objl_path_745_floats[]={$/;" v file: +objl_path_746_cmds demos/subwaymap.c /^static const unsigned char objl_path_746_cmds[]={$/;" v file: +objl_path_746_floats demos/subwaymap.c /^static const float objl_path_746_floats[]={$/;" v file: +objl_path_747_cmds demos/subwaymap.c /^static const unsigned char objl_path_747_cmds[]={$/;" v file: +objl_path_747_floats demos/subwaymap.c /^static const float objl_path_747_floats[]={$/;" v file: +objl_path_748_cmds demos/subwaymap.c /^static const unsigned char objl_path_748_cmds[]={$/;" v file: +objl_path_748_floats demos/subwaymap.c /^static const float objl_path_748_floats[]={$/;" v file: +objl_path_749_cmds demos/subwaymap.c /^static const unsigned char objl_path_749_cmds[]={$/;" v file: +objl_path_749_floats demos/subwaymap.c /^static const float objl_path_749_floats[]={$/;" v file: +objl_path_74_cmds demos/subwaymap.c /^static const unsigned char objl_path_74_cmds[]={$/;" v file: +objl_path_74_floats demos/subwaymap.c /^static const float objl_path_74_floats[]={$/;" v file: +objl_path_750_cmds demos/subwaymap.c /^static const unsigned char objl_path_750_cmds[]={$/;" v file: +objl_path_750_floats demos/subwaymap.c /^static const float objl_path_750_floats[]={$/;" v file: +objl_path_751_cmds demos/subwaymap.c /^static const unsigned char objl_path_751_cmds[]={$/;" v file: +objl_path_751_floats demos/subwaymap.c /^static const float objl_path_751_floats[]={$/;" v file: +objl_path_752_cmds demos/subwaymap.c /^static const unsigned char objl_path_752_cmds[]={$/;" v file: +objl_path_752_floats demos/subwaymap.c /^static const float objl_path_752_floats[]={$/;" v file: +objl_path_753_cmds demos/subwaymap.c /^static const unsigned char objl_path_753_cmds[]={$/;" v file: +objl_path_753_floats demos/subwaymap.c /^static const float objl_path_753_floats[]={$/;" v file: +objl_path_754_cmds demos/subwaymap.c /^static const unsigned char objl_path_754_cmds[]={$/;" v file: +objl_path_754_floats demos/subwaymap.c /^static const float objl_path_754_floats[]={$/;" v file: +objl_path_755_cmds demos/subwaymap.c /^static const unsigned char objl_path_755_cmds[]={$/;" v file: +objl_path_755_floats demos/subwaymap.c /^static const float objl_path_755_floats[]={$/;" v file: +objl_path_756_cmds demos/subwaymap.c /^static const unsigned char objl_path_756_cmds[]={$/;" v file: +objl_path_756_floats demos/subwaymap.c /^static const float objl_path_756_floats[]={$/;" v file: +objl_path_757_cmds demos/subwaymap.c /^static const unsigned char objl_path_757_cmds[]={$/;" v file: +objl_path_757_floats demos/subwaymap.c /^static const float objl_path_757_floats[]={$/;" v file: +objl_path_758_cmds demos/subwaymap.c /^static const unsigned char objl_path_758_cmds[]={$/;" v file: +objl_path_758_floats demos/subwaymap.c /^static const float objl_path_758_floats[]={$/;" v file: +objl_path_759_cmds demos/subwaymap.c /^static const unsigned char objl_path_759_cmds[]={$/;" v file: +objl_path_759_floats demos/subwaymap.c /^static const float objl_path_759_floats[]={$/;" v file: +objl_path_75_cmds demos/subwaymap.c /^static const unsigned char objl_path_75_cmds[]={$/;" v file: +objl_path_75_floats demos/subwaymap.c /^static const float objl_path_75_floats[]={$/;" v file: +objl_path_760_cmds demos/subwaymap.c /^static const unsigned char objl_path_760_cmds[]={$/;" v file: +objl_path_760_floats demos/subwaymap.c /^static const float objl_path_760_floats[]={$/;" v file: +objl_path_761_cmds demos/subwaymap.c /^static const unsigned char objl_path_761_cmds[]={$/;" v file: +objl_path_761_floats demos/subwaymap.c /^static const float objl_path_761_floats[]={$/;" v file: +objl_path_762_cmds demos/subwaymap.c /^static const unsigned char objl_path_762_cmds[]={$/;" v file: +objl_path_762_floats demos/subwaymap.c /^static const float objl_path_762_floats[]={$/;" v file: +objl_path_763_cmds demos/subwaymap.c /^static const unsigned char objl_path_763_cmds[]={$/;" v file: +objl_path_763_floats demos/subwaymap.c /^static const float objl_path_763_floats[]={$/;" v file: +objl_path_764_cmds demos/subwaymap.c /^static const unsigned char objl_path_764_cmds[]={$/;" v file: +objl_path_764_floats demos/subwaymap.c /^static const float objl_path_764_floats[]={$/;" v file: +objl_path_765_cmds demos/subwaymap.c /^static const unsigned char objl_path_765_cmds[]={$/;" v file: +objl_path_765_floats demos/subwaymap.c /^static const float objl_path_765_floats[]={$/;" v file: +objl_path_766_cmds demos/subwaymap.c /^static const unsigned char objl_path_766_cmds[]={$/;" v file: +objl_path_766_floats demos/subwaymap.c /^static const float objl_path_766_floats[]={$/;" v file: +objl_path_767_cmds demos/subwaymap.c /^static const unsigned char objl_path_767_cmds[]={$/;" v file: +objl_path_767_floats demos/subwaymap.c /^static const float objl_path_767_floats[]={$/;" v file: +objl_path_768_cmds demos/subwaymap.c /^static const unsigned char objl_path_768_cmds[]={$/;" v file: +objl_path_768_floats demos/subwaymap.c /^static const float objl_path_768_floats[]={$/;" v file: +objl_path_769_cmds demos/subwaymap.c /^static const unsigned char objl_path_769_cmds[]={$/;" v file: +objl_path_769_floats demos/subwaymap.c /^static const float objl_path_769_floats[]={$/;" v file: +objl_path_76_cmds demos/subwaymap.c /^static const unsigned char objl_path_76_cmds[]={$/;" v file: +objl_path_76_floats demos/subwaymap.c /^static const float objl_path_76_floats[]={$/;" v file: +objl_path_770_cmds demos/subwaymap.c /^static const unsigned char objl_path_770_cmds[]={$/;" v file: +objl_path_770_floats demos/subwaymap.c /^static const float objl_path_770_floats[]={$/;" v file: +objl_path_771_cmds demos/subwaymap.c /^static const unsigned char objl_path_771_cmds[]={$/;" v file: +objl_path_771_floats demos/subwaymap.c /^static const float objl_path_771_floats[]={$/;" v file: +objl_path_772_cmds demos/subwaymap.c /^static const unsigned char objl_path_772_cmds[]={$/;" v file: +objl_path_772_floats demos/subwaymap.c /^static const float objl_path_772_floats[]={$/;" v file: +objl_path_773_cmds demos/subwaymap.c /^static const unsigned char objl_path_773_cmds[]={$/;" v file: +objl_path_773_floats demos/subwaymap.c /^static const float objl_path_773_floats[]={$/;" v file: +objl_path_774_cmds demos/subwaymap.c /^static const unsigned char objl_path_774_cmds[]={$/;" v file: +objl_path_774_floats demos/subwaymap.c /^static const float objl_path_774_floats[]={$/;" v file: +objl_path_775_cmds demos/subwaymap.c /^static const unsigned char objl_path_775_cmds[]={$/;" v file: +objl_path_775_floats demos/subwaymap.c /^static const float objl_path_775_floats[]={$/;" v file: +objl_path_776_cmds demos/subwaymap.c /^static const unsigned char objl_path_776_cmds[]={$/;" v file: +objl_path_776_floats demos/subwaymap.c /^static const float objl_path_776_floats[]={$/;" v file: +objl_path_777_cmds demos/subwaymap.c /^static const unsigned char objl_path_777_cmds[]={$/;" v file: +objl_path_777_floats demos/subwaymap.c /^static const float objl_path_777_floats[]={$/;" v file: +objl_path_778_cmds demos/subwaymap.c /^static const unsigned char objl_path_778_cmds[]={$/;" v file: +objl_path_778_floats demos/subwaymap.c /^static const float objl_path_778_floats[]={$/;" v file: +objl_path_779_cmds demos/subwaymap.c /^static const unsigned char objl_path_779_cmds[]={$/;" v file: +objl_path_779_floats demos/subwaymap.c /^static const float objl_path_779_floats[]={$/;" v file: +objl_path_77_cmds demos/subwaymap.c /^static const unsigned char objl_path_77_cmds[]={$/;" v file: +objl_path_77_floats demos/subwaymap.c /^static const float objl_path_77_floats[]={$/;" v file: +objl_path_780_cmds demos/subwaymap.c /^static const unsigned char objl_path_780_cmds[]={$/;" v file: +objl_path_780_floats demos/subwaymap.c /^static const float objl_path_780_floats[]={$/;" v file: +objl_path_781_cmds demos/subwaymap.c /^static const unsigned char objl_path_781_cmds[]={$/;" v file: +objl_path_781_floats demos/subwaymap.c /^static const float objl_path_781_floats[]={$/;" v file: +objl_path_782_cmds demos/subwaymap.c /^static const unsigned char objl_path_782_cmds[]={$/;" v file: +objl_path_782_floats demos/subwaymap.c /^static const float objl_path_782_floats[]={$/;" v file: +objl_path_783_cmds demos/subwaymap.c /^static const unsigned char objl_path_783_cmds[]={$/;" v file: +objl_path_783_floats demos/subwaymap.c /^static const float objl_path_783_floats[]={$/;" v file: +objl_path_784_cmds demos/subwaymap.c /^static const unsigned char objl_path_784_cmds[]={$/;" v file: +objl_path_784_floats demos/subwaymap.c /^static const float objl_path_784_floats[]={$/;" v file: +objl_path_785_cmds demos/subwaymap.c /^static const unsigned char objl_path_785_cmds[]={$/;" v file: +objl_path_785_floats demos/subwaymap.c /^static const float objl_path_785_floats[]={$/;" v file: +objl_path_786_cmds demos/subwaymap.c /^static const unsigned char objl_path_786_cmds[]={$/;" v file: +objl_path_786_floats demos/subwaymap.c /^static const float objl_path_786_floats[]={$/;" v file: +objl_path_787_cmds demos/subwaymap.c /^static const unsigned char objl_path_787_cmds[]={$/;" v file: +objl_path_787_floats demos/subwaymap.c /^static const float objl_path_787_floats[]={$/;" v file: +objl_path_788_cmds demos/subwaymap.c /^static const unsigned char objl_path_788_cmds[]={$/;" v file: +objl_path_788_floats demos/subwaymap.c /^static const float objl_path_788_floats[]={$/;" v file: +objl_path_789_cmds demos/subwaymap.c /^static const unsigned char objl_path_789_cmds[]={$/;" v file: +objl_path_789_floats demos/subwaymap.c /^static const float objl_path_789_floats[]={$/;" v file: +objl_path_78_cmds demos/subwaymap.c /^static const unsigned char objl_path_78_cmds[]={$/;" v file: +objl_path_78_floats demos/subwaymap.c /^static const float objl_path_78_floats[]={$/;" v file: +objl_path_790_cmds demos/subwaymap.c /^static const unsigned char objl_path_790_cmds[]={$/;" v file: +objl_path_790_floats demos/subwaymap.c /^static const float objl_path_790_floats[]={$/;" v file: +objl_path_791_cmds demos/subwaymap.c /^static const unsigned char objl_path_791_cmds[]={$/;" v file: +objl_path_791_floats demos/subwaymap.c /^static const float objl_path_791_floats[]={$/;" v file: +objl_path_792_cmds demos/subwaymap.c /^static const unsigned char objl_path_792_cmds[]={$/;" v file: +objl_path_792_floats demos/subwaymap.c /^static const float objl_path_792_floats[]={$/;" v file: +objl_path_793_cmds demos/subwaymap.c /^static const unsigned char objl_path_793_cmds[]={$/;" v file: +objl_path_793_floats demos/subwaymap.c /^static const float objl_path_793_floats[]={$/;" v file: +objl_path_794_cmds demos/subwaymap.c /^static const unsigned char objl_path_794_cmds[]={$/;" v file: +objl_path_794_floats demos/subwaymap.c /^static const float objl_path_794_floats[]={$/;" v file: +objl_path_795_cmds demos/subwaymap.c /^static const unsigned char objl_path_795_cmds[]={$/;" v file: +objl_path_795_floats demos/subwaymap.c /^static const float objl_path_795_floats[]={$/;" v file: +objl_path_796_cmds demos/subwaymap.c /^static const unsigned char objl_path_796_cmds[]={$/;" v file: +objl_path_796_floats demos/subwaymap.c /^static const float objl_path_796_floats[]={$/;" v file: +objl_path_797_cmds demos/subwaymap.c /^static const unsigned char objl_path_797_cmds[]={$/;" v file: +objl_path_797_floats demos/subwaymap.c /^static const float objl_path_797_floats[]={$/;" v file: +objl_path_798_cmds demos/subwaymap.c /^static const unsigned char objl_path_798_cmds[]={$/;" v file: +objl_path_798_floats demos/subwaymap.c /^static const float objl_path_798_floats[]={$/;" v file: +objl_path_799_cmds demos/subwaymap.c /^static const unsigned char objl_path_799_cmds[]={$/;" v file: +objl_path_799_floats demos/subwaymap.c /^static const float objl_path_799_floats[]={$/;" v file: +objl_path_79_cmds demos/subwaymap.c /^static const unsigned char objl_path_79_cmds[]={$/;" v file: +objl_path_79_floats demos/subwaymap.c /^static const float objl_path_79_floats[]={$/;" v file: +objl_path_7_cmds demos/subwaymap.c /^static const unsigned char objl_path_7_cmds[]={$/;" v file: +objl_path_7_floats demos/subwaymap.c /^static const float objl_path_7_floats[]={$/;" v file: +objl_path_800_cmds demos/subwaymap.c /^static const unsigned char objl_path_800_cmds[]={$/;" v file: +objl_path_800_floats demos/subwaymap.c /^static const float objl_path_800_floats[]={$/;" v file: +objl_path_801_cmds demos/subwaymap.c /^static const unsigned char objl_path_801_cmds[]={$/;" v file: +objl_path_801_floats demos/subwaymap.c /^static const float objl_path_801_floats[]={$/;" v file: +objl_path_802_cmds demos/subwaymap.c /^static const unsigned char objl_path_802_cmds[]={$/;" v file: +objl_path_802_floats demos/subwaymap.c /^static const float objl_path_802_floats[]={$/;" v file: +objl_path_803_cmds demos/subwaymap.c /^static const unsigned char objl_path_803_cmds[]={$/;" v file: +objl_path_803_floats demos/subwaymap.c /^static const float objl_path_803_floats[]={$/;" v file: +objl_path_804_cmds demos/subwaymap.c /^static const unsigned char objl_path_804_cmds[]={$/;" v file: +objl_path_804_floats demos/subwaymap.c /^static const float objl_path_804_floats[]={$/;" v file: +objl_path_805_cmds demos/subwaymap.c /^static const unsigned char objl_path_805_cmds[]={$/;" v file: +objl_path_805_floats demos/subwaymap.c /^static const float objl_path_805_floats[]={$/;" v file: +objl_path_806_cmds demos/subwaymap.c /^static const unsigned char objl_path_806_cmds[]={$/;" v file: +objl_path_806_floats demos/subwaymap.c /^static const float objl_path_806_floats[]={$/;" v file: +objl_path_807_cmds demos/subwaymap.c /^static const unsigned char objl_path_807_cmds[]={$/;" v file: +objl_path_807_floats demos/subwaymap.c /^static const float objl_path_807_floats[]={$/;" v file: +objl_path_808_cmds demos/subwaymap.c /^static const unsigned char objl_path_808_cmds[]={$/;" v file: +objl_path_808_floats demos/subwaymap.c /^static const float objl_path_808_floats[]={$/;" v file: +objl_path_809_cmds demos/subwaymap.c /^static const unsigned char objl_path_809_cmds[]={$/;" v file: +objl_path_809_floats demos/subwaymap.c /^static const float objl_path_809_floats[]={$/;" v file: +objl_path_80_cmds demos/subwaymap.c /^static const unsigned char objl_path_80_cmds[]={$/;" v file: +objl_path_80_floats demos/subwaymap.c /^static const float objl_path_80_floats[]={$/;" v file: +objl_path_810_cmds demos/subwaymap.c /^static const unsigned char objl_path_810_cmds[]={$/;" v file: +objl_path_810_floats demos/subwaymap.c /^static const float objl_path_810_floats[]={$/;" v file: +objl_path_811_cmds demos/subwaymap.c /^static const unsigned char objl_path_811_cmds[]={$/;" v file: +objl_path_811_floats demos/subwaymap.c /^static const float objl_path_811_floats[]={$/;" v file: +objl_path_812_cmds demos/subwaymap.c /^static const unsigned char objl_path_812_cmds[]={$/;" v file: +objl_path_812_floats demos/subwaymap.c /^static const float objl_path_812_floats[]={$/;" v file: +objl_path_813_cmds demos/subwaymap.c /^static const unsigned char objl_path_813_cmds[]={$/;" v file: +objl_path_813_floats demos/subwaymap.c /^static const float objl_path_813_floats[]={$/;" v file: +objl_path_814_cmds demos/subwaymap.c /^static const unsigned char objl_path_814_cmds[]={$/;" v file: +objl_path_814_floats demos/subwaymap.c /^static const float objl_path_814_floats[]={$/;" v file: +objl_path_815_cmds demos/subwaymap.c /^static const unsigned char objl_path_815_cmds[]={$/;" v file: +objl_path_815_floats demos/subwaymap.c /^static const float objl_path_815_floats[]={$/;" v file: +objl_path_816_cmds demos/subwaymap.c /^static const unsigned char objl_path_816_cmds[]={$/;" v file: +objl_path_816_floats demos/subwaymap.c /^static const float objl_path_816_floats[]={$/;" v file: +objl_path_817_cmds demos/subwaymap.c /^static const unsigned char objl_path_817_cmds[]={$/;" v file: +objl_path_817_floats demos/subwaymap.c /^static const float objl_path_817_floats[]={$/;" v file: +objl_path_818_cmds demos/subwaymap.c /^static const unsigned char objl_path_818_cmds[]={$/;" v file: +objl_path_818_floats demos/subwaymap.c /^static const float objl_path_818_floats[]={$/;" v file: +objl_path_819_cmds demos/subwaymap.c /^static const unsigned char objl_path_819_cmds[]={$/;" v file: +objl_path_819_floats demos/subwaymap.c /^static const float objl_path_819_floats[]={$/;" v file: +objl_path_81_cmds demos/subwaymap.c /^static const unsigned char objl_path_81_cmds[]={$/;" v file: +objl_path_81_floats demos/subwaymap.c /^static const float objl_path_81_floats[]={$/;" v file: +objl_path_820_cmds demos/subwaymap.c /^static const unsigned char objl_path_820_cmds[]={$/;" v file: +objl_path_820_floats demos/subwaymap.c /^static const float objl_path_820_floats[]={$/;" v file: +objl_path_821_cmds demos/subwaymap.c /^static const unsigned char objl_path_821_cmds[]={$/;" v file: +objl_path_821_floats demos/subwaymap.c /^static const float objl_path_821_floats[]={$/;" v file: +objl_path_822_cmds demos/subwaymap.c /^static const unsigned char objl_path_822_cmds[]={$/;" v file: +objl_path_822_floats demos/subwaymap.c /^static const float objl_path_822_floats[]={$/;" v file: +objl_path_823_cmds demos/subwaymap.c /^static const unsigned char objl_path_823_cmds[]={$/;" v file: +objl_path_823_floats demos/subwaymap.c /^static const float objl_path_823_floats[]={$/;" v file: +objl_path_824_cmds demos/subwaymap.c /^static const unsigned char objl_path_824_cmds[]={$/;" v file: +objl_path_824_floats demos/subwaymap.c /^static const float objl_path_824_floats[]={$/;" v file: +objl_path_825_cmds demos/subwaymap.c /^static const unsigned char objl_path_825_cmds[]={$/;" v file: +objl_path_825_floats demos/subwaymap.c /^static const float objl_path_825_floats[]={$/;" v file: +objl_path_826_cmds demos/subwaymap.c /^static const unsigned char objl_path_826_cmds[]={$/;" v file: +objl_path_826_floats demos/subwaymap.c /^static const float objl_path_826_floats[]={$/;" v file: +objl_path_827_cmds demos/subwaymap.c /^static const unsigned char objl_path_827_cmds[]={$/;" v file: +objl_path_827_floats demos/subwaymap.c /^static const float objl_path_827_floats[]={$/;" v file: +objl_path_828_cmds demos/subwaymap.c /^static const unsigned char objl_path_828_cmds[]={$/;" v file: +objl_path_828_floats demos/subwaymap.c /^static const float objl_path_828_floats[]={$/;" v file: +objl_path_829_cmds demos/subwaymap.c /^static const unsigned char objl_path_829_cmds[]={$/;" v file: +objl_path_829_floats demos/subwaymap.c /^static const float objl_path_829_floats[]={$/;" v file: +objl_path_82_cmds demos/subwaymap.c /^static const unsigned char objl_path_82_cmds[]={$/;" v file: +objl_path_82_floats demos/subwaymap.c /^static const float objl_path_82_floats[]={$/;" v file: +objl_path_830_cmds demos/subwaymap.c /^static const unsigned char objl_path_830_cmds[]={$/;" v file: +objl_path_830_floats demos/subwaymap.c /^static const float objl_path_830_floats[]={$/;" v file: +objl_path_831_cmds demos/subwaymap.c /^static const unsigned char objl_path_831_cmds[]={$/;" v file: +objl_path_831_floats demos/subwaymap.c /^static const float objl_path_831_floats[]={$/;" v file: +objl_path_832_cmds demos/subwaymap.c /^static const unsigned char objl_path_832_cmds[]={$/;" v file: +objl_path_832_floats demos/subwaymap.c /^static const float objl_path_832_floats[]={$/;" v file: +objl_path_833_cmds demos/subwaymap.c /^static const unsigned char objl_path_833_cmds[]={$/;" v file: +objl_path_833_floats demos/subwaymap.c /^static const float objl_path_833_floats[]={$/;" v file: +objl_path_834_cmds demos/subwaymap.c /^static const unsigned char objl_path_834_cmds[]={$/;" v file: +objl_path_834_floats demos/subwaymap.c /^static const float objl_path_834_floats[]={$/;" v file: +objl_path_835_cmds demos/subwaymap.c /^static const unsigned char objl_path_835_cmds[]={$/;" v file: +objl_path_835_floats demos/subwaymap.c /^static const float objl_path_835_floats[]={$/;" v file: +objl_path_836_cmds demos/subwaymap.c /^static const unsigned char objl_path_836_cmds[]={$/;" v file: +objl_path_836_floats demos/subwaymap.c /^static const float objl_path_836_floats[]={$/;" v file: +objl_path_837_cmds demos/subwaymap.c /^static const unsigned char objl_path_837_cmds[]={$/;" v file: +objl_path_837_floats demos/subwaymap.c /^static const float objl_path_837_floats[]={$/;" v file: +objl_path_838_cmds demos/subwaymap.c /^static const unsigned char objl_path_838_cmds[]={$/;" v file: +objl_path_838_floats demos/subwaymap.c /^static const float objl_path_838_floats[]={$/;" v file: +objl_path_839_cmds demos/subwaymap.c /^static const unsigned char objl_path_839_cmds[]={$/;" v file: +objl_path_839_floats demos/subwaymap.c /^static const float objl_path_839_floats[]={$/;" v file: +objl_path_83_cmds demos/subwaymap.c /^static const unsigned char objl_path_83_cmds[]={$/;" v file: +objl_path_83_floats demos/subwaymap.c /^static const float objl_path_83_floats[]={$/;" v file: +objl_path_840_cmds demos/subwaymap.c /^static const unsigned char objl_path_840_cmds[]={$/;" v file: +objl_path_840_floats demos/subwaymap.c /^static const float objl_path_840_floats[]={$/;" v file: +objl_path_841_cmds demos/subwaymap.c /^static const unsigned char objl_path_841_cmds[]={$/;" v file: +objl_path_841_floats demos/subwaymap.c /^static const float objl_path_841_floats[]={$/;" v file: +objl_path_842_cmds demos/subwaymap.c /^static const unsigned char objl_path_842_cmds[]={$/;" v file: +objl_path_842_floats demos/subwaymap.c /^static const float objl_path_842_floats[]={$/;" v file: +objl_path_843_cmds demos/subwaymap.c /^static const unsigned char objl_path_843_cmds[]={$/;" v file: +objl_path_843_floats demos/subwaymap.c /^static const float objl_path_843_floats[]={$/;" v file: +objl_path_844_cmds demos/subwaymap.c /^static const unsigned char objl_path_844_cmds[]={$/;" v file: +objl_path_844_floats demos/subwaymap.c /^static const float objl_path_844_floats[]={$/;" v file: +objl_path_845_cmds demos/subwaymap.c /^static const unsigned char objl_path_845_cmds[]={$/;" v file: +objl_path_845_floats demos/subwaymap.c /^static const float objl_path_845_floats[]={$/;" v file: +objl_path_846_cmds demos/subwaymap.c /^static const unsigned char objl_path_846_cmds[]={$/;" v file: +objl_path_846_floats demos/subwaymap.c /^static const float objl_path_846_floats[]={$/;" v file: +objl_path_847_cmds demos/subwaymap.c /^static const unsigned char objl_path_847_cmds[]={$/;" v file: +objl_path_847_floats demos/subwaymap.c /^static const float objl_path_847_floats[]={$/;" v file: +objl_path_848_cmds demos/subwaymap.c /^static const unsigned char objl_path_848_cmds[]={$/;" v file: +objl_path_848_floats demos/subwaymap.c /^static const float objl_path_848_floats[]={$/;" v file: +objl_path_849_cmds demos/subwaymap.c /^static const unsigned char objl_path_849_cmds[]={$/;" v file: +objl_path_849_floats demos/subwaymap.c /^static const float objl_path_849_floats[]={$/;" v file: +objl_path_84_cmds demos/subwaymap.c /^static const unsigned char objl_path_84_cmds[]={$/;" v file: +objl_path_84_floats demos/subwaymap.c /^static const float objl_path_84_floats[]={$/;" v file: +objl_path_850_cmds demos/subwaymap.c /^static const unsigned char objl_path_850_cmds[]={$/;" v file: +objl_path_850_floats demos/subwaymap.c /^static const float objl_path_850_floats[]={$/;" v file: +objl_path_851_cmds demos/subwaymap.c /^static const unsigned char objl_path_851_cmds[]={$/;" v file: +objl_path_851_floats demos/subwaymap.c /^static const float objl_path_851_floats[]={$/;" v file: +objl_path_852_cmds demos/subwaymap.c /^static const unsigned char objl_path_852_cmds[]={$/;" v file: +objl_path_852_floats demos/subwaymap.c /^static const float objl_path_852_floats[]={$/;" v file: +objl_path_853_cmds demos/subwaymap.c /^static const unsigned char objl_path_853_cmds[]={$/;" v file: +objl_path_853_floats demos/subwaymap.c /^static const float objl_path_853_floats[]={$/;" v file: +objl_path_854_cmds demos/subwaymap.c /^static const unsigned char objl_path_854_cmds[]={$/;" v file: +objl_path_854_floats demos/subwaymap.c /^static const float objl_path_854_floats[]={$/;" v file: +objl_path_855_cmds demos/subwaymap.c /^static const unsigned char objl_path_855_cmds[]={$/;" v file: +objl_path_855_floats demos/subwaymap.c /^static const float objl_path_855_floats[]={$/;" v file: +objl_path_856_cmds demos/subwaymap.c /^static const unsigned char objl_path_856_cmds[]={$/;" v file: +objl_path_856_floats demos/subwaymap.c /^static const float objl_path_856_floats[]={$/;" v file: +objl_path_857_cmds demos/subwaymap.c /^static const unsigned char objl_path_857_cmds[]={$/;" v file: +objl_path_857_floats demos/subwaymap.c /^static const float objl_path_857_floats[]={$/;" v file: +objl_path_858_cmds demos/subwaymap.c /^static const unsigned char objl_path_858_cmds[]={$/;" v file: +objl_path_858_floats demos/subwaymap.c /^static const float objl_path_858_floats[]={$/;" v file: +objl_path_859_cmds demos/subwaymap.c /^static const unsigned char objl_path_859_cmds[]={$/;" v file: +objl_path_859_floats demos/subwaymap.c /^static const float objl_path_859_floats[]={$/;" v file: +objl_path_85_cmds demos/subwaymap.c /^static const unsigned char objl_path_85_cmds[]={$/;" v file: +objl_path_85_floats demos/subwaymap.c /^static const float objl_path_85_floats[]={$/;" v file: +objl_path_860_cmds demos/subwaymap.c /^static const unsigned char objl_path_860_cmds[]={$/;" v file: +objl_path_860_floats demos/subwaymap.c /^static const float objl_path_860_floats[]={$/;" v file: +objl_path_861_cmds demos/subwaymap.c /^static const unsigned char objl_path_861_cmds[]={$/;" v file: +objl_path_861_floats demos/subwaymap.c /^static const float objl_path_861_floats[]={$/;" v file: +objl_path_862_cmds demos/subwaymap.c /^static const unsigned char objl_path_862_cmds[]={$/;" v file: +objl_path_862_floats demos/subwaymap.c /^static const float objl_path_862_floats[]={$/;" v file: +objl_path_863_cmds demos/subwaymap.c /^static const unsigned char objl_path_863_cmds[]={$/;" v file: +objl_path_863_floats demos/subwaymap.c /^static const float objl_path_863_floats[]={$/;" v file: +objl_path_864_cmds demos/subwaymap.c /^static const unsigned char objl_path_864_cmds[]={$/;" v file: +objl_path_864_floats demos/subwaymap.c /^static const float objl_path_864_floats[]={$/;" v file: +objl_path_865_cmds demos/subwaymap.c /^static const unsigned char objl_path_865_cmds[]={$/;" v file: +objl_path_865_floats demos/subwaymap.c /^static const float objl_path_865_floats[]={$/;" v file: +objl_path_866_cmds demos/subwaymap.c /^static const unsigned char objl_path_866_cmds[]={$/;" v file: +objl_path_866_floats demos/subwaymap.c /^static const float objl_path_866_floats[]={$/;" v file: +objl_path_867_cmds demos/subwaymap.c /^static const unsigned char objl_path_867_cmds[]={$/;" v file: +objl_path_867_floats demos/subwaymap.c /^static const float objl_path_867_floats[]={$/;" v file: +objl_path_868_cmds demos/subwaymap.c /^static const unsigned char objl_path_868_cmds[]={$/;" v file: +objl_path_868_floats demos/subwaymap.c /^static const float objl_path_868_floats[]={$/;" v file: +objl_path_869_cmds demos/subwaymap.c /^static const unsigned char objl_path_869_cmds[]={$/;" v file: +objl_path_869_floats demos/subwaymap.c /^static const float objl_path_869_floats[]={$/;" v file: +objl_path_86_cmds demos/subwaymap.c /^static const unsigned char objl_path_86_cmds[]={$/;" v file: +objl_path_86_floats demos/subwaymap.c /^static const float objl_path_86_floats[]={$/;" v file: +objl_path_870_cmds demos/subwaymap.c /^static const unsigned char objl_path_870_cmds[]={$/;" v file: +objl_path_870_floats demos/subwaymap.c /^static const float objl_path_870_floats[]={$/;" v file: +objl_path_871_cmds demos/subwaymap.c /^static const unsigned char objl_path_871_cmds[]={$/;" v file: +objl_path_871_floats demos/subwaymap.c /^static const float objl_path_871_floats[]={$/;" v file: +objl_path_872_cmds demos/subwaymap.c /^static const unsigned char objl_path_872_cmds[]={$/;" v file: +objl_path_872_floats demos/subwaymap.c /^static const float objl_path_872_floats[]={$/;" v file: +objl_path_873_cmds demos/subwaymap.c /^static const unsigned char objl_path_873_cmds[]={$/;" v file: +objl_path_873_floats demos/subwaymap.c /^static const float objl_path_873_floats[]={$/;" v file: +objl_path_874_cmds demos/subwaymap.c /^static const unsigned char objl_path_874_cmds[]={$/;" v file: +objl_path_874_floats demos/subwaymap.c /^static const float objl_path_874_floats[]={$/;" v file: +objl_path_875_cmds demos/subwaymap.c /^static const unsigned char objl_path_875_cmds[]={$/;" v file: +objl_path_875_floats demos/subwaymap.c /^static const float objl_path_875_floats[]={$/;" v file: +objl_path_876_cmds demos/subwaymap.c /^static const unsigned char objl_path_876_cmds[]={$/;" v file: +objl_path_876_floats demos/subwaymap.c /^static const float objl_path_876_floats[]={$/;" v file: +objl_path_877_cmds demos/subwaymap.c /^static const unsigned char objl_path_877_cmds[]={$/;" v file: +objl_path_877_floats demos/subwaymap.c /^static const float objl_path_877_floats[]={$/;" v file: +objl_path_878_cmds demos/subwaymap.c /^static const unsigned char objl_path_878_cmds[]={$/;" v file: +objl_path_878_floats demos/subwaymap.c /^static const float objl_path_878_floats[]={$/;" v file: +objl_path_879_cmds demos/subwaymap.c /^static const unsigned char objl_path_879_cmds[]={$/;" v file: +objl_path_879_floats demos/subwaymap.c /^static const float objl_path_879_floats[]={$/;" v file: +objl_path_87_cmds demos/subwaymap.c /^static const unsigned char objl_path_87_cmds[]={$/;" v file: +objl_path_87_floats demos/subwaymap.c /^static const float objl_path_87_floats[]={$/;" v file: +objl_path_880_cmds demos/subwaymap.c /^static const unsigned char objl_path_880_cmds[]={$/;" v file: +objl_path_880_floats demos/subwaymap.c /^static const float objl_path_880_floats[]={$/;" v file: +objl_path_881_cmds demos/subwaymap.c /^static const unsigned char objl_path_881_cmds[]={$/;" v file: +objl_path_881_floats demos/subwaymap.c /^static const float objl_path_881_floats[]={$/;" v file: +objl_path_882_cmds demos/subwaymap.c /^static const unsigned char objl_path_882_cmds[]={$/;" v file: +objl_path_882_floats demos/subwaymap.c /^static const float objl_path_882_floats[]={$/;" v file: +objl_path_883_cmds demos/subwaymap.c /^static const unsigned char objl_path_883_cmds[]={$/;" v file: +objl_path_883_floats demos/subwaymap.c /^static const float objl_path_883_floats[]={$/;" v file: +objl_path_884_cmds demos/subwaymap.c /^static const unsigned char objl_path_884_cmds[]={$/;" v file: +objl_path_884_floats demos/subwaymap.c /^static const float objl_path_884_floats[]={$/;" v file: +objl_path_885_cmds demos/subwaymap.c /^static const unsigned char objl_path_885_cmds[]={$/;" v file: +objl_path_885_floats demos/subwaymap.c /^static const float objl_path_885_floats[]={$/;" v file: +objl_path_886_cmds demos/subwaymap.c /^static const unsigned char objl_path_886_cmds[]={$/;" v file: +objl_path_886_floats demos/subwaymap.c /^static const float objl_path_886_floats[]={$/;" v file: +objl_path_887_cmds demos/subwaymap.c /^static const unsigned char objl_path_887_cmds[]={$/;" v file: +objl_path_887_floats demos/subwaymap.c /^static const float objl_path_887_floats[]={$/;" v file: +objl_path_888_cmds demos/subwaymap.c /^static const unsigned char objl_path_888_cmds[]={$/;" v file: +objl_path_888_floats demos/subwaymap.c /^static const float objl_path_888_floats[]={$/;" v file: +objl_path_889_cmds demos/subwaymap.c /^static const unsigned char objl_path_889_cmds[]={$/;" v file: +objl_path_889_floats demos/subwaymap.c /^static const float objl_path_889_floats[]={$/;" v file: +objl_path_88_cmds demos/subwaymap.c /^static const unsigned char objl_path_88_cmds[]={$/;" v file: +objl_path_88_floats demos/subwaymap.c /^static const float objl_path_88_floats[]={$/;" v file: +objl_path_890_cmds demos/subwaymap.c /^static const unsigned char objl_path_890_cmds[]={$/;" v file: +objl_path_890_floats demos/subwaymap.c /^static const float objl_path_890_floats[]={$/;" v file: +objl_path_891_cmds demos/subwaymap.c /^static const unsigned char objl_path_891_cmds[]={$/;" v file: +objl_path_891_floats demos/subwaymap.c /^static const float objl_path_891_floats[]={$/;" v file: +objl_path_892_cmds demos/subwaymap.c /^static const unsigned char objl_path_892_cmds[]={$/;" v file: +objl_path_892_floats demos/subwaymap.c /^static const float objl_path_892_floats[]={$/;" v file: +objl_path_893_cmds demos/subwaymap.c /^static const unsigned char objl_path_893_cmds[]={$/;" v file: +objl_path_893_floats demos/subwaymap.c /^static const float objl_path_893_floats[]={$/;" v file: +objl_path_894_cmds demos/subwaymap.c /^static const unsigned char objl_path_894_cmds[]={$/;" v file: +objl_path_894_floats demos/subwaymap.c /^static const float objl_path_894_floats[]={$/;" v file: +objl_path_895_cmds demos/subwaymap.c /^static const unsigned char objl_path_895_cmds[]={$/;" v file: +objl_path_895_floats demos/subwaymap.c /^static const float objl_path_895_floats[]={$/;" v file: +objl_path_896_cmds demos/subwaymap.c /^static const unsigned char objl_path_896_cmds[]={$/;" v file: +objl_path_896_floats demos/subwaymap.c /^static const float objl_path_896_floats[]={$/;" v file: +objl_path_897_cmds demos/subwaymap.c /^static const unsigned char objl_path_897_cmds[]={$/;" v file: +objl_path_897_floats demos/subwaymap.c /^static const float objl_path_897_floats[]={$/;" v file: +objl_path_898_cmds demos/subwaymap.c /^static const unsigned char objl_path_898_cmds[]={$/;" v file: +objl_path_898_floats demos/subwaymap.c /^static const float objl_path_898_floats[]={$/;" v file: +objl_path_899_cmds demos/subwaymap.c /^static const unsigned char objl_path_899_cmds[]={$/;" v file: +objl_path_899_floats demos/subwaymap.c /^static const float objl_path_899_floats[]={$/;" v file: +objl_path_89_cmds demos/subwaymap.c /^static const unsigned char objl_path_89_cmds[]={$/;" v file: +objl_path_89_floats demos/subwaymap.c /^static const float objl_path_89_floats[]={$/;" v file: +objl_path_8_cmds demos/subwaymap.c /^static const unsigned char objl_path_8_cmds[]={$/;" v file: +objl_path_8_floats demos/subwaymap.c /^static const float objl_path_8_floats[]={$/;" v file: +objl_path_900_cmds demos/subwaymap.c /^static const unsigned char objl_path_900_cmds[]={$/;" v file: +objl_path_900_floats demos/subwaymap.c /^static const float objl_path_900_floats[]={$/;" v file: +objl_path_901_cmds demos/subwaymap.c /^static const unsigned char objl_path_901_cmds[]={$/;" v file: +objl_path_901_floats demos/subwaymap.c /^static const float objl_path_901_floats[]={$/;" v file: +objl_path_902_cmds demos/subwaymap.c /^static const unsigned char objl_path_902_cmds[]={$/;" v file: +objl_path_902_floats demos/subwaymap.c /^static const float objl_path_902_floats[]={$/;" v file: +objl_path_903_cmds demos/subwaymap.c /^static const unsigned char objl_path_903_cmds[]={$/;" v file: +objl_path_903_floats demos/subwaymap.c /^static const float objl_path_903_floats[]={$/;" v file: +objl_path_904_cmds demos/subwaymap.c /^static const unsigned char objl_path_904_cmds[]={$/;" v file: +objl_path_904_floats demos/subwaymap.c /^static const float objl_path_904_floats[]={$/;" v file: +objl_path_905_cmds demos/subwaymap.c /^static const unsigned char objl_path_905_cmds[]={$/;" v file: +objl_path_905_floats demos/subwaymap.c /^static const float objl_path_905_floats[]={$/;" v file: +objl_path_906_cmds demos/subwaymap.c /^static const unsigned char objl_path_906_cmds[]={$/;" v file: +objl_path_906_floats demos/subwaymap.c /^static const float objl_path_906_floats[]={$/;" v file: +objl_path_907_cmds demos/subwaymap.c /^static const unsigned char objl_path_907_cmds[]={$/;" v file: +objl_path_907_floats demos/subwaymap.c /^static const float objl_path_907_floats[]={$/;" v file: +objl_path_908_cmds demos/subwaymap.c /^static const unsigned char objl_path_908_cmds[]={$/;" v file: +objl_path_908_floats demos/subwaymap.c /^static const float objl_path_908_floats[]={$/;" v file: +objl_path_909_cmds demos/subwaymap.c /^static const unsigned char objl_path_909_cmds[]={$/;" v file: +objl_path_909_floats demos/subwaymap.c /^static const float objl_path_909_floats[]={$/;" v file: +objl_path_90_cmds demos/subwaymap.c /^static const unsigned char objl_path_90_cmds[]={$/;" v file: +objl_path_90_floats demos/subwaymap.c /^static const float objl_path_90_floats[]={$/;" v file: +objl_path_910_cmds demos/subwaymap.c /^static const unsigned char objl_path_910_cmds[]={$/;" v file: +objl_path_910_floats demos/subwaymap.c /^static const float objl_path_910_floats[]={$/;" v file: +objl_path_911_cmds demos/subwaymap.c /^static const unsigned char objl_path_911_cmds[]={$/;" v file: +objl_path_911_floats demos/subwaymap.c /^static const float objl_path_911_floats[]={$/;" v file: +objl_path_912_cmds demos/subwaymap.c /^static const unsigned char objl_path_912_cmds[]={$/;" v file: +objl_path_912_floats demos/subwaymap.c /^static const float objl_path_912_floats[]={$/;" v file: +objl_path_913_cmds demos/subwaymap.c /^static const unsigned char objl_path_913_cmds[]={$/;" v file: +objl_path_913_floats demos/subwaymap.c /^static const float objl_path_913_floats[]={$/;" v file: +objl_path_914_cmds demos/subwaymap.c /^static const unsigned char objl_path_914_cmds[]={$/;" v file: +objl_path_914_floats demos/subwaymap.c /^static const float objl_path_914_floats[]={$/;" v file: +objl_path_915_cmds demos/subwaymap.c /^static const unsigned char objl_path_915_cmds[]={$/;" v file: +objl_path_915_floats demos/subwaymap.c /^static const float objl_path_915_floats[]={$/;" v file: +objl_path_916_cmds demos/subwaymap.c /^static const unsigned char objl_path_916_cmds[]={$/;" v file: +objl_path_916_floats demos/subwaymap.c /^static const float objl_path_916_floats[]={$/;" v file: +objl_path_917_cmds demos/subwaymap.c /^static const unsigned char objl_path_917_cmds[]={$/;" v file: +objl_path_917_floats demos/subwaymap.c /^static const float objl_path_917_floats[]={$/;" v file: +objl_path_918_cmds demos/subwaymap.c /^static const unsigned char objl_path_918_cmds[]={$/;" v file: +objl_path_918_floats demos/subwaymap.c /^static const float objl_path_918_floats[]={$/;" v file: +objl_path_919_cmds demos/subwaymap.c /^static const unsigned char objl_path_919_cmds[]={$/;" v file: +objl_path_919_floats demos/subwaymap.c /^static const float objl_path_919_floats[]={$/;" v file: +objl_path_91_cmds demos/subwaymap.c /^static const unsigned char objl_path_91_cmds[]={$/;" v file: +objl_path_91_floats demos/subwaymap.c /^static const float objl_path_91_floats[]={$/;" v file: +objl_path_920_cmds demos/subwaymap.c /^static const unsigned char objl_path_920_cmds[]={$/;" v file: +objl_path_920_floats demos/subwaymap.c /^static const float objl_path_920_floats[]={$/;" v file: +objl_path_921_cmds demos/subwaymap.c /^static const unsigned char objl_path_921_cmds[]={$/;" v file: +objl_path_921_floats demos/subwaymap.c /^static const float objl_path_921_floats[]={$/;" v file: +objl_path_922_cmds demos/subwaymap.c /^static const unsigned char objl_path_922_cmds[]={$/;" v file: +objl_path_922_floats demos/subwaymap.c /^static const float objl_path_922_floats[]={$/;" v file: +objl_path_923_cmds demos/subwaymap.c /^static const unsigned char objl_path_923_cmds[]={$/;" v file: +objl_path_923_floats demos/subwaymap.c /^static const float objl_path_923_floats[]={$/;" v file: +objl_path_924_cmds demos/subwaymap.c /^static const unsigned char objl_path_924_cmds[]={$/;" v file: +objl_path_924_floats demos/subwaymap.c /^static const float objl_path_924_floats[]={$/;" v file: +objl_path_925_cmds demos/subwaymap.c /^static const unsigned char objl_path_925_cmds[]={$/;" v file: +objl_path_925_floats demos/subwaymap.c /^static const float objl_path_925_floats[]={$/;" v file: +objl_path_926_cmds demos/subwaymap.c /^static const unsigned char objl_path_926_cmds[]={$/;" v file: +objl_path_926_floats demos/subwaymap.c /^static const float objl_path_926_floats[]={$/;" v file: +objl_path_927_cmds demos/subwaymap.c /^static const unsigned char objl_path_927_cmds[]={$/;" v file: +objl_path_927_floats demos/subwaymap.c /^static const float objl_path_927_floats[]={$/;" v file: +objl_path_928_cmds demos/subwaymap.c /^static const unsigned char objl_path_928_cmds[]={$/;" v file: +objl_path_928_floats demos/subwaymap.c /^static const float objl_path_928_floats[]={$/;" v file: +objl_path_929_cmds demos/subwaymap.c /^static const unsigned char objl_path_929_cmds[]={$/;" v file: +objl_path_929_floats demos/subwaymap.c /^static const float objl_path_929_floats[]={$/;" v file: +objl_path_92_cmds demos/subwaymap.c /^static const unsigned char objl_path_92_cmds[]={$/;" v file: +objl_path_92_floats demos/subwaymap.c /^static const float objl_path_92_floats[]={$/;" v file: +objl_path_930_cmds demos/subwaymap.c /^static const unsigned char objl_path_930_cmds[]={$/;" v file: +objl_path_930_floats demos/subwaymap.c /^static const float objl_path_930_floats[]={$/;" v file: +objl_path_931_cmds demos/subwaymap.c /^static const unsigned char objl_path_931_cmds[]={$/;" v file: +objl_path_931_floats demos/subwaymap.c /^static const float objl_path_931_floats[]={$/;" v file: +objl_path_932_cmds demos/subwaymap.c /^static const unsigned char objl_path_932_cmds[]={$/;" v file: +objl_path_932_floats demos/subwaymap.c /^static const float objl_path_932_floats[]={$/;" v file: +objl_path_933_cmds demos/subwaymap.c /^static const unsigned char objl_path_933_cmds[]={$/;" v file: +objl_path_933_floats demos/subwaymap.c /^static const float objl_path_933_floats[]={$/;" v file: +objl_path_934_cmds demos/subwaymap.c /^static const unsigned char objl_path_934_cmds[]={$/;" v file: +objl_path_934_floats demos/subwaymap.c /^static const float objl_path_934_floats[]={$/;" v file: +objl_path_935_cmds demos/subwaymap.c /^static const unsigned char objl_path_935_cmds[]={$/;" v file: +objl_path_935_floats demos/subwaymap.c /^static const float objl_path_935_floats[]={$/;" v file: +objl_path_936_cmds demos/subwaymap.c /^static const unsigned char objl_path_936_cmds[]={$/;" v file: +objl_path_936_floats demos/subwaymap.c /^static const float objl_path_936_floats[]={$/;" v file: +objl_path_937_cmds demos/subwaymap.c /^static const unsigned char objl_path_937_cmds[]={$/;" v file: +objl_path_937_floats demos/subwaymap.c /^static const float objl_path_937_floats[]={$/;" v file: +objl_path_938_cmds demos/subwaymap.c /^static const unsigned char objl_path_938_cmds[]={$/;" v file: +objl_path_938_floats demos/subwaymap.c /^static const float objl_path_938_floats[]={$/;" v file: +objl_path_939_cmds demos/subwaymap.c /^static const unsigned char objl_path_939_cmds[]={$/;" v file: +objl_path_939_floats demos/subwaymap.c /^static const float objl_path_939_floats[]={$/;" v file: +objl_path_93_cmds demos/subwaymap.c /^static const unsigned char objl_path_93_cmds[]={$/;" v file: +objl_path_93_floats demos/subwaymap.c /^static const float objl_path_93_floats[]={$/;" v file: +objl_path_940_cmds demos/subwaymap.c /^static const unsigned char objl_path_940_cmds[]={$/;" v file: +objl_path_940_floats demos/subwaymap.c /^static const float objl_path_940_floats[]={$/;" v file: +objl_path_941_cmds demos/subwaymap.c /^static const unsigned char objl_path_941_cmds[]={$/;" v file: +objl_path_941_floats demos/subwaymap.c /^static const float objl_path_941_floats[]={$/;" v file: +objl_path_942_cmds demos/subwaymap.c /^static const unsigned char objl_path_942_cmds[]={$/;" v file: +objl_path_942_floats demos/subwaymap.c /^static const float objl_path_942_floats[]={$/;" v file: +objl_path_943_cmds demos/subwaymap.c /^static const unsigned char objl_path_943_cmds[]={$/;" v file: +objl_path_943_floats demos/subwaymap.c /^static const float objl_path_943_floats[]={$/;" v file: +objl_path_944_cmds demos/subwaymap.c /^static const unsigned char objl_path_944_cmds[]={$/;" v file: +objl_path_944_floats demos/subwaymap.c /^static const float objl_path_944_floats[]={$/;" v file: +objl_path_945_cmds demos/subwaymap.c /^static const unsigned char objl_path_945_cmds[]={$/;" v file: +objl_path_945_floats demos/subwaymap.c /^static const float objl_path_945_floats[]={$/;" v file: +objl_path_946_cmds demos/subwaymap.c /^static const unsigned char objl_path_946_cmds[]={$/;" v file: +objl_path_946_floats demos/subwaymap.c /^static const float objl_path_946_floats[]={$/;" v file: +objl_path_947_cmds demos/subwaymap.c /^static const unsigned char objl_path_947_cmds[]={$/;" v file: +objl_path_947_floats demos/subwaymap.c /^static const float objl_path_947_floats[]={$/;" v file: +objl_path_948_cmds demos/subwaymap.c /^static const unsigned char objl_path_948_cmds[]={$/;" v file: +objl_path_948_floats demos/subwaymap.c /^static const float objl_path_948_floats[]={$/;" v file: +objl_path_949_cmds demos/subwaymap.c /^static const unsigned char objl_path_949_cmds[]={$/;" v file: +objl_path_949_floats demos/subwaymap.c /^static const float objl_path_949_floats[]={$/;" v file: +objl_path_94_cmds demos/subwaymap.c /^static const unsigned char objl_path_94_cmds[]={$/;" v file: +objl_path_94_floats demos/subwaymap.c /^static const float objl_path_94_floats[]={$/;" v file: +objl_path_950_cmds demos/subwaymap.c /^static const unsigned char objl_path_950_cmds[]={$/;" v file: +objl_path_950_floats demos/subwaymap.c /^static const float objl_path_950_floats[]={$/;" v file: +objl_path_951_cmds demos/subwaymap.c /^static const unsigned char objl_path_951_cmds[]={$/;" v file: +objl_path_951_floats demos/subwaymap.c /^static const float objl_path_951_floats[]={$/;" v file: +objl_path_952_cmds demos/subwaymap.c /^static const unsigned char objl_path_952_cmds[]={$/;" v file: +objl_path_952_floats demos/subwaymap.c /^static const float objl_path_952_floats[]={$/;" v file: +objl_path_953_cmds demos/subwaymap.c /^static const unsigned char objl_path_953_cmds[]={$/;" v file: +objl_path_953_floats demos/subwaymap.c /^static const float objl_path_953_floats[]={$/;" v file: +objl_path_954_cmds demos/subwaymap.c /^static const unsigned char objl_path_954_cmds[]={$/;" v file: +objl_path_954_floats demos/subwaymap.c /^static const float objl_path_954_floats[]={$/;" v file: +objl_path_955_cmds demos/subwaymap.c /^static const unsigned char objl_path_955_cmds[]={$/;" v file: +objl_path_955_floats demos/subwaymap.c /^static const float objl_path_955_floats[]={$/;" v file: +objl_path_956_cmds demos/subwaymap.c /^static const unsigned char objl_path_956_cmds[]={$/;" v file: +objl_path_956_floats demos/subwaymap.c /^static const float objl_path_956_floats[]={$/;" v file: +objl_path_957_cmds demos/subwaymap.c /^static const unsigned char objl_path_957_cmds[]={$/;" v file: +objl_path_957_floats demos/subwaymap.c /^static const float objl_path_957_floats[]={$/;" v file: +objl_path_958_cmds demos/subwaymap.c /^static const unsigned char objl_path_958_cmds[]={$/;" v file: +objl_path_958_floats demos/subwaymap.c /^static const float objl_path_958_floats[]={$/;" v file: +objl_path_959_cmds demos/subwaymap.c /^static const unsigned char objl_path_959_cmds[]={$/;" v file: +objl_path_959_floats demos/subwaymap.c /^static const float objl_path_959_floats[]={$/;" v file: +objl_path_95_cmds demos/subwaymap.c /^static const unsigned char objl_path_95_cmds[]={$/;" v file: +objl_path_95_floats demos/subwaymap.c /^static const float objl_path_95_floats[]={$/;" v file: +objl_path_960_cmds demos/subwaymap.c /^static const unsigned char objl_path_960_cmds[]={$/;" v file: +objl_path_960_floats demos/subwaymap.c /^static const float objl_path_960_floats[]={$/;" v file: +objl_path_961_cmds demos/subwaymap.c /^static const unsigned char objl_path_961_cmds[]={$/;" v file: +objl_path_961_floats demos/subwaymap.c /^static const float objl_path_961_floats[]={$/;" v file: +objl_path_962_cmds demos/subwaymap.c /^static const unsigned char objl_path_962_cmds[]={$/;" v file: +objl_path_962_floats demos/subwaymap.c /^static const float objl_path_962_floats[]={$/;" v file: +objl_path_963_cmds demos/subwaymap.c /^static const unsigned char objl_path_963_cmds[]={$/;" v file: +objl_path_963_floats demos/subwaymap.c /^static const float objl_path_963_floats[]={$/;" v file: +objl_path_964_cmds demos/subwaymap.c /^static const unsigned char objl_path_964_cmds[]={$/;" v file: +objl_path_964_floats demos/subwaymap.c /^static const float objl_path_964_floats[]={$/;" v file: +objl_path_965_cmds demos/subwaymap.c /^static const unsigned char objl_path_965_cmds[]={$/;" v file: +objl_path_965_floats demos/subwaymap.c /^static const float objl_path_965_floats[]={$/;" v file: +objl_path_966_cmds demos/subwaymap.c /^static const unsigned char objl_path_966_cmds[]={$/;" v file: +objl_path_966_floats demos/subwaymap.c /^static const float objl_path_966_floats[]={$/;" v file: +objl_path_967_cmds demos/subwaymap.c /^static const unsigned char objl_path_967_cmds[]={$/;" v file: +objl_path_967_floats demos/subwaymap.c /^static const float objl_path_967_floats[]={$/;" v file: +objl_path_968_cmds demos/subwaymap.c /^static const unsigned char objl_path_968_cmds[]={$/;" v file: +objl_path_968_floats demos/subwaymap.c /^static const float objl_path_968_floats[]={$/;" v file: +objl_path_969_cmds demos/subwaymap.c /^static const unsigned char objl_path_969_cmds[]={$/;" v file: +objl_path_969_floats demos/subwaymap.c /^static const float objl_path_969_floats[]={$/;" v file: +objl_path_96_cmds demos/subwaymap.c /^static const unsigned char objl_path_96_cmds[]={$/;" v file: +objl_path_96_floats demos/subwaymap.c /^static const float objl_path_96_floats[]={$/;" v file: +objl_path_970_cmds demos/subwaymap.c /^static const unsigned char objl_path_970_cmds[]={$/;" v file: +objl_path_970_floats demos/subwaymap.c /^static const float objl_path_970_floats[]={$/;" v file: +objl_path_971_cmds demos/subwaymap.c /^static const unsigned char objl_path_971_cmds[]={$/;" v file: +objl_path_971_floats demos/subwaymap.c /^static const float objl_path_971_floats[]={$/;" v file: +objl_path_972_cmds demos/subwaymap.c /^static const unsigned char objl_path_972_cmds[]={$/;" v file: +objl_path_972_floats demos/subwaymap.c /^static const float objl_path_972_floats[]={$/;" v file: +objl_path_973_cmds demos/subwaymap.c /^static const unsigned char objl_path_973_cmds[]={$/;" v file: +objl_path_973_floats demos/subwaymap.c /^static const float objl_path_973_floats[]={$/;" v file: +objl_path_974_cmds demos/subwaymap.c /^static const unsigned char objl_path_974_cmds[]={$/;" v file: +objl_path_974_floats demos/subwaymap.c /^static const float objl_path_974_floats[]={$/;" v file: +objl_path_975_cmds demos/subwaymap.c /^static const unsigned char objl_path_975_cmds[]={$/;" v file: +objl_path_975_floats demos/subwaymap.c /^static const float objl_path_975_floats[]={$/;" v file: +objl_path_976_cmds demos/subwaymap.c /^static const unsigned char objl_path_976_cmds[]={$/;" v file: +objl_path_976_floats demos/subwaymap.c /^static const float objl_path_976_floats[]={$/;" v file: +objl_path_977_cmds demos/subwaymap.c /^static const unsigned char objl_path_977_cmds[]={$/;" v file: +objl_path_977_floats demos/subwaymap.c /^static const float objl_path_977_floats[]={$/;" v file: +objl_path_978_cmds demos/subwaymap.c /^static const unsigned char objl_path_978_cmds[]={$/;" v file: +objl_path_978_floats demos/subwaymap.c /^static const float objl_path_978_floats[]={$/;" v file: +objl_path_979_cmds demos/subwaymap.c /^static const unsigned char objl_path_979_cmds[]={$/;" v file: +objl_path_979_floats demos/subwaymap.c /^static const float objl_path_979_floats[]={$/;" v file: +objl_path_97_cmds demos/subwaymap.c /^static const unsigned char objl_path_97_cmds[]={$/;" v file: +objl_path_97_floats demos/subwaymap.c /^static const float objl_path_97_floats[]={$/;" v file: +objl_path_980_cmds demos/subwaymap.c /^static const unsigned char objl_path_980_cmds[]={$/;" v file: +objl_path_980_floats demos/subwaymap.c /^static const float objl_path_980_floats[]={$/;" v file: +objl_path_981_cmds demos/subwaymap.c /^static const unsigned char objl_path_981_cmds[]={$/;" v file: +objl_path_981_floats demos/subwaymap.c /^static const float objl_path_981_floats[]={$/;" v file: +objl_path_982_cmds demos/subwaymap.c /^static const unsigned char objl_path_982_cmds[]={$/;" v file: +objl_path_982_floats demos/subwaymap.c /^static const float objl_path_982_floats[]={$/;" v file: +objl_path_983_cmds demos/subwaymap.c /^static const unsigned char objl_path_983_cmds[]={$/;" v file: +objl_path_983_floats demos/subwaymap.c /^static const float objl_path_983_floats[]={$/;" v file: +objl_path_984_cmds demos/subwaymap.c /^static const unsigned char objl_path_984_cmds[]={$/;" v file: +objl_path_984_floats demos/subwaymap.c /^static const float objl_path_984_floats[]={$/;" v file: +objl_path_985_cmds demos/subwaymap.c /^static const unsigned char objl_path_985_cmds[]={$/;" v file: +objl_path_985_floats demos/subwaymap.c /^static const float objl_path_985_floats[]={$/;" v file: +objl_path_986_cmds demos/subwaymap.c /^static const unsigned char objl_path_986_cmds[]={$/;" v file: +objl_path_986_floats demos/subwaymap.c /^static const float objl_path_986_floats[]={$/;" v file: +objl_path_987_cmds demos/subwaymap.c /^static const unsigned char objl_path_987_cmds[]={$/;" v file: +objl_path_987_floats demos/subwaymap.c /^static const float objl_path_987_floats[]={$/;" v file: +objl_path_988_cmds demos/subwaymap.c /^static const unsigned char objl_path_988_cmds[]={$/;" v file: +objl_path_988_floats demos/subwaymap.c /^static const float objl_path_988_floats[]={$/;" v file: +objl_path_989_cmds demos/subwaymap.c /^static const unsigned char objl_path_989_cmds[]={$/;" v file: +objl_path_989_floats demos/subwaymap.c /^static const float objl_path_989_floats[]={$/;" v file: +objl_path_98_cmds demos/subwaymap.c /^static const unsigned char objl_path_98_cmds[]={$/;" v file: +objl_path_98_floats demos/subwaymap.c /^static const float objl_path_98_floats[]={$/;" v file: +objl_path_990_cmds demos/subwaymap.c /^static const unsigned char objl_path_990_cmds[]={$/;" v file: +objl_path_990_floats demos/subwaymap.c /^static const float objl_path_990_floats[]={$/;" v file: +objl_path_991_cmds demos/subwaymap.c /^static const unsigned char objl_path_991_cmds[]={$/;" v file: +objl_path_991_floats demos/subwaymap.c /^static const float objl_path_991_floats[]={$/;" v file: +objl_path_992_cmds demos/subwaymap.c /^static const unsigned char objl_path_992_cmds[]={$/;" v file: +objl_path_992_floats demos/subwaymap.c /^static const float objl_path_992_floats[]={$/;" v file: +objl_path_993_cmds demos/subwaymap.c /^static const unsigned char objl_path_993_cmds[]={$/;" v file: +objl_path_993_floats demos/subwaymap.c /^static const float objl_path_993_floats[]={$/;" v file: +objl_path_994_cmds demos/subwaymap.c /^static const unsigned char objl_path_994_cmds[]={$/;" v file: +objl_path_994_floats demos/subwaymap.c /^static const float objl_path_994_floats[]={$/;" v file: +objl_path_995_cmds demos/subwaymap.c /^static const unsigned char objl_path_995_cmds[]={$/;" v file: +objl_path_995_floats demos/subwaymap.c /^static const float objl_path_995_floats[]={$/;" v file: +objl_path_996_cmds demos/subwaymap.c /^static const unsigned char objl_path_996_cmds[]={$/;" v file: +objl_path_996_floats demos/subwaymap.c /^static const float objl_path_996_floats[]={$/;" v file: +objl_path_997_cmds demos/subwaymap.c /^static const unsigned char objl_path_997_cmds[]={$/;" v file: +objl_path_997_floats demos/subwaymap.c /^static const float objl_path_997_floats[]={$/;" v file: +objl_path_998_cmds demos/subwaymap.c /^static const unsigned char objl_path_998_cmds[]={$/;" v file: +objl_path_998_floats demos/subwaymap.c /^static const float objl_path_998_floats[]={$/;" v file: +objl_path_999_cmds demos/subwaymap.c /^static const unsigned char objl_path_999_cmds[]={$/;" v file: +objl_path_999_floats demos/subwaymap.c /^static const float objl_path_999_floats[]={$/;" v file: +objl_path_99_cmds demos/subwaymap.c /^static const unsigned char objl_path_99_cmds[]={$/;" v file: +objl_path_99_floats demos/subwaymap.c /^static const float objl_path_99_floats[]={$/;" v file: +objl_path_9_cmds demos/subwaymap.c /^static const unsigned char objl_path_9_cmds[]={$/;" v file: +objl_path_9_floats demos/subwaymap.c /^static const float objl_path_9_floats[]={$/;" v file: +objl_paths demos/subwaymap.c /^const PathData objl_paths[] = {$/;" v +off_size android/freetype/src/cff/cfftypes.h /^ FT_Byte off_size;$/;" m struct:CFF_IndexRec_ +off_t android/expat/lib/macconfig.h /^#define off_t /;" d +offset android/freetype/include/freetype/internal/ftrfork.h /^ FT_ULong offset;$/;" m struct:FT_RFork_Ref_ +offset android/freetype/include/freetype/internal/ftstream.h /^ FT_UShort offset;$/;" m struct:FT_Frame_Field_ +offset android/freetype/include/freetype/internal/psaux.h /^ FT_UInt offset; \/* offset of field in object *\/$/;" m struct:T1_FieldRec_ +offset android/freetype/include/freetype/internal/tttypes.h /^ FT_ULong offset; \/* not in file *\/$/;" m struct:SFNT_HeaderRec_ +offset android/freetype/src/cff/cffparse.c /^ FT_UInt offset;$/;" m struct:CFF_Field_Handler_ file: +offset android/freetype/src/cff/cfftypes.h /^ FT_ULong offset;$/;" m struct:CFF_CharsetRec_ +offset android/freetype/src/cff/cfftypes.h /^ FT_ULong offset;$/;" m struct:CFF_EncodingRec_ +offset android/freetype/src/raster/ftraster.c /^ PLong offset; \/* start of profile's data in render pool *\/$/;" m struct:TProfile_ file: +offset include/freetype/internal/ftrfork.h /^ FT_ULong offset;$/;" m struct:FT_RFork_Ref_ +offset include/freetype/internal/ftstream.h /^ FT_UShort offset;$/;" m struct:FT_Frame_Field_ +offset include/freetype/internal/psaux.h /^ FT_UInt offset; \/* offset of field in object *\/$/;" m struct:T1_FieldRec_ +offset include/freetype/internal/tttypes.h /^ FT_ULong offset; \/* not in file *\/$/;" m struct:SFNT_HeaderRec_ +offset src/gfx/gfx_gradient_adapter.h /^ scalar offset;$/;" m struct:gfx::gfx_gradient_table::color_point +offset src/gfx/gfx_mask_layer.h /^ offset = 0,$/;" e enum:gfx::gfx_alpha_mask_u8::__anon61 +offsetToCoord android/freetype/src/truetype/ttgxvar.c /^ FT_ULong offsetToCoord;$/;" m struct:GX_GVar_Head_ file: +offsetToData android/freetype/src/truetype/ttgxvar.c /^ FT_ULong offsetToData;$/;" m struct:GX_GVar_Head_ file: +offsetToData android/freetype/src/truetype/ttgxvar.c /^ FT_UShort offsetToData;$/;" m struct:GX_FVar_Head_ file: +offset_equal src/gfx/gfx_gradient_adapter.h /^ static bool offset_equal(const color_point& a, const color_point& b)$/;" f class:gfx::gfx_gradient_table +offset_less src/gfx/gfx_gradient_adapter.h /^ static bool offset_less(const color_point& a, const color_point& b)$/;" f class:gfx::gfx_gradient_table +offsets android/freetype/include/freetype/internal/tttypes.h /^ FT_Char* offsets;$/;" m struct:TT_Post_25_ +offsets android/freetype/include/freetype/internal/tttypes.h /^ FT_ULong* offsets;$/;" m struct:TTC_HeaderRec_ +offsets android/freetype/src/cff/cfftypes.h /^ FT_ULong* offsets;$/;" m struct:CFF_IndexRec_ +offsets include/freetype/internal/tttypes.h /^ FT_Char* offsets;$/;" m struct:TT_Post_25_ +offsets include/freetype/internal/tttypes.h /^ FT_ULong* offsets;$/;" m struct:TTC_HeaderRec_ +oldx demos/subwaymap.c /^static int oldx = 0;$/;" v file: +oldx demos/tiger.c /^static int oldx = 0;$/;" v file: +oldy demos/subwaymap.c /^static int oldy = 0;$/;" v file: +oldy demos/tiger.c /^static int oldy = 0;$/;" v file: +on_draw demos/clock.c /^void on_draw(ps_context* gc)$/;" f +on_draw demos/flowers.c /^void on_draw(ps_context* gc)$/;" f +on_draw demos/lake.c /^void on_draw(ps_context* gc)$/;" f +on_draw demos/subwaymap.c /^void on_draw(ps_context* gc)$/;" f +on_draw demos/tiger.c /^void on_draw(ps_context* gc)$/;" f +on_init demos/clock.c /^void on_init(ps_context* gc, int w, int h)$/;" f +on_init demos/flowers.c /^void on_init(ps_context* gc, int w, int h)$/;" f +on_init demos/lake.c /^void on_init(ps_context* gc, int w, int h)$/;" f +on_init demos/subwaymap.c /^void on_init(ps_context* gc, int w, int h)$/;" f +on_init demos/tiger.c /^void on_init(ps_context* gc, int w, int h)$/;" f +on_key_event demos/clock.c /^void on_key_event(key_event_type kvt, int vk)$/;" f +on_key_event demos/flowers.c /^void on_key_event(key_event_type kvt, int vk)$/;" f +on_key_event demos/lake.c /^void on_key_event(key_event_type kvt, int vk)$/;" f +on_key_event demos/subwaymap.c /^void on_key_event(key_event_type kvt, int vk)$/;" f +on_key_event demos/tiger.c /^void on_key_event(key_event_type kvt, int vk)$/;" f +on_mouse_event demos/clock.c /^void on_mouse_event(mouse_event_type evt, unsigned key, int x, int y)$/;" f +on_mouse_event demos/flowers.c /^void on_mouse_event(mouse_event_type evt, unsigned key, int x, int y)$/;" f +on_mouse_event demos/lake.c /^void on_mouse_event(mouse_event_type evt, unsigned key, int x, int y)$/;" f +on_mouse_event demos/subwaymap.c /^void on_mouse_event(mouse_event_type evt, unsigned key, int x, int y)$/;" f +on_mouse_event demos/tiger.c /^void on_mouse_event(mouse_event_type evt, unsigned key, int x, int y)$/;" f +on_size demos/clock.c /^void on_size(int w, int h)$/;" f +on_size demos/flowers.c /^void on_size(int w, int h)$/;" f +on_size demos/lake.c /^void on_size(int w, int h)$/;" f +on_size demos/subwaymap.c /^void on_size(int w, int h)$/;" f +on_size demos/tiger.c /^void on_size(int w, int h)$/;" f +on_term demos/clock.c /^void on_term(ps_context* gc)$/;" f +on_term demos/flowers.c /^void on_term(ps_context* gc)$/;" f +on_term demos/lake.c /^void on_term(ps_context* gc)$/;" f +on_term demos/subwaymap.c /^void on_term(ps_context* gc)$/;" f +on_term demos/tiger.c /^void on_term(ps_context* gc)$/;" f +on_timer demos/clock.c /^void on_timer()$/;" f +on_timer demos/flowers.c /^void on_timer()$/;" f +on_timer demos/lake.c /^void on_timer()$/;" f +on_timer demos/subwaymap.c /^void on_timer()$/;" f +on_timer demos/tiger.c /^void on_timer()$/;" f +op test/composite_func.c /^static int op = 0;$/;" v file: +op_callothersubr android/freetype/src/psaux/t1decode.c /^ op_callothersubr,$/;" e enum:T1_Operator_ file: +op_callsubr android/freetype/src/psaux/t1decode.c /^ op_callsubr,$/;" e enum:T1_Operator_ file: +op_closepath android/freetype/src/psaux/t1decode.c /^ op_closepath,$/;" e enum:T1_Operator_ file: +op_div android/freetype/src/psaux/t1decode.c /^ op_div,$/;" e enum:T1_Operator_ file: +op_dotsection android/freetype/src/psaux/t1decode.c /^ op_dotsection,$/;" e enum:T1_Operator_ file: +op_endchar android/freetype/src/psaux/t1decode.c /^ op_endchar,$/;" e enum:T1_Operator_ file: +op_hlineto android/freetype/src/psaux/t1decode.c /^ op_hlineto,$/;" e enum:T1_Operator_ file: +op_hmoveto android/freetype/src/psaux/t1decode.c /^ op_hmoveto,$/;" e enum:T1_Operator_ file: +op_hsbw android/freetype/src/psaux/t1decode.c /^ op_hsbw,$/;" e enum:T1_Operator_ file: +op_hstem android/freetype/src/psaux/t1decode.c /^ op_hstem,$/;" e enum:T1_Operator_ file: +op_hstem3 android/freetype/src/psaux/t1decode.c /^ op_hstem3,$/;" e enum:T1_Operator_ file: +op_hvcurveto android/freetype/src/psaux/t1decode.c /^ op_hvcurveto,$/;" e enum:T1_Operator_ file: +op_max android/freetype/src/psaux/t1decode.c /^ op_max \/* never remove this one *\/$/;" e enum:T1_Operator_ file: +op_none android/freetype/src/psaux/t1decode.c /^ op_none = 0,$/;" e enum:T1_Operator_ file: +op_pop android/freetype/src/psaux/t1decode.c /^ op_pop,$/;" e enum:T1_Operator_ file: +op_return android/freetype/src/psaux/t1decode.c /^ op_return,$/;" e enum:T1_Operator_ file: +op_rlineto android/freetype/src/psaux/t1decode.c /^ op_rlineto,$/;" e enum:T1_Operator_ file: +op_rmoveto android/freetype/src/psaux/t1decode.c /^ op_rmoveto,$/;" e enum:T1_Operator_ file: +op_rrcurveto android/freetype/src/psaux/t1decode.c /^ op_rrcurveto,$/;" e enum:T1_Operator_ file: +op_sbw android/freetype/src/psaux/t1decode.c /^ op_sbw,$/;" e enum:T1_Operator_ file: +op_seac android/freetype/src/psaux/t1decode.c /^ op_seac,$/;" e enum:T1_Operator_ file: +op_setcurrentpoint android/freetype/src/psaux/t1decode.c /^ op_setcurrentpoint,$/;" e enum:T1_Operator_ file: +op_unknown15 android/freetype/src/psaux/t1decode.c /^ op_unknown15,$/;" e enum:T1_Operator_ file: +op_vhcurveto android/freetype/src/psaux/t1decode.c /^ op_vhcurveto,$/;" e enum:T1_Operator_ file: +op_vlineto android/freetype/src/psaux/t1decode.c /^ op_vlineto,$/;" e enum:T1_Operator_ file: +op_vmoveto android/freetype/src/psaux/t1decode.c /^ op_vmoveto,$/;" e enum:T1_Operator_ file: +op_vstem android/freetype/src/psaux/t1decode.c /^ op_vstem,$/;" e enum:T1_Operator_ file: +op_vstem3 android/freetype/src/psaux/t1decode.c /^ op_vstem3,$/;" e enum:T1_Operator_ file: +opc android/freetype/src/truetype/ttobjs.h /^ FT_UInt opc; \/* function #, or instruction code *\/$/;" m struct:TT_DefRecord_ +opcode android/freetype/src/truetype/ttinterp.h /^ FT_Byte opcode; \/* current opcode *\/$/;" m struct:TT_ExecContextRec_ +opcode_length android/freetype/src/truetype/ttinterp.c /^ const FT_Char opcode_length[256] =$/;" v file: +open android/expat/lib/xmlparse.c /^ XML_Bool open;$/;" m struct:__anon11 file: +open android/freetype/include/freetype/internal/pshints.h /^ T1_Hints_OpenFunc open;$/;" m struct:T1_Hints_FuncsRec_ +open android/freetype/include/freetype/internal/pshints.h /^ T2_Hints_OpenFunc open;$/;" m struct:T2_Hints_FuncsRec_ +open include/freetype/internal/pshints.h /^ T1_Hints_OpenFunc open;$/;" m struct:T1_Hints_FuncsRec_ +open include/freetype/internal/pshints.h /^ T2_Hints_OpenFunc open;$/;" m struct:T2_Hints_FuncsRec_ +openInternalEntities android/expat/lib/xmlparse.c /^#define openInternalEntities /;" d file: +open_face android/freetype/src/base/ftobjs.c /^ open_face( FT_Driver driver,$/;" f file: +open_face_from_buffer android/freetype/src/base/ftobjs.c /^ open_face_from_buffer( FT_Library library,$/;" f file: +open_internal_entity android/expat/lib/xmlparse.c /^typedef struct open_internal_entity {$/;" s file: +operator ! src/include/refptr.h /^ bool operator!() const$/;" f class:picasso::refptr +operator != src/gfx/gfx_pixfmt_wrapper.h /^static inline bool operator != (const rgba8* a, const rgba8& b)$/;" f namespace:gfx +operator != src/include/fixedopt.h /^inline bool operator != (const fixed& a, const fixed& b)$/;" f namespace:fxmath +operator != src/include/graphic_path.h /^inline bool operator != (const graphic_path& a, const graphic_path& b)$/;" f namespace:picasso +operator != src/include/refptr.h /^template inline bool operator!=(const refptr& a, const refptr& b)$/;" f namespace:picasso +operator != src/picasso_matrix.h /^inline bool operator != (const trans_affine& a, const trans_affine& b)$/;" f namespace:picasso +operator () src/gfx/gfx_gamma_function.h /^ scalar operator()(scalar x) const { return x; }$/;" f class:gfx::gamma_none +operator () src/gfx/gfx_gamma_function.h /^ scalar operator()(scalar x) const$/;" f class:gfx::gamma_linear +operator () src/gfx/gfx_gamma_function.h /^ scalar operator()(scalar x) const$/;" f class:gfx::gamma_multiply +operator () src/gfx/gfx_gamma_function.h /^ scalar operator()(scalar x) const$/;" f class:gfx::gamma_power +operator () src/gfx/gfx_gamma_function.h /^ scalar operator()(scalar x) const$/;" f class:gfx::gamma_threshold +operator () src/gfx/gfx_image_accessors.h /^ unsigned int operator()(int v)$/;" f class:gfx::wrap_mode_reflect +operator () src/gfx/gfx_image_accessors.h /^ unsigned int operator()(int v)$/;" f class:gfx::wrap_mode_repeat +operator () src/include/vertex_dist.h /^ bool operator() (const vertex_dist& t)$/;" f struct:picasso::vertex_dist +operator * src/gfx/gfx_scanline_storage.h /^ const span& operator*() const { return m_span; }$/;" f class:gfx::gfx_serialized_scanlines_adaptor_aa::embedded_scanline::const_iterator +operator * src/gfx/gfx_scanline_storage.h /^ const span& operator*() const { return m_span; }$/;" f class:gfx::gfx_serialized_scanlines_adaptor_bin::embedded_scanline::const_iterator +operator * src/gfx/gfx_scanline_storage.h /^ const span& operator*() const { return m_span; }$/;" f class:gfx::gfx_scanline_storage_aa::embedded_scanline::const_iterator +operator * src/gfx/gfx_scanline_storage.h /^ const span_data& operator*() const { return m_span; }$/;" f class:gfx::gfx_scanline_storage_bin::embedded_scanline::const_iterator +operator * src/include/fixedopt.h /^inline fixed operator * (const fixed& a, const fixed& b)$/;" f namespace:fxmath +operator * src/picasso_matrix.h /^inline trans_affine operator * (const trans_affine& a, const trans_affine& b)$/;" f namespace:picasso +operator *= src/gfx/gfx_trans_affine.h /^ const gfx_trans_affine& operator *= (const gfx_trans_affine& o)$/;" f class:gfx::gfx_trans_affine +operator *= src/picasso_matrix.h /^ const trans_affine& operator *= (const trans_affine& o) { return multiply(o); }$/;" f class:picasso::trans_affine +operator + src/include/fixedopt.h /^inline fixed operator + (const fixed& a, const fixed& b)$/;" f namespace:fxmath +operator ++ src/gfx/gfx_gradient_adapter.cpp /^ void operator ++ ()$/;" f struct:gfx::color_interpolator +operator ++ src/gfx/gfx_image_accessors.h /^ unsigned int operator++()$/;" f class:gfx::wrap_mode_reflect +operator ++ src/gfx/gfx_image_accessors.h /^ unsigned int operator++()$/;" f class:gfx::wrap_mode_repeat +operator ++ src/gfx/gfx_line_generator.h /^ void operator ++ ()$/;" f class:gfx::gfx_dda_line_interpolator +operator ++ src/gfx/gfx_line_generator.h /^ void operator++()$/;" f class:gfx::gfx_dda2_line_interpolator +operator ++ src/gfx/gfx_scanline_storage.h /^ void operator ++ ()$/;" f class:gfx::gfx_scanline_storage_aa::embedded_scanline::const_iterator +operator ++ src/gfx/gfx_scanline_storage.h /^ void operator ++ ()$/;" f class:gfx::gfx_scanline_storage_bin::embedded_scanline::const_iterator +operator ++ src/gfx/gfx_scanline_storage.h /^ void operator ++ ()$/;" f class:gfx::gfx_serialized_scanlines_adaptor_aa::embedded_scanline::const_iterator +operator ++ src/gfx/gfx_scanline_storage.h /^ void operator ++ ()$/;" f class:gfx::gfx_serialized_scanlines_adaptor_bin::embedded_scanline::const_iterator +operator ++ src/gfx/gfx_span_generator.h /^ void operator++()$/;" f class:gfx::gfx_span_interpolator_linear +operator ++ src/include/graphic_helper.h /^ void operator ++ ()$/;" f class:picasso::bitset_iterator +operator += src/gfx/gfx_line_generator.h /^ void operator += (unsigned int n)$/;" f class:gfx::gfx_dda_line_interpolator +operator - src/include/fixedopt.h /^inline fixed operator - (const fixed& a, const fixed& b)$/;" f namespace:fxmath +operator -- src/gfx/gfx_line_generator.h /^ void operator -- ()$/;" f class:gfx::gfx_dda_line_interpolator +operator -- src/gfx/gfx_line_generator.h /^ void operator--()$/;" f class:gfx::gfx_dda2_line_interpolator +operator -= src/gfx/gfx_line_generator.h /^ void operator -= (unsigned int n)$/;" f class:gfx::gfx_dda_line_interpolator +operator -> src/gfx/gfx_scanline_storage.h /^ const span* operator->() const { return &m_span; }$/;" f class:gfx::gfx_scanline_storage_aa::embedded_scanline::const_iterator +operator -> src/gfx/gfx_scanline_storage.h /^ const span* operator->() const { return &m_span; }$/;" f class:gfx::gfx_serialized_scanlines_adaptor_aa::embedded_scanline::const_iterator +operator -> src/gfx/gfx_scanline_storage.h /^ const span* operator->() const { return &m_span; }$/;" f class:gfx::gfx_serialized_scanlines_adaptor_bin::embedded_scanline::const_iterator +operator -> src/gfx/gfx_scanline_storage.h /^ const span_data* operator->() const { return &m_span; }$/;" f class:gfx::gfx_scanline_storage_bin::embedded_scanline::const_iterator +operator -> src/include/refptr.h /^ T* operator->() const$/;" f class:picasso::refptr +operator / src/include/fixedopt.h /^inline fixed operator \/ (const fixed& a, const fixed& b)$/;" f namespace:fxmath +operator < src/include/fixedopt.h /^inline bool operator < (const fixed& a, const fixed& b)$/;" f namespace:fxmath +operator <= src/include/fixedopt.h /^inline bool operator <= (const fixed& a, const fixed& b)$/;" f namespace:fxmath +operator = src/core/graphic_path.cpp /^graphic_path& graphic_path::operator=(const graphic_path& o)$/;" f class:picasso::graphic_path +operator = src/gfx/gfx_scanline_storage.h /^ operator = (const gfx_scanline_cell_storage& v)$/;" f class:gfx::gfx_scanline_cell_storage +operator = src/include/data_vector.h /^ const pod_array& operator = (const pod_array& o)$/;" f class:picasso::pod_array +operator = src/include/data_vector.h /^const pod_bvector& pod_bvector::operator = (const pod_bvector& o)$/;" f class:picasso::pod_bvector +operator = src/include/data_vector.h /^inline const pod_vector& pod_vector::operator = (const pod_vector& v)$/;" f class:picasso::pod_vector +operator = src/include/refptr.h /^ refptr& operator=(T * optr)$/;" f class:picasso::refptr +operator = src/include/refptr.h /^ refptr& operator=(const refptr & o)$/;" f class:picasso::refptr +operator = src/picasso_font.h /^ font_desc& operator=(const font_desc& o)$/;" f class:picasso::font_desc +operator = src/picasso_matrix.cpp /^trans_affine& trans_affine::operator=(const trans_affine& o)$/;" f class:picasso::trans_affine +operator = src/picasso_objects.h /^ clip_area& operator = (const clip_area& o)$/;" f struct:picasso::clip_area +operator = src/picasso_objects.h /^ context_state& operator = (const context_state& o)$/;" f struct:picasso::context_state +operator = src/picasso_objects.h /^ graphic_brush& operator = (const graphic_brush& o)$/;" f struct:picasso::graphic_brush +operator = src/picasso_objects.h /^ graphic_pen& operator = (const graphic_pen& o)$/;" f struct:picasso::graphic_pen +operator = src/picasso_objects.h /^ shadow_state& operator = (const shadow_state& o)$/;" f struct:picasso::shadow_state +operator == src/gfx/gfx_pixfmt_wrapper.h /^static inline bool operator == (const rgba8& a, const rgba8& b)$/;" f namespace:gfx +operator == src/gfx/gfx_pixfmt_wrapper.h /^static inline bool operator == (const rgba8* a, const rgba8& b)$/;" f namespace:gfx +operator == src/include/fixedopt.h /^inline bool operator == (const fixed& a, const fixed& b)$/;" f namespace:fxmath +operator == src/include/refptr.h /^template inline bool operator==(const refptr& a, const refptr& b)$/;" f namespace:picasso +operator == src/picasso_font.h /^inline bool operator == (const font_desc& a, const font_desc& b)$/;" f namespace:picasso +operator == src/picasso_matrix.h /^inline bool operator == (const trans_affine& a, const trans_affine& b)$/;" f namespace:picasso +operator > src/include/fixedopt.h /^inline bool operator > (const fixed& a, const fixed& b)$/;" f namespace:fxmath +operator >= src/include/fixedopt.h /^inline bool operator >= (const fixed& a, const fixed& b)$/;" f namespace:fxmath +operator [] src/gfx/gfx_gradient_adapter.h /^ const color_type& operator [] (unsigned int i) const $/;" f class:gfx::gfx_gradient_table +operator [] src/gfx/gfx_scanline_storage.h /^ T* operator [] (int idx)$/;" f class:gfx::gfx_scanline_cell_storage +operator [] src/gfx/gfx_scanline_storage.h /^ const T* operator [] (int idx) const$/;" f class:gfx::gfx_scanline_cell_storage +operator [] src/include/data_vector.h /^ T& operator [] (unsigned int i) { return m_array[i]; }$/;" f class:picasso::pod_vector +operator [] src/include/data_vector.h /^ T& operator [] (unsigned i) { return m_array[i]; }$/;" f class:picasso::pod_array +operator [] src/include/data_vector.h /^ T& operator [] (unsigned int i)$/;" f class:picasso::pod_bvector +operator [] src/include/data_vector.h /^ const T& operator [] (unsigned i) const { return m_array[i]; }$/;" f class:picasso::pod_array +operator [] src/include/data_vector.h /^ const T& operator [] (unsigned int i) const { return m_array[i]; }$/;" f class:picasso::pod_vector +operator [] src/include/data_vector.h /^ const T& operator [] (unsigned int i) const$/;" f class:picasso::pod_bvector +operator double src/include/fixedopt.h /^ operator double () const { return ((double)(m_data \/ (double)FIXED_1)); }$/;" f class:fxmath::fixed +operator float src/include/fixedopt.h /^ operator float () const { return ((float)(m_data \/ (float)FIXED_1)); }$/;" f class:fxmath::fixed +operator int src/include/fixedopt.h /^ operator int () const { return ((int)(m_data >> FIXED_Q)); }$/;" f class:fxmath::fixed +opos android/freetype/src/autofit/afhints.h /^ FT_Pos opos; \/* original, scaled position *\/$/;" m struct:AF_EdgeRec_ +optparse tools/gyp/build/lib/gyp/__init__.py /^import optparse$/;" i +optparse tools/gyp/build/lib/gyp/input.py /^import optparse$/;" i +optparse tools/gyp/gyptest.py /^import optparse$/;" i +optparse tools/gyp/pylib/gyp/__init__.py /^import optparse$/;" i +optparse tools/gyp/pylib/gyp/input.py /^import optparse$/;" i +order android/freetype/src/pshinter/pshalgo.h /^ FT_Int order;$/;" m struct:PSH_HintRec_ +order_abgr src/include/color_type.h /^struct order_abgr { enum { A=0, B=1, G=2, R=3, rgba_tag }; }; \/\/ order_abgr$/;" s namespace:picasso +order_argb src/include/color_type.h /^struct order_argb { enum { A=0, R=1, G=2, B=3, rgba_tag }; }; \/\/ order_argb$/;" s namespace:picasso +order_bgr src/include/color_type.h /^struct order_bgr { enum { B=0, G=1, R=2, rgb_tag }; }; \/\/ order_bgr$/;" s namespace:picasso +order_bgra src/include/color_type.h /^struct order_bgra { enum { B=0, G=1, R=2, A=3, rgba_tag }; }; \/\/ order_bgra$/;" s namespace:picasso +order_rgb src/include/color_type.h /^struct order_rgb { enum { R=0, G=1, B=2, rgb_tag }; }; \/\/ order_rgb$/;" s namespace:picasso +order_rgb555 src/include/color_type.h /^struct order_rgb555 { enum {R=5, G=5, B=5, rgbp_tag }; }; \/\/ order_rgb555$/;" s namespace:picasso +order_rgb565 src/include/color_type.h /^struct order_rgb565 { enum {R=5, G=6, B=5, rgbp_tag }; }; \/\/ order_rgb565$/;" s namespace:picasso +order_rgba src/include/color_type.h /^struct order_rgba { enum { R=0, G=1, B=2, A=3, rgba_tag }; }; \/\/ order_rgba$/;" s namespace:picasso +order_type src/gfx/gfx_image_accessors.h /^ typedef typename PixFmt::order_type order_type;$/;" t class:gfx::image_accessor +order_type src/gfx/gfx_image_accessors.h /^ typedef typename PixFmt::order_type order_type;$/;" t class:gfx::image_accessor_wrap +order_type src/gfx/gfx_pixfmt_rgb.h /^ typedef Order order_type;$/;" t class:gfx::blend_op_adaptor_rgb +order_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename blender_type::order_type order_type;$/;" t class:gfx::pixfmt_blender_rgb +order_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef order_rgb555 order_type;$/;" t class:gfx::blender_rgb555 +order_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef order_rgb565 order_type;$/;" t class:gfx::blender_rgb565 +order_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename blender_type::order_type order_type;$/;" t class:gfx::pixfmt_blender_rgb16 +order_type src/gfx/gfx_pixfmt_rgba.h /^ typedef Order order_type;$/;" t class:gfx::blend_op_adaptor_rgba +order_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename blender_type::order_type order_type;$/;" t class:gfx::pixfmt_blender_rgba +order_type src/gfx/gfx_pixfmt_wrapper.h /^ typedef typename pixfmt_type::order_type order_type;$/;" t class:gfx::gfx_pixfmt_wrapper +order_type src/gfx/gfx_pixfmt_wrapper.h /^ typedef typename pixfmt_type::order_type order_type;$/;" t class:gfx::pattern_wrapper +order_type src/gfx/gfx_span_image_filters.h /^ typedef typename source_type::order_type order_type;$/;" t class:gfx::gfx_span_image_filter_rgb +order_type src/gfx/gfx_span_image_filters.h /^ typedef typename source_type::order_type order_type;$/;" t class:gfx::gfx_span_image_filter_rgb16 +order_type src/gfx/gfx_span_image_filters.h /^ typedef typename source_type::order_type order_type;$/;" t class:gfx::gfx_span_image_filter_rgb16_nn +order_type src/gfx/gfx_span_image_filters.h /^ typedef typename source_type::order_type order_type;$/;" t class:gfx::gfx_span_image_filter_rgb_nn +order_type src/gfx/gfx_span_image_filters.h /^ typedef typename source_type::order_type order_type;$/;" t class:gfx::gfx_span_image_filter_rgba +order_type src/gfx/gfx_span_image_filters.h /^ typedef typename source_type::order_type order_type;$/;" t class:gfx::gfx_span_image_filter_rgba_nb +order_type src/gfx/gfx_span_image_filters.h /^ typedef typename source_type::order_type order_type;$/;" t class:gfx::gfx_span_image_filter_rgba_nn +order_type src/gfx/gfx_span_image_filters.h /^ typedef typename source_type::order_type order_type;$/;" t class:gfx::gfx_span_image_filter_rgba_nn_nb +ordering android/freetype/include/freetype/t1tables.h /^ FT_String* ordering;$/;" m struct:CID_FaceInfoRec_ +ordering android/freetype/src/cff/cfftypes.h /^ FT_String* ordering;$/;" m struct:CFF_FontRec_ +ordering include/freetype/t1tables.h /^ FT_String* ordering;$/;" m struct:CID_FaceInfoRec_ +org android/freetype/include/freetype/internal/tttypes.h /^ FT_Vector* org; \/* original point coordinates *\/$/;" m struct:TT_GlyphZoneRec_ +org android/freetype/src/autofit/aftypes.h /^ FT_Pos org; \/* original position\/width in font units *\/$/;" m struct:AF_WidthRec_ +org android/freetype/src/pshinter/pshglob.h /^ FT_Int org;$/;" m struct:PSH_WidthRec_ +org include/freetype/internal/tttypes.h /^ FT_Vector* org; \/* original point coordinates *\/$/;" m struct:TT_GlyphZoneRec_ +org_bottom android/freetype/src/pshinter/pshglob.h /^ FT_Int org_bottom;$/;" m struct:PSH_Blue_ZoneRec_ +org_delta android/freetype/src/autofit/aflatin.h /^ FT_Pos org_delta;$/;" m struct:AF_LatinAxisRec_ +org_delta android/freetype/src/pshinter/pshglob.h /^ FT_Int org_delta;$/;" m struct:PSH_Blue_ZoneRec_ +org_len android/freetype/src/pshinter/pshalgo.h /^ FT_Int org_len;$/;" m struct:PSH_HintRec_ +org_pos android/freetype/src/pshinter/pshalgo.h /^ FT_Int org_pos;$/;" m struct:PSH_HintRec_ +org_ref android/freetype/src/pshinter/pshglob.h /^ FT_Int org_ref;$/;" m struct:PSH_Blue_ZoneRec_ +org_scale android/freetype/src/autofit/aflatin.h /^ FT_Fixed org_scale;$/;" m struct:AF_LatinAxisRec_ +org_top android/freetype/src/pshinter/pshglob.h /^ FT_Int org_top;$/;" m struct:PSH_Blue_ZoneRec_ +org_u android/freetype/src/pshinter/pshalgo.h /^ FT_Pos org_u;$/;" m struct:PSH_PointRec_ +org_v android/freetype/src/pshinter/pshalgo.h /^ FT_Pos org_v;$/;" m struct:PSH_PointRec_ +org_x android/freetype/src/pshinter/pshalgo.h /^ FT_Pos org_x;$/;" m struct:PSH_PointRec_ +org_y android/freetype/src/pshinter/pshalgo.h /^ FT_Pos org_y;$/;" m struct:PSH_PointRec_ +orgs android/freetype/src/truetype/ttinterp.c /^ FT_Vector* orgs; \/* original and current coordinate *\/$/;" m struct:IUP_WorkerRec_ file: +original_platform tools/gyp/build/lib/gyp/common_test.py /^ original_platform = ''$/;" v class:TestGetFlavor +original_platform tools/gyp/pylib/gyp/common_test.py /^ original_platform = ''$/;" v class:TestGetFlavor +orus android/freetype/include/freetype/internal/tttypes.h /^ FT_Vector* orus; \/* original (unscaled) point coordinates *\/$/;" m struct:TT_GlyphZoneRec_ +orus android/freetype/src/truetype/ttinterp.c /^ FT_Vector* orus;$/;" m struct:IUP_WorkerRec_ file: +orus include/freetype/internal/tttypes.h /^ FT_Vector* orus; \/* original (unscaled) point coordinates *\/$/;" m struct:TT_GlyphZoneRec_ +os tools/gyp/build/lib/gyp/MSVSNew.py /^import os$/;" i +os tools/gyp/build/lib/gyp/MSVSUserFile.py /^import os$/;" i +os tools/gyp/build/lib/gyp/MSVSVersion.py /^import os$/;" i +os tools/gyp/build/lib/gyp/SCons.py /^import os$/;" i +os tools/gyp/build/lib/gyp/__init__.py /^import os.path$/;" i +os tools/gyp/build/lib/gyp/common.py /^import os.path$/;" i +os tools/gyp/build/lib/gyp/easy_xml.py /^import os$/;" i +os tools/gyp/build/lib/gyp/generator/android.py /^import os$/;" i +os tools/gyp/build/lib/gyp/generator/dump_dependency_json.py /^import os$/;" i +os tools/gyp/build/lib/gyp/generator/eclipse.py /^import os.path$/;" i +os tools/gyp/build/lib/gyp/generator/gypd.py /^import os$/;" i +os tools/gyp/build/lib/gyp/generator/make.py /^import os$/;" i +os tools/gyp/build/lib/gyp/generator/msvs.py /^import os$/;" i +os tools/gyp/build/lib/gyp/generator/ninja.py /^import os.path$/;" i +os tools/gyp/build/lib/gyp/generator/scons.py /^ fp.write('\\nimport os\\n')$/;" i +os tools/gyp/build/lib/gyp/generator/scons.py /^import os.path$/;" i +os tools/gyp/build/lib/gyp/generator/xcode.py /^import os$/;" i +os tools/gyp/build/lib/gyp/input.py /^import os.path$/;" i +os tools/gyp/build/lib/gyp/mac_tool.py /^import os$/;" i +os tools/gyp/build/lib/gyp/msvs_emulation.py /^import os$/;" i +os tools/gyp/build/lib/gyp/sun_tool.py /^import os$/;" i +os tools/gyp/build/lib/gyp/win_tool.py /^import os$/;" i +os tools/gyp/build/lib/gyp/xcode_emulation.py /^import os.path$/;" i +os tools/gyp/buildbot/buildbot_run.py /^import os$/;" i +os tools/gyp/gyptest.py /^import os$/;" i +os tools/gyp/pylib/gyp/MSVSNew.py /^import os$/;" i +os tools/gyp/pylib/gyp/MSVSUserFile.py /^import os$/;" i +os tools/gyp/pylib/gyp/MSVSVersion.py /^import os$/;" i +os tools/gyp/pylib/gyp/SCons.py /^import os$/;" i +os tools/gyp/pylib/gyp/__init__.py /^import os.path$/;" i +os tools/gyp/pylib/gyp/common.py /^import os.path$/;" i +os tools/gyp/pylib/gyp/easy_xml.py /^import os$/;" i +os tools/gyp/pylib/gyp/generator/android.py /^import os$/;" i +os tools/gyp/pylib/gyp/generator/dump_dependency_json.py /^import os$/;" i +os tools/gyp/pylib/gyp/generator/eclipse.py /^import os.path$/;" i +os tools/gyp/pylib/gyp/generator/gypd.py /^import os$/;" i +os tools/gyp/pylib/gyp/generator/make.py /^import os$/;" i +os tools/gyp/pylib/gyp/generator/msvs.py /^import os$/;" i +os tools/gyp/pylib/gyp/generator/ninja.py /^import os.path$/;" i +os tools/gyp/pylib/gyp/generator/scons.py /^ fp.write('\\nimport os\\n')$/;" i +os tools/gyp/pylib/gyp/generator/scons.py /^import os.path$/;" i +os tools/gyp/pylib/gyp/generator/xcode.py /^import os$/;" i +os tools/gyp/pylib/gyp/input.py /^import os.path$/;" i +os tools/gyp/pylib/gyp/mac_tool.py /^import os$/;" i +os tools/gyp/pylib/gyp/msvs_emulation.py /^import os$/;" i +os tools/gyp/pylib/gyp/sun_tool.py /^import os$/;" i +os tools/gyp/pylib/gyp/win_tool.py /^import os$/;" i +os tools/gyp/pylib/gyp/xcode_emulation.py /^import os.path$/;" i +os tools/gyp/tools/pretty_sln.py /^import os$/;" i +os tools/gyp/tools/pretty_vcproj.py /^import os$/;" i +os2 android/freetype/include/freetype/internal/tttypes.h /^ TT_OS2 os2; \/* TrueType OS\/2 table *\/$/;" m struct:TT_FaceRec_ +os2 include/freetype/internal/tttypes.h /^ TT_OS2 os2; \/* TrueType OS\/2 table *\/$/;" m struct:TT_FaceRec_ +other android/freetype/include/freetype/freetype.h /^ void* other;$/;" m struct:FT_GlyphSlotRec_ +other android/freetype/include/freetype/internal/ftgloadr.h /^ void* other; \/* for possible future extension? *\/$/;" m struct:FT_GlyphLoaderRec_ +other android/freetype/include/freetype/internal/tttypes.h /^ void* other;$/;" m struct:TT_LoaderRec_ +other include/freetype/freetype.h /^ void* other;$/;" m struct:FT_GlyphSlotRec_ +other include/freetype/internal/ftgloadr.h /^ void* other; \/* for possible future extension? *\/$/;" m struct:FT_GlyphLoaderRec_ +other include/freetype/internal/tttypes.h /^ void* other;$/;" m struct:TT_LoaderRec_ +other_blues android/freetype/include/freetype/t1tables.h /^ FT_Short other_blues[10];$/;" m struct:PS_PrivateRec_ +other_blues android/freetype/src/cff/cfftypes.h /^ FT_Pos other_blues[10];$/;" m struct:CFF_PrivateRec_ +other_blues include/freetype/t1tables.h /^ FT_Short other_blues[10];$/;" m struct:PS_PrivateRec_ +other_flags android/freetype/src/autofit/afhints.h /^ FT_UInt32 other_flags; \/* free for script-specific *\/$/;" m struct:AF_GlyphHintsRec_ +otv_validate_func android/freetype/include/freetype/internal/services/svotval.h /^ (*otv_validate_func)( FT_Face volatile face,$/;" t +otv_validate_func include/freetype/internal/services/svotval.h /^ (*otv_validate_func)( FT_Face volatile face,$/;" t +out_dir android/freetype/src/autofit/afhints.h /^ FT_Char out_dir; \/* direction of outwards vector *\/$/;" m struct:AF_PointRec_ +out_dir tools/gyp/build/lib/gyp/SCons.py /^ out_dir = '${LIB_DIR}'$/;" v class:SharedLibraryTarget +out_dir tools/gyp/build/lib/gyp/SCons.py /^ out_dir = '${LIB_DIR}'$/;" v class:StaticLibraryTarget +out_dir tools/gyp/build/lib/gyp/SCons.py /^ out_dir = '${TOP_BUILDDIR}'$/;" v class:LoadableModuleTarget +out_dir tools/gyp/build/lib/gyp/SCons.py /^ out_dir = '${TOP_BUILDDIR}'$/;" v class:ProgramTarget +out_dir tools/gyp/pylib/gyp/SCons.py /^ out_dir = '${LIB_DIR}'$/;" v class:SharedLibraryTarget +out_dir tools/gyp/pylib/gyp/SCons.py /^ out_dir = '${LIB_DIR}'$/;" v class:StaticLibraryTarget +out_dir tools/gyp/pylib/gyp/SCons.py /^ out_dir = '${TOP_BUILDDIR}'$/;" v class:LoadableModuleTarget +out_dir tools/gyp/pylib/gyp/SCons.py /^ out_dir = '${TOP_BUILDDIR}'$/;" v class:ProgramTarget +out_vertices src/include/convert.h /^ out_vertices,$/;" e enum:picasso::conv_stroke::__anon192 +outerBevelPath demos/clock.c /^static ps_path* outerBevelPath;$/;" v file: +outline android/freetype/include/freetype/freetype.h /^ FT_Outline outline;$/;" m struct:FT_GlyphSlotRec_ +outline android/freetype/include/freetype/ftglyph.h /^ FT_Outline outline;$/;" m struct:FT_OutlineGlyphRec_ +outline android/freetype/include/freetype/ftoutln.h /^ FT_Outline_Check( FT_Outline* outline );$/;" v +outline android/freetype/include/freetype/ftoutln.h /^ FT_Outline_Get_Orientation( FT_Outline* outline );$/;" v +outline android/freetype/include/freetype/ftoutln.h /^ FT_Outline_Reverse( FT_Outline* outline );$/;" v +outline android/freetype/include/freetype/ftstroke.h /^ FT_Outline_GetInsideBorder( FT_Outline* outline );$/;" v +outline android/freetype/include/freetype/ftstroke.h /^ FT_Outline_GetOutsideBorder( FT_Outline* outline );$/;" v +outline android/freetype/include/freetype/internal/ftgloadr.h /^ FT_Outline outline; \/* outline *\/$/;" m struct:FT_GlyphLoadRec_ +outline android/freetype/src/autofit/aftypes.h /^ FT_Outline outline;$/;" m struct:AF_OutlineRec_ +outline android/freetype/src/pshinter/pshalgo.h /^ FT_Outline* outline;$/;" m struct:PSH_GlyphRec_ +outline android/freetype/src/raster/ftraster.c /^ FT_Outline outline;$/;" m struct:TWorker_ file: +outline android/freetype/src/smooth/ftgrays.c /^ FT_Outline outline;$/;" m struct:TWorker_ file: +outline include/freetype/freetype.h /^ FT_Outline outline;$/;" m struct:FT_GlyphSlotRec_ +outline include/freetype/ftglyph.h /^ FT_Outline outline;$/;" m struct:FT_OutlineGlyphRec_ +outline include/freetype/ftoutln.h /^ FT_Outline_Check( FT_Outline* outline );$/;" v +outline include/freetype/ftoutln.h /^ FT_Outline_Get_Orientation( FT_Outline* outline );$/;" v +outline include/freetype/ftoutln.h /^ FT_Outline_Reverse( FT_Outline* outline );$/;" v +outline include/freetype/ftstroke.h /^ FT_Outline_GetInsideBorder( FT_Outline* outline );$/;" v +outline include/freetype/ftstroke.h /^ FT_Outline_GetOutsideBorder( FT_Outline* outline );$/;" v +outline include/freetype/internal/ftgloadr.h /^ FT_Outline outline; \/* outline *\/$/;" m struct:FT_GlyphLoadRec_ +outline1 src/include/convert.h /^ outline1,$/;" e enum:picasso::conv_stroke::__anon192 +outline2 src/include/convert.h /^ outline2,$/;" e enum:picasso::conv_stroke::__anon192 +outline_resolution android/freetype/src/autofit/aftypes.h /^ FT_UInt outline_resolution;$/;" m struct:AF_OutlineRec_ +outp src/picasso_gpc.cpp /^ polygon_node *outp[2]; \/* Output polygon \/ tristrip pointer *\/$/;" m struct:picasso::edge_shape file: +output_path tools/gyp/build/lib/gyp/generator/scons.py /^ def output_path(filename):$/;" f function:GenerateOutput +output_path tools/gyp/pylib/gyp/generator/scons.py /^ def output_path(filename):$/;" f function:GenerateOutput +ox android/freetype/src/autofit/afhints.h /^ FT_Pos ox, oy; \/* original, scaled position *\/$/;" m struct:AF_PointRec_ +ox android/freetype/src/cff/cffobjs.h /^ FT_F26Dot6 ox, oy; \/* offsets *\/$/;" m struct:CFF_Transform_ +ox android/freetype/src/truetype/ttobjs.h /^ FT_F26Dot6 ox, oy; \/* offsets *\/$/;" m struct:TT_Transform_ +oy android/freetype/src/autofit/afhints.h /^ FT_Pos ox, oy; \/* original, scaled position *\/$/;" m struct:AF_PointRec_ +oy android/freetype/src/cff/cffobjs.h /^ FT_F26Dot6 ox, oy; \/* offsets *\/$/;" m struct:CFF_Transform_ +oy android/freetype/src/truetype/ttobjs.h /^ FT_F26Dot6 ox, oy; \/* offsets *\/$/;" m struct:TT_Transform_ +p android/expat/lib/xmlparse.c /^ NAMED **p;$/;" m struct:__anon9 file: +p android/freetype/src/raster/ftraster.c /^ void* p;$/;" m union:Alignment_ file: +p src/picasso_objects.h /^ picasso::painter *p;$/;" m struct:_ps_canvas +p test/gradient_func.c /^static ps_point p[2];$/;" v file: +p test/text_func.c /^static ps_point p[2];$/;" v file: +p_shape src/picasso_gpc.cpp /^typedef struct p_shape { \/* Internal contour \/ tristrip type *\/$/;" s namespace:picasso file: +pa test/alpha_func.c /^static ps_path * pa;$/;" v file: +pa test/bitblt_func.c /^static ps_path * pa;$/;" v file: +pa test/blur_func.c /^static ps_path * pa;$/;" v file: +pa test/clip_func.c /^static ps_path * pa;$/;" v file: +pa test/composite_func.c /^static ps_path * pa;$/;" v file: +pa test/gamma_func.c /^static ps_path * pa;$/;" v file: +pa test/gcstate_func.c /^static ps_path * pa;$/;" v file: +pa test/gradient_func.c /^static ps_path * pa;$/;" v file: +pa test/mask_func.c /^static ps_path * pa;$/;" v file: +pa test/part_func.c /^static ps_path * pa;$/;" v file: +pa test/path_func.c /^static ps_path * pa;$/;" v file: +pa test/pattern_func.c /^static ps_path * pa;$/;" v file: +pa test/shadow_func.c /^static ps_path * pa;$/;" v file: +pa test/text_func.c /^static ps_path * pa;$/;" v file: +pa test/thread_func.c /^static ps_path * pa;$/;" v file: +package_dir tools/gyp/setup.py /^ package_dir = {'': 'pylib'},$/;" v +packages tools/gyp/setup.py /^ packages=['gyp', 'gyp.generator'],$/;" v +pads android/freetype/include/freetype/internal/tttypes.h /^ FT_Char pads[2];$/;" m struct:TT_SBit_LineMetricsRec_ +pads include/freetype/internal/tttypes.h /^ FT_Char pads[2];$/;" m struct:TT_SBit_LineMetricsRec_ +paintEvent demos/platform_qt4.cpp /^inline void PWindow::paintEvent(QPaintEvent *event)$/;" f class:PWindow +paintEvent test/testQt4.cpp /^inline void PWindow::paintEvent(QPaintEvent *event)$/;" f class:PWindow +paint_type android/freetype/include/freetype/internal/t1types.h /^ FT_Byte paint_type;$/;" m struct:T1_FontRec_ +paint_type android/freetype/include/freetype/t1tables.h /^ FT_Byte paint_type;$/;" m struct:CID_FaceDictRec_ +paint_type android/freetype/src/cff/cfftypes.h /^ FT_Int paint_type;$/;" m struct:CFF_FontRecDictRec_ +paint_type include/freetype/internal/t1types.h /^ FT_Byte paint_type;$/;" m struct:T1_FontRec_ +paint_type include/freetype/t1tables.h /^ FT_Byte paint_type;$/;" m struct:CID_FaceDictRec_ +painter src/picasso_painter.cpp /^painter::painter(pix_fmt fmt)$/;" f class:picasso::painter +painter src/picasso_painter.h /^class painter {$/;" c namespace:picasso +painter_raster src/gfx/gfx_painter_helper.h /^template <> struct painter_raster $/;" s namespace:gfx +painter_raster src/gfx/gfx_painter_helper.h /^template <> struct painter_raster $/;" s namespace:gfx +painter_raster src/gfx/gfx_painter_helper.h /^template <> struct painter_raster $/;" s namespace:gfx +painter_raster src/gfx/gfx_painter_helper.h /^template <> struct painter_raster $/;" s namespace:gfx +painter_raster src/gfx/gfx_painter_helper.h /^template <> struct painter_raster $/;" s namespace:gfx +painter_raster src/gfx/gfx_painter_helper.h /^template <> struct painter_raster $/;" s namespace:gfx +painter_raster src/gfx/gfx_painter_helper.h /^template <> struct painter_raster $/;" s namespace:gfx +painter_raster src/gfx/gfx_painter_helper.h /^template <> struct painter_raster $/;" s namespace:gfx +pairCount android/freetype/src/truetype/ttgxvar.h /^ FT_UShort pairCount;$/;" m struct:GX_AVarSegmentRec_ +palette android/freetype/include/freetype/ftimage.h /^ void* palette;$/;" m struct:FT_Bitmap_ +palette include/freetype/ftimage.h /^ void* palette;$/;" m struct:FT_Bitmap_ +palette_mode android/freetype/include/freetype/ftimage.h /^ char palette_mode;$/;" m struct:FT_Bitmap_ +palette_mode include/freetype/ftimage.h /^ char palette_mode;$/;" m struct:FT_Bitmap_ +pam test/pattern_func.c /^static ps_image * pam;$/;" v file: +panose android/freetype/include/freetype/tttables.h /^ FT_Byte panose[10];$/;" m struct:TT_OS2_ +panose include/freetype/tttables.h /^ FT_Byte panose[10];$/;" m struct:TT_OS2_ +paramEntities android/expat/lib/xmlparse.c /^ HASH_TABLE paramEntities;$/;" m struct:__anon17 file: +paramEntityParsing android/expat/lib/xmlparse.c /^#define paramEntityParsing /;" d file: +paramEntityRead android/expat/lib/xmlparse.c /^ XML_Bool paramEntityRead;$/;" m struct:__anon17 file: +params android/freetype/include/freetype/freetype.h /^ FT_Parameter* params;$/;" m struct:FT_Open_Args_ +params include/freetype/freetype.h /^ FT_Parameter* params;$/;" m struct:FT_Open_Args_ +parent android/expat/lib/xmlparse.c /^ struct tag *parent; \/* parent of this element *\/$/;" m struct:tag typeref:struct:tag::tag file: +parent android/freetype/src/pshinter/pshalgo.h /^ PSH_Hint parent;$/;" m struct:PSH_HintRec_ +parent src/picasso_objects.h /^ struct _ps_context* parent;$/;" m struct:_ps_context typeref:struct:_ps_context::_ps_context +parent tools/gyp/build/lib/gyp/generator/xcode.py /^ parent=xct)$/;" v +parent tools/gyp/pylib/gyp/generator/xcode.py /^ parent=xct)$/;" v +parentParser android/expat/lib/xmlparse.c /^#define parentParser /;" d file: +parse android/freetype/include/freetype/internal/psaux.h /^ (*parse)( AFM_Parser parser );$/;" m struct:AFM_Parser_FuncsRec_ +parse include/freetype/internal/psaux.h /^ (*parse)( AFM_Parser parser );$/;" m struct:AFM_Parser_FuncsRec_ +parse tools/gyp/tools/pretty_vcproj.py /^from xml.dom.minidom import parse$/;" i +parseEndByteIndex android/expat/lib/xmlparse.c /^#define parseEndByteIndex /;" d file: +parseEndPtr android/expat/lib/xmlparse.c /^#define parseEndPtr /;" d file: +parsePseudoAttribute android/expat/lib/xmltok.c /^parsePseudoAttribute(const ENCODING *enc,$/;" f file: +parse_args tools/gyp/build/lib/gyp/__init__.py /^ def parse_args(self, *args):$/;" m class:RegeneratableOptionParser +parse_args tools/gyp/pylib/gyp/__init__.py /^ def parse_args(self, *args):$/;" m class:RegeneratableOptionParser +parse_callback android/freetype/include/freetype/internal/psaux.h /^ T1_Decoder_Callback parse_callback;$/;" m struct:T1_DecoderRec_ +parse_callback include/freetype/internal/psaux.h /^ T1_Decoder_Callback parse_callback;$/;" m struct:T1_DecoderRec_ +parse_charstrings android/freetype/include/freetype/internal/psaux.h /^ (*parse_charstrings)( T1_Decoder decoder,$/;" m struct:T1_Decoder_FuncsRec_ +parse_charstrings include/freetype/internal/psaux.h /^ (*parse_charstrings)( T1_Decoder decoder,$/;" m struct:T1_Decoder_FuncsRec_ +parse_state android/freetype/include/freetype/internal/psaux.h /^ T1_ParseState parse_state;$/;" m struct:T1_BuilderRec_ +parse_state include/freetype/internal/psaux.h /^ T1_ParseState parse_state;$/;" m struct:T1_BuilderRec_ +parser android/expat/lib/expat.h /^XMLPARSEAPI(XML_Index) XML_GetCurrentByteIndex(XML_Parser parser);$/;" v +parser android/expat/lib/expat.h /^XMLPARSEAPI(XML_Size) XML_GetCurrentColumnNumber(XML_Parser parser);$/;" v +parser android/expat/lib/expat.h /^XMLPARSEAPI(XML_Size) XML_GetCurrentLineNumber(XML_Parser parser);$/;" v +parser android/expat/lib/expat.h /^XML_DefaultCurrent(XML_Parser parser);$/;" v +parser android/expat/lib/expat.h /^XML_GetAttributeInfo(XML_Parser parser);$/;" v +parser android/expat/lib/expat.h /^XML_GetBase(XML_Parser parser);$/;" v +parser android/expat/lib/expat.h /^XML_GetCurrentByteCount(XML_Parser parser);$/;" v +parser android/expat/lib/expat.h /^XML_GetErrorCode(XML_Parser parser);$/;" v +parser android/expat/lib/expat.h /^XML_GetIdAttributeIndex(XML_Parser parser);$/;" v +parser android/expat/lib/expat.h /^XML_GetSpecifiedAttributeCount(XML_Parser parser);$/;" v +parser android/expat/lib/expat.h /^XML_ParserFree(XML_Parser parser);$/;" v +parser android/expat/lib/expat.h /^XML_ResumeParser(XML_Parser parser);$/;" v +parser android/expat/lib/expat.h /^XML_UseParserAsHandlerArg(XML_Parser parser);$/;" v +parser android/freetype/src/psaux/afmparse.h /^ afm_parser_done( AFM_Parser parser );$/;" v +parser android/freetype/src/psaux/afmparse.h /^ afm_parser_parse( AFM_Parser parser );$/;" v +parser android/freetype/src/psaux/psobjs.h /^ ps_parser_done( PS_Parser parser );$/;" v +parser android/freetype/src/psaux/psobjs.h /^ ps_parser_skip_PS_token( PS_Parser parser );$/;" v +parser android/freetype/src/psaux/psobjs.h /^ ps_parser_skip_spaces( PS_Parser parser );$/;" v +parser android/freetype/src/psaux/psobjs.h /^ ps_parser_to_int( PS_Parser parser );$/;" v +parser include/expat.h /^XMLPARSEAPI(XML_Index) XML_GetCurrentByteIndex(XML_Parser parser);$/;" v +parser include/expat.h /^XMLPARSEAPI(XML_Size) XML_GetCurrentColumnNumber(XML_Parser parser);$/;" v +parser include/expat.h /^XMLPARSEAPI(XML_Size) XML_GetCurrentLineNumber(XML_Parser parser);$/;" v +parser include/expat.h /^XML_DefaultCurrent(XML_Parser parser);$/;" v +parser include/expat.h /^XML_GetAttributeInfo(XML_Parser parser);$/;" v +parser include/expat.h /^XML_GetBase(XML_Parser parser);$/;" v +parser include/expat.h /^XML_GetCurrentByteCount(XML_Parser parser);$/;" v +parser include/expat.h /^XML_GetErrorCode(XML_Parser parser);$/;" v +parser include/expat.h /^XML_GetIdAttributeIndex(XML_Parser parser);$/;" v +parser include/expat.h /^XML_GetSpecifiedAttributeCount(XML_Parser parser);$/;" v +parser include/expat.h /^XML_ParserFree(XML_Parser parser);$/;" v +parser include/expat.h /^XML_ResumeParser(XML_Parser parser);$/;" v +parser include/expat.h /^XML_UseParserAsHandlerArg(XML_Parser parser);$/;" v +parserCreate android/expat/lib/xmlparse.c /^parserCreate(const XML_Char *encodingName,$/;" f file: +parserInit android/expat/lib/xmlparse.c /^parserInit(XML_Parser parser, const XML_Char *encodingName)$/;" f file: +parsing android/expat/lib/expat.h /^ enum XML_Parsing parsing;$/;" m struct:__anon4 typeref:enum:__anon4::XML_Parsing +parsing include/expat.h /^ enum XML_Parsing parsing;$/;" m struct:__anon50 typeref:enum:__anon50::XML_Parsing +particle demos/flowers.c /^}particle;$/;" t typeref:struct:__anon37 file: +password android/freetype/include/freetype/t1tables.h /^ FT_Long password;$/;" m struct:PS_PrivateRec_ +password include/freetype/t1tables.h /^ FT_Long password;$/;" m struct:PS_PrivateRec_ +pat565 android/jni/pat565.h /^} pat565 = {$/;" v typeref:struct:_pat565 +path demos/flowers.c /^static ps_path * path = 0;$/;" v file: +path src/picasso_objects.h /^ graphic_path path; $/;" m struct:picasso::clip_area +path src/picasso_objects.h /^ picasso::graphic_path path;$/;" m struct:_ps_context +path src/picasso_objects.h /^ picasso::graphic_path path;$/;" m struct:_ps_path +path tools/gyp/build/lib/gyp/__init__.py /^import os.path$/;" i +path tools/gyp/build/lib/gyp/common.py /^import os.path$/;" i +path tools/gyp/build/lib/gyp/generator/eclipse.py /^import os.path$/;" i +path tools/gyp/build/lib/gyp/generator/ninja.py /^import os.path$/;" i +path tools/gyp/build/lib/gyp/generator/scons.py /^import os.path$/;" i +path tools/gyp/build/lib/gyp/input.py /^import os.path$/;" i +path tools/gyp/build/lib/gyp/xcode_emulation.py /^import os.path$/;" i +path tools/gyp/pylib/gyp/__init__.py /^import os.path$/;" i +path tools/gyp/pylib/gyp/common.py /^import os.path$/;" i +path tools/gyp/pylib/gyp/generator/eclipse.py /^import os.path$/;" i +path tools/gyp/pylib/gyp/generator/ninja.py /^import os.path$/;" i +path tools/gyp/pylib/gyp/generator/scons.py /^import os.path$/;" i +path tools/gyp/pylib/gyp/input.py /^import os.path$/;" i +path tools/gyp/pylib/gyp/xcode_emulation.py /^import os.path$/;" i +pathData demos/tiger.c /^}pathData;$/;" t typeref:struct:_pathData file: +path_adaptor src/picasso_font.h /^ graphic_path& path_adaptor(void) { return m_path_adaptor; }$/;" f class:picasso::font_adapter +path_begun android/freetype/src/cff/cffgload.h /^ FT_Bool path_begun;$/;" m struct:CFF_Builder_ +path_cmd src/include/graphic_base.h /^} path_cmd;$/;" t namespace:picasso typeref:enum:picasso::__anon198 +path_cmd_catrom src/include/graphic_base.h /^ path_cmd_catrom = 6, \/\/path_cmd_catrom$/;" e enum:picasso::__anon198 +path_cmd_curve3 src/include/graphic_base.h /^ path_cmd_curve3 = 3, \/\/path_cmd_curve3 $/;" e enum:picasso::__anon198 +path_cmd_curve4 src/include/graphic_base.h /^ path_cmd_curve4 = 4, \/\/path_cmd_curve4 $/;" e enum:picasso::__anon198 +path_cmd_curveN src/include/graphic_base.h /^ path_cmd_curveN = 5, \/\/path_cmd_curveN$/;" e enum:picasso::__anon198 +path_cmd_end_poly src/include/graphic_base.h /^ path_cmd_end_poly = 0x0F, \/\/path_cmd_end_poly$/;" e enum:picasso::__anon198 +path_cmd_line_to src/include/graphic_base.h /^ path_cmd_line_to = 2, \/\/path_cmd_line_to $/;" e enum:picasso::__anon198 +path_cmd_mask src/include/graphic_base.h /^ path_cmd_mask = 0x0F \/\/path_cmd_mask $/;" e enum:picasso::__anon198 +path_cmd_move_to src/include/graphic_base.h /^ path_cmd_move_to = 1, \/\/path_cmd_move_to $/;" e enum:picasso::__anon198 +path_cmd_stop src/include/graphic_base.h /^ path_cmd_stop = 0, \/\/path_cmd_stop $/;" e enum:picasso::__anon198 +path_cmd_ubspline src/include/graphic_base.h /^ path_cmd_ubspline = 7, \/\/path_cmd_ubspline$/;" e enum:picasso::__anon198 +path_flags src/include/graphic_base.h /^} path_flags;$/;" t namespace:picasso typeref:enum:picasso::__anon199 +path_flags_ccw src/include/graphic_base.h /^ path_flags_ccw = 0x10, \/\/path_flags_ccw $/;" e enum:picasso::__anon199 +path_flags_close src/include/graphic_base.h /^ path_flags_close = 0x40, \/\/path_flags_close$/;" e enum:picasso::__anon199 +path_flags_cw src/include/graphic_base.h /^ path_flags_cw = 0x20, \/\/path_flags_cw $/;" e enum:picasso::__anon199 +path_flags_mask src/include/graphic_base.h /^ path_flags_mask = 0xF0 \/\/path_flags_mask $/;" e enum:picasso::__anon199 +path_flags_none src/include/graphic_base.h /^ path_flags_none = 0, \/\/path_flags_none $/;" e enum:picasso::__anon199 +path_length src/include/graphic_helper.h /^inline scalar path_length(vertex_source& vs, unsigned int path_id = 0)$/;" f namespace:picasso +path_sections tools/gyp/build/lib/gyp/input.py /^path_sections = []$/;" v +path_sections tools/gyp/pylib/gyp/input.py /^path_sections = []$/;" v +path_tree_re tools/gyp/build/lib/gyp/xcodeproj_file.py /^ path_tree_re = re.compile('^\\\\$\\\\((.*)\\\\)(\/(.*)|)$')$/;" v class:PBXCopyFilesBuildPhase +path_tree_re tools/gyp/pylib/gyp/xcodeproj_file.py /^ path_tree_re = re.compile('^\\\\$\\\\((.*)\\\\)(\/(.*)|)$')$/;" v class:PBXCopyFilesBuildPhase +path_tree_to_subfolder tools/gyp/build/lib/gyp/xcodeproj_file.py /^ path_tree_to_subfolder = {$/;" v class:PBXCopyFilesBuildPhase +path_tree_to_subfolder tools/gyp/pylib/gyp/xcodeproj_file.py /^ path_tree_to_subfolder = {$/;" v class:PBXCopyFilesBuildPhase +pathname android/freetype/include/freetype/freetype.h /^ FT_String* pathname;$/;" m struct:FT_Open_Args_ +pathname android/freetype/include/freetype/ftsystem.h /^ FT_StreamDesc pathname;$/;" m struct:FT_StreamRec_ +pathname include/freetype/freetype.h /^ FT_String* pathname;$/;" m struct:FT_Open_Args_ +pathname include/freetype/ftsystem.h /^ FT_StreamDesc pathname;$/;" m struct:FT_StreamRec_ +paths demos/subwaymap.c /^ps_path* paths[NUM_PATHS];$/;" v +pattern_holder src/gfx/gfx_painter.h /^ } pattern_holder;$/;" t class:gfx::gfx_painter typeref:struct:gfx::gfx_painter::__anon65 +pattern_type src/gfx/gfx_painter_helper.h /^ typedef pattern_wrapper pattern_type;$/;" t struct:gfx::painter_raster +pattern_wrap src/gfx/gfx_painter.h /^ pattern_wrapper* pattern_wrap(int xtype, int ytype, pixfmt& fmt)$/;" f class:gfx::gfx_painter +pattern_wrapper src/gfx/gfx_pixfmt_wrapper.h /^ pattern_wrapper() {}$/;" f class:gfx::pattern_wrapper +pattern_wrapper src/gfx/gfx_pixfmt_wrapper.h /^class pattern_wrapper$/;" c namespace:gfx +pattern_wrapper_adaptor src/gfx/gfx_pixfmt_wrapper.h /^ explicit pattern_wrapper_adaptor(const Pixfmt& fmt)$/;" f class:gfx::pattern_wrapper_adaptor +pattern_wrapper_adaptor src/gfx/gfx_pixfmt_wrapper.h /^class pattern_wrapper_adaptor : public pattern_wrapper$/;" c namespace:gfx +pb test/path_func.c /^static ps_path * pb;$/;" v file: +pbxcp tools/gyp/build/lib/gyp/generator/xcode.py /^ pbxcp = gyp.xcodeproj_file.PBXCopyFilesBuildPhase({$/;" v +pbxcp tools/gyp/build/lib/gyp/generator/xcode.py /^ pbxcp = pbxcp_dict.get(dest, None)$/;" v +pbxcp tools/gyp/pylib/gyp/generator/xcode.py /^ pbxcp = gyp.xcodeproj_file.PBXCopyFilesBuildPhase({$/;" v +pbxcp tools/gyp/pylib/gyp/generator/xcode.py /^ pbxcp = pbxcp_dict.get(dest, None)$/;" v +pbxcp_dict tools/gyp/build/lib/gyp/generator/xcode.py /^ pbxcp_dict = {}$/;" v +pbxcp_dict tools/gyp/pylib/gyp/generator/xcode.py /^ pbxcp_dict = {}$/;" v +pc test/alpha_func.c /^static ps_canvas * pc;$/;" v file: +pclt android/freetype/include/freetype/internal/tttypes.h /^ TT_PCLT pclt;$/;" m struct:TT_FaceRec_ +pclt include/freetype/internal/tttypes.h /^ TT_PCLT pclt;$/;" m struct:TT_FaceRec_ +pedantic_hinting android/freetype/src/truetype/ttinterp.h /^ FT_Bool pedantic_hinting; \/* true if pedantic interpretation *\/$/;" m struct:TT_ExecContextRec_ +pen src/picasso_objects.h /^ graphic_pen pen;$/;" m struct:picasso::context_state +pen_style_dash src/picasso_objects.h /^ pen_style_dash = 1,$/;" e enum:picasso::__anon224 +pen_style_solid src/picasso_objects.h /^ pen_style_solid = 0,$/;" e enum:picasso::__anon224 +perceive_polygon_orientation src/core/graphic_path.cpp /^unsigned int graphic_path::perceive_polygon_orientation(unsigned int start, unsigned int end)$/;" f class:picasso::graphic_path +period android/freetype/src/truetype/ttinterp.h /^ FT_F26Dot6 period; \/* values used for the *\/$/;" m struct:TT_ExecContextRec_ +pf test/text_func.c /^static ps_font* pf;$/;" v file: +phase android/freetype/src/truetype/ttinterp.h /^ FT_F26Dot6 phase; \/* `SuperRounding' *\/$/;" m struct:TT_ExecContextRec_ +pi test/alpha_func.c /^static ps_image * pi;$/;" v file: +pi test/bitblt_func.c /^static ps_image * pi;$/;" v file: +pi test/blur_func.c /^static ps_image * pi;$/;" v file: +pi test/clip_func.c /^static ps_image * pi;$/;" v file: +pi test/composite_func.c /^static ps_image * pi;$/;" v file: +pi test/gamma_func.c /^static ps_image * pi;$/;" v file: +pi test/gcstate_func.c /^static ps_image * pi;$/;" v file: +pi test/mask_func.c /^static ps_image * pi;$/;" v file: +pi test/part_func.c /^static ps_image * pi;$/;" v file: +pi test/path_func.c /^static ps_image * pi;$/;" v file: +pi test/pattern_func.c /^static ps_image * pi;$/;" v file: +pi test/shadow_func.c /^static ps_image * pi;$/;" v file: +pi test/text_func.c /^static ps_image * pi;$/;" v file: +pi test/thread_func.c /^static ps_image * pi;$/;" v file: +pic demos/lake.c /^static picture* pic = 0;$/;" v file: +pic_container include/freetype/internal/ftobjs.h /^ FT_PIC_Container pic_container;$/;" m struct:FT_LibraryRec_ +picasso src/core/curve.cpp /^namespace picasso {$/;" n file: +picasso src/core/device.cpp /^namespace picasso {$/;" n file: +picasso src/core/graphic_path.cpp /^namespace picasso {$/;" n file: +picasso src/include/color_type.h /^namespace picasso {$/;" n +picasso src/include/convert.h /^namespace picasso {$/;" n +picasso src/include/curve.h /^namespace picasso {$/;" n +picasso src/include/data_vector.h /^namespace picasso {$/;" n +picasso src/include/device.h /^namespace picasso {$/;" n +picasso src/include/geometry.h /^namespace picasso {$/;" n +picasso src/include/graphic_base.h /^namespace picasso {$/;" n +picasso src/include/graphic_helper.h /^namespace picasso {$/;" n +picasso src/include/graphic_path.h /^namespace picasso {$/;" n +picasso src/include/interfaces.h /^namespace picasso {$/;" n +picasso src/include/refptr.h /^namespace picasso {$/;" n +picasso src/include/shared.h /^namespace picasso {$/;" n +picasso src/include/vertex.h /^namespace picasso {$/;" n +picasso src/include/vertex_dist.h /^namespace picasso {$/;" n +picasso src/picasso_api.cpp /^namespace picasso {$/;" n file: +picasso src/picasso_canvas.cpp /^namespace picasso {$/;" n file: +picasso src/picasso_font.cpp /^namespace picasso {$/;" n file: +picasso src/picasso_font.h /^namespace picasso {$/;" n +picasso src/picasso_font_api.cpp /^namespace picasso {$/;" n file: +picasso src/picasso_font_cache.h /^namespace picasso {$/;" n +picasso src/picasso_gpc.cpp /^namespace picasso {$/;" n file: +picasso src/picasso_gpc.h /^namespace picasso {$/;" n +picasso src/picasso_gradient.cpp /^namespace picasso {$/;" n file: +picasso src/picasso_gradient.h /^namespace picasso {$/;" n +picasso src/picasso_mask.cpp /^namespace picasso {$/;" n file: +picasso src/picasso_mask.h /^namespace picasso {$/;" n +picasso src/picasso_matrix.cpp /^namespace picasso {$/;" n file: +picasso src/picasso_matrix.h /^namespace picasso {$/;" n +picasso src/picasso_matrix_api.cpp /^namespace picasso {$/;" n file: +picasso src/picasso_objects.h /^namespace picasso {$/;" n +picasso src/picasso_painter.cpp /^namespace picasso {$/;" n file: +picasso src/picasso_painter.h /^namespace picasso {$/;" n +picasso src/picasso_path.cpp /^namespace picasso {$/;" n file: +picasso src/picasso_private.h /^namespace picasso {$/;" n +picasso src/picasso_raster_adapter.cpp /^namespace picasso {$/;" n file: +picasso src/picasso_raster_adapter.h /^namespace picasso {$/;" n +picasso src/picasso_rendering_buffer.cpp /^namespace picasso {$/;" n file: +picasso src/picasso_rendering_buffer.h /^namespace picasso {$/;" n +picture demos/interface.h /^}picture;$/;" t typeref:struct:_picture +pitch android/freetype/include/freetype/ftcache.h /^ FT_Short pitch;$/;" m struct:FTC_SBitRec_ +pitch android/freetype/include/freetype/ftimage.h /^ int pitch;$/;" m struct:FT_Bitmap_ +pitch android/jni/pat565.h /^ int pitch;$/;" m struct:_pat565 +pitch android/jni/selt2565.h /^ int pitch;$/;" m struct:_selt2565 +pitch include/freetype/ftcache.h /^ FT_Short pitch;$/;" m struct:FTC_SBitRec_ +pitch include/freetype/ftimage.h /^ int pitch;$/;" m struct:FT_Bitmap_ +pitch_and_family android/freetype/include/freetype/ftwinfnt.h /^ FT_Byte pitch_and_family;$/;" m struct:FT_WinFNT_HeaderRec_ +pitch_and_family include/freetype/ftwinfnt.h /^ FT_Byte pitch_and_family;$/;" m struct:FT_WinFNT_HeaderRec_ +pix_fmt src/include/color_type.h /^} pix_fmt;$/;" t namespace:picasso typeref:enum:picasso::__anon184 +pix_fmt_abgr src/include/color_type.h /^ pix_fmt_abgr,$/;" e enum:picasso::__anon184 +pix_fmt_argb src/include/color_type.h /^ pix_fmt_argb,$/;" e enum:picasso::__anon184 +pix_fmt_bgr src/include/color_type.h /^ pix_fmt_bgr,$/;" e enum:picasso::__anon184 +pix_fmt_bgra src/include/color_type.h /^ pix_fmt_bgra,$/;" e enum:picasso::__anon184 +pix_fmt_rgb src/include/color_type.h /^ pix_fmt_rgb,$/;" e enum:picasso::__anon184 +pix_fmt_rgb555 src/include/color_type.h /^ pix_fmt_rgb555,$/;" e enum:picasso::__anon184 +pix_fmt_rgb565 src/include/color_type.h /^ pix_fmt_rgb565,$/;" e enum:picasso::__anon184 +pix_fmt_rgba src/include/color_type.h /^ pix_fmt_rgba,$/;" e enum:picasso::__anon184 +pix_height android/freetype/include/freetype/ftcache.h /^ FT_UShort pix_height;$/;" m struct:FTC_FontRec_ +pix_height include/freetype/ftcache.h /^ FT_UShort pix_height;$/;" m struct:FTC_FontRec_ +pix_ptr src/gfx/gfx_pixfmt_rgb.h /^ byte* pix_ptr(int x, int y) const$/;" f class:gfx::pixfmt_blender_rgb +pix_ptr src/gfx/gfx_pixfmt_rgb16.h /^ byte* pix_ptr(int x, int y) const$/;" f class:gfx::pixfmt_blender_rgb16 +pix_ptr src/gfx/gfx_pixfmt_rgba.h /^ byte* pix_ptr(int x, int y) const$/;" f class:gfx::pixfmt_blender_rgba +pix_ptr src/gfx/gfx_pixfmt_wrapper.h /^ byte* pix_ptr(int x, int y)$/;" f class:gfx::gfx_pixfmt_wrapper +pix_ptr src/gfx/gfx_pixfmt_wrapper.h /^ const byte* pix_ptr(int x, int y) const$/;" f class:gfx::gfx_pixfmt_wrapper +pix_width android/freetype/include/freetype/ftcache.h /^ FT_UShort pix_width;$/;" m struct:FTC_FontRec_ +pix_width include/freetype/ftcache.h /^ FT_UShort pix_width;$/;" m struct:FTC_FontRec_ +pix_width src/gfx/gfx_image_accessors.h /^ pix_width = PixFmt::pix_width $/;" e enum:gfx::image_accessor_wrap::__anon58 +pix_width src/gfx/gfx_image_accessors.h /^ pix_width = PixFmt::pix_width$/;" e enum:gfx::image_accessor::__anon57 +pix_width src/gfx/gfx_pixfmt_rgb.h /^ pix_width = sizeof(value_type) * 3$/;" e enum:gfx::pixfmt_blender_rgb::__anon93 +pix_width src/gfx/gfx_pixfmt_rgb16.h /^ pix_width = sizeof(pixel_type)$/;" e enum:gfx::pixfmt_blender_rgb16::__anon121 +pix_width src/gfx/gfx_pixfmt_rgba.h /^ pix_width = sizeof(pixel_type)$/;" e enum:gfx::pixfmt_blender_rgba::__anon148 +pix_width src/gfx/gfx_pixfmt_wrapper.h /^ pix_width = pixfmt_type::pix_width,$/;" e enum:gfx::gfx_pixfmt_wrapper::__anon149 +pix_width src/gfx/gfx_pixfmt_wrapper.h /^ enum { pix_width = pixfmt_type::pix_width };$/;" e enum:gfx::pattern_wrapper::__anon150 +pixa test/testGtk2.c /^GdkPixbuf * pixa;$/;" v +pixb test/testGtk2.c /^GdkPixbuf * pixb;$/;" v +pixbuf demos/platform_gtk2.c /^GdkPixbuf * pixbuf;$/;" v +pixbuf test/testGtk2.c /^GdkPixbuf * pixbuf;$/;" v +pixel android/freetype/include/freetype/ftcache.h /^ FT_Int pixel;$/;" m struct:FTC_ScalerRec_ +pixel include/freetype/ftcache.h /^ FT_Int pixel;$/;" m struct:FTC_ScalerRec_ +pixel src/gfx/gfx_blur.h /^ color_type pixel(int x, int y) const$/;" f class:gfx::pixfmt_transformer +pixel src/gfx/gfx_image_accessors.h /^ const byte* pixel(void) const$/;" f class:gfx::image_accessor +pixel src/gfx/gfx_mask_layer.h /^ color_type pixel(int x, int y)$/;" f class:gfx::gfx_pixfmt_amask_adaptor +pixel src/gfx/gfx_mask_layer.h /^ cover_type pixel(int x, int y) const$/;" f class:gfx::gfx_alpha_mask_u8 +pixel src/gfx/gfx_pixfmt_rgb.h /^ color_type pixel(int x, int y) const$/;" f class:gfx::pixfmt_blender_rgb +pixel src/gfx/gfx_pixfmt_rgb16.h /^ color_type pixel(int x, int y) const$/;" f class:gfx::pixfmt_blender_rgb16 +pixel src/gfx/gfx_pixfmt_rgba.h /^ color_type pixel(int x, int y) const$/;" f class:gfx::pixfmt_blender_rgba +pixel src/gfx/gfx_pixfmt_wrapper.h /^ color_type pixel(int x, int y)$/;" f class:gfx::gfx_pixfmt_wrapper +pixel_format src/gfx/gfx_painter.h /^inline pix_fmt gfx_painter::pixel_format(void) const$/;" f class:gfx::gfx_painter +pixel_format src/gfx/gfx_painter.h /^inline pix_fmt gfx_painter::pixel_format(void) const$/;" f class:gfx::gfx_painter +pixel_format src/gfx/gfx_painter.h /^inline pix_fmt gfx_painter::pixel_format(void) const$/;" f class:gfx::gfx_painter +pixel_format src/gfx/gfx_painter.h /^inline pix_fmt gfx_painter::pixel_format(void) const$/;" f class:gfx::gfx_painter +pixel_format src/gfx/gfx_painter.h /^inline pix_fmt gfx_painter::pixel_format(void) const$/;" f class:gfx::gfx_painter +pixel_format src/gfx/gfx_painter.h /^inline pix_fmt gfx_painter::pixel_format(void) const$/;" f class:gfx::gfx_painter +pixel_format src/gfx/gfx_painter.h /^inline pix_fmt gfx_painter::pixel_format(void) const$/;" f class:gfx::gfx_painter +pixel_format src/gfx/gfx_painter.h /^inline pix_fmt gfx_painter::pixel_format(void) const$/;" f class:gfx::gfx_painter +pixel_height android/freetype/include/freetype/ftwinfnt.h /^ FT_UShort pixel_height;$/;" m struct:FT_WinFNT_HeaderRec_ +pixel_height include/freetype/ftwinfnt.h /^ FT_UShort pixel_height;$/;" m struct:FT_WinFNT_HeaderRec_ +pixel_in_path src/gfx/gfx_renderer.h /^ bool pixel_in_path(int x, int y)$/;" f class:gfx::gfx_renderer +pixel_mode android/freetype/include/freetype/ftimage.h /^ char pixel_mode;$/;" m struct:FT_Bitmap_ +pixel_mode include/freetype/ftimage.h /^ char pixel_mode;$/;" m struct:FT_Bitmap_ +pixel_type src/gfx/gfx_image_accessors.h /^ typedef typename PixFmt::pixel_type pixel_type;$/;" t class:gfx::image_accessor +pixel_type src/gfx/gfx_image_accessors.h /^ typedef typename PixFmt::pixel_type pixel_type;$/;" t class:gfx::image_accessor_wrap +pixel_type src/gfx/gfx_pixfmt_rgb.h /^ typedef uint32_t pixel_type;$/;" t class:gfx::pixfmt_blender_rgb +pixel_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename blender_type::pixel_type pixel_type;$/;" t class:gfx::pixfmt_blender_rgb16 +pixel_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef uint16_t pixel_type;$/;" t class:gfx::blender_rgb555 +pixel_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef uint16_t pixel_type;$/;" t class:gfx::blender_rgb565 +pixel_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef uint16_t pixel_type;$/;" t struct:gfx::blend_op_table_rgb_16 +pixel_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef uint16_t pixel_type;$/;" t struct:gfx::composite_op_rgb_16_clear +pixel_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef uint16_t pixel_type;$/;" t struct:gfx::composite_op_rgb_16_color_burn +pixel_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef uint16_t pixel_type;$/;" t struct:gfx::composite_op_rgb_16_color_dodge +pixel_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef uint16_t pixel_type;$/;" t struct:gfx::composite_op_rgb_16_contrast +pixel_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef uint16_t pixel_type;$/;" t struct:gfx::composite_op_rgb_16_darken +pixel_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef uint16_t pixel_type;$/;" t struct:gfx::composite_op_rgb_16_difference +pixel_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef uint16_t pixel_type;$/;" t struct:gfx::composite_op_rgb_16_dst +pixel_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef uint16_t pixel_type;$/;" t struct:gfx::composite_op_rgb_16_dst_atop +pixel_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef uint16_t pixel_type;$/;" t struct:gfx::composite_op_rgb_16_dst_in +pixel_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef uint16_t pixel_type;$/;" t struct:gfx::composite_op_rgb_16_dst_out +pixel_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef uint16_t pixel_type;$/;" t struct:gfx::composite_op_rgb_16_dst_over +pixel_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef uint16_t pixel_type;$/;" t struct:gfx::composite_op_rgb_16_exclusion +pixel_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef uint16_t pixel_type;$/;" t struct:gfx::composite_op_rgb_16_hard_light +pixel_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef uint16_t pixel_type;$/;" t struct:gfx::composite_op_rgb_16_invert +pixel_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef uint16_t pixel_type;$/;" t struct:gfx::composite_op_rgb_16_invert_rgb +pixel_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef uint16_t pixel_type;$/;" t struct:gfx::composite_op_rgb_16_lighten +pixel_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef uint16_t pixel_type;$/;" t struct:gfx::composite_op_rgb_16_minus +pixel_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef uint16_t pixel_type;$/;" t struct:gfx::composite_op_rgb_16_multiply +pixel_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef uint16_t pixel_type;$/;" t struct:gfx::composite_op_rgb_16_overlay +pixel_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef uint16_t pixel_type;$/;" t struct:gfx::composite_op_rgb_16_plus +pixel_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef uint16_t pixel_type;$/;" t struct:gfx::composite_op_rgb_16_screen +pixel_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef uint16_t pixel_type;$/;" t struct:gfx::composite_op_rgb_16_soft_light +pixel_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef uint16_t pixel_type;$/;" t struct:gfx::composite_op_rgb_16_src +pixel_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef uint16_t pixel_type;$/;" t struct:gfx::composite_op_rgb_16_src_atop +pixel_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef uint16_t pixel_type;$/;" t struct:gfx::composite_op_rgb_16_src_in +pixel_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef uint16_t pixel_type;$/;" t struct:gfx::composite_op_rgb_16_src_out +pixel_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef uint16_t pixel_type;$/;" t struct:gfx::composite_op_rgb_16_src_over +pixel_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef uint16_t pixel_type;$/;" t struct:gfx::composite_op_rgb_16_xor +pixel_type src/gfx/gfx_pixfmt_rgba.h /^ typedef uint32_t pixel_type;$/;" t class:gfx::pixfmt_blender_rgba +pixel_type src/gfx/gfx_pixfmt_wrapper.h /^ typedef typename pixfmt_type::pixel_type pixel_type;$/;" t class:gfx::gfx_pixfmt_wrapper +pixel_type src/gfx/gfx_pixfmt_wrapper.h /^ typedef typename pixfmt_type::pixel_type pixel_type;$/;" t class:gfx::pattern_wrapper +pixel_type src/gfx/gfx_span_image_filters.h /^ typedef typename source_type::pixel_type pixel_type;$/;" t class:gfx::gfx_span_image_filter_rgb16 +pixel_type src/gfx/gfx_span_image_filters.h /^ typedef typename source_type::pixel_type pixel_type;$/;" t class:gfx::gfx_span_image_filter_rgb16_nn +pixel_width android/freetype/include/freetype/ftwinfnt.h /^ FT_UShort pixel_width;$/;" m struct:FT_WinFNT_HeaderRec_ +pixel_width include/freetype/ftwinfnt.h /^ FT_UShort pixel_width;$/;" m struct:FT_WinFNT_HeaderRec_ +pixfmt src/gfx/gfx_painter.h /^ typedef gfx_pixfmt_wrapper pixfmt;$/;" t class:gfx::gfx_painter +pixfmt_abgr32 src/gfx/gfx_pixfmt_rgba.h /^typedef pixfmt_blender_rgba pixfmt_abgr32; \/\/ pixfmt_abgr32$/;" t namespace:gfx +pixfmt_argb32 src/gfx/gfx_pixfmt_rgba.h /^typedef pixfmt_blender_rgba pixfmt_argb32; \/\/ pixfmt_argb32$/;" t namespace:gfx +pixfmt_bgr24 src/gfx/gfx_pixfmt_rgb.h /^typedef pixfmt_blender_rgb pixfmt_bgr24; \/\/ pixfmt_bgr24$/;" t namespace:gfx +pixfmt_bgra32 src/gfx/gfx_pixfmt_rgba.h /^typedef pixfmt_blender_rgba pixfmt_bgra32; \/\/ pixfmt_bgra32$/;" t namespace:gfx +pixfmt_blender_rgb src/gfx/gfx_pixfmt_rgb.h /^ explicit pixfmt_blender_rgb(buffer_type& rb, unsigned int op = comp_op_src_over, unsigned int alpha = base_mask)$/;" f class:gfx::pixfmt_blender_rgb +pixfmt_blender_rgb src/gfx/gfx_pixfmt_rgb.h /^ pixfmt_blender_rgb()$/;" f class:gfx::pixfmt_blender_rgb +pixfmt_blender_rgb src/gfx/gfx_pixfmt_rgb.h /^class pixfmt_blender_rgb$/;" c namespace:gfx +pixfmt_blender_rgb16 src/gfx/gfx_pixfmt_rgb16.h /^ explicit pixfmt_blender_rgb16(buffer_type& rb, unsigned int op = comp_op_src_over, unsigned int alpha = base_mask)$/;" f class:gfx::pixfmt_blender_rgb16 +pixfmt_blender_rgb16 src/gfx/gfx_pixfmt_rgb16.h /^ pixfmt_blender_rgb16()$/;" f class:gfx::pixfmt_blender_rgb16 +pixfmt_blender_rgb16 src/gfx/gfx_pixfmt_rgb16.h /^class pixfmt_blender_rgb16$/;" c namespace:gfx +pixfmt_blender_rgba src/gfx/gfx_pixfmt_rgba.h /^ explicit pixfmt_blender_rgba(buffer_type& rb, unsigned int op = comp_op_src_over, unsigned int alpha = base_mask) $/;" f class:gfx::pixfmt_blender_rgba +pixfmt_blender_rgba src/gfx/gfx_pixfmt_rgba.h /^ pixfmt_blender_rgba()$/;" f class:gfx::pixfmt_blender_rgba +pixfmt_blender_rgba src/gfx/gfx_pixfmt_rgba.h /^class pixfmt_blender_rgba$/;" c namespace:gfx +pixfmt_rgb24 src/gfx/gfx_pixfmt_rgb.h /^typedef pixfmt_blender_rgb pixfmt_rgb24; \/\/ pixfmt_rgb24$/;" t namespace:gfx +pixfmt_rgb555 src/gfx/gfx_pixfmt_rgb16.h /^typedef pixfmt_blender_rgb16 pixfmt_rgb555; \/\/ pixfmt_rgb555$/;" t namespace:gfx +pixfmt_rgb565 src/gfx/gfx_pixfmt_rgb16.h /^typedef pixfmt_blender_rgb16 pixfmt_rgb565; \/\/ pixfmt_rgb565$/;" t namespace:gfx +pixfmt_rgba32 src/gfx/gfx_pixfmt_rgba.h /^typedef pixfmt_blender_rgba pixfmt_rgba32; \/\/ pixfmt_rgba32$/;" t namespace:gfx +pixfmt_transformer src/gfx/gfx_blur.h /^ explicit pixfmt_transformer(pixfmt_type& pixfmt)$/;" f class:gfx::pixfmt_transformer +pixfmt_transformer src/gfx/gfx_blur.h /^class pixfmt_transformer$/;" c namespace:gfx +pixfmt_type src/gfx/gfx_blur.h /^ typedef PixFmt pixfmt_type;$/;" t class:gfx::pixfmt_transformer +pixfmt_type src/gfx/gfx_mask_layer.h /^ typedef PixFmt pixfmt_type;$/;" t class:gfx::gfx_pixfmt_amask_adaptor +pixfmt_type src/gfx/gfx_pixfmt_wrapper.h /^ typedef Pixfmt pixfmt_type;$/;" t class:gfx::pattern_wrapper +pixfmt_type src/gfx/gfx_pixfmt_wrapper.h /^ typedef Pixfmt pixfmt_type;$/;" t class:gfx::gfx_pixfmt_wrapper +pixfmt_type src/gfx/gfx_renderer.h /^ typedef PixelFormat pixfmt_type;$/;" t class:gfx::gfx_renderer +pk demos/platform_gix.c /^ unsigned pk;$/;" m struct:__anon42 file: +pk demos/platform_gtk2.c /^ int pk;$/;" m struct:__anon43 file: +pk demos/platform_minigui.c /^ unsigned pk;$/;" m struct:__anon44 file: +pk demos/platform_qt4.cpp /^ int pk;$/;" m struct:__anon45 file: +platformID android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort platformID;$/;" m struct:TT_NameEntryRec_ +platformID include/freetype/internal/tttypes.h /^ FT_UShort platformID;$/;" m struct:TT_NameEntryRec_ +platform_id android/freetype/include/freetype/freetype.h /^ FT_UShort platform_id;$/;" m struct:FT_CharMapRec_ +platform_id android/freetype/include/freetype/ftsnames.h /^ FT_UShort platform_id;$/;" m struct:FT_SfntName_ +platform_id include/freetype/freetype.h /^ FT_UShort platform_id;$/;" m struct:FT_CharMapRec_ +platform_id include/freetype/ftsnames.h /^ FT_UShort platform_id;$/;" m struct:FT_SfntName_ +plistlib tools/gyp/build/lib/gyp/mac_tool.py /^import plistlib$/;" i +plistlib tools/gyp/pylib/gyp/mac_tool.py /^import plistlib$/;" i +pm test/alpha_func.c /^static ps_matrix* pm;$/;" v file: +pm test/bitblt_func.c /^static ps_matrix* pm;$/;" v file: +pm test/blur_func.c /^static ps_matrix* pm;$/;" v file: +pm test/clip_func.c /^static ps_matrix* pm;$/;" v file: +pm test/composite_func.c /^static ps_matrix* pm;$/;" v file: +pm test/gamma_func.c /^static ps_matrix* pm;$/;" v file: +pm test/gcstate_func.c /^static ps_matrix* pm;$/;" v file: +pm test/gradient_func.c /^static ps_matrix* pm;$/;" v file: +pm test/mask_func.c /^static ps_matrix* pm;$/;" v file: +pm test/part_func.c /^static ps_matrix* pm;$/;" v file: +pm test/path_func.c /^static ps_matrix* pm;$/;" v file: +pm test/pattern_func.c /^static ps_matrix* pm;$/;" v file: +pm test/shadow_func.c /^static ps_matrix* pm;$/;" v file: +pm test/text_func.c /^static ps_matrix* pm;$/;" v file: +pm test/thread_func.c /^static ps_matrix* pm;$/;" v file: +pn test/text_func.c /^static ps_matrix* pn;$/;" v file: +pod_allocator src/include/data_vector.h /^template struct pod_allocator$/;" s namespace:picasso +pod_array src/include/data_vector.h /^ pod_array()$/;" f class:picasso::pod_array +pod_array src/include/data_vector.h /^ pod_array(const pod_array& o)$/;" f class:picasso::pod_array +pod_array src/include/data_vector.h /^ pod_array(unsigned int size)$/;" f class:picasso::pod_array +pod_array src/include/data_vector.h /^template class pod_array$/;" c namespace:picasso +pod_bvector src/include/data_vector.h /^pod_bvector::pod_bvector(const pod_bvector& o) $/;" f class:picasso::pod_bvector +pod_bvector src/include/data_vector.h /^template class pod_bvector$/;" c namespace:picasso +pod_bvector src/include/data_vector.h /^template pod_bvector::pod_bvector()$/;" f class:picasso::pod_bvector +pod_bvector src/include/data_vector.h /^template pod_bvector::pod_bvector(unsigned int block_ptr_inc)$/;" f class:picasso::pod_bvector +pod_vector src/include/data_vector.h /^ pod_vector() $/;" f class:picasso::pod_vector +pod_vector src/include/data_vector.h /^template class pod_vector$/;" c namespace:picasso +pod_vector src/include/data_vector.h /^template pod_vector::pod_vector(const pod_vector& v)$/;" f class:picasso::pod_vector +pod_vector src/include/data_vector.h /^template pod_vector::pod_vector(unsigned int cap)$/;" f class:picasso::pod_vector +point src/picasso_gpc.cpp /^ vertex_s point; \/* Point of intersection *\/$/;" m struct:picasso::it_shape file: +pointer android/freetype/include/freetype/ftsystem.h /^ void* pointer;$/;" m union:FT_StreamDesc_ +pointer android/freetype/include/freetype/fttypes.h /^ const FT_Byte* pointer;$/;" m struct:FT_Data_ +pointer include/freetype/ftsystem.h /^ void* pointer;$/;" m union:FT_StreamDesc_ +pointer include/freetype/fttypes.h /^ const FT_Byte* pointer;$/;" m struct:FT_Data_ +points android/freetype/include/freetype/ftimage.h /^ FT_Vector* points; \/* the outline's points *\/$/;" m struct:FT_Outline_ +points android/freetype/src/autofit/afhints.h /^ AF_Point points;$/;" m struct:AF_GlyphHintsRec_ +points android/freetype/src/base/ftstroke.c /^ FT_Vector* points;$/;" m struct:FT_StrokeBorderRec_ file: +points android/freetype/src/pshinter/pshalgo.h /^ PSH_Point points;$/;" m struct:PSH_GlyphRec_ +points include/freetype/ftimage.h /^ FT_Vector* points; \/* the outline's points *\/$/;" m struct:FT_Outline_ +poly_subpixel_mask src/include/graphic_base.h /^ poly_subpixel_mask = poly_subpixel_scale - 1, \/\/ poly_subpixel_mask $/;" e enum:picasso::__anon200 +poly_subpixel_scale src/include/graphic_base.h /^ poly_subpixel_scale = 1 << poly_subpixel_shift, \/\/ poly_subpixel_scale $/;" e enum:picasso::__anon200 +poly_subpixel_shift src/include/graphic_base.h /^ poly_subpixel_shift = 8, \/\/ poly_subpixel_shift$/;" e enum:picasso::__anon200 +polygon_node src/picasso_gpc.cpp /^} polygon_node;$/;" t namespace:picasso typeref:struct:picasso::p_shape file: +polyline src/include/convert.h /^ polyline,$/;" e enum:picasso::conv_dash::__anon190 +pool android/expat/lib/xmlparse.c /^ STRING_POOL pool;$/;" m struct:__anon17 file: +poolAppend android/expat/lib/xmlparse.c /^poolAppend(STRING_POOL *pool, const ENCODING *enc,$/;" f file: +poolAppendChar android/expat/lib/xmlparse.c /^#define poolAppendChar(/;" d file: +poolAppendString android/expat/lib/xmlparse.c /^poolAppendString(STRING_POOL *pool, const XML_Char *s)$/;" f file: +poolChop android/expat/lib/xmlparse.c /^#define poolChop(/;" d file: +poolClear android/expat/lib/xmlparse.c /^poolClear(STRING_POOL *pool)$/;" f file: +poolCopyString android/expat/lib/xmlparse.c /^poolCopyString(STRING_POOL *pool, const XML_Char *s)$/;" f file: +poolCopyStringN android/expat/lib/xmlparse.c /^poolCopyStringN(STRING_POOL *pool, const XML_Char *s, int n)$/;" f file: +poolDestroy android/expat/lib/xmlparse.c /^poolDestroy(STRING_POOL *pool)$/;" f file: +poolDiscard android/expat/lib/xmlparse.c /^#define poolDiscard(/;" d file: +poolEnd android/expat/lib/xmlparse.c /^#define poolEnd(/;" d file: +poolFinish android/expat/lib/xmlparse.c /^#define poolFinish(/;" d file: +poolGrow android/expat/lib/xmlparse.c /^poolGrow(STRING_POOL *pool)$/;" f file: +poolInit android/expat/lib/xmlparse.c /^poolInit(STRING_POOL *pool, const XML_Memory_Handling_Suite *ms)$/;" f file: +poolLastChar android/expat/lib/xmlparse.c /^#define poolLastChar(/;" d file: +poolLength android/expat/lib/xmlparse.c /^#define poolLength(/;" d file: +poolStart android/expat/lib/xmlparse.c /^#define poolStart(/;" d file: +poolStoreString android/expat/lib/xmlparse.c /^poolStoreString(STRING_POOL *pool, const ENCODING *enc,$/;" f file: +pos android/freetype/include/freetype/ftsystem.h /^ unsigned long pos;$/;" m struct:FT_StreamRec_ +pos android/freetype/src/autofit/afhints.h /^ FT_Pos pos; \/* current position *\/$/;" m struct:AF_EdgeRec_ +pos android/freetype/src/autofit/afhints.h /^ FT_Short pos; \/* position of segment *\/$/;" m struct:AF_SegmentRec_ +pos android/freetype/src/pshinter/pshrec.h /^ FT_Int pos;$/;" m struct:PS_HintRec_ +pos include/freetype/ftsystem.h /^ unsigned long pos;$/;" m struct:FT_StreamRec_ +pos_x android/freetype/include/freetype/internal/psaux.h /^ FT_Pos pos_x;$/;" m struct:T1_BuilderRec_ +pos_x android/freetype/src/cff/cffgload.h /^ FT_Pos pos_x;$/;" m struct:CFF_Builder_ +pos_x include/freetype/internal/psaux.h /^ FT_Pos pos_x;$/;" m struct:T1_BuilderRec_ +pos_y android/freetype/include/freetype/internal/psaux.h /^ FT_Pos pos_y;$/;" m struct:T1_BuilderRec_ +pos_y android/freetype/src/cff/cffgload.h /^ FT_Pos pos_y;$/;" m struct:CFF_Builder_ +pos_y include/freetype/internal/psaux.h /^ FT_Pos pos_y;$/;" m struct:T1_BuilderRec_ +position android/expat/lib/xmlparse.c /^#define position /;" d file: +position android/expat/lib/xmltok.h /^typedef struct position {$/;" s +positionPtr android/expat/lib/xmlparse.c /^#define positionPtr /;" d file: +posixpath tools/gyp/build/lib/gyp/generator/msvs.py /^import posixpath$/;" i +posixpath tools/gyp/build/lib/gyp/generator/xcode.py /^import posixpath$/;" i +posixpath tools/gyp/build/lib/gyp/xcodeproj_file.py /^import posixpath$/;" i +posixpath tools/gyp/pylib/gyp/generator/msvs.py /^import posixpath$/;" i +posixpath tools/gyp/pylib/gyp/generator/xcode.py /^import posixpath$/;" i +posixpath tools/gyp/pylib/gyp/xcodeproj_file.py /^import posixpath$/;" i +postscript android/freetype/include/freetype/internal/tttypes.h /^ TT_Postscript postscript; \/* TrueType Postscript table *\/$/;" m struct:TT_FaceRec_ +postscript include/freetype/internal/tttypes.h /^ TT_Postscript postscript; \/* TrueType Postscript table *\/$/;" m struct:TT_FaceRec_ +postscript_name android/freetype/include/freetype/internal/tttypes.h /^ const char* postscript_name;$/;" m struct:TT_FaceRec_ +postscript_name include/freetype/internal/tttypes.h /^ const char* postscript_name;$/;" m struct:TT_FaceRec_ +postscript_names android/freetype/include/freetype/internal/tttypes.h /^ TT_Post_NamesRec postscript_names;$/;" m struct:TT_FaceRec_ +postscript_names include/freetype/internal/tttypes.h /^ TT_Post_NamesRec postscript_names;$/;" m struct:TT_FaceRec_ +power android/expat/lib/xmlparse.c /^ unsigned char power;$/;" m struct:__anon8 file: +power demos/lake.c /^static double power = 0.5;$/;" v file: +power_tens android/freetype/src/cff/cffparse.c /^ static const FT_Long power_tens[] =$/;" v file: +powf src/include/platform.h /^#define powf(/;" d +pp test/bitblt_func.c /^static ps_image * pp;$/;" v file: +pp test/part_func.c /^static ps_image * pp;$/;" v file: +pp1 android/freetype/include/freetype/internal/tttypes.h /^ FT_Vector pp1;$/;" m struct:TT_LoaderRec_ +pp1 android/freetype/src/autofit/afloader.h /^ FT_Vector pp1;$/;" m struct:AF_LoaderRec_ +pp1 android/freetype/src/truetype/ttobjs.h /^ FT_Vector pp1, pp2; \/* phantom points (horizontal) *\/$/;" m struct:TT_SubglyphRec_ +pp1 include/freetype/internal/tttypes.h /^ FT_Vector pp1;$/;" m struct:TT_LoaderRec_ +pp2 android/freetype/include/freetype/internal/tttypes.h /^ FT_Vector pp2;$/;" m struct:TT_LoaderRec_ +pp2 android/freetype/src/autofit/afloader.h /^ FT_Vector pp2;$/;" m struct:AF_LoaderRec_ +pp2 android/freetype/src/truetype/ttobjs.h /^ FT_Vector pp1, pp2; \/* phantom points (horizontal) *\/$/;" m struct:TT_SubglyphRec_ +pp2 include/freetype/internal/tttypes.h /^ FT_Vector pp2;$/;" m struct:TT_LoaderRec_ +pp3 android/freetype/include/freetype/internal/tttypes.h /^ FT_Vector pp3;$/;" m struct:TT_LoaderRec_ +pp3 android/freetype/src/truetype/ttobjs.h /^ FT_Vector pp3, pp4; \/* phantom points (vertical) *\/$/;" m struct:TT_SubglyphRec_ +pp3 include/freetype/internal/tttypes.h /^ FT_Vector pp3;$/;" m struct:TT_LoaderRec_ +pp4 android/freetype/include/freetype/internal/tttypes.h /^ FT_Vector pp4;$/;" m struct:TT_LoaderRec_ +pp4 android/freetype/src/truetype/ttobjs.h /^ FT_Vector pp3, pp4; \/* phantom points (vertical) *\/$/;" m struct:TT_SubglyphRec_ +pp4 include/freetype/internal/tttypes.h /^ FT_Vector pp4;$/;" m struct:TT_LoaderRec_ +ppem android/freetype/include/freetype/internal/tttypes.h /^ FT_Byte ppem;$/;" m struct:TT_HdmxEntryRec_ +ppem android/freetype/src/truetype/ttobjs.h /^ FT_UShort ppem; \/* maximum ppem size *\/$/;" m struct:TT_Size_Metrics_ +ppem include/freetype/internal/tttypes.h /^ FT_Byte ppem;$/;" m struct:TT_HdmxEntryRec_ +pprint tools/gyp/build/lib/gyp/generator/gypd.py /^import pprint$/;" i +pprint tools/gyp/build/lib/gyp/generator/scons.py /^import pprint$/;" i +pprint tools/gyp/pylib/gyp/generator/gypd.py /^import pprint$/;" i +pprint tools/gyp/pylib/gyp/generator/scons.py /^import pprint$/;" i +pr test/path_func.c /^static ps_path * pr;$/;" v file: +prebuild_index tools/gyp/build/lib/gyp/generator/xcode.py /^ prebuild_index = prebuild_index + 1$/;" v +prebuild_index tools/gyp/pylib/gyp/generator/xcode.py /^ prebuild_index = prebuild_index + 1$/;" v +precision android/freetype/src/raster/ftraster.c /^ Int precision;$/;" m struct:TWorker_ file: +precision_bits android/freetype/src/raster/ftraster.c /^ Int precision_bits; \/* precision related variables *\/$/;" m struct:TWorker_ file: +precision_half android/freetype/src/raster/ftraster.c /^ Int precision_half;$/;" m struct:TWorker_ file: +precision_jitter android/freetype/src/raster/ftraster.c /^ Int precision_jitter;$/;" m struct:TWorker_ file: +precision_mask android/freetype/src/raster/ftraster.c /^ Long precision_mask;$/;" m struct:TWorker_ file: +precision_shift android/freetype/src/raster/ftraster.c /^ Int precision_shift;$/;" m struct:TWorker_ file: +precision_step android/freetype/src/raster/ftraster.c /^ Int precision_step;$/;" m struct:TWorker_ file: +precomp_keys tools/gyp/build/lib/gyp/generator/msvs.py /^precomp_keys = [$/;" v +precomp_keys tools/gyp/pylib/gyp/generator/msvs.py /^precomp_keys = [$/;" v +pred src/picasso_gpc.cpp /^ struct edge_shape *pred; \/* Edge connected at the lower end *\/$/;" m struct:picasso::edge_shape typeref:struct:picasso::edge_shape::edge_shape file: +predefinedEntityName android/expat/lib/xmltok.h /^ int (PTRCALL *predefinedEntityName)(const ENCODING *,$/;" m struct:encoding +predefinedEntityName android/expat/lib/xmltok_impl.c /^PREFIX(predefinedEntityName)(const ENCODING *enc, const char *ptr,$/;" f file: +prefix android/expat/lib/xmlparse.c /^ PREFIX *prefix;$/;" m struct:__anon16 file: +prefix android/expat/lib/xmlparse.c /^ PREFIX *prefix;$/;" m struct:attribute_id file: +prefix android/expat/lib/xmlparse.c /^ const XML_Char *prefix;$/;" m struct:__anon10 file: +prefix android/expat/lib/xmlparse.c /^ struct prefix *prefix;$/;" m struct:binding typeref:struct:binding::prefix file: +prefix android/expat/lib/xmlparse.c /^typedef struct prefix {$/;" s file: +prefixLen android/expat/lib/xmlparse.c /^ int prefixLen;$/;" m struct:__anon10 file: +prefixes android/expat/lib/xmlparse.c /^ HASH_TABLE prefixes;$/;" m struct:__anon17 file: +prepare src/gfx/gfx_gradient_adapter.h /^ void prepare(void)$/;" f class:gfx::gfx_span_gradient +prepare src/gfx/gfx_scanline_renderer.h /^ void prepare(void) { }$/;" f class:gfx::gfx_renderer_scanline_aa_solid +prepare src/gfx/gfx_scanline_renderer.h /^ void prepare(void) { }$/;" f class:gfx::gfx_renderer_scanline_bin_solid +prepare src/gfx/gfx_scanline_storage.h /^ void prepare(void)$/;" f class:gfx::gfx_scanline_storage_aa +prepare src/gfx/gfx_scanline_storage.h /^ void prepare(void)$/;" f class:gfx::gfx_scanline_storage_bin +prepare src/gfx/gfx_span_image_filters.h /^ void prepare(void) { \/* do nothing, scanline raster needed. *\/ }$/;" f class:gfx::gfx_span_image_filter +preserve_pps android/freetype/include/freetype/internal/tttypes.h /^ FT_Bool preserve_pps;$/;" m struct:TT_LoaderRec_ +preserve_pps android/freetype/src/truetype/ttobjs.h /^ FT_Bool preserve_pps; \/* preserve phantom points? *\/$/;" m struct:TT_SubglyphRec_ +preserve_pps include/freetype/internal/tttypes.h /^ FT_Bool preserve_pps;$/;" m struct:TT_LoaderRec_ +pretty_vcproj tools/gyp/tools/pretty_sln.py /^import pretty_vcproj$/;" i +prettyprint_input tools/gyp/tools/pretty_gyp.py /^def prettyprint_input(lines):$/;" f +prev android/freetype/include/freetype/fttypes.h /^ FT_ListNode prev;$/;" m struct:FT_ListNodeRec_ +prev android/freetype/src/autofit/afhints.h /^ AF_Point prev; \/* previous point in contour *\/$/;" m struct:AF_PointRec_ +prev android/freetype/src/pshinter/pshalgo.h /^ PSH_Point prev;$/;" m struct:PSH_PointRec_ +prev include/freetype/fttypes.h /^ FT_ListNode prev;$/;" m struct:FT_ListNodeRec_ +prev src/include/data_vector.h /^ T& prev(unsigned int idx)$/;" f class:picasso::pod_bvector +prev src/include/data_vector.h /^ const T& prev(unsigned int idx) const$/;" f class:picasso::pod_bvector +prev src/picasso_gpc.cpp /^ struct edge_shape *prev; \/* Previous edge in the AET *\/$/;" m struct:picasso::edge_shape typeref:struct:picasso::edge_shape::edge_shape file: +prev src/picasso_gpc.cpp /^ struct st_shape *prev; \/* Previous edge in sorted list *\/$/;" m struct:picasso::st_shape typeref:struct:picasso::st_shape::st_shape file: +prevPrefixBinding android/expat/lib/xmlparse.c /^ struct binding *prevPrefixBinding;$/;" m struct:binding typeref:struct:binding::binding file: +prev_vertex src/core/graphic_path.cpp /^ unsigned int prev_vertex(scalar* x, scalar* y) const$/;" f class:picasso::graphic_path_impl +prev_vertex src/core/graphic_path.cpp /^unsigned int graphic_path::prev_vertex(scalar* x, scalar* y) const$/;" f class:picasso::graphic_path +private_dict android/freetype/include/freetype/internal/t1types.h /^ PS_PrivateRec private_dict; \/* private dictionary *\/$/;" m struct:T1_FontRec_ +private_dict android/freetype/include/freetype/t1tables.h /^ PS_PrivateRec private_dict;$/;" m struct:CID_FaceDictRec_ +private_dict android/freetype/src/cff/cfftypes.h /^ CFF_PrivateRec private_dict;$/;" m struct:CFF_SubFontRec_ +private_dict include/freetype/internal/t1types.h /^ PS_PrivateRec private_dict; \/* private dictionary *\/$/;" m struct:T1_FontRec_ +private_dict include/freetype/t1tables.h /^ PS_PrivateRec private_dict;$/;" m struct:CID_FaceDictRec_ +private_index android/freetype/src/cff/cfftypes.h /^ CFF_IndexRec private_index;$/;" m struct:CFF_FontRec_ +private_offset android/freetype/src/cff/cfftypes.h /^ FT_ULong private_offset;$/;" m struct:CFF_FontRecDictRec_ +private_size android/freetype/src/cff/cfftypes.h /^ FT_ULong private_size;$/;" m struct:CFF_FontRecDictRec_ +privates android/freetype/include/freetype/t1tables.h /^ PS_Private privates [T1_MAX_MM_DESIGNS + 1];$/;" m struct:PS_BlendRec_ +privates include/freetype/t1tables.h /^ PS_Private privates [T1_MAX_MM_DESIGNS + 1];$/;" m struct:PS_BlendRec_ +processInternalEntity android/expat/lib/xmlparse.c /^processInternalEntity(XML_Parser parser, ENTITY *entity,$/;" f file: +processXmlDecl android/expat/lib/xmlparse.c /^processXmlDecl(XML_Parser parser, int isGeneralTextEntity,$/;" f file: +processed android/expat/lib/xmlparse.c /^ int processed; \/* # of processed bytes - when suspended *\/$/;" m struct:__anon11 file: +processingInstructionHandler android/expat/lib/xmlparse.c /^#define processingInstructionHandler /;" d file: +processor android/expat/lib/xmlparse.c /^#define processor /;" d file: +projVector android/freetype/src/truetype/ttobjs.h /^ FT_UnitVector projVector;$/;" m struct:TT_GraphicsState_ +prolog0 android/expat/lib/xmlrole.c /^ prolog0, prolog1, prolog2,$/;" v file: +prolog0 android/expat/lib/xmlrole.c /^prolog0(PROLOG_STATE *state,$/;" f file: +prolog1 android/expat/lib/xmlrole.c /^ prolog0, prolog1, prolog2,$/;" v file: +prolog1 android/expat/lib/xmlrole.c /^prolog1(PROLOG_STATE *state,$/;" f file: +prolog2 android/expat/lib/xmlrole.c /^ prolog0, prolog1, prolog2,$/;" v file: +prolog2 android/expat/lib/xmlrole.c /^prolog2(PROLOG_STATE *state,$/;" f file: +prologInitProcessor android/expat/lib/xmlparse.c /^prologInitProcessor(XML_Parser parser,$/;" f file: +prologInitProcessor android/expat/lib/xmlparse.c /^static Processor prologInitProcessor;$/;" v file: +prologProcessor android/expat/lib/xmlparse.c /^prologProcessor(XML_Parser parser,$/;" f file: +prologProcessor android/expat/lib/xmlparse.c /^static Processor prologProcessor;$/;" v file: +prologState android/expat/lib/xmlparse.c /^#define prologState /;" d file: +prologTok android/expat/lib/xmltok_impl.c /^PREFIX(prologTok)(const ENCODING *enc, const char *ptr, const char *end,$/;" f file: +prolog_state android/expat/lib/xmlrole.h /^typedef struct prolog_state {$/;" s +protocolEncodingName android/expat/lib/xmlparse.c /^#define protocolEncodingName /;" d file: +proxy src/picasso_gpc.cpp /^ struct p_shape *proxy; \/* Pointer to actual structure used *\/$/;" m struct:picasso::p_shape typeref:struct:picasso::p_shape::p_shape file: +ps_arc src/picasso_api.cpp /^void PICAPI ps_arc(ps_context* ctx, const ps_point* cp, float r, $/;" f +ps_bezier_curve_to src/picasso_api.cpp /^void PICAPI ps_bezier_curve_to(ps_context* ctx, const ps_point* fcp, $/;" f +ps_bool include/picasso.h /^typedef int ps_bool;$/;" t +ps_byte include/picasso.h /^typedef unsigned char ps_byte;$/;" t +ps_canvas include/picasso.h /^typedef struct _ps_canvas ps_canvas;$/;" t typeref:struct:_ps_canvas +ps_canvas_bitblt src/picasso_canvas.cpp /^void PICAPI ps_canvas_bitblt(ps_canvas* src, const ps_rect* r, ps_canvas* dst, const ps_point* l)$/;" f +ps_canvas_create src/picasso_canvas.cpp /^ps_canvas* PICAPI ps_canvas_create(ps_color_format fmt, int w, int h)$/;" f +ps_canvas_create_compatible src/picasso_canvas.cpp /^ps_canvas* PICAPI ps_canvas_create_compatible(const ps_canvas* c, int w, int h)$/;" f +ps_canvas_create_from_canvas src/picasso_canvas.cpp /^ps_canvas* PICAPI ps_canvas_create_from_canvas(ps_canvas* c, const ps_rect* r)$/;" f +ps_canvas_create_from_image src/picasso_canvas.cpp /^ps_canvas* PICAPI ps_canvas_create_from_image(ps_image* i, const ps_rect* r)$/;" f +ps_canvas_create_with_data src/picasso_canvas.cpp /^ps_canvas* PICAPI ps_canvas_create_with_data(ps_byte * addr, ps_color_format fmt, int w, int h, int pitch)$/;" f +ps_canvas_get_format src/picasso_canvas.cpp /^ps_color_format PICAPI ps_canvas_get_format(const ps_canvas* canvas)$/;" f +ps_canvas_get_size src/picasso_canvas.cpp /^ps_size PICAPI ps_canvas_get_size(const ps_canvas* canvas)$/;" f +ps_canvas_ref src/picasso_canvas.cpp /^ps_canvas* PICAPI ps_canvas_ref(ps_canvas* canvas)$/;" f +ps_canvas_replace_data src/picasso_canvas.cpp /^ps_canvas* PICAPI ps_canvas_replace_data(ps_canvas* canvas, ps_byte* addr,$/;" f +ps_canvas_reset_mask src/picasso_canvas.cpp /^void PICAPI ps_canvas_reset_mask(ps_canvas* c)$/;" f +ps_canvas_set_mask src/picasso_canvas.cpp /^void PICAPI ps_canvas_set_mask(ps_canvas* c, const ps_mask* m)$/;" f +ps_canvas_unref src/picasso_canvas.cpp /^void PICAPI ps_canvas_unref(ps_canvas* canvas)$/;" f +ps_charset include/picasso.h /^}ps_charset;$/;" t typeref:enum:_ps_charset +ps_check_wgl_name android/freetype/src/psnames/psmodule.c /^ ps_check_wgl_name( const char* gname,$/;" f file: +ps_check_wgl_unicode android/freetype/src/psnames/psmodule.c /^ ps_check_wgl_unicode( FT_UInt32 uni_char,$/;" f file: +ps_clear src/picasso_api.cpp /^void PICAPI ps_clear(ps_context* ctx)$/;" f +ps_clip src/picasso_api.cpp /^void PICAPI ps_clip(ps_context* ctx)$/;" f +ps_clip_device_rect src/picasso_api.cpp /^void PICAPI ps_clip_device_rect(ps_context* ctx, const ps_rect* r)$/;" f +ps_clip_fast_rect include/picasso.h /^#define ps_clip_fast_rect /;" d +ps_clip_path src/picasso_api.cpp /^void PICAPI ps_clip_path(ps_context* ctx, const ps_path* p, ps_fill_rule r)$/;" f +ps_clip_rect src/picasso_api.cpp /^void PICAPI ps_clip_rect(ps_context* ctx, const ps_rect* r)$/;" f +ps_clip_rects src/picasso_api.cpp /^void PICAPI ps_clip_rects(ps_context* ctx, const ps_rect* rs, unsigned int num_rs)$/;" f +ps_close_path src/picasso_api.cpp /^void PICAPI ps_close_path(ps_context* ctx)$/;" f +ps_color include/picasso.h /^}ps_color;$/;" t typeref:struct:_ps_color +ps_color_format include/picasso.h /^}ps_color_format;$/;" t typeref:enum:_ps_color_format +ps_composite include/picasso.h /^}ps_composite;$/;" t typeref:enum:_ps_composite +ps_context include/picasso.h /^typedef struct _ps_context ps_context;$/;" t typeref:struct:_ps_context +ps_context_create src/picasso_api.cpp /^ps_context* PICAPI ps_context_create(ps_canvas* canvas, ps_context* ctx)$/;" f +ps_context_get_canvas src/picasso_api.cpp /^ps_canvas* PICAPI ps_context_get_canvas(ps_context* ctx)$/;" f +ps_context_ref src/picasso_api.cpp /^ps_context* PICAPI ps_context_ref(ps_context* ctx)$/;" f +ps_context_set_canvas src/picasso_api.cpp /^ps_canvas* PICAPI ps_context_set_canvas(ps_context* ctx, ps_canvas* canvas)$/;" f +ps_context_unref src/picasso_api.cpp /^void PICAPI ps_context_unref(ps_context* ctx)$/;" f +ps_debug_globals android/freetype/src/pshinter/pshglob.c /^ PSH_Globals ps_debug_globals = 0;$/;" v +ps_debug_glyph android/freetype/src/pshinter/pshalgo.c /^ PSH_Glyph ps_debug_glyph = 0;$/;" v +ps_debug_hint_func android/freetype/src/pshinter/pshalgo.c /^ PSH_HintFunc ps_debug_hint_func = 0;$/;" v +ps_debug_hint_table android/freetype/src/pshinter/pshalgo.c /^ PSH_Hint_Table ps_debug_hint_table = 0;$/;" v +ps_debug_hints android/freetype/src/pshinter/pshrec.c /^ PS_Hints ps_debug_hints = 0;$/;" v +ps_debug_no_horz_hints android/freetype/src/pshinter/pshrec.c /^ int ps_debug_no_horz_hints = 0;$/;" v +ps_debug_no_vert_hints android/freetype/src/pshinter/pshrec.c /^ int ps_debug_no_vert_hints = 0;$/;" v +ps_dimension_add_counter android/freetype/src/pshinter/pshrec.c /^ ps_dimension_add_counter( PS_Dimension dim,$/;" f file: +ps_dimension_add_t1stem android/freetype/src/pshinter/pshrec.c /^ ps_dimension_add_t1stem( PS_Dimension dim,$/;" f file: +ps_dimension_done android/freetype/src/pshinter/pshrec.c /^ ps_dimension_done( PS_Dimension dimension,$/;" f file: +ps_dimension_end android/freetype/src/pshinter/pshrec.c /^ ps_dimension_end( PS_Dimension dim,$/;" f file: +ps_dimension_end_mask android/freetype/src/pshinter/pshrec.c /^ ps_dimension_end_mask( PS_Dimension dim,$/;" f file: +ps_dimension_init android/freetype/src/pshinter/pshrec.c /^ ps_dimension_init( PS_Dimension dimension )$/;" f file: +ps_dimension_reset_mask android/freetype/src/pshinter/pshrec.c /^ ps_dimension_reset_mask( PS_Dimension dim,$/;" f file: +ps_dimension_set_mask_bits android/freetype/src/pshinter/pshrec.c /^ ps_dimension_set_mask_bits( PS_Dimension dim,$/;" f file: +ps_draw_text src/picasso_font_api.cpp /^void PICAPI ps_draw_text(ps_context* ctx, const ps_rect* area, const void* text, unsigned int len,$/;" f +ps_draw_text_type include/picasso.h /^}ps_draw_text_type;$/;" t typeref:enum:_ps_draw_text_type +ps_ellipse src/picasso_api.cpp /^void PICAPI ps_ellipse(ps_context* ctx, const ps_rect* r)$/;" f +ps_fill src/picasso_api.cpp /^void PICAPI ps_fill(ps_context* ctx)$/;" f +ps_fill_rule include/picasso.h /^}ps_fill_rule;$/;" t typeref:enum:_ps_fill_rule +ps_filter include/picasso.h /^}ps_filter;$/;" t typeref:enum:_ps_filter +ps_finalBuffer android/expat/lib/xmlparse.c /^#define ps_finalBuffer /;" d file: +ps_font include/picasso.h /^typedef struct _ps_font ps_font;$/;" t typeref:struct:_ps_font +ps_font_create src/picasso_font_api.cpp /^ps_font* PICAPI ps_font_create(const char* name, ps_charset c, float s, int w, ps_bool i)$/;" f +ps_font_create_copy src/picasso_font_api.cpp /^ps_font* PICAPI ps_font_create_copy(const ps_font* font)$/;" f +ps_font_info include/picasso.h /^}ps_font_info;$/;" t typeref:struct:_ps_font_info +ps_font_ref src/picasso_font_api.cpp /^ps_font* PICAPI ps_font_ref(ps_font* f)$/;" f +ps_font_set_charset src/picasso_font_api.cpp /^void PICAPI ps_font_set_charset(ps_font* f, ps_charset c)$/;" f +ps_font_set_flip src/picasso_font_api.cpp /^void PICAPI ps_font_set_flip(ps_font* f, ps_bool l)$/;" f +ps_font_set_hint src/picasso_font_api.cpp /^void PICAPI ps_font_set_hint(ps_font* f, ps_bool h)$/;" f +ps_font_set_italic src/picasso_font_api.cpp /^void PICAPI ps_font_set_italic(ps_font* f, ps_bool it)$/;" f +ps_font_set_size src/picasso_font_api.cpp /^void PICAPI ps_font_set_size(ps_font* f, float s)$/;" f +ps_font_set_weight src/picasso_font_api.cpp /^void PICAPI ps_font_set_weight(ps_font* f, int w)$/;" f +ps_font_unref src/picasso_font_api.cpp /^void PICAPI ps_font_unref(ps_font* f)$/;" f +ps_font_weight include/picasso.h /^}ps_font_weight;$/;" t typeref:enum:_ps_font_weight +ps_get_font_info src/picasso_font_api.cpp /^ps_bool PICAPI ps_get_font_info(ps_context* ctx, ps_font_info* info)$/;" f +ps_get_glyph src/picasso_font_api.cpp /^ps_bool PICAPI ps_get_glyph(ps_context* ctx, int ch, ps_glyph* g)$/;" f +ps_get_macintosh_name android/freetype/src/psnames/psmodule.c /^ ps_get_macintosh_name( FT_UInt name_index )$/;" f file: +ps_get_matrix src/picasso_api.cpp /^ps_bool PICAPI ps_get_matrix(ps_context* ctx, ps_matrix* matrix)$/;" f +ps_get_path_from_glyph src/picasso_font_api.cpp /^ps_bool PICAPI ps_get_path_from_glyph(ps_context* ctx, const ps_glyph* g, ps_path* p)$/;" f +ps_get_standard_strings android/freetype/src/psnames/psmodule.c /^ ps_get_standard_strings( FT_UInt sid )$/;" f file: +ps_get_text_extent src/picasso_font_api.cpp /^ps_size PICAPI ps_get_text_extent(ps_context* ctx, const void* text, unsigned int len)$/;" f +ps_glyph include/picasso.h /^}ps_glyph;$/;" t typeref:struct:_ps_glyph +ps_glyph_get_extent src/picasso_font_api.cpp /^ps_size PICAPI ps_glyph_get_extent(const ps_glyph* g)$/;" f +ps_gradient include/picasso.h /^typedef struct _ps_gradient ps_gradient;$/;" t typeref:struct:_ps_gradient +ps_gradient_add_color_stop src/picasso_gradient_api.cpp /^void PICAPI ps_gradient_add_color_stop(ps_gradient* g, float off, const ps_color* c)$/;" f +ps_gradient_clear_color_stops src/picasso_gradient_api.cpp /^void PICAPI ps_gradient_clear_color_stops(ps_gradient* g)$/;" f +ps_gradient_create_conic src/picasso_gradient_api.cpp /^ps_gradient* PICAPI ps_gradient_create_conic(ps_gradient_spread sp, const ps_point* o, float a)$/;" f +ps_gradient_create_linear src/picasso_gradient_api.cpp /^ps_gradient* PICAPI ps_gradient_create_linear(ps_gradient_spread sp, const ps_point* s, const ps_point* e)$/;" f +ps_gradient_create_radial src/picasso_gradient_api.cpp /^ps_gradient* PICAPI ps_gradient_create_radial(ps_gradient_spread sp, const ps_point* s, float sr, $/;" f +ps_gradient_ref src/picasso_gradient_api.cpp /^ps_gradient* PICAPI ps_gradient_ref(ps_gradient* g)$/;" f +ps_gradient_spread include/picasso.h /^}ps_gradient_spread;$/;" t typeref:enum:_ps_gradient_spread +ps_gradient_transform src/picasso_gradient_api.cpp /^void PICAPI ps_gradient_transform(ps_gradient* g, const ps_matrix* m)$/;" f +ps_gradient_unref src/picasso_gradient_api.cpp /^void PICAPI ps_gradient_unref(ps_gradient* g)$/;" f +ps_hint_is_active android/freetype/src/pshinter/pshrec.h /^#define ps_hint_is_active(/;" d +ps_hint_is_bottom android/freetype/src/pshinter/pshrec.h /^#define ps_hint_is_bottom(/;" d +ps_hint_is_ghost android/freetype/src/pshinter/pshrec.h /^#define ps_hint_is_ghost(/;" d +ps_hint_table_alloc android/freetype/src/pshinter/pshrec.c /^ ps_hint_table_alloc( PS_Hint_Table table,$/;" f file: +ps_hint_table_done android/freetype/src/pshinter/pshrec.c /^ ps_hint_table_done( PS_Hint_Table table,$/;" f file: +ps_hint_table_ensure android/freetype/src/pshinter/pshrec.c /^ ps_hint_table_ensure( PS_Hint_Table table,$/;" f file: +ps_hinter_done android/freetype/src/pshinter/pshmod.c /^ ps_hinter_done( PS_Hinter_Module module )$/;" f +ps_hints android/freetype/src/pshinter/pshmod.c /^ PS_HintsRec ps_hints;$/;" m struct:PS_Hinter_Module_Rec_ file: +ps_hints_apply android/freetype/src/pshinter/pshalgo.c /^ ps_hints_apply( PS_Hints ps_hints,$/;" f +ps_hints_close android/freetype/src/pshinter/pshrec.c /^ ps_hints_close( PS_Hints hints,$/;" f file: +ps_hints_done android/freetype/src/pshinter/pshrec.c /^ ps_hints_done( PS_Hints hints )$/;" f +ps_hints_open android/freetype/src/pshinter/pshrec.c /^ ps_hints_open( PS_Hints hints,$/;" f file: +ps_hints_stem android/freetype/src/pshinter/pshrec.c /^ ps_hints_stem( PS_Hints hints,$/;" f file: +ps_hints_t1reset android/freetype/src/pshinter/pshrec.c /^ ps_hints_t1reset( PS_Hints hints,$/;" f file: +ps_hints_t1stem3 android/freetype/src/pshinter/pshrec.c /^ ps_hints_t1stem3( PS_Hints hints,$/;" f file: +ps_hints_t2counter android/freetype/src/pshinter/pshrec.c /^ ps_hints_t2counter( PS_Hints hints,$/;" f file: +ps_hints_t2mask android/freetype/src/pshinter/pshrec.c /^ ps_hints_t2mask( PS_Hints hints,$/;" f file: +ps_identity src/picasso_api.cpp /^void PICAPI ps_identity(ps_context* ctx)$/;" f +ps_image include/picasso.h /^typedef struct _ps_image ps_image;$/;" t typeref:struct:_ps_image +ps_image_create src/picasso_image.cpp /^ps_image* PICAPI ps_image_create(ps_color_format fmt, int w, int h)$/;" f +ps_image_create_compatible src/picasso_image.cpp /^ps_image* PICAPI ps_image_create_compatible(const ps_canvas* c, int w, int h)$/;" f +ps_image_create_from_canvas src/picasso_image.cpp /^ps_image* PICAPI ps_image_create_from_canvas(ps_canvas* c, const ps_rect* r)$/;" f +ps_image_create_from_data src/picasso_image.cpp /^ps_image* PICAPI ps_image_create_from_data(ps_byte* data, ps_color_format fmt, int w, int h, int pitch)$/;" f +ps_image_create_from_image src/picasso_image.cpp /^ps_image* PICAPI ps_image_create_from_image(ps_image* i, const ps_rect* r)$/;" f +ps_image_create_with_data src/picasso_image.cpp /^ps_image* PICAPI ps_image_create_with_data(ps_byte* data, ps_color_format fmt, int w, int h, int pitch)$/;" f +ps_image_get_format src/picasso_image.cpp /^ps_color_format PICAPI ps_image_get_format(const ps_image* img)$/;" f +ps_image_get_size src/picasso_image.cpp /^ps_size PICAPI ps_image_get_size(const ps_image* img)$/;" f +ps_image_ref src/picasso_image.cpp /^ps_image* PICAPI ps_image_ref(ps_image* img)$/;" f +ps_image_set_allow_transparent src/picasso_image.cpp /^void PICAPI ps_image_set_allow_transparent(ps_image* img, ps_bool a)$/;" f +ps_image_set_transparent_color src/picasso_image.cpp /^void PICAPI ps_image_set_transparent_color(ps_image* img, const ps_color* c)$/;" f +ps_image_unref src/picasso_image.cpp /^void PICAPI ps_image_unref(ps_image* img)$/;" f +ps_initialize src/picasso_api.cpp /^ps_bool PICAPI ps_initialize(void)$/;" f +ps_last_status src/picasso_api.cpp /^ps_status PICAPI ps_last_status(void)$/;" f +ps_line_cap include/picasso.h /^}ps_line_cap;$/;" t typeref:enum:_ps_line_cap +ps_line_inner_join include/picasso.h /^}ps_line_inner_join;$/;" t typeref:enum:_ps_line_inner_join +ps_line_join include/picasso.h /^}ps_line_join;$/;" t typeref:enum:_ps_line_join +ps_line_to src/picasso_api.cpp /^void PICAPI ps_line_to(ps_context* ctx, const ps_point* pt)$/;" f +ps_mask include/picasso.h /^typedef struct _ps_mask ps_mask;$/;" t typeref:struct:_ps_mask +ps_mask_add_color_filter src/picasso_mask_api.cpp /^void PICAPI ps_mask_add_color_filter(ps_mask* mask, const ps_color* c)$/;" f +ps_mask_clear_bit android/freetype/src/pshinter/pshrec.c /^ ps_mask_clear_bit( PS_Mask mask,$/;" f file: +ps_mask_clear_color_filters src/picasso_mask_api.cpp /^void PICAPI ps_mask_clear_color_filters(ps_mask* mask)$/;" f +ps_mask_create_with_data src/picasso_mask_api.cpp /^ps_mask* PICAPI ps_mask_create_with_data(ps_byte* data, int w, int h)$/;" f +ps_mask_done android/freetype/src/pshinter/pshrec.c /^ ps_mask_done( PS_Mask mask,$/;" f file: +ps_mask_ensure android/freetype/src/pshinter/pshrec.c /^ ps_mask_ensure( PS_Mask mask,$/;" f file: +ps_mask_ref src/picasso_mask_api.cpp /^ps_mask* PICAPI ps_mask_ref(ps_mask* mask)$/;" f +ps_mask_set_bit android/freetype/src/pshinter/pshrec.c /^ ps_mask_set_bit( PS_Mask mask,$/;" f file: +ps_mask_table_alloc android/freetype/src/pshinter/pshrec.c /^ ps_mask_table_alloc( PS_Mask_Table table,$/;" f file: +ps_mask_table_done android/freetype/src/pshinter/pshrec.c /^ ps_mask_table_done( PS_Mask_Table table,$/;" f file: +ps_mask_table_ensure android/freetype/src/pshinter/pshrec.c /^ ps_mask_table_ensure( PS_Mask_Table table,$/;" f file: +ps_mask_table_last android/freetype/src/pshinter/pshrec.c /^ ps_mask_table_last( PS_Mask_Table table,$/;" f file: +ps_mask_table_merge android/freetype/src/pshinter/pshrec.c /^ ps_mask_table_merge( PS_Mask_Table table,$/;" f file: +ps_mask_table_merge_all android/freetype/src/pshinter/pshrec.c /^ ps_mask_table_merge_all( PS_Mask_Table table,$/;" f file: +ps_mask_table_set_bits android/freetype/src/pshinter/pshrec.c /^ ps_mask_table_set_bits( PS_Mask_Table table,$/;" f file: +ps_mask_table_test_intersect android/freetype/src/pshinter/pshrec.c /^ ps_mask_table_test_intersect( PS_Mask_Table table,$/;" f file: +ps_mask_test_bit android/freetype/src/pshinter/pshrec.c /^ ps_mask_test_bit( PS_Mask mask,$/;" f file: +ps_mask_unref src/picasso_mask_api.cpp /^void PICAPI ps_mask_unref(ps_mask* mask)$/;" f +ps_matrix include/picasso.h /^typedef struct _ps_matrix ps_matrix;$/;" t typeref:struct:_ps_matrix +ps_matrix_create src/picasso_matrix_api.cpp /^ps_matrix* PICAPI ps_matrix_create(void)$/;" f +ps_matrix_create_copy src/picasso_matrix_api.cpp /^ps_matrix* PICAPI ps_matrix_create_copy(const ps_matrix* matrix)$/;" f +ps_matrix_create_init src/picasso_matrix_api.cpp /^ps_matrix* PICAPI ps_matrix_create_init(float xx, float yx, float xy, float yy, float x0, float y0)$/;" f +ps_matrix_flip_x src/picasso_matrix_api.cpp /^void PICAPI ps_matrix_flip_x(ps_matrix* matrix)$/;" f +ps_matrix_flip_y src/picasso_matrix_api.cpp /^void PICAPI ps_matrix_flip_y(ps_matrix* matrix)$/;" f +ps_matrix_get_determinant src/picasso_matrix_api.cpp /^float PICAPI ps_matrix_get_determinant(const ps_matrix* matrix)$/;" f +ps_matrix_get_scale_factor src/picasso_matrix_api.cpp /^ps_bool PICAPI ps_matrix_get_scale_factor(ps_matrix* matrix, float *sx, float *sy)$/;" f +ps_matrix_get_shear_factor src/picasso_matrix_api.cpp /^ps_bool PICAPI ps_matrix_get_shear_factor(ps_matrix* matrix, float *shx, float *shy)$/;" f +ps_matrix_get_translate_factor src/picasso_matrix_api.cpp /^ps_bool PICAPI ps_matrix_get_translate_factor(ps_matrix* matrix, float *tx, float *ty)$/;" f +ps_matrix_init src/picasso_matrix_api.cpp /^void PICAPI ps_matrix_init(ps_matrix* matrix, float xx, float yx, float xy, $/;" f +ps_matrix_invert src/picasso_matrix_api.cpp /^void PICAPI ps_matrix_invert(ps_matrix* matrix)$/;" f +ps_matrix_is_equal src/picasso_matrix_api.cpp /^ps_bool PICAPI ps_matrix_is_equal(const ps_matrix* a, const ps_matrix* b)$/;" f +ps_matrix_is_identity src/picasso_matrix_api.cpp /^ps_bool PICAPI ps_matrix_is_identity(const ps_matrix* matrix)$/;" f +ps_matrix_multiply src/picasso_matrix_api.cpp /^void PICAPI ps_matrix_multiply(ps_matrix* result, const ps_matrix* a, const ps_matrix* b)$/;" f +ps_matrix_ref src/picasso_matrix_api.cpp /^ps_matrix* PICAPI ps_matrix_ref(ps_matrix* matrix)$/;" f +ps_matrix_reset src/picasso_matrix_api.cpp /^void PICAPI ps_matrix_reset(ps_matrix* matrix)$/;" f +ps_matrix_rotate src/picasso_matrix_api.cpp /^void PICAPI ps_matrix_rotate(ps_matrix* matrix, float angle)$/;" f +ps_matrix_scale src/picasso_matrix_api.cpp /^void PICAPI ps_matrix_scale(ps_matrix* matrix, float sx, float sy)$/;" f +ps_matrix_set_scale_factor src/picasso_matrix_api.cpp /^void PICAPI ps_matrix_set_scale_factor(ps_matrix* matrix, float sx, float sy)$/;" f +ps_matrix_set_shear_factor src/picasso_matrix_api.cpp /^void PICAPI ps_matrix_set_shear_factor(ps_matrix* matrix, float shx, float shy)$/;" f +ps_matrix_set_translate_factor src/picasso_matrix_api.cpp /^void PICAPI ps_matrix_set_translate_factor(ps_matrix* matrix, float tx, float ty)$/;" f +ps_matrix_shear src/picasso_matrix_api.cpp /^void PICAPI ps_matrix_shear(ps_matrix* matrix, float sx, float sy)$/;" f +ps_matrix_transform_path src/picasso_matrix_api.cpp /^void PICAPI ps_matrix_transform_path(const ps_matrix* matrix, ps_path* path)$/;" f +ps_matrix_transform_point src/picasso_matrix_api.cpp /^void PICAPI ps_matrix_transform_point(const ps_matrix* matrix, ps_point* point)$/;" f +ps_matrix_transform_rect src/picasso_matrix_api.cpp /^void PICAPI ps_matrix_transform_rect(const ps_matrix* matrix, ps_rect* rect)$/;" f +ps_matrix_translate src/picasso_matrix_api.cpp /^void PICAPI ps_matrix_translate(ps_matrix* matrix, float tx, float ty)$/;" f +ps_matrix_unref src/picasso_matrix_api.cpp /^void PICAPI ps_matrix_unref(ps_matrix* matrix)$/;" f +ps_move_to src/picasso_api.cpp /^void PICAPI ps_move_to(ps_context* ctx, const ps_point* pt)$/;" f +ps_new_path src/picasso_api.cpp /^void PICAPI ps_new_path(ps_context* ctx)$/;" f +ps_new_sub_path src/picasso_api.cpp /^void PICAPI ps_new_sub_path(ps_context* ctx)$/;" f +ps_paint src/picasso_api.cpp /^void PICAPI ps_paint(ps_context* ctx)$/;" f +ps_parser_done android/freetype/src/psaux/psobjs.c /^ ps_parser_done( PS_Parser parser )$/;" f +ps_parser_funcs android/freetype/include/freetype/internal/psaux.h /^ const PS_Parser_FuncsRec* ps_parser_funcs;$/;" m struct:PSAux_ServiceRec_ +ps_parser_funcs android/freetype/src/psaux/psauxmod.c /^ const PS_Parser_FuncsRec ps_parser_funcs =$/;" v +ps_parser_funcs android/freetype/src/psaux/psobjs.h /^ const PS_Parser_FuncsRec ps_parser_funcs;$/;" v +ps_parser_funcs include/freetype/internal/psaux.h /^ const PS_Parser_FuncsRec* ps_parser_funcs;$/;" m struct:PSAux_ServiceRec_ +ps_parser_init android/freetype/src/psaux/psobjs.c /^ ps_parser_init( PS_Parser parser,$/;" f +ps_parser_skip_PS_token android/freetype/src/psaux/psobjs.c /^ ps_parser_skip_PS_token( PS_Parser parser )$/;" f +ps_parser_skip_spaces android/freetype/src/psaux/psobjs.c /^ ps_parser_skip_spaces( PS_Parser parser )$/;" f +ps_parser_to_token android/freetype/src/psaux/psobjs.c /^ ps_parser_to_token( PS_Parser parser,$/;" f +ps_parser_to_token_array android/freetype/src/psaux/psobjs.c /^ ps_parser_to_token_array( PS_Parser parser,$/;" f +ps_parsing android/expat/lib/xmlparse.c /^#define ps_parsing /;" d file: +ps_path include/picasso.h /^typedef struct _ps_path ps_path;$/;" t typeref:struct:_ps_path +ps_path_add_arc src/picasso_path.cpp /^void PICAPI ps_path_add_arc(ps_path* path, const ps_point* cp, float r, float sa, float ea, ps_bool cw)$/;" f +ps_path_add_ellipse src/picasso_path.cpp /^void PICAPI ps_path_add_ellipse(ps_path* path, const ps_rect* r)$/;" f +ps_path_add_line src/picasso_path.cpp /^void PICAPI ps_path_add_line(ps_path* path, const ps_point* p1, const ps_point* p2)$/;" f +ps_path_add_rect src/picasso_path.cpp /^void PICAPI ps_path_add_rect(ps_path* path, const ps_rect* r)$/;" f +ps_path_add_rounded_rect src/picasso_path.cpp /^void PICAPI ps_path_add_rounded_rect(ps_path*path, const ps_rect* r, float ltx, float lty, float rtx, float rty,$/;" f +ps_path_arc_to src/picasso_path.cpp /^void PICAPI ps_path_arc_to(ps_path* path, float rx, float ry, float a, ps_bool large, ps_bool cw, const ps_point* ep)$/;" f +ps_path_bezier_to src/picasso_path.cpp /^void PICAPI ps_path_bezier_to(ps_path* path, const ps_point* cp1, const ps_point* cp2, const ps_point* ep)$/;" f +ps_path_bounding_rect src/picasso_path.cpp /^ps_rect PICAPI ps_path_bounding_rect(const ps_path* path)$/;" f +ps_path_clear src/picasso_path.cpp /^void PICAPI ps_path_clear(ps_path* path)$/;" f +ps_path_clipping src/picasso_path.cpp /^void PICAPI ps_path_clipping(ps_path* r, ps_path_operation op, const ps_path* a, const ps_path* b)$/;" f +ps_path_cmd include/picasso.h /^}ps_path_cmd;$/;" t typeref:enum:_ps_path_cmd +ps_path_contains src/picasso_path.cpp /^ps_bool PICAPI ps_path_contains(const ps_path* path, const ps_point* p, ps_fill_rule rule)$/;" f +ps_path_create src/picasso_path.cpp /^ps_path* PICAPI ps_path_create(void)$/;" f +ps_path_create_copy src/picasso_path.cpp /^ps_path* PICAPI ps_path_create_copy(const ps_path* path)$/;" f +ps_path_get_length src/picasso_path.cpp /^float PICAPI ps_path_get_length(const ps_path* path)$/;" f +ps_path_get_vertex src/picasso_path.cpp /^ps_path_cmd PICAPI ps_path_get_vertex(const ps_path* path, unsigned int index, ps_point* point)$/;" f +ps_path_get_vertex_count src/picasso_path.cpp /^unsigned int PICAPI ps_path_get_vertex_count(const ps_path* path)$/;" f +ps_path_is_empty src/picasso_path.cpp /^ps_bool PICAPI ps_path_is_empty(const ps_path* path)$/;" f +ps_path_line_to src/picasso_path.cpp /^void PICAPI ps_path_line_to(ps_path* path, const ps_point* p)$/;" f +ps_path_move_to src/picasso_path.cpp /^void PICAPI ps_path_move_to(ps_path* path, const ps_point* p)$/;" f +ps_path_operation include/picasso.h /^}ps_path_operation;$/;" t typeref:enum:_ps_path_op +ps_path_quad_to src/picasso_path.cpp /^void PICAPI ps_path_quad_to(ps_path* path, const ps_point* cp, const ps_point* ep)$/;" f +ps_path_ref src/picasso_path.cpp /^ps_path* PICAPI ps_path_ref(ps_path* path)$/;" f +ps_path_sub_close src/picasso_path.cpp /^void PICAPI ps_path_sub_close(ps_path* path)$/;" f +ps_path_tangent_arc_to src/picasso_path.cpp /^void PICAPI ps_path_tangent_arc_to(ps_path* path, float r, const ps_point* tp, const ps_point* ep)$/;" f +ps_path_unref src/picasso_path.cpp /^void PICAPI ps_path_unref(ps_path* path)$/;" f +ps_pattern include/picasso.h /^typedef struct _ps_pattern ps_pattern;$/;" t typeref:struct:_ps_pattern +ps_pattern_create_image src/picasso_pattern.cpp /^ps_pattern* PICAPI ps_pattern_create_image(const ps_image* img, ps_wrap_type xp, ps_wrap_type yp, const ps_matrix* m)$/;" f +ps_pattern_ref src/picasso_pattern.cpp /^ps_pattern* PICAPI ps_pattern_ref(ps_pattern* pattern)$/;" f +ps_pattern_transform src/picasso_pattern.cpp /^void PICAPI ps_pattern_transform(ps_pattern* p, const ps_matrix* m)$/;" f +ps_pattern_unref src/picasso_pattern.cpp /^void PICAPI ps_pattern_unref(ps_pattern* pattern)$/;" f +ps_point include/picasso.h /^}ps_point;$/;" t typeref:struct:_ps_point +ps_quad_curve_to src/picasso_api.cpp /^void PICAPI ps_quad_curve_to(ps_context* ctx, const ps_point* cp, const ps_point* ep)$/;" f +ps_rect include/picasso.h /^}ps_rect;$/;" t typeref:struct:_ps_rect +ps_rectangle src/picasso_api.cpp /^void PICAPI ps_rectangle(ps_context* ctx, const ps_rect* pr)$/;" f +ps_reset_clip src/picasso_api.cpp /^void PICAPI ps_reset_clip(ps_context* ctx)$/;" f +ps_reset_line_dash src/picasso_api.cpp /^void PICAPI ps_reset_line_dash(ps_context* ctx)$/;" f +ps_reset_shadow src/picasso_api.cpp /^void PICAPI ps_reset_shadow(ps_context* ctx)$/;" f +ps_restore src/picasso_api.cpp /^void PICAPI ps_restore(ps_context* ctx)$/;" f +ps_rotate src/picasso_api.cpp /^void PICAPI ps_rotate(ps_context* ctx, float angle)$/;" f +ps_rounded_rect src/picasso_api.cpp /^void PICAPI ps_rounded_rect(ps_context* ctx, const ps_rect* r, float ltx, float lty, float rtx, float rty,$/;" f +ps_save src/picasso_api.cpp /^void PICAPI ps_save(ps_context* ctx)$/;" f +ps_scale src/picasso_api.cpp /^void PICAPI ps_scale(ps_context* ctx, float sx, float sy)$/;" f +ps_schar16 include/picasso.h /^typedef int16_t ps_schar16;$/;" t +ps_set_alpha src/picasso_api.cpp /^float PICAPI ps_set_alpha(ps_context* ctx, float a)$/;" f +ps_set_antialias src/picasso_api.cpp /^void PICAPI ps_set_antialias(ps_context* ctx, ps_bool anti)$/;" f +ps_set_blur src/picasso_api.cpp /^float PICAPI ps_set_blur(ps_context* ctx, float b)$/;" f +ps_set_composite_operator src/picasso_api.cpp /^ps_composite PICAPI ps_set_composite_operator(ps_context* ctx, ps_composite composite)$/;" f +ps_set_fill_rule src/picasso_api.cpp /^ps_fill_rule PICAPI ps_set_fill_rule(ps_context* ctx, ps_fill_rule rule)$/;" f +ps_set_filter src/picasso_api.cpp /^ps_filter PICAPI ps_set_filter(ps_context* ctx, ps_filter filter)$/;" f +ps_set_font src/picasso_font_api.cpp /^ps_font* PICAPI ps_set_font(ps_context* ctx, const ps_font* f)$/;" f +ps_set_gamma src/picasso_api.cpp /^float PICAPI ps_set_gamma(ps_context* ctx, float g)$/;" f +ps_set_line_cap src/picasso_api.cpp /^void PICAPI ps_set_line_cap(ps_context* ctx, ps_line_cap line_cap)$/;" f +ps_set_line_dash src/picasso_api.cpp /^void PICAPI ps_set_line_dash(ps_context* ctx, float start, float* dashes, unsigned int num_dashes)$/;" f +ps_set_line_inner_join src/picasso_api.cpp /^void PICAPI ps_set_line_inner_join(ps_context* ctx, ps_line_inner_join line_inner_join)$/;" f +ps_set_line_join src/picasso_api.cpp /^void PICAPI ps_set_line_join(ps_context* ctx, ps_line_join line_join)$/;" f +ps_set_line_width src/picasso_api.cpp /^float PICAPI ps_set_line_width(ps_context* ctx, float width)$/;" f +ps_set_matrix src/picasso_api.cpp /^void PICAPI ps_set_matrix(ps_context* ctx, const ps_matrix* matrix)$/;" f +ps_set_miter_limit src/picasso_api.cpp /^float PICAPI ps_set_miter_limit(ps_context* ctx, float limit)$/;" f +ps_set_path src/picasso_api.cpp /^void PICAPI ps_set_path(ps_context* ctx, const ps_path* path)$/;" f +ps_set_shadow src/picasso_api.cpp /^void PICAPI ps_set_shadow(ps_context* ctx, float x, float y, float b)$/;" f +ps_set_shadow_color src/picasso_api.cpp /^void PICAPI ps_set_shadow_color(ps_context* ctx, const ps_color* c)$/;" f +ps_set_source_canvas src/picasso_api.cpp /^void PICAPI ps_set_source_canvas(ps_context* ctx, const ps_canvas* canvas)$/;" f +ps_set_source_color src/picasso_api.cpp /^void PICAPI ps_set_source_color(ps_context* ctx, const ps_color* color)$/;" f +ps_set_source_gradient src/picasso_api.cpp /^void PICAPI ps_set_source_gradient(ps_context* ctx, const ps_gradient* gradient)$/;" f +ps_set_source_image src/picasso_api.cpp /^void PICAPI ps_set_source_image(ps_context* ctx, const ps_image* image)$/;" f +ps_set_source_pattern src/picasso_api.cpp /^void PICAPI ps_set_source_pattern(ps_context* ctx, const ps_pattern* pattern)$/;" f +ps_set_stroke_color src/picasso_api.cpp /^void PICAPI ps_set_stroke_color(ps_context* ctx, const ps_color* color)$/;" f +ps_set_text_antialias src/picasso_font_api.cpp /^void PICAPI ps_set_text_antialias(ps_context* ctx, ps_bool a)$/;" f +ps_set_text_color src/picasso_font_api.cpp /^void PICAPI ps_set_text_color(ps_context* ctx, const ps_color* c)$/;" f +ps_set_text_kerning src/picasso_font_api.cpp /^void PICAPI ps_set_text_kerning(ps_context* ctx, ps_bool k)$/;" f +ps_set_text_matrix src/picasso_font_api.cpp /^void PICAPI ps_set_text_matrix(ps_context* ctx, const ps_matrix* m)$/;" f +ps_set_text_render_type src/picasso_font_api.cpp /^void PICAPI ps_set_text_render_type(ps_context* ctx, ps_text_type type)$/;" f +ps_set_text_stroke_color src/picasso_font_api.cpp /^void PICAPI ps_set_text_stroke_color(ps_context* ctx, const ps_color* c)$/;" f +ps_shear src/picasso_api.cpp /^void PICAPI ps_shear(ps_context* ctx, float sx, float sy)$/;" f +ps_show_glyphs src/picasso_font_api.cpp /^void PICAPI ps_show_glyphs(ps_context* ctx, float x, float y, ps_glyph* g, unsigned int len)$/;" f +ps_shutdown src/picasso_api.cpp /^void PICAPI ps_shutdown(void)$/;" f +ps_simple_scale android/freetype/src/pshinter/pshalgo.c /^ ps_simple_scale( PSH_Hint_Table table,$/;" f file: +ps_size include/picasso.h /^}ps_size;$/;" t typeref:struct:_ps_size +ps_status include/picasso.h /^}ps_status;$/;" t typeref:enum:_ps_status +ps_stroke src/picasso_api.cpp /^void PICAPI ps_stroke(ps_context* ctx)$/;" f +ps_table_done android/freetype/src/psaux/psobjs.c /^ ps_table_done( PS_Table table )$/;" f +ps_table_funcs android/freetype/include/freetype/internal/psaux.h /^ const PS_Table_FuncsRec* ps_table_funcs;$/;" m struct:PSAux_ServiceRec_ +ps_table_funcs android/freetype/src/psaux/psauxmod.c /^ const PS_Table_FuncsRec ps_table_funcs =$/;" v +ps_table_funcs android/freetype/src/psaux/psobjs.h /^ const PS_Table_FuncsRec ps_table_funcs;$/;" v +ps_table_funcs include/freetype/internal/psaux.h /^ const PS_Table_FuncsRec* ps_table_funcs;$/;" m struct:PSAux_ServiceRec_ +ps_table_release android/freetype/src/psaux/psobjs.c /^ ps_table_release( PS_Table table )$/;" f +ps_tangent_arc src/picasso_api.cpp /^void PICAPI ps_tangent_arc(ps_context* ctx, const ps_rect* r, float sa, float sw)$/;" f +ps_text_align include/picasso.h /^}ps_text_align;$/;" t typeref:enum:_ps_text_align +ps_text_out demos/subwaymap.c /^#define ps_text_out(/;" d file: +ps_text_out_length src/picasso_font_api.cpp /^void PICAPI ps_text_out_length(ps_context* ctx, float x, float y, const char* text, unsigned int len)$/;" f +ps_text_transform src/picasso_font_api.cpp /^void PICAPI ps_text_transform(ps_context* ctx, const ps_matrix* m)$/;" f +ps_text_type include/picasso.h /^}ps_text_type;$/;" t typeref:enum:_ps_text_type +ps_tobool android/freetype/src/psaux/psobjs.c /^ ps_tobool( FT_Byte* *acur,$/;" f file: +ps_tocoordarray android/freetype/src/psaux/psobjs.c /^ ps_tocoordarray( FT_Byte* *acur,$/;" f file: +ps_tofixedarray android/freetype/src/psaux/psobjs.c /^ ps_tofixedarray( FT_Byte* *acur,$/;" f file: +ps_transform src/picasso_api.cpp /^void PICAPI ps_transform(ps_context* ctx, const ps_matrix* matrix)$/;" f +ps_translate src/picasso_api.cpp /^void PICAPI ps_translate(ps_context* ctx, float tx, float ty)$/;" f +ps_uchar16 include/picasso.h /^typedef uint16_t ps_uchar16;$/;" t +ps_unicode_value android/freetype/src/psnames/psmodule.c /^ ps_unicode_value( const char* glyph_name )$/;" f file: +ps_unicodes_char_index android/freetype/src/psnames/psmodule.c /^ ps_unicodes_char_index( PS_Unicodes table,$/;" f file: +ps_unicodes_char_next android/freetype/src/psnames/psmodule.c /^ ps_unicodes_char_next( PS_Unicodes table,$/;" f file: +ps_unicodes_init android/freetype/src/psnames/psmodule.c /^ ps_unicodes_init( FT_Memory memory,$/;" f file: +ps_version src/picasso_api.cpp /^int PICAPI ps_version(void)$/;" f +ps_viewport_to_world src/picasso_api.cpp /^void PICAPI ps_viewport_to_world(ps_context* ctx, ps_point* point)$/;" f +ps_wide_text_out_length src/picasso_font_api.cpp /^void PICAPI ps_wide_text_out_length(ps_context* ctx, float x, float y, const ps_uchar16* text, unsigned int len)$/;" f +ps_world_to_viewport src/picasso_api.cpp /^void PICAPI ps_world_to_viewport(ps_context* ctx, ps_point* point)$/;" f +ps_wrap_type include/picasso.h /^}ps_wrap_type;$/;" t typeref:enum:_ps_wrap_type +psaux android/freetype/include/freetype/internal/t1types.h /^ const void* psaux;$/;" m struct:T1_FaceRec_ +psaux android/freetype/include/freetype/internal/t1types.h /^ void* psaux;$/;" m struct:CID_FaceRec_ +psaux include/freetype/internal/t1types.h /^ const void* psaux;$/;" m struct:T1_FaceRec_ +psaux include/freetype/internal/t1types.h /^ void* psaux;$/;" m struct:CID_FaceRec_ +psaux_interface android/freetype/src/psaux/psauxmod.c /^ const PSAux_Interface psaux_interface =$/;" v file: +psaux_module_class android/freetype/src/psaux/psauxmod.c /^ const FT_Module_Class psaux_module_class =$/;" v +pscmaps_interface android/freetype/src/psnames/psmodule.c /^ const FT_Service_PsCMapsRec pscmaps_interface =$/;" v file: +pscmaps_services android/freetype/src/psnames/psmodule.c /^ static const FT_ServiceDescRec pscmaps_services[] =$/;" v file: +psh_blues_scale_zones android/freetype/src/pshinter/pshglob.c /^ psh_blues_scale_zones( PSH_Blues blues,$/;" f file: +psh_blues_set_zones android/freetype/src/pshinter/pshglob.c /^ psh_blues_set_zones( PSH_Blues target,$/;" f file: +psh_blues_set_zones_0 android/freetype/src/pshinter/pshglob.c /^ psh_blues_set_zones_0( PSH_Blues target,$/;" f file: +psh_blues_snap_stem android/freetype/src/pshinter/pshglob.c /^ psh_blues_snap_stem( PSH_Blues blues,$/;" f +psh_compute_dir android/freetype/src/pshinter/pshalgo.c /^ psh_compute_dir( FT_Pos dx,$/;" f file: +psh_corner_is_flat android/freetype/src/pshinter/pshalgo.c /^#define psh_corner_is_flat /;" d file: +psh_corner_orientation android/freetype/src/pshinter/pshalgo.c /^ psh_corner_orientation( FT_Pos in_x,$/;" f file: +psh_corner_orientation android/freetype/src/pshinter/pshalgo.c /^#define psh_corner_orientation /;" d file: +psh_dimension_quantize_len android/freetype/src/pshinter/pshalgo.c /^ psh_dimension_quantize_len( PSH_Dimension dim,$/;" f file: +psh_globals_destroy android/freetype/src/pshinter/pshglob.c /^ psh_globals_destroy( PSH_Globals globals )$/;" f file: +psh_globals_funcs_init android/freetype/src/pshinter/pshglob.c /^ psh_globals_funcs_init( PSH_Globals_FuncsRec* funcs )$/;" f +psh_globals_new android/freetype/src/pshinter/pshglob.c /^ psh_globals_new( FT_Memory memory,$/;" f file: +psh_globals_scale_widths android/freetype/src/pshinter/pshglob.c /^ psh_globals_scale_widths( PSH_Globals globals,$/;" f file: +psh_glyph_compute_extrema android/freetype/src/pshinter/pshalgo.c /^ psh_glyph_compute_extrema( PSH_Glyph glyph )$/;" f file: +psh_glyph_compute_inflections android/freetype/src/pshinter/pshalgo.c /^ psh_glyph_compute_inflections( PSH_Glyph glyph )$/;" f file: +psh_glyph_done android/freetype/src/pshinter/pshalgo.c /^ psh_glyph_done( PSH_Glyph glyph )$/;" f file: +psh_glyph_find_blue_points android/freetype/src/pshinter/pshalgo.c /^ psh_glyph_find_blue_points( PSH_Blues blues,$/;" f file: +psh_glyph_find_strong_points android/freetype/src/pshinter/pshalgo.c /^ psh_glyph_find_strong_points( PSH_Glyph glyph,$/;" f file: +psh_glyph_init android/freetype/src/pshinter/pshalgo.c /^ psh_glyph_init( PSH_Glyph glyph,$/;" f file: +psh_glyph_interpolate_normal_points android/freetype/src/pshinter/pshalgo.c /^ psh_glyph_interpolate_normal_points( PSH_Glyph glyph,$/;" f file: +psh_glyph_interpolate_other_points android/freetype/src/pshinter/pshalgo.c /^ psh_glyph_interpolate_other_points( PSH_Glyph glyph,$/;" f file: +psh_glyph_interpolate_strong_points android/freetype/src/pshinter/pshalgo.c /^ psh_glyph_interpolate_strong_points( PSH_Glyph glyph,$/;" f file: +psh_glyph_load_points android/freetype/src/pshinter/pshalgo.c /^ psh_glyph_load_points( PSH_Glyph glyph,$/;" f file: +psh_glyph_save_points android/freetype/src/pshinter/pshalgo.c /^ psh_glyph_save_points( PSH_Glyph glyph,$/;" f file: +psh_hint_activate android/freetype/src/pshinter/pshalgo.h /^#define psh_hint_activate(/;" d +psh_hint_align android/freetype/src/pshinter/pshalgo.c /^ psh_hint_align( PSH_Hint hint,$/;" f file: +psh_hint_deactivate android/freetype/src/pshinter/pshalgo.h /^#define psh_hint_deactivate(/;" d +psh_hint_is_active android/freetype/src/pshinter/pshalgo.h /^#define psh_hint_is_active(/;" d +psh_hint_is_fitted android/freetype/src/pshinter/pshalgo.h /^#define psh_hint_is_fitted(/;" d +psh_hint_is_ghost android/freetype/src/pshinter/pshalgo.h /^#define psh_hint_is_ghost(/;" d +psh_hint_overlap android/freetype/src/pshinter/pshalgo.c /^ psh_hint_overlap( PSH_Hint hint1,$/;" f file: +psh_hint_set_fitted android/freetype/src/pshinter/pshalgo.h /^#define psh_hint_set_fitted(/;" d +psh_hint_snap_stem_side_delta android/freetype/src/pshinter/pshalgo.c /^ psh_hint_snap_stem_side_delta( FT_Fixed pos,$/;" f file: +psh_hint_table_activate_mask android/freetype/src/pshinter/pshalgo.c /^ psh_hint_table_activate_mask( PSH_Hint_Table table,$/;" f file: +psh_hint_table_align_hints android/freetype/src/pshinter/pshalgo.c /^ psh_hint_table_align_hints( PSH_Hint_Table table,$/;" f file: +psh_hint_table_deactivate android/freetype/src/pshinter/pshalgo.c /^ psh_hint_table_deactivate( PSH_Hint_Table table )$/;" f file: +psh_hint_table_done android/freetype/src/pshinter/pshalgo.c /^ psh_hint_table_done( PSH_Hint_Table table,$/;" f file: +psh_hint_table_find_strong_points android/freetype/src/pshinter/pshalgo.c /^ psh_hint_table_find_strong_points( PSH_Hint_Table table,$/;" f file: +psh_hint_table_init android/freetype/src/pshinter/pshalgo.c /^ psh_hint_table_init( PSH_Hint_Table table,$/;" f file: +psh_hint_table_record android/freetype/src/pshinter/pshalgo.c /^ psh_hint_table_record( PSH_Hint_Table table,$/;" f file: +psh_hint_table_record_mask android/freetype/src/pshinter/pshalgo.c /^ psh_hint_table_record_mask( PSH_Hint_Table table,$/;" f file: +psh_point_is_edge_max android/freetype/src/pshinter/pshalgo.h /^#define psh_point_is_edge_max(/;" d +psh_point_is_edge_min android/freetype/src/pshinter/pshalgo.h /^#define psh_point_is_edge_min(/;" d +psh_point_is_extremum android/freetype/src/pshinter/pshalgo.h /^#define psh_point_is_extremum(/;" d +psh_point_is_fitted android/freetype/src/pshinter/pshalgo.h /^#define psh_point_is_fitted(/;" d +psh_point_is_inflex android/freetype/src/pshinter/pshalgo.h /^#define psh_point_is_inflex(/;" d +psh_point_is_negative android/freetype/src/pshinter/pshalgo.h /^#define psh_point_is_negative(/;" d +psh_point_is_off android/freetype/src/pshinter/pshalgo.h /^#define psh_point_is_off(/;" d +psh_point_is_positive android/freetype/src/pshinter/pshalgo.h /^#define psh_point_is_positive(/;" d +psh_point_is_smooth android/freetype/src/pshinter/pshalgo.h /^#define psh_point_is_smooth(/;" d +psh_point_is_strong android/freetype/src/pshinter/pshalgo.h /^#define psh_point_is_strong(/;" d +psh_point_set_edge_max android/freetype/src/pshinter/pshalgo.h /^#define psh_point_set_edge_max(/;" d +psh_point_set_edge_min android/freetype/src/pshinter/pshalgo.h /^#define psh_point_set_edge_min(/;" d +psh_point_set_extremum android/freetype/src/pshinter/pshalgo.h /^#define psh_point_set_extremum(/;" d +psh_point_set_fitted android/freetype/src/pshinter/pshalgo.h /^#define psh_point_set_fitted(/;" d +psh_point_set_inflex android/freetype/src/pshinter/pshalgo.h /^#define psh_point_set_inflex(/;" d +psh_point_set_negative android/freetype/src/pshinter/pshalgo.h /^#define psh_point_set_negative(/;" d +psh_point_set_off android/freetype/src/pshinter/pshalgo.h /^#define psh_point_set_off(/;" d +psh_point_set_positive android/freetype/src/pshinter/pshalgo.h /^#define psh_point_set_positive(/;" d +psh_point_set_smooth android/freetype/src/pshinter/pshalgo.h /^#define psh_point_set_smooth(/;" d +psh_point_set_strong android/freetype/src/pshinter/pshalgo.h /^#define psh_point_set_strong(/;" d +psh_print_zone android/freetype/src/pshinter/pshalgo.c /^ psh_print_zone( PSH_Zone zone )$/;" f file: +psh_print_zone android/freetype/src/pshinter/pshalgo.c /^#define psh_print_zone(/;" d file: +pshinter android/freetype/include/freetype/internal/t1types.h /^ const void* pshinter;$/;" m struct:T1_FaceRec_ +pshinter android/freetype/include/freetype/internal/t1types.h /^ void* pshinter;$/;" m struct:CID_FaceRec_ +pshinter android/freetype/src/cff/cfftypes.h /^ void* pshinter;$/;" m struct:CFF_FontRec_ +pshinter include/freetype/internal/ftpic.h /^ void* pshinter; $/;" m struct:FT_PIC_Container_ +pshinter include/freetype/internal/t1types.h /^ const void* pshinter;$/;" m struct:T1_FaceRec_ +pshinter include/freetype/internal/t1types.h /^ void* pshinter;$/;" m struct:CID_FaceRec_ +pshinter_interface android/freetype/src/pshinter/pshmod.c /^ const PSHinter_Interface pshinter_interface =$/;" v file: +pshinter_module_class android/freetype/src/pshinter/pshmod.c /^ const FT_Module_Class pshinter_module_class =$/;" v +psnames android/freetype/include/freetype/internal/psaux.h /^ FT_Service_PsCMaps psnames; \/* for seac *\/$/;" m struct:T1_DecoderRec_ +psnames android/freetype/include/freetype/internal/t1types.h /^ const void* psnames;$/;" m struct:T1_FaceRec_ +psnames android/freetype/include/freetype/internal/t1types.h /^ void* psnames;$/;" m struct:CID_FaceRec_ +psnames android/freetype/include/freetype/internal/tttypes.h /^ void* psnames;$/;" m struct:TT_FaceRec_ +psnames android/freetype/src/cff/cfftypes.h /^ void* psnames;$/;" m struct:CFF_FontRec_ +psnames include/freetype/internal/ftpic.h /^ void* psnames; $/;" m struct:FT_PIC_Container_ +psnames include/freetype/internal/psaux.h /^ FT_Service_PsCMaps psnames; \/* for seac *\/$/;" m struct:T1_DecoderRec_ +psnames include/freetype/internal/t1types.h /^ const void* psnames;$/;" m struct:T1_FaceRec_ +psnames include/freetype/internal/t1types.h /^ void* psnames;$/;" m struct:CID_FaceRec_ +psnames include/freetype/internal/tttypes.h /^ void* psnames;$/;" m struct:TT_FaceRec_ +psnames_get_service android/freetype/src/psnames/psmodule.c /^ psnames_get_service( FT_Module module,$/;" f file: +psnames_module_class android/freetype/src/psnames/psmodule.c /^ const FT_Module_Class psnames_module_class =$/;" v +pt test/alpha_func.c /^static ps_pattern * pt;$/;" v file: +pt test/bitblt_func.c /^static ps_pattern * pt;$/;" v file: +pt test/blur_func.c /^static ps_pattern * pt;$/;" v file: +pt test/clip_func.c /^static ps_pattern * pt;$/;" v file: +pt test/composite_func.c /^static ps_pattern * pt;$/;" v file: +pt test/gamma_func.c /^static ps_pattern * pt;$/;" v file: +pt test/gcstate_func.c /^static ps_pattern * pt;$/;" v file: +pt test/mask_func.c /^static ps_pattern * pt;$/;" v file: +pt test/part_func.c /^static ps_pattern * pt;$/;" v file: +pt test/path_func.c /^static ps_pattern * pt;$/;" v file: +pt test/shadow_func.c /^static ps_pattern * pt;$/;" v file: +pt test/text_func.c /^static ps_pattern * pt;$/;" v file: +pt test/thread_func.c /^static ps_pattern * pt;$/;" v file: +pt1 test/pattern_func.c /^static ps_pattern * pt1;$/;" v file: +pt2 test/pattern_func.c /^static ps_pattern * pt2;$/;" v file: +pt3 test/pattern_func.c /^static ps_pattern * pt3;$/;" v file: +pt4 test/pattern_func.c /^static ps_pattern * pt4;$/;" v file: +ptr android/expat/lib/xmlparse.c /^ XML_Char *ptr;$/;" m struct:__anon13 file: +ptr android/expat/lib/xmltok.c /^ const char *ptr,$/;" v file: +ptr src/gfx/gfx_rendering_buffer.h /^ const byte* ptr;$/;" m struct:gfx::gfx_rendering_buffer::const_row_info +ptr src/gfx/gfx_scanline_storage.h /^ T* ptr;$/;" m struct:gfx::gfx_scanline_cell_storage::__anon158 +pts android/freetype/src/truetype/ttinterp.h /^ pts,$/;" m struct:TT_ExecContextRec_ +publicId android/expat/lib/xmlparse.c /^ const XML_Char *publicId;$/;" m struct:__anon11 file: +push_back src/include/data_vector.h /^inline bool pod_vector::push_back(const T& v) $/;" f class:picasso::pod_vector +python-calculate-indentation tools/gyp/tools/emacs/gyp.el /^(defadvice python-calculate-indentation (after ami-outdent-closing-parens$/;" f +qsort_cells src/gfx/gfx_rasterizer_cell.h /^void qsort_cells(Cell** start, unsigned int num)$/;" f namespace:gfx +qsort_threshold src/gfx/gfx_rasterizer_cell.h /^const int qsort_threshold = 9;$/;" m namespace:gfx +quadrantGradient demos/clock.c /^static ps_gradient* quadrantGradient;$/;" v file: +quadrantPath demos/clock.c /^static ps_path* quadrantPath;$/;" v file: +quant android/expat/lib/expat.h /^ enum XML_Content_Quant quant;$/;" m struct:XML_cp typeref:enum:XML_cp::XML_Content_Quant +quant android/expat/lib/xmlparse.c /^ enum XML_Content_Quant quant;$/;" m struct:__anon12 typeref:enum:__anon12::XML_Content_Quant file: +quant include/expat.h /^ enum XML_Content_Quant quant;$/;" m struct:XML_cp typeref:enum:XML_cp::XML_Content_Quant +quick_sort src/include/data_vector.h /^void quick_sort(Array& array, LessFunc less)$/;" f namespace:picasso +quick_sort_threshold src/include/data_vector.h /^const int quick_sort_threshold = 9;$/;" m namespace:picasso +quote_replace tools/gyp/tools/pretty_gyp.py /^def quote_replace(matchobj):$/;" f +quote_replacer_regex tools/gyp/build/lib/gyp/generator/msvs.py /^quote_replacer_regex = re.compile(r'(\\\\*)"')$/;" v +quote_replacer_regex tools/gyp/pylib/gyp/generator/msvs.py /^quote_replacer_regex = re.compile(r'(\\\\*)"')$/;" v +quote_replacer_regex2 tools/gyp/build/lib/gyp/generator/msvs.py /^quote_replacer_regex2 = re.compile(r'(\\\\+)"')$/;" v +quote_replacer_regex2 tools/gyp/pylib/gyp/generator/msvs.py /^quote_replacer_regex2 = re.compile(r'(\\\\+)"')$/;" v +r include/picasso.h /^ float r;$/;" m struct:_ps_color +r src/gfx/gfx_blur.h /^ value_type r;$/;" m struct:gfx::stack_blur_calc_rgba +r src/gfx/gfx_gradient_adapter.cpp /^ gfx_dda_line_interpolator<14> r;$/;" m struct:gfx::color_interpolator file: +r src/include/color_type.h /^ scalar r;$/;" m struct:picasso::rgba +r src/include/color_type.h /^ value_type r;$/;" m struct:picasso::rgba8 +r_mask src/gfx/gfx_span_image_filters.h /^ r_mask = (color_mask >> (order_type::G + order_type::B)) << (order_type::G + order_type::B),$/;" e enum:gfx::gfx_span_image_filter_rgb16::__anon174 +r_mask src/gfx/gfx_span_image_filters.h /^ r_mask = (color_mask >> (order_type::G + order_type::B)) << (order_type::G + order_type::B),$/;" e enum:gfx::gfx_span_image_filter_rgb16_nn::__anon175 +raccess_guess_apple_double android/freetype/src/base/ftrfork.c /^ raccess_guess_apple_double( FT_Library library,$/;" f file: +raccess_guess_apple_generic android/freetype/src/base/ftrfork.c /^ raccess_guess_apple_generic( FT_Library library,$/;" f file: +raccess_guess_apple_single android/freetype/src/base/ftrfork.c /^ raccess_guess_apple_single( FT_Library library,$/;" f file: +raccess_guess_darwin_hfsplus android/freetype/src/base/ftrfork.c /^ raccess_guess_darwin_hfsplus( FT_Library library,$/;" f file: +raccess_guess_darwin_newvfs android/freetype/src/base/ftrfork.c /^ raccess_guess_darwin_newvfs( FT_Library library,$/;" f file: +raccess_guess_darwin_ufs_export android/freetype/src/base/ftrfork.c /^ raccess_guess_darwin_ufs_export( FT_Library library,$/;" f file: +raccess_guess_func android/freetype/src/base/ftrfork.c /^ (*raccess_guess_func)( FT_Library library,$/;" t file: +raccess_guess_linux_cap android/freetype/src/base/ftrfork.c /^ raccess_guess_linux_cap( FT_Library library,$/;" f file: +raccess_guess_linux_double android/freetype/src/base/ftrfork.c /^ raccess_guess_linux_double( FT_Library library,$/;" f file: +raccess_guess_linux_double_from_file_name android/freetype/src/base/ftrfork.c /^ raccess_guess_linux_double_from_file_name( FT_Library library,$/;" f file: +raccess_guess_linux_netatalk android/freetype/src/base/ftrfork.c /^ raccess_guess_linux_netatalk( FT_Library library,$/;" f file: +raccess_guess_vfat android/freetype/src/base/ftrfork.c /^ raccess_guess_vfat( FT_Library library,$/;" f file: +raccess_make_file_name android/freetype/src/base/ftrfork.c /^ raccess_make_file_name( FT_Memory memory,$/;" f file: +rad2deg src/include/graphic_base.h /^inline scalar rad2deg(scalar rad)$/;" f namespace:picasso +radii_ok src/include/geometry.h /^ bool radii_ok(void) const { return m_radii_ok; }$/;" f class:picasso::bezier_arc_svg +radius android/freetype/src/base/ftstroke.c /^ FT_Fixed radius;$/;" m struct:FT_StrokerRec_ file: +radius src/gfx/gfx_image_filters.cpp /^ scalar radius(void) const { return FLT_TO_SCALAR(1.0f); }$/;" f class:gfx::image_filter_bilinear +radius src/gfx/gfx_image_filters.cpp /^ scalar radius(void) const { return FLT_TO_SCALAR(2.0f); }$/;" f class:gfx::image_filter_gaussian +radius src/gfx/gfx_image_filters.h /^ scalar radius(void) const { return m_radius; }$/;" f class:gfx::image_filter_adapter +radius src/include/geometry.h /^ void radius(scalar rx1, scalar ry1, scalar rx2, scalar ry2, $/;" f class:picasso::rounded_rect +random tools/gyp/build/lib/gyp/MSVSNew.py /^import random$/;" i +random tools/gyp/pylib/gyp/MSVSNew.py /^import random$/;" i +range android/freetype/src/truetype/ttobjs.h /^ FT_Int range; \/* in which code range is it located? *\/$/;" m struct:TT_DefRecord_ +range_count android/freetype/src/cff/cfftypes.h /^ FT_UInt range_count;$/;" m struct:CFF_FDSelectRec_ +range_shift android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort range_shift;$/;" m struct:SFNT_HeaderRec_ +range_shift include/freetype/internal/tttypes.h /^ FT_UShort range_shift;$/;" m struct:SFNT_HeaderRec_ +ranges_offset android/freetype/include/freetype/internal/tttypes.h /^ FT_ULong ranges_offset;$/;" m struct:TT_SBit_StrikeRec_ +ranges_offset include/freetype/internal/tttypes.h /^ FT_ULong ranges_offset;$/;" m struct:TT_SBit_StrikeRec_ +ras android/freetype/src/raster/ftraster.c /^#define ras /;" d file: +ras android/freetype/src/smooth/ftgrays.c /^ static TWorker ras;$/;" v file: +ras android/freetype/src/smooth/ftgrays.c /^#define ras /;" d file: +raster android/freetype/include/freetype/internal/ftobjs.h /^ FT_Raster raster;$/;" m struct:FT_RendererRec_ +raster include/freetype/internal/ftobjs.h /^ FT_Raster raster;$/;" m struct:FT_RendererRec_ +raster include/freetype/internal/ftpic.h /^ void* raster; $/;" m struct:FT_PIC_Container_ +raster src/picasso_objects.h /^ picasso::raster_adapter raster;$/;" m struct:_ps_context +raster_adapter src/picasso_raster_adapter.cpp /^raster_adapter::raster_adapter()$/;" f class:picasso::raster_adapter +raster_adapter src/picasso_raster_adapter.h /^class raster_adapter$/;" c namespace:picasso +raster_class android/freetype/include/freetype/ftrender.h /^ FT_Raster_Funcs* raster_class;$/;" m struct:FT_Renderer_Class_ +raster_class include/freetype/ftrender.h /^ FT_Raster_Funcs* raster_class;$/;" m struct:FT_Renderer_Class_ +raster_done android/freetype/include/freetype/ftimage.h /^ FT_Raster_DoneFunc raster_done;$/;" m struct:FT_Raster_Funcs_ +raster_done include/freetype/ftimage.h /^ FT_Raster_DoneFunc raster_done;$/;" m struct:FT_Raster_Funcs_ +raster_fill src/include/graphic_base.h /^ raster_fill = 2, $/;" e enum:picasso::__anon208 +raster_method src/gfx/gfx_raster_adapter.cpp /^unsigned int gfx_raster_adapter::raster_method(void) const$/;" f class:gfx::gfx_raster_adapter +raster_method src/include/graphic_base.h /^} raster_method;$/;" t namespace:picasso typeref:enum:picasso::__anon208 +raster_new android/freetype/include/freetype/ftimage.h /^ FT_Raster_NewFunc raster_new;$/;" m struct:FT_Raster_Funcs_ +raster_new include/freetype/ftimage.h /^ FT_Raster_NewFunc raster_new;$/;" m struct:FT_Raster_Funcs_ +raster_pool android/freetype/include/freetype/internal/ftobjs.h /^ FT_Byte* raster_pool; \/* scan-line conversion *\/$/;" m struct:FT_LibraryRec_ +raster_pool include/freetype/internal/ftobjs.h /^ FT_Byte* raster_pool; \/* scan-line conversion *\/$/;" m struct:FT_LibraryRec_ +raster_pool_size android/freetype/include/freetype/internal/ftobjs.h /^ FT_ULong raster_pool_size; \/* size of render pool in bytes *\/$/;" m struct:FT_LibraryRec_ +raster_pool_size include/freetype/internal/ftobjs.h /^ FT_ULong raster_pool_size; \/* size of render pool in bytes *\/$/;" m struct:FT_LibraryRec_ +raster_render android/freetype/include/freetype/ftimage.h /^ FT_Raster_RenderFunc raster_render;$/;" m struct:FT_Raster_Funcs_ +raster_render android/freetype/include/freetype/internal/ftobjs.h /^ FT_Raster_Render_Func raster_render;$/;" m struct:FT_RendererRec_ +raster_render include/freetype/ftimage.h /^ FT_Raster_RenderFunc raster_render;$/;" m struct:FT_Raster_Funcs_ +raster_render include/freetype/internal/ftobjs.h /^ FT_Raster_Render_Func raster_render;$/;" m struct:FT_RendererRec_ +raster_reset android/freetype/include/freetype/ftimage.h /^ FT_Raster_ResetFunc raster_reset;$/;" m struct:FT_Raster_Funcs_ +raster_reset include/freetype/ftimage.h /^ FT_Raster_ResetFunc raster_reset;$/;" m struct:FT_Raster_Funcs_ +raster_set_mode android/freetype/include/freetype/ftimage.h /^ FT_Raster_SetModeFunc raster_set_mode;$/;" m struct:FT_Raster_Funcs_ +raster_set_mode include/freetype/ftimage.h /^ FT_Raster_SetModeFunc raster_set_mode;$/;" m struct:FT_Raster_Funcs_ +raster_stroke src/include/graphic_base.h /^ raster_stroke = 1,$/;" e enum:picasso::__anon208 +ratio android/freetype/src/truetype/ttobjs.h /^ FT_Long ratio; \/* current ratio *\/$/;" m struct:TT_Size_Metrics_ +rawName android/expat/lib/xmlparse.c /^ const char *rawName; \/* tagName in the original encoding *\/$/;" m struct:tag file: +rawNameLength android/expat/lib/xmlparse.c /^ int rawNameLength;$/;" m struct:tag file: +re tools/gyp/build/lib/gyp/MSVSSettings.py /^import re$/;" i +re tools/gyp/build/lib/gyp/MSVSUserFile.py /^import re$/;" i +re tools/gyp/build/lib/gyp/MSVSVersion.py /^import re$/;" i +re tools/gyp/build/lib/gyp/__init__.py /^import re$/;" i +re tools/gyp/build/lib/gyp/common.py /^import re$/;" i +re tools/gyp/build/lib/gyp/easy_xml.py /^import re$/;" i +re tools/gyp/build/lib/gyp/generator/android.py /^import re$/;" i +re tools/gyp/build/lib/gyp/generator/make.py /^import re$/;" i +re tools/gyp/build/lib/gyp/generator/msvs.py /^import re$/;" i +re tools/gyp/build/lib/gyp/generator/ninja.py /^import re$/;" i +re tools/gyp/build/lib/gyp/generator/scons.py /^import re$/;" i +re tools/gyp/build/lib/gyp/generator/xcode.py /^import re$/;" i +re tools/gyp/build/lib/gyp/input.py /^import re$/;" i +re tools/gyp/build/lib/gyp/mac_tool.py /^import re$/;" i +re tools/gyp/build/lib/gyp/msvs_emulation.py /^import re$/;" i +re tools/gyp/build/lib/gyp/ninja_syntax.py /^import re$/;" i +re tools/gyp/build/lib/gyp/xcode_emulation.py /^import re$/;" i +re tools/gyp/build/lib/gyp/xcodeproj_file.py /^import re$/;" i +re tools/gyp/pylib/gyp/MSVSSettings.py /^import re$/;" i +re tools/gyp/pylib/gyp/MSVSUserFile.py /^import re$/;" i +re tools/gyp/pylib/gyp/MSVSVersion.py /^import re$/;" i +re tools/gyp/pylib/gyp/__init__.py /^import re$/;" i +re tools/gyp/pylib/gyp/common.py /^import re$/;" i +re tools/gyp/pylib/gyp/easy_xml.py /^import re$/;" i +re tools/gyp/pylib/gyp/generator/android.py /^import re$/;" i +re tools/gyp/pylib/gyp/generator/make.py /^import re$/;" i +re tools/gyp/pylib/gyp/generator/msvs.py /^import re$/;" i +re tools/gyp/pylib/gyp/generator/ninja.py /^import re$/;" i +re tools/gyp/pylib/gyp/generator/scons.py /^import re$/;" i +re tools/gyp/pylib/gyp/generator/xcode.py /^import re$/;" i +re tools/gyp/pylib/gyp/input.py /^import re$/;" i +re tools/gyp/pylib/gyp/mac_tool.py /^import re$/;" i +re tools/gyp/pylib/gyp/msvs_emulation.py /^import re$/;" i +re tools/gyp/pylib/gyp/ninja_syntax.py /^import re$/;" i +re tools/gyp/pylib/gyp/xcode_emulation.py /^import re$/;" i +re tools/gyp/pylib/gyp/xcodeproj_file.py /^import re$/;" i +re tools/gyp/tools/pretty_gyp.py /^import re$/;" i +re tools/gyp/tools/pretty_sln.py /^import re$/;" i +read android/freetype/include/freetype/ftsystem.h /^ FT_Stream_IoFunc read;$/;" m struct:FT_StreamRec_ +read include/freetype/ftsystem.h /^ FT_Stream_IoFunc read;$/;" m struct:FT_StreamRec_ +read-golden-sample tools/gyp/tools/emacs/gyp-tests.el /^(defun read-golden-sample (filename)$/;" f +read_composite_glyph android/freetype/include/freetype/internal/tttypes.h /^ TT_Loader_ReadGlyphFunc read_composite_glyph;$/;" m struct:TT_FaceRec_ +read_composite_glyph include/freetype/internal/tttypes.h /^ TT_Loader_ReadGlyphFunc read_composite_glyph;$/;" m struct:TT_FaceRec_ +read_glyph_header android/freetype/include/freetype/internal/tttypes.h /^ TT_Loader_ReadGlyphFunc read_glyph_header;$/;" m struct:TT_FaceRec_ +read_glyph_header include/freetype/internal/tttypes.h /^ TT_Loader_ReadGlyphFunc read_glyph_header;$/;" m struct:TT_FaceRec_ +read_int32 src/gfx/gfx_scanline_storage.h /^ int read_int32(void)$/;" f class:gfx::gfx_serialized_scanlines_adaptor_aa::embedded_scanline::const_iterator +read_int32 src/gfx/gfx_scanline_storage.h /^ int read_int32(void)$/;" f class:gfx::gfx_serialized_scanlines_adaptor_bin::embedded_scanline::const_iterator +read_int32 src/gfx/gfx_scanline_storage.h /^ int read_int32(void)$/;" f class:gfx::gfx_serialized_scanlines_adaptor_aa::embedded_scanline +read_int32 src/gfx/gfx_scanline_storage.h /^ int read_int32(void)$/;" f class:gfx::gfx_serialized_scanlines_adaptor_bin::embedded_scanline +read_int32 src/gfx/gfx_scanline_storage.h /^ int read_int32(void)$/;" f class:gfx::gfx_serialized_scanlines_adaptor_aa +read_int32 src/gfx/gfx_scanline_storage.h /^ int read_int32(void)$/;" f class:gfx::gfx_serialized_scanlines_adaptor_bin +read_int32u src/gfx/gfx_scanline_storage.h /^ unsigned int read_int32u(void)$/;" f class:gfx::gfx_serialized_scanlines_adaptor_aa +read_simple_glyph android/freetype/include/freetype/internal/tttypes.h /^ TT_Loader_ReadGlyphFunc read_simple_glyph;$/;" m struct:TT_FaceRec_ +read_simple_glyph include/freetype/internal/tttypes.h /^ TT_Loader_ReadGlyphFunc read_simple_glyph;$/;" m struct:TT_FaceRec_ +read_width android/freetype/src/cff/cffgload.h /^ FT_Bool read_width;$/;" m struct:CFF_Decoder_ +reader android/freetype/include/freetype/internal/psaux.h /^ T1_Field_ParseFunc reader;$/;" m struct:T1_FieldRec_ +reader android/freetype/src/cff/cffparse.c /^ CFF_Field_Reader reader;$/;" m struct:CFF_Field_Handler_ file: +reader include/freetype/internal/psaux.h /^ T1_Field_ParseFunc reader;$/;" m struct:T1_FieldRec_ +ready src/include/convert.h /^ ready,$/;" e enum:picasso::conv_dash::__anon190 +ready src/include/convert.h /^ ready,$/;" e enum:picasso::conv_stroke::__anon192 +realloc android/freetype/include/freetype/ftsystem.h /^ FT_Realloc_Func realloc;$/;" m struct:FT_MemoryRec_ +realloc android/freetype/src/base/ftdbgmem.c /^ FT_Realloc_Func realloc;$/;" m struct:FT_MemTableRec_ file: +realloc include/freetype/ftsystem.h /^ FT_Realloc_Func realloc;$/;" m struct:FT_MemoryRec_ +realloc_fcn android/expat/lib/expat.h /^ void *(*realloc_fcn)(void *ptr, size_t size);$/;" m struct:__anon1 +realloc_fcn include/expat.h /^ void *(*realloc_fcn)(void *ptr, size_t size);$/;" m struct:__anon47 +realloc_filter_lut src/gfx/gfx_image_filters.h /^ void realloc_filter_lut(scalar radius)$/;" f class:gfx::image_filter_adapter +realloc_span src/gfx/gfx_mask_layer.h /^ void realloc_span(unsigned int len)$/;" f class:gfx::gfx_pixfmt_amask_adaptor +reallocate_t1_table android/freetype/src/psaux/psobjs.c /^ reallocate_t1_table( PS_Table table,$/;" f file: +records android/freetype/include/freetype/internal/tttypes.h /^ TT_HdmxEntry records;$/;" m struct:TT_HdmxRec_ +records include/freetype/internal/tttypes.h /^ TT_HdmxEntry records;$/;" m struct:TT_HdmxRec_ +rect src/gfx/gfx_painter.h /^ rect_s rect;$/;" m struct:gfx::gfx_painter::__anon64 +rect src/gfx/gfx_painter.h /^ rect_s rect;$/;" m struct:gfx::gfx_painter::__anon65 +rect src/include/geometry.h /^ void rect(scalar x1, scalar y1, scalar x2, scalar y2)$/;" f class:picasso::rounded_rect +rect src/include/graphic_base.h /^typedef rect_base rect; \/\/integer$/;" t namespace:picasso +rect src/picasso_objects.h /^ rect_s rect;$/;" m struct:picasso::clip_area +rect_base src/include/graphic_base.h /^ rect_base() $/;" f struct:picasso::rect_base +rect_base src/include/graphic_base.h /^ rect_base(T _x1, T _y1, T _x2, T _y2)$/;" f struct:picasso::rect_base +rect_base src/include/graphic_base.h /^template struct rect_base$/;" s namespace:picasso +rect_s src/include/graphic_base.h /^typedef rect_base rect_s; \/\/scalar$/;" t namespace:picasso +recursive_bezier src/core/curve.cpp /^void curve3_div::recursive_bezier(scalar x1, scalar y1, scalar x2, scalar y2, scalar x3, scalar y3, unsigned int level)$/;" f class:picasso::curve3_div +recursive_bezier src/core/curve.cpp /^void curve4_div::recursive_bezier(scalar x1, scalar y1, scalar x2, scalar y2, scalar x3, scalar y3, scalar x4, scalar y4, unsigned int level)$/;" f class:picasso::curve4_div +ref android/freetype/src/autofit/aflatin.h /^ AF_WidthRec ref;$/;" m struct:AF_LatinBlueRec_ +ref src/include/shared.h /^ void ref(void)$/;" f class:picasso::shared +refcount include/freetype/internal/ftobjs.h /^ FT_UInt refcount;$/;" m struct:FT_Face_InternalRec_ +refcount include/freetype/internal/ftobjs.h /^ FT_UInt refcount;$/;" m struct:FT_LibraryRec_ +refcount src/picasso_objects.h /^ int refcount;$/;" m struct:_ps_canvas +refcount src/picasso_objects.h /^ int refcount;$/;" m struct:_ps_context +refcount src/picasso_objects.h /^ int refcount;$/;" m struct:_ps_font +refcount src/picasso_objects.h /^ int refcount;$/;" m struct:_ps_gradient +refcount src/picasso_objects.h /^ int refcount;$/;" m struct:_ps_image +refcount src/picasso_objects.h /^ int refcount;$/;" m struct:_ps_mask +refcount src/picasso_objects.h /^ int refcount;$/;" m struct:_ps_matrix +refcount src/picasso_objects.h /^ int refcount;$/;" m struct:_ps_path +refcount src/picasso_objects.h /^ int refcount;$/;" m struct:_ps_pattern +refptr src/include/refptr.h /^ explicit refptr(T * ptr)$/;" f class:picasso::refptr +refptr src/include/refptr.h /^ refptr()$/;" f class:picasso::refptr +refptr src/include/refptr.h /^ refptr(const refptr & o)$/;" f class:picasso::refptr +refptr src/include/refptr.h /^template class refptr $/;" c namespace:picasso +refresh demos/platform_gix.c /^void refresh(const ps_rect* r)$/;" f +refresh demos/platform_gtk2.c /^void refresh(const ps_rect* r)$/;" f +refresh demos/platform_minigui.c /^void refresh(const ps_rect* r)$/;" f +refresh demos/platform_qt4.cpp /^extern "C" void refresh(const ps_rect* r)$/;" f +refresh demos/platform_win32.c /^void refresh(const ps_rect* r)$/;" f +registry android/freetype/include/freetype/t1tables.h /^ FT_String* registry;$/;" m struct:CID_FaceInfoRec_ +registry android/freetype/src/cff/cfftypes.h /^ FT_String* registry;$/;" m struct:CFF_FontRec_ +registry include/freetype/t1tables.h /^ FT_String* registry;$/;" m struct:CID_FaceInfoRec_ +rel_to_abs src/core/graphic_path.cpp /^void graphic_path::rel_to_abs(scalar* x, scalar* y) const$/;" f class:picasso::graphic_path +release android/expat/lib/expat.h /^ void (XMLCALL *release)(void *data);$/;" m struct:__anon2 +release android/freetype/include/freetype/internal/psaux.h /^ (*release)( PS_Table table );$/;" m struct:PS_Table_FuncsRec_ +release include/expat.h /^ void (XMLCALL *release)(void *data);$/;" m struct:__anon48 +release include/freetype/internal/psaux.h /^ (*release)( PS_Table table );$/;" m struct:PS_Table_FuncsRec_ +rem src/gfx/gfx_line_generator.h /^ int rem(void) const { return m_rem; }$/;" f class:gfx::gfx_dda2_line_interpolator +removeThis src/include/shared.h /^ virtual void removeThis(void) $/;" f class:picasso::shared +remove_all src/core/graphic_path.cpp /^ void remove_all(void)$/;" f class:picasso::graphic_path_impl +remove_all src/core/graphic_path.cpp /^void graphic_path::remove_all(void)$/;" f class:picasso::graphic_path +remove_all src/gfx/gfx_gradient_adapter.h /^ void remove_all(void)$/;" f class:gfx::gfx_gradient_table +remove_all src/gfx/gfx_scanline_storage.h /^ void remove_all(void)$/;" f class:gfx::gfx_scanline_cell_storage +remove_all src/include/convert.h /^ virtual void remove_all(void)$/;" f class:picasso::conv_dash +remove_all src/include/convert.h /^ virtual void remove_all(void)$/;" f class:picasso::conv_stroke +remove_all src/include/data_vector.h /^ void remove_all(void)$/;" f class:picasso::block_allocator +remove_all src/include/data_vector.h /^inline void pod_bvector::remove_all(void)$/;" f class:picasso::pod_bvector +remove_duplicates src/include/data_vector.h /^unsigned remove_duplicates(Array& array, EqualFunc equal)$/;" f namespace:picasso +remove_last src/include/data_vector.h /^ void remove_last(void) { if (m_size) --m_size; }$/;" f class:picasso::pod_bvector +remove_last src/include/data_vector.h /^ void remove_last(void) { if (m_size) --m_size; }$/;" f class:picasso::pod_vector +ren_type src/gfx/gfx_scanline_renderer.h /^ typedef BaseRenderer ren_type;$/;" t class:gfx::gfx_renderer_scanline_aa_solid +ren_type src/gfx/gfx_scanline_renderer.h /^ typedef BaseRenderer ren_type;$/;" t class:gfx::gfx_renderer_scanline_bin_solid +render android/freetype/include/freetype/internal/ftobjs.h /^ FT_Renderer_RenderFunc render;$/;" m struct:FT_RendererRec_ +render include/freetype/internal/ftobjs.h /^ FT_Renderer_RenderFunc render;$/;" m struct:FT_RendererRec_ +render src/gfx/gfx_scanline_renderer.h /^ void render(const Scanline& sl)$/;" f class:gfx::gfx_renderer_scanline_aa_solid +render src/gfx/gfx_scanline_renderer.h /^ void render(const Scanline& sl)$/;" f class:gfx::gfx_renderer_scanline_bin_solid +render src/gfx/gfx_scanline_storage.h /^ void render(const Scanline& sl)$/;" f class:gfx::gfx_scanline_storage_aa +render src/gfx/gfx_scanline_storage.h /^ void render(const Scanline& sl)$/;" f class:gfx::gfx_scanline_storage_bin +render_blur src/picasso_painter.cpp /^void painter::render_blur(context_state* state)$/;" f class:picasso::painter +render_clear src/picasso_painter.cpp /^void painter::render_clear(context_state* state)$/;" f class:picasso::painter +render_clip src/picasso_painter.cpp /^void painter::render_clip(context_state* state, bool clip)$/;" f class:picasso::painter +render_copy src/picasso_painter.cpp /^void painter::render_copy(rendering_buffer& src, const rect* r, const painter* dst, int off_x, int off_y)$/;" f class:picasso::painter +render_fill src/picasso_painter.cpp /^void painter::render_fill(context_state* state, raster_adapter& raster, const graphic_path& p)$/;" f class:picasso::painter +render_gamma src/picasso_painter.cpp /^void painter::render_gamma(context_state* state, raster_adapter& raster)$/;" f class:picasso::painter +render_glyph android/freetype/include/freetype/ftrender.h /^ FT_Renderer_RenderFunc render_glyph;$/;" m struct:FT_Renderer_Class_ +render_glyph include/freetype/ftrender.h /^ FT_Renderer_RenderFunc render_glyph;$/;" m struct:FT_Renderer_Class_ +render_glyph src/picasso_painter.cpp /^void painter::render_glyph(context_state* state, raster_adapter& raster, const font_adapter* font, int type)$/;" f class:picasso::painter +render_glyphs_raster src/picasso_painter.cpp /^void painter::render_glyphs_raster(context_state* state, raster_adapter& raster, int style)$/;" f class:picasso::painter +render_hline src/gfx/gfx_rasterizer_cell.h /^ void render_hline(int ey, int x1, int y1, int x2, int y2)$/;" f class:gfx::gfx_rasterizer_cells_aa +render_mask src/picasso_painter.cpp /^void painter::render_mask(const mask_layer& m, bool mask)$/;" f class:picasso::painter +render_mode android/freetype/src/autofit/aftypes.h /^ FT_Render_Mode render_mode; \/* monochrome, anti-aliased, LCD, etc. *\/$/;" m struct:AF_ScalerRec_ +render_paint src/picasso_painter.cpp /^void painter::render_paint(context_state* state, raster_adapter& raster, const graphic_path& p)$/;" f class:picasso::painter +render_shadow src/picasso_painter.cpp /^void painter::render_shadow(context_state* state, const graphic_path& p, bool fill, bool stroke)$/;" f class:picasso::painter +render_span android/freetype/src/smooth/ftgrays.c /^ FT_Raster_Span_Func render_span;$/;" m struct:TWorker_ file: +render_span_data android/freetype/src/smooth/ftgrays.c /^ void* render_span_data;$/;" m struct:TWorker_ file: +render_stroke src/picasso_painter.cpp /^void painter::render_stroke(context_state* state, raster_adapter& raster, const graphic_path& p)$/;" f class:picasso::painter +renderer_base_type src/gfx/gfx_painter.h /^ typedef gfx_renderer renderer_base_type;$/;" t class:gfx::gfx_painter +renderer_bin_type src/gfx/gfx_painter.h /^ typedef gfx_renderer_scanline_bin_solid renderer_bin_type;$/;" t class:gfx::gfx_painter +renderer_solid_type src/gfx/gfx_painter.h /^ typedef gfx_renderer_scanline_aa_solid renderer_solid_type;$/;" t class:gfx::gfx_painter +renderers android/freetype/include/freetype/internal/ftobjs.h /^ FT_ListRec renderers; \/* list of renderers *\/$/;" m struct:FT_LibraryRec_ +renderers include/freetype/internal/ftobjs.h /^ FT_ListRec renderers; \/* list of renderers *\/$/;" m struct:FT_LibraryRec_ +rendering_buffer src/picasso_rendering_buffer.cpp /^rendering_buffer::rendering_buffer()$/;" f class:picasso::rendering_buffer +rendering_buffer src/picasso_rendering_buffer.cpp /^rendering_buffer::rendering_buffer(byte* buf, unsigned int width, unsigned int height, int stride)$/;" f class:picasso::rendering_buffer +rendering_buffer src/picasso_rendering_buffer.h /^class rendering_buffer$/;" c namespace:picasso +replace src/picasso_rendering_buffer.cpp /^void rendering_buffer::replace(byte* buf, unsigned int width, unsigned int height, int stride)$/;" f class:picasso::rendering_buffer +replace tools/gyp/build/lib/gyp/easy_xml.py /^ def replace(match):$/;" f function:_XmlEscape +replace tools/gyp/pylib/gyp/easy_xml.py /^ def replace(match):$/;" f function:_XmlEscape +report tools/gyp/gyptest.py /^ def report(description, tests):$/;" f function:main +reportComment android/expat/lib/xmlparse.c /^reportComment(XML_Parser parser, const ENCODING *enc,$/;" f file: +reportDefault android/expat/lib/xmlparse.c /^reportDefault(XML_Parser parser, const ENCODING *enc,$/;" f file: +reportProcessingInstruction android/expat/lib/xmlparse.c /^reportProcessingInstruction(XML_Parser parser, const ENCODING *enc,$/;" f file: +request_size android/freetype/include/freetype/internal/ftdriver.h /^ FT_Size_RequestFunc request_size;$/;" m struct:FT_Driver_ClassRec_ +request_size include/freetype/internal/ftdriver.h /^ FT_Size_RequestFunc request_size;$/;" m struct:FT_Driver_ClassRec_ +res_id android/freetype/include/freetype/internal/ftrfork.h /^ FT_UShort res_id;$/;" m struct:FT_RFork_Ref_ +res_id include/freetype/internal/ftrfork.h /^ FT_UShort res_id;$/;" m struct:FT_RFork_Ref_ +reserved android/freetype/include/freetype/freetype.h /^ FT_UInt reserved; \/* retained for binary compatibility *\/$/;" m struct:FT_GlyphSlotRec_ +reserved android/freetype/include/freetype/ftwinfnt.h /^ FT_Byte reserved;$/;" m struct:FT_WinFNT_HeaderRec_ +reserved include/freetype/freetype.h /^ FT_UInt reserved; \/* retained for binary compatibility *\/$/;" m struct:FT_GlyphSlotRec_ +reserved include/freetype/ftwinfnt.h /^ FT_Byte reserved;$/;" m struct:FT_WinFNT_HeaderRec_ +reserved1 android/freetype/include/freetype/ftwinfnt.h /^ FT_ULong reserved1[4];$/;" m struct:FT_WinFNT_HeaderRec_ +reserved1 android/freetype/include/freetype/internal/ftobjs.h /^ FT_UShort reserved1;$/;" m struct:FT_Face_InternalRec_ +reserved1 include/freetype/ftwinfnt.h /^ FT_ULong reserved1[4];$/;" m struct:FT_WinFNT_HeaderRec_ +reserved1 include/freetype/internal/ftobjs.h /^ FT_UShort reserved1;$/;" m struct:FT_Face_InternalRec_ +reserved2 android/freetype/include/freetype/internal/ftobjs.h /^ FT_Short reserved2;$/;" m struct:FT_Face_InternalRec_ +reserved2 include/freetype/internal/ftobjs.h /^ FT_Short reserved2;$/;" m struct:FT_Face_InternalRec_ +reset android/freetype/include/freetype/internal/pshints.h /^ T1_Hints_ResetFunc reset;$/;" m struct:T1_Hints_FuncsRec_ +reset include/freetype/internal/pshints.h /^ T1_Hints_ResetFunc reset;$/;" m struct:T1_Hints_FuncsRec_ +reset src/gfx/gfx_raster_adapter.cpp /^ void reset(void)$/;" f class:gfx::gfx_raster_adapter_impl +reset src/gfx/gfx_raster_adapter.cpp /^void gfx_raster_adapter::reset(void)$/;" f class:gfx::gfx_raster_adapter +reset src/gfx/gfx_rasterizer_cell.h /^ void reset(void)$/;" f class:gfx::gfx_rasterizer_cells_aa +reset src/gfx/gfx_rasterizer_scanline.h /^ void reset(void)$/;" f class:gfx::gfx_rasterizer_scanline_aa +reset src/gfx/gfx_scanline.h /^ void reset(int min_x, int max_x)$/;" f class:gfx::gfx_scanline_bin +reset src/gfx/gfx_scanline.h /^ void reset(int min_x, int max_x)$/;" f class:gfx::gfx_scanline_p8 +reset src/gfx/gfx_scanline.h /^ void reset(int min_x, int max_x)$/;" f class:gfx::gfx_scanline_u8 +reset src/gfx/gfx_scanline_storage.h /^ void reset(int, int) { }$/;" f class:gfx::gfx_scanline_storage_aa::embedded_scanline +reset src/gfx/gfx_scanline_storage.h /^ void reset(int, int) { }$/;" f class:gfx::gfx_scanline_storage_bin::embedded_scanline +reset src/gfx/gfx_scanline_storage.h /^ void reset(int, int) { }$/;" f class:gfx::gfx_serialized_scanlines_adaptor_aa::embedded_scanline +reset src/gfx/gfx_scanline_storage.h /^ void reset(int, int) { }$/;" f class:gfx::gfx_serialized_scanlines_adaptor_bin::embedded_scanline +reset src/gfx/gfx_trans_affine.h /^ virtual void reset(void)$/;" f class:gfx::gfx_trans_affine +reset src/include/convert.h /^ virtual void reset(void)$/;" f class:picasso::conv_dash +reset src/include/convert.h /^ virtual void reset(void)$/;" f class:picasso::conv_stroke +reset src/include/curve.h /^ void reset(void) $/;" f class:picasso::curve3_div +reset src/include/curve.h /^ void reset(void) $/;" f class:picasso::curve3_inc +reset src/include/curve.h /^ void reset(void) $/;" f class:picasso::curve4_div +reset src/include/curve.h /^ void reset(void) $/;" f class:picasso::curve4_inc +reset src/include/geometry.h /^ void reset(void) $/;" f class:picasso::curve3 +reset src/include/geometry.h /^ void reset(void) $/;" f class:picasso::curve4 +reset src/picasso_matrix.cpp /^const trans_affine& trans_affine::reset(void)$/;" f class:picasso::trans_affine +reset src/picasso_raster_adapter.cpp /^void raster_adapter::reset(void)$/;" f class:picasso::raster_adapter +reset_clipping src/gfx/gfx_renderer.h /^ void reset_clipping(bool visibility)$/;" f class:gfx::gfx_renderer +reset_face android/freetype/include/freetype/internal/autohint.h /^ FT_AutoHinter_GlobalResetFunc reset_face;$/;" m struct:FT_AutoHinter_ServiceRec_ +reset_face include/freetype/internal/autohint.h /^ FT_AutoHinter_GlobalResetFunc reset_face;$/;" m struct:FT_AutoHinter_ServiceRec_ +reset_it src/picasso_gpc.cpp /^static void reset_it(it_node **it)$/;" f namespace:picasso +reset_lmt src/picasso_gpc.cpp /^static void reset_lmt(lmt_node **lmt)$/;" f namespace:picasso +reset_spans src/gfx/gfx_rasterizer_scanline.h /^ void reset_spans(void) { }$/;" f class:gfx::scanline_hit_test +reset_spans src/gfx/gfx_scanline.h /^ void reset_spans(void)$/;" f class:gfx::gfx_scanline_bin +reset_spans src/gfx/gfx_scanline.h /^ void reset_spans(void)$/;" f class:gfx::gfx_scanline_p8 +reset_spans src/gfx/gfx_scanline.h /^ void reset_spans(void)$/;" f class:gfx::gfx_scanline_u8 +resize src/include/data_vector.h /^ void resize(unsigned int size)$/;" f class:picasso::pod_array +resize src/include/data_vector.h /^inline void pod_vector::resize(unsigned int new_size)$/;" f class:picasso::pod_vector +resizeEvent demos/platform_qt4.cpp /^inline void PWindow::resizeEvent(QResizeEvent * event)$/;" f class:PWindow +results android/freetype/src/sfnt/ttcmap.c /^ FT_UInt32* results;$/;" m struct:TT_CMap14Rec_ file: +rewind src/core/curve.cpp /^void curve3_inc::rewind(unsigned int)$/;" f class:picasso::curve3_inc +rewind src/core/curve.cpp /^void curve4_inc::rewind(unsigned int)$/;" f class:picasso::curve4_inc +rewind src/core/graphic_path.cpp /^void graphic_path::rewind(unsigned int id) $/;" f class:picasso::graphic_path +rewind src/include/convert.h /^ virtual void rewind(unsigned int id) $/;" f class:picasso::conv_clipper +rewind src/include/convert.h /^ virtual void rewind(unsigned int id) $/;" f class:picasso::conv_curve +rewind src/include/convert.h /^ virtual void rewind(unsigned int id) { m_source->rewind(id); }$/;" f class:picasso::conv_transform +rewind src/include/convert.h /^ virtual void rewind(unsigned int id)$/;" f class:picasso::conv_line_generator +rewind src/include/curve.h /^ virtual void rewind(unsigned int id)$/;" f class:picasso::curve3_div +rewind src/include/curve.h /^ virtual void rewind(unsigned int id)$/;" f class:picasso::curve4_div +rewind src/include/geometry.h /^ virtual void rewind(unsigned int id)$/;" f class:picasso::arc +rewind src/include/geometry.h /^ virtual void rewind(unsigned int id)$/;" f class:picasso::bezier_arc +rewind src/include/geometry.h /^ virtual void rewind(unsigned int id)$/;" f class:picasso::bezier_arc_svg +rewind src/include/geometry.h /^ virtual void rewind(unsigned int id)$/;" f class:picasso::curve3 +rewind src/include/geometry.h /^ virtual void rewind(unsigned int id)$/;" f class:picasso::curve4 +rewind src/include/geometry.h /^ virtual void rewind(unsigned int id)$/;" f class:picasso::ellipse +rewind src/include/geometry.h /^ virtual void rewind(unsigned int id)$/;" f class:picasso::rounded_rect +rewind_scanlines src/gfx/gfx_rasterizer_scanline.h /^ bool rewind_scanlines(void)$/;" f class:gfx::gfx_rasterizer_scanline_aa +rewind_scanlines src/gfx/gfx_scanline_storage.h /^ bool rewind_scanlines(void)$/;" f class:gfx::gfx_scanline_storage_aa +rewind_scanlines src/gfx/gfx_scanline_storage.h /^ bool rewind_scanlines(void)$/;" f class:gfx::gfx_scanline_storage_bin +rewind_scanlines src/gfx/gfx_scanline_storage.h /^ bool rewind_scanlines(void)$/;" f class:gfx::gfx_serialized_scanlines_adaptor_aa +rewind_scanlines src/gfx/gfx_scanline_storage.h /^ bool rewind_scanlines(void)$/;" f class:gfx::gfx_serialized_scanlines_adaptor_bin +rgb_tag src/include/color_type.h /^struct order_bgr { enum { B=0, G=1, R=2, rgb_tag }; }; \/\/ order_bgr$/;" e enum:picasso::order_bgr::__anon177 +rgb_tag src/include/color_type.h /^struct order_rgb { enum { R=0, G=1, B=2, rgb_tag }; }; \/\/ order_rgb$/;" e enum:picasso::order_rgb::__anon176 +rgba src/include/color_type.h /^ rgba() $/;" f struct:picasso::rgba +rgba src/include/color_type.h /^ rgba(scalar _r, scalar _g, scalar _b, scalar _a = FLT_TO_SCALAR(1.0f))$/;" f struct:picasso::rgba +rgba src/include/color_type.h /^struct rgba$/;" s namespace:picasso +rgba8 src/include/color_type.h /^ rgba8() $/;" f struct:picasso::rgba8 +rgba8 src/include/color_type.h /^ rgba8(const rgba& c) $/;" f struct:picasso::rgba8 +rgba8 src/include/color_type.h /^ rgba8(unsigned int _r, unsigned int _g, unsigned int _b, unsigned int _a = base_mask)$/;" f struct:picasso::rgba8 +rgba8 src/include/color_type.h /^struct rgba8$/;" s namespace:picasso +rgba_tag src/include/color_type.h /^struct order_abgr { enum { A=0, B=1, G=2, R=3, rgba_tag }; }; \/\/ order_abgr$/;" e enum:picasso::order_abgr::__anon180 +rgba_tag src/include/color_type.h /^struct order_argb { enum { A=0, R=1, G=2, B=3, rgba_tag }; }; \/\/ order_argb$/;" e enum:picasso::order_argb::__anon179 +rgba_tag src/include/color_type.h /^struct order_bgra { enum { B=0, G=1, R=2, A=3, rgba_tag }; }; \/\/ order_bgra$/;" e enum:picasso::order_bgra::__anon181 +rgba_tag src/include/color_type.h /^struct order_rgba { enum { R=0, G=1, B=2, A=3, rgba_tag }; }; \/\/ order_rgba$/;" e enum:picasso::order_rgba::__anon178 +rgbp_tag src/include/color_type.h /^struct order_rgb555 { enum {R=5, G=5, B=5, rgbp_tag }; }; \/\/ order_rgb555$/;" e enum:picasso::order_rgb555::__anon183 +rgbp_tag src/include/color_type.h /^struct order_rgb565 { enum {R=5, G=6, B=5, rgbp_tag }; }; \/\/ order_rgb565$/;" e enum:picasso::order_rgb565::__anon182 +right android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort right; \/* index of right glyph in pair *\/$/;" m struct:TT_Kern0_PairRec_ +right include/freetype/internal/tttypes.h /^ FT_UShort right; \/* index of right glyph in pair *\/$/;" m struct:TT_Kern0_PairRec_ +role_none android/expat/lib/xmlrole.h /^ int role_none;$/;" m struct:prolog_state +root android/freetype/include/freetype/ftglyph.h /^ FT_GlyphRec root;$/;" m struct:FT_BitmapGlyphRec_ +root android/freetype/include/freetype/ftglyph.h /^ FT_GlyphRec root;$/;" m struct:FT_OutlineGlyphRec_ +root android/freetype/include/freetype/ftrender.h /^ FT_Module_Class root;$/;" m struct:FT_Renderer_Class_ +root android/freetype/include/freetype/internal/ftdriver.h /^ FT_Module_Class root;$/;" m struct:FT_Driver_ClassRec_ +root android/freetype/include/freetype/internal/ftobjs.h /^ FT_ModuleRec root;$/;" m struct:FT_RendererRec_ +root android/freetype/include/freetype/internal/ftobjs.h /^ FT_ModuleRec root;$/;" m struct:FT_DriverRec_ +root android/freetype/include/freetype/internal/pcftypes.h /^ FT_FaceRec root;$/;" m struct:PCF_Public_FaceRec_ +root android/freetype/include/freetype/internal/t1types.h /^ FT_FaceRec root;$/;" m struct:CID_FaceRec_ +root android/freetype/include/freetype/internal/t1types.h /^ FT_FaceRec root;$/;" m struct:T1_FaceRec_ +root android/freetype/include/freetype/internal/tttypes.h /^ FT_FaceRec root;$/;" m struct:TT_FaceRec_ +root android/freetype/src/autofit/aflatin.h /^ AF_ScriptMetricsRec root;$/;" m struct:AF_LatinMetricsRec_ +root android/freetype/src/autofit/afmodule.c /^ FT_ModuleRec root;$/;" m struct:FT_AutofitterRec_ file: +root android/freetype/src/cff/cffobjs.h /^ FT_DriverRec root;$/;" m struct:CFF_DriverRec_ +root android/freetype/src/cff/cffobjs.h /^ FT_GlyphSlotRec root;$/;" m struct:CFF_GlyphSlotRec_ +root android/freetype/src/cff/cffobjs.h /^ FT_SizeRec root;$/;" m struct:CFF_SizeRec_ +root android/freetype/src/pshinter/pshmod.c /^ FT_ModuleRec root;$/;" m struct:PS_Hinter_Module_Rec_ file: +root android/freetype/src/truetype/ttobjs.h /^ FT_DriverRec root;$/;" m struct:TT_DriverRec_ +root android/freetype/src/truetype/ttobjs.h /^ FT_SizeRec root;$/;" m struct:TT_SizeRec_ +root include/freetype/ftglyph.h /^ FT_GlyphRec root;$/;" m struct:FT_BitmapGlyphRec_ +root include/freetype/ftglyph.h /^ FT_GlyphRec root;$/;" m struct:FT_OutlineGlyphRec_ +root include/freetype/ftrender.h /^ FT_Module_Class root;$/;" m struct:FT_Renderer_Class_ +root include/freetype/internal/ftdriver.h /^ FT_Module_Class root;$/;" m struct:FT_Driver_ClassRec_ +root include/freetype/internal/ftobjs.h /^ FT_ModuleRec root;$/;" m struct:FT_RendererRec_ +root include/freetype/internal/ftobjs.h /^ FT_ModuleRec root;$/;" m struct:FT_DriverRec_ +root include/freetype/internal/pcftypes.h /^ FT_FaceRec root;$/;" m struct:PCF_Public_FaceRec_ +root include/freetype/internal/t1types.h /^ FT_FaceRec root;$/;" m struct:CID_FaceRec_ +root include/freetype/internal/t1types.h /^ FT_FaceRec root;$/;" m struct:T1_FaceRec_ +root include/freetype/internal/tttypes.h /^ FT_FaceRec root;$/;" m struct:TT_FaceRec_ +rot demos/flowers.c /^ float rot;$/;" m struct:__anon37 file: +rotate src/gfx/gfx_trans_affine.h /^ virtual void rotate(scalar a)$/;" f class:gfx::gfx_trans_affine +rotate src/picasso_matrix.cpp /^const trans_affine& trans_affine::rotate(scalar a) $/;" f class:picasso::trans_affine +rotateFactor demos/subwaymap.c /^static float rotateFactor = 0;$/;" v file: +rotated android/freetype/src/truetype/ttobjs.h /^ FT_Bool rotated; \/* `is the glyph rotated?'-flag *\/$/;" m struct:TT_Size_Metrics_ +rotation src/gfx/gfx_trans_affine.h /^ virtual scalar rotation(void) const$/;" f class:gfx::gfx_trans_affine +rotation src/picasso_matrix.cpp /^scalar trans_affine::rotation(void) const$/;" f class:picasso::trans_affine +rotf demos/flowers.c /^ float rotf;$/;" m struct:__anon37 file: +round src/include/fixedopt.h /^inline int round(fixed x)$/;" f namespace:fxmath +round_cap src/include/graphic_base.h /^ round_cap,$/;" e enum:picasso::__anon204 +round_join src/include/graphic_base.h /^ round_join = 2,$/;" e enum:picasso::__anon205 +round_state android/freetype/src/truetype/ttobjs.h /^ FT_Int round_state;$/;" m struct:TT_GraphicsState_ +round_stem_up android/freetype/include/freetype/t1tables.h /^ FT_Bool round_stem_up;$/;" m struct:PS_PrivateRec_ +round_stem_up include/freetype/t1tables.h /^ FT_Bool round_stem_up;$/;" m struct:PS_PrivateRec_ +rounded_rect src/include/geometry.h /^ rounded_rect() $/;" f class:picasso::rounded_rect +rounded_rect src/include/geometry.h /^ rounded_rect(scalar x1, scalar y1, scalar x2, scalar y2, scalar r)$/;" f class:picasso::rounded_rect +rounded_rect src/include/geometry.h /^class rounded_rect : public vertex_source$/;" c namespace:picasso +row src/gfx/gfx_pixfmt_rgb.h /^ row_data row(int y) const { return m_buffer->row(y); }$/;" f class:gfx::pixfmt_blender_rgb +row src/gfx/gfx_pixfmt_rgb16.h /^ row_data row(int y) const { return m_buffer->row(y); }$/;" f class:gfx::pixfmt_blender_rgb16 +row src/gfx/gfx_pixfmt_rgba.h /^ row_data row(int y) const { return m_buffer->row(y); }$/;" f class:gfx::pixfmt_blender_rgba +row src/gfx/gfx_pixfmt_wrapper.h /^ row_data row(int y) const { return m_fmt.row(y); }$/;" f class:gfx::gfx_pixfmt_wrapper +row src/gfx/gfx_rendering_buffer.h /^ row_data row (int y) const { return row_data(0, m_width-1, row_ptr(y)); }$/;" f class:gfx::gfx_rendering_buffer +row_data src/gfx/gfx_mask_layer.h /^ typedef typename pixfmt_type::row_data row_data;$/;" t class:gfx::gfx_pixfmt_amask_adaptor +row_data src/gfx/gfx_pixfmt_rgb.h /^ typedef typename buffer_type::row_data row_data;$/;" t class:gfx::pixfmt_blender_rgb +row_data src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename buffer_type::row_data row_data;$/;" t class:gfx::pixfmt_blender_rgb16 +row_data src/gfx/gfx_pixfmt_rgba.h /^ typedef typename buffer_type::row_data row_data;$/;" t class:gfx::pixfmt_blender_rgba +row_data src/gfx/gfx_pixfmt_wrapper.h /^ typedef typename pixfmt_type::row_data row_data;$/;" t class:gfx::gfx_pixfmt_wrapper +row_data src/gfx/gfx_rendering_buffer.h /^ } row_data;$/;" t class:gfx::gfx_rendering_buffer typeref:struct:gfx::gfx_rendering_buffer::const_row_info +row_ptr src/gfx/gfx_pixfmt_rgb.h /^ byte* row_ptr(int y) { return m_buffer->row_ptr(y); }$/;" f class:gfx::pixfmt_blender_rgb +row_ptr src/gfx/gfx_pixfmt_rgb.h /^ const byte* row_ptr(int y) const { return m_buffer->row_ptr(y); }$/;" f class:gfx::pixfmt_blender_rgb +row_ptr src/gfx/gfx_pixfmt_rgb16.h /^ byte* row_ptr(int y) { return m_buffer->row_ptr(y); }$/;" f class:gfx::pixfmt_blender_rgb16 +row_ptr src/gfx/gfx_pixfmt_rgb16.h /^ const byte* row_ptr(int y) const { return m_buffer->row_ptr(y); }$/;" f class:gfx::pixfmt_blender_rgb16 +row_ptr src/gfx/gfx_pixfmt_rgba.h /^ byte* row_ptr(int y) { return m_buffer->row_ptr(y); }$/;" f class:gfx::pixfmt_blender_rgba +row_ptr src/gfx/gfx_pixfmt_rgba.h /^ const byte* row_ptr(int y) const { return m_buffer->row_ptr(y); }$/;" f class:gfx::pixfmt_blender_rgba +row_ptr src/gfx/gfx_pixfmt_wrapper.h /^ byte* row_ptr(int y) { return m_fmt.row_ptr(y); }$/;" f class:gfx::gfx_pixfmt_wrapper +row_ptr src/gfx/gfx_pixfmt_wrapper.h /^ const byte* row_ptr(int y) const { return m_fmt.row_ptr(y); }$/;" f class:gfx::gfx_pixfmt_wrapper +row_ptr src/gfx/gfx_rendering_buffer.h /^ byte* row_ptr(int y) const { return m_rows[y]; }$/;" f class:gfx::gfx_rendering_buffer +row_ptr src/gfx/gfx_rendering_buffer.h /^ byte* row_ptr(int, int y, unsigned int) const { return m_rows[y]; }$/;" f class:gfx::gfx_rendering_buffer +rows android/freetype/include/freetype/ftimage.h /^ int rows;$/;" m struct:FT_Bitmap_ +rows include/freetype/ftimage.h /^ int rows;$/;" m struct:FT_Bitmap_ +rp0 android/freetype/src/truetype/ttobjs.h /^ FT_UShort rp0;$/;" m struct:TT_GraphicsState_ +rp1 android/freetype/src/truetype/ttobjs.h /^ FT_UShort rp1;$/;" m struct:TT_GraphicsState_ +rp2 android/freetype/src/truetype/ttobjs.h /^ FT_UShort rp2;$/;" m struct:TT_GraphicsState_ +rsb_delta android/freetype/include/freetype/freetype.h /^ FT_Pos rsb_delta;$/;" m struct:FT_GlyphSlotRec_ +rsb_delta include/freetype/freetype.h /^ FT_Pos rsb_delta;$/;" m struct:FT_GlyphSlotRec_ +rule src/picasso_objects.h /^ filling_rule rule;$/;" m struct:picasso::clip_area +rule src/picasso_objects.h /^ filling_rule rule;$/;" m struct:picasso::graphic_brush +rule tools/gyp/build/lib/gyp/ninja_syntax.py /^ def rule(self, name, command, description=None, depfile=None,$/;" m class:Writer +rule tools/gyp/pylib/gyp/ninja_syntax.py /^ def rule(self, name, command, description=None, depfile=None,$/;" m class:Writer +run tools/gyp/gyptest.py /^ def run(self, command, display=None, stdout=None, stderr=None):$/;" m class:CommandRunner +s android/expat/lib/xmlparse.c /^ XML_Char s[1];$/;" m struct:block file: +s android/freetype/src/psaux/afmparse.h /^ char* s;$/;" m union:AFM_ValueRec_::__anon31 +s test/gamma_func.c /^ float s;$/;" m struct:dash_data file: +sCapHeight android/freetype/include/freetype/tttables.h /^ FT_Short sCapHeight;$/;" m struct:TT_OS2_ +sCapHeight include/freetype/tttables.h /^ FT_Short sCapHeight;$/;" m struct:TT_OS2_ +sFamilyClass android/freetype/include/freetype/tttables.h /^ FT_Short sFamilyClass;$/;" m struct:TT_OS2_ +sFamilyClass include/freetype/tttables.h /^ FT_Short sFamilyClass;$/;" m struct:TT_OS2_ +sTypoAscender android/freetype/include/freetype/tttables.h /^ FT_Short sTypoAscender;$/;" m struct:TT_OS2_ +sTypoAscender include/freetype/tttables.h /^ FT_Short sTypoAscender;$/;" m struct:TT_OS2_ +sTypoDescender android/freetype/include/freetype/tttables.h /^ FT_Short sTypoDescender;$/;" m struct:TT_OS2_ +sTypoDescender include/freetype/tttables.h /^ FT_Short sTypoDescender;$/;" m struct:TT_OS2_ +sTypoLineGap android/freetype/include/freetype/tttables.h /^ FT_Short sTypoLineGap;$/;" m struct:TT_OS2_ +sTypoLineGap include/freetype/tttables.h /^ FT_Short sTypoLineGap;$/;" m struct:TT_OS2_ +sameName android/expat/lib/xmltok.h /^ int (PTRCALL *sameName)(const ENCODING *,$/;" m struct:encoding +sameName android/expat/lib/xmltok_impl.c /^PREFIX(sameName)(const ENCODING *enc, const char *ptr1, const char *ptr2)$/;" f file: +samples tools/gyp/tools/emacs/gyp-tests.el /^(defconst samples (directory-files "testdata" t ".gyp$")$/;" f +save src/gfx/gfx_line_generator.h /^ void save(save_data_type* data) const$/;" f class:gfx::gfx_dda2_line_interpolator +save_data_type src/gfx/gfx_line_generator.h /^ typedef int save_data_type;$/;" t class:gfx::gfx_dda2_line_interpolator +save_size src/gfx/gfx_line_generator.h /^ save_size = 2,$/;" e enum:gfx::gfx_dda2_line_interpolator::__anon59 +sb_byteToAscii android/expat/lib/xmltok.c /^sb_byteToAscii(const ENCODING *enc, const char *p)$/;" f file: +sb_byteType android/expat/lib/xmltok.c /^sb_byteType(const ENCODING *enc, const char *p)$/;" f file: +sb_charMatches android/expat/lib/xmltok.c /^sb_charMatches(const ENCODING *enc, const char *p, int c)$/;" f file: +sb_isNameMin android/expat/lib/xmltok.c /^#define sb_isNameMin /;" d file: +sb_isNmstrtMin android/expat/lib/xmltok.c /^#define sb_isNmstrtMin /;" d file: +sb_tree src/picasso_gpc.cpp /^} sb_tree;$/;" t namespace:picasso typeref:struct:picasso::sbt_t_shape file: +sbit_metrics_fields android/freetype/src/sfnt/ttsbit.c /^ static const FT_Frame_Field sbit_metrics_fields[] =$/;" v file: +sbit_num_strikes android/freetype/include/freetype/internal/tttypes.h /^ FT_UInt sbit_num_strikes;$/;" m struct:TT_FaceRec_ +sbit_num_strikes include/freetype/internal/tttypes.h /^ FT_UInt sbit_num_strikes;$/;" m struct:TT_FaceRec_ +sbit_ranges android/freetype/include/freetype/internal/tttypes.h /^ TT_SBit_Range sbit_ranges;$/;" m struct:TT_SBit_StrikeRec_ +sbit_ranges include/freetype/internal/tttypes.h /^ TT_SBit_Range sbit_ranges;$/;" m struct:TT_SBit_StrikeRec_ +sbit_scales android/freetype/include/freetype/internal/tttypes.h /^ TT_SBit_Scale sbit_scales;$/;" m struct:TT_FaceRec_ +sbit_scales include/freetype/internal/tttypes.h /^ TT_SBit_Scale sbit_scales;$/;" m struct:TT_FaceRec_ +sbit_strikes android/freetype/include/freetype/internal/tttypes.h /^ TT_SBit_Strike sbit_strikes;$/;" m struct:TT_FaceRec_ +sbit_strikes include/freetype/internal/tttypes.h /^ TT_SBit_Strike sbit_strikes;$/;" m struct:TT_FaceRec_ +sbit_table android/freetype/include/freetype/internal/tttypes.h /^ FT_Byte* sbit_table;$/;" m struct:TT_FaceRec_ +sbit_table include/freetype/internal/tttypes.h /^ FT_Byte* sbit_table;$/;" m struct:TT_FaceRec_ +sbit_table_size android/freetype/include/freetype/internal/tttypes.h /^ FT_ULong sbit_table_size;$/;" m struct:TT_FaceRec_ +sbit_table_size include/freetype/internal/tttypes.h /^ FT_ULong sbit_table_size;$/;" m struct:TT_FaceRec_ +sbmp test/testWin.c /^HBITMAP sbmp;$/;" v +sbt_t_shape src/picasso_gpc.cpp /^typedef struct sbt_t_shape { \/* Scanbeam tree *\/$/;" s namespace:picasso file: +scaffCount android/expat/lib/xmlparse.c /^ unsigned scaffCount;$/;" m struct:__anon17 file: +scaffIndex android/expat/lib/xmlparse.c /^ int *scaffIndex;$/;" m struct:__anon17 file: +scaffLevel android/expat/lib/xmlparse.c /^ int scaffLevel;$/;" m struct:__anon17 file: +scaffSize android/expat/lib/xmlparse.c /^ unsigned scaffSize;$/;" m struct:__anon17 file: +scaffold android/expat/lib/xmlparse.c /^ CONTENT_SCAFFOLD *scaffold;$/;" m struct:__anon17 file: +scalar src/include/math_type.h /^typedef float scalar;$/;" t +scale android/freetype/src/autofit/afhints.h /^ FT_Fixed scale; \/* used to speed up interpolation between edges *\/$/;" m struct:AF_EdgeRec_ +scale android/freetype/src/autofit/aflatin.h /^ FT_Fixed scale;$/;" m struct:AF_LatinAxisRec_ +scale android/freetype/src/pshinter/pshalgo.h /^ FT_Fixed scale;$/;" m struct:PSH_ZoneRec_ +scale android/freetype/src/truetype/ttobjs.h /^ FT_Fixed scale;$/;" m struct:TT_Size_Metrics_ +scale demos/clock.c /^static float scale;$/;" v file: +scale src/gfx/gfx_trans_affine.h /^ virtual void scale(scalar x, scalar y)$/;" f class:gfx::gfx_trans_affine +scale src/picasso_matrix.cpp /^const trans_affine& trans_affine::scale(scalar x, scalar y) $/;" f class:picasso::trans_affine +scale_delta android/freetype/src/pshinter/pshglob.h /^ FT_Fixed scale_delta;$/;" m struct:PSH_DimensionRec_ +scale_mult android/freetype/src/pshinter/pshglob.h /^ FT_Fixed scale_mult;$/;" m struct:PSH_DimensionRec_ +scale_shift android/freetype/src/raster/ftraster.c /^ Int scale_shift; \/* == precision_shift for bitmaps *\/$/;" m struct:TWorker_ file: +scaled android/freetype/src/cff/cffobjs.h /^ FT_Bool scaled;$/;" m struct:CFF_GlyphSlotRec_ +scaler android/freetype/src/autofit/aftypes.h /^ AF_ScalerRec scaler;$/;" m struct:AF_ScriptMetricsRec_ +scaler_flags android/freetype/src/autofit/afhints.h /^ FT_UInt32 scaler_flags; \/* copy of scaler flags *\/$/;" m struct:AF_GlyphHintsRec_ +scaling src/gfx/gfx_trans_affine.h /^ virtual void scaling(scalar* x, scalar* y) const$/;" f class:gfx::gfx_trans_affine +scaling src/picasso_matrix.cpp /^void trans_affine::scaling(scalar* x, scalar* y) const$/;" f class:picasso::trans_affine +scanAtts android/expat/lib/xmltok_impl.c /^PREFIX(scanAtts)(const ENCODING *enc, const char *ptr, const char *end,$/;" f file: +scanCdataSection android/expat/lib/xmltok_impl.c /^PREFIX(scanCdataSection)(const ENCODING *enc, const char *ptr,$/;" f file: +scanCharRef android/expat/lib/xmltok_impl.c /^PREFIX(scanCharRef)(const ENCODING *enc, const char *ptr,$/;" f file: +scanComment android/expat/lib/xmltok_impl.c /^PREFIX(scanComment)(const ENCODING *enc, const char *ptr,$/;" f file: +scanDecl android/expat/lib/xmltok_impl.c /^PREFIX(scanDecl)(const ENCODING *enc, const char *ptr,$/;" f file: +scanEndTag android/expat/lib/xmltok_impl.c /^PREFIX(scanEndTag)(const ENCODING *enc, const char *ptr,$/;" f file: +scanHexCharRef android/expat/lib/xmltok_impl.c /^PREFIX(scanHexCharRef)(const ENCODING *enc, const char *ptr,$/;" f file: +scanLit android/expat/lib/xmltok_impl.c /^PREFIX(scanLit)(int open, const ENCODING *enc,$/;" f file: +scanLt android/expat/lib/xmltok_impl.c /^PREFIX(scanLt)(const ENCODING *enc, const char *ptr, const char *end,$/;" f file: +scanPercent android/expat/lib/xmltok_impl.c /^PREFIX(scanPercent)(const ENCODING *enc, const char *ptr, const char *end,$/;" f file: +scanPi android/expat/lib/xmltok_impl.c /^PREFIX(scanPi)(const ENCODING *enc, const char *ptr,$/;" f file: +scanPoundName android/expat/lib/xmltok_impl.c /^PREFIX(scanPoundName)(const ENCODING *enc, const char *ptr, const char *end,$/;" f file: +scanRef android/expat/lib/xmltok_impl.c /^PREFIX(scanRef)(const ENCODING *enc, const char *ptr, const char *end,$/;" f file: +scan_control android/freetype/src/truetype/ttobjs.h /^ FT_Bool scan_control;$/;" m struct:TT_GraphicsState_ +scan_type android/freetype/src/truetype/ttobjs.h /^ FT_Int scan_type;$/;" m struct:TT_GraphicsState_ +scanline_by_index src/gfx/gfx_scanline_storage.h /^ const scanline_data& scanline_by_index(unsigned int i) const$/;" f class:gfx::gfx_scanline_storage_aa +scanline_by_index src/gfx/gfx_scanline_storage.h /^ const scanline_data& scanline_by_index(unsigned int i) const$/;" f class:gfx::gfx_scanline_storage_bin +scanline_cells src/gfx/gfx_rasterizer_cell.h /^ const cell_type* const* scanline_cells(unsigned int y) const$/;" f class:gfx::gfx_rasterizer_cells_aa +scanline_data src/gfx/gfx_scanline_storage.h /^ } scanline_data;$/;" t class:gfx::gfx_scanline_storage_aa typeref:struct:gfx::gfx_scanline_storage_aa::__anon160 +scanline_data src/gfx/gfx_scanline_storage.h /^ } scanline_data;$/;" t class:gfx::gfx_scanline_storage_bin typeref:struct:gfx::gfx_scanline_storage_bin::__anon164 +scanline_generator src/gfx/gfx_rasterizer_scanline.h /^ scanline_generator()$/;" f class:gfx::scanline_generator +scanline_generator src/gfx/gfx_rasterizer_scanline.h /^class scanline_generator$/;" c namespace:gfx +scanline_hit_test src/gfx/gfx_rasterizer_scanline.h /^ scanline_hit_test(int x)$/;" f class:gfx::scanline_hit_test +scanline_hit_test src/gfx/gfx_rasterizer_scanline.h /^class scanline_hit_test$/;" c namespace:gfx +scanline_num_cells src/gfx/gfx_rasterizer_cell.h /^ unsigned int scanline_num_cells(unsigned int y) const $/;" f class:gfx::gfx_rasterizer_cells_aa +scanners android/expat/lib/xmltok.h /^ SCANNER scanners[XML_N_STATES];$/;" m struct:encoding +scl demos/flowers.c /^ float scl;$/;" m struct:__anon37 file: +score android/freetype/src/autofit/afhints.h /^ FT_Int score;$/;" m struct:AF_EdgeRec_ +score android/freetype/src/autofit/afhints.h /^ FT_Pos score; \/* used during stem matching *\/$/;" m struct:AF_SegmentRec_ +script android/freetype/src/autofit/aftypes.h /^ AF_Script script;$/;" m struct:AF_ScriptClassRec_ +script tools/gyp/build/lib/gyp/generator/xcode.py /^ script = 'exec ' + action_string_sh + '\\nexit 1\\n'$/;" v +script tools/gyp/pylib/gyp/generator/xcode.py /^ script = 'exec ' + action_string_sh + '\\nexit 1\\n'$/;" v +script_hints_apply android/freetype/src/autofit/aftypes.h /^ AF_Script_ApplyHintsFunc script_hints_apply;$/;" m struct:AF_ScriptClassRec_ +script_hints_init android/freetype/src/autofit/aftypes.h /^ AF_Script_InitHintsFunc script_hints_init;$/;" m struct:AF_ScriptClassRec_ +script_metrics_done android/freetype/src/autofit/aftypes.h /^ AF_Script_DoneMetricsFunc script_metrics_done;$/;" m struct:AF_ScriptClassRec_ +script_metrics_init android/freetype/src/autofit/aftypes.h /^ AF_Script_InitMetricsFunc script_metrics_init;$/;" m struct:AF_ScriptClassRec_ +script_metrics_scale android/freetype/src/autofit/aftypes.h /^ AF_Script_ScaleMetricsFunc script_metrics_scale;$/;" m struct:AF_ScriptClassRec_ +script_metrics_size android/freetype/src/autofit/aftypes.h /^ FT_UInt script_metrics_size;$/;" m struct:AF_ScriptClassRec_ +script_uni_ranges android/freetype/src/autofit/aftypes.h /^ AF_Script_UniRange script_uni_ranges; \/* last must be { 0, 0 } *\/$/;" m struct:AF_ScriptClassRec_ +scripts tools/gyp/setup.py /^ scripts = ['gyp'],$/;" v +sd_bytes android/freetype/include/freetype/t1tables.h /^ FT_Int sd_bytes;$/;" m struct:CID_FaceDictRec_ +sd_bytes include/freetype/t1tables.h /^ FT_Int sd_bytes;$/;" m struct:CID_FaceDictRec_ +sdc demos/platform_minigui.c /^static HDC sdc;$/;" v file: +sdc test/testMg.c /^static HDC sdc;$/;" v file: +seac include/freetype/internal/psaux.h /^ FT_Bool seac;$/;" m struct:T1_DecoderRec_ +search_range android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort search_range;$/;" m struct:SFNT_HeaderRec_ +search_range include/freetype/internal/tttypes.h /^ FT_UShort search_range;$/;" m struct:SFNT_HeaderRec_ +secondCursorPath demos/clock.c /^static ps_path* secondCursorPath;$/;" v file: +secondTagPath demos/clock.c /^static ps_path* secondTagPath;$/;" v file: +second_pass android/freetype/src/raster/ftraster.c /^ Bool second_pass; \/* indicates whether a horizontal pass *\/$/;" m struct:TWorker_ file: +segments android/freetype/src/autofit/afhints.h /^ AF_Segment segments;$/;" m struct:AF_AxisHintsRec_ +select_size android/freetype/include/freetype/internal/ftdriver.h /^ FT_Size_SelectFunc select_size;$/;" m struct:FT_Driver_ClassRec_ +select_size include/freetype/internal/ftdriver.h /^ FT_Size_SelectFunc select_size;$/;" m struct:FT_Driver_ClassRec_ +self_type src/include/graphic_base.h /^ typedef rect_base self_type;$/;" t struct:picasso::rect_base +selt2565 android/jni/selt2565.h /^} selt2565 = {$/;" v typeref:struct:_selt2565 +serialize src/gfx/gfx_scanline_storage.h /^ void serialize(uint8_t* data) const$/;" f class:gfx::gfx_scanline_storage_aa +serialize src/gfx/gfx_scanline_storage.h /^ void serialize(uint8_t* data) const$/;" f class:gfx::gfx_scanline_storage_bin +serialize_from src/core/graphic_path.cpp /^void graphic_path::serialize_from(unsigned int num, byte* buffer, unsigned int buf_len)$/;" f class:picasso::graphic_path +serialize_from src/picasso_font.h /^ void serialize_from(byte* data, unsigned int size, scalar x, scalar y)$/;" f class:picasso::mono_storage +serialize_to src/core/graphic_path.cpp /^void graphic_path::serialize_to(byte* buffer)$/;" f class:picasso::graphic_path +serif android/freetype/src/autofit/afhints.h /^ AF_Edge serif;$/;" m struct:AF_EdgeRec_ +serif android/freetype/src/autofit/afhints.h /^ AF_Segment serif; \/* primary segment for serifs *\/$/;" m struct:AF_SegmentRec_ +serv_data android/freetype/include/freetype/internal/ftserv.h /^ const void* serv_data; \/* service pointer\/data *\/$/;" m struct:FT_ServiceDescRec_ +serv_data include/freetype/internal/ftserv.h /^ const void* serv_data; \/* service pointer\/data *\/$/;" m struct:FT_ServiceDescRec_ +serv_id android/freetype/include/freetype/internal/ftserv.h /^ const char* serv_id; \/* service name *\/$/;" m struct:FT_ServiceDescRec_ +serv_id include/freetype/internal/ftserv.h /^ const char* serv_id; \/* service name *\/$/;" m struct:FT_ServiceDescRec_ +service_GLYPH_DICT android/freetype/include/freetype/internal/ftserv.h /^ FT_Pointer service_GLYPH_DICT;$/;" m struct:FT_ServiceCacheRec_ +service_GLYPH_DICT include/freetype/internal/ftserv.h /^ FT_Pointer service_GLYPH_DICT;$/;" m struct:FT_ServiceCacheRec_ +service_MULTI_MASTERS android/freetype/include/freetype/internal/ftserv.h /^ FT_Pointer service_MULTI_MASTERS;$/;" m struct:FT_ServiceCacheRec_ +service_MULTI_MASTERS include/freetype/internal/ftserv.h /^ FT_Pointer service_MULTI_MASTERS;$/;" m struct:FT_ServiceCacheRec_ +service_PFR_METRICS android/freetype/include/freetype/internal/ftserv.h /^ FT_Pointer service_PFR_METRICS;$/;" m struct:FT_ServiceCacheRec_ +service_PFR_METRICS include/freetype/internal/ftserv.h /^ FT_Pointer service_PFR_METRICS;$/;" m struct:FT_ServiceCacheRec_ +service_POSTSCRIPT_FONT_NAME android/freetype/include/freetype/internal/ftserv.h /^ FT_Pointer service_POSTSCRIPT_FONT_NAME;$/;" m struct:FT_ServiceCacheRec_ +service_POSTSCRIPT_FONT_NAME include/freetype/internal/ftserv.h /^ FT_Pointer service_POSTSCRIPT_FONT_NAME;$/;" m struct:FT_ServiceCacheRec_ +service_WINFNT android/freetype/include/freetype/internal/ftserv.h /^ FT_Pointer service_WINFNT;$/;" m struct:FT_ServiceCacheRec_ +service_WINFNT include/freetype/internal/ftserv.h /^ FT_Pointer service_WINFNT;$/;" m struct:FT_ServiceCacheRec_ +services android/freetype/include/freetype/internal/ftobjs.h /^ FT_ServiceCacheRec services;$/;" m struct:FT_Face_InternalRec_ +services include/freetype/internal/ftobjs.h /^ FT_ServiceCacheRec services;$/;" m struct:FT_Face_InternalRec_ +set src/gfx/gfx_gamma_function.h /^ void set(scalar s, scalar e) { m_start = s; m_end = e; }$/;" f class:gfx::gamma_linear +setContext android/expat/lib/xmlparse.c /^setContext(XML_Parser parser, const XML_Char *context)$/;" f file: +setElementTypePrefix android/expat/lib/xmlparse.c /^setElementTypePrefix(XML_Parser parser, ELEMENT_TYPE *elementType)$/;" f file: +setTopLevel android/expat/lib/xmlrole.c /^#define setTopLevel(/;" d file: +setUp tools/gyp/build/lib/gyp/MSVSSettings_test.py /^ def setUp(self):$/;" m class:TestSequenceFunctions +setUp tools/gyp/build/lib/gyp/common_test.py /^ def setUp(self):$/;" m class:TestGetFlavor +setUp tools/gyp/build/lib/gyp/easy_xml_test.py /^ def setUp(self):$/;" m class:TestSequenceFunctions +setUp tools/gyp/build/lib/gyp/generator/msvs_test.py /^ def setUp(self):$/;" m class:TestSequenceFunctions +setUp tools/gyp/pylib/gyp/MSVSSettings_test.py /^ def setUp(self):$/;" m class:TestSequenceFunctions +setUp tools/gyp/pylib/gyp/common_test.py /^ def setUp(self):$/;" m class:TestGetFlavor +setUp tools/gyp/pylib/gyp/easy_xml_test.py /^ def setUp(self):$/;" m class:TestSequenceFunctions +setUp tools/gyp/pylib/gyp/generator/msvs_test.py /^ def setUp(self):$/;" m class:TestSequenceFunctions +setX src/gfx/gfx_scanline_storage.h /^ void setX(int x) { m_dx = x; }$/;" f class:gfx::gfx_serialized_scanlines_adaptor_bin +setY src/gfx/gfx_scanline_storage.h /^ void setY(int y) { m_dy = y; }$/;" f class:gfx::gfx_serialized_scanlines_adaptor_bin +set_alpha src/gfx/gfx_painter.h /^inline void gfx_painter::set_alpha(scalar a)$/;" f class:gfx::gfx_painter +set_antialias src/gfx/gfx_raster_adapter.cpp /^void gfx_raster_adapter::set_antialias(bool b)$/;" f class:gfx::gfx_raster_adapter +set_antialias src/picasso_font.cpp /^void font_engine::set_antialias(bool b)$/;" f class:picasso::font_engine +set_antialias src/picasso_raster_adapter.cpp /^void raster_adapter::set_antialias(bool b)$/;" f class:picasso::raster_adapter +set_canvas_brush src/picasso_objects.h /^ void set_canvas_brush(ps_canvas * p)$/;" f struct:picasso::graphic_brush +set_char_sizes android/freetype/include/freetype/internal/ftdriver.h /^ FT_Size_ResetPointsFunc set_char_sizes;$/;" m struct:FT_Driver_ClassRec_ +set_char_sizes include/freetype/internal/ftdriver.h /^ FT_Size_ResetPointsFunc set_char_sizes;$/;" m struct:FT_Driver_ClassRec_ +set_charset src/picasso_font.h /^ void set_charset(int charset) { m_charset = charset; }$/;" f class:picasso::font_desc +set_color_channel src/gfx/gfx_rendering_buffer.h /^ virtual void set_color_channel(const rgba& c)$/;" f class:gfx::gfx_rendering_buffer +set_color_channel src/picasso_rendering_buffer.cpp /^void rendering_buffer::set_color_channel(const rgba& c) $/;" f class:picasso::rendering_buffer +set_composite src/gfx/gfx_painter.h /^inline void gfx_painter::set_composite(comp_op op)$/;" f class:gfx::gfx_painter +set_curr_cell src/gfx/gfx_rasterizer_cell.h /^ void set_curr_cell(int x, int y)$/;" f class:gfx::gfx_rasterizer_cells_aa +set_dash src/picasso_objects.h /^ void set_dash(float start, float* da, unsigned int ndash)$/;" f struct:picasso::graphic_pen +set_data src/include/data_vector.h /^inline bool pod_vector::set_data(unsigned int num, T* data)$/;" f class:picasso::pod_vector +set_define tools/gyp/build/lib/gyp/generator/xcode.py /^ set_define = EscapeXCodeArgument(define)$/;" v +set_define tools/gyp/pylib/gyp/generator/xcode.py /^ set_define = EscapeXCodeArgument(define)$/;" v +set_dependencies tools/gyp/build/lib/gyp/MSVSNew.py /^ def set_dependencies(self, dependencies):$/;" m class:MSVSProject +set_dependencies tools/gyp/pylib/gyp/MSVSNew.py /^ def set_dependencies(self, dependencies):$/;" m class:MSVSProject +set_fill_attr src/gfx/gfx_raster_adapter.cpp /^void gfx_raster_adapter::set_fill_attr(int idx, int val)$/;" f class:gfx::gfx_raster_adapter +set_fill_attr src/picasso_raster_adapter.cpp /^void raster_adapter::set_fill_attr(int idx, int val)$/;" f class:picasso::raster_adapter +set_fill_canvas src/gfx/gfx_painter.h /^inline void gfx_painter::set_fill_canvas(const abstract_rendering_buffer* img, int filter, const rect_s& rc)$/;" f class:gfx::gfx_painter +set_fill_color src/gfx/gfx_painter.h /^inline void gfx_painter::set_fill_color(const rgba& c)$/;" f class:gfx::gfx_painter +set_fill_gradient src/gfx/gfx_painter.h /^inline void gfx_painter::set_fill_gradient(const abstract_gradient_adapter* g)$/;" f class:gfx::gfx_painter +set_fill_image src/gfx/gfx_painter.h /^inline void gfx_painter::set_fill_image(const abstract_rendering_buffer* img, int filter, const rect_s& rc)$/;" f class:gfx::gfx_painter +set_fill_pattern src/gfx/gfx_painter.h /^inline void gfx_painter::set_fill_pattern(const abstract_rendering_buffer* img, int filter, const rect_s& rc,$/;" f class:gfx::gfx_painter +set_flip_y src/picasso_font.h /^ void set_flip_y(bool f) { m_flip_y = f; }$/;" f class:picasso::font_desc +set_font src/picasso_font.h /^ void set_font(abstract_font_adapter* f)$/;" f class:picasso::mono_storage +set_font_fill_color src/gfx/gfx_painter.h /^inline void gfx_painter::set_font_fill_color(const rgba& c)$/;" f class:gfx::gfx_painter +set_gamma_power src/gfx/gfx_raster_adapter.cpp /^void gfx_raster_adapter::set_gamma_power(scalar g)$/;" f class:gfx::gfx_raster_adapter +set_gamma_power src/picasso_raster_adapter.cpp /^void raster_adapter::set_gamma_power(scalar g)$/;" f class:picasso::raster_adapter +set_gradient_brush src/picasso_objects.h /^ void set_gradient_brush(ps_gradient * p)$/;" f struct:picasso::graphic_brush +set_height src/picasso_font.h /^ void set_height(scalar h) { m_height = h; }$/;" f class:picasso::font_desc +set_hint src/picasso_font.h /^ void set_hint(bool h) { m_hint = h; }$/;" f class:picasso::font_desc +set_image_brush src/picasso_objects.h /^ void set_image_brush(ps_image * p)$/;" f struct:picasso::graphic_brush +set_image_data test/alpha_func.c /^void set_image_data(unsigned char* data, ps_color_format fmt, int w, int h, int p)$/;" f +set_image_data test/bitblt_func.c /^void set_image_data(unsigned char* data, ps_color_format fmt, int w, int h, int p)$/;" f +set_image_data test/blur_func.c /^void set_image_data(unsigned char* data, ps_color_format fmt, int w, int h, int p)$/;" f +set_image_data test/clip_func.c /^void set_image_data(unsigned char* data, ps_color_format fmt, int w, int h, int p)$/;" f +set_image_data test/composite_func.c /^void set_image_data(unsigned char* data, ps_color_format fmt, int w, int h, int p)$/;" f +set_image_data test/gamma_func.c /^void set_image_data(unsigned char* data, ps_color_format fmt, int w, int h, int p)$/;" f +set_image_data test/gcstate_func.c /^void set_image_data(unsigned char* data, ps_color_format fmt, int w, int h, int p)$/;" f +set_image_data test/gradient_func.c /^void set_image_data(unsigned char* data, ps_color_format fmt, int w, int h, int p)$/;" f +set_image_data test/mask_func.c /^void set_image_data(unsigned char* data, ps_color_format fmt, int w, int h, int p)$/;" f +set_image_data test/part_func.c /^void set_image_data(unsigned char* data, ps_color_format fmt, int w, int h, int p)$/;" f +set_image_data test/path_func.c /^void set_image_data(unsigned char* data, ps_color_format fmt, int w, int h, int p)$/;" f +set_image_data test/pattern_func.c /^void set_image_data(unsigned char* data, ps_color_format fmt, int w, int h, int p)$/;" f +set_image_data test/shadow_func.c /^void set_image_data(unsigned char* data, ps_color_format fmt, int w, int h, int p)$/;" f +set_image_data test/text_func.c /^void set_image_data(unsigned char* data, ps_color_format fmt, int w, int h, int p)$/;" f +set_image_data test/thread_func.c /^void set_image_data(unsigned char* data, ps_color_format fmt, int w, int h, int p)$/;" f +set_inner_join src/include/convert.h /^ void set_inner_join(inner_join ij) { m_inner_join = ij; }$/;" f class:picasso::conv_stroke +set_inner_miter_limit src/include/convert.h /^ void set_inner_miter_limit(scalar ml) { m_inner_miter_limit = ml; }$/;" f class:picasso::conv_stroke +set_italic src/picasso_font.h /^ void set_italic(bool i) { m_italic = i; }$/;" f class:picasso::font_desc +set_line_cap src/include/convert.h /^ void set_line_cap(line_cap lc) { m_line_cap = lc; }$/;" f class:picasso::conv_stroke +set_line_join src/include/convert.h /^ void set_line_join(line_join lj) { m_line_join = lj; }$/;" f class:picasso::conv_stroke +set_mask_type src/gfx/gfx_mask_layer.h /^ virtual void set_mask_type(int t)$/;" f class:gfx::gfx_mask_layer +set_mask_type src/picasso_mask.cpp /^void mask_layer::set_mask_type(int type)$/;" f class:picasso::mask_layer +set_miter_limit src/include/convert.h /^ void set_miter_limit(scalar ml) { m_miter_limit = ml; }$/;" f class:picasso::conv_stroke +set_miter_limit_theta src/include/convert.h /^ void set_miter_limit_theta(scalar t)$/;" f class:picasso::conv_stroke +set_mode android/freetype/include/freetype/ftrender.h /^ FT_Renderer_SetModeFunc set_mode;$/;" m struct:FT_Renderer_Class_ +set_mode include/freetype/ftrender.h /^ FT_Renderer_SetModeFunc set_mode;$/;" m struct:FT_Renderer_Class_ +set_msbuild_toolset tools/gyp/build/lib/gyp/MSVSNew.py /^ def set_msbuild_toolset(self, msbuild_toolset):$/;" m class:MSVSProject +set_msbuild_toolset tools/gyp/pylib/gyp/MSVSNew.py /^ def set_msbuild_toolset(self, msbuild_toolset):$/;" m class:MSVSProject +set_orientation src/include/graphic_base.h /^inline unsigned int set_orientation(unsigned int c, unsigned int o)$/;" f namespace:picasso +set_pattern_brush src/picasso_objects.h /^ void set_pattern_brush(ps_pattern * p)$/;" f struct:picasso::graphic_brush +set_pattern_data test/alpha_func.c /^void set_pattern_data(unsigned char* data, ps_color_format fmt, int w, int h, int p)$/;" f +set_pattern_data test/bitblt_func.c /^void set_pattern_data(unsigned char* data, ps_color_format fmt, int w, int h, int p)$/;" f +set_pattern_data test/blur_func.c /^void set_pattern_data(unsigned char* data, ps_color_format fmt, int w, int h, int p)$/;" f +set_pattern_data test/clip_func.c /^void set_pattern_data(unsigned char* data, ps_color_format fmt, int w, int h, int p)$/;" f +set_pattern_data test/composite_func.c /^void set_pattern_data(unsigned char* data, ps_color_format fmt, int w, int h, int p)$/;" f +set_pattern_data test/gamma_func.c /^void set_pattern_data(unsigned char* data, ps_color_format fmt, int w, int h, int p)$/;" f +set_pattern_data test/gcstate_func.c /^void set_pattern_data(unsigned char* data, ps_color_format fmt, int w, int h, int p)$/;" f +set_pattern_data test/gradient_func.c /^void set_pattern_data(unsigned char* data, ps_color_format fmt, int w, int h, int p)$/;" f +set_pattern_data test/mask_func.c /^void set_pattern_data(unsigned char* data, ps_color_format fmt, int w, int h, int p)$/;" f +set_pattern_data test/part_func.c /^void set_pattern_data(unsigned char* data, ps_color_format fmt, int w, int h, int p)$/;" f +set_pattern_data test/path_func.c /^void set_pattern_data(unsigned char* data, ps_color_format fmt, int w, int h, int p)$/;" f +set_pattern_data test/pattern_func.c /^void set_pattern_data(unsigned char* data, ps_color_format fmt, int w, int h, int p)$/;" f +set_pattern_data test/shadow_func.c /^void set_pattern_data(unsigned char* data, ps_color_format fmt, int w, int h, int p)$/;" f +set_pattern_data test/text_func.c /^void set_pattern_data(unsigned char* data, ps_color_format fmt, int w, int h, int p)$/;" f +set_pattern_data test/thread_func.c /^void set_pattern_data(unsigned char* data, ps_color_format fmt, int w, int h, int p)$/;" f +set_pixel_sizes android/freetype/include/freetype/internal/ftdriver.h /^ FT_Size_ResetPixelsFunc set_pixel_sizes;$/;" m struct:FT_Driver_ClassRec_ +set_pixel_sizes include/freetype/internal/ftdriver.h /^ FT_Size_ResetPixelsFunc set_pixel_sizes;$/;" m struct:FT_Driver_ClassRec_ +set_raster_method src/gfx/gfx_raster_adapter.cpp /^void gfx_raster_adapter::set_raster_method(unsigned int m)$/;" f class:gfx::gfx_raster_adapter +set_raster_method src/picasso_raster_adapter.cpp /^void raster_adapter::set_raster_method(unsigned int m)$/;" f class:picasso::raster_adapter +set_sbit_strike android/freetype/include/freetype/internal/sfnt.h /^ TT_Set_SBit_Strike_Func set_sbit_strike;$/;" m struct:SFNT_Interface_ +set_sbit_strike include/freetype/internal/sfnt.h /^ TT_Set_SBit_Strike_Func set_sbit_strike;$/;" m struct:SFNT_Interface_ +set_sbit_strike_stub android/freetype/include/freetype/internal/sfnt.h /^ TT_Set_SBit_Strike_OldFunc set_sbit_strike_stub;$/;" m struct:SFNT_Interface_ +set_sbit_strike_stub include/freetype/internal/sfnt.h /^ TT_Set_SBit_Strike_OldFunc set_sbit_strike_stub;$/;" m struct:SFNT_Interface_ +set_scale android/freetype/include/freetype/internal/pshints.h /^ PSH_Globals_SetScaleFunc set_scale;$/;" m struct:PSH_Globals_FuncsRec_ +set_scale include/freetype/internal/pshints.h /^ PSH_Globals_SetScaleFunc set_scale;$/;" m struct:PSH_Globals_FuncsRec_ +set_shading src/gfx/gfx_blur.h /^ void set_shading(const color_type& c)$/;" f class:gfx::stack_blur +set_shape src/include/graphic_path.h /^ void set_shape(shape_type s) { m_shape = s; }$/;" f class:picasso::graphic_path +set_signature src/picasso_font_cache.h /^ void set_signature(const char* font_signature)$/;" f class:picasso::glyph_cache_manager +set_stroke_attr src/gfx/gfx_raster_adapter.cpp /^void gfx_raster_adapter::set_stroke_attr(int idx, int val)$/;" f class:gfx::gfx_raster_adapter +set_stroke_attr src/picasso_raster_adapter.cpp /^void raster_adapter::set_stroke_attr(int idx, int val)$/;" f class:picasso::raster_adapter +set_stroke_attr_val src/gfx/gfx_raster_adapter.cpp /^void gfx_raster_adapter::set_stroke_attr_val(int idx, scalar val)$/;" f class:gfx::gfx_raster_adapter +set_stroke_attr_val src/picasso_raster_adapter.cpp /^void raster_adapter::set_stroke_attr_val(int idx, scalar val)$/;" f class:picasso::raster_adapter +set_stroke_color src/gfx/gfx_painter.h /^inline void gfx_painter::set_stroke_color(const rgba& c)$/;" f class:gfx::gfx_painter +set_stroke_dashes src/gfx/gfx_raster_adapter.cpp /^void gfx_raster_adapter::set_stroke_dashes(scalar start, const scalar* dashes, unsigned int num)$/;" f class:gfx::gfx_raster_adapter +set_stroke_dashes src/picasso_raster_adapter.cpp /^void raster_adapter::set_stroke_dashes(scalar start, const scalar* dashes, unsigned int num)$/;" f class:picasso::raster_adapter +set_timer demos/platform_gix.c /^unsigned set_timer(unsigned mc)$/;" f +set_timer demos/platform_gtk2.c /^unsigned set_timer(unsigned mc)$/;" f +set_timer demos/platform_minigui.c /^unsigned set_timer(unsigned mc)$/;" f +set_timer demos/platform_qt4.cpp /^extern "C" unsigned set_timer(unsigned mc)$/;" f +set_timer demos/platform_win32.c /^unsigned set_timer(unsigned mc)$/;" f +set_transform src/gfx/gfx_raster_adapter.cpp /^void gfx_raster_adapter::set_transform(const abstract_trans_affine* mtx)$/;" f class:gfx::gfx_raster_adapter +set_transform src/picasso_font.cpp /^void font_engine::set_transform(const trans_affine& mtx) $/;" f class:picasso::font_engine +set_transform src/picasso_raster_adapter.cpp /^void raster_adapter::set_transform(const trans_affine& mtx)$/;" f class:picasso::raster_adapter +set_transparent src/gfx/gfx_rendering_buffer.h /^ virtual void set_transparent(bool t) { m_transparent = t; }$/;" f class:gfx::gfx_rendering_buffer +set_transparent src/picasso_rendering_buffer.cpp /^void rendering_buffer::set_transparent(bool b) $/;" f class:picasso::rendering_buffer +set_transparent_color src/gfx/gfx_pixfmt_wrapper.h /^ void set_transparent_color(rgba8 * color)$/;" f class:gfx::gfx_pixfmt_wrapper +set_weight src/picasso_font.h /^ void set_weight(scalar w) { m_weight = w; }$/;" f class:picasso::font_desc +set_width src/include/convert.h /^ void set_width(scalar w)$/;" f class:picasso::conv_stroke +setup tools/gyp/setup.py /^from distutils.core import setup$/;" i +setup_fill_raster src/gfx/gfx_raster_adapter.cpp /^void gfx_raster_adapter::setup_fill_raster(void)$/;" f class:gfx::gfx_raster_adapter +setup_stroke_raster src/gfx/gfx_raster_adapter.cpp /^void gfx_raster_adapter::setup_stroke_raster(void)$/;" f class:gfx::gfx_raster_adapter +sfnt android/freetype/include/freetype/internal/tttypes.h /^ void* sfnt;$/;" m struct:TT_FaceRec_ +sfnt include/freetype/internal/ftpic.h /^ void* sfnt; $/;" m struct:FT_PIC_Container_ +sfnt include/freetype/internal/tttypes.h /^ void* sfnt;$/;" m struct:TT_FaceRec_ +sfnt_done_face android/freetype/src/sfnt/sfobjs.c /^ sfnt_done_face( TT_Face face )$/;" f +sfnt_find_encoding android/freetype/src/sfnt/sfobjs.c /^ sfnt_find_encoding( int platform_id,$/;" f file: +sfnt_get_charset_id android/freetype/src/sfnt/sfdriver.c /^ sfnt_get_charset_id( TT_Face face,$/;" f file: +sfnt_get_glyph_name android/freetype/src/sfnt/sfdriver.c /^ sfnt_get_glyph_name( TT_Face face,$/;" f file: +sfnt_get_ps_name android/freetype/src/sfnt/sfdriver.c /^ sfnt_get_ps_name( TT_Face face )$/;" f file: +sfnt_interface android/freetype/src/sfnt/sfdriver.c /^ const SFNT_Interface sfnt_interface =$/;" v file: +sfnt_max android/freetype/include/freetype/tttables.h /^ sfnt_max \/* internal end mark *\/$/;" e enum:FT_Sfnt_Tag_ +sfnt_max include/freetype/tttables.h /^ sfnt_max \/* internal end mark *\/$/;" e enum:FT_Sfnt_Tag_ +sfnt_module_class android/freetype/src/sfnt/sfdriver.c /^ const FT_Module_Class sfnt_module_class =$/;" v +sfnt_open_font android/freetype/src/sfnt/sfobjs.c /^ sfnt_open_font( FT_Stream stream,$/;" f file: +sfnt_service_bdf android/freetype/src/sfnt/sfdriver.c /^ static const FT_Service_BDFRec sfnt_service_bdf =$/;" v file: +sfnt_service_glyph_dict android/freetype/src/sfnt/sfdriver.c /^ static const FT_Service_GlyphDictRec sfnt_service_glyph_dict =$/;" v file: +sfnt_service_ps_name android/freetype/src/sfnt/sfdriver.c /^ static const FT_Service_PsFontNameRec sfnt_service_ps_name =$/;" v file: +sfnt_service_sfnt_table android/freetype/src/sfnt/sfdriver.c /^ static const FT_Service_SFNT_TableRec sfnt_service_sfnt_table =$/;" v file: +sfnt_services android/freetype/src/sfnt/sfdriver.c /^ static const FT_ServiceDescRec sfnt_services[] =$/;" v file: +sfnt_table_info android/freetype/src/sfnt/sfdriver.c /^ sfnt_table_info( TT_Face face,$/;" f file: +sha tools/gyp/build/lib/gyp/xcodeproj_file.py /^ import sha$/;" i +sha tools/gyp/pylib/gyp/xcodeproj_file.py /^ import sha$/;" i +shadow src/picasso_objects.h /^ shadow_state shadow;$/;" m struct:picasso::context_state +shadowGradient demos/clock.c /^static ps_gradient* shadowGradient;$/;" v file: +shadowPath demos/clock.c /^static ps_path* shadowPath;$/;" v file: +shadow_state src/picasso_objects.h /^ shadow_state()$/;" f struct:picasso::shadow_state +shadow_state src/picasso_objects.h /^ shadow_state(const shadow_state& o)$/;" f struct:picasso::shadow_state +shadow_state src/picasso_objects.h /^struct shadow_state {$/;" s namespace:picasso +shape_ellipse src/include/graphic_path.h /^ shape_ellipse = 2,$/;" e enum:picasso::graphic_path::__anon213 +shape_polygon src/include/graphic_path.h /^ shape_polygon = 0,$/;" e enum:picasso::graphic_path::__anon213 +shape_rectangle src/include/graphic_path.h /^ shape_rectangle = 1,$/;" e enum:picasso::graphic_path::__anon213 +shape_rounded_rect src/include/graphic_path.h /^ shape_rounded_rect = 3,$/;" e enum:picasso::graphic_path::__anon213 +shape_type src/include/graphic_path.h /^ } shape_type;$/;" t class:picasso::graphic_path typeref:enum:picasso::graphic_path::__anon213 +shared src/include/shared.h /^ shared()$/;" f class:picasso::shared +shared src/include/shared.h /^class shared$/;" c namespace:picasso +shear src/gfx/gfx_trans_affine.h /^ virtual void shear(scalar x, scalar y)$/;" f class:gfx::gfx_trans_affine +shear src/picasso_matrix.cpp /^const trans_affine& trans_affine::shear(scalar x, scalar y)$/;" f class:picasso::trans_affine +shearing src/gfx/gfx_trans_affine.h /^ virtual void shearing(scalar* x, scalar* y) const$/;" f class:gfx::gfx_trans_affine +shearing src/picasso_matrix.cpp /^void trans_affine::shearing(scalar* x, scalar* y) const$/;" f class:picasso::trans_affine +shift android/freetype/include/freetype/ftimage.h /^ int shift;$/;" m struct:FT_Outline_Funcs_ +shift android/freetype/include/freetype/internal/psaux.h /^ FT_Bool shift;$/;" m struct:T1_BuilderRec_ +shift include/freetype/ftimage.h /^ int shift;$/;" m struct:FT_Outline_Funcs_ +shift_elements android/freetype/src/psaux/psobjs.c /^ shift_elements( PS_Table table,$/;" f file: +shlex tools/gyp/build/lib/gyp/__init__.py /^import shlex$/;" i +shlex tools/gyp/build/lib/gyp/generator/eclipse.py /^import shlex$/;" i +shlex tools/gyp/build/lib/gyp/input.py /^import shlex$/;" i +shlex tools/gyp/build/lib/gyp/xcode_emulation.py /^import shlex$/;" i +shlex tools/gyp/pylib/gyp/__init__.py /^import shlex$/;" i +shlex tools/gyp/pylib/gyp/generator/eclipse.py /^import shlex$/;" i +shlex tools/gyp/pylib/gyp/input.py /^import shlex$/;" i +shlex tools/gyp/pylib/gyp/xcode_emulation.py /^import shlex$/;" i +shoot android/freetype/src/autofit/aflatin.h /^ AF_WidthRec shoot;$/;" m struct:AF_LatinBlueRec_ +short_metrics android/freetype/include/freetype/tttables.h /^ void* short_metrics;$/;" m struct:TT_HoriHeader_ +short_metrics android/freetype/include/freetype/tttables.h /^ void* short_metrics;$/;" m struct:TT_VertHeader_ +short_metrics include/freetype/tttables.h /^ void* short_metrics;$/;" m struct:TT_HoriHeader_ +short_metrics include/freetype/tttables.h /^ void* short_metrics;$/;" m struct:TT_VertHeader_ +shorten_path src/include/vertex_dist.h /^void shorten_path(VertexSequence& vs, scalar s, unsigned int closed = 0)$/;" f namespace:picasso +shutdown src/picasso_font.cpp /^void font_engine::shutdown(void)$/;" f class:picasso::font_engine +shutil tools/cp.py /^import shutil$/;" i +shutil tools/gyp/build/lib/gyp/generator/xcode.py /^import shutil$/;" i +shutil tools/gyp/build/lib/gyp/mac_tool.py /^import shutil$/;" i +shutil tools/gyp/build/lib/gyp/win_tool.py /^import shutil$/;" i +shutil tools/gyp/buildbot/buildbot_run.py /^import shutil$/;" i +shutil tools/gyp/pylib/gyp/generator/xcode.py /^import shutil$/;" i +shutil tools/gyp/pylib/gyp/mac_tool.py /^import shutil$/;" i +shutil tools/gyp/pylib/gyp/win_tool.py /^import shutil$/;" i +shx src/gfx/gfx_trans_affine.h /^ virtual scalar shx(void) const { return m_shx; }$/;" f class:gfx::gfx_trans_affine +shx src/gfx/gfx_trans_affine.h /^ virtual void shx(scalar v) { m_shx = v; }$/;" f class:gfx::gfx_trans_affine +shx src/picasso_matrix.cpp /^scalar trans_affine::shx(void) const$/;" f class:picasso::trans_affine +shx src/picasso_matrix.cpp /^void trans_affine::shx(scalar v)$/;" f class:picasso::trans_affine +shy src/gfx/gfx_trans_affine.h /^ virtual scalar shy(void) const { return m_shy; }$/;" f class:gfx::gfx_trans_affine +shy src/gfx/gfx_trans_affine.h /^ virtual void shy(scalar v) { m_shy = v; }$/;" f class:gfx::gfx_trans_affine +shy src/picasso_matrix.cpp /^scalar trans_affine::shy(void) const$/;" f class:picasso::trans_affine +shy src/picasso_matrix.cpp /^void trans_affine::shy(scalar v) $/;" f class:picasso::trans_affine +sid_to_string android/freetype/src/psaux/t1cmap.h /^ PS_Adobe_Std_StringsFunc sid_to_string;$/;" m struct:T1_CMapStdRec_ +sids android/freetype/src/cff/cfftypes.h /^ FT_UShort sids [256]; \/* avoid dynamic allocations *\/$/;" m struct:CFF_EncodingRec_ +sids android/freetype/src/cff/cfftypes.h /^ FT_UShort* sids;$/;" m struct:CFF_CharsetRec_ +signal tools/gyp/build/lib/gyp/generator/ninja.py /^import signal$/;" i +signal tools/gyp/build/lib/gyp/input.py /^import signal$/;" i +signal tools/gyp/pylib/gyp/generator/ninja.py /^import signal$/;" i +signal tools/gyp/pylib/gyp/input.py /^import signal$/;" i +signature src/picasso_font.h /^ const char* signature(void) const { return m_cache->signature(); }$/;" f class:picasso::font_adapter +signature src/picasso_font_cache.h /^ const char* signature(void) const $/;" f class:picasso::glyph_cache_manager +sin src/core/fixedopt.cpp /^fixed sin(fixed r)$/;" f namespace:fxmath +sinf src/include/platform.h /^#define sinf(/;" d +single_width_cutin android/freetype/src/truetype/ttobjs.h /^ FT_F26Dot6 single_width_cutin;$/;" m struct:TT_GraphicsState_ +single_width_value android/freetype/src/truetype/ttobjs.h /^ FT_F26Dot6 single_width_value;$/;" m struct:TT_GraphicsState_ +size android/expat/lib/xmlparse.c /^ int size;$/;" m struct:block file: +size android/expat/lib/xmlparse.c /^ size_t size;$/;" m struct:__anon8 file: +size android/freetype/include/freetype/freetype.h /^ FT_Pos size;$/;" m struct:FT_Bitmap_Size_ +size android/freetype/include/freetype/freetype.h /^ FT_Size size;$/;" m struct:FT_FaceRec_ +size android/freetype/include/freetype/ftsizes.h /^ FT_Activate_Size( FT_Size size );$/;" v +size android/freetype/include/freetype/ftsizes.h /^ FT_Done_Size( FT_Size size );$/;" v +size android/freetype/include/freetype/ftsystem.h /^ unsigned long size;$/;" m struct:FT_StreamRec_ +size android/freetype/include/freetype/internal/ftobjs.h /^ FT_ULong size;$/;" m struct:FT_CMap_ClassRec_ +size android/freetype/include/freetype/internal/ftstream.h /^ FT_Byte size;$/;" m struct:FT_Frame_Field_ +size android/freetype/include/freetype/internal/psaux.h /^ FT_Byte size; \/* size of field in bytes *\/$/;" m struct:T1_FieldRec_ +size android/freetype/include/freetype/internal/tttypes.h /^ FT_Size size;$/;" m struct:TT_LoaderRec_ +size android/freetype/src/base/ftdbgmem.c /^ FT_Long size; \/* < 0 if the block was freed *\/$/;" m struct:FT_MemNodeRec_ file: +size android/freetype/src/base/ftdbgmem.c /^ FT_ULong size;$/;" m struct:FT_MemTableRec_ file: +size android/freetype/src/cff/cffobjs.h /^ cff_size_done( FT_Size size ); \/* CFF_Size *\/$/;" v +size android/freetype/src/cff/cffobjs.h /^ cff_size_init( FT_Size size ); \/* CFF_Size *\/$/;" v +size android/freetype/src/cff/cffparse.c /^ FT_Byte size;$/;" m struct:CFF_Field_Handler_ file: +size android/freetype/src/truetype/ttinterp.h /^ TT_Size size;$/;" m struct:TT_ExecContextRec_ +size android/freetype/src/truetype/ttobjs.h /^ FT_ULong size;$/;" m struct:TT_CodeRange_ +size android/freetype/src/truetype/ttobjs.h /^ tt_size_ready_bytecode( TT_Size size );$/;" v +size android/freetype/src/truetype/ttobjs.h /^ tt_size_reset( TT_Size size );$/;" v +size android/freetype/src/truetype/ttobjs.h /^ tt_size_run_fpgm( TT_Size size );$/;" v +size android/freetype/src/truetype/ttobjs.h /^ tt_size_run_prep( TT_Size size );$/;" v +size include/freetype/freetype.h /^ FT_Pos size;$/;" m struct:FT_Bitmap_Size_ +size include/freetype/freetype.h /^ FT_Size size;$/;" m struct:FT_FaceRec_ +size include/freetype/ftsizes.h /^ FT_Activate_Size( FT_Size size );$/;" v +size include/freetype/ftsizes.h /^ FT_Done_Size( FT_Size size );$/;" v +size include/freetype/ftsystem.h /^ unsigned long size;$/;" m struct:FT_StreamRec_ +size include/freetype/internal/ftobjs.h /^ FT_ULong size;$/;" m struct:FT_CMap_ClassRec_ +size include/freetype/internal/ftstream.h /^ FT_Byte size;$/;" m struct:FT_Frame_Field_ +size include/freetype/internal/psaux.h /^ FT_Byte size; \/* size of field in bytes *\/$/;" m struct:T1_FieldRec_ +size include/freetype/internal/tttypes.h /^ FT_Size size;$/;" m struct:TT_LoaderRec_ +size include/picasso.h /^ float size;$/;" m struct:_ps_font_info +size src/gfx/gfx_gradient_adapter.h /^ static unsigned int size(void)$/;" f class:gfx::gfx_gradient_table +size src/include/data_vector.h /^ unsigned int size;$/;" m struct:picasso::block_allocator::__anon196 +size src/include/data_vector.h /^ unsigned int size(void) const { return m_size; }$/;" f class:picasso::pod_array +size src/include/data_vector.h /^ unsigned int size(void) const { return m_size; }$/;" f class:picasso::pod_bvector +size src/include/data_vector.h /^ unsigned int size(void) const { return m_size; }$/;" f class:picasso::pod_vector +sizeBuff android/freetype/src/raster/ftraster.c /^ PLong sizeBuff; \/* Render pool size *\/$/;" m struct:TWorker_ file: +size_change demos/platform_gtk2.c /^static void size_change(GtkWidget *widget, GtkAllocation *allocation)$/;" f file: +size_object_size android/freetype/include/freetype/internal/ftdriver.h /^ FT_Long size_object_size;$/;" m struct:FT_Driver_ClassRec_ +size_object_size include/freetype/internal/ftdriver.h /^ FT_Long size_object_size;$/;" m struct:FT_Driver_ClassRec_ +size_t android/expat/lib/macconfig.h /^#undef size_t$/;" d +sizes_list android/freetype/include/freetype/freetype.h /^ FT_ListRec sizes_list;$/;" m struct:FT_FaceRec_ +sizes_list include/freetype/freetype.h /^ FT_ListRec sizes_list;$/;" m struct:FT_FaceRec_ +skipS android/expat/lib/xmltok.h /^ const char *(PTRFASTCALL *skipS)(const ENCODING *, const char *);$/;" m struct:encoding +skipS android/expat/lib/xmltok_impl.c /^PREFIX(skipS)(const ENCODING *enc, const char *ptr)$/;" f file: +skip_PS_token android/freetype/include/freetype/internal/psaux.h /^ (*skip_PS_token)( PS_Parser parser );$/;" m struct:PS_Parser_FuncsRec_ +skip_PS_token include/freetype/internal/psaux.h /^ (*skip_PS_token)( PS_Parser parser );$/;" m struct:PS_Parser_FuncsRec_ +skip_comment android/freetype/src/psaux/psobjs.c /^ skip_comment( FT_Byte* *acur,$/;" f file: +skip_literal_string android/freetype/src/psaux/psobjs.c /^ skip_literal_string( FT_Byte* *acur,$/;" f file: +skip_procedure android/freetype/src/psaux/psobjs.c /^ skip_procedure( FT_Byte* *acur,$/;" f file: +skip_spaces android/freetype/include/freetype/internal/psaux.h /^ (*skip_spaces)( PS_Parser parser );$/;" m struct:PS_Parser_FuncsRec_ +skip_spaces android/freetype/src/psaux/psobjs.c /^ skip_spaces( FT_Byte* *acur,$/;" f file: +skip_spaces include/freetype/internal/psaux.h /^ (*skip_spaces)( PS_Parser parser );$/;" m struct:PS_Parser_FuncsRec_ +skip_string android/freetype/src/psaux/psobjs.c /^ skip_string( FT_Byte* *acur,$/;" f file: +skippedEntityHandler android/expat/lib/xmlparse.c /^#define skippedEntityHandler /;" d file: +slot android/freetype/include/freetype/ftsynth.h /^ FT_GlyphSlot_Embolden( FT_GlyphSlot slot );$/;" v +slot android/freetype/include/freetype/ftsynth.h /^ FT_GlyphSlot_Oblique( FT_GlyphSlot slot );$/;" v +slot android/freetype/include/freetype/ftsynth.h /^ FT_GlyphSlot_Own_Bitmap( FT_GlyphSlot slot );$/;" v +slot android/freetype/include/freetype/internal/ftobjs.h /^ FT_Done_GlyphSlot( FT_GlyphSlot slot );$/;" v +slot android/freetype/include/freetype/internal/ftobjs.h /^ ft_glyphslot_free_bitmap( FT_GlyphSlot slot );$/;" v +slot android/freetype/src/cff/cffobjs.h /^ cff_slot_done( FT_GlyphSlot slot );$/;" v +slot android/freetype/src/cff/cffobjs.h /^ cff_slot_init( FT_GlyphSlot slot );$/;" v +slot android/freetype/src/truetype/ttobjs.h /^ tt_slot_init( FT_GlyphSlot slot );$/;" v +slot include/freetype/ftbitmap.h /^ FT_GlyphSlot_Own_Bitmap( FT_GlyphSlot slot );$/;" v +slot include/freetype/ftsynth.h /^ FT_GlyphSlot_Embolden( FT_GlyphSlot slot );$/;" v +slot include/freetype/ftsynth.h /^ FT_GlyphSlot_Oblique( FT_GlyphSlot slot );$/;" v +slot include/freetype/internal/ftobjs.h /^ FT_Done_GlyphSlot( FT_GlyphSlot slot );$/;" v +slot include/freetype/internal/ftobjs.h /^ ft_glyphslot_free_bitmap( FT_GlyphSlot slot );$/;" v +slot_object_size android/freetype/include/freetype/internal/ftdriver.h /^ FT_Long slot_object_size;$/;" m struct:FT_Driver_ClassRec_ +slot_object_size include/freetype/internal/ftdriver.h /^ FT_Long slot_object_size;$/;" m struct:FT_Driver_ClassRec_ +smooth include/freetype/internal/ftpic.h /^ void* smooth; $/;" m struct:FT_PIC_Container_ +snap_heights android/freetype/include/freetype/t1tables.h /^ FT_Short snap_heights[13]; \/* including std height *\/$/;" m struct:PS_PrivateRec_ +snap_heights android/freetype/src/cff/cfftypes.h /^ FT_Pos snap_heights[13];$/;" m struct:CFF_PrivateRec_ +snap_heights include/freetype/t1tables.h /^ FT_Short snap_heights[13]; \/* including std height *\/$/;" m struct:PS_PrivateRec_ +snap_widths android/freetype/include/freetype/t1tables.h /^ FT_Short snap_widths [13]; \/* including std width *\/$/;" m struct:PS_PrivateRec_ +snap_widths android/freetype/src/cff/cfftypes.h /^ FT_Pos snap_widths[13];$/;" m struct:CFF_PrivateRec_ +snap_widths include/freetype/t1tables.h /^ FT_Short snap_widths [13]; \/* including std width *\/$/;" m struct:PS_PrivateRec_ +socket tools/gyp/build/lib/gyp/MSVSUserFile.py /^import socket # for gethostname$/;" i +socket tools/gyp/pylib/gyp/MSVSUserFile.py /^import socket # for gethostname$/;" i +sort android/freetype/src/pshinter/pshalgo.h /^ PSH_Hint* sort;$/;" m struct:PSH_Hint_TableRec_ +sort src/gfx/gfx_rasterizer_scanline.h /^ void sort(void)$/;" f class:gfx::gfx_rasterizer_scanline_aa +sort_cells src/gfx/gfx_rasterizer_cell.h /^ void sort_cells(void)$/;" f class:gfx::gfx_rasterizer_cells_aa +sort_global android/freetype/src/pshinter/pshalgo.h /^ PSH_Hint* sort_global;$/;" m struct:PSH_Hint_TableRec_ +sorted src/gfx/gfx_rasterizer_cell.h /^ bool sorted(void) const { return m_sorted; }$/;" f class:gfx::gfx_rasterizer_cells_aa +sorted_y src/gfx/gfx_rasterizer_cell.h /^ struct sorted_y {$/;" s class:gfx::gfx_rasterizer_cells_aa +source android/freetype/include/freetype/ftimage.h /^ const void* source;$/;" m struct:FT_Raster_Params_ +source android/freetype/src/base/ftdbgmem.c /^ FT_MemSource source;$/;" m struct:FT_MemNodeRec_ file: +source include/freetype/ftimage.h /^ const void* source;$/;" m struct:FT_Raster_Params_ +source src/gfx/gfx_span_image_filters.h /^ source_type& source(void) { return *m_src; }$/;" f class:gfx::gfx_span_image_filter +source_type src/gfx/gfx_painter.h /^ } source_type;$/;" t class:gfx::gfx_painter typeref:enum:gfx::gfx_painter::__anon63 +source_type src/gfx/gfx_painter_helper.h /^ typedef image_accessor source_type;$/;" t struct:gfx::painter_raster +source_type src/gfx/gfx_span_image_filters.h /^ typedef Source source_type;$/;" t class:gfx::gfx_span_image_filter +source_type src/gfx/gfx_span_image_filters.h /^ typedef Source source_type;$/;" t class:gfx::gfx_span_image_filter_rgb +source_type src/gfx/gfx_span_image_filters.h /^ typedef Source source_type;$/;" t class:gfx::gfx_span_image_filter_rgb16 +source_type src/gfx/gfx_span_image_filters.h /^ typedef Source source_type;$/;" t class:gfx::gfx_span_image_filter_rgb16_nn +source_type src/gfx/gfx_span_image_filters.h /^ typedef Source source_type;$/;" t class:gfx::gfx_span_image_filter_rgb_nn +source_type src/gfx/gfx_span_image_filters.h /^ typedef Source source_type;$/;" t class:gfx::gfx_span_image_filter_rgba +source_type src/gfx/gfx_span_image_filters.h /^ typedef Source source_type;$/;" t class:gfx::gfx_span_image_filter_rgba_nb +source_type src/gfx/gfx_span_image_filters.h /^ typedef Source source_type;$/;" t class:gfx::gfx_span_image_filter_rgba_nn +source_type src/gfx/gfx_span_image_filters.h /^ typedef Source source_type;$/;" t class:gfx::gfx_span_image_filter_rgba_nn_nb +sources android/freetype/src/base/ftdbgmem.c /^ FT_MemSource sources[FT_MEM_SOURCE_BUCKETS];$/;" m struct:FT_MemTableRec_ file: +span src/gfx/gfx_image_accessors.h /^ const byte* span(int x, int y, unsigned int len)$/;" f class:gfx::image_accessor +span src/gfx/gfx_image_accessors.h /^ const byte* span(int x, int y, unsigned int)$/;" f class:gfx::image_accessor_wrap +span src/gfx/gfx_pixfmt_wrapper.h /^ virtual const byte* span(int x, int y, unsigned int i)$/;" f class:gfx::pattern_wrapper_adaptor +span src/gfx/gfx_scanline.h /^ } span;$/;" t class:gfx::gfx_scanline_bin typeref:struct:gfx::gfx_scanline_bin::__anon155 +span src/gfx/gfx_scanline.h /^ } span;$/;" t class:gfx::gfx_scanline_p8 typeref:struct:gfx::gfx_scanline_p8::__anon156 +span src/gfx/gfx_scanline.h /^ } span;$/;" t class:gfx::gfx_scanline_u8 typeref:struct:gfx::gfx_scanline_u8::__anon157 +span src/gfx/gfx_scanline_storage.h /^ } span;$/;" t class:gfx::gfx_scanline_storage_aa::embedded_scanline::const_iterator typeref:struct:gfx::gfx_scanline_storage_aa::embedded_scanline::const_iterator::__anon161 +span src/gfx/gfx_scanline_storage.h /^ } span;$/;" t class:gfx::gfx_serialized_scanlines_adaptor_aa::embedded_scanline::const_iterator typeref:struct:gfx::gfx_serialized_scanlines_adaptor_aa::embedded_scanline::const_iterator::__anon162 +span src/gfx/gfx_scanline_storage.h /^ } span;$/;" t class:gfx::gfx_serialized_scanlines_adaptor_bin::embedded_scanline::const_iterator typeref:struct:gfx::gfx_serialized_scanlines_adaptor_bin::embedded_scanline::const_iterator::__anon165 +span src/gfx/gfx_span_generator.h /^ color_type* span(void) { return &m_span[0]; }$/;" f class:gfx::gfx_span_allocator +span_by_index src/gfx/gfx_scanline_storage.h /^ const span_data& span_by_index(unsigned int i) const$/;" f class:gfx::gfx_scanline_storage_aa +span_by_index src/gfx/gfx_scanline_storage.h /^ const span_data& span_by_index(unsigned int i) const$/;" f class:gfx::gfx_scanline_storage_bin +span_canvas_filter_type src/gfx/gfx_painter_helper.h /^ typedef gfx_span_image_filter_rgb16 span_canvas_filter_type;$/;" t struct:gfx::painter_raster +span_canvas_filter_type src/gfx/gfx_painter_helper.h /^ typedef gfx_span_image_filter_rgb span_canvas_filter_type;$/;" t struct:gfx::painter_raster +span_canvas_filter_type src/gfx/gfx_painter_helper.h /^ typedef gfx_span_image_filter_rgba span_canvas_filter_type;$/;" t struct:gfx::painter_raster +span_canvas_filter_type_nn src/gfx/gfx_painter_helper.h /^ typedef gfx_span_image_filter_rgb16_nn span_canvas_filter_type_nn;$/;" t struct:gfx::painter_raster +span_canvas_filter_type_nn src/gfx/gfx_painter_helper.h /^ typedef gfx_span_image_filter_rgb_nn span_canvas_filter_type_nn;$/;" t struct:gfx::painter_raster +span_canvas_filter_type_nn src/gfx/gfx_painter_helper.h /^ typedef gfx_span_image_filter_rgba_nn span_canvas_filter_type_nn;$/;" t struct:gfx::painter_raster +span_canvas_pattern_type src/gfx/gfx_painter_helper.h /^ typedef gfx_span_image_filter_rgb16 span_canvas_pattern_type;$/;" t struct:gfx::painter_raster +span_canvas_pattern_type src/gfx/gfx_painter_helper.h /^ typedef gfx_span_image_filter_rgb span_canvas_pattern_type;$/;" t struct:gfx::painter_raster +span_canvas_pattern_type src/gfx/gfx_painter_helper.h /^ typedef gfx_span_image_filter_rgba span_canvas_pattern_type;$/;" t struct:gfx::painter_raster +span_canvas_pattern_type_nn src/gfx/gfx_painter_helper.h /^ typedef gfx_span_image_filter_rgb16_nn span_canvas_pattern_type_nn;$/;" t struct:gfx::painter_raster +span_canvas_pattern_type_nn src/gfx/gfx_painter_helper.h /^ typedef gfx_span_image_filter_rgb_nn span_canvas_pattern_type_nn;$/;" t struct:gfx::painter_raster +span_canvas_pattern_type_nn src/gfx/gfx_painter_helper.h /^ typedef gfx_span_image_filter_rgba_nn span_canvas_pattern_type_nn;$/;" t struct:gfx::painter_raster +span_data src/gfx/gfx_scanline_storage.h /^ } span_data;$/;" t class:gfx::gfx_scanline_storage_aa typeref:struct:gfx::gfx_scanline_storage_aa::__anon159 +span_data src/gfx/gfx_scanline_storage.h /^ } span_data;$/;" t class:gfx::gfx_scanline_storage_bin typeref:struct:gfx::gfx_scanline_storage_bin::__anon163 +span_extra_tail src/gfx/gfx_mask_layer.h /^ span_extra_tail = 1<<8,$/;" e enum:gfx::gfx_pixfmt_amask_adaptor::__anon62 +span_image_filter_type src/gfx/gfx_painter_helper.h /^ typedef gfx_span_image_filter_rgb16 span_image_filter_type;$/;" t struct:gfx::painter_raster +span_image_filter_type src/gfx/gfx_painter_helper.h /^ typedef gfx_span_image_filter_rgb span_image_filter_type;$/;" t struct:gfx::painter_raster +span_image_filter_type src/gfx/gfx_painter_helper.h /^ typedef gfx_span_image_filter_rgba_nb span_image_filter_type;$/;" t struct:gfx::painter_raster +span_image_filter_type_nn src/gfx/gfx_painter_helper.h /^ typedef gfx_span_image_filter_rgb16_nn span_image_filter_type_nn;$/;" t struct:gfx::painter_raster +span_image_filter_type_nn src/gfx/gfx_painter_helper.h /^ typedef gfx_span_image_filter_rgb_nn span_image_filter_type_nn;$/;" t struct:gfx::painter_raster +span_image_filter_type_nn src/gfx/gfx_painter_helper.h /^ typedef gfx_span_image_filter_rgba_nn_nb span_image_filter_type_nn;$/;" t struct:gfx::painter_raster +span_image_pattern_type src/gfx/gfx_painter_helper.h /^ typedef gfx_span_image_filter_rgb16 span_image_pattern_type;$/;" t struct:gfx::painter_raster +span_image_pattern_type src/gfx/gfx_painter_helper.h /^ typedef gfx_span_image_filter_rgb span_image_pattern_type;$/;" t struct:gfx::painter_raster +span_image_pattern_type src/gfx/gfx_painter_helper.h /^ typedef gfx_span_image_filter_rgba_nb span_image_pattern_type;$/;" t struct:gfx::painter_raster +span_image_pattern_type_nn src/gfx/gfx_painter_helper.h /^ typedef gfx_span_image_filter_rgb16_nn span_image_pattern_type_nn;$/;" t struct:gfx::painter_raster +span_image_pattern_type_nn src/gfx/gfx_painter_helper.h /^ typedef gfx_span_image_filter_rgb_nn span_image_pattern_type_nn;$/;" t struct:gfx::painter_raster +span_image_pattern_type_nn src/gfx/gfx_painter_helper.h /^ typedef gfx_span_image_filter_rgba_nn_nb span_image_pattern_type_nn;$/;" t struct:gfx::painter_raster +span_y android/freetype/src/smooth/ftgrays.c /^ int span_y;$/;" m struct:TWorker_ file: +split_double_braces tools/gyp/tools/pretty_gyp.py /^def split_double_braces(input):$/;" f +sqrt src/core/fixedopt.cpp /^fixed sqrt(fixed x)$/;" f namespace:fxmath +sqrt_table src/core/fixedopt.cpp /^static unsigned short sqrt_table[256] =$/;" m namespace:fxmath file: +sqrtf src/include/platform.h /^#define sqrtf(/;" d +square_cap src/include/graphic_base.h /^ square_cap,$/;" e enum:picasso::__anon204 +srcdir_prefix tools/gyp/build/lib/gyp/generator/make.py /^srcdir_prefix = ''$/;" v +srcdir_prefix tools/gyp/pylib/gyp/generator/make.py /^srcdir_prefix = ''$/;" v +sround src/include/graphic_base.h /^inline scalar sround(scalar v)$/;" f namespace:picasso +ssbp tools/gyp/build/lib/gyp/generator/xcode.py /^ ssbp = gyp.xcodeproj_file.PBXShellScriptBuildPhase({$/;" v +ssbp tools/gyp/build/lib/gyp/generator/xcode.py /^ ssbp = gyp.xcodeproj_file.PBXShellScriptBuildPhase({$/;" v +ssbp tools/gyp/pylib/gyp/generator/xcode.py /^ ssbp = gyp.xcodeproj_file.PBXShellScriptBuildPhase({$/;" v +ssbp tools/gyp/pylib/gyp/generator/xcode.py /^ ssbp = gyp.xcodeproj_file.PBXShellScriptBuildPhase({$/;" v +st_node src/picasso_gpc.cpp /^} st_node;$/;" t namespace:picasso typeref:struct:picasso::st_shape file: +st_shape src/picasso_gpc.cpp /^typedef struct st_shape { \/* Sorted edge table *\/$/;" s namespace:picasso file: +stable_matrix src/gfx/gfx_trans_affine.h /^inline gfx_trans_affine stable_matrix(const gfx_trans_affine& o)$/;" f namespace:gfx +stack android/freetype/include/freetype/internal/psaux.h /^ FT_Long stack[T1_MAX_CHARSTRINGS_OPERANDS];$/;" m struct:T1_DecoderRec_ +stack android/freetype/src/cff/cffgload.h /^ FT_Fixed stack[CFF_MAX_OPERANDS + 1];$/;" m struct:CFF_Decoder_ +stack android/freetype/src/cff/cffparse.h /^ FT_Byte* stack[CFF_MAX_STACK_DEPTH + 1];$/;" m struct:CFF_ParserRec_ +stack android/freetype/src/truetype/ttinterp.h /^ FT_Long* stack; \/* current exec. stack *\/$/;" m struct:TT_ExecContextRec_ +stack include/freetype/internal/psaux.h /^ FT_Long stack[T1_MAX_CHARSTRINGS_OPERANDS];$/;" m struct:T1_DecoderRec_ +stackSize android/freetype/src/truetype/ttinterp.h /^ FT_UInt stackSize; \/* size of exec. stack *\/$/;" m struct:TT_ExecContextRec_ +stack_blur src/gfx/gfx_blur.h /^ stack_blur()$/;" f class:gfx::stack_blur +stack_blur src/gfx/gfx_blur.h /^class stack_blur$/;" c namespace:gfx +stack_blur_calc_rgba src/gfx/gfx_blur.h /^struct stack_blur_calc_rgba$/;" s namespace:gfx +stamp_change src/picasso_font.h /^ bool stamp_change(void) const { return m_stamp_change; }$/;" f class:picasso::font_engine +standalone android/expat/lib/xmlparse.c /^ XML_Bool standalone;$/;" m struct:__anon17 file: +standard android/freetype/include/freetype/internal/psaux.h /^ FT_CMap_Class standard;$/;" m struct:T1_CMap_ClassesRec_ +standard include/freetype/internal/psaux.h /^ FT_CMap_Class standard;$/;" m struct:T1_CMap_ClassesRec_ +standard_height android/freetype/include/freetype/t1tables.h /^ FT_UShort standard_height[1];$/;" m struct:PS_PrivateRec_ +standard_height android/freetype/src/cff/cfftypes.h /^ FT_Pos standard_height;$/;" m struct:CFF_PrivateRec_ +standard_height include/freetype/t1tables.h /^ FT_UShort standard_height[1];$/;" m struct:PS_PrivateRec_ +standard_width android/freetype/include/freetype/t1tables.h /^ FT_UShort standard_width[1];$/;" m struct:PS_PrivateRec_ +standard_width android/freetype/src/autofit/aflatin.h /^ FT_Pos standard_width;$/;" m struct:AF_LatinAxisRec_ +standard_width android/freetype/src/cff/cfftypes.h /^ FT_Pos standard_width;$/;" m struct:CFF_PrivateRec_ +standard_width include/freetype/t1tables.h /^ FT_UShort standard_width[1];$/;" m struct:PS_PrivateRec_ +start android/expat/lib/xmlparse.c /^ XML_Char *start;$/;" m struct:__anon13 file: +start android/freetype/include/freetype/internal/psaux.h /^ FT_Byte* start; \/* first character of token in input stream *\/$/;" m struct:T1_TokenRec_ +start android/freetype/src/base/ftstroke.c /^ FT_Int start; \/* index of current sub-path start point *\/$/;" m struct:FT_StrokeBorderRec_ file: +start android/freetype/src/cff/cffparse.h /^ FT_Byte* start;$/;" m struct:CFF_ParserRec_ +start android/freetype/src/cff/cfftypes.h /^ FT_ULong start;$/;" m struct:CFF_IndexRec_ +start android/freetype/src/pshinter/pshalgo.h /^ PSH_Point start;$/;" m struct:PSH_ContourRec_ +start android/freetype/src/raster/ftraster.c /^ long start; \/* profile's starting scanline *\/$/;" m struct:TProfile_ file: +start android/freetype/src/truetype/ttobjs.h /^ FT_Long start; \/* where does it start? *\/$/;" m struct:TT_DefRecord_ +start include/freetype/internal/psaux.h /^ FT_Byte* start; \/* first character of token in input stream *\/$/;" m struct:T1_TokenRec_ +start src/gfx/gfx_gamma_function.h /^ scalar start(void) const { return m_start; }$/;" f class:gfx::gamma_linear +start src/gfx/gfx_gamma_function.h /^ void start(scalar s) { m_start = s; }$/;" f class:gfx::gamma_linear +start src/gfx/gfx_gradient_adapter.h /^ scalar start(void) { return m_start; }$/;" f class:gfx::gfx_gradient_adapter +start src/gfx/gfx_image_filters.h /^ int start(void) const { return m_start; }$/;" f class:gfx::image_filter_adapter +start src/gfx/gfx_rasterizer_cell.h /^ unsigned int start;$/;" m struct:gfx::gfx_rasterizer_cells_aa::sorted_y +startCdataSectionHandler android/expat/lib/xmlparse.c /^#define startCdataSectionHandler /;" d file: +startDoctypeDeclHandler android/expat/lib/xmlparse.c /^#define startDoctypeDeclHandler /;" d file: +startElementHandler android/expat/lib/xmlparse.c /^#define startElementHandler /;" d file: +startNamespaceDeclHandler android/expat/lib/xmlparse.c /^#define startNamespaceDeclHandler /;" d file: +startParsing android/expat/lib/xmlparse.c /^startParsing(XML_Parser parser)$/;" f file: +startTagLevel android/expat/lib/xmlparse.c /^ int startTagLevel;$/;" m struct:open_internal_entity file: +start_contour src/include/convert.h /^ void start_contour(void)$/;" f class:picasso::conv_clipper +start_glyph android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort start_glyph;$/;" m struct:TT_SBit_StrikeRec_ +start_glyph include/freetype/internal/tttypes.h /^ FT_UShort start_glyph;$/;" m struct:TT_SBit_StrikeRec_ +start_new_path src/core/graphic_path.cpp /^unsigned int graphic_path::start_new_path(void)$/;" f class:picasso::graphic_path +start_point android/freetype/include/freetype/internal/psaux.h /^ T1_Builder_Start_Point_Func start_point;$/;" m struct:T1_Builder_FuncsRec_ +start_point android/freetype/src/psaux/t1decode.c /^#define start_point /;" d file: +start_point include/freetype/internal/psaux.h /^ T1_Builder_Start_Point_Func start_point;$/;" m struct:T1_Builder_FuncsRec_ +start_span src/gfx/gfx_scanline_storage.h /^ unsigned int start_span;$/;" m struct:gfx::gfx_scanline_storage_aa::__anon160 +start_span src/gfx/gfx_scanline_storage.h /^ unsigned int start_span;$/;" m struct:gfx::gfx_scanline_storage_bin::__anon164 +start_worker_threads test/thr_posix.c /^void start_worker_threads(void* cs)$/;" f +start_worker_threads test/thr_win32.c /^void start_worker_threads(void* cs)$/;" f +state android/freetype/src/raster/ftraster.c /^ TStates state; \/* rendering state *\/$/;" m struct:TWorker_ file: +state src/picasso_objects.h /^ picasso::context_state* state;$/;" m struct:_ps_context +status android/freetype/src/psaux/afmparse.c /^ FT_Int status;$/;" m struct:AFM_StreamRec_ file: +status src/include/convert.h /^ } status;$/;" t class:picasso::conv_clipper typeref:enum:picasso::conv_clipper::__anon187 +status src/include/convert.h /^ } status;$/;" t class:picasso::conv_dash typeref:enum:picasso::conv_dash::__anon190 +status src/include/convert.h /^ } status;$/;" t class:picasso::conv_line_generator typeref:enum:picasso::conv_line_generator::__anon189 +status src/include/convert.h /^ } status;$/;" t class:picasso::conv_stroke typeref:enum:picasso::conv_stroke::__anon192 +status_accumulate src/include/convert.h /^ status_accumulate,$/;" e enum:picasso::conv_line_generator::__anon189 +status_closed src/gfx/gfx_rasterizer_scanline.h /^ status_closed$/;" e enum:gfx::gfx_rasterizer_scanline_aa::__anon153 +status_generate src/include/convert.h /^ status_generate$/;" e enum:picasso::conv_line_generator::__anon189 +status_initial src/gfx/gfx_rasterizer_scanline.h /^ status_initial,$/;" e enum:gfx::gfx_rasterizer_scanline_aa::__anon153 +status_initial src/include/convert.h /^ status_initial,$/;" e enum:picasso::conv_line_generator::__anon189 +status_line_to src/gfx/gfx_rasterizer_scanline.h /^ status_line_to,$/;" e enum:gfx::gfx_rasterizer_scanline_aa::__anon153 +status_line_to src/include/convert.h /^ status_line_to,$/;" e enum:picasso::conv_clipper::__anon187 +status_move_to src/gfx/gfx_rasterizer_scanline.h /^ status_move_to,$/;" e enum:gfx::gfx_rasterizer_scanline_aa::__anon153 +status_move_to src/include/convert.h /^ status_move_to,$/;" e enum:picasso::conv_clipper::__anon187 +status_stop src/include/convert.h /^ status_stop,$/;" e enum:picasso::conv_clipper::__anon187 +stdw android/freetype/src/pshinter/pshglob.h /^ PSH_WidthsRec stdw;$/;" m struct:PSH_DimensionRec_ +stem android/freetype/include/freetype/internal/pshints.h /^ T1_Hints_SetStemFunc stem;$/;" m struct:T1_Hints_FuncsRec_ +stem include/freetype/internal/pshints.h /^ T1_Hints_SetStemFunc stem;$/;" m struct:T1_Hints_FuncsRec_ +stem3 android/freetype/include/freetype/internal/pshints.h /^ T1_Hints_SetStem3Func stem3;$/;" m struct:T1_Hints_FuncsRec_ +stem3 include/freetype/internal/pshints.h /^ T1_Hints_SetStem3Func stem3;$/;" m struct:T1_Hints_FuncsRec_ +stems android/freetype/include/freetype/internal/pshints.h /^ T2_Hints_StemsFunc stems;$/;" m struct:T2_Hints_FuncsRec_ +stems include/freetype/internal/pshints.h /^ T2_Hints_StemsFunc stems;$/;" m struct:T2_Hints_FuncsRec_ +step src/gfx/gfx_mask_layer.h /^ step = 1,$/;" e enum:gfx::gfx_alpha_mask_u8::__anon61 +step test/clip_func.c /^static int step = 0;$/;" v file: +step test/composite_func.c /^static int step = 0;$/;" v file: +step test/gamma_func.c /^static int step = 0;$/;" v file: +step test/gcstate_func.c /^static int step = 0;$/;" v file: +step test/gradient_func.c /^static int step = 0;$/;" v file: +step test/path_func.c /^static int step = 0;$/;" v file: +step test/text_func.c /^static int step = 0;$/;" v file: +step_ins android/freetype/src/truetype/ttinterp.h /^ FT_Bool step_ins; \/* true if the interpreter must *\/$/;" m struct:TT_ExecContextRec_ +stop src/include/convert.h /^ stop$/;" e enum:picasso::conv_stroke::__anon192 +stop src/include/convert.h /^ stop,$/;" e enum:picasso::conv_dash::__anon190 +stop_worker_threads test/thr_posix.c /^void stop_worker_threads(void)$/;" f +stop_worker_threads test/thr_win32.c /^void stop_worker_threads(void)$/;" f +storage android/freetype/src/truetype/ttinterp.h /^ FT_Long* storage; \/* storage area *\/$/;" m struct:TT_ExecContextRec_ +storage android/freetype/src/truetype/ttobjs.h /^ FT_Long* storage; \/* the instance *\/$/;" m struct:TT_SizeRec_ +storage src/picasso_font.h /^ void* storage;$/;" m class:picasso::mono_storage +storageOffset android/freetype/include/freetype/internal/tttypes.h /^ FT_UInt storageOffset;$/;" m struct:TT_NameTableRec_ +storageOffset include/freetype/internal/tttypes.h /^ FT_UInt storageOffset;$/;" m struct:TT_NameTableRec_ +storage_size android/freetype/src/truetype/ttobjs.h /^ FT_UShort storage_size; \/* The storage area is now part of *\/$/;" m struct:TT_SizeRec_ +storeAttributeValue android/expat/lib/xmlparse.c /^storeAttributeValue(XML_Parser parser, const ENCODING *enc, XML_Bool isCdata,$/;" f file: +storeAtts android/expat/lib/xmlparse.c /^storeAtts(XML_Parser parser, const ENCODING *enc,$/;" f file: +storeEntityValue android/expat/lib/xmlparse.c /^storeEntityValue(XML_Parser parser,$/;" f file: +storeRawNames android/expat/lib/xmlparse.c /^storeRawNames(XML_Parser parser)$/;" f file: +storeSize android/freetype/src/truetype/ttinterp.h /^ FT_UShort storeSize; \/* size of current storage *\/$/;" m struct:TT_ExecContextRec_ +store_to src/gfx/gfx_trans_affine.h /^ virtual void store_to(scalar* m) const$/;" f class:gfx::gfx_trans_affine +store_to src/picasso_matrix.cpp /^void trans_affine::store_to(scalar* m) const$/;" f class:picasso::trans_affine +str android/expat/lib/xmlparse.c /^ const XML_Char *str;$/;" m struct:__anon10 file: +strLen android/expat/lib/xmlparse.c /^ int strLen;$/;" m struct:__anon10 file: +stream android/freetype/include/freetype/freetype.h /^ FT_Stream stream;$/;" m struct:FT_FaceRec_ +stream android/freetype/include/freetype/freetype.h /^ FT_Stream stream;$/;" m struct:FT_Open_Args_ +stream android/freetype/include/freetype/internal/ftstream.h /^ FT_Stream_Close( FT_Stream stream );$/;" v +stream android/freetype/include/freetype/internal/ftstream.h /^ FT_Stream_ExitFrame( FT_Stream stream );$/;" v +stream android/freetype/include/freetype/internal/ftstream.h /^ FT_Stream_GetChar( FT_Stream stream );$/;" v +stream android/freetype/include/freetype/internal/ftstream.h /^ FT_Stream_GetLong( FT_Stream stream );$/;" v +stream android/freetype/include/freetype/internal/ftstream.h /^ FT_Stream_GetLongLE( FT_Stream stream );$/;" v +stream android/freetype/include/freetype/internal/ftstream.h /^ FT_Stream_GetOffset( FT_Stream stream );$/;" v +stream android/freetype/include/freetype/internal/ftstream.h /^ FT_Stream_GetShort( FT_Stream stream );$/;" v +stream android/freetype/include/freetype/internal/ftstream.h /^ FT_Stream_GetShortLE( FT_Stream stream );$/;" v +stream android/freetype/include/freetype/internal/ftstream.h /^ FT_Stream_Pos( FT_Stream stream );$/;" v +stream android/freetype/include/freetype/internal/psaux.h /^ AFM_Stream stream;$/;" m struct:AFM_ParserRec_ +stream android/freetype/include/freetype/internal/tttypes.h /^ FT_Stream stream;$/;" m struct:TT_NameTableRec_ +stream android/freetype/include/freetype/internal/tttypes.h /^ FT_Stream stream;$/;" m struct:TT_LoaderRec_ +stream android/freetype/src/cff/cfftypes.h /^ FT_Stream stream;$/;" m struct:CFF_FontRec_ +stream android/freetype/src/cff/cfftypes.h /^ FT_Stream stream;$/;" m struct:CFF_IndexRec_ +stream android/freetype/src/sfnt/ttsbit0.c /^ FT_Stream stream;$/;" m struct:TT_SBitDecoderRec_ file: +stream include/freetype/freetype.h /^ FT_Stream stream;$/;" m struct:FT_FaceRec_ +stream include/freetype/freetype.h /^ FT_Stream stream;$/;" m struct:FT_Open_Args_ +stream include/freetype/internal/ftstream.h /^ FT_Stream_Close( FT_Stream stream );$/;" v +stream include/freetype/internal/ftstream.h /^ FT_Stream_ExitFrame( FT_Stream stream );$/;" v +stream include/freetype/internal/ftstream.h /^ FT_Stream_GetChar( FT_Stream stream );$/;" v +stream include/freetype/internal/ftstream.h /^ FT_Stream_GetLong( FT_Stream stream );$/;" v +stream include/freetype/internal/ftstream.h /^ FT_Stream_GetLongLE( FT_Stream stream );$/;" v +stream include/freetype/internal/ftstream.h /^ FT_Stream_GetOffset( FT_Stream stream );$/;" v +stream include/freetype/internal/ftstream.h /^ FT_Stream_GetShort( FT_Stream stream );$/;" v +stream include/freetype/internal/ftstream.h /^ FT_Stream_GetShortLE( FT_Stream stream );$/;" v +stream include/freetype/internal/ftstream.h /^ FT_Stream_Pos( FT_Stream stream );$/;" v +stream include/freetype/internal/psaux.h /^ AFM_Stream stream;$/;" m struct:AFM_ParserRec_ +stream include/freetype/internal/tttypes.h /^ FT_Stream stream;$/;" m struct:TT_NameTableRec_ +stream include/freetype/internal/tttypes.h /^ FT_Stream stream;$/;" m struct:TT_LoaderRec_ +streqci android/expat/lib/xmltok.c /^streqci(const char *s1, const char *s2)$/;" f file: +stretched android/freetype/src/truetype/ttobjs.h /^ FT_Bool stretched; \/* `is the glyph stretched?'-flag *\/$/;" m struct:TT_Size_Metrics_ +strid android/freetype/include/freetype/ftmm.h /^ FT_UInt strid;$/;" m struct:FT_Var_Axis_ +strid android/freetype/include/freetype/ftmm.h /^ FT_UInt strid;$/;" m struct:FT_Var_Named_Style_ +strid include/freetype/ftmm.h /^ FT_UInt strid;$/;" m struct:FT_Var_Axis_ +strid include/freetype/ftmm.h /^ FT_UInt strid;$/;" m struct:FT_Var_Named_Style_ +stride src/gfx/gfx_pixfmt_rgb.h /^ int stride(void) const { return m_buffer->internal_stride(); }$/;" f class:gfx::pixfmt_blender_rgb +stride src/gfx/gfx_pixfmt_rgb16.h /^ int stride(void) const { return m_buffer->internal_stride(); }$/;" f class:gfx::pixfmt_blender_rgb16 +stride src/gfx/gfx_pixfmt_rgba.h /^ int stride(void) const { return m_buffer->internal_stride(); }$/;" f class:gfx::pixfmt_blender_rgba +stride src/gfx/gfx_pixfmt_wrapper.h /^ int stride(void) const { return m_fmt.stride(); }$/;" f class:gfx::gfx_pixfmt_wrapper +stride src/gfx/gfx_rendering_buffer.h /^ virtual int stride(void) const { return m_stride; }$/;" f class:gfx::gfx_rendering_buffer +stride src/picasso_rendering_buffer.cpp /^int rendering_buffer::stride(void) const $/;" f class:picasso::rendering_buffer +strike_index android/freetype/src/cff/cffobjs.h /^ FT_ULong strike_index; \/* 0xFFFFFFFF to indicate invalid *\/$/;" m struct:CFF_SizeRec_ +strike_index android/freetype/src/truetype/ttobjs.h /^ FT_ULong strike_index; \/* 0xFFFFFFFF to indicate invalid *\/$/;" m struct:TT_SizeRec_ +strike_index_array android/freetype/src/sfnt/ttsbit0.c /^ FT_ULong strike_index_array;$/;" m struct:TT_SBitDecoderRec_ file: +strike_index_count android/freetype/src/sfnt/ttsbit0.c /^ FT_ULong strike_index_count;$/;" m struct:TT_SBitDecoderRec_ file: +strike_out android/freetype/include/freetype/ftwinfnt.h /^ FT_Byte strike_out;$/;" m struct:FT_WinFNT_HeaderRec_ +strike_out include/freetype/ftwinfnt.h /^ FT_Byte strike_out;$/;" m struct:FT_WinFNT_HeaderRec_ +string android/freetype/include/freetype/ftsnames.h /^ FT_Byte* string; \/* this string is *not* null-terminated! *\/$/;" m struct:FT_SfntName_ +string android/freetype/include/freetype/internal/tttypes.h /^ FT_Byte* string;$/;" m struct:TT_NameEntryRec_ +string include/freetype/ftsnames.h /^ FT_Byte* string; \/* this string is *not* null-terminated! *\/$/;" m struct:FT_SfntName_ +string include/freetype/internal/tttypes.h /^ FT_Byte* string;$/;" m struct:TT_NameEntryRec_ +string tools/gyp/build/lib/gyp/mac_tool.py /^import string$/;" i +string tools/gyp/pylib/gyp/mac_tool.py /^import string$/;" i +stringLength android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort stringLength;$/;" m struct:TT_NameEntryRec_ +stringLength include/freetype/internal/tttypes.h /^ FT_UShort stringLength;$/;" m struct:TT_NameEntryRec_ +stringOffset android/freetype/include/freetype/internal/tttypes.h /^ FT_ULong stringOffset;$/;" m struct:TT_NameEntryRec_ +stringOffset include/freetype/internal/tttypes.h /^ FT_ULong stringOffset;$/;" m struct:TT_NameEntryRec_ +string_index android/freetype/src/cff/cfftypes.h /^ CFF_IndexRec string_index;$/;" m struct:CFF_FontRec_ +string_len android/freetype/include/freetype/ftsnames.h /^ FT_UInt string_len; \/* in bytes *\/$/;" m struct:FT_SfntName_ +string_len include/freetype/ftsnames.h /^ FT_UInt string_len; \/* in bytes *\/$/;" m struct:FT_SfntName_ +strings android/freetype/include/freetype/internal/tttypes.h /^ FT_Byte* strings;$/;" m struct:TT_BDFRec_ +strings include/freetype/internal/tttypes.h /^ FT_Byte* strings;$/;" m struct:TT_BDFRec_ +strings_size android/freetype/include/freetype/internal/tttypes.h /^ FT_UInt32 strings_size;$/;" m struct:TT_BDFRec_ +strings_size include/freetype/internal/tttypes.h /^ FT_ULong strings_size;$/;" m struct:TT_BDFRec_ +stroke_impl src/gfx/gfx_raster_adapter.h /^ gfx_rasterizer_scanline_aa<>& stroke_impl(void) { return m_sraster; } $/;" f class:gfx::gfx_raster_adapter +stroke_width android/freetype/include/freetype/internal/t1types.h /^ FT_Fixed stroke_width;$/;" m struct:T1_FontRec_ +stroke_width android/freetype/include/freetype/t1tables.h /^ FT_Pos stroke_width;$/;" m struct:CID_FaceDictRec_ +stroke_width android/freetype/src/cff/cfftypes.h /^ FT_Pos stroke_width;$/;" m struct:CFF_FontRecDictRec_ +stroke_width include/freetype/internal/t1types.h /^ FT_Fixed stroke_width;$/;" m struct:T1_FontRec_ +stroke_width include/freetype/t1tables.h /^ FT_Pos stroke_width;$/;" m struct:CID_FaceDictRec_ +stroker android/freetype/include/freetype/ftstroke.h /^ FT_Stroker_Done( FT_Stroker stroker );$/;" v +stroker android/freetype/include/freetype/ftstroke.h /^ FT_Stroker_EndSubPath( FT_Stroker stroker );$/;" v +stroker android/freetype/include/freetype/ftstroke.h /^ FT_Stroker_Rewind( FT_Stroker stroker );$/;" v +stroker include/freetype/ftstroke.h /^ FT_Stroker_Done( FT_Stroker stroker );$/;" v +stroker include/freetype/ftstroke.h /^ FT_Stroker_EndSubPath( FT_Stroker stroker );$/;" v +stroker include/freetype/ftstroke.h /^ FT_Stroker_Rewind( FT_Stroker stroker );$/;" v +struct tools/gyp/build/lib/gyp/sun_tool.py /^import struct$/;" i +struct tools/gyp/build/lib/gyp/xcodeproj_file.py /^import struct$/;" i +struct tools/gyp/pylib/gyp/sun_tool.py /^import struct$/;" i +struct tools/gyp/pylib/gyp/xcodeproj_file.py /^import struct$/;" i +style src/gfx/gfx_rasterizer_cell.h /^ void style(const cell_type& style_cell)$/;" f class:gfx::gfx_rasterizer_cells_aa +style src/gfx/gfx_rasterizer_scanline.h /^ void style(const cell&) {}$/;" f struct:gfx::cell +style src/picasso_objects.h /^ unsigned int style; $/;" m struct:picasso::graphic_pen +style src/picasso_objects.h /^ unsigned int style;$/;" m struct:picasso::graphic_brush +style_flags android/freetype/include/freetype/freetype.h /^ FT_Long style_flags;$/;" m struct:FT_FaceRec_ +style_flags include/freetype/freetype.h /^ FT_Long style_flags;$/;" m struct:FT_FaceRec_ +style_name android/freetype/include/freetype/freetype.h /^ FT_String* style_name;$/;" m struct:FT_FaceRec_ +style_name include/freetype/freetype.h /^ FT_String* style_name;$/;" m struct:FT_FaceRec_ +sub src/gfx/gfx_blur.h /^ template void sub(const T& v)$/;" f struct:gfx::stack_blur_calc_rgba +subfonts android/freetype/src/cff/cffobjs.h /^ PSH_Globals subfonts[CFF_MAX_CID_FONTS];$/;" m struct:CFF_InternalRec_ +subfonts android/freetype/src/cff/cfftypes.h /^ CFF_SubFont subfonts[CFF_MAX_CID_FONTS];$/;" m struct:CFF_FontRec_ +subglyphs android/freetype/include/freetype/freetype.h /^ FT_SubGlyph subglyphs;$/;" m struct:FT_GlyphSlotRec_ +subglyphs android/freetype/include/freetype/internal/ftgloadr.h /^ FT_SubGlyph subglyphs; \/* subglyphs *\/$/;" m struct:FT_GlyphLoadRec_ +subglyphs include/freetype/freetype.h /^ FT_SubGlyph subglyphs;$/;" m struct:FT_GlyphSlotRec_ +subglyphs include/freetype/internal/ftgloadr.h /^ FT_SubGlyph subglyphs; \/* subglyphs *\/$/;" m struct:FT_GlyphLoadRec_ +subninja tools/gyp/build/lib/gyp/ninja_syntax.py /^ def subninja(self, path):$/;" m class:Writer +subninja tools/gyp/pylib/gyp/ninja_syntax.py /^ def subninja(self, path):$/;" m class:Writer +subpath_angle android/freetype/src/base/ftstroke.c /^ FT_Angle subpath_angle;$/;" m struct:FT_StrokerRec_ file: +subpath_open android/freetype/src/base/ftstroke.c /^ FT_Bool subpath_open;$/;" m struct:FT_StrokerRec_ file: +subpath_start android/freetype/src/base/ftstroke.c /^ FT_Vector subpath_start;$/;" m struct:FT_StrokerRec_ file: +subpixel_scale src/gfx/gfx_span_generator.h /^ subpixel_scale = 1 << subpixel_shift,$/;" e enum:gfx::gfx_span_interpolator_linear::__anon167 +subpixel_shift src/gfx/gfx_span_generator.h /^ subpixel_shift = 8,$/;" e enum:gfx::gfx_span_interpolator_linear::__anon167 +subprocess tools/gyp/build/lib/gyp/MSVSVersion.py /^import subprocess$/;" i +subprocess tools/gyp/build/lib/gyp/generator/android.py /^import subprocess$/;" i +subprocess tools/gyp/build/lib/gyp/generator/eclipse.py /^import subprocess$/;" i +subprocess tools/gyp/build/lib/gyp/generator/make.py /^import subprocess$/;" i +subprocess tools/gyp/build/lib/gyp/generator/msvs.py /^import subprocess$/;" i +subprocess tools/gyp/build/lib/gyp/generator/ninja.py /^import subprocess$/;" i +subprocess tools/gyp/build/lib/gyp/generator/scons.py /^import subprocess$/;" i +subprocess tools/gyp/build/lib/gyp/generator/xcode.py /^ import subprocess$/;" i +subprocess tools/gyp/build/lib/gyp/generator/xcode.py /^import subprocess$/;" i +subprocess tools/gyp/build/lib/gyp/input.py /^import subprocess$/;" i +subprocess tools/gyp/build/lib/gyp/mac_tool.py /^import subprocess$/;" i +subprocess tools/gyp/build/lib/gyp/msvs_emulation.py /^import subprocess$/;" i +subprocess tools/gyp/build/lib/gyp/sun_tool.py /^import subprocess$/;" i +subprocess tools/gyp/build/lib/gyp/win_tool.py /^import subprocess$/;" i +subprocess tools/gyp/build/lib/gyp/xcode_emulation.py /^ import subprocess$/;" i +subprocess tools/gyp/buildbot/buildbot_run.py /^import subprocess$/;" i +subprocess tools/gyp/gyptest.py /^import subprocess$/;" i +subprocess tools/gyp/pylib/gyp/MSVSVersion.py /^import subprocess$/;" i +subprocess tools/gyp/pylib/gyp/generator/android.py /^import subprocess$/;" i +subprocess tools/gyp/pylib/gyp/generator/eclipse.py /^import subprocess$/;" i +subprocess tools/gyp/pylib/gyp/generator/make.py /^import subprocess$/;" i +subprocess tools/gyp/pylib/gyp/generator/msvs.py /^import subprocess$/;" i +subprocess tools/gyp/pylib/gyp/generator/ninja.py /^import subprocess$/;" i +subprocess tools/gyp/pylib/gyp/generator/scons.py /^import subprocess$/;" i +subprocess tools/gyp/pylib/gyp/generator/xcode.py /^ import subprocess$/;" i +subprocess tools/gyp/pylib/gyp/generator/xcode.py /^import subprocess$/;" i +subprocess tools/gyp/pylib/gyp/input.py /^import subprocess$/;" i +subprocess tools/gyp/pylib/gyp/mac_tool.py /^import subprocess$/;" i +subprocess tools/gyp/pylib/gyp/msvs_emulation.py /^import subprocess$/;" i +subprocess tools/gyp/pylib/gyp/sun_tool.py /^import subprocess$/;" i +subprocess tools/gyp/pylib/gyp/win_tool.py /^import subprocess$/;" i +subprocess tools/gyp/pylib/gyp/xcode_emulation.py /^ import subprocess$/;" i +subrmap_offset android/freetype/include/freetype/t1tables.h /^ FT_ULong subrmap_offset;$/;" m struct:CID_FaceDictRec_ +subrmap_offset include/freetype/t1tables.h /^ FT_ULong subrmap_offset;$/;" m struct:CID_FaceDictRec_ +subrs android/freetype/include/freetype/internal/psaux.h /^ FT_Byte** subrs;$/;" m struct:T1_DecoderRec_ +subrs android/freetype/include/freetype/internal/t1types.h /^ CID_Subrs subrs;$/;" m struct:CID_FaceRec_ +subrs android/freetype/include/freetype/internal/t1types.h /^ FT_Byte** subrs;$/;" m struct:T1_FontRec_ +subrs include/freetype/internal/psaux.h /^ FT_Byte** subrs;$/;" m struct:T1_DecoderRec_ +subrs include/freetype/internal/t1types.h /^ CID_Subrs subrs;$/;" m struct:CID_FaceRec_ +subrs include/freetype/internal/t1types.h /^ FT_Byte** subrs;$/;" m struct:T1_FontRec_ +subrs_block android/freetype/include/freetype/internal/t1types.h /^ FT_Byte* subrs_block;$/;" m struct:T1_FontRec_ +subrs_block include/freetype/internal/t1types.h /^ FT_Byte* subrs_block;$/;" m struct:T1_FontRec_ +subrs_len android/freetype/include/freetype/internal/psaux.h /^ FT_PtrDist* subrs_len; \/* array of subrs length (optional) *\/$/;" m struct:T1_DecoderRec_ +subrs_len android/freetype/include/freetype/internal/t1types.h /^ FT_PtrDist* subrs_len;$/;" m struct:T1_FontRec_ +subrs_len include/freetype/internal/psaux.h /^ FT_PtrDist* subrs_len; \/* array of subrs length (optional) *\/$/;" m struct:T1_DecoderRec_ +subrs_len include/freetype/internal/t1types.h /^ FT_PtrDist* subrs_len;$/;" m struct:T1_FontRec_ +subst tools/gyp/gyptest.py /^ def subst(self, string, dictionary=None):$/;" m class:CommandRunner +subst_dictionary tools/gyp/gyptest.py /^ def subst_dictionary(self, dictionary):$/;" m class:CommandRunner +succ src/picasso_gpc.cpp /^ struct edge_shape *succ; \/* Edge connected at the upper end *\/$/;" m struct:picasso::edge_shape typeref:struct:picasso::edge_shape::edge_shape file: +supplement android/freetype/include/freetype/t1tables.h /^ FT_Int supplement;$/;" m struct:CID_FaceInfoRec_ +supplement include/freetype/t1tables.h /^ FT_Int supplement;$/;" m struct:CID_FaceInfoRec_ +suseconds_t demos/timeuse.h /^typedef long suseconds_t;$/;" t +suseconds_t test/timeuse.h /^typedef long suseconds_t;$/;" t +swap_cells src/gfx/gfx_rasterizer_cell.h /^static inline void swap_cells(T* a, T* b)$/;" f namespace:gfx +swap_elements src/include/data_vector.h /^template inline void swap_elements(T& a, T& b)$/;" f namespace:picasso +swap_vertices src/core/graphic_path.cpp /^ void swap_vertices(unsigned int v1, unsigned int v2)$/;" f class:picasso::graphic_path_impl +sweep_scanline src/gfx/gfx_rasterizer_scanline.h /^ bool sweep_scanline(Scanline& sl)$/;" f class:gfx::gfx_rasterizer_scanline_aa +sweep_scanline src/gfx/gfx_scanline_storage.h /^ bool sweep_scanline(Scanline& sl)$/;" f class:gfx::gfx_scanline_storage_aa +sweep_scanline src/gfx/gfx_scanline_storage.h /^ bool sweep_scanline(Scanline& sl)$/;" f class:gfx::gfx_scanline_storage_bin +sweep_scanline src/gfx/gfx_scanline_storage.h /^ bool sweep_scanline(Scanline& sl)$/;" f class:gfx::gfx_serialized_scanlines_adaptor_aa +sweep_scanline src/gfx/gfx_scanline_storage.h /^ bool sweep_scanline(Scanline& sl)$/;" f class:gfx::gfx_serialized_scanlines_adaptor_bin +sweep_scanline src/gfx/gfx_scanline_storage.h /^ bool sweep_scanline(embedded_scanline& sl)$/;" f class:gfx::gfx_scanline_storage_aa +sweep_scanline src/gfx/gfx_scanline_storage.h /^ bool sweep_scanline(embedded_scanline& sl)$/;" f class:gfx::gfx_scanline_storage_bin +sweep_scanline src/gfx/gfx_scanline_storage.h /^ bool sweep_scanline(embedded_scanline& sl)$/;" f class:gfx::gfx_serialized_scanlines_adaptor_aa +sweep_scanline src/gfx/gfx_scanline_storage.h /^ bool sweep_scanline(embedded_scanline& sl)$/;" f class:gfx::gfx_serialized_scanlines_adaptor_bin +sweep_scanline_hit src/gfx/gfx_rasterizer_scanline.h /^ bool sweep_scanline_hit(Scanline& sl)$/;" f class:gfx::gfx_rasterizer_scanline_aa +sx src/gfx/gfx_trans_affine.h /^ virtual scalar sx(void) const { return m_sx; }$/;" f class:gfx::gfx_trans_affine +sx src/gfx/gfx_trans_affine.h /^ virtual void sx(scalar v) { m_sx = v; }$/;" f class:gfx::gfx_trans_affine +sx src/picasso_matrix.cpp /^scalar trans_affine::sx(void) const$/;" f class:picasso::trans_affine +sx src/picasso_matrix.cpp /^void trans_affine::sx(scalar v) $/;" f class:picasso::trans_affine +sxHeight android/freetype/include/freetype/tttables.h /^ FT_Short sxHeight;$/;" m struct:TT_OS2_ +sxHeight include/freetype/tttables.h /^ FT_Short sxHeight;$/;" m struct:TT_OS2_ +sy src/gfx/gfx_trans_affine.h /^ virtual scalar sy(void) const { return m_sy; }$/;" f class:gfx::gfx_trans_affine +sy src/gfx/gfx_trans_affine.h /^ virtual void sy(scalar v) { m_sy = v; }$/;" f class:gfx::gfx_trans_affine +sy src/picasso_matrix.cpp /^scalar trans_affine::sy(void) const$/;" f class:picasso::trans_affine +sy src/picasso_matrix.cpp /^void trans_affine::sy(scalar v)$/;" f class:picasso::trans_affine +synthetic_base android/freetype/src/cff/cfftypes.h /^ FT_Long synthetic_base;$/;" m struct:CFF_FontRecDictRec_ +sys tools/cp.py /^import sys$/;" i +sys tools/gyp/PRESUBMIT.py /^ import sys$/;" i +sys tools/gyp/build/lib/gyp/MSVSSettings.py /^import sys$/;" i +sys tools/gyp/build/lib/gyp/MSVSVersion.py /^import sys$/;" i +sys tools/gyp/build/lib/gyp/__init__.py /^import sys$/;" i +sys tools/gyp/build/lib/gyp/common.py /^import sys$/;" i +sys tools/gyp/build/lib/gyp/common_test.py /^import sys$/;" i +sys tools/gyp/build/lib/gyp/generator/dump_dependency_json.py /^import sys$/;" i +sys tools/gyp/build/lib/gyp/generator/gypsh.py /^import sys$/;" i +sys tools/gyp/build/lib/gyp/generator/make.py /^import sys$/;" i +sys tools/gyp/build/lib/gyp/generator/msvs.py /^import sys$/;" i +sys tools/gyp/build/lib/gyp/generator/ninja.py /^import sys$/;" i +sys tools/gyp/build/lib/gyp/generator/ninja_test.py /^import sys$/;" i +sys tools/gyp/build/lib/gyp/generator/xcode.py /^import sys$/;" i +sys tools/gyp/build/lib/gyp/input.py /^import sys$/;" i +sys tools/gyp/build/lib/gyp/mac_tool.py /^import sys$/;" i +sys tools/gyp/build/lib/gyp/msvs_emulation.py /^import sys$/;" i +sys tools/gyp/build/lib/gyp/sun_tool.py /^import sys$/;" i +sys tools/gyp/build/lib/gyp/win_tool.py /^import sys$/;" i +sys tools/gyp/build/lib/gyp/xcodeproj_file.py /^import sys$/;" i +sys tools/gyp/buildbot/buildbot_run.py /^import sys$/;" i +sys tools/gyp/gyptest.py /^import sys$/;" i +sys tools/gyp/pylib/gyp/MSVSSettings.py /^import sys$/;" i +sys tools/gyp/pylib/gyp/MSVSVersion.py /^import sys$/;" i +sys tools/gyp/pylib/gyp/__init__.py /^import sys$/;" i +sys tools/gyp/pylib/gyp/common.py /^import sys$/;" i +sys tools/gyp/pylib/gyp/common_test.py /^import sys$/;" i +sys tools/gyp/pylib/gyp/generator/dump_dependency_json.py /^import sys$/;" i +sys tools/gyp/pylib/gyp/generator/gypsh.py /^import sys$/;" i +sys tools/gyp/pylib/gyp/generator/make.py /^import sys$/;" i +sys tools/gyp/pylib/gyp/generator/msvs.py /^import sys$/;" i +sys tools/gyp/pylib/gyp/generator/ninja.py /^import sys$/;" i +sys tools/gyp/pylib/gyp/generator/ninja_test.py /^import sys$/;" i +sys tools/gyp/pylib/gyp/generator/xcode.py /^import sys$/;" i +sys tools/gyp/pylib/gyp/input.py /^import sys$/;" i +sys tools/gyp/pylib/gyp/mac_tool.py /^import sys$/;" i +sys tools/gyp/pylib/gyp/msvs_emulation.py /^import sys$/;" i +sys tools/gyp/pylib/gyp/sun_tool.py /^import sys$/;" i +sys tools/gyp/pylib/gyp/win_tool.py /^import sys$/;" i +sys tools/gyp/pylib/gyp/xcodeproj_file.py /^import sys$/;" i +sys tools/gyp/tools/graphviz.py /^import sys$/;" i +sys tools/gyp/tools/pretty_gyp.py /^import sys$/;" i +sys tools/gyp/tools/pretty_sln.py /^import sys$/;" i +sys tools/gyp/tools/pretty_vcproj.py /^import sys$/;" i +systemId android/expat/lib/xmlparse.c /^ const XML_Char *systemId;$/;" m struct:__anon11 file: +t1 android/freetype/src/autofit/afwarp.h /^ FT_Pos t1, t2;$/;" m struct:AF_WarperRec_ +t1_args_count android/freetype/src/psaux/t1decode.c /^ const FT_Int t1_args_count[op_max] =$/;" v file: +t1_blend_blue_scale android/freetype/include/freetype/t1tables.h /^#define t1_blend_blue_scale /;" d +t1_blend_blue_scale include/freetype/t1tables.h /^#define t1_blend_blue_scale /;" d +t1_blend_blue_shift android/freetype/include/freetype/t1tables.h /^#define t1_blend_blue_shift /;" d +t1_blend_blue_shift include/freetype/t1tables.h /^#define t1_blend_blue_shift /;" d +t1_blend_blue_values android/freetype/include/freetype/t1tables.h /^#define t1_blend_blue_values /;" d +t1_blend_blue_values include/freetype/t1tables.h /^#define t1_blend_blue_values /;" d +t1_blend_family_blues android/freetype/include/freetype/t1tables.h /^#define t1_blend_family_blues /;" d +t1_blend_family_blues include/freetype/t1tables.h /^#define t1_blend_family_blues /;" d +t1_blend_family_other_blues android/freetype/include/freetype/t1tables.h /^#define t1_blend_family_other_blues /;" d +t1_blend_family_other_blues include/freetype/t1tables.h /^#define t1_blend_family_other_blues /;" d +t1_blend_force_bold android/freetype/include/freetype/t1tables.h /^#define t1_blend_force_bold /;" d +t1_blend_force_bold include/freetype/t1tables.h /^#define t1_blend_force_bold /;" d +t1_blend_italic_angle android/freetype/include/freetype/t1tables.h /^#define t1_blend_italic_angle /;" d +t1_blend_italic_angle include/freetype/t1tables.h /^#define t1_blend_italic_angle /;" d +t1_blend_max android/freetype/include/freetype/t1tables.h /^#define t1_blend_max /;" d +t1_blend_max include/freetype/t1tables.h /^#define t1_blend_max /;" d +t1_blend_other_blues android/freetype/include/freetype/t1tables.h /^#define t1_blend_other_blues /;" d +t1_blend_other_blues include/freetype/t1tables.h /^#define t1_blend_other_blues /;" d +t1_blend_standard_height android/freetype/include/freetype/t1tables.h /^#define t1_blend_standard_height /;" d +t1_blend_standard_height include/freetype/t1tables.h /^#define t1_blend_standard_height /;" d +t1_blend_standard_widths android/freetype/include/freetype/t1tables.h /^#define t1_blend_standard_widths /;" d +t1_blend_standard_widths include/freetype/t1tables.h /^#define t1_blend_standard_widths /;" d +t1_blend_stem_snap_heights android/freetype/include/freetype/t1tables.h /^#define t1_blend_stem_snap_heights /;" d +t1_blend_stem_snap_heights include/freetype/t1tables.h /^#define t1_blend_stem_snap_heights /;" d +t1_blend_stem_snap_widths android/freetype/include/freetype/t1tables.h /^#define t1_blend_stem_snap_widths /;" d +t1_blend_stem_snap_widths include/freetype/t1tables.h /^#define t1_blend_stem_snap_widths /;" d +t1_blend_underline_position android/freetype/include/freetype/t1tables.h /^#define t1_blend_underline_position /;" d +t1_blend_underline_position include/freetype/t1tables.h /^#define t1_blend_underline_position /;" d +t1_blend_underline_thickness android/freetype/include/freetype/t1tables.h /^#define t1_blend_underline_thickness /;" d +t1_blend_underline_thickness include/freetype/t1tables.h /^#define t1_blend_underline_thickness /;" d +t1_builder_add_point android/freetype/src/psaux/psobjs.c /^ t1_builder_add_point( T1_Builder builder,$/;" f +t1_builder_close_contour android/freetype/src/psaux/psobjs.c /^ t1_builder_close_contour( T1_Builder builder )$/;" f +t1_builder_done android/freetype/src/psaux/psobjs.c /^ t1_builder_done( T1_Builder builder )$/;" f +t1_builder_funcs android/freetype/include/freetype/internal/psaux.h /^ const T1_Builder_FuncsRec* t1_builder_funcs;$/;" m struct:PSAux_ServiceRec_ +t1_builder_funcs android/freetype/src/psaux/psauxmod.c /^ const T1_Builder_FuncsRec t1_builder_funcs =$/;" v +t1_builder_funcs android/freetype/src/psaux/psobjs.h /^ const T1_Builder_FuncsRec t1_builder_funcs;$/;" v +t1_builder_funcs include/freetype/internal/psaux.h /^ const T1_Builder_FuncsRec* t1_builder_funcs;$/;" m struct:PSAux_ServiceRec_ +t1_builder_init android/freetype/src/psaux/psobjs.c /^ t1_builder_init( T1_Builder builder,$/;" f +t1_cmap_classes android/freetype/include/freetype/internal/psaux.h /^ T1_CMap_Classes t1_cmap_classes;$/;" m struct:PSAux_ServiceRec_ +t1_cmap_classes android/freetype/src/psaux/psauxmod.c /^ const T1_CMap_ClassesRec t1_cmap_classes =$/;" v +t1_cmap_classes include/freetype/internal/psaux.h /^ T1_CMap_Classes t1_cmap_classes;$/;" m struct:PSAux_ServiceRec_ +t1_cmap_custom_class_rec android/freetype/src/psaux/t1cmap.c /^ t1_cmap_custom_class_rec =$/;" v +t1_cmap_custom_class_rec android/freetype/src/psaux/t1cmap.h /^ t1_cmap_custom_class_rec;$/;" v +t1_cmap_custom_done android/freetype/src/psaux/t1cmap.c /^ t1_cmap_custom_done( T1_CMapCustom cmap )$/;" f +t1_cmap_expert_class_rec android/freetype/src/psaux/t1cmap.c /^ t1_cmap_expert_class_rec =$/;" v +t1_cmap_expert_class_rec android/freetype/src/psaux/t1cmap.h /^ t1_cmap_expert_class_rec;$/;" v +t1_cmap_standard_class_rec android/freetype/src/psaux/t1cmap.c /^ t1_cmap_standard_class_rec =$/;" v +t1_cmap_standard_class_rec android/freetype/src/psaux/t1cmap.h /^ t1_cmap_standard_class_rec;$/;" v +t1_cmap_std_done android/freetype/src/psaux/t1cmap.c /^ t1_cmap_std_done( T1_CMapStd cmap )$/;" f +t1_cmap_std_init android/freetype/src/psaux/t1cmap.c /^ t1_cmap_std_init( T1_CMapStd cmap,$/;" f file: +t1_cmap_unicode_class_rec android/freetype/src/psaux/t1cmap.c /^ t1_cmap_unicode_class_rec =$/;" v +t1_cmap_unicode_class_rec android/freetype/src/psaux/t1cmap.h /^ t1_cmap_unicode_class_rec;$/;" v +t1_cmap_unicode_done android/freetype/src/psaux/t1cmap.c /^ t1_cmap_unicode_done( PS_Unicodes unicodes )$/;" f +t1_decoder_done android/freetype/src/psaux/t1decode.c /^ t1_decoder_done( T1_Decoder decoder )$/;" f +t1_decoder_funcs android/freetype/include/freetype/internal/psaux.h /^ const T1_Decoder_FuncsRec* t1_decoder_funcs;$/;" m struct:PSAux_ServiceRec_ +t1_decoder_funcs android/freetype/src/psaux/psauxmod.c /^ const T1_Decoder_FuncsRec t1_decoder_funcs =$/;" v +t1_decoder_funcs android/freetype/src/psaux/t1decode.h /^ const T1_Decoder_FuncsRec t1_decoder_funcs;$/;" v +t1_decoder_funcs include/freetype/internal/psaux.h /^ const T1_Decoder_FuncsRec* t1_decoder_funcs;$/;" m struct:PSAux_ServiceRec_ +t1_decrypt android/freetype/include/freetype/internal/psaux.h /^ (*t1_decrypt)( FT_Byte* buffer,$/;" m struct:PSAux_ServiceRec_ +t1_decrypt android/freetype/src/psaux/psobjs.c /^ t1_decrypt( FT_Byte* buffer,$/;" f +t1_decrypt include/freetype/internal/psaux.h /^ (*t1_decrypt)( FT_Byte* buffer,$/;" m struct:PSAux_ServiceRec_ +t1_expert_encoding android/freetype/src/psnames/pstables.h /^ static const unsigned short t1_expert_encoding[256] =$/;" v +t1_funcs android/freetype/src/pshinter/pshmod.c /^ T1_Hints_FuncsRec t1_funcs;$/;" m struct:PS_Hinter_Module_Rec_ file: +t1_get_glyph_name android/freetype/src/psaux/t1cmap.c /^ t1_get_glyph_name( T1_Face face,$/;" f +t1_hints_funcs_init android/freetype/src/pshinter/pshrec.c /^ t1_hints_funcs_init( T1_Hints_FuncsRec* funcs )$/;" f +t1_hints_open android/freetype/src/pshinter/pshrec.c /^ t1_hints_open( T1_Hints hints )$/;" f file: +t1_hints_stem android/freetype/src/pshinter/pshrec.c /^ t1_hints_stem( T1_Hints hints,$/;" f file: +t1_lookup_glyph_by_stdcharcode android/freetype/src/psaux/t1decode.c /^ t1_lookup_glyph_by_stdcharcode( T1_Decoder decoder,$/;" f file: +t1_standard_encoding android/freetype/src/psnames/pstables.h /^ static const unsigned short t1_standard_encoding[256] =$/;" v +t1operator_seac android/freetype/src/psaux/t1decode.c /^ t1operator_seac( T1_Decoder decoder,$/;" f file: +t2 android/freetype/src/autofit/afwarp.h /^ FT_Pos t1, t2;$/;" m struct:AF_WarperRec_ +t2_funcs android/freetype/src/pshinter/pshmod.c /^ T2_Hints_FuncsRec t2_funcs;$/;" m struct:PS_Hinter_Module_Rec_ file: +t2_hints_funcs_init android/freetype/src/pshinter/pshrec.c /^ t2_hints_funcs_init( T2_Hints_FuncsRec* funcs )$/;" f +t2_hints_open android/freetype/src/pshinter/pshrec.c /^ t2_hints_open( T2_Hints hints )$/;" f file: +t2_hints_stems android/freetype/src/pshinter/pshrec.c /^ t2_hints_stems( T2_Hints hints,$/;" f file: +table android/freetype/include/freetype/internal/tttypes.h /^ FT_Byte* table;$/;" m struct:TT_BDFRec_ +table android/freetype/src/psaux/psobjs.h /^ ps_table_done( PS_Table table );$/;" v +table android/freetype/src/psaux/psobjs.h /^ ps_table_release( PS_Table table );$/;" v +table include/freetype/internal/tttypes.h /^ FT_Byte* table;$/;" m struct:TT_BDFRec_ +table_end android/freetype/include/freetype/internal/tttypes.h /^ FT_Byte* table_end;$/;" m struct:TT_BDFRec_ +table_end include/freetype/internal/tttypes.h /^ FT_Byte* table_end;$/;" m struct:TT_BDFRec_ +table_offset android/freetype/include/freetype/internal/tttypes.h /^ FT_ULong table_offset;$/;" m struct:TT_SBit_RangeRec_ +table_offset include/freetype/internal/tttypes.h /^ FT_ULong table_offset;$/;" m struct:TT_SBit_RangeRec_ +tag android/expat/lib/xmlparse.c /^typedef struct tag {$/;" s file: +tag android/freetype/include/freetype/freetype.h /^ FT_ULong tag;$/;" m struct:FT_Parameter_ +tag android/freetype/include/freetype/ftmm.h /^ FT_ULong tag;$/;" m struct:FT_Var_Axis_ +tag android/freetype/include/freetype/internal/tttypes.h /^ FT_ULong tag;$/;" m struct:TTC_HeaderRec_ +tag include/freetype/freetype.h /^ FT_ULong tag;$/;" m struct:FT_Parameter_ +tag include/freetype/ftmm.h /^ FT_ULong tag;$/;" m struct:FT_Var_Axis_ +tag include/freetype/internal/tttypes.h /^ FT_ULong tag;$/;" m struct:TTC_HeaderRec_ +tagLevel android/expat/lib/xmlparse.c /^#define tagLevel /;" d file: +tagStack android/expat/lib/xmlparse.c /^#define tagStack /;" d file: +tags android/freetype/include/freetype/ftimage.h /^ char* tags; \/* the points flags *\/$/;" m struct:FT_Outline_ +tags android/freetype/include/freetype/internal/tttypes.h /^ FT_Byte* tags; \/* current touch flags *\/$/;" m struct:TT_GlyphZoneRec_ +tags android/freetype/src/base/ftstroke.c /^ FT_Byte* tags;$/;" m struct:FT_StrokeBorderRec_ file: +tags include/freetype/ftimage.h /^ char* tags; \/* the points flags *\/$/;" m struct:FT_Outline_ +tags include/freetype/internal/tttypes.h /^ FT_Byte* tags; \/* current touch flags *\/$/;" m struct:TT_GlyphZoneRec_ +tail android/freetype/include/freetype/fttypes.h /^ FT_ListNode tail;$/;" m struct:FT_ListRec_ +tail include/freetype/fttypes.h /^ FT_ListNode tail;$/;" m struct:FT_ListRec_ +tan src/core/fixedopt.cpp /^fixed tan(fixed r)$/;" f namespace:fxmath +tan_table src/core/fixedopt.cpp /^static fixed_type tan_table[256] =$/;" m namespace:fxmath file: +tanf src/include/platform.h /^#define tanf(/;" d +target android/freetype/include/freetype/ftimage.h /^ const FT_Bitmap* target;$/;" m struct:FT_Raster_Params_ +target android/freetype/src/raster/ftraster.c /^ FT_Bitmap target; \/* description of target bit\/pixmap *\/$/;" m struct:TWorker_ file: +target android/freetype/src/smooth/ftgrays.c /^ FT_Bitmap target;$/;" m struct:TWorker_ file: +target include/freetype/ftimage.h /^ const FT_Bitmap* target;$/;" m struct:FT_Raster_Params_ +target_link_deps tools/gyp/build/lib/gyp/generator/android.py /^target_link_deps = {}$/;" v +target_link_deps tools/gyp/build/lib/gyp/generator/make.py /^target_link_deps = {}$/;" v +target_link_deps tools/gyp/pylib/gyp/generator/android.py /^target_link_deps = {}$/;" v +target_link_deps tools/gyp/pylib/gyp/generator/make.py /^target_link_deps = {}$/;" v +target_outputs tools/gyp/build/lib/gyp/generator/android.py /^target_outputs = {}$/;" v +target_outputs tools/gyp/build/lib/gyp/generator/make.py /^target_outputs = {}$/;" v +target_outputs tools/gyp/pylib/gyp/generator/android.py /^target_outputs = {}$/;" v +target_outputs tools/gyp/pylib/gyp/generator/make.py /^target_outputs = {}$/;" v +target_prefix tools/gyp/build/lib/gyp/SCons.py /^ target_prefix = '${LIBPREFIX}'$/;" v class:StaticLibraryTarget +target_prefix tools/gyp/build/lib/gyp/SCons.py /^ target_prefix = '${PROGPREFIX}'$/;" v class:ProgramTarget +target_prefix tools/gyp/build/lib/gyp/SCons.py /^ target_prefix = '${SHLIBPREFIX}'$/;" v class:LoadableModuleTarget +target_prefix tools/gyp/build/lib/gyp/SCons.py /^ target_prefix = '${SHLIBPREFIX}'$/;" v class:SharedLibraryTarget +target_prefix tools/gyp/build/lib/gyp/SCons.py /^ target_prefix = ''$/;" v class:TargetBase +target_prefix tools/gyp/pylib/gyp/SCons.py /^ target_prefix = '${LIBPREFIX}'$/;" v class:StaticLibraryTarget +target_prefix tools/gyp/pylib/gyp/SCons.py /^ target_prefix = '${PROGPREFIX}'$/;" v class:ProgramTarget +target_prefix tools/gyp/pylib/gyp/SCons.py /^ target_prefix = '${SHLIBPREFIX}'$/;" v class:LoadableModuleTarget +target_prefix tools/gyp/pylib/gyp/SCons.py /^ target_prefix = '${SHLIBPREFIX}'$/;" v class:SharedLibraryTarget +target_prefix tools/gyp/pylib/gyp/SCons.py /^ target_prefix = ''$/;" v class:TargetBase +target_suffix tools/gyp/build/lib/gyp/SCons.py /^ target_suffix = '${LIBSUFFIX}'$/;" v class:StaticLibraryTarget +target_suffix tools/gyp/build/lib/gyp/SCons.py /^ target_suffix = '${PROGSUFFIX}'$/;" v class:ProgramTarget +target_suffix tools/gyp/build/lib/gyp/SCons.py /^ target_suffix = '${SHLIBSUFFIX}'$/;" v class:LoadableModuleTarget +target_suffix tools/gyp/build/lib/gyp/SCons.py /^ target_suffix = '${SHLIBSUFFIX}'$/;" v class:SharedLibraryTarget +target_suffix tools/gyp/build/lib/gyp/SCons.py /^ target_suffix = ''$/;" v class:TargetBase +target_suffix tools/gyp/pylib/gyp/SCons.py /^ target_suffix = '${LIBSUFFIX}'$/;" v class:StaticLibraryTarget +target_suffix tools/gyp/pylib/gyp/SCons.py /^ target_suffix = '${PROGSUFFIX}'$/;" v class:ProgramTarget +target_suffix tools/gyp/pylib/gyp/SCons.py /^ target_suffix = '${SHLIBSUFFIX}'$/;" v class:LoadableModuleTarget +target_suffix tools/gyp/pylib/gyp/SCons.py /^ target_suffix = '${SHLIBSUFFIX}'$/;" v class:SharedLibraryTarget +target_suffix tools/gyp/pylib/gyp/SCons.py /^ target_suffix = ''$/;" v class:TargetBase +tbmp test/testWin.c /^HBITMAP tbmp;$/;" v +tearDown tools/gyp/build/lib/gyp/common_test.py /^ def tearDown(self):$/;" m class:TestGetFlavor +tearDown tools/gyp/pylib/gyp/common_test.py /^ def tearDown(self):$/;" m class:TestGetFlavor +temp2Pool android/expat/lib/xmlparse.c /^#define temp2Pool /;" d file: +tempPool android/expat/lib/xmlparse.c /^#define tempPool /;" d file: +tempfile tools/gyp/build/lib/gyp/common.py /^import tempfile$/;" i +tempfile tools/gyp/build/lib/gyp/generator/xcode.py /^import tempfile$/;" i +tempfile tools/gyp/pylib/gyp/common.py /^import tempfile$/;" i +tempfile tools/gyp/pylib/gyp/generator/xcode.py /^import tempfile$/;" i +testConvertToMSBuildSettings_actual tools/gyp/build/lib/gyp/MSVSSettings_test.py /^ def testConvertToMSBuildSettings_actual(self):$/;" m class:TestSequenceFunctions +testConvertToMSBuildSettings_actual tools/gyp/pylib/gyp/MSVSSettings_test.py /^ def testConvertToMSBuildSettings_actual(self):$/;" m class:TestSequenceFunctions +testConvertToMSBuildSettings_empty tools/gyp/build/lib/gyp/MSVSSettings_test.py /^ def testConvertToMSBuildSettings_empty(self):$/;" m class:TestSequenceFunctions +testConvertToMSBuildSettings_empty tools/gyp/pylib/gyp/MSVSSettings_test.py /^ def testConvertToMSBuildSettings_empty(self):$/;" m class:TestSequenceFunctions +testConvertToMSBuildSettings_full_synthetic tools/gyp/build/lib/gyp/MSVSSettings_test.py /^ def testConvertToMSBuildSettings_full_synthetic(self):$/;" m class:TestSequenceFunctions +testConvertToMSBuildSettings_full_synthetic tools/gyp/pylib/gyp/MSVSSettings_test.py /^ def testConvertToMSBuildSettings_full_synthetic(self):$/;" m class:TestSequenceFunctions +testConvertToMSBuildSettings_minimal tools/gyp/build/lib/gyp/MSVSSettings_test.py /^ def testConvertToMSBuildSettings_minimal(self):$/;" m class:TestSequenceFunctions +testConvertToMSBuildSettings_minimal tools/gyp/pylib/gyp/MSVSSettings_test.py /^ def testConvertToMSBuildSettings_minimal(self):$/;" m class:TestSequenceFunctions +testConvertToMSBuildSettings_warnings tools/gyp/build/lib/gyp/MSVSSettings_test.py /^ def testConvertToMSBuildSettings_warnings(self):$/;" m class:TestSequenceFunctions +testConvertToMSBuildSettings_warnings tools/gyp/pylib/gyp/MSVSSettings_test.py /^ def testConvertToMSBuildSettings_warnings(self):$/;" m class:TestSequenceFunctions +testValidateMSBuildSettings_settings tools/gyp/build/lib/gyp/MSVSSettings_test.py /^ def testValidateMSBuildSettings_settings(self):$/;" m class:TestSequenceFunctions +testValidateMSBuildSettings_settings tools/gyp/pylib/gyp/MSVSSettings_test.py /^ def testValidateMSBuildSettings_settings(self):$/;" m class:TestSequenceFunctions +testValidateMSVSSettings_settings tools/gyp/build/lib/gyp/MSVSSettings_test.py /^ def testValidateMSVSSettings_settings(self):$/;" m class:TestSequenceFunctions +testValidateMSVSSettings_settings tools/gyp/pylib/gyp/MSVSSettings_test.py /^ def testValidateMSVSSettings_settings(self):$/;" m class:TestSequenceFunctions +testValidateMSVSSettings_tool_names tools/gyp/build/lib/gyp/MSVSSettings_test.py /^ def testValidateMSVSSettings_tool_names(self):$/;" m class:TestSequenceFunctions +testValidateMSVSSettings_tool_names tools/gyp/pylib/gyp/MSVSSettings_test.py /^ def testValidateMSVSSettings_tool_names(self):$/;" m class:TestSequenceFunctions +test_BinaryNamesLinux tools/gyp/build/lib/gyp/generator/ninja_test.py /^ def test_BinaryNamesLinux(self):$/;" m class:TestPrefixesAndSuffixes +test_BinaryNamesLinux tools/gyp/pylib/gyp/generator/ninja_test.py /^ def test_BinaryNamesLinux(self):$/;" m class:TestPrefixesAndSuffixes +test_BinaryNamesWindows tools/gyp/build/lib/gyp/generator/ninja_test.py /^ def test_BinaryNamesWindows(self):$/;" m class:TestPrefixesAndSuffixes +test_BinaryNamesWindows tools/gyp/pylib/gyp/generator/ninja_test.py /^ def test_BinaryNamesWindows(self):$/;" m class:TestPrefixesAndSuffixes +test_Cycle tools/gyp/build/lib/gyp/common_test.py /^ def test_Cycle(self):$/;" m class:TestTopologicallySorted +test_Cycle tools/gyp/pylib/gyp/common_test.py /^ def test_Cycle(self):$/;" m class:TestTopologicallySorted +test_EasyXml_complex tools/gyp/build/lib/gyp/easy_xml_test.py /^ def test_EasyXml_complex(self):$/;" m class:TestSequenceFunctions +test_EasyXml_complex tools/gyp/pylib/gyp/easy_xml_test.py /^ def test_EasyXml_complex(self):$/;" m class:TestSequenceFunctions +test_EasyXml_escaping tools/gyp/build/lib/gyp/easy_xml_test.py /^ def test_EasyXml_escaping(self):$/;" m class:TestSequenceFunctions +test_EasyXml_escaping tools/gyp/pylib/gyp/easy_xml_test.py /^ def test_EasyXml_escaping(self):$/;" m class:TestSequenceFunctions +test_EasyXml_pretty tools/gyp/build/lib/gyp/easy_xml_test.py /^ def test_EasyXml_pretty(self):$/;" m class:TestSequenceFunctions +test_EasyXml_pretty tools/gyp/pylib/gyp/easy_xml_test.py /^ def test_EasyXml_pretty(self):$/;" m class:TestSequenceFunctions +test_EasyXml_simple tools/gyp/build/lib/gyp/easy_xml_test.py /^ def test_EasyXml_simple(self):$/;" m class:TestSequenceFunctions +test_EasyXml_simple tools/gyp/pylib/gyp/easy_xml_test.py /^ def test_EasyXml_simple(self):$/;" m class:TestSequenceFunctions +test_EasyXml_simple_with_attributes tools/gyp/build/lib/gyp/easy_xml_test.py /^ def test_EasyXml_simple_with_attributes(self):$/;" m class:TestSequenceFunctions +test_EasyXml_simple_with_attributes tools/gyp/pylib/gyp/easy_xml_test.py /^ def test_EasyXml_simple_with_attributes(self):$/;" m class:TestSequenceFunctions +test_GetLibraries tools/gyp/build/lib/gyp/generator/msvs_test.py /^ def test_GetLibraries(self):$/;" m class:TestSequenceFunctions +test_GetLibraries tools/gyp/pylib/gyp/generator/msvs_test.py /^ def test_GetLibraries(self):$/;" m class:TestSequenceFunctions +test_Valid tools/gyp/build/lib/gyp/common_test.py /^ def test_Valid(self):$/;" m class:TestTopologicallySorted +test_Valid tools/gyp/pylib/gyp/common_test.py /^ def test_Valid(self):$/;" m class:TestTopologicallySorted +test_cubic_extrema android/freetype/src/base/ftbbox.c /^ test_cubic_extrema( FT_Pos y1,$/;" f file: +test_param tools/gyp/build/lib/gyp/common_test.py /^ def test_param(self):$/;" m class:TestGetFlavor +test_param tools/gyp/pylib/gyp/common_test.py /^ def test_param(self):$/;" m class:TestGetFlavor +test_platform_default tools/gyp/build/lib/gyp/common_test.py /^ def test_platform_default(self):$/;" m class:TestGetFlavor +test_platform_default tools/gyp/pylib/gyp/common_test.py /^ def test_platform_default(self):$/;" m class:TestGetFlavor +text test/text_func.c /^const char* text = "Hello World! this is the first words picasso out put!";$/;" v +text-face-properties tools/gyp/tools/emacs/gyp-tests.el /^(defun text-face-properties (s)$/;" f +textLen android/expat/lib/xmlparse.c /^ int textLen; \/* length in XML_Chars *\/$/;" m struct:__anon11 file: +textPtr android/expat/lib/xmlparse.c /^ const XML_Char *textPtr;$/;" m struct:__anon11 file: +text_matrix src/picasso_objects.h /^ picasso::trans_affine text_matrix;$/;" m struct:_ps_context +text_mono src/include/graphic_base.h /^ text_mono,$/;" e enum:picasso::__anon212 +text_smooth src/include/graphic_base.h /^ text_smooth,$/;" e enum:picasso::__anon212 +text_stroke src/include/graphic_base.h /^ text_stroke,$/;" e enum:picasso::__anon212 +text_style src/include/graphic_base.h /^} text_style;$/;" t namespace:picasso typeref:enum:picasso::__anon212 +textwrap tools/gyp/build/lib/gyp/ninja_syntax.py /^import textwrap$/;" i +textwrap tools/gyp/pylib/gyp/ninja_syntax.py /^import textwrap$/;" i +th1 test/thr_posix.c /^static pthread_t th1, th2;$/;" v file: +th1 test/thr_win32.c /^static HANDLE th1, th2;$/;" v file: +th2 test/thr_posix.c /^static pthread_t th1, th2;$/;" v file: +th2 test/thr_win32.c /^static HANDLE th1, th2;$/;" v file: +thr_run1 test/thr_posix.c /^int thr_run1;$/;" v +thr_run1 test/thr_win32.c /^int thr_run1;$/;" v +thr_run2 test/thr_posix.c /^int thr_run2;$/;" v +thr_run2 test/thr_win32.c /^int thr_run2;$/;" v +thread_func1 test/thread_func.c /^void thread_func1(void* data)$/;" f +thread_func2 test/thread_func.c /^void thread_func2(void* data)$/;" f +threading tools/gyp/build/lib/gyp/input.py /^import threading$/;" i +threading tools/gyp/pylib/gyp/input.py /^import threading$/;" i +threshold android/freetype/src/truetype/ttinterp.h /^ FT_F26Dot6 threshold;$/;" m struct:TT_ExecContextRec_ +threshold src/gfx/gfx_gamma_function.h /^ scalar threshold(void) const { return m_threshold; }$/;" f class:gfx::gamma_threshold +threshold src/gfx/gfx_gamma_function.h /^ void threshold(scalar t) { m_threshold = t; }$/;" f class:gfx::gamma_threshold +tid demos/clock.c /^static unsigned tid;$/;" v file: +tid demos/flowers.c /^static unsigned tid;$/;" v file: +tid demos/lake.c /^static unsigned tid;$/;" v file: +tiger demos/tiger.c /^static PS* tiger = NULL;$/;" v file: +tigerCommandCount demos/tiger.c /^const int tigerCommandCount = 4142;$/;" v +tigerCommands demos/tiger.c /^const char tigerCommands[4142] = {$/;" v +tigerMaxX demos/tiger.c /^const float tigerMaxX = 612.0f;$/;" v +tigerMaxY demos/tiger.c /^const float tigerMaxY = 792.0f;$/;" v +tigerMinX demos/tiger.c /^const float tigerMinX = 0.0f;$/;" v +tigerMinY demos/tiger.c /^const float tigerMinY = 0.0f;$/;" v +tigerPointCount demos/tiger.c /^const int tigerPointCount = 16988;$/;" v +tigerPoints demos/tiger.c /^const float tigerPoints[16988] = {$/;" v +time tools/gyp/build/lib/gyp/input.py /^import time$/;" i +time tools/gyp/pylib/gyp/input.py /^import time$/;" i +time_func demos/platform_gtk2.c /^static gboolean time_func(gpointer data)$/;" f file: +time_func test/testGtk2.c /^gboolean time_func(gpointer data)$/;" f +timerEvent demos/platform_qt4.cpp /^inline void PTimer::timerEvent(QTimerEvent * timer)$/;" f class:PTimer +timerEvent test/testQt4.cpp /^inline void PWindow::timerEvent(QTimerEvent * timer)$/;" f class:PWindow +timer_action test/alpha_func.c /^void timer_action(ps_context* gc)$/;" f +timer_action test/bitblt_func.c /^void timer_action(ps_context* gc)$/;" f +timer_action test/blur_func.c /^void timer_action(ps_context* gc)$/;" f +timer_action test/clip_func.c /^void timer_action(ps_context* gc)$/;" f +timer_action test/composite_func.c /^void timer_action(ps_context* gc)$/;" f +timer_action test/gamma_func.c /^void timer_action(ps_context* gc)$/;" f +timer_action test/gcstate_func.c /^void timer_action(ps_context* gc)$/;" f +timer_action test/gradient_func.c /^void timer_action(ps_context* gc)$/;" f +timer_action test/mask_func.c /^void timer_action(ps_context* gc)$/;" f +timer_action test/part_func.c /^void timer_action(ps_context* gc)$/;" f +timer_action test/path_func.c /^void timer_action(ps_context* gc)$/;" f +timer_action test/pattern_func.c /^void timer_action(ps_context* gc)$/;" f +timer_action test/shadow_func.c /^void timer_action(ps_context* gc)$/;" f +timer_action test/text_func.c /^void timer_action(ps_context* gc)$/;" f +timer_action test/thread_func.c /^void timer_action(ps_context* gc)$/;" f +times demos/lake.c /^static long times = 0;$/;" v file: +toAscii android/expat/lib/xmltok.c /^toAscii(const ENCODING *enc, const char *ptr, const char *end)$/;" f file: +toCoord android/freetype/src/truetype/ttgxvar.h /^ FT_Fixed toCoord;$/;" m struct:GX_AVarCorrespondenceRec_ +to_bytes android/freetype/include/freetype/internal/psaux.h /^ (*to_bytes)( PS_Parser parser,$/;" m struct:PS_Parser_FuncsRec_ +to_bytes include/freetype/internal/psaux.h /^ (*to_bytes)( PS_Parser parser,$/;" m struct:PS_Parser_FuncsRec_ +to_coord_array android/freetype/include/freetype/internal/psaux.h /^ (*to_coord_array)( PS_Parser parser,$/;" m struct:PS_Parser_FuncsRec_ +to_coord_array include/freetype/internal/psaux.h /^ (*to_coord_array)( PS_Parser parser,$/;" m struct:PS_Parser_FuncsRec_ +to_fixed android/freetype/include/freetype/internal/psaux.h /^ (*to_fixed)( PS_Parser parser,$/;" m struct:PS_Parser_FuncsRec_ +to_fixed include/freetype/internal/psaux.h /^ (*to_fixed)( PS_Parser parser,$/;" m struct:PS_Parser_FuncsRec_ +to_fixed_array android/freetype/include/freetype/internal/psaux.h /^ (*to_fixed_array)( PS_Parser parser,$/;" m struct:PS_Parser_FuncsRec_ +to_fixed_array include/freetype/internal/psaux.h /^ (*to_fixed_array)( PS_Parser parser,$/;" m struct:PS_Parser_FuncsRec_ +to_int android/freetype/include/freetype/internal/psaux.h /^ (*to_int)( PS_Parser parser );$/;" m struct:PS_Parser_FuncsRec_ +to_int include/freetype/internal/psaux.h /^ (*to_int)( PS_Parser parser );$/;" m struct:PS_Parser_FuncsRec_ +to_token android/freetype/include/freetype/internal/psaux.h /^ (*to_token)( PS_Parser parser,$/;" m struct:PS_Parser_FuncsRec_ +to_token include/freetype/internal/psaux.h /^ (*to_token)( PS_Parser parser,$/;" m struct:PS_Parser_FuncsRec_ +to_token_array android/freetype/include/freetype/internal/psaux.h /^ (*to_token_array)( PS_Parser parser,$/;" m struct:PS_Parser_FuncsRec_ +to_token_array include/freetype/internal/psaux.h /^ (*to_token_array)( PS_Parser parser,$/;" m struct:PS_Parser_FuncsRec_ +top android/freetype/include/freetype/ftcache.h /^ FT_Char top;$/;" m struct:FTC_SBitRec_ +top android/freetype/include/freetype/ftglyph.h /^ FT_Int top;$/;" m struct:FT_BitmapGlyphRec_ +top android/freetype/include/freetype/internal/psaux.h /^ FT_Long* top;$/;" m struct:T1_DecoderRec_ +top android/freetype/src/cff/cffgload.h /^ FT_Fixed* top;$/;" m struct:CFF_Decoder_ +top android/freetype/src/cff/cffparse.h /^ FT_Byte** top;$/;" m struct:CFF_ParserRec_ +top android/freetype/src/raster/ftraster.c /^ PLong top; \/* Current cursor in buffer *\/$/;" m struct:TWorker_ file: +top android/freetype/src/truetype/ttinterp.h /^ FT_Long top; \/* top of exec. stack *\/$/;" m struct:TT_ExecContextRec_ +top include/freetype/ftcache.h /^ FT_Char top;$/;" m struct:FTC_SBitRec_ +top include/freetype/ftglyph.h /^ FT_Int top;$/;" m struct:FT_BitmapGlyphRec_ +top include/freetype/internal/psaux.h /^ FT_Long* top;$/;" m struct:T1_DecoderRec_ +top src/picasso_gpc.cpp /^ vertex_s top; \/* Edge upper (x, y) coordinate *\/$/;" m struct:picasso::edge_shape file: +top_bearing android/freetype/include/freetype/internal/tttypes.h /^ FT_Int top_bearing;$/;" m struct:TT_LoaderRec_ +top_bearing include/freetype/internal/tttypes.h /^ FT_Int top_bearing;$/;" m struct:TT_LoaderRec_ +top_dict_index android/freetype/src/cff/cfftypes.h /^ CFF_IndexRec top_dict_index;$/;" m struct:CFF_FontRec_ +top_font android/freetype/src/cff/cfftypes.h /^ CFF_SubFontRec top_font;$/;" m struct:CFF_FontRec_ +topfont android/freetype/src/cff/cffobjs.h /^ PSH_Globals topfont;$/;" m struct:CFF_InternalRec_ +total_byte_size src/core/graphic_path.cpp /^ unsigned int total_byte_size(void) const$/;" f class:picasso::graphic_path_impl +total_byte_size src/core/graphic_path.cpp /^unsigned int graphic_path::total_byte_size(void) const$/;" f class:picasso::graphic_path +total_cells src/gfx/gfx_rasterizer_cell.h /^ unsigned int total_cells(void) const $/;" f class:gfx::gfx_rasterizer_cells_aa +total_vertices src/core/graphic_path.cpp /^ unsigned int total_vertices(void) const$/;" f class:picasso::graphic_path_impl +total_vertices src/core/graphic_path.cpp /^unsigned int graphic_path::total_vertices(void) const$/;" f class:picasso::graphic_path +traceG android/freetype/src/raster/ftraster.c /^ Long traceG; \/* current offset in target pixmap *\/$/;" m struct:TWorker_ file: +traceIncr android/freetype/src/raster/ftraster.c /^ Short traceIncr; \/* sweep's increment in target bitmap *\/$/;" m struct:TWorker_ file: +traceOfs android/freetype/src/raster/ftraster.c /^ Long traceOfs; \/* current offset in target bitmap *\/$/;" m struct:TWorker_ file: +trace_count android/freetype/include/freetype/internal/ftdebug.h /^ trace_count$/;" e enum:FT_Trace_ +trace_count include/freetype/internal/ftdebug.h /^ trace_count$/;" e enum:FT_Trace_ +traceback tools/gyp/build/lib/gyp/__init__.py /^import traceback$/;" i +traceback tools/gyp/pylib/gyp/__init__.py /^import traceback$/;" i +trans_affine src/picasso_matrix.cpp /^trans_affine::trans_affine()$/;" f class:picasso::trans_affine +trans_affine src/picasso_matrix.cpp /^trans_affine::trans_affine(const trans_affine& o)$/;" f class:picasso::trans_affine +trans_affine src/picasso_matrix.cpp /^trans_affine::trans_affine(scalar sx, scalar shy, scalar shx, scalar sy, scalar tx, scalar ty)$/;" f class:picasso::trans_affine +trans_affine src/picasso_matrix.h /^class trans_affine$/;" c namespace:picasso +trans_delta android/freetype/src/autofit/afloader.h /^ FT_Vector trans_delta;$/;" m struct:AF_LoaderRec_ +trans_matrix android/freetype/src/autofit/afloader.h /^ FT_Matrix trans_matrix;$/;" m struct:AF_LoaderRec_ +transform android/freetype/include/freetype/internal/ftgloadr.h /^ FT_Matrix transform;$/;" m struct:FT_SubGlyphRec_ +transform android/freetype/src/truetype/ttobjs.h /^ TT_Transform transform; \/* transformation matrix *\/$/;" m struct:TT_SubglyphRec_ +transform demos/subwaymap.c /^ float transform[9];$/;" m struct:__anon46 file: +transform include/freetype/internal/ftgloadr.h /^ FT_Matrix transform;$/;" m struct:FT_SubGlyphRec_ +transform src/core/graphic_path.cpp /^void graphic_path::transform(const trans_affine& trans, unsigned int id)$/;" f class:picasso::graphic_path +transform src/gfx/gfx_gradient_adapter.h /^ virtual void transform(const abstract_trans_affine* mtx)$/;" f class:gfx::gfx_gradient_adapter +transform src/gfx/gfx_trans_affine.h /^ virtual void transform(scalar* x, scalar* y) const$/;" f class:gfx::gfx_trans_affine +transform src/picasso_gradient.cpp /^void gradient_adapter::transform(const trans_affine& mtx)$/;" f class:picasso::gradient_adapter +transform src/picasso_matrix.cpp /^void trans_affine::transform(scalar* x, scalar* y) const$/;" f class:picasso::trans_affine +transform_2x2 src/gfx/gfx_trans_affine.h /^ virtual void transform_2x2(scalar* x, scalar* y) const$/;" f class:gfx::gfx_trans_affine +transform_2x2 src/picasso_matrix.cpp /^void trans_affine::transform_2x2(scalar* x, scalar* y) const$/;" f class:picasso::trans_affine +transform_all_paths src/core/graphic_path.cpp /^void graphic_path::transform_all_paths(const trans_affine& trans)$/;" f class:picasso::graphic_path +transform_delta android/freetype/include/freetype/internal/ftobjs.h /^ FT_Vector transform_delta;$/;" m struct:FT_Face_InternalRec_ +transform_delta include/freetype/internal/ftobjs.h /^ FT_Vector transform_delta;$/;" m struct:FT_Face_InternalRec_ +transform_flags android/freetype/include/freetype/internal/ftobjs.h /^ FT_Int transform_flags;$/;" m struct:FT_Face_InternalRec_ +transform_flags include/freetype/internal/ftobjs.h /^ FT_Int transform_flags;$/;" m struct:FT_Face_InternalRec_ +transform_glyph android/freetype/include/freetype/ftrender.h /^ FT_Renderer_TransformFunc transform_glyph;$/;" m struct:FT_Renderer_Class_ +transform_glyph include/freetype/ftrender.h /^ FT_Renderer_TransformFunc transform_glyph;$/;" m struct:FT_Renderer_Class_ +transform_matrix android/freetype/include/freetype/internal/ftobjs.h /^ FT_Matrix transform_matrix;$/;" m struct:FT_Face_InternalRec_ +transform_matrix include/freetype/internal/ftobjs.h /^ FT_Matrix transform_matrix;$/;" m struct:FT_Face_InternalRec_ +transformation src/gfx/gfx_raster_adapter.cpp /^gfx_trans_affine gfx_raster_adapter::transformation(void) const$/;" f class:gfx::gfx_raster_adapter +transformed android/freetype/src/autofit/afloader.h /^ FT_Bool transformed;$/;" m struct:AF_LoaderRec_ +transformer src/include/convert.h /^ void transformer(const trans_affine& t) { m_trans = t.impl(); }$/;" f class:picasso::conv_transform +translate src/core/graphic_path.cpp /^void graphic_path::translate(scalar dx, scalar dy, unsigned int id)$/;" f class:picasso::graphic_path +translate src/gfx/gfx_trans_affine.h /^ virtual void translate(scalar x, scalar y)$/;" f class:gfx::gfx_trans_affine +translate src/picasso_font.h /^ void translate(scalar x, scalar y)$/;" f class:picasso::mono_storage +translate src/picasso_matrix.cpp /^const trans_affine& trans_affine::translate(scalar x, scalar y)$/;" f class:picasso::trans_affine +translate_all_paths src/core/graphic_path.cpp /^void graphic_path::translate_all_paths(scalar dx, scalar dy)$/;" f class:picasso::graphic_path +translate_array android/freetype/src/truetype/ttgload.c /^ translate_array( FT_UInt n,$/;" f file: +translation src/gfx/gfx_trans_affine.h /^ virtual void translation(scalar* dx, scalar* dy) const$/;" f class:gfx::gfx_trans_affine +translation src/picasso_matrix.cpp /^void trans_affine::translation(scalar* dx, scalar* dy) const$/;" f class:picasso::trans_affine +transparent src/gfx/gfx_painter.h /^ bool transparent;$/;" m struct:gfx::gfx_painter::__anon64 +transparent src/gfx/gfx_painter.h /^ bool transparent;$/;" m struct:gfx::gfx_painter::__anon65 +truetype include/freetype/internal/ftpic.h /^ void* truetype; $/;" m struct:FT_PIC_Container_ +tt_cmap0_class_rec android/freetype/src/sfnt/ttcmap.c /^ const TT_CMap_ClassRec tt_cmap0_class_rec =$/;" v +tt_cmap10_class_rec android/freetype/src/sfnt/ttcmap.c /^ const TT_CMap_ClassRec tt_cmap10_class_rec =$/;" v +tt_cmap12_char_map_binary android/freetype/src/sfnt/ttcmap.c /^ tt_cmap12_char_map_binary( TT_CMap cmap,$/;" f file: +tt_cmap12_class_rec android/freetype/src/sfnt/ttcmap.c /^ const TT_CMap_ClassRec tt_cmap12_class_rec =$/;" v +tt_cmap12_next android/freetype/src/sfnt/ttcmap.c /^ tt_cmap12_next( TT_CMap12 cmap )$/;" f file: +tt_cmap14_char_map_def_binary android/freetype/src/sfnt/ttcmap.c /^ tt_cmap14_char_map_def_binary( FT_Byte *base,$/;" f file: +tt_cmap14_char_map_nondef_binary android/freetype/src/sfnt/ttcmap.c /^ tt_cmap14_char_map_nondef_binary( FT_Byte *base,$/;" f file: +tt_cmap14_char_variants android/freetype/src/sfnt/ttcmap.c /^ tt_cmap14_char_variants( TT_CMap cmap,$/;" f +tt_cmap14_class_rec android/freetype/src/sfnt/ttcmap.c /^ const TT_CMap_ClassRec tt_cmap14_class_rec =$/;" v +tt_cmap14_def_char_count android/freetype/src/sfnt/ttcmap.c /^ tt_cmap14_def_char_count( FT_Byte *p )$/;" f file: +tt_cmap14_done android/freetype/src/sfnt/ttcmap.c /^ tt_cmap14_done( TT_CMap14 cmap )$/;" f +tt_cmap14_ensure android/freetype/src/sfnt/ttcmap.c /^ tt_cmap14_ensure( TT_CMap14 cmap,$/;" f file: +tt_cmap14_find_variant android/freetype/src/sfnt/ttcmap.c /^ tt_cmap14_find_variant( FT_Byte *base,$/;" f file: +tt_cmap14_get_def_chars android/freetype/src/sfnt/ttcmap.c /^ tt_cmap14_get_def_chars( TT_CMap cmap,$/;" f file: +tt_cmap14_get_nondef_chars android/freetype/src/sfnt/ttcmap.c /^ tt_cmap14_get_nondef_chars( TT_CMap cmap,$/;" f file: +tt_cmap14_variant_chars android/freetype/src/sfnt/ttcmap.c /^ tt_cmap14_variant_chars( TT_CMap cmap,$/;" f +tt_cmap14_variants android/freetype/src/sfnt/ttcmap.c /^ tt_cmap14_variants( TT_CMap cmap,$/;" f +tt_cmap2_class_rec android/freetype/src/sfnt/ttcmap.c /^ const TT_CMap_ClassRec tt_cmap2_class_rec =$/;" v +tt_cmap2_get_subheader android/freetype/src/sfnt/ttcmap.c /^ tt_cmap2_get_subheader( FT_Byte* table,$/;" f file: +tt_cmap4_char_map_binary android/freetype/src/sfnt/ttcmap.c /^ tt_cmap4_char_map_binary( TT_CMap cmap,$/;" f file: +tt_cmap4_char_map_linear android/freetype/src/sfnt/ttcmap.c /^ tt_cmap4_char_map_linear( TT_CMap cmap,$/;" f file: +tt_cmap4_class_rec android/freetype/src/sfnt/ttcmap.c /^ const TT_CMap_ClassRec tt_cmap4_class_rec =$/;" v +tt_cmap4_next android/freetype/src/sfnt/ttcmap.c /^ tt_cmap4_next( TT_CMap4 cmap )$/;" f file: +tt_cmap4_set_range android/freetype/src/sfnt/ttcmap.c /^ tt_cmap4_set_range( TT_CMap4 cmap,$/;" f file: +tt_cmap6_class_rec android/freetype/src/sfnt/ttcmap.c /^ const TT_CMap_ClassRec tt_cmap6_class_rec =$/;" v +tt_cmap8_class_rec android/freetype/src/sfnt/ttcmap.c /^ const TT_CMap_ClassRec tt_cmap8_class_rec =$/;" v +tt_cmap_classes android/freetype/src/sfnt/ttcmap.c /^ static const TT_CMap_Class tt_cmap_classes[] =$/;" v file: +tt_coderange_cvt android/freetype/src/truetype/ttobjs.h /^ tt_coderange_cvt,$/;" e enum:TT_CodeRange_Tag_ +tt_coderange_font android/freetype/src/truetype/ttobjs.h /^ tt_coderange_font,$/;" e enum:TT_CodeRange_Tag_ +tt_coderange_glyph android/freetype/src/truetype/ttobjs.h /^ tt_coderange_glyph$/;" e enum:TT_CodeRange_Tag_ +tt_coderange_none android/freetype/src/truetype/ttobjs.h /^ tt_coderange_none = 0,$/;" e enum:TT_CodeRange_Tag_ +tt_default_graphics_state android/freetype/src/truetype/ttinterp.c /^ const TT_GraphicsState tt_default_graphics_state =$/;" v +tt_done_blend android/freetype/src/truetype/ttgxvar.c /^ tt_done_blend( FT_Memory memory,$/;" f +tt_driver_class android/freetype/src/truetype/ttdriver.c /^ const FT_Driver_ClassRec tt_driver_class =$/;" v +tt_driver_done android/freetype/src/truetype/ttobjs.c /^ tt_driver_done( FT_Module ttdriver ) \/* TT_Driver *\/$/;" f +tt_face_done android/freetype/src/truetype/ttobjs.c /^ tt_face_done( FT_Face ttface ) \/* TT_Face *\/$/;" f +tt_face_done_kern android/freetype/src/sfnt/ttkern.c /^ tt_face_done_kern( TT_Face face )$/;" f +tt_face_done_loca android/freetype/src/truetype/ttpload.c /^ tt_face_done_loca( TT_Face face )$/;" f +tt_face_free_bdf_props android/freetype/src/sfnt/ttbdf.c /^ tt_face_free_bdf_props( TT_Face face )$/;" f +tt_face_free_eblc android/freetype/src/sfnt/ttsbit.c /^ tt_face_free_eblc( TT_Face face )$/;" f +tt_face_free_eblc android/freetype/src/sfnt/ttsbit0.c /^ tt_face_free_eblc( TT_Face face )$/;" f +tt_face_free_hdmx android/freetype/src/truetype/ttpload.c /^ tt_face_free_hdmx( TT_Face face )$/;" f +tt_face_free_hdmx_stub android/freetype/src/sfnt/sfdriver.c /^ tt_face_free_hdmx_stub( TT_Face face )$/;" f +tt_face_free_name android/freetype/src/sfnt/ttload.c /^ tt_face_free_name( TT_Face face )$/;" f +tt_face_free_ps_names android/freetype/src/sfnt/ttpost.c /^ tt_face_free_ps_names( TT_Face face )$/;" f +tt_face_free_sbit_stub android/freetype/src/sfnt/sfdriver.c /^ tt_face_free_sbit_stub( TT_Face face )$/;" f +tt_face_get_device_metrics android/freetype/src/truetype/ttpload.c /^ tt_face_get_device_metrics( TT_Face face,$/;" f +tt_face_get_name android/freetype/src/sfnt/sfobjs.c /^ tt_face_get_name( TT_Face face,$/;" f file: +tt_face_load_bdf_props android/freetype/src/sfnt/ttbdf.c /^ tt_face_load_bdf_props( TT_Face face,$/;" f file: +tt_face_load_generic_header android/freetype/src/sfnt/ttload.c /^ tt_face_load_generic_header( TT_Face face,$/;" f file: +tt_get_advances android/freetype/src/truetype/ttdriver.c /^ tt_get_advances( FT_Face ttface,$/;" f file: +tt_get_kerning android/freetype/src/truetype/ttdriver.c /^ tt_get_kerning( FT_Face ttface, \/* TT_Face *\/$/;" f file: +tt_glyphzone_done android/freetype/src/truetype/ttobjs.c /^ tt_glyphzone_done( TT_GlyphZone zone )$/;" f +tt_loader_init android/freetype/src/truetype/ttgload.c /^ tt_loader_init( TT_Loader loader,$/;" f file: +tt_metrics android/freetype/src/truetype/ttinterp.h /^ TT_Size_Metrics tt_metrics; \/* size metrics *\/$/;" m struct:TT_ExecContextRec_ +tt_name_entry_ascii_from_other android/freetype/src/sfnt/sfobjs.c /^ tt_name_entry_ascii_from_other( TT_NameEntry entry,$/;" f file: +tt_name_entry_ascii_from_utf16 android/freetype/src/sfnt/sfobjs.c /^ tt_name_entry_ascii_from_utf16( TT_NameEntry entry,$/;" f file: +tt_post_default_names android/freetype/src/sfnt/ttpost.c /^ static const FT_String* tt_post_default_names[258] =$/;" v file: +tt_prepare_zone android/freetype/src/truetype/ttgload.c /^ tt_prepare_zone( TT_GlyphZone zone,$/;" f file: +tt_sbit_decoder_alloc_bitmap android/freetype/src/sfnt/ttsbit0.c /^ tt_sbit_decoder_alloc_bitmap( TT_SBitDecoder decoder )$/;" f file: +tt_sbit_decoder_done android/freetype/src/sfnt/ttsbit0.c /^ tt_sbit_decoder_done( TT_SBitDecoder decoder )$/;" f file: +tt_sbit_decoder_init android/freetype/src/sfnt/ttsbit0.c /^ tt_sbit_decoder_init( TT_SBitDecoder decoder,$/;" f file: +tt_sbit_decoder_load_bit_aligned android/freetype/src/sfnt/ttsbit0.c /^ tt_sbit_decoder_load_bit_aligned( TT_SBitDecoder decoder,$/;" f file: +tt_sbit_decoder_load_bitmap android/freetype/src/sfnt/ttsbit0.c /^ tt_sbit_decoder_load_bitmap( TT_SBitDecoder decoder,$/;" f file: +tt_sbit_decoder_load_byte_aligned android/freetype/src/sfnt/ttsbit0.c /^ tt_sbit_decoder_load_byte_aligned( TT_SBitDecoder decoder,$/;" f file: +tt_sbit_decoder_load_compound android/freetype/src/sfnt/ttsbit0.c /^ tt_sbit_decoder_load_compound( TT_SBitDecoder decoder,$/;" f file: +tt_sbit_decoder_load_image android/freetype/src/sfnt/ttsbit0.c /^ tt_sbit_decoder_load_image( TT_SBitDecoder decoder,$/;" f file: +tt_sbit_decoder_load_metrics android/freetype/src/sfnt/ttsbit0.c /^ tt_sbit_decoder_load_metrics( TT_SBitDecoder decoder,$/;" f file: +tt_sbit_line_metrics_fields android/freetype/src/sfnt/ttsbit0.c /^ static const FT_Frame_Field tt_sbit_line_metrics_fields[] =$/;" v file: +tt_service_get_cmap_info android/freetype/src/sfnt/sfdriver.c /^ static const FT_Service_TTCMapsRec tt_service_get_cmap_info =$/;" v file: +tt_service_gx_multi_masters android/freetype/src/truetype/ttdriver.c /^ static const FT_Service_MultiMastersRec tt_service_gx_multi_masters =$/;" v file: +tt_service_truetype_engine android/freetype/src/truetype/ttdriver.c /^ static const FT_Service_TrueTypeEngineRec tt_service_truetype_engine =$/;" v file: +tt_service_truetype_glyf android/freetype/src/truetype/ttdriver.c /^ static const FT_Service_TTGlyfRec tt_service_truetype_glyf =$/;" v file: +tt_services android/freetype/src/truetype/ttdriver.c /^ static const FT_ServiceDescRec tt_services[] =$/;" v file: +tt_size_done android/freetype/src/truetype/ttobjs.c /^ tt_size_done( FT_Size ttsize ) \/* TT_Size *\/$/;" f +tt_size_done_bytecode android/freetype/src/truetype/ttobjs.c /^ tt_size_done_bytecode( FT_Size ftsize )$/;" f file: +tt_size_init_bytecode android/freetype/src/truetype/ttobjs.c /^ tt_size_init_bytecode( FT_Size ftsize )$/;" f file: +tt_size_request android/freetype/src/truetype/ttdriver.c /^ tt_size_request( FT_Size size,$/;" f file: +tt_size_select android/freetype/src/truetype/ttdriver.c /^ tt_size_select( FT_Size size,$/;" f file: +tt_strike_end_fields android/freetype/src/sfnt/ttsbit0.c /^ static const FT_Frame_Field tt_strike_end_fields[] =$/;" v file: +tt_strike_start_fields android/freetype/src/sfnt/ttsbit0.c /^ static const FT_Frame_Field tt_strike_start_fields[] =$/;" v file: +ttc_header android/freetype/include/freetype/internal/tttypes.h /^ TTC_HeaderRec ttc_header;$/;" m struct:TT_FaceRec_ +ttc_header include/freetype/internal/tttypes.h /^ TTC_HeaderRec ttc_header;$/;" m struct:TT_FaceRec_ +ttdriver android/freetype/src/truetype/ttobjs.h /^ tt_driver_done( FT_Module ttdriver ); \/* TT_Driver *\/$/;" v +ttdriver android/freetype/src/truetype/ttobjs.h /^ tt_driver_init( FT_Module ttdriver ); \/* TT_Driver *\/$/;" v +ttface android/freetype/src/truetype/ttobjs.h /^ tt_face_done( FT_Face ttface ); \/* TT_Face *\/$/;" v +ttmetrics android/freetype/src/truetype/ttobjs.h /^ TT_Size_Metrics ttmetrics;$/;" m struct:TT_SizeRec_ +ttsize android/freetype/src/truetype/ttobjs.h /^ tt_size_done( FT_Size ttsize ); \/* TT_Size *\/$/;" v +ttsize android/freetype/src/truetype/ttobjs.h /^ tt_size_init( FT_Size ttsize ); \/* TT_Size *\/$/;" v +tuplecoords android/freetype/src/truetype/ttgxvar.h /^ FT_Fixed* tuplecoords; \/* tuplecoords[tuplecount][num_axis] *\/$/;" m struct:GX_BlendRec_ +tuplecount android/freetype/src/truetype/ttgxvar.h /^ FT_UInt tuplecount; \/* shared tuples in `gvar' *\/$/;" m struct:GX_BlendRec_ +twilight android/freetype/src/truetype/ttinterp.h /^ twilight;$/;" m struct:TT_ExecContextRec_ +twilight android/freetype/src/truetype/ttobjs.h /^ TT_GlyphZoneRec twilight; \/* The instance's twilight zone *\/$/;" m struct:TT_SizeRec_ +tx demos/subwaymap.c /^static float tx = 0;$/;" v file: +tx demos/tiger.c /^static float tx = 0;$/;" v file: +tx src/gfx/gfx_trans_affine.h /^ virtual scalar tx(void) const { return m_tx; }$/;" f class:gfx::gfx_trans_affine +tx src/gfx/gfx_trans_affine.h /^ virtual void tx(scalar v) { m_tx = v; }$/;" f class:gfx::gfx_trans_affine +tx src/picasso_matrix.cpp /^scalar trans_affine::tx(void) const$/;" f class:picasso::trans_affine +tx src/picasso_matrix.cpp /^void trans_affine::tx(scalar v)$/;" f class:picasso::trans_affine +ty demos/subwaymap.c /^static float ty = 0;$/;" v file: +ty demos/tiger.c /^static float ty = 0;$/;" v file: +ty src/gfx/gfx_trans_affine.h /^ virtual scalar ty(void) const { return m_ty; }$/;" f class:gfx::gfx_trans_affine +ty src/gfx/gfx_trans_affine.h /^ virtual void ty(scalar v) { m_ty = v; }$/;" f class:gfx::gfx_trans_affine +ty src/picasso_matrix.cpp /^scalar trans_affine::ty(void) const$/;" f class:picasso::trans_affine +ty src/picasso_matrix.cpp /^void trans_affine::ty(scalar v)$/;" f class:picasso::trans_affine +type android/expat/lib/expat.h /^ enum XML_Content_Type type;$/;" m struct:XML_cp typeref:enum:XML_cp::XML_Content_Type +type android/expat/lib/xmlparse.c /^ enum XML_Content_Type type;$/;" m struct:__anon12 typeref:enum:__anon12::XML_Content_Type file: +type android/expat/lib/xmltok.c /^ unsigned char type[256];$/;" m struct:normal_encoding file: +type android/freetype/include/freetype/freetype.h /^ FT_Size_Request_Type type;$/;" m struct:FT_Size_RequestRec_ +type android/freetype/include/freetype/ftbdf.h /^ BDF_PropertyType type;$/;" m struct:BDF_PropertyRec_ +type android/freetype/include/freetype/internal/psaux.h /^ T1_FieldType type; \/* type of field *\/$/;" m struct:T1_FieldRec_ +type android/freetype/include/freetype/internal/psaux.h /^ T1_TokenType type; \/* type of token *\/$/;" m struct:T1_TokenRec_ +type android/freetype/src/psaux/afmparse.h /^ enum AFM_ValueType_ type;$/;" m struct:AFM_ValueRec_ typeref:enum:AFM_ValueRec_::AFM_ValueType_ +type include/expat.h /^ enum XML_Content_Type type;$/;" m struct:XML_cp typeref:enum:XML_cp::XML_Content_Type +type include/freetype/freetype.h /^ FT_Size_Request_Type type;$/;" m struct:FT_Size_RequestRec_ +type include/freetype/ftbdf.h /^ BDF_PropertyType type;$/;" m struct:BDF_PropertyRec_ +type include/freetype/internal/psaux.h /^ T1_FieldType type; \/* type of field *\/$/;" m struct:T1_FieldRec_ +type include/freetype/internal/psaux.h /^ T1_TokenType type; \/* type of token *\/$/;" m struct:T1_TokenRec_ +type src/gfx/gfx_mask_layer.h /^ int type(void) const { return m_type; }$/;" f class:gfx::gfx_mask_layer +type src/include/graphic_base.h /^ glyph_type type;$/;" m struct:picasso::_glyph +type src/picasso_gpc.cpp /^ int type; \/* Clip \/ subject edge flag *\/$/;" m struct:picasso::edge_shape file: +type src/picasso_objects.h /^ unsigned int type;$/;" m struct:picasso::clip_area +type1 android/freetype/include/freetype/internal/t1types.h /^ T1_FontRec type1;$/;" m struct:T1_FaceRec_ +type1 include/freetype/internal/t1types.h /^ T1_FontRec type1;$/;" m struct:T1_FaceRec_ +type_canvas src/gfx/gfx_painter.h /^ type_canvas = 4,$/;" e enum:gfx::gfx_painter::__anon63 +type_gradient src/gfx/gfx_painter.h /^ type_gradient = 3,$/;" e enum:gfx::gfx_painter::__anon63 +type_image src/gfx/gfx_painter.h /^ type_image = 1,$/;" e enum:gfx::gfx_painter::__anon63 +type_pattern src/gfx/gfx_painter.h /^ type_pattern = 2,$/;" e enum:gfx::gfx_painter::__anon63 +type_solid src/gfx/gfx_painter.h /^ type_solid = 0,$/;" e enum:gfx::gfx_painter::__anon63 +u android/freetype/include/freetype/ftbdf.h /^ } u;$/;" m struct:BDF_PropertyRec_ typeref:union:BDF_PropertyRec_::__anon24 +u android/freetype/src/autofit/afhints.h /^ FT_Pos u, v; \/* current (x,y) or (y,x) depending on context *\/$/;" m struct:AF_PointRec_ +u android/freetype/src/psaux/afmparse.h /^ } u;$/;" m struct:AFM_ValueRec_ typeref:union:AFM_ValueRec_::__anon31 +u include/freetype/ftbdf.h /^ } u;$/;" m struct:BDF_PropertyRec_ typeref:union:BDF_PropertyRec_::__anon53 +uid_base android/freetype/include/freetype/t1tables.h /^ FT_ULong uid_base;$/;" m struct:CID_FaceInfoRec_ +uid_base include/freetype/t1tables.h /^ FT_ULong uid_base;$/;" m struct:CID_FaceInfoRec_ +uint16_t src/include/common.h /^typedef unsigned short uint16_t;$/;" t +uint32_t src/include/common.h /^typedef unsigned int uint32_t;$/;" t +uint8_t src/include/common.h /^typedef unsigned char uint8_t;$/;" t +ulCodePageRange1 android/freetype/include/freetype/tttables.h /^ FT_ULong ulCodePageRange1; \/* Bits 0-31 *\/$/;" m struct:TT_OS2_ +ulCodePageRange1 include/freetype/tttables.h /^ FT_ULong ulCodePageRange1; \/* Bits 0-31 *\/$/;" m struct:TT_OS2_ +ulCodePageRange2 android/freetype/include/freetype/tttables.h /^ FT_ULong ulCodePageRange2; \/* Bits 32-63 *\/$/;" m struct:TT_OS2_ +ulCodePageRange2 include/freetype/tttables.h /^ FT_ULong ulCodePageRange2; \/* Bits 32-63 *\/$/;" m struct:TT_OS2_ +ulUnicodeRange1 android/freetype/include/freetype/tttables.h /^ FT_ULong ulUnicodeRange1; \/* Bits 0-31 *\/$/;" m struct:TT_OS2_ +ulUnicodeRange1 include/freetype/tttables.h /^ FT_ULong ulUnicodeRange1; \/* Bits 0-31 *\/$/;" m struct:TT_OS2_ +ulUnicodeRange2 android/freetype/include/freetype/tttables.h /^ FT_ULong ulUnicodeRange2; \/* Bits 32-63 *\/$/;" m struct:TT_OS2_ +ulUnicodeRange2 include/freetype/tttables.h /^ FT_ULong ulUnicodeRange2; \/* Bits 32-63 *\/$/;" m struct:TT_OS2_ +ulUnicodeRange3 android/freetype/include/freetype/tttables.h /^ FT_ULong ulUnicodeRange3; \/* Bits 64-95 *\/$/;" m struct:TT_OS2_ +ulUnicodeRange3 include/freetype/tttables.h /^ FT_ULong ulUnicodeRange3; \/* Bits 64-95 *\/$/;" m struct:TT_OS2_ +ulUnicodeRange4 android/freetype/include/freetype/tttables.h /^ FT_ULong ulUnicodeRange4; \/* Bits 96-127 *\/$/;" m struct:TT_OS2_ +ulUnicodeRange4 include/freetype/tttables.h /^ FT_ULong ulUnicodeRange4; \/* Bits 96-127 *\/$/;" m struct:TT_OS2_ +underline android/freetype/include/freetype/ftwinfnt.h /^ FT_Byte underline;$/;" m struct:FT_WinFNT_HeaderRec_ +underline include/freetype/ftwinfnt.h /^ FT_Byte underline;$/;" m struct:FT_WinFNT_HeaderRec_ +underlinePosition android/freetype/include/freetype/tttables.h /^ FT_Short underlinePosition;$/;" m struct:TT_Postscript_ +underlinePosition include/freetype/tttables.h /^ FT_Short underlinePosition;$/;" m struct:TT_Postscript_ +underlineThickness android/freetype/include/freetype/tttables.h /^ FT_Short underlineThickness;$/;" m struct:TT_Postscript_ +underlineThickness include/freetype/tttables.h /^ FT_Short underlineThickness;$/;" m struct:TT_Postscript_ +underline_position android/freetype/include/freetype/freetype.h /^ FT_Short underline_position;$/;" m struct:FT_FaceRec_ +underline_position android/freetype/include/freetype/t1tables.h /^ FT_Short underline_position;$/;" m struct:PS_FontInfoRec_ +underline_position android/freetype/src/cff/cfftypes.h /^ FT_Fixed underline_position;$/;" m struct:CFF_FontRecDictRec_ +underline_position include/freetype/freetype.h /^ FT_Short underline_position;$/;" m struct:FT_FaceRec_ +underline_position include/freetype/t1tables.h /^ FT_Short underline_position;$/;" m struct:PS_FontInfoRec_ +underline_thickness android/freetype/include/freetype/freetype.h /^ FT_Short underline_thickness;$/;" m struct:FT_FaceRec_ +underline_thickness android/freetype/include/freetype/t1tables.h /^ FT_UShort underline_thickness;$/;" m struct:PS_FontInfoRec_ +underline_thickness android/freetype/src/cff/cfftypes.h /^ FT_Fixed underline_thickness;$/;" m struct:CFF_FontRecDictRec_ +underline_thickness include/freetype/freetype.h /^ FT_Short underline_thickness;$/;" m struct:FT_FaceRec_ +underline_thickness include/freetype/t1tables.h /^ FT_UShort underline_thickness;$/;" m struct:PS_FontInfoRec_ +unicode android/freetype/include/freetype/internal/psaux.h /^ FT_CMap_Class unicode;$/;" m struct:T1_CMap_ClassesRec_ +unicode android/freetype/include/freetype/internal/services/svpscmap.h /^ FT_UInt32 unicode; \/* bit 31 set: is glyph variant *\/$/;" m struct:PS_UniMap_ +unicode include/freetype/internal/psaux.h /^ FT_CMap_Class unicode;$/;" m struct:T1_CMap_ClassesRec_ +unicode include/freetype/internal/services/svpscmap.h /^ FT_UInt32 unicode; \/* bit 31 set: is glyph variant *\/$/;" m struct:PS_UniMap_ +unicode_byte_type android/expat/lib/xmltok.c /^unicode_byte_type(char hi, char lo)$/;" f file: +unicode_map android/freetype/include/freetype/internal/t1types.h /^ PS_Unicodes unicode_map;$/;" m struct:T1_FaceRec_ +unicode_map include/freetype/internal/t1types.h /^ PS_Unicodes unicode_map;$/;" m struct:T1_FaceRec_ +unique_id android/freetype/include/freetype/t1tables.h /^ FT_Int unique_id;$/;" m struct:PS_PrivateRec_ +unique_id android/freetype/src/cff/cfftypes.h /^ FT_ULong unique_id;$/;" m struct:CFF_FontRecDictRec_ +unique_id include/freetype/t1tables.h /^ FT_Int unique_id;$/;" m struct:PS_PrivateRec_ +uniquer tools/gyp/build/lib/gyp/common.py /^def uniquer(seq, idfun=None):$/;" f +uniquer tools/gyp/pylib/gyp/common.py /^def uniquer(seq, idfun=None):$/;" f +unitsEM include/picasso.h /^ unsigned int unitsEM;$/;" m struct:_ps_font_info +units_per_EM android/freetype/include/freetype/freetype.h /^ FT_UShort units_per_EM;$/;" m struct:FT_FaceRec_ +units_per_EM include/freetype/freetype.h /^ FT_UShort units_per_EM;$/;" m struct:FT_FaceRec_ +units_per_em android/freetype/src/autofit/aflatin.h /^ FT_UInt units_per_em;$/;" m struct:AF_LatinMetricsRec_ +units_per_em android/freetype/src/cff/cfftypes.h /^ FT_ULong units_per_em; \/* temporarily used as scaling value also *\/$/;" m struct:CFF_FontRecDictRec_ +units_per_em src/picasso_font.h /^ unsigned int units_per_em(void) const { return m_impl->units_per_em(); }$/;" f class:picasso::font_adapter +unittest tools/gyp/build/lib/gyp/MSVSSettings_test.py /^import unittest$/;" i +unittest tools/gyp/build/lib/gyp/common_test.py /^import unittest$/;" i +unittest tools/gyp/build/lib/gyp/easy_xml_test.py /^import unittest$/;" i +unittest tools/gyp/build/lib/gyp/generator/msvs_test.py /^import unittest$/;" i +unittest tools/gyp/build/lib/gyp/generator/ninja_test.py /^import unittest$/;" i +unittest tools/gyp/pylib/gyp/MSVSSettings_test.py /^import unittest$/;" i +unittest tools/gyp/pylib/gyp/common_test.py /^import unittest$/;" i +unittest tools/gyp/pylib/gyp/easy_xml_test.py /^import unittest$/;" i +unittest tools/gyp/pylib/gyp/generator/msvs_test.py /^import unittest$/;" i +unittest tools/gyp/pylib/gyp/generator/ninja_test.py /^import unittest$/;" i +unknownEncodingData android/expat/lib/xmlparse.c /^#define unknownEncodingData /;" d file: +unknownEncodingHandler android/expat/lib/xmlparse.c /^#define unknownEncodingHandler /;" d file: +unknownEncodingHandlerData android/expat/lib/xmlparse.c /^#define unknownEncodingHandlerData /;" d file: +unknownEncodingMem android/expat/lib/xmlparse.c /^#define unknownEncodingMem /;" d file: +unknownEncodingRelease android/expat/lib/xmlparse.c /^#define unknownEncodingRelease /;" d file: +unknown_encoding android/expat/lib/xmltok.c /^struct unknown_encoding {$/;" s file: +unknown_isInvalid android/expat/lib/xmltok.c /^unknown_isInvalid(const ENCODING *enc, const char *p)$/;" f file: +unknown_isName android/expat/lib/xmltok.c /^unknown_isName(const ENCODING *enc, const char *p)$/;" f file: +unknown_isNmstrt android/expat/lib/xmltok.c /^unknown_isNmstrt(const ENCODING *enc, const char *p)$/;" f file: +unknown_toUtf16 android/expat/lib/xmltok.c /^unknown_toUtf16(const ENCODING *enc,$/;" f file: +unknown_toUtf8 android/expat/lib/xmltok.c /^unknown_toUtf8(const ENCODING *enc,$/;" f file: +unlikely src/include/platform.h /^#define unlikely(/;" d +unparsedEntityDeclHandler android/expat/lib/xmlparse.c /^#define unparsedEntityDeclHandler /;" d file: +unpatented_hinting android/freetype/include/freetype/internal/tttypes.h /^ FT_Bool unpatented_hinting;$/;" m struct:TT_FaceRec_ +unpatented_hinting include/freetype/internal/tttypes.h /^ FT_Bool unpatented_hinting;$/;" m struct:TT_FaceRec_ +updatePosition android/expat/lib/xmltok.h /^ void (PTRCALL *updatePosition)(const ENCODING *,$/;" m struct:encoding +updatePosition android/expat/lib/xmltok_impl.c /^PREFIX(updatePosition)(const ENCODING *enc,$/;" f file: +update_values src/gfx/gfx_gradient_adapter.cpp /^ void update_values(void)$/;" f class:gfx::gradient_radial_focus file: +upscale src/gfx/gfx_rasterizer_scanline.h /^ static int upscale(scalar v) { return iround(v * poly_subpixel_scale); }$/;" f class:gfx::scanline_generator +uri android/expat/lib/xmlparse.c /^ XML_Char *uri;$/;" m struct:binding file: +uriAlloc android/expat/lib/xmlparse.c /^ int uriAlloc;$/;" m struct:binding file: +uriLen android/expat/lib/xmlparse.c /^ int uriLen;$/;" m struct:__anon10 file: +uriLen android/expat/lib/xmlparse.c /^ int uriLen;$/;" m struct:binding file: +uriName android/expat/lib/xmlparse.c /^ const XML_Char *uriName;$/;" m struct:__anon15 file: +url tools/gyp/setup.py /^ url='http:\/\/code.google.com\/p\/gyp',$/;" v +uround src/include/graphic_base.h /^inline unsigned int uround(scalar v)$/;" f namespace:picasso +usBreakChar android/freetype/include/freetype/tttables.h /^ FT_UShort usBreakChar;$/;" m struct:TT_OS2_ +usBreakChar include/freetype/tttables.h /^ FT_UShort usBreakChar;$/;" m struct:TT_OS2_ +usDefaultChar android/freetype/include/freetype/tttables.h /^ FT_UShort usDefaultChar;$/;" m struct:TT_OS2_ +usDefaultChar include/freetype/tttables.h /^ FT_UShort usDefaultChar;$/;" m struct:TT_OS2_ +usFirstCharIndex android/freetype/include/freetype/tttables.h /^ FT_UShort usFirstCharIndex;$/;" m struct:TT_OS2_ +usFirstCharIndex include/freetype/tttables.h /^ FT_UShort usFirstCharIndex;$/;" m struct:TT_OS2_ +usLastCharIndex android/freetype/include/freetype/tttables.h /^ FT_UShort usLastCharIndex;$/;" m struct:TT_OS2_ +usLastCharIndex include/freetype/tttables.h /^ FT_UShort usLastCharIndex;$/;" m struct:TT_OS2_ +usMaxContext android/freetype/include/freetype/tttables.h /^ FT_UShort usMaxContext;$/;" m struct:TT_OS2_ +usMaxContext include/freetype/tttables.h /^ FT_UShort usMaxContext;$/;" m struct:TT_OS2_ +usWeightClass android/freetype/include/freetype/tttables.h /^ FT_UShort usWeightClass;$/;" m struct:TT_OS2_ +usWeightClass include/freetype/tttables.h /^ FT_UShort usWeightClass;$/;" m struct:TT_OS2_ +usWidthClass android/freetype/include/freetype/tttables.h /^ FT_UShort usWidthClass;$/;" m struct:TT_OS2_ +usWidthClass include/freetype/tttables.h /^ FT_UShort usWidthClass;$/;" m struct:TT_OS2_ +usWinAscent android/freetype/include/freetype/tttables.h /^ FT_UShort usWinAscent;$/;" m struct:TT_OS2_ +usWinAscent include/freetype/tttables.h /^ FT_UShort usWinAscent;$/;" m struct:TT_OS2_ +usWinDescent android/freetype/include/freetype/tttables.h /^ FT_UShort usWinDescent;$/;" m struct:TT_OS2_ +usWinDescent include/freetype/tttables.h /^ FT_UShort usWinDescent;$/;" m struct:TT_OS2_ +useForeignDTD android/expat/lib/xmlparse.c /^#define useForeignDTD /;" d file: +use_extra android/freetype/include/freetype/internal/ftgloadr.h /^ FT_Bool use_extra;$/;" m struct:FT_GlyphLoaderRec_ +use_extra include/freetype/internal/ftgloadr.h /^ FT_Bool use_extra;$/;" m struct:FT_GlyphLoaderRec_ +use_mask src/gfx/gfx_pixfmt_wrapper.h /^ bool use_mask;$/;" m class:gfx::gfx_pixfmt_wrapper +use_shadow src/picasso_objects.h /^ bool use_shadow;$/;" m struct:picasso::shadow_state +used android/expat/lib/xmlparse.c /^ size_t used;$/;" m struct:__anon8 file: +used demos/flowers.c /^ int used;$/;" m struct:__anon37 file: +user android/freetype/include/freetype/ftimage.h /^ void* user;$/;" m struct:FT_Raster_Params_ +user android/freetype/include/freetype/ftsystem.h /^ void* user;$/;" m struct:FT_MemoryRec_ +user include/freetype/ftimage.h /^ void* user;$/;" m struct:FT_Raster_Params_ +user include/freetype/ftsystem.h /^ void* user;$/;" m struct:FT_MemoryRec_ +userData android/expat/lib/xmlparse.c /^#define userData /;" d file: +userData android/expat/lib/xmltok.c /^ void *userData;$/;" m struct:unknown_encoding file: +user_data android/freetype/include/freetype/internal/psaux.h /^ void* user_data;$/;" m struct:AFM_ParserRec_ +user_data include/freetype/internal/psaux.h /^ void* user_data;$/;" m struct:AFM_ParserRec_ +utf16 android/expat/lib/xmltok.c /^ unsigned short utf16[256];$/;" m struct:unknown_encoding file: +utf16Convert android/expat/lib/xmltok.h /^ void (PTRCALL *utf16Convert)(const ENCODING *enc,$/;" m struct:encoding +utf8 android/expat/lib/xmltok.c /^ char utf8[256][4];$/;" m struct:unknown_encoding file: +utf8Convert android/expat/lib/xmltok.h /^ void (PTRCALL *utf8Convert)(const ENCODING *enc,$/;" m struct:encoding +utf8_encoding android/expat/lib/xmltok.c /^static const struct normal_encoding utf8_encoding = {$/;" v typeref:struct:normal_encoding file: +utf8_encoding_ns android/expat/lib/xmltok.c /^static const struct normal_encoding utf8_encoding_ns = {$/;" v typeref:struct:normal_encoding file: +utf8_isInvalid2 android/expat/lib/xmltok.c /^utf8_isInvalid2(const ENCODING *enc, const char *p)$/;" f file: +utf8_isInvalid3 android/expat/lib/xmltok.c /^utf8_isInvalid3(const ENCODING *enc, const char *p)$/;" f file: +utf8_isInvalid4 android/expat/lib/xmltok.c /^utf8_isInvalid4(const ENCODING *enc, const char *p)$/;" f file: +utf8_isName2 android/expat/lib/xmltok.c /^utf8_isName2(const ENCODING *enc, const char *p)$/;" f file: +utf8_isName3 android/expat/lib/xmltok.c /^utf8_isName3(const ENCODING *enc, const char *p)$/;" f file: +utf8_isName4 android/expat/lib/xmltok.c /^#define utf8_isName4 /;" d file: +utf8_isNmstrt2 android/expat/lib/xmltok.c /^utf8_isNmstrt2(const ENCODING *enc, const char *p)$/;" f file: +utf8_isNmstrt3 android/expat/lib/xmltok.c /^utf8_isNmstrt3(const ENCODING *enc, const char *p)$/;" f file: +utf8_isNmstrt4 android/expat/lib/xmltok.c /^#define utf8_isNmstrt4 /;" d file: +utf8_toUtf16 android/expat/lib/xmltok.c /^utf8_toUtf16(const ENCODING *enc,$/;" f file: +utf8_toUtf8 android/expat/lib/xmltok.c /^utf8_toUtf8(const ENCODING *enc,$/;" f file: +v android/expat/lib/xmlparse.c /^ NAMED **v;$/;" m struct:__anon8 file: +v android/freetype/src/autofit/afhints.h /^ FT_Pos u, v; \/* current (x,y) or (y,x) depending on context *\/$/;" m struct:AF_PointRec_ +v src/picasso_gpc.cpp /^ vertex_node *v[2]; \/* Left and right vertex list ptrs *\/$/;" m struct:picasso::p_shape file: +v_shape src/picasso_gpc.cpp /^typedef struct v_shape { \/* Internal vertex list datatype *\/$/;" s namespace:picasso file: +vadvance android/freetype/include/freetype/internal/tttypes.h /^ FT_Int vadvance;$/;" m struct:TT_LoaderRec_ +vadvance include/freetype/internal/tttypes.h /^ FT_Int vadvance;$/;" m struct:TT_LoaderRec_ +valid android/freetype/include/freetype/internal/ftvalid.h /^ ft_validator_run( FT_Validator valid );$/;" v +valid android/freetype/src/base/ftstroke.c /^ FT_Bool valid;$/;" m struct:FT_StrokerRec_ file: +valid android/freetype/src/base/ftstroke.c /^ FT_Bool valid;$/;" m struct:FT_StrokeBorderRec_ file: +valid android/freetype/src/sfnt/ttcmap.c /^ FT_Bool valid;$/;" m struct:TT_CMap12Rec_ file: +valid android/freetype/src/truetype/ttobjs.h /^ FT_Bool valid;$/;" m struct:TT_Size_Metrics_ +valid include/freetype/internal/ftvalid.h /^ ft_validator_run( FT_Validator valid );$/;" v +validate android/freetype/src/sfnt/ttcmap.h /^ TT_CMap_ValidateFunc validate;$/;" m struct:TT_CMap_ClassRec_ +validator android/freetype/src/sfnt/ttcmap.h /^ FT_ValidatorRec validator;$/;" m struct:TT_ValidatorRec_ +value android/expat/lib/expat.h /^ long int value;$/;" m struct:__anon6 +value android/expat/lib/xmlparse.c /^ const XML_Char *value;$/;" m struct:__anon14 file: +value android/freetype/include/freetype/ftsystem.h /^ long value;$/;" m union:FT_StreamDesc_ +value android/freetype/include/freetype/internal/ftobjs.h /^ ft_highpow2( FT_UInt32 value );$/;" v +value android/freetype/include/freetype/internal/ftstream.h /^ FT_Byte value;$/;" m struct:FT_Frame_Field_ +value android/freetype/include/freetype/internal/tttypes.h /^ FT_FWord value; \/* kerning value *\/$/;" m struct:TT_Kern0_PairRec_ +value include/expat.h /^ long int value;$/;" m struct:__anon52 +value include/freetype/ftsystem.h /^ long value;$/;" m union:FT_StreamDesc_ +value include/freetype/internal/ftobjs.h /^ ft_highpow2( FT_UInt32 value );$/;" v +value include/freetype/internal/ftstream.h /^ FT_Byte value;$/;" m struct:FT_Frame_Field_ +value include/freetype/internal/tttypes.h /^ FT_FWord value; \/* kerning value *\/$/;" m struct:TT_Kern0_PairRec_ +value src/gfx/gfx_gamma_function.h /^ scalar value(void) const { return m_mul; }$/;" f class:gfx::gamma_multiply +value src/gfx/gfx_gamma_function.h /^ void value(scalar v) { m_mul = v; }$/;" f class:gfx::gamma_multiply +valueEnd android/expat/lib/expat.h /^ XML_Index valueEnd; \/* Offset after the attribute value's last byte. *\/$/;" m struct:__anon3 +valueEnd android/expat/lib/xmltok.h /^ const char *valueEnd;$/;" m struct:__anon21 +valueEnd include/expat.h /^ XML_Index valueEnd; \/* Offset after the attribute value's last byte. *\/$/;" m struct:__anon49 +valuePtr android/expat/lib/xmltok.h /^ const char *valuePtr;$/;" m struct:__anon21 +valueStart android/expat/lib/expat.h /^ XML_Index valueStart; \/* Offset to beginning of the attribute value. *\/$/;" m struct:__anon3 +valueStart include/expat.h /^ XML_Index valueStart; \/* Offset to beginning of the attribute value. *\/$/;" m struct:__anon49 +value_at src/include/data_vector.h /^ T value_at(unsigned i) const { return m_array[i]; }$/;" f class:picasso::pod_array +value_type src/gfx/gfx_blur.h /^ typedef uint32_t value_type;$/;" t struct:gfx::stack_blur_calc_rgba +value_type src/gfx/gfx_image_accessors.h /^ typedef typename PixFmt::value_type value_type;$/;" t class:gfx::image_accessor +value_type src/gfx/gfx_image_accessors.h /^ typedef typename PixFmt::value_type value_type;$/;" t class:gfx::image_accessor_wrap +value_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename ColorType::value_type value_type;$/;" t struct:gfx::blend_op_table_rgb +value_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::value_type value_type;$/;" t class:gfx::blend_op_adaptor_rgb +value_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::value_type value_type;$/;" t class:gfx::pixfmt_blender_rgb +value_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_clear +value_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_color_burn +value_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_color_dodge +value_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_contrast +value_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_darken +value_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_difference +value_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_dst +value_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_dst_atop +value_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_dst_in +value_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_dst_out +value_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_dst_over +value_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_exclusion +value_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_hard_light +value_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_invert +value_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_invert_rgb +value_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_lighten +value_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_minus +value_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_multiply +value_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_overlay +value_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_plus +value_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_screen +value_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_soft_light +value_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_src +value_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_src_atop +value_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_src_in +value_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_src_out +value_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_src_over +value_type src/gfx/gfx_pixfmt_rgb.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_xor +value_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef color_type::value_type value_type;$/;" t class:gfx::blender_rgb555 +value_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef color_type::value_type value_type;$/;" t class:gfx::blender_rgb565 +value_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename ColorType::value_type value_type;$/;" t struct:gfx::blend_op_table_rgb_16 +value_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::value_type value_type;$/;" t class:gfx::pixfmt_blender_rgb16 +value_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_16_clear +value_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_16_color_burn +value_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_16_color_dodge +value_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_16_contrast +value_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_16_darken +value_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_16_difference +value_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_16_dst_atop +value_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_16_dst_in +value_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_16_dst_out +value_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_16_dst_over +value_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_16_exclusion +value_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_16_hard_light +value_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_16_invert +value_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_16_invert_rgb +value_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_16_lighten +value_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_16_minus +value_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_16_multiply +value_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_16_overlay +value_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_16_plus +value_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_16_screen +value_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_16_soft_light +value_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_16_src +value_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_16_src_atop +value_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_16_src_in +value_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_16_src_out +value_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_16_src_over +value_type src/gfx/gfx_pixfmt_rgb16.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgb_16_xor +value_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename ColorType::value_type value_type;$/;" t struct:gfx::blend_op_table_rgba +value_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::value_type value_type;$/;" t class:gfx::blend_op_adaptor_rgba +value_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::value_type value_type;$/;" t class:gfx::pixfmt_blender_rgba +value_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgba_clear +value_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgba_color_burn +value_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgba_color_dodge +value_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgba_contrast +value_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgba_darken +value_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgba_difference +value_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgba_dst +value_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgba_dst_atop +value_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgba_dst_in +value_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgba_dst_out +value_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgba_dst_over +value_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgba_exclusion +value_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgba_hard_light +value_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgba_invert +value_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgba_invert_rgb +value_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgba_lighten +value_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgba_minus +value_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgba_multiply +value_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgba_overlay +value_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgba_plus +value_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgba_screen +value_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgba_soft_light +value_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgba_src +value_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgba_src_atop +value_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgba_src_in +value_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgba_src_out +value_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgba_src_over +value_type src/gfx/gfx_pixfmt_rgba.h /^ typedef typename color_type::value_type value_type;$/;" t struct:gfx::composite_op_rgba_xor +value_type src/gfx/gfx_pixfmt_wrapper.h /^ typedef typename pixfmt_type::value_type value_type;$/;" t class:gfx::gfx_pixfmt_wrapper +value_type src/gfx/gfx_pixfmt_wrapper.h /^ typedef typename pixfmt_type::value_type value_type;$/;" t class:gfx::pattern_wrapper +value_type src/gfx/gfx_scanline_storage.h /^ typedef T value_type;$/;" t class:gfx::gfx_scanline_cell_storage +value_type src/gfx/gfx_span_image_filters.h /^ typedef typename color_type::value_type value_type;$/;" t class:gfx::gfx_span_image_filter_rgb +value_type src/gfx/gfx_span_image_filters.h /^ typedef typename color_type::value_type value_type;$/;" t class:gfx::gfx_span_image_filter_rgb16 +value_type src/gfx/gfx_span_image_filters.h /^ typedef typename color_type::value_type value_type;$/;" t class:gfx::gfx_span_image_filter_rgb16_nn +value_type src/gfx/gfx_span_image_filters.h /^ typedef typename color_type::value_type value_type;$/;" t class:gfx::gfx_span_image_filter_rgb_nn +value_type src/gfx/gfx_span_image_filters.h /^ typedef typename color_type::value_type value_type;$/;" t class:gfx::gfx_span_image_filter_rgba +value_type src/gfx/gfx_span_image_filters.h /^ typedef typename color_type::value_type value_type;$/;" t class:gfx::gfx_span_image_filter_rgba_nb +value_type src/gfx/gfx_span_image_filters.h /^ typedef typename color_type::value_type value_type;$/;" t class:gfx::gfx_span_image_filter_rgba_nn +value_type src/gfx/gfx_span_image_filters.h /^ typedef typename color_type::value_type value_type;$/;" t class:gfx::gfx_span_image_filter_rgba_nn_nb +value_type src/include/color_type.h /^ typedef byte value_type;$/;" t struct:picasso::rgba8 +value_type src/include/data_vector.h /^ typedef T value_type;$/;" t class:picasso::pod_bvector +variable tools/gyp/build/lib/gyp/ninja_syntax.py /^ def variable(self, key, value, indent=0):$/;" m class:Writer +variable tools/gyp/pylib/gyp/ninja_syntax.py /^ def variable(self, key, value, indent=0):$/;" m class:Writer +variant_list android/freetype/include/freetype/internal/ftobjs.h /^ FT_CMap_VariantListFunc variant_list;$/;" m struct:FT_CMap_ClassRec_ +variant_list include/freetype/internal/ftobjs.h /^ FT_CMap_VariantListFunc variant_list;$/;" m struct:FT_CMap_ClassRec_ +variantchar_list android/freetype/include/freetype/internal/ftobjs.h /^ FT_CMap_VariantCharListFunc variantchar_list;$/;" m struct:FT_CMap_ClassRec_ +variantchar_list include/freetype/internal/ftobjs.h /^ FT_CMap_VariantCharListFunc variantchar_list;$/;" m struct:FT_CMap_ClassRec_ +vec android/freetype/include/freetype/fttrigon.h /^ FT_Vector_Length( FT_Vector* vec );$/;" v +vec include/freetype/fttrigon.h /^ FT_Vector_Length( FT_Vector* vec );$/;" v +verbose tools/gyp/gyptest.py /^ verbose = True$/;" v class:CommandRunner +version android/expat/lib/xmlparse.c /^ unsigned long version;$/;" m struct:__anon15 file: +version android/freetype/include/freetype/ftwinfnt.h /^ FT_UShort version;$/;" m struct:FT_WinFNT_HeaderRec_ +version android/freetype/include/freetype/internal/tttypes.h /^ FT_Fixed version;$/;" m struct:TTC_HeaderRec_ +version android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort version;$/;" m struct:TT_Gasp_ +version android/freetype/include/freetype/internal/tttypes.h /^ FT_UShort version;$/;" m struct:TT_HdmxRec_ +version android/freetype/include/freetype/t1tables.h /^ FT_String* version;$/;" m struct:PS_FontInfoRec_ +version android/freetype/include/freetype/tttables.h /^ FT_Fixed version;$/;" m struct:TT_MaxProfile_ +version android/freetype/include/freetype/tttables.h /^ FT_UShort version; \/* 0x0001 - more or 0xFFFF *\/$/;" m struct:TT_OS2_ +version android/freetype/src/cff/cfftypes.h /^ FT_UInt version;$/;" m struct:CFF_FontRecDictRec_ +version android/freetype/src/truetype/ttgxvar.c /^ FT_Long version;$/;" m struct:GX_FVar_Head_ file: +version android/freetype/src/truetype/ttgxvar.c /^ FT_Long version;$/;" m struct:GX_GVar_Head_ file: +version include/freetype/ftwinfnt.h /^ FT_UShort version;$/;" m struct:FT_WinFNT_HeaderRec_ +version include/freetype/internal/tttypes.h /^ FT_Fixed version;$/;" m struct:TTC_HeaderRec_ +version include/freetype/internal/tttypes.h /^ FT_UShort version;$/;" m struct:TT_Gasp_ +version include/freetype/internal/tttypes.h /^ FT_UShort version;$/;" m struct:TT_HdmxRec_ +version include/freetype/t1tables.h /^ FT_String* version;$/;" m struct:PS_FontInfoRec_ +version include/freetype/tttables.h /^ FT_Fixed version;$/;" m struct:TT_MaxProfile_ +version include/freetype/tttables.h /^ FT_UShort version; \/* 0x0001 - more or 0xFFFF *\/$/;" m struct:TT_OS2_ +version tools/gyp/setup.py /^ version='0.1',$/;" v +versionEndPtr android/expat/lib/xmltok.c /^ const char **versionEndPtr,$/;" v file: +versionPtr android/expat/lib/xmltok.c /^ const char **versionPtr,$/;" v file: +version_major android/freetype/include/freetype/internal/ftobjs.h /^ FT_Int version_major;$/;" m struct:FT_LibraryRec_ +version_major android/freetype/src/cff/cfftypes.h /^ FT_Byte version_major;$/;" m struct:CFF_FontRec_ +version_major include/freetype/internal/ftobjs.h /^ FT_Int version_major;$/;" m struct:FT_LibraryRec_ +version_minor android/freetype/include/freetype/internal/ftobjs.h /^ FT_Int version_minor;$/;" m struct:FT_LibraryRec_ +version_minor android/freetype/src/cff/cfftypes.h /^ FT_Byte version_minor;$/;" m struct:CFF_FontRec_ +version_minor include/freetype/internal/ftobjs.h /^ FT_Int version_minor;$/;" m struct:FT_LibraryRec_ +version_patch android/freetype/include/freetype/internal/ftobjs.h /^ FT_Int version_patch;$/;" m struct:FT_LibraryRec_ +version_patch include/freetype/internal/ftobjs.h /^ FT_Int version_patch;$/;" m struct:FT_LibraryRec_ +vert android/freetype/include/freetype/internal/tttypes.h /^ TT_SBit_LineMetricsRec vert;$/;" m struct:TT_SBit_ScaleRec_ +vert android/freetype/include/freetype/internal/tttypes.h /^ TT_SBit_LineMetricsRec vert;$/;" m struct:TT_SBit_StrikeRec_ +vert include/freetype/internal/tttypes.h /^ TT_SBit_LineMetricsRec vert;$/;" m struct:TT_SBit_ScaleRec_ +vert include/freetype/internal/tttypes.h /^ TT_SBit_LineMetricsRec vert;$/;" m struct:TT_SBit_StrikeRec_ +vertAdvance android/freetype/include/freetype/freetype.h /^ FT_Pos vertAdvance;$/;" m struct:FT_Glyph_Metrics_ +vertAdvance android/freetype/include/freetype/internal/tttypes.h /^ FT_Byte vertAdvance;$/;" m struct:TT_SBit_MetricsRec_ +vertAdvance include/freetype/freetype.h /^ FT_Pos vertAdvance;$/;" m struct:FT_Glyph_Metrics_ +vertAdvance include/freetype/internal/tttypes.h /^ FT_Byte vertAdvance;$/;" m struct:TT_SBit_MetricsRec_ +vertBearingX android/freetype/include/freetype/freetype.h /^ FT_Pos vertBearingX;$/;" m struct:FT_Glyph_Metrics_ +vertBearingX android/freetype/include/freetype/internal/tttypes.h /^ FT_Char vertBearingX;$/;" m struct:TT_SBit_MetricsRec_ +vertBearingX include/freetype/freetype.h /^ FT_Pos vertBearingX;$/;" m struct:FT_Glyph_Metrics_ +vertBearingX include/freetype/internal/tttypes.h /^ FT_Char vertBearingX;$/;" m struct:TT_SBit_MetricsRec_ +vertBearingY android/freetype/include/freetype/freetype.h /^ FT_Pos vertBearingY;$/;" m struct:FT_Glyph_Metrics_ +vertBearingY android/freetype/include/freetype/internal/tttypes.h /^ FT_Char vertBearingY;$/;" m struct:TT_SBit_MetricsRec_ +vertBearingY include/freetype/freetype.h /^ FT_Pos vertBearingY;$/;" m struct:FT_Glyph_Metrics_ +vertBearingY include/freetype/internal/tttypes.h /^ FT_Char vertBearingY;$/;" m struct:TT_SBit_MetricsRec_ +vertResolution android/freetype/include/freetype/freetype.h /^ FT_UInt vertResolution;$/;" m struct:FT_Size_RequestRec_ +vertResolution include/freetype/freetype.h /^ FT_UInt vertResolution;$/;" m struct:FT_Size_RequestRec_ +vert_metrics android/freetype/include/freetype/internal/tttypes.h /^ FT_Byte* vert_metrics;$/;" m struct:TT_FaceRec_ +vert_metrics include/freetype/internal/tttypes.h /^ FT_Byte* vert_metrics;$/;" m struct:TT_FaceRec_ +vert_metrics_offset android/freetype/include/freetype/internal/tttypes.h /^ FT_ULong vert_metrics_offset;$/;" m struct:TT_FaceRec_ +vert_metrics_offset include/freetype/internal/tttypes.h /^ FT_ULong vert_metrics_offset;$/;" m struct:TT_FaceRec_ +vert_metrics_size android/freetype/include/freetype/internal/tttypes.h /^ FT_ULong vert_metrics_size;$/;" m struct:TT_FaceRec_ +vert_metrics_size include/freetype/internal/tttypes.h /^ FT_ULong vert_metrics_size;$/;" m struct:TT_FaceRec_ +vertex src/core/curve.cpp /^unsigned int curve3_inc::vertex(scalar* x, scalar* y)$/;" f class:picasso::curve3_inc +vertex src/core/curve.cpp /^unsigned int curve4_inc::vertex(scalar* x, scalar* y)$/;" f class:picasso::curve4_inc +vertex src/core/graphic_path.cpp /^ unsigned int vertex(unsigned int idx, scalar* x, scalar* y) const$/;" f class:picasso::graphic_path_impl +vertex src/core/graphic_path.cpp /^unsigned int graphic_path::vertex(scalar* x, scalar* y) $/;" f class:picasso::graphic_path +vertex src/core/graphic_path.cpp /^unsigned int graphic_path::vertex(unsigned int idx, scalar* x, scalar* y) const$/;" f class:picasso::graphic_path +vertex src/include/convert.h /^ virtual unsigned int vertex(scalar* x, scalar* y) $/;" f class:picasso::conv_clipper +vertex src/include/convert.h /^ virtual unsigned int vertex(scalar* x, scalar* y) $/;" f class:picasso::conv_curve +vertex src/include/convert.h /^ virtual unsigned int vertex(scalar* x, scalar* y) $/;" f class:picasso::conv_transform +vertex src/include/convert.h /^ virtual unsigned int vertex(scalar* x, scalar* y)$/;" f class:picasso::conv_line_generator +vertex src/include/curve.h /^ virtual unsigned int vertex(scalar* x, scalar* y)$/;" f class:picasso::curve3_div +vertex src/include/curve.h /^ virtual unsigned int vertex(scalar* x, scalar* y)$/;" f class:picasso::curve4_div +vertex src/include/geometry.h /^ virtual unsigned int vertex(scalar* x, scalar* y)$/;" f class:picasso::arc +vertex src/include/geometry.h /^ virtual unsigned int vertex(scalar* x, scalar* y)$/;" f class:picasso::bezier_arc +vertex src/include/geometry.h /^ virtual unsigned int vertex(scalar* x, scalar* y)$/;" f class:picasso::bezier_arc_svg +vertex src/include/geometry.h /^ virtual unsigned int vertex(scalar* x, scalar* y)$/;" f class:picasso::curve3 +vertex src/include/geometry.h /^ virtual unsigned int vertex(scalar* x, scalar* y)$/;" f class:picasso::curve4 +vertex src/include/geometry.h /^ virtual unsigned int vertex(scalar* x, scalar* y)$/;" f class:picasso::ellipse +vertex src/include/geometry.h /^ virtual unsigned int vertex(scalar* x, scalar* y)$/;" f class:picasso::rounded_rect +vertex src/picasso_gpc.cpp /^ vertex_s vertex; \/* Piggy-backed contour vertex data *\/$/;" m struct:picasso::edge_shape file: +vertex src/picasso_gpc.h /^ vertex_s *vertex; \/\/ vertex array pointer$/;" m struct:picasso::__anon220 +vertex_container src/include/vertex.h /^class vertex_container : public vertex_source$/;" c namespace:picasso +vertex_dist src/include/vertex_dist.h /^ vertex_dist() : x(0), y(0), d(FLT_TO_SCALAR(0.0f)) { }$/;" f struct:picasso::vertex_dist +vertex_dist src/include/vertex_dist.h /^ vertex_dist(scalar _x, scalar _y) : x(_x), y(_y), d(FLT_TO_SCALAR(0.0f)) { } $/;" f struct:picasso::vertex_dist +vertex_dist src/include/vertex_dist.h /^struct vertex_dist$/;" s namespace:picasso +vertex_dist_epsilon src/include/graphic_base.h /^const scalar vertex_dist_epsilon = FLT_TO_SCALAR(1e-14f);$/;" m namespace:picasso +vertex_max_num src/include/geometry.h /^ vertex_max_num = 26,$/;" e enum:picasso::bezier_arc::__anon197 +vertex_node src/picasso_gpc.cpp /^} vertex_node;$/;" t namespace:picasso typeref:struct:picasso::v_shape file: +vertex_s src/include/vertex.h /^ vertex_s() : x(0), y(0){ } $/;" f struct:picasso::vertex_s +vertex_s src/include/vertex.h /^ vertex_s(scalar _x, scalar _y) : x(_x), y(_y){ } $/;" f struct:picasso::vertex_s +vertex_s src/include/vertex.h /^struct vertex_s$/;" s namespace:picasso +vertex_sequence src/include/vertex_dist.h /^class vertex_sequence : public pod_bvector$/;" c namespace:picasso +vertex_source src/include/vertex.h /^class vertex_source$/;" c namespace:picasso +vertex_storage src/include/convert.h /^ typedef vertex_sequence vertex_storage;$/;" t class:picasso::conv_dash +vertex_storage src/include/convert.h /^ typedef vertex_sequence vertex_storage;$/;" t class:picasso::conv_stroke +vertex_type src/picasso_gpc.cpp /^} vertex_type;$/;" t namespace:picasso typeref:enum:picasso::__anon216 file: +vertical android/freetype/include/freetype/internal/tttypes.h /^ TT_VertHeader vertical; \/* TT Vertical header, if present *\/$/;" m struct:TT_FaceRec_ +vertical android/freetype/src/pshinter/pshalgo.h /^ FT_Bool vertical;$/;" m struct:PSH_GlyphRec_ +vertical include/freetype/internal/tttypes.h /^ TT_VertHeader vertical; \/* TT Vertical header, if present *\/$/;" m struct:TT_FaceRec_ +vertical_info android/freetype/include/freetype/internal/tttypes.h /^ FT_Bool vertical_info;$/;" m struct:TT_FaceRec_ +vertical_info include/freetype/internal/tttypes.h /^ FT_Bool vertical_info;$/;" m struct:TT_FaceRec_ +vertical_resolution android/freetype/include/freetype/ftwinfnt.h /^ FT_UShort vertical_resolution;$/;" m struct:FT_WinFNT_HeaderRec_ +vertical_resolution include/freetype/ftwinfnt.h /^ FT_UShort vertical_resolution;$/;" m struct:FT_WinFNT_HeaderRec_ +vertices src/include/convert.h /^ vertex_s* vertices;$/;" m struct:picasso::conv_clipper::__anon188 +vertices src/include/geometry.h /^ const scalar* vertices(void) const { return m_arc.vertices(); }$/;" f class:picasso::bezier_arc_svg +vertices src/include/geometry.h /^ const scalar* vertices(void) const { return m_vertices; }$/;" f class:picasso::bezier_arc +vertices src/include/geometry.h /^ scalar* vertices(void) { return m_arc.vertices(); }$/;" f class:picasso::bezier_arc_svg +vertices src/include/geometry.h /^ scalar* vertices(void) { return m_vertices; }$/;" f class:picasso::bezier_arc +virtual_key demos/interface.h /^}virtual_key;$/;" t typeref:enum:__anon41 +vk demos/platform_gix.c /^ int vk;$/;" m struct:__anon42 file: +vk demos/platform_gtk2.c /^ int vk;$/;" m struct:__anon43 file: +vk demos/platform_minigui.c /^ int vk;$/;" m struct:__anon44 file: +vk demos/platform_qt4.cpp /^ int vk;$/;" m struct:__anon45 file: +vline_rel src/core/graphic_path.cpp /^void graphic_path::vline_rel(scalar dy)$/;" f class:picasso::graphic_path +vline_to src/core/graphic_path.cpp /^void graphic_path::vline_to(scalar y)$/;" f class:picasso::graphic_path +vs_version tools/gyp/build/lib/gyp/msvs_emulation.py /^vs_version = None$/;" v +vs_version tools/gyp/pylib/gyp/msvs_emulation.py /^vs_version = None$/;" v +w include/picasso.h /^ float w;$/;" m struct:_ps_rect +w include/picasso.h /^ float w;$/;" m struct:_ps_size +w0 android/freetype/src/autofit/afwarp.h /^ FT_Pos w0, wmin, wmax;$/;" m struct:AF_WarperRec_ +weight android/freetype/include/freetype/ftwinfnt.h /^ FT_UShort weight;$/;" m struct:FT_WinFNT_HeaderRec_ +weight android/freetype/include/freetype/t1tables.h /^ FT_String* weight;$/;" m struct:PS_FontInfoRec_ +weight android/freetype/src/cff/cfftypes.h /^ FT_UInt weight;$/;" m struct:CFF_FontRecDictRec_ +weight include/freetype/ftwinfnt.h /^ FT_UShort weight;$/;" m struct:FT_WinFNT_HeaderRec_ +weight include/freetype/t1tables.h /^ FT_String* weight;$/;" m struct:PS_FontInfoRec_ +weight src/picasso_font.h /^ scalar weight(void) const { return m_weight; }$/;" f class:picasso::font_desc +weight_array src/gfx/gfx_image_filters.h /^ const int16_t* weight_array(void) const { return &m_weight_array[0]; }$/;" f class:gfx::image_filter_adapter +weight_vector android/freetype/include/freetype/t1tables.h /^ FT_Fixed* weight_vector;$/;" m struct:PS_BlendRec_ +weight_vector include/freetype/t1tables.h /^ FT_Fixed* weight_vector;$/;" m struct:PS_BlendRec_ +width android/freetype/include/freetype/freetype.h /^ FT_Long width;$/;" m struct:FT_Size_RequestRec_ +width android/freetype/include/freetype/freetype.h /^ FT_Pos width;$/;" m struct:FT_Glyph_Metrics_ +width android/freetype/include/freetype/freetype.h /^ FT_Short width;$/;" m struct:FT_Bitmap_Size_ +width android/freetype/include/freetype/ftcache.h /^ FT_Byte width;$/;" m struct:FTC_SBitRec_ +width android/freetype/include/freetype/ftcache.h /^ FT_Int width;$/;" m struct:FTC_ImageTypeRec_ +width android/freetype/include/freetype/ftcache.h /^ FT_UInt width;$/;" m struct:FTC_ScalerRec_ +width android/freetype/include/freetype/ftimage.h /^ int width;$/;" m struct:FT_Bitmap_ +width android/freetype/include/freetype/internal/tttypes.h /^ FT_Byte width;$/;" m struct:TT_SBit_MetricsRec_ +width android/freetype/include/freetype/internal/tttypes.h /^ FT_Byte width;$/;" m struct:TT_SBit_Small_Metrics_ +width android/jni/pat565.h /^ int width;$/;" m struct:_pat565 +width android/jni/selt2565.h /^ int width;$/;" m struct:_selt2565 +width android/jni/test_android.cpp /^ int32_t width;$/;" m struct:engine file: +width demos/clock.c /^static int width;$/;" v file: +width demos/flowers.c /^static int width;$/;" v file: +width demos/interface.h /^ unsigned width;$/;" m struct:_picture +width demos/lake.c /^static int width;$/;" v file: +width demos/platform_gix.c /^static int width;$/;" v file: +width demos/platform_gtk2.c /^static int width;$/;" v file: +width demos/platform_minigui.c /^static int width;$/;" v file: +width demos/platform_win32.c /^static int width;$/;" v file: +width demos/subwaymap.c /^static int width;$/;" v file: +width demos/tiger.c /^static int width;$/;" v file: +width include/freetype/freetype.h /^ FT_Long width;$/;" m struct:FT_Size_RequestRec_ +width include/freetype/freetype.h /^ FT_Pos width;$/;" m struct:FT_Glyph_Metrics_ +width include/freetype/freetype.h /^ FT_Short width;$/;" m struct:FT_Bitmap_Size_ +width include/freetype/ftcache.h /^ FT_Byte width;$/;" m struct:FTC_SBitRec_ +width include/freetype/ftcache.h /^ FT_Int width;$/;" m struct:FTC_ImageTypeRec_ +width include/freetype/ftcache.h /^ FT_UInt width;$/;" m struct:FTC_ScalerRec_ +width include/freetype/ftimage.h /^ int width;$/;" m struct:FT_Bitmap_ +width include/freetype/internal/tttypes.h /^ FT_Byte width;$/;" m struct:TT_SBit_MetricsRec_ +width include/freetype/internal/tttypes.h /^ FT_Byte width;$/;" m struct:TT_SBit_Small_Metrics_ +width src/gfx/gfx_blur.h /^ unsigned int width(void) const { return m_pixfmt->height(); }$/;" f class:gfx::pixfmt_transformer +width src/gfx/gfx_mask_layer.h /^ unsigned int width(void) const { return m_pixfmt->width(); }$/;" f class:gfx::gfx_pixfmt_amask_adaptor +width src/gfx/gfx_pixfmt_rgb.h /^ unsigned int width(void) const { return m_buffer->internal_width(); }$/;" f class:gfx::pixfmt_blender_rgb +width src/gfx/gfx_pixfmt_rgb16.h /^ unsigned int width(void) const { return m_buffer->internal_width(); }$/;" f class:gfx::pixfmt_blender_rgb16 +width src/gfx/gfx_pixfmt_rgba.h /^ unsigned int width(void) const { return m_buffer->internal_width(); }$/;" f class:gfx::pixfmt_blender_rgba +width src/gfx/gfx_pixfmt_wrapper.h /^ unsigned int width(void) const { return m_fmt.width(); }$/;" f class:gfx::gfx_pixfmt_wrapper +width src/gfx/gfx_renderer.h /^ unsigned int width(void) const { return m_pixfmt->width(); }$/;" f class:gfx::gfx_renderer +width src/gfx/gfx_rendering_buffer.h /^ virtual unsigned int width(void) const { return m_width; }$/;" f class:gfx::gfx_rendering_buffer +width src/include/graphic_base.h /^ T width(void) { return (x2-x1); }$/;" f struct:picasso::rect_base +width src/picasso_objects.h /^ scalar width;$/;" m struct:picasso::graphic_pen +width src/picasso_rendering_buffer.cpp /^unsigned int rendering_buffer::width(void) const $/;" f class:picasso::rendering_buffer +width_count android/freetype/src/autofit/aflatin.h /^ FT_UInt width_count;$/;" m struct:AF_LatinAxisRec_ +width_only android/freetype/src/cff/cffgload.h /^ FT_Bool width_only;$/;" m struct:CFF_Decoder_ +widths android/freetype/include/freetype/internal/tttypes.h /^ FT_Byte* widths;$/;" m struct:TT_HdmxEntryRec_ +widths android/freetype/src/autofit/aflatin.h /^ AF_WidthRec widths[AF_LATIN_MAX_WIDTHS];$/;" m struct:AF_LatinAxisRec_ +widths android/freetype/src/pshinter/pshglob.h /^ PSH_WidthRec widths[PS_GLOBALS_MAX_STD_WIDTHS];$/;" m struct:PSH_WidthsRec_ +widths include/freetype/internal/tttypes.h /^ FT_Byte* widths;$/;" m struct:TT_HdmxEntryRec_ +win32_thread_1 test/thr_win32.c /^DWORD WINAPI win32_thread_1(void *p1)$/;" f +win32_thread_2 test/thr_win32.c /^DWORD WINAPI win32_thread_2(void *p1)$/;" f +windll tools/gyp/build/lib/gyp/win_tool.py /^from ctypes import windll, wintypes$/;" i +windll tools/gyp/pylib/gyp/win_tool.py /^from ctypes import windll, wintypes$/;" i +window demos/platform_gtk2.c /^GtkWidget *window;$/;" v +window demos/platform_qt4.cpp /^static PWindow *window = 0;$/;" v file: +window_proc demos/platform_gix.c /^static int window_proc(gi_msg_t *msg,void *data)$/;" f file: +windows_quoter_regex tools/gyp/build/lib/gyp/msvs_emulation.py /^windows_quoter_regex = re.compile(r'(\\\\*)"')$/;" v +windows_quoter_regex tools/gyp/pylib/gyp/msvs_emulation.py /^windows_quoter_regex = re.compile(r'(\\\\*)"')$/;" v +wintypes tools/gyp/build/lib/gyp/win_tool.py /^from ctypes import windll, wintypes$/;" i +wintypes tools/gyp/pylib/gyp/win_tool.py /^from ctypes import windll, wintypes$/;" i +with_statement tools/gyp/build/lib/gyp/common.py /^from __future__ import with_statement$/;" i +with_statement tools/gyp/pylib/gyp/common.py /^from __future__ import with_statement$/;" i +wmax android/freetype/src/autofit/afwarp.h /^ FT_Pos w0, wmin, wmax;$/;" m struct:AF_WarperRec_ +wmin android/freetype/src/autofit/afwarp.h /^ FT_Pos w0, wmin, wmax;$/;" m struct:AF_WarperRec_ +worker android/freetype/src/raster/ftraster.c /^ PWorker worker;$/;" m struct:TRaster_ file: +worker android/freetype/src/smooth/ftgrays.c /^ PWorker worker;$/;" m struct:TRaster_ file: +world_matrix src/picasso_objects.h /^ trans_affine world_matrix;$/;" m struct:picasso::context_state +wrap_mode_reflect src/gfx/gfx_image_accessors.h /^ wrap_mode_reflect(unsigned int size)$/;" f class:gfx::wrap_mode_reflect +wrap_mode_reflect src/gfx/gfx_image_accessors.h /^class wrap_mode_reflect$/;" c namespace:gfx +wrap_mode_repeat src/gfx/gfx_image_accessors.h /^ wrap_mode_repeat(unsigned int size)$/;" f class:gfx::wrap_mode_repeat +wrap_mode_repeat src/gfx/gfx_image_accessors.h /^class wrap_mode_repeat$/;" c namespace:gfx +wrapper src/gfx/gfx_gradient_adapter.h /^ gfx_gradient_wrapper* wrapper(void) { return m_wrapper; }$/;" f class:gfx::gfx_gradient_adapter +write tools/gyp/gyptest.py /^ def write(self, arg):$/;" m class:Unbuffered +write_input_files tools/gyp/build/lib/gyp/SCons.py /^ def write_input_files(self, fp):$/;" m class:TargetBase +write_input_files tools/gyp/pylib/gyp/SCons.py /^ def write_input_files(self, fp):$/;" m class:TargetBase +write_int32 src/gfx/gfx_scanline_storage.h /^ static void write_int32(uint8_t* dst, int32_t val)$/;" f class:gfx::gfx_scanline_storage_aa +write_int32 src/gfx/gfx_scanline_storage.h /^ static void write_int32(uint8_t* dst, int32_t val)$/;" f class:gfx::gfx_scanline_storage_bin +write_target tools/gyp/build/lib/gyp/SCons.py /^ def write_target(self, fp, src_dir='', pre=''):$/;" m class:CompilableSourcesTargetBase +write_target tools/gyp/build/lib/gyp/SCons.py /^ def write_target(self, fp, src_dir='', pre=''):$/;" m class:NoneTarget +write_target tools/gyp/build/lib/gyp/SCons.py /^ def write_target(self, fp, src_dir='', pre=''):$/;" m class:TargetBase +write_target tools/gyp/pylib/gyp/SCons.py /^ def write_target(self, fp, src_dir='', pre=''):$/;" m class:CompilableSourcesTargetBase +write_target tools/gyp/pylib/gyp/SCons.py /^ def write_target(self, fp, src_dir='', pre=''):$/;" m class:NoneTarget +write_target tools/gyp/pylib/gyp/SCons.py /^ def write_target(self, fp, src_dir='', pre=''):$/;" m class:TargetBase +wtext test/text_func.c /^const ps_uchar16 wtext[] = {0x77e2,0x91cf,0x56fe,0x5f62,0x5e93};$/;" v +x android/freetype/include/freetype/ftimage.h /^ FT_Pos x;$/;" m struct:FT_Vector_ +x android/freetype/include/freetype/ftimage.h /^ short x;$/;" m struct:FT_Span_ +x android/freetype/include/freetype/fttypes.h /^ FT_F2Dot14 x;$/;" m struct:FT_UnitVector_ +x android/freetype/include/freetype/internal/ftcalc.h /^ FT_Sqrt32( FT_Int32 x );$/;" v +x android/freetype/include/freetype/internal/ftcalc.h /^ FT_SqrtFixed( FT_Int32 x );$/;" v +x android/freetype/include/freetype/internal/t1types.h /^ FT_Int x;$/;" m struct:AFM_KernPairRec_ +x android/freetype/src/autofit/afhints.h /^ FT_Pos x, y; \/* current position *\/$/;" m struct:AF_PointRec_ +x android/freetype/src/raster/ftraster.c /^ Long x;$/;" m struct:TPoint_ file: +x android/freetype/src/smooth/ftgrays.c /^ TPos x, y;$/;" m struct:TWorker_ file: +x android/freetype/src/smooth/ftgrays.c /^ int x;$/;" m struct:TCell_ file: +x demos/flowers.c /^ float x, y;$/;" m struct:__anon37 file: +x include/freetype/ftimage.h /^ FT_Pos x;$/;" m struct:FT_Vector_ +x include/freetype/ftimage.h /^ short x;$/;" m struct:FT_Span_ +x include/freetype/fttypes.h /^ FT_F2Dot14 x;$/;" m struct:FT_UnitVector_ +x include/freetype/internal/ftcalc.h /^ FT_Sqrt32( FT_Int32 x );$/;" v +x include/freetype/internal/ftcalc.h /^ FT_SqrtFixed( FT_Int32 x );$/;" v +x include/freetype/internal/t1types.h /^ FT_Int x;$/;" m struct:AFM_KernPairRec_ +x include/picasso.h /^ float x;$/;" m struct:_ps_point +x include/picasso.h /^ float x;$/;" m struct:_ps_rect +x src/gfx/gfx_rasterizer_scanline.h /^ int x(void) const { return m_x; }$/;" f class:gfx::scanline_hit_test +x src/gfx/gfx_rasterizer_scanline.h /^ int x;$/;" m struct:gfx::cell +x src/gfx/gfx_scanline.h /^ coord_type x;$/;" m struct:gfx::gfx_scanline_p8::__anon156 +x src/gfx/gfx_scanline.h /^ coord_type x;$/;" m struct:gfx::gfx_scanline_u8::__anon157 +x src/gfx/gfx_scanline.h /^ int16_t x;$/;" m struct:gfx::gfx_scanline_bin::__anon155 +x src/gfx/gfx_scanline_storage.h /^ int32_t x;$/;" m struct:gfx::gfx_scanline_storage_aa::embedded_scanline::const_iterator::__anon161 +x src/gfx/gfx_scanline_storage.h /^ int32_t x;$/;" m struct:gfx::gfx_serialized_scanlines_adaptor_aa::embedded_scanline::const_iterator::__anon162 +x src/gfx/gfx_scanline_storage.h /^ int32_t x;$/;" m struct:gfx::gfx_serialized_scanlines_adaptor_bin::embedded_scanline::const_iterator::__anon165 +x src/gfx/gfx_scanline_storage.h /^ int32_t x;$/;" m struct:gfx::gfx_scanline_storage_aa::__anon159 +x src/gfx/gfx_scanline_storage.h /^ int32_t x;$/;" m struct:gfx::gfx_scanline_storage_bin::__anon163 +x src/gfx/gfx_scanline_storage.h /^ int x(void) const { return m_dx; }$/;" f class:gfx::gfx_serialized_scanlines_adaptor_bin +x src/include/graphic_base.h /^ T x(void) { return x1; }$/;" f struct:picasso::rect_base +x src/include/vertex.h /^ scalar x;$/;" m struct:picasso::vertex_s +x src/include/vertex_dist.h /^ scalar x;$/;" m struct:picasso::vertex_dist +x src/picasso_gpc.cpp /^ float x; \/* X coordinate component *\/$/;" m struct:picasso::v_shape file: +x1 android/freetype/src/autofit/afwarp.h /^ FT_Pos x1, x2;$/;" m struct:AF_WarperRec_ +x1 src/gfx/gfx_rendering_buffer.h /^ int x1, x2;$/;" m struct:gfx::gfx_rendering_buffer::const_row_info +x1 src/include/graphic_base.h /^ T x1; \/\/ left$/;" m struct:picasso::rect_base +x1max android/freetype/src/autofit/afwarp.h /^ FT_Pos x1min, x1max;$/;" m struct:AF_WarperRec_ +x1min android/freetype/src/autofit/afwarp.h /^ FT_Pos x1min, x1max;$/;" m struct:AF_WarperRec_ +x2 android/freetype/src/autofit/afwarp.h /^ FT_Pos x1, x2;$/;" m struct:AF_WarperRec_ +x2 src/gfx/gfx_rendering_buffer.h /^ int x1, x2;$/;" m struct:gfx::gfx_rendering_buffer::const_row_info +x2 src/include/graphic_base.h /^ T x2; \/\/ right$/;" m struct:picasso::rect_base +x2max android/freetype/src/autofit/afwarp.h /^ FT_Pos x2min, x2max;$/;" m struct:AF_WarperRec_ +x2min android/freetype/src/autofit/afwarp.h /^ FT_Pos x2min, x2max;$/;" m struct:AF_WarperRec_ +xAvgCharWidth android/freetype/include/freetype/tttables.h /^ FT_Short xAvgCharWidth;$/;" m struct:TT_OS2_ +xAvgCharWidth include/freetype/tttables.h /^ FT_Short xAvgCharWidth;$/;" m struct:TT_OS2_ +xHeight android/freetype/include/freetype/tttables.h /^ FT_UShort xHeight;$/;" m struct:TT_PCLT_ +xHeight include/freetype/tttables.h /^ FT_UShort xHeight;$/;" m struct:TT_PCLT_ +xMax android/freetype/include/freetype/ftimage.h /^ FT_Pos xMax, yMax;$/;" m struct:FT_BBox_ +xMax android/freetype/include/freetype/tttables.h /^ FT_Short xMax;$/;" m struct:TT_Header_ +xMax include/freetype/ftimage.h /^ FT_Pos xMax, yMax;$/;" m struct:FT_BBox_ +xMax include/freetype/tttables.h /^ FT_Short xMax;$/;" m struct:TT_Header_ +xMax_Extent android/freetype/include/freetype/tttables.h /^ FT_Short xMax_Extent; \/* xmax extents *\/$/;" m struct:TT_HoriHeader_ +xMax_Extent include/freetype/tttables.h /^ FT_Short xMax_Extent; \/* xmax extents *\/$/;" m struct:TT_HoriHeader_ +xMin android/freetype/include/freetype/ftimage.h /^ FT_Pos xMin, yMin;$/;" m struct:FT_BBox_ +xMin android/freetype/include/freetype/tttables.h /^ FT_Short xMin;$/;" m struct:TT_Header_ +xMin include/freetype/ftimage.h /^ FT_Pos xMin, yMin;$/;" m struct:FT_BBox_ +xMin include/freetype/tttables.h /^ FT_Short xMin;$/;" m struct:TT_Header_ +x_delta android/freetype/src/autofit/afhints.h /^ FT_Pos x_delta;$/;" m struct:AF_GlyphHintsRec_ +x_delta android/freetype/src/autofit/aftypes.h /^ FT_Pos x_delta; \/* in 1\/64th device pixels *\/$/;" m struct:AF_ScalerRec_ +x_offset android/freetype/include/freetype/internal/tttypes.h /^ FT_Char x_offset;$/;" m struct:TT_SBit_ComponentRec_ +x_offset include/freetype/internal/tttypes.h /^ FT_Char x_offset;$/;" m struct:TT_SBit_ComponentRec_ +x_offset src/picasso_objects.h /^ scalar x_offset;$/;" m struct:picasso::shadow_state +x_ppem android/freetype/include/freetype/freetype.h /^ FT_Pos x_ppem;$/;" m struct:FT_Bitmap_Size_ +x_ppem android/freetype/include/freetype/freetype.h /^ FT_UShort x_ppem; \/* horizontal pixels per EM *\/$/;" m struct:FT_Size_Metrics_ +x_ppem android/freetype/include/freetype/internal/tttypes.h /^ FT_Byte x_ppem;$/;" m struct:TT_SBit_ScaleRec_ +x_ppem android/freetype/include/freetype/internal/tttypes.h /^ FT_Byte x_ppem;$/;" m struct:TT_SBit_StrikeRec_ +x_ppem include/freetype/freetype.h /^ FT_Pos x_ppem;$/;" m struct:FT_Bitmap_Size_ +x_ppem include/freetype/freetype.h /^ FT_UShort x_ppem; \/* horizontal pixels per EM *\/$/;" m struct:FT_Size_Metrics_ +x_ppem include/freetype/internal/tttypes.h /^ FT_Byte x_ppem;$/;" m struct:TT_SBit_ScaleRec_ +x_ppem include/freetype/internal/tttypes.h /^ FT_Byte x_ppem;$/;" m struct:TT_SBit_StrikeRec_ +x_ppem_substitute android/freetype/include/freetype/internal/tttypes.h /^ FT_Byte x_ppem_substitute;$/;" m struct:TT_SBit_ScaleRec_ +x_ppem_substitute include/freetype/internal/tttypes.h /^ FT_Byte x_ppem_substitute;$/;" m struct:TT_SBit_ScaleRec_ +x_ratio android/freetype/src/truetype/ttobjs.h /^ FT_Long x_ratio;$/;" m struct:TT_Size_Metrics_ +x_res android/freetype/include/freetype/ftcache.h /^ FT_UInt x_res;$/;" m struct:FTC_ScalerRec_ +x_res include/freetype/ftcache.h /^ FT_UInt x_res;$/;" m struct:FTC_ScalerRec_ +x_scale android/freetype/include/freetype/freetype.h /^ FT_Fixed x_scale; \/* scaling values used to convert font *\/$/;" m struct:FT_Size_Metrics_ +x_scale android/freetype/src/autofit/afhints.h /^ FT_Fixed x_scale;$/;" m struct:AF_GlyphHintsRec_ +x_scale android/freetype/src/autofit/aftypes.h /^ FT_Fixed x_scale; \/* from font units to 1\/64th device pixels *\/$/;" m struct:AF_ScalerRec_ +x_scale android/freetype/src/cff/cffobjs.h /^ FT_Fixed x_scale;$/;" m struct:CFF_GlyphSlotRec_ +x_scale include/freetype/freetype.h /^ FT_Fixed x_scale; \/* scaling values used to convert font *\/$/;" m struct:FT_Size_Metrics_ +xadvance android/freetype/include/freetype/ftcache.h /^ FT_Char xadvance;$/;" m struct:FTC_SBitRec_ +xadvance include/freetype/ftcache.h /^ FT_Char xadvance;$/;" m struct:FTC_SBitRec_ +xb src/picasso_gpc.cpp /^ float xb; \/* Scanbeam bottom x coordinate *\/$/;" m struct:picasso::edge_shape file: +xb src/picasso_gpc.cpp /^ float xb; \/* Scanbeam bottom x coordinate *\/$/;" m struct:picasso::st_shape file: +xcbc tools/gyp/build/lib/gyp/generator/xcode.py /^ xcbc = xct.ConfigurationNamed(configuration_name)$/;" v +xcbc tools/gyp/pylib/gyp/generator/xcode.py /^ xcbc = xct.ConfigurationNamed(configuration_name)$/;" v +xcode_emulation tools/gyp/build/lib/gyp/generator/make.py /^import gyp.xcode_emulation$/;" i +xcode_emulation tools/gyp/build/lib/gyp/generator/ninja.py /^import gyp.xcode_emulation$/;" i +xcode_emulation tools/gyp/pylib/gyp/generator/make.py /^import gyp.xcode_emulation$/;" i +xcode_emulation tools/gyp/pylib/gyp/generator/ninja.py /^import gyp.xcode_emulation$/;" i +xcode_generator tools/gyp/build/lib/gyp/generator/make.py /^ import gyp.generator.xcode as xcode_generator$/;" i +xcode_generator tools/gyp/build/lib/gyp/generator/ninja.py /^ import gyp.generator.xcode as xcode_generator$/;" i +xcode_generator tools/gyp/pylib/gyp/generator/make.py /^ import gyp.generator.xcode as xcode_generator$/;" i +xcode_generator tools/gyp/pylib/gyp/generator/ninja.py /^ import gyp.generator.xcode as xcode_generator$/;" i +xcode_standard_library_dirs tools/gyp/build/lib/gyp/generator/xcode.py /^xcode_standard_library_dirs = frozenset([$/;" v +xcode_standard_library_dirs tools/gyp/pylib/gyp/generator/xcode.py /^xcode_standard_library_dirs = frozenset([$/;" v +xcodeproj_file tools/gyp/build/lib/gyp/generator/xcode.py /^import gyp.xcodeproj_file$/;" i +xcodeproj_file tools/gyp/pylib/gyp/generator/xcode.py /^import gyp.xcodeproj_file$/;" i +xmax src/gfx/gfx_renderer.h /^ int xmax(void) const { return m_clip_rect.x2; }$/;" f class:gfx::gfx_renderer +xmax src/picasso_gpc.cpp /^ float xmax; \/* Maximum x coordinate *\/$/;" m struct:picasso::bbox_shape file: +xmax_delta android/freetype/src/autofit/afhints.h /^ FT_Pos xmax_delta;$/;" m struct:AF_GlyphHintsRec_ +xmin src/gfx/gfx_renderer.h /^ int xmin(void) const { return m_clip_rect.x1; }$/;" f class:gfx::gfx_renderer +xmin src/picasso_gpc.cpp /^ float xmin; \/* Minimum x coordinate *\/$/;" m struct:picasso::bbox_shape file: +xmin_delta android/freetype/src/autofit/afhints.h /^ FT_Pos xmin_delta; \/* used for warping *\/$/;" m struct:AF_GlyphHintsRec_ +xml tools/gyp/build/lib/gyp/xml_fix.py /^import xml.dom.minidom$/;" i +xml tools/gyp/pylib/gyp/xml_fix.py /^import xml.dom.minidom$/;" i +xmlDeclHandler android/expat/lib/xmlparse.c /^#define xmlDeclHandler /;" d file: +xmlns android/expat/lib/xmlparse.c /^ XML_Bool xmlns;$/;" m struct:attribute_id file: +xt src/picasso_gpc.cpp /^ float xt; \/* Scanbeam top x coordinate *\/$/;" m struct:picasso::edge_shape file: +xt src/picasso_gpc.cpp /^ float xt; \/* Scanbeam top x coordinate *\/$/;" m struct:picasso::st_shape file: +xtype src/gfx/gfx_painter.h /^ int xtype;$/;" m struct:gfx::gfx_painter::__anon65 +xtype src/picasso_objects.h /^ ps_wrap_type xtype;$/;" m struct:_ps_pattern +xuid android/freetype/include/freetype/t1tables.h /^ FT_ULong xuid[16];$/;" m struct:CID_FaceInfoRec_ +xuid include/freetype/t1tables.h /^ FT_ULong xuid[16];$/;" m struct:CID_FaceInfoRec_ +xx android/freetype/include/freetype/fttypes.h /^ FT_Fixed xx, xy;$/;" m struct:FT_Matrix_ +xx android/freetype/src/cff/cffobjs.h /^ FT_Fixed xx, xy; \/* transformation matrix coefficients *\/$/;" m struct:CFF_Transform_ +xx android/freetype/src/truetype/ttobjs.h /^ FT_Fixed xx, xy; \/* transformation matrix coefficients *\/$/;" m struct:TT_Transform_ +xx include/freetype/fttypes.h /^ FT_Fixed xx, xy;$/;" m struct:FT_Matrix_ +xxAF_DEBUG android/freetype/src/autofit/aftypes.h /^#define xxAF_DEBUG$/;" d +xxAF_SORT_SEGMENTS android/freetype/src/autofit/afhints.h /^#define xxAF_SORT_SEGMENTS$/;" d +xxAF_USE_WARPER android/freetype/src/autofit/aftypes.h /^#define xxAF_USE_WARPER /;" d +xxDEBUG_ZONES android/freetype/src/pshinter/pshalgo.c /^#define xxDEBUG_ZONES$/;" d file: +xxxDEBUG_GRAYS android/freetype/src/smooth/ftgrays.c /^#define xxxDEBUG_GRAYS$/;" d file: +xxxDEBUG_RASTER android/freetype/src/raster/ftraster.c /^#define xxxDEBUG_RASTER$/;" d file: +xy android/freetype/include/freetype/fttypes.h /^ FT_Fixed xx, xy;$/;" m struct:FT_Matrix_ +xy android/freetype/src/cff/cffobjs.h /^ FT_Fixed xx, xy; \/* transformation matrix coefficients *\/$/;" m struct:CFF_Transform_ +xy android/freetype/src/truetype/ttobjs.h /^ FT_Fixed xx, xy; \/* transformation matrix coefficients *\/$/;" m struct:TT_Transform_ +xy include/freetype/fttypes.h /^ FT_Fixed xx, xy;$/;" m struct:FT_Matrix_ +y android/freetype/include/freetype/ftimage.h /^ FT_Pos y;$/;" m struct:FT_Vector_ +y android/freetype/include/freetype/fttypes.h /^ FT_F2Dot14 y;$/;" m struct:FT_UnitVector_ +y android/freetype/include/freetype/internal/t1types.h /^ FT_Int y;$/;" m struct:AFM_KernPairRec_ +y android/freetype/src/autofit/afhints.h /^ FT_Pos x, y; \/* current position *\/$/;" m struct:AF_PointRec_ +y android/freetype/src/raster/ftraster.c /^ Long y;$/;" m struct:TPoint_ file: +y android/freetype/src/smooth/ftgrays.c /^ TPos x, y;$/;" m struct:TWorker_ file: +y demos/flowers.c /^ float x, y;$/;" m struct:__anon37 file: +y include/freetype/ftimage.h /^ FT_Pos y;$/;" m struct:FT_Vector_ +y include/freetype/fttypes.h /^ FT_F2Dot14 y;$/;" m struct:FT_UnitVector_ +y include/freetype/internal/t1types.h /^ FT_Int y;$/;" m struct:AFM_KernPairRec_ +y include/picasso.h /^ float y;$/;" m struct:_ps_point +y include/picasso.h /^ float y;$/;" m struct:_ps_rect +y src/gfx/gfx_line_generator.h /^ int y(void) const { return m_y + (m_dy >> (FractionShift-YShift)); }$/;" f class:gfx::gfx_dda_line_interpolator +y src/gfx/gfx_line_generator.h /^ int y(void) const { return m_y; }$/;" f class:gfx::gfx_dda2_line_interpolator +y src/gfx/gfx_rasterizer_scanline.h /^ int y;$/;" m struct:gfx::cell +y src/gfx/gfx_scanline.h /^ int y(void) const { return m_y; }$/;" f class:gfx::gfx_scanline_bin +y src/gfx/gfx_scanline.h /^ int y(void) const { return m_y; }$/;" f class:gfx::gfx_scanline_p8 +y src/gfx/gfx_scanline.h /^ int y(void) const { return m_y; }$/;" f class:gfx::gfx_scanline_u8 +y src/gfx/gfx_scanline_storage.h /^ int y(void) const { return m_scanline.y; }$/;" f class:gfx::gfx_scanline_storage_aa::embedded_scanline +y src/gfx/gfx_scanline_storage.h /^ int y(void) const { return m_scanline.y; }$/;" f class:gfx::gfx_scanline_storage_bin::embedded_scanline +y src/gfx/gfx_scanline_storage.h /^ int y(void) const { return m_y; }$/;" f class:gfx::gfx_serialized_scanlines_adaptor_aa::embedded_scanline +y src/gfx/gfx_scanline_storage.h /^ int y(void) const { return m_y; }$/;" f class:gfx::gfx_serialized_scanlines_adaptor_bin::embedded_scanline +y src/gfx/gfx_scanline_storage.h /^ int y;$/;" m struct:gfx::gfx_scanline_storage_aa::__anon160 +y src/gfx/gfx_scanline_storage.h /^ int y;$/;" m struct:gfx::gfx_scanline_storage_bin::__anon164 +y src/gfx/gfx_scanline_storage.h /^ int y(void) const { return m_dy; }$/;" f class:gfx::gfx_serialized_scanlines_adaptor_bin +y src/include/graphic_base.h /^ T y(void) { return y1; }$/;" f struct:picasso::rect_base +y src/include/vertex.h /^ scalar y;$/;" m struct:picasso::vertex_s +y src/include/vertex_dist.h /^ scalar y;$/;" m struct:picasso::vertex_dist +y src/picasso_gpc.cpp /^ float y; \/* Scanbeam node y value *\/$/;" m struct:picasso::sbt_t_shape file: +y src/picasso_gpc.cpp /^ float y; \/* Y coordinate at local minimum *\/$/;" m struct:picasso::lmt_shape file: +y src/picasso_gpc.cpp /^ float y; \/* Y coordinate component *\/$/;" m struct:picasso::v_shape file: +y1 src/include/graphic_base.h /^ T y1; \/\/ top$/;" m struct:picasso::rect_base +y2 src/include/graphic_base.h /^ T y2; \/\/ bottom$/;" m struct:picasso::rect_base +yMax android/freetype/include/freetype/ftimage.h /^ FT_Pos xMax, yMax;$/;" m struct:FT_BBox_ +yMax android/freetype/include/freetype/tttables.h /^ FT_Short yMax;$/;" m struct:TT_Header_ +yMax include/freetype/ftimage.h /^ FT_Pos xMax, yMax;$/;" m struct:FT_BBox_ +yMax include/freetype/tttables.h /^ FT_Short yMax;$/;" m struct:TT_Header_ +yMax_Extent android/freetype/include/freetype/tttables.h /^ FT_Short yMax_Extent; \/* xmax or ymax extents *\/$/;" m struct:TT_VertHeader_ +yMax_Extent include/freetype/tttables.h /^ FT_Short yMax_Extent; \/* xmax or ymax extents *\/$/;" m struct:TT_VertHeader_ +yMin android/freetype/include/freetype/ftimage.h /^ FT_Pos xMin, yMin;$/;" m struct:FT_BBox_ +yMin android/freetype/include/freetype/tttables.h /^ FT_Short yMin;$/;" m struct:TT_Header_ +yMin include/freetype/ftimage.h /^ FT_Pos xMin, yMin;$/;" m struct:FT_BBox_ +yMin include/freetype/tttables.h /^ FT_Short yMin;$/;" m struct:TT_Header_ +yStrikeoutPosition android/freetype/include/freetype/tttables.h /^ FT_Short yStrikeoutPosition;$/;" m struct:TT_OS2_ +yStrikeoutPosition include/freetype/tttables.h /^ FT_Short yStrikeoutPosition;$/;" m struct:TT_OS2_ +yStrikeoutSize android/freetype/include/freetype/tttables.h /^ FT_Short yStrikeoutSize;$/;" m struct:TT_OS2_ +yStrikeoutSize include/freetype/tttables.h /^ FT_Short yStrikeoutSize;$/;" m struct:TT_OS2_ +ySubscriptXOffset android/freetype/include/freetype/tttables.h /^ FT_Short ySubscriptXOffset;$/;" m struct:TT_OS2_ +ySubscriptXOffset include/freetype/tttables.h /^ FT_Short ySubscriptXOffset;$/;" m struct:TT_OS2_ +ySubscriptXSize android/freetype/include/freetype/tttables.h /^ FT_Short ySubscriptXSize;$/;" m struct:TT_OS2_ +ySubscriptXSize include/freetype/tttables.h /^ FT_Short ySubscriptXSize;$/;" m struct:TT_OS2_ +ySubscriptYOffset android/freetype/include/freetype/tttables.h /^ FT_Short ySubscriptYOffset;$/;" m struct:TT_OS2_ +ySubscriptYOffset include/freetype/tttables.h /^ FT_Short ySubscriptYOffset;$/;" m struct:TT_OS2_ +ySubscriptYSize android/freetype/include/freetype/tttables.h /^ FT_Short ySubscriptYSize;$/;" m struct:TT_OS2_ +ySubscriptYSize include/freetype/tttables.h /^ FT_Short ySubscriptYSize;$/;" m struct:TT_OS2_ +ySuperscriptXOffset android/freetype/include/freetype/tttables.h /^ FT_Short ySuperscriptXOffset;$/;" m struct:TT_OS2_ +ySuperscriptXOffset include/freetype/tttables.h /^ FT_Short ySuperscriptXOffset;$/;" m struct:TT_OS2_ +ySuperscriptXSize android/freetype/include/freetype/tttables.h /^ FT_Short ySuperscriptXSize;$/;" m struct:TT_OS2_ +ySuperscriptXSize include/freetype/tttables.h /^ FT_Short ySuperscriptXSize;$/;" m struct:TT_OS2_ +ySuperscriptYOffset android/freetype/include/freetype/tttables.h /^ FT_Short ySuperscriptYOffset;$/;" m struct:TT_OS2_ +ySuperscriptYOffset include/freetype/tttables.h /^ FT_Short ySuperscriptYOffset;$/;" m struct:TT_OS2_ +ySuperscriptYSize android/freetype/include/freetype/tttables.h /^ FT_Short ySuperscriptYSize;$/;" m struct:TT_OS2_ +ySuperscriptYSize include/freetype/tttables.h /^ FT_Short ySuperscriptYSize;$/;" m struct:TT_OS2_ +y_delta android/freetype/src/autofit/afhints.h /^ FT_Pos y_delta;$/;" m struct:AF_GlyphHintsRec_ +y_delta android/freetype/src/autofit/aftypes.h /^ FT_Pos y_delta; \/* in 1\/64th device pixels *\/$/;" m struct:AF_ScalerRec_ +y_max android/freetype/src/raster/ftraster.c /^ Short y_max; \/* band's maximum *\/$/;" m struct:TBand_ file: +y_min android/freetype/src/raster/ftraster.c /^ Short y_min; \/* band's minimum *\/$/;" m struct:TBand_ file: +y_offset android/freetype/include/freetype/internal/tttypes.h /^ FT_Char y_offset;$/;" m struct:TT_SBit_ComponentRec_ +y_offset include/freetype/internal/tttypes.h /^ FT_Char y_offset;$/;" m struct:TT_SBit_ComponentRec_ +y_offset src/picasso_objects.h /^ scalar y_offset;$/;" m struct:picasso::shadow_state +y_ppem android/freetype/include/freetype/freetype.h /^ FT_Pos y_ppem;$/;" m struct:FT_Bitmap_Size_ +y_ppem android/freetype/include/freetype/freetype.h /^ FT_UShort y_ppem; \/* vertical pixels per EM *\/$/;" m struct:FT_Size_Metrics_ +y_ppem android/freetype/include/freetype/internal/tttypes.h /^ FT_Byte y_ppem;$/;" m struct:TT_SBit_ScaleRec_ +y_ppem android/freetype/include/freetype/internal/tttypes.h /^ FT_Byte y_ppem;$/;" m struct:TT_SBit_StrikeRec_ +y_ppem include/freetype/freetype.h /^ FT_Pos y_ppem;$/;" m struct:FT_Bitmap_Size_ +y_ppem include/freetype/freetype.h /^ FT_UShort y_ppem; \/* vertical pixels per EM *\/$/;" m struct:FT_Size_Metrics_ +y_ppem include/freetype/internal/tttypes.h /^ FT_Byte y_ppem;$/;" m struct:TT_SBit_ScaleRec_ +y_ppem include/freetype/internal/tttypes.h /^ FT_Byte y_ppem;$/;" m struct:TT_SBit_StrikeRec_ +y_ppem_substitute android/freetype/include/freetype/internal/tttypes.h /^ FT_Byte y_ppem_substitute;$/;" m struct:TT_SBit_ScaleRec_ +y_ppem_substitute include/freetype/internal/tttypes.h /^ FT_Byte y_ppem_substitute;$/;" m struct:TT_SBit_ScaleRec_ +y_ratio android/freetype/src/truetype/ttobjs.h /^ FT_Long y_ratio;$/;" m struct:TT_Size_Metrics_ +y_res android/freetype/include/freetype/ftcache.h /^ FT_UInt y_res;$/;" m struct:FTC_ScalerRec_ +y_res include/freetype/ftcache.h /^ FT_UInt y_res;$/;" m struct:FTC_ScalerRec_ +y_scale android/freetype/include/freetype/freetype.h /^ FT_Fixed y_scale; \/* units to 26.6 fractional pixels *\/$/;" m struct:FT_Size_Metrics_ +y_scale android/freetype/src/autofit/afhints.h /^ FT_Fixed y_scale;$/;" m struct:AF_GlyphHintsRec_ +y_scale android/freetype/src/autofit/aftypes.h /^ FT_Fixed y_scale; \/* from font units to 1\/64th device pixels *\/$/;" m struct:AF_ScalerRec_ +y_scale android/freetype/src/cff/cffobjs.h /^ FT_Fixed y_scale;$/;" m struct:CFF_GlyphSlotRec_ +y_scale include/freetype/freetype.h /^ FT_Fixed y_scale; \/* units to 26.6 fractional pixels *\/$/;" m struct:FT_Size_Metrics_ +yadvance android/freetype/include/freetype/ftcache.h /^ FT_Char yadvance;$/;" m struct:FTC_SBitRec_ +yadvance include/freetype/ftcache.h /^ FT_Char yadvance;$/;" m struct:FTC_SBitRec_ +ycells android/freetype/src/smooth/ftgrays.c /^ PCell* ycells;$/;" m struct:TWorker_ file: +ycount android/freetype/src/smooth/ftgrays.c /^ int ycount;$/;" m struct:TWorker_ file: +ymax src/gfx/gfx_renderer.h /^ int ymax(void) const { return m_clip_rect.y2; }$/;" f class:gfx::gfx_renderer +ymax src/picasso_gpc.cpp /^ float ymax; \/* Maximum y coordinate *\/$/;" m struct:picasso::bbox_shape file: +ymin src/gfx/gfx_renderer.h /^ int ymin(void) const { return m_clip_rect.y1; }$/;" f class:gfx::gfx_renderer +ymin src/picasso_gpc.cpp /^ float ymin; \/* Minimum y coordinate *\/$/;" m struct:picasso::bbox_shape file: +ytype src/gfx/gfx_painter.h /^ int ytype;$/;" m struct:gfx::gfx_painter::__anon65 +ytype src/picasso_objects.h /^ ps_wrap_type ytype;$/;" m struct:_ps_pattern +yx android/freetype/include/freetype/fttypes.h /^ FT_Fixed yx, yy;$/;" m struct:FT_Matrix_ +yx android/freetype/src/cff/cffobjs.h /^ FT_Fixed yx, yy;$/;" m struct:CFF_Transform_ +yx android/freetype/src/truetype/ttobjs.h /^ FT_Fixed yx, yy;$/;" m struct:TT_Transform_ +yx include/freetype/fttypes.h /^ FT_Fixed yx, yy;$/;" m struct:FT_Matrix_ +yy android/freetype/include/freetype/fttypes.h /^ FT_Fixed yx, yy;$/;" m struct:FT_Matrix_ +yy android/freetype/src/cff/cffobjs.h /^ FT_Fixed yx, yy;$/;" m struct:CFF_Transform_ +yy android/freetype/src/truetype/ttobjs.h /^ FT_Fixed yx, yy;$/;" m struct:TT_Transform_ +yy include/freetype/fttypes.h /^ FT_Fixed yx, yy;$/;" m struct:FT_Matrix_ +zero src/include/data_vector.h /^ void zero(void) { memset(m_array, 0, sizeof(T) * m_size); }$/;" f class:picasso::pod_vector +zone android/freetype/include/freetype/internal/psaux.h /^ T1_Decoder_Zone zone;$/;" m struct:T1_DecoderRec_ +zone android/freetype/include/freetype/internal/tttypes.h /^ TT_GlyphZoneRec zone;$/;" m struct:TT_LoaderRec_ +zone android/freetype/src/cff/cffgload.h /^ CFF_Decoder_Zone* zone;$/;" m struct:CFF_Decoder_ +zone android/freetype/src/pshinter/pshalgo.h /^ PSH_Zone zone;$/;" m struct:PSH_Hint_TableRec_ +zone android/freetype/src/truetype/ttobjs.h /^ TT_GlyphZoneRec zone; \/* glyph loader points zone *\/$/;" m struct:TT_DriverRec_ +zone android/freetype/src/truetype/ttobjs.h /^ TT_GlyphZoneRec zone;$/;" m struct:TT_SubglyphRec_ +zone android/freetype/src/truetype/ttobjs.h /^ tt_glyphzone_done( TT_GlyphZone zone );$/;" v +zone include/freetype/internal/psaux.h /^ T1_Decoder_Zone zone;$/;" m struct:T1_DecoderRec_ +zone include/freetype/internal/tttypes.h /^ TT_GlyphZoneRec zone;$/;" m struct:TT_LoaderRec_ +zones android/freetype/include/freetype/internal/psaux.h /^ T1_Decoder_ZoneRec zones[T1_MAX_SUBRS_CALLS + 1];$/;" m struct:T1_DecoderRec_ +zones android/freetype/src/cff/cffgload.h /^ CFF_Decoder_Zone zones[CFF_MAX_SUBRS_CALLS + 1];$/;" m struct:CFF_Decoder_ +zones android/freetype/src/pshinter/pshalgo.h /^ PSH_ZoneRec* zones;$/;" m struct:PSH_Hint_TableRec_ +zones android/freetype/src/pshinter/pshglob.h /^ PSH_Blue_ZoneRec zones[PS_GLOBALS_MAX_BLUE_ZONES];$/;" m struct:PSH_Blue_TableRec_ +zones include/freetype/internal/psaux.h /^ T1_Decoder_ZoneRec zones[T1_MAX_SUBRS_CALLS + 1];$/;" m struct:T1_DecoderRec_ +zoomFactor demos/clock.c /^static float zoomFactor = 1;$/;" v file: +zoomFactor demos/flowers.c /^static float zoomFactor = 1;$/;" v file: +zoomFactor demos/lake.c /^static double zoomFactor = 1;$/;" v file: +zoomFactor demos/subwaymap.c /^static float zoomFactor = 1;$/;" v file: +zoomFactor demos/tiger.c /^static float zoomFactor = 1;$/;" v file: +zp0 android/freetype/src/truetype/ttinterp.h /^ TT_GlyphZoneRec zp0, \/* zone records *\/$/;" m struct:TT_ExecContextRec_ +zp1 android/freetype/src/truetype/ttinterp.h /^ zp1,$/;" m struct:TT_ExecContextRec_ +zp2 android/freetype/src/truetype/ttinterp.h /^ zp2,$/;" m struct:TT_ExecContextRec_ +~PWindow demos/platform_qt4.cpp /^ virtual ~PWindow()$/;" f class:PWindow +~PWindow test/testQt4.cpp /^ virtual ~PWindow()$/;" f class:PWindow +~abstract_font_adapter src/include/interfaces.h /^ virtual ~abstract_font_adapter() {}$/;" f class:picasso::abstract_font_adapter +~abstract_gradient_adapter src/include/interfaces.h /^ virtual ~abstract_gradient_adapter() {}$/;" f class:picasso::abstract_gradient_adapter +~abstract_mask_layer src/include/interfaces.h /^ virtual ~abstract_mask_layer() {}$/;" f class:picasso::abstract_mask_layer +~abstract_painter src/include/interfaces.h /^ virtual ~abstract_painter() {}$/;" f class:picasso::abstract_painter +~abstract_raster_adapter src/include/interfaces.h /^ virtual ~abstract_raster_adapter() {}$/;" f class:picasso::abstract_raster_adapter +~abstract_rendering_buffer src/include/interfaces.h /^ virtual ~abstract_rendering_buffer() {}$/;" f class:picasso::abstract_rendering_buffer +~abstract_trans_affine src/include/interfaces.h /^ virtual ~abstract_trans_affine() {}$/;" f class:picasso::abstract_trans_affine +~block_allocator src/include/data_vector.h /^ ~block_allocator()$/;" f class:picasso::block_allocator +~context_state src/picasso_objects.h /^ ~context_state()$/;" f struct:picasso::context_state +~conv_clipper src/include/convert.h /^ virtual ~conv_clipper()$/;" f class:picasso::conv_clipper +~device src/include/device.h /^ virtual ~device() {}$/;" f class:picasso::device +~font_adapter src/picasso_font.h /^ ~font_adapter()$/;" f class:picasso::font_adapter +~font_desc src/picasso_font.h /^ ~font_desc()$/;" f class:picasso::font_desc +~font_engine src/picasso_font.cpp /^font_engine::~font_engine()$/;" f class:picasso::font_engine +~gfx_device src/gfx/gfx_device.cpp /^gfx_device::~gfx_device()$/;" f class:gfx::gfx_device +~gfx_gradient_adapter src/gfx/gfx_gradient_adapter.h /^ virtual ~gfx_gradient_adapter()$/;" f class:gfx::gfx_gradient_adapter +~gfx_gradient_wrapper src/gfx/gfx_gradient_adapter.h /^ virtual ~gfx_gradient_wrapper() { }$/;" f class:gfx::gfx_gradient_wrapper +~gfx_mask_layer src/gfx/gfx_mask_layer.h /^ virtual ~gfx_mask_layer() $/;" f class:gfx::gfx_mask_layer +~gfx_painter src/gfx/gfx_painter.h /^ virtual ~gfx_painter() {}$/;" f class:gfx::gfx_painter +~gfx_pixfmt_wrapper src/gfx/gfx_pixfmt_wrapper.h /^ ~gfx_pixfmt_wrapper() { clear_mask(); clear_key();}$/;" f class:gfx::gfx_pixfmt_wrapper +~gfx_raster_adapter src/gfx/gfx_raster_adapter.cpp /^gfx_raster_adapter::~gfx_raster_adapter()$/;" f class:gfx::gfx_raster_adapter +~gfx_raster_adapter_impl src/gfx/gfx_raster_adapter.cpp /^ ~gfx_raster_adapter_impl()$/;" f class:gfx::gfx_raster_adapter_impl +~gfx_rasterizer_cells_aa src/gfx/gfx_rasterizer_cell.h /^ ~gfx_rasterizer_cells_aa()$/;" f class:gfx::gfx_rasterizer_cells_aa +~gfx_renderer src/gfx/gfx_renderer.h /^ ~gfx_renderer()$/;" f class:gfx::gfx_renderer +~gfx_scanline_cell_storage src/gfx/gfx_scanline_storage.h /^ ~gfx_scanline_cell_storage()$/;" f class:gfx::gfx_scanline_cell_storage +~gfx_trans_affine src/gfx/gfx_trans_affine.h /^ virtual ~gfx_trans_affine()$/;" f class:gfx::gfx_trans_affine +~glyph_cache_manager src/picasso_font_cache.h /^ ~glyph_cache_manager()$/;" f class:picasso::glyph_cache_manager +~gradient_adapter src/picasso_gradient.cpp /^gradient_adapter::~gradient_adapter()$/;" f class:picasso::gradient_adapter +~graphic_brush src/picasso_objects.h /^ ~graphic_brush()$/;" f struct:picasso::graphic_brush +~graphic_path src/core/graphic_path.cpp /^graphic_path::~graphic_path()$/;" f class:picasso::graphic_path +~graphic_pen src/picasso_objects.h /^ ~graphic_pen()$/;" f struct:picasso::graphic_pen +~mask_layer src/picasso_mask.cpp /^mask_layer::~mask_layer()$/;" f class:picasso::mask_layer +~mono_storage src/picasso_font.h /^ ~mono_storage()$/;" f class:picasso::mono_storage +~painter src/picasso_painter.cpp /^painter::~painter()$/;" f class:picasso::painter +~pattern_wrapper src/gfx/gfx_pixfmt_wrapper.h /^ virtual ~pattern_wrapper() {}$/;" f class:gfx::pattern_wrapper +~pod_array src/include/data_vector.h /^ ~pod_array()$/;" f class:picasso::pod_array +~pod_bvector src/include/data_vector.h /^template pod_bvector::~pod_bvector()$/;" f class:picasso::pod_bvector +~pod_vector src/include/data_vector.h /^ ~pod_vector() $/;" f class:picasso::pod_vector +~raster_adapter src/picasso_raster_adapter.cpp /^raster_adapter::~raster_adapter()$/;" f class:picasso::raster_adapter +~refptr src/include/refptr.h /^ ~refptr()$/;" f class:picasso::refptr +~rendering_buffer src/picasso_rendering_buffer.cpp /^rendering_buffer::~rendering_buffer()$/;" f class:picasso::rendering_buffer +~shared src/include/shared.h /^ virtual ~shared()$/;" f class:picasso::shared +~trans_affine src/picasso_matrix.cpp /^trans_affine::~trans_affine()$/;" f class:picasso::trans_affine +~vertex_container src/include/vertex.h /^ virtual ~vertex_container() {}$/;" f class:picasso::vertex_container +~vertex_source src/include/vertex.h /^ virtual ~vertex_source() {}$/;" f class:picasso::vertex_source diff --git a/SConstruct b/SConstruct index 2933097d4..3db58e5d0 100644 --- a/SConstruct +++ b/SConstruct @@ -10,8 +10,8 @@ GTEST_ROOT = os.path.join(LFTK_ROOT, '3rd/gtest/googletest') BIN_DIR=os.path.join(LFTK_ROOT, 'bin') LIB_DIR=os.path.join(LFTK_ROOT, 'lib') -LCD='NANOVG' LCD='SDL' +LCD='NANOVG' VGCANVAS='AGG' VGCANVAS='PICASSO' @@ -23,6 +23,11 @@ if LCD == 'NANOVG': COMMON_CCFLAGS = COMMON_CCFLAGS + ' -DWITH_NANOVG -DWITH_GL3' else: COMMON_CCFLAGS = COMMON_CCFLAGS + ' -DWITH_STB_IMAGE -DWITH_STB_FONT -DSDL2' + if VGCANVAS == 'AGG': + COMMON_CCFLAGS = COMMON_CCFLAGS + ' -DWITH_AGG' + elif VGCANVAS == 'PICASSO': + COMMON_CCFLAGS = COMMON_CCFLAGS + ' -DWITH_PICASSO' + os.environ['LCD'] = LCD os.environ['VGCANVAS'] =VGCANVAS diff --git a/demos/demo2_app.c b/demos/demo2_app.c index f070ed576..dc7412596 100644 --- a/demos/demo2_app.c +++ b/demos/demo2_app.c @@ -302,16 +302,54 @@ static void draw_basic_shapes(vgcanvas_t* vg, bool_t stroke) { static void stroke_lines(vgcanvas_t* vg) { vgcanvas_save(vg); + vgcanvas_move_to(vg, 0, 0); vgcanvas_line_to(vg, 40, 40); + vgcanvas_translate(vg, 40, 0); - vgcanvas_quad_to(vg, 40, 40, 40, 0); + vgcanvas_move_to(vg, 0, 0); + vgcanvas_quad_to(vg, 40, 0, 40, 40); + vgcanvas_translate(vg, 40, 0); + vgcanvas_move_to(vg, 0, 0); vgcanvas_bezier_to(vg, 20, 0, 20, 40, 40, 40); + + vgcanvas_translate(vg, 40, 0); + + vgcanvas_stroke(vg); + vgcanvas_set_line_width(vg, 2); + vgcanvas_arc(vg, 20, 20, 15, 0, 3.14, FALSE); + vgcanvas_arc(vg, 20, 20, 15, 0, 3.14/2, TRUE); + vgcanvas_stroke(vg); + vgcanvas_stroke(vg); vgcanvas_restore(vg); } +static void draw_image(vgcanvas_t* vg) { + bitmap_t img; + + vgcanvas_translate(vg, 10, 0); + image_manager_load(default_im(), "earth", &img); + vgcanvas_draw_image(vg, &img, 5, 5, img.w-10, img.h-10, 0, 0, img.w * 2, img.h * 2); + + vgcanvas_translate(vg, 100, 0); + vgcanvas_draw_image(vg, &img, 0, 0, img.w, img.h, 0, 0, img.w, img.h); + + image_manager_load(default_im(), "bricks", &img); + + vgcanvas_translate(vg, 50, 0); + + vgcanvas_translate(vg, img.w >> 1, img.h >> 1); + vgcanvas_rotate(vg, 3.14/4); + vgcanvas_translate(vg, -img.w >> 1, -img.h >> 1); + + vgcanvas_scale(vg, 1.5, 1.5); + vgcanvas_draw_image(vg, &img, 0, 0, img.w, img.h, 0, 0, img.w, img.h); + + return; +} + static ret_t on_paint_vg(void* ctx, event_t* e) { paint_event_t* evt = (paint_event_t*)e; canvas_t* c = evt->c; @@ -325,8 +363,10 @@ static ret_t on_paint_vg(void* ctx, event_t* e) { vgcanvas_translate(vg, 0, 50); draw_basic_shapes(vg, TRUE); vgcanvas_translate(vg, 0, 50); - //stroke_lines(vg); - + stroke_lines(vg); + vgcanvas_translate(vg, 0, 50); + draw_image(vg); + return RET_OK; } diff --git a/demos/res/src/images/slider_drag.data b/demos/res/src/images/slider_drag.data index 4435a0c85..d59761edc 100644 --- a/demos/res/src/images/slider_drag.data +++ b/demos/res/src/images/slider_drag.data @@ -157,4 +157,4 @@ const unsigned char image_slider_drag[] = { 0x51,0x51,0x51,0xc0,0x51,0x51,0x51,0xff,0x51,0x51,0x51,0xff,0x51,0x51,0x51,0xff,0x51,0x51,0x51,0xff, 0x51,0x51,0x51,0xd0,0x50,0x50,0x50,0xa0,0x50,0x50,0x50,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,};/*3176*/ +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x7f,0x00,0x00,};/*3176*/ diff --git a/demos/res/src/images/unchecked.data b/demos/res/src/images/unchecked.data index 4ffb2f13b..75fa55710 100644 --- a/demos/res/src/images/unchecked.data +++ b/demos/res/src/images/unchecked.data @@ -116,4 +116,4 @@ const unsigned char image_unchecked[] = { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0xff,0x7f,0x00,0x00,};/*2344*/ +0x00,0x00,0x00,0x00,};/*2344*/ diff --git a/demos/res/src/ui/window2.data b/demos/res/src/ui/window2.data index 33f6143c0..943ff4b2d 100644 --- a/demos/res/src/ui/window2.data +++ b/demos/res/src/ui/window2.data @@ -10,4 +10,4 @@ const unsigned char ui_window2[] = { 0x6f,0x70,0x00,0x74,0x65,0x78,0x74,0x00,0x54,0x6f,0x70,0x00,0x00,0x00,0x01,0x00,0x0a,0x00,0x03,0x02, 0x01,0x00,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x19,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x6e,0x61, 0x6d,0x65,0x00,0x63,0x6c,0x6f,0x73,0x65,0x00,0x74,0x65,0x78,0x74,0x00,0x43,0x6c,0x6f,0x73,0x65,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,};/*227*/ +0x00,0x00,0x00,0x6c,0x66,0x74,0x6b,};/*227*/ diff --git a/src/image_loader/image_loader_stb.c b/src/image_loader/image_loader_stb.c index 4edeb615d..1139adfbf 100644 --- a/src/image_loader/image_loader_stb.c +++ b/src/image_loader/image_loader_stb.c @@ -39,6 +39,25 @@ static ret_t image_stb_destroy(bitmap_t* image) { return RET_OK; } +static ret_t image_to_abgr32(bitmap_t* image) { + int i = 0; + uint8_t* p = image->data; + int n = image->w * image->h; + + for(i = 0; i < n; i++) { + uint8_t t = p[0]; + p[0] = p[3]; + p[3] = t; + t = p[1]; + p[1] = p[2]; + p[2] = t; + + p+=4; + } + + return RET_OK; +} + static ret_t image_loader_stb_load(image_loader_t* l, const uint8_t* buff, uint32_t buff_size, bitmap_t* image) { int i = 0; @@ -73,17 +92,26 @@ static ret_t image_loader_stb_load(image_loader_t* l, const uint8_t* buff, uint3 data4 += 4; data += 3; } +#ifdef WITH_PICASSO + image_to_abgr32(image); +#endif } else { image->data = data; image->destroy = image_stb_destroy; for (i = 0; i < w * h; i += n) { if (data[3] != 0xff) { +#ifdef WITH_PICASSO + image_to_abgr32(image); +#endif return RET_OK; } data += 4; } image->flags |= BITMAP_FLAG_OPAQUE; +#ifdef WITH_PICASSO + image_to_abgr32(image); +#endif } return RET_OK; diff --git a/src/lcd/lcd_mem.inc b/src/lcd/lcd_mem.inc index 315448410..e094c0a23 100644 --- a/src/lcd/lcd_mem.inc +++ b/src/lcd/lcd_mem.inc @@ -75,7 +75,7 @@ static ret_t lcd_mem_draw_points(lcd_t* lcd, point_t* points, uint32_t nr) { if (color.rgba.a == 0xff) { p[0] = pixel; } else if (color.rgba.a) { - p[0] = blend_pixel(p[i], color); + p[0] = blend_pixel(p[0], color); } } diff --git a/src/lcd/lcd_sdl2.c b/src/lcd/lcd_sdl2.c index cd43de512..ffb38c767 100644 --- a/src/lcd/lcd_sdl2.c +++ b/src/lcd/lcd_sdl2.c @@ -158,7 +158,8 @@ lcd_t* lcd_sdl2_init(SDL_Renderer* render) { base->h = (wh_t)h; lcd.lcd_mem = (lcd_mem_t*)lcd_mem_create(w, h, FALSE); lcd.texture = - SDL_CreateTexture(render, SDL_PIXELFORMAT_RGBA8888, SDL_TEXTUREACCESS_STREAMING, w, h); + SDL_CreateTexture(render, SDL_PIXELFORMAT_RGBA8888, SDL_TEXTUREACCESS_STREAMING, w, h); + //SDL_CreateTexture(render, SDL_PIXELFORMAT_ABGR8888, SDL_TEXTUREACCESS_STREAMING, w, h); // SDL_CreateTexture(render, SDL_PIXELFORMAT_RGB565, SDL_TEXTUREACCESS_STREAMING, w, h); return base; diff --git a/src/vgcanvas/vgcanvas_picasso.cpp b/src/vgcanvas/vgcanvas_picasso.cpp index 6697b60d7..914d01e51 100644 --- a/src/vgcanvas/vgcanvas_picasso.cpp +++ b/src/vgcanvas/vgcanvas_picasso.cpp @@ -23,8 +23,13 @@ #include "base/mem.h" #include "base/utf8.h" #include "base/vgcanvas.h" +#include "picasso_objects.h" #include "base/resource_manager.h" +#define MAX_IMAGE_NR 256 +#define format COLOR_FORMAT_ABGR +//#define format COLOR_FORMAT_RGBA + typedef struct _vgcanvas_picasso_t { vgcanvas_t base; @@ -35,6 +40,7 @@ typedef struct _vgcanvas_picasso_t { ps_path* path; ps_context* vg; ps_canvas* canvas; + ps_image* images[MAX_IMAGE_NR]; } vgcanvas_picasso_t; static ps_point ps_point_init(float_t x, float_t y) { @@ -53,6 +59,29 @@ static ps_color ps_color_init(color_t color) { return c; } +static ps_image* vgcanvas_picasso_ensure_image(vgcanvas_picasso_t* canvas, bitmap_t* img) { + int32_t i = 0; + ps_image* pimg = NULL; + for (i = 0; i < MAX_IMAGE_NR; i++) { + ps_image* iter = canvas->images[i]; + if (iter && iter->buffer.buffer() == (img->data)) { + return iter; + } + } + + pimg = ps_image_create_with_data((ps_byte*)img->data, format, img->w, img->h, img->w * 4); + pimg->buffer.set_transparent(!(img->flags & BITMAP_FLAG_OPAQUE)); + + for (i = 0; i < MAX_IMAGE_NR; i++) { + if (canvas->images[i] == NULL) { + canvas->images[i] = pimg; + return pimg; + } + } + + return NULL; +} + ret_t vgcanvas_picasso_begin_frame(vgcanvas_t* vgcanvas, rect_t* dirty_rect) { ps_color color = {0, 0, 0, 0}; vgcanvas_picasso_t* picasso = (vgcanvas_picasso_t*)vgcanvas; @@ -161,12 +190,13 @@ static ret_t vgcanvas_picasso_arc_to(vgcanvas_t* vgcanvas, float_t x1, float_t y ps_point p2 = ps_point_init(x2, y2); ps_context* vg = ((vgcanvas_picasso_t*)vgcanvas)->vg; + /*TODO: + * ps_arc_to(vg, r, &p1, &p2); + */ (void)p1; (void)p2; (void)vg; - /*TODO*/ - return RET_OK; } @@ -383,19 +413,28 @@ static uint32_t vgcanvas_picasso_measure_text(vgcanvas_t* vgcanvas, const char* static ret_t vgcanvas_picasso_draw_image(vgcanvas_t* vgcanvas, bitmap_t* img, float_t sx, float_t sy, float_t sw, float_t sh, float_t dx, float_t dy, float_t dw, float_t dh) { + float_t x = 0; + float_t y = 0; + float_t w = 0; + float_t h = 0; + float_t scale_x = dw/sw; + float_t scale_y = dh/sh; ps_context* vg = ((vgcanvas_picasso_t*)vgcanvas)->vg; + ps_image* pimg = vgcanvas_picasso_ensure_image((vgcanvas_picasso_t*)vgcanvas, img); - (void)vg; - (void)sx; - (void)sy; - (void)sw; - (void)sh; - (void)dx; - (void)dy; - (void)dw; - (void)dh; - (void)img; - /*TODO*/ + vgcanvas_clip_rect(vgcanvas, dx, dy, dw, dh); + + ps_set_source_image(vg, pimg); + ps_set_filter(vg, FILTER_NEAREST); + vgcanvas_begin_path(vgcanvas); + + x = dx - scale_x * sx; + y = dy - scale_y * sy; + w = img->w * scale_x; + h = img->h * scale_y; + + vgcanvas_rect(vgcanvas, x, y, w, h); + vgcanvas_fill(vgcanvas); return RET_OK; } @@ -586,7 +625,7 @@ vgcanvas_t* vgcanvas_create(uint32_t w, uint32_t h, void* buff) { picasso->base.vt = &vt; ps_initialize(); - picasso->canvas = ps_canvas_create_with_data((ps_byte*)buff, COLOR_FORMAT_ABGR, w, h, w*4); + picasso->canvas = ps_canvas_create_with_data((ps_byte*)buff, format, w, h, w*4); picasso->vg = ps_context_create(picasso->canvas, 0); return &(picasso->base); diff --git a/update_res.sh b/update_res.sh index 5154457ad..a7f584a83 100755 --- a/update_res.sh +++ b/update_res.sh @@ -1,5 +1,7 @@ #!/bin/bash +scons + BIN_DIR=./bin RAW_DIR=demos/res/raw SRC_DIR=demos/res/src @@ -15,12 +17,13 @@ $BIN_DIR/resgen $RAW_DIR/fonts/font.ttf $SRC_DIR/fonts/default_ttf.data $BIN_DIR/resgen $RAW_DIR/fonts/action_protocol.ttf $SRC_DIR/fonts/ap.data $BIN_DIR/fontgen $RAW_DIR/fonts/font.ttf $RAW_DIR/fonts/text.txt $SRC_DIR/fonts/default.data 20 -for f in $RAW_DIR/images/*.png; +for f in $RAW_DIR/images/*.*; do F1=${f/raw/src}; F2=${F1/\.png/.data}; F3=${F2/\.jpg/.data}; + echo $BIN_DIR/imagegen $f $F3 $BIN_DIR/imagegen $f $F3 done @@ -29,6 +32,7 @@ do F1=${f/raw/src}; F2=${F1/\.xml/.data}; + echo $BIN_DIR/xml_to_ui $f $F2 $BIN_DIR/xml_to_ui $f $F2 done @@ -50,4 +54,4 @@ function gen_res_c() { gen_res_c > demos/resource.c - +scons