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

1 2 3

  /external/chromium_org/third_party/freetype/src/autofit/
afglobal.h 51 af_face_globals_get_metrics( AF_FaceGlobals globals,
57 af_face_globals_free( AF_FaceGlobals globals ); variable
60 af_face_globals_is_digit( AF_FaceGlobals globals,
afloader.h 31 AF_FaceGlobals globals; /* current face globals */ member in struct:AF_LoaderRec_
afglobal.c 79 af_face_globals_compute_script_coverage( AF_FaceGlobals globals )
82 FT_Face face = globals->face;
84 FT_Byte* gscripts = globals->glyph_scripts;
89 FT_MEM_SET( globals->glyph_scripts,
91 globals->glyph_count );
127 gindex < (FT_ULong)globals->glyph_count &&
138 if ( gindex < (FT_ULong)globals->glyph_count &&
151 if ( gindex != 0 && gindex < (FT_ULong)globals->glyph_count )
164 for ( nn = 0; nn < globals->glyph_count; nn++ )
185 AF_FaceGlobals globals = NULL local
    [all...]
  /external/freetype/src/autofit/
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,
afloader.h 42 AF_FaceGlobals globals; member in struct:AF_LoaderRec_
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.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...]
  /external/chromium_org/ppapi/proxy/
ppp_instance_proxy.cc 192 PpapiGlobals* globals = PpapiGlobals::Get(); local
193 globals->GetResourceTracker()->DidDeleteInstance(instance);
194 globals->GetVarTracker()->DidDeleteInstance(instance);
ppb_message_loop_proxy.cc 71 PluginGlobals* globals = PluginGlobals::Get();
73 base::ThreadLocalStorage::Slot* slot = globals->msg_loop_slot();
76 globals->set_msg_loop_slot(slot);
150 PluginGlobals* globals = PluginGlobals::Get(); local
151 if (!globals->msg_loop_slot())
154 globals->msg_loop_slot()->Get());
169 PluginGlobals* globals = PluginGlobals::Get(); local
170 if (!globals->msg_loop_slot())
172 return static_cast<const void*>(globals->msg_loop_slot()->Get()) ==
  /external/chromium_org/ppapi/shared_impl/
proxy_lock_unittest.cc 72 TestGlobals globals; local
151 TestGlobals globals; local
  /external/chromium_org/win8/metro_driver/
metro_driver_win7.cc 9 struct Globals {
16 } globals; variable in typeref:struct:Globals
92 return globals.host_main(globals.host_context);
111 globals.core_window = window;
112 globals.host_main = thread_proc;
113 globals.host_context = context;
127 ODS("GetRootWindow", ULONG_PTR(globals.core_window));
128 return globals.core_window;
133 globals.host_window = window
    [all...]
  /ndk/sources/cxx-stl/gabi++/src/
call_unexpected.cc 135 __cxa_eh_globals *globals = __cxa_get_globals(); local
142 header->nextCleanup = globals->cleanupExceptions;
143 globals->cleanupExceptions = header;
146 globals->cleanupExceptions = header;
153 __cxa_eh_globals *globals = __cxa_get_globals(); local
154 __cxa_exception* header = globals->cleanupExceptions;
163 globals->cleanupExceptions = header->nextCleanup;
167 globals->cleanupExceptions = NULL;
292 __cxa_eh_globals* globals = __cxa_get_globals_fast();
293 __cxa_exception* new_exception_header = globals->caughtExceptions
    [all...]
cxxabi.cc 114 __cxa_eh_globals* globals = __cxa_get_globals(); local
117 globals->uncaughtExceptions += 1;
188 __cxa_eh_globals *globals = __cxa_get_globals(); local
189 __cxa_exception* header = globals->caughtExceptions;
199 globals->caughtExceptions = 0;
209 __cxa_eh_globals* globals = __cxa_get_globals(); local
212 if (globals->caughtExceptions) {
221 if (header != globals->caughtExceptions) {
222 header->nextException = globals->caughtExceptions;
223 globals->caughtExceptions = header
231 __cxa_eh_globals *globals = __cxa_get_globals_fast(); local
269 __cxa_eh_globals* globals = __cxa_get_globals(); variable
    [all...]
  /development/scripts/app_engine_server/gae_shell/
shell.py 79 """A shell session. Stores the session's globals.
81 Each session globals is stored in one of two places:
83 If the global is picklable, it's stored in the parallel globals and
92 unpicklable globals.
94 The unpicklable_names property stores all of the names of globals that were
95 added by unpicklable statements. When we pickle and store the globals after
102 globals = db.ListProperty(db.Blob) variable in class:Session
119 self.globals[index] = blob
122 self.globals.append(blob)
135 del self.globals[index
    [all...]
  /packages/services/Telephony/src/com/android/phone/
OtaStartupReceiver.java 108 PhoneGlobals globals = PhoneGlobals.getInstanceIfPrimary(); local
109 if (globals == null) {
  /external/chromium_org/chrome/browser/net/
dns_probe_browsertest.cc 167 IOThread::Globals* globals = io_thread_->globals(); local
168 original_dns_probe_service_ = globals->dns_probe_service.release();
169 globals->dns_probe_service.reset(delaying_dns_probe_service_);
188 IOThread::Globals* globals = io_thread_->globals(); local
190 globals->dns_probe_service.release());
191 globals->dns_probe_service.reset(original_dns_probe_service_)
    [all...]
  /external/chromium_org/content/browser/
browser_thread_impl.cc 84 BrowserThreadGlobals& globals = g_globals.Get(); local
85 globals.blocking_pool->Shutdown(kMaxNewShutdownBlockingTasks);
97 BrowserThreadGlobals& globals = g_globals.Get(); local
101 reinterpret_cast<AtomicWord*>(&globals.thread_delegates[identifier_]);
197 BrowserThreadGlobals& globals = g_globals.Get(); local
201 reinterpret_cast<AtomicWord*>(&globals.thread_delegates[identifier_]);
211 BrowserThreadGlobals& globals = g_globals.Get(); local
213 base::AutoLock lock(globals.lock);
215 DCHECK(globals.threads[identifier_] == NULL);
216 globals.threads[identifier_] = this
225 BrowserThreadGlobals& globals = g_globals.Get(); local
256 BrowserThreadGlobals& globals = g_globals.Get(); local
359 BrowserThreadGlobals& globals = g_globals.Get(); local
437 BrowserThreadGlobals& globals = g_globals.Get(); local
    [all...]
  /external/chromium_org/content/ppapi_plugin/
ppapi_thread.cc 94 ppapi::proxy::PluginGlobals* globals = ppapi::proxy::PluginGlobals::Get(); local
95 globals->set_plugin_proxy_delegate(this);
96 globals->set_command_line(
  /external/chromium_org/third_party/freetype/src/cff/
cffgload.h 150 FT_Byte** globals; member in struct:CFF_Decoder_
  /external/chromium_org/third_party/freetype/src/pshinter/
pshglob.c 41 psh_globals_scale_widths( PSH_Globals globals,
44 PSH_Dimension dim = &globals->dimension[direction];
597 psh_globals_destroy( PSH_Globals globals )
599 if ( globals )
604 memory = globals->memory;
605 globals->dimension[0].stdw.count = 0;
606 globals->dimension[1].stdw.count = 0;
608 globals->blues.normal_top.count = 0;
609 globals->blues.normal_bottom.count = 0;
610 globals->blues.family_top.count = 0
627 PSH_Globals globals = NULL; local
    [all...]
  /external/chromium_org/third_party/skia/src/views/
SkEvent.cpp 305 SkEvent_Globals& globals = getGlobals(); local
307 globals.fEventMutex.acquire();
309 globals.fEventMutex.release();
323 SkEvent_Globals& globals = getGlobals(); local
325 globals.fEventMutex.acquire();
327 globals.fEventMutex.release();
336 SkEvent_Globals& globals = getGlobals(); local
341 bool wasEmpty = globals.fEventQHead == NULL;
343 if (globals.fEventQTail)
344 globals.fEventQTail->fNextEvent = evt
356 SkEvent_Globals& globals = getGlobals(); local
374 SkEvent_Globals& globals = getGlobals(); local
385 SkEvent_Globals& globals = getGlobals(); local
434 SkEvent_Globals& globals = getGlobals(); local
474 SkEvent_Globals& globals = getGlobals(); local
493 SkEvent_Globals& globals = getGlobals(); local
    [all...]
SkEventSink.cpp 38 SkEventSink_Globals& globals = getGlobals(); local
40 globals.fSinkMutex.acquire();
42 fID = ++globals.fNextSinkID;
43 fNextSink = globals.fSinkHead;
44 globals.fSinkHead = this;
46 globals.fSinkMutex.release();
50 SkEventSink_Globals& globals = getGlobals(); local
55 globals.fSinkMutex.acquire();
57 SkEventSink* sink = globals.fSinkHead;
66 globals.fSinkHead = next
    [all...]
  /external/freetype/src/cff/
cffgload.h 185 FT_Byte** globals; member in struct:CFF_Decoder_
  /external/freetype/src/pshinter/
pshglob.c 41 psh_globals_scale_widths( PSH_Globals globals,
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->blues.family_top.count = 0
649 PSH_Globals globals = NULL; local
    [all...]
  /external/skia/src/views/
SkEvent.cpp 305 SkEvent_Globals& globals = getGlobals(); local
307 globals.fEventMutex.acquire();
309 globals.fEventMutex.release();
323 SkEvent_Globals& globals = getGlobals(); local
325 globals.fEventMutex.acquire();
327 globals.fEventMutex.release();
336 SkEvent_Globals& globals = getGlobals(); local
341 bool wasEmpty = globals.fEventQHead == NULL;
343 if (globals.fEventQTail)
344 globals.fEventQTail->fNextEvent = evt
356 SkEvent_Globals& globals = getGlobals(); local
374 SkEvent_Globals& globals = getGlobals(); local
385 SkEvent_Globals& globals = getGlobals(); local
434 SkEvent_Globals& globals = getGlobals(); local
474 SkEvent_Globals& globals = getGlobals(); local
493 SkEvent_Globals& globals = getGlobals(); local
    [all...]

Completed in 530 milliseconds

1 2 3