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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/tools/site_compare/drivers/
__init__.py 11 keyboard = __import__(platform_dir+".keyboard", globals(), locals(), [''])
12 mouse = __import__(platform_dir+".mouse", globals(), locals(), [''])
13 windowing = __import__(platform_dir+".windowing", globals(), locals(), [''])
  /external/chromium_org/tools/site_compare/operators/
__init__.py 21 module = __import__(operator, globals(), locals(), [''])
  /external/chromium_org/tools/site_compare/scrapers/firefox/
__init__.py 23 return __import__("firefox2", globals(), locals(), [''])
  /external/chromium_org/tools/site_compare/scrapers/ie/
__init__.py 23 return __import__("ie7", globals(), locals(), [''])
  /external/chromium_org/third_party/freetype/src/autofit/
afglobal.c 56 af_face_globals_compute_script_coverage( AF_FaceGlobals globals )
59 FT_Face face = globals->face;
61 FT_Byte* gscripts = globals->glyph_scripts;
67 FT_MEM_SET( globals->glyph_scripts,
69 globals->glyph_count );
105 gindex < (FT_ULong)globals->glyph_count &&
116 if ( gindex < (FT_ULong)globals->glyph_count &&
129 if ( gindex != 0 && gindex < (FT_ULong)globals->glyph_count )
138 if ( globals->module->fallback_script != AF_SCRIPT_NONE )
143 for ( nn = 0; nn < globals->glyph_count; nn++
165 AF_FaceGlobals globals = NULL; local
    [all...]
afmodule.c 54 AF_FaceGlobals globals; local
60 globals = (AF_FaceGlobals)face->autohint.data;
61 if ( !globals )
65 error = af_face_globals_new( face, &globals, module );
69 (FT_Pointer)globals;
76 *aglobals = globals;
103 AF_FaceGlobals globals; local
106 error = af_property_get_face_globals( prop->face, &globals, module );
108 globals->increase_x_height = prop->limit;
132 AF_FaceGlobals globals; local
153 AF_FaceGlobals globals; local
    [all...]
afglobal.h 32 * Default values and flags for both autofitter globals (found in
33 * AF_ModuleRec) and face globals (in AF_FaceGlobalsRec).
89 af_face_globals_get_metrics( AF_FaceGlobals globals,
95 af_face_globals_free( AF_FaceGlobals globals ); variable
98 af_face_globals_is_digit( AF_FaceGlobals globals,
  /external/freetype/src/autofit/
afglobal.c 133 af_face_globals_compute_style_coverage( AF_FaceGlobals globals )
136 FT_Face face = globals->face;
138 FT_Byte* gstyles = globals->glyph_styles;
145 FT_MEM_SET( globals->glyph_styles,
147 globals->glyph_count );
180 globals->module->default_script )
194 gindex < (FT_ULong)globals->glyph_count &&
205 if ( gindex < (FT_ULong)globals->glyph_count &&
214 af_get_coverage( globals, style_class, gstyles );
219 af_get_coverage( globals, AF_STYLE_CLASSES_GET[dflt], gstyles )
312 AF_FaceGlobals globals = NULL; local
    [all...]
afmodule.c 54 AF_FaceGlobals globals; local
60 globals = (AF_FaceGlobals)face->autohint.data;
61 if ( !globals )
65 error = af_face_globals_new( face, &globals, module );
69 (FT_Pointer)globals;
76 *aglobals = globals;
135 AF_FaceGlobals globals; local
138 error = af_property_get_face_globals( prop->face, &globals, module );
140 globals->increase_x_height = prop->limit;
165 AF_FaceGlobals globals; local
197 AF_FaceGlobals globals; local
    [all...]
  /ndk/sources/cxx-stl/gabi++/src/
exception.cc 63 __cxa_eh_globals* globals = __cxa_get_globals();
64 return globals->uncaughtExceptions != 0;
cxxabi.cc 263 __cxa_eh_globals* globals = __cxa_get_globals(); local
266 globals->uncaughtExceptions += 1;
339 __cxa_eh_globals *globals = __cxa_get_globals(); local
340 __cxa_exception* header = globals->caughtExceptions;
350 globals->caughtExceptions = 0;
359 __cxa_eh_globals* globals = __cxa_get_globals(); variable
362 if (globals->caughtExceptions) {
371 if (header != globals->caughtExceptions) {
372 header->nextException = globals->caughtExceptions;
373 globals->caughtExceptions = header
381 __cxa_eh_globals *globals = __cxa_get_globals_fast(); variable
419 __cxa_eh_globals* globals = __cxa_get_globals(); variable
    [all...]
  /external/libcxxabi/src/
cxa_exception.cpp 225 __cxa_eh_globals *globals = __cxa_get_globals(); local
234 globals->uncaughtExceptions += 1; // Not atomically, since globals are thread-local
279 __cxa_eh_globals* globals = __cxa_get_globals(); local
287 exception_header->nextPropagatingException = globals->propagatingExceptions;
288 globals->propagatingExceptions = exception_header;
296 if (NULL != globals->propagatingExceptions)
298 globals->propagatingExceptions = exception_header;
317 __cxa_eh_globals* globals = __cxa_get_globals(); local
318 __cxa_exception* exception_header = globals->propagatingExceptions
392 __cxa_eh_globals* globals = __cxa_get_globals(); local
461 __cxa_eh_globals* globals = __cxa_get_globals_fast(); \/\/ __cxa_get_globals called in __cxa_begin_catch local
527 __cxa_eh_globals *globals = __cxa_get_globals_fast(); local
554 __cxa_eh_globals* globals = __cxa_get_globals(); local
645 __cxa_eh_globals* globals = __cxa_get_globals_fast(); local
718 __cxa_eh_globals* globals = __cxa_get_globals_fast(); local
    [all...]