Searched defs:globals (Results 1 - 25 of 60) sorted by relevance

123

/external/lldb/examples/python/
H A Dglobals.py5 # ( setenv PYTHONPATH /Applications/Xcode.app/Contents/SharedFrameworks/LLDB.framework/Resources/Python ; ./globals.py <path> [<path> ...])
8 # PYTHONPATH=/Applications/Xcode.app/Contents/SharedFrameworks/LLDB.framework/Resources/Python ./globals.py <path> [<path> ...]
53 def globals(command_args): function
54 '''Extract all globals from any arguments which must be paths to object files.'''
56 description='''This command will find all globals in the specified object file and return an list() of lldb.SBValue objects (which might be empty).'''
57 parser = optparse.OptionParser(description=description, prog='globals',usage=usage)
71 globals (sys.argv[1:])
/external/chromium_org/third_party/freetype/src/autofit/
H A Dafglobal.h32 * 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,
H A Dafloader.h42 AF_FaceGlobals globals; member in struct:AF_LoaderRec_
H A Dafglobal.c56 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
165 AF_FaceGlobals globals = NULL; local
[all...]
H A Dafmodule.c54 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...]
/external/freetype/src/autofit/
H A Dafloader.h42 AF_FaceGlobals globals; member in struct:AF_LoaderRec_
H A Dafglobal.h63 * Default values and flags for both autofitter globals (found in
64 * AF_ModuleRec) and face globals (in AF_FaceGlobalsRec).
130 af_face_globals_get_metrics( AF_FaceGlobals globals,
136 af_face_globals_free( AF_FaceGlobals globals ); variable
139 af_face_globals_is_digit( AF_FaceGlobals globals,
H A Dafglobal.c133 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_GE
312 AF_FaceGlobals globals = NULL; local
[all...]
H A Dafmodule.c54 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...]
H A Dhbshim.c99 af_get_coverage( AF_FaceGlobals globals, argument
123 if ( !globals || !style_class || !gstyles )
126 face = hb_font_get_face( globals->hb_font );
146 if ( style_class->script == globals->module->default_script &&
272 hb_codepoint_t gidx = FT_Get_Char_Index( globals->face, ch );
361 if ( idx >= (hb_codepoint_t)globals->glyph_count )
436 in_idx = FT_Get_Char_Index( metrics->globals->face, charcode );
444 FT_UInt upem = metrics->globals->face->units_per_EM;
446 hb_font_t* font = metrics->globals->hb_font;
509 af_get_coverage( AF_FaceGlobals globals, argument
[all...]
H A Dafloader.c46 /* Reset glyph loader and compute globals if necessary. */
57 loader->globals = (AF_FaceGlobals)face->autohint.data;
61 if ( loader->globals == NULL )
63 error = af_face_globals_new( face, &loader->globals, module );
67 (FT_Pointer)loader->globals;
88 loader->globals = NULL;
186 AF_FaceGlobals globals = loader->globals; local
450 ( af_face_globals_is_digit( loader->globals, glyph_index ) &&
537 error = af_face_globals_get_metrics( loader->globals, ginde
542 AF_FaceGlobals globals = loader->globals; local
[all...]
/external/chromium_org/chrome/browser/
H A Dio_thread_unittest.cc23 IOThread::Globals* globals) {
25 quic_trial_params, globals);
29 const IOThread::Globals& globals,
31 IOThread::InitializeNetworkSessionParamsFromGlobals(globals, params);
35 IOThread::Globals* globals) {
36 IOThread::ConfigureSpdyFromTrial(trial_group, globals);
19 ConfigureQuicGlobals( const base::CommandLine& command_line, base::StringPiece quic_trial_group, const std::map<std::string, std::string>& quic_trial_params, IOThread::Globals* globals) argument
28 InitializeNetworkSessionParamsFromGlobals( const IOThread::Globals& globals, net::HttpNetworkSession::Params* params) argument
34 ConfigureSpdyFromTrial(const std::string& trial_group, IOThread::Globals* globals) argument
/external/chromium_org/ppapi/shared_impl/
H A Dproxy_lock_unittest.cc69 TestGlobals globals; local
147 TestGlobals globals; local
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cid/
H A Dcidobjs.c140 PSH_Globals globals; local
146 error = funcs->create( cidsize->face->memory, priv, &globals );
148 cidsize->internal = (FT_Size_Internal)(void*)globals;
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/type1/
H A Dt1objs.c104 PSH_Globals globals; local
109 &face->type1.private_dict, &globals );
111 size->root.internal = (FT_Size_Internal)(void*)globals;
/external/chromium_org/ppapi/proxy/
H A Dppp_instance_proxy.cc192 PpapiGlobals* globals = PpapiGlobals::Get(); local
193 globals->GetResourceTracker()->DidDeleteInstance(instance);
194 globals->GetVarTracker()->DidDeleteInstance(instance);
H A Dppb_message_loop_proxy.cc73 PluginGlobals* globals = PluginGlobals::Get();
75 base::ThreadLocalStorage::Slot* slot = globals->msg_loop_slot();
78 globals->set_msg_loop_slot(slot);
152 PluginGlobals* globals = PluginGlobals::Get(); local
153 if (!globals->msg_loop_slot())
156 globals->msg_loop_slot()->Get());
171 PluginGlobals* globals = PluginGlobals::Get(); local
172 if (!globals->msg_loop_slot())
174 return static_cast<const void*>(globals->msg_loop_slot()->Get()) ==
/external/chromium_org/content/child/npapi/
H A Dnp_channel_base.cc33 // for use on one thread per process. Using TLS to store the globals removes the
41 ChannelGlobals* globals = g_channels_tls_ptr.Get().Get(); local
42 if (!globals) {
43 globals = new ChannelGlobals;
44 g_channels_tls_ptr.Get().Set(globals);
46 return globals;
/external/chromium_org/third_party/cython/src/Cython/Utility/
H A DBuiltins.c26 PyObject *globals = PyObject_GetAttr($module_cname, PYIDENT("__dict__")); local
27 if (!globals) {
43 if (!PyDict_Contains(globals, name)) {
51 if (PyDict_SetItem(globals, name, value) < 0) {
64 return globals;
65 // d = PyDictProxy_New(globals);
66 // Py_DECREF(globals);
70 Py_XDECREF(globals);
84 PyObject* globals = __Pyx_Globals(); local
85 if (unlikely(!globals))
100 __Pyx_PyExec2(PyObject* o, PyObject* globals) argument
104 __Pyx_PyExec3(PyObject* o, PyObject* globals, PyObject* locals) argument
[all...]
/external/chromium_org/third_party/freetype/src/cff/
H A Dcffgload.h185 FT_Byte** globals; member in struct:CFF_Decoder_
/external/chromium_org/third_party/freetype/src/pshinter/
H A Dpshglob.c41 psh_globals_scale_widths( PSH_Globals globals, argument
44 PSH_Dimension dim = &globals->dimension[direction];
619 psh_globals_destroy( PSH_Globals globals )
621 if ( globals )
626 memory = globals->memory;
627 globals->dimension[0].stdw.count = 0;
628 globals->dimension[1].stdw.count = 0;
630 globals->blues.normal_top.count = 0;
631 globals->blues.normal_bottom.count = 0;
632 globals
649 PSH_Globals globals = NULL; local
[all...]
/external/chromium_org/third_party/skia/src/views/
H A DSkEventSink.cpp36 SkEventSink_Globals& globals = getGlobals(); local
38 globals.fSinkMutex.acquire();
40 fID = ++globals.fNextSinkID;
41 fNextSink = globals.fSinkHead;
42 globals.fSinkHead = this;
44 globals.fSinkMutex.release();
48 SkEventSink_Globals& globals = getGlobals(); local
53 globals.fSinkMutex.acquire();
55 SkEventSink* sink = globals.fSinkHead;
64 globals
[all...]
/external/compiler-rt/lib/asan/
H A Dasan_globals.cc12 // Handle globals.
49 // We want to remember where a certain range of globals was registered.
105 // so we store the globals in a map.
116 // where two globals with the same name are defined in different modules.
177 // Register an array of globals.
178 void __asan_register_globals(__asan_global *globals, uptr n) { argument
186 GlobalRegistrationSite site = {stack_id, &globals[0], &globals[n - 1]};
190 Printf("=== ID %d; %p %p\n", stack_id, &globals[0], &globals[
199 __asan_unregister_globals(__asan_global *globals, uptr n) argument
[all...]
/external/freetype/src/cff/
H A Dcffgload.h185 FT_Byte** globals; member in struct:CFF_Decoder_
/external/freetype/src/pshinter/
H A Dpshglob.c41 psh_globals_scale_widths( PSH_Globals globals, argument
44 PSH_Dimension dim = &globals->dimension[direction];
619 psh_globals_destroy( PSH_Globals globals )
621 if ( globals )
626 memory = globals->memory;
627 globals->dimension[0].stdw.count = 0;
628 globals->dimension[1].stdw.count = 0;
630 globals->blues.normal_top.count = 0;
631 globals->blues.normal_bottom.count = 0;
632 globals
649 PSH_Globals globals = NULL; local
[all...]

Completed in 406 milliseconds

123