/third_party/skia/third_party/externals/freetype/src/autofit/ |
H A D | afglobal.c | 126 af_face_globals_compute_style_coverage( AF_FaceGlobals globals ) in af_face_globals_compute_style_coverage() 129 FT_Face face = globals->face; in af_face_globals_compute_style_coverage() 131 FT_UShort* gstyles = globals->glyph_styles; in af_face_globals_compute_style_coverage() 138 for ( i = 0; i < (FT_UInt)globals->glyph_count; i++ ) in af_face_globals_compute_style_coverage() 172 globals->module->default_script ) in af_face_globals_compute_style_coverage() 186 gindex < (FT_ULong)globals->glyph_count && in af_face_globals_compute_style_coverage() 197 if ( gindex < (FT_ULong)globals->glyph_count && in af_face_globals_compute_style_coverage() 215 gindex < (FT_ULong)globals->glyph_count && in af_face_globals_compute_style_coverage() 226 if ( gindex < (FT_ULong)globals->glyph_count && in af_face_globals_compute_style_coverage() 235 af_shaper_get_coverage( globals, style_clas in af_face_globals_compute_style_coverage() 333 AF_FaceGlobals globals = NULL; FT_LOCAL_DEF() local [all...] |
H A D | afmodule.c | 78 AF_FaceGlobals globals; in af_property_get_face_globals() local 84 globals = (AF_FaceGlobals)face->autohint.data; in af_property_get_face_globals() 85 if ( !globals ) in af_property_get_face_globals() 89 error = af_face_globals_new( face, &globals, module ); in af_property_get_face_globals() 93 (FT_Pointer)globals; in af_property_get_face_globals() 100 *aglobals = globals; in af_property_get_face_globals() 177 AF_FaceGlobals globals; in af_property_set() local 187 error = af_property_get_face_globals( prop->face, &globals, module ); in af_property_set() 189 globals->increase_x_height = prop->limit; in af_property_set() 301 AF_FaceGlobals globals; in af_property_get() local 333 AF_FaceGlobals globals; af_property_get() local [all...] |
H A D | afloader.c | 40 /* Reset glyph loader and compute globals if necessary. */ 51 loader->globals = (AF_FaceGlobals)face->autohint.data; in FT_LOCAL_DEF() 53 if ( !loader->globals ) in FT_LOCAL_DEF() 55 error = af_face_globals_new( face, &loader->globals, module ); in FT_LOCAL_DEF() 59 (FT_Pointer)loader->globals; in FT_LOCAL_DEF() 75 loader->globals = NULL; in af_loader_done() 96 AF_FaceGlobals globals = loader->globals; in af_loader_embolden_glyph_in_slot() local 105 globals->stem_darkening_for_ppem; in af_loader_embolden_glyph_in_slot() 138 ( stdVW > 0 && stdVW != globals in af_loader_embolden_glyph_in_slot() [all...] |
H A D | afshaper.c | 99 af_shaper_get_coverage( AF_FaceGlobals globals, in af_shaper_get_coverage() argument 124 if ( !globals || !style_class || !gstyles ) in af_shaper_get_coverage() 127 face = hb_font_get_face( globals->hb_font ); in af_shaper_get_coverage() 287 hb_codepoint_t gidx = FT_Get_Char_Index( globals->face, ch ); in af_shaper_get_coverage() 378 if ( idx >= (hb_codepoint_t)globals->glyph_count ) in af_shaper_get_coverage() 476 upem = (FT_Int)metrics->globals->face->units_per_EM; in af_shaper_get_cluster() 480 font = metrics->globals->hb_font; in af_shaper_get_cluster() 507 hb_buffer_t* hb_buf = metrics->globals->hb_buf; in af_shaper_get_cluster() 591 af_shaper_get_coverage( AF_FaceGlobals globals, in af_shaper_get_coverage() argument 596 FT_UNUSED( globals ); in af_shaper_get_coverage() [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | importEqualsError45874.js | 3 //// [globals.ts]
4 namespace globals { 8 import Foo = globals.toString.Blah; 14 //// [globals.js]
15 var globals;
variable 16 (function (globals) {
17 globals.Bar = {};
18 })(globals || (globals = {}));
19 var Foo = globals [all...] |
/third_party/skia/third_party/externals/freetype/src/pshinter/ |
H A D | pshglob.c | 41 psh_globals_scale_widths( PSH_Globals globals, in psh_globals_scale_widths() argument 44 PSH_Dimension dim = &globals->dimension[direction]; in psh_globals_scale_widths() 619 psh_globals_destroy( PSH_Globals globals ) in psh_globals_destroy() 621 if ( globals ) in psh_globals_destroy() 626 memory = globals->memory; in psh_globals_destroy() 627 globals->dimension[0].stdw.count = 0; in psh_globals_destroy() 628 globals->dimension[1].stdw.count = 0; in psh_globals_destroy() 630 globals->blues.normal_top.count = 0; in psh_globals_destroy() 631 globals->blues.normal_bottom.count = 0; in psh_globals_destroy() 632 globals in psh_globals_destroy() 649 PSH_Globals globals = NULL; psh_globals_new() local 754 psh_globals_set_scale( PSH_Globals globals, FT_Fixed x_scale, FT_Fixed y_scale, FT_Fixed x_delta, FT_Fixed y_delta ) psh_globals_set_scale() argument [all...] |
/third_party/python/Lib/ |
H A D | dataclasses.py | 413 def _create_fn(name, args, body, *, globals=None, locals=None, 433 exec(txt, globals, ns) 449 def _field_init(f, frozen, globals, self_name, slots): 458 globals[default_name] = f.default_factory 477 globals[default_name] = f.default_factory 486 globals[default_name] = f.default 491 globals[default_name] = f.default 529 self_name, globals, slots): 584 globals=globals, [all...] |
H A D | timeit.py | 64 _globals = globals 90 module doc string). If 'globals' is specified, the code will be 103 globals=None): 107 global_ns = _globals() if globals is None else globals 232 number=default_number, globals=None): 234 return Timer(stmt, setup, timer, globals).timeit(number) 237 repeat=default_repeat, number=default_number, globals=None): 239 return Timer(stmt, setup, timer, globals).repeat(repeat, number)
|
H A D | bdb.py | 28 is determined by the __name__ in the frame globals. 585 def run(self, cmd, globals=None, locals=None): 588 globals defaults to __main__.dict; locals defaults to globals. 590 if globals is None: 592 globals = __main__.__dict__ 594 locals = globals 600 exec(cmd, globals, locals) 607 def runeval(self, expr, globals=None, locals=None): 610 globals default [all...] |
/third_party/mesa3d/src/intel/compiler/ |
H A D | brw_nir_lower_rt_intrinsics.c | 57 struct brw_nir_rt_globals_defs globals; in lower_rt_intrinsics_impl() local 58 brw_nir_rt_load_globals(b, &globals); in lower_rt_intrinsics_impl() 155 sysval = globals.launch_size; in lower_rt_intrinsics_impl() 263 sysval = globals.base_mem_addr; in lower_rt_intrinsics_impl() 267 sysval = nir_imul_imm(b, globals.hw_stack_size, 64); in lower_rt_intrinsics_impl() 271 sysval = nir_imul_imm(b, globals.sw_stack_size, 64); in lower_rt_intrinsics_impl() 275 sysval = globals.num_dss_rt_stacks; in lower_rt_intrinsics_impl() 279 sysval = globals.hit_sbt_addr; in lower_rt_intrinsics_impl() 283 sysval = globals.hit_sbt_stride; in lower_rt_intrinsics_impl() 287 sysval = globals in lower_rt_intrinsics_impl() [all...] |
/third_party/spirv-tools/test/opt/ |
H A D | inst_buff_addr_check_test.cpp | 100 const std::string globals = R"( 160 defs + decorates + globals + kImportStub + main_func, true, 23u); 222 const std::string globals = R"( 291 defs + decorates + globals + kImportStub + main_func, true, 23u); 345 const std::string globals = R"( 396 defs + decorates + globals + kImportStub + main_func, true); 460 const std::string globals = R"( 528 defs + decorates + globals + kImportStub + main_func, true);
|
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | environment.py | 144 globals and others. Instances of this class may be modified if 347 self.globals = DEFAULT_NAMESPACE.copy() 847 def _load_template(self, name, globals): 857 template = self.loader.load(self, name, globals) 863 def get_template(self, name, parent=None, globals=None): 869 The `globals` parameter can be used to provide template wide globals. 883 return self._load_template(name, self.make_globals(globals)) 886 def select_template(self, names, parent=None, globals=None): 909 globals [all...] |
H A D | loaders.py | 102 def load(self, environment, name, globals=None): 110 if globals is None: 111 globals = {} 137 environment, code, globals, uptodate 380 def load(self, environment, name, globals=None): 383 return loader.load(environment, local_name, globals) 423 def load(self, environment, name, globals=None): 426 return loader.load(environment, name, globals) 488 def load(self, environment, name, globals=None): 503 environment, mod.__dict__, globals [all...] |
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | environment.py | 116 globals and others. Instances of this class may be modified if 321 self.globals = DEFAULT_NAMESPACE.copy() 795 def _load_template(self, name, globals): 804 template = self.loader.load(self, name, globals) 810 def get_template(self, name, parent=None, globals=None): 816 The `globals` parameter can be used to provide template wide globals. 830 return self._load_template(name, self.make_globals(globals)) 833 def select_template(self, names, parent=None, globals=None): 847 globals [all...] |
H A D | loaders.py | 100 def load(self, environment, name, globals=None): 108 if globals is None: 109 globals = {} 135 globals, uptodate) 359 def load(self, environment, name, globals=None): 362 return loader.load(environment, local_name, globals) 402 def load(self, environment, name, globals=None): 405 return loader.load(environment, name, globals) 466 def load(self, environment, name, globals=None): 481 environment, mod.__dict__, globals) [all...] |
/third_party/skia/third_party/externals/jinja2/ |
H A D | environment.py | 144 globals and others. Instances of this class may be modified if 347 self.globals = DEFAULT_NAMESPACE.copy() 847 def _load_template(self, name, globals): 857 template = self.loader.load(self, name, globals) 863 def get_template(self, name, parent=None, globals=None): 869 The `globals` parameter can be used to provide template wide globals. 883 return self._load_template(name, self.make_globals(globals)) 886 def select_template(self, names, parent=None, globals=None): 909 globals [all...] |
H A D | loaders.py | 102 def load(self, environment, name, globals=None): 110 if globals is None: 111 globals = {} 137 environment, code, globals, uptodate 380 def load(self, environment, name, globals=None): 383 return loader.load(environment, local_name, globals) 423 def load(self, environment, name, globals=None): 426 return loader.load(environment, name, globals) 488 def load(self, environment, name, globals=None): 503 environment, mod.__dict__, globals [all...] |
/third_party/glslang/glslang/MachineIndependent/ |
H A D | LiveTraverser.h | 73 TIntermSequence& globals = intermediate.getTreeRoot()->getAsAggregate()->getSequence(); in pushFunction() local 74 for (unsigned int f = 0; f < globals.size(); ++f) { in pushFunction() 75 TIntermAggregate* candidate = globals[f]->getAsAggregate(); in pushFunction() 85 TIntermSequence& globals = intermediate.getTreeRoot()->getAsAggregate()->getSequence(); in pushGlobalReference() local 86 for (unsigned int f = 0; f < globals.size(); ++f) { in pushGlobalReference() 87 TIntermAggregate* candidate = globals[f]->getAsAggregate(); in pushGlobalReference()
|
/third_party/node/deps/npm/test/lib/utils/ |
H A D | otplease.js | 40 globals: { 62 globals: { 87 globals: { 112 globals: { 127 globals: { 140 globals: {
|
/third_party/jinja2/ |
H A D | environment.py | 145 globals and others. Instances of this class may be modified if 351 self.globals = DEFAULT_NAMESPACE.copy() 952 self, name: str, globals: t.Optional[t.MutableMapping[str, t.Any]] 962 # template.globals is a ChainMap, modifying it will only 963 # affect the template, not the environment globals. 964 if globals: 965 template.globals.update(globals) 969 template = self.loader.load(self, name, self.make_globals(globals)) 980 globals [all...] |
H A D | loaders.py | 111 globals: t.Optional[t.MutableMapping[str, t.Any]] = None, 120 if globals is None: 121 globals = {} 147 environment, code, globals, uptodate 518 globals: t.Optional[t.MutableMapping[str, t.Any]] = None, 522 return loader.load(environment, local_name, globals) 568 globals: t.Optional[t.MutableMapping[str, t.Any]] = None, 572 return loader.load(environment, name, globals) 640 globals: t.Optional[t.MutableMapping[str, t.Any]] = None, 656 if globals i [all...] |
/third_party/python/Objects/clinic/ |
H A D | funcobject.c.h | 6 "function(code, globals, name=None, argdefs=None, closure=None)\n" 13 " globals\n" 14 " the globals dictionary\n" 23 func_new_impl(PyTypeObject *type, PyCodeObject *code, PyObject *globals, 30 static const char * const _keywords[] = {"code", "globals", "name", "argdefs", "closure", NULL}; in func_new() 37 PyObject *globals; in func_new() local 52 _PyArg_BadArgument("function", "argument 'globals'", "dict", fastargs[1]); in func_new() 55 globals = fastargs[1]; in func_new() 73 return_value = func_new_impl(type, code, globals, name, defaults, closure); in func_new()
|
/third_party/python/Lib/test/test_importlib/import_/ |
H A D | test___package__.py | 42 globals=globals_, 83 globals = {'__package__': '<not real>'} 85 self.__import__('', globals, {}, ['relimport'], 1) 88 globals = {'__package__': 42} 90 self.__import__('', globals, {}, ['relimport'], 1)
|
/third_party/skia/third_party/externals/tint/tools/src/cmd/intrinsic-gen/resolver/ |
H A D | resolve.go | 30 globals scope 40 globals: newScope(nil), 86 if err := r.globals.declare(s, e.Source); err != nil { 105 if err := r.globals.declare(entry, e.Source); err != nil { 125 if err := r.globals.declare(t, a.Source); err != nil { 130 s := newScope(&r.globals) 160 firstOption, err := r.lookupNamed(&r.globals, a.Options[0]) 176 if err := r.globals.declare(m, a.Source); err != nil { 182 ty, err := r.lookupType(&r.globals, ast) 205 if err := r.globals [all...] |
/third_party/python/Python/clinic/ |
H A D | bltinmodule.c.h | 6 "__import__($module, /, name, globals=None, locals=None, fromlist=(),\n" 16 "The globals argument is only used to determine the context;\n" 30 builtin___import___impl(PyObject *module, PyObject *name, PyObject *globals, 37 static const char * const _keywords[] = {"name", "globals", "locals", "fromlist", "level", NULL}; in builtin___import__() 42 PyObject *globals = NULL; in builtin___import__() local 56 globals = args[1]; in builtin___import__() 78 return_value = builtin___import___impl(module, name, globals, locals, fromlist, level); in builtin___import__() 365 "eval($module, source, globals=None, locals=None, /)\n" 368 "Evaluate the given source in the context of globals and locals.\n" 372 "The globals mus 388 PyObject *globals = Py_None; builtin_eval() local 440 PyObject *globals = Py_None; builtin_exec() local [all...] |