/external/freetype/src/autofit/ |
D | afglobal.c | 130 af_face_globals_compute_style_coverage( AF_FaceGlobals globals ) in af_face_globals_compute_style_coverage() argument 133 FT_Face face = globals->face; in af_face_globals_compute_style_coverage() 135 FT_UShort* gstyles = globals->glyph_styles; in af_face_globals_compute_style_coverage() 142 for ( i = 0; i < (FT_UInt)globals->glyph_count; i++ ) in af_face_globals_compute_style_coverage() 176 globals->module->default_script ) in af_face_globals_compute_style_coverage() 190 gindex < (FT_ULong)globals->glyph_count && in af_face_globals_compute_style_coverage() 201 if ( gindex < (FT_ULong)globals->glyph_count && in af_face_globals_compute_style_coverage() 219 gindex < (FT_ULong)globals->glyph_count && in af_face_globals_compute_style_coverage() 230 if ( gindex < (FT_ULong)globals->glyph_count && in af_face_globals_compute_style_coverage() 239 af_shaper_get_coverage( globals, style_class, gstyles, 0 ); in af_face_globals_compute_style_coverage() [all …]
|
D | afloader.c | 51 loader->globals = (AF_FaceGlobals)face->autohint.data; in af_loader_reset() 53 if ( !loader->globals ) in af_loader_reset() 55 error = af_face_globals_new( face, &loader->globals, module ); in af_loader_reset() 59 (FT_Pointer)loader->globals; in af_loader_reset() 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() 139 ( stdVW > 0 && stdVW != globals->standard_vertical_width ) ) in af_loader_embolden_glyph_in_slot() 152 globals->standard_vertical_width = stdVW; in af_loader_embolden_glyph_in_slot() 153 globals->stem_darkening_for_ppem = size_metrics->x_ppem; in af_loader_embolden_glyph_in_slot() [all …]
|
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() 333 AF_FaceGlobals globals; in af_property_get() local [all …]
|
/external/perfetto/ui/src/frontend/ |
D | index.ts | 24 import {globals, QuantizedLoad, SliceDetails, ThreadDesc} from './globals'; 38 globals.state = applyPatches(globals.state, patches); 42 globals.frontendLocalState.mergeState(globals.state.frontendLocalState); 52 if (!globals.overviewStore.has(key)) { 53 globals.overviewStore.set(key, []); 56 globals.overviewStore.get(key)!.push(...value); 58 globals.overviewStore.get(key)!.push(value); 61 globals.rafScheduler.scheduleRedraw(); 65 globals.setTrackData(args.id, args.data); 67 globals.rafScheduler.scheduleFullRedraw(); [all …]
|
D | track_panel.ts | 20 import {globals} from './globals'; 30 return globals.state.pinnedTracks.indexOf(id) !== -1; 82 globals.rafScheduler.scheduleFullRedraw(); 90 globals.rafScheduler.scheduleFullRedraw(); 109 globals.rafScheduler.scheduleFullRedraw(); 114 globals.rafScheduler.scheduleFullRedraw(); 121 globals.rafScheduler.scheduleFullRedraw(); 124 globals.dispatch(Actions.moveTrack({srcId, op: this.dropping, dstId})); 135 globals.rafScheduler.scheduleRedraw(); 139 globals.rafScheduler.scheduleRedraw(); [all …]
|
D | topbar.ts | 21 import {globals} from './globals'; 31 globals.queryResults.delete(QUERY_ID); 32 globals.dispatch(Actions.deleteQuery({queryId: QUERY_ID})); 49 globals.rafScheduler.scheduleFullRedraw(); 56 globals.rafScheduler.scheduleFullRedraw(); 61 globals.rafScheduler.scheduleFullRedraw(); 76 globals.rafScheduler.scheduleFullRedraw(); 81 globals.rafScheduler.scheduleFullRedraw(); 87 globals.dispatch( 91 globals.dispatch(Actions.executeQuery( [all …]
|
D | track_group_panel.ts | 21 import {globals} from './globals'; 49 return assertExists(globals.state.trackGroups[this.trackGroupId]); 54 globals.state.tracks[this.trackGroupState.summaryTrackId]); 72 globals.dispatch(Actions.toggleTrackGroupCollapsed({ 105 globals.frontendLocalState.timeScale, 106 globals.frontendLocalState.visibleWindowTime, 116 const localState = globals.frontendLocalState; 133 if (globals.state.currentSelection !== null) { 134 if (globals.state.currentSelection.kind === 'NOTE') { 135 const note = globals.state.notes[globals.state.currentSelection.id]; constant [all …]
|
D | notes_panel.ts | 20 import {globals} from './globals'; 42 globals.rafScheduler.scheduleRedraw(); 47 globals.rafScheduler.scheduleRedraw(); 51 globals.frontendLocalState.setShowNotePreview(false); 52 globals.rafScheduler.scheduleRedraw(); 68 const timeScale = globals.frontendLocalState.timeScale; 69 const range = globals.frontendLocalState.visibleWindowTime; 81 for (const note of Object.values(globals.state.notes)) { 90 const selection = globals.state.currentSelection; 118 if (aNoteIsHovered) globals.frontendLocalState.setShowNotePreview(false); [all …]
|
D | viewer_page.ts | 24 import {globals} from './globals'; 47 const data = globals.trackDataStore.get(LogExistsKey) as LogExists; 53 const resp = globals.queryResults.get('command') as QueryResponse; 97 globals.queryResults.delete('command'); 98 globals.rafScheduler.scheduleFullRedraw(); 141 globals.rafScheduler.scheduleFullRedraw(); 166 globals.rafScheduler.scheduleFullRedraw(); 188 const frontendLocalState = globals.frontendLocalState; 200 globals.rafScheduler.scheduleFullRedraw(); 214 const traceTime = globals.state.traceTime; [all …]
|
D | frontend_local_state.ts | 19 import {globals} from './globals'; 42 const startSec = Math.max(ts.start, globals.state.traceTime.startSec); 43 const endSec = Math.min(ts.end, globals.state.traceTime.endSec); 52 globals.dispatch(Actions.setVisibleTraceTime({ 73 globals.rafScheduler.scheduleFullRedraw(); 79 globals.rafScheduler.scheduleRedraw(); 86 globals.rafScheduler.scheduleRedraw(); 91 globals.rafScheduler.scheduleRedraw(); 96 globals.rafScheduler.scheduleRedraw();
|
D | logs_panel.ts | 28 import {globals} from './globals'; 54 globals.dispatch(Actions.updateLogsPagination({ 66 this.bounds = globals.trackDataStore.get(LogBoundsKey) as LogBounds; 67 this.entries = globals.trackDataStore.get(LogEntriesKey) as LogEntries; 72 this.bounds = globals.trackDataStore.get(LogBoundsKey) as LogBounds; 73 this.entries = globals.trackDataStore.get(LogEntriesKey) as LogEntries; 80 globals.rafScheduler.scheduleFullRedraw(); 84 globals.frontendLocalState.setHoveredTimestamp(ts); 88 globals.frontendLocalState.setHoveredTimestamp(-1); 97 const vis = globals.frontendLocalState.visibleWindowTime; [all …]
|
D | overview_timeline_panel.ts | 22 import {globals} from './globals'; 38 globals.state.traceTime.startSec, globals.state.traceTime.endSec); 81 if (globals.overviewStore.size > 0) { 82 const numTracks = globals.overviewStore.size; 85 for (const key of globals.overviewStore.keys()) { 86 const loads = globals.overviewStore.get(key)!; 104 const vizTime = globals.frontendLocalState.visibleWindowTime; 125 globals.frontendLocalState.updateVisibleTime(vizTime); 126 globals.rafScheduler.scheduleRedraw();
|
D | record_widgets.ts | 22 import {globals} from './globals'; 44 const traceCfg = produce(globals.state.recordConfig, draft => { 47 globals.dispatch(Actions.setRecordConfig({config: traceCfg})); 50 const enabled = attrs.isEnabled(globals.state.recordConfig); 80 const traceCfg = produce(globals.state.recordConfig, draft => { 83 globals.dispatch(Actions.setRecordConfig({config: traceCfg})); 102 const val = attrs.get(globals.state.recordConfig); 164 const traceCfg = produce(globals.state.recordConfig, draft => { 167 globals.dispatch(Actions.setRecordConfig({config: traceCfg})); 172 const selItems = attrs.get(globals.state.recordConfig); [all …]
|
D | sidebar.ts | 19 import {globals} from './globals'; 84 globals.dispatch(Actions.executeQuery({ 207 globals.dispatch(Actions.openTraceFromUrl({url})); 223 globals.dispatch(Actions.convertTraceToJson({file})); 229 globals.dispatch(Actions.openTraceFromFile({file})); 234 globals.dispatch(Actions.navigate({route: '/record'})); 239 globals.dispatch(Actions.navigate({route: '/viewer'})); 244 globals.dispatch(Actions.createPermalink({})); 249 const engine = Object.values(globals.state.engines)[0]; 288 globals.rafScheduler.scheduleFullRedraw();
|
/external/libcxxabi/src/ |
D | cxa_exception.cpp | 260 __cxa_eh_globals *globals = __cxa_get_globals(); in __cxa_throw() local 269 globals->uncaughtExceptions += 1; // Not atomically, since globals are thread-local in __cxa_throw() 314 __cxa_eh_globals* globals = __cxa_get_globals(); in __cxa_begin_cleanup() local 322 exception_header->nextPropagatingException = globals->propagatingExceptions; in __cxa_begin_cleanup() 323 globals->propagatingExceptions = exception_header; in __cxa_begin_cleanup() 331 if (NULL != globals->propagatingExceptions) in __cxa_begin_cleanup() 333 globals->propagatingExceptions = exception_header; in __cxa_begin_cleanup() 352 __cxa_eh_globals* globals = __cxa_get_globals(); in __cxa_end_cleanup_impl() local 353 __cxa_exception* exception_header = globals->propagatingExceptions; in __cxa_end_cleanup_impl() 366 globals->propagatingExceptions = exception_header->nextPropagatingException; in __cxa_end_cleanup_impl() [all …]
|
/external/freetype/src/pshinter/ |
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() argument 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->blues.family_top.count = 0; in psh_globals_destroy() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/DebugInfo/Generic/ |
D | debug-names-many-cu.ll | 74 … 325732)", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !4, globals: !15) 80 … 325732)", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !4, globals: !25) 86 … 325732)", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !4, globals: !35) 92 … 325732)", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !4, globals: !45) 98 … 325732)", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !4, globals: !55) 104 … 325732)", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !4, globals: !65) 110 … 325732)", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !4, globals: !75) 116 … 325732)", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !4, globals: !85) 122 … 325732)", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !4, globals: !95) 128 …325732)", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !4, globals: !105) [all …]
|
/external/perfetto/ui/src/tracks/process_scheduling/ |
D | frontend.ts | 20 import {globals} from '../../frontend/globals'; 50 const {timeScale, visibleWindowTime} = globals.frontendLocalState; 59 data.resolution !== globals.getCurResolution()) { 60 globals.requestTrackData(this.trackState.id); 81 const {timeScale, visibleWindowTime} = globals.frontendLocalState; 108 const {timeScale, visibleWindowTime} = globals.frontendLocalState; 127 const threadInfo = globals.threads.get(utid); 130 const isHovering = globals.frontendLocalState.hoveredUtid !== -1; 131 const isThreadHovered = globals.frontendLocalState.hoveredUtid === utid; 132 const isProcessHovered = globals.frontendLocalState.hoveredPid === pid; [all …]
|
/external/python/cpython3/Tools/c-globals/ |
D | README | 8 * globals used exclusively in main or in the REPL 14 The ignored-globals.txt file is organized similarly. Of the different 25 globals. Unlike the other globals, the runtime state represents a set 31 Consequently, the globals for Python's runtime state have been 32 consolidated under a single top-level _PyRuntime global. No new globals 34 _PyRuntimeState or one of its sub-structs. The check-c-globals script 35 should be run to ensure that no new globals have been added: 37 python3 Tools/c-globals/check-c-globals.py 39 If it reports any globals then they should be resolved. If the globals 41 Otherwise they should be added to ignored-globals.txt.
|
/external/perfetto/ui/src/tracks/cpu_slices/ |
D | frontend.ts | 23 import {globals} from '../../frontend/globals'; 56 const {timeScale, visibleWindowTime} = globals.frontendLocalState; 65 data.resolution !== globals.getCurResolution()) { 66 globals.requestTrackData(this.trackState.id); 87 const {timeScale, visibleWindowTime} = globals.frontendLocalState; 113 const {timeScale, visibleWindowTime} = globals.frontendLocalState; 133 const threadInfo = globals.threads.get(utid); 151 const isHovering = globals.frontendLocalState.hoveredUtid !== -1; 152 const isThreadHovered = globals.frontendLocalState.hoveredUtid === utid; 153 const isProcessHovered = globals.frontendLocalState.hoveredPid === pid; [all …]
|
/external/perfetto/ui/src/controller/ |
D | permalink_controller.ts | 23 import {globals} from './globals'; 34 if (globals.state.permalink.requestId === undefined || 35 globals.state.permalink.requestId === this.lastRequestId) { 38 const requestId = assertExists(globals.state.permalink.requestId); 42 if (globals.state.permalink.hash === undefined) { 44 globals.dispatch(Actions.setPermalink({requestId, hash})); 50 PermalinkController.loadState(globals.state.permalink.hash).then(state => { 51 globals.dispatch(Actions.setState({newState: state})); 57 const state = globals.state; 141 globals.dispatch(Actions.updateStatus({
|
D | index.ts | 21 import {globals} from './globals'; 28 globals.dispatch(data); 34 globals.initialize(new AppController(), frontend); 42 (self as {} as {globals: {}}).globals = globals;
|
D | trace_controller.ts | 40 import {globals} from './globals'; 71 if (this.engine !== undefined) globals.destroyEngine(this.engine.id); 75 const engineCfg = assertExists(globals.state.engines[this.engineId]); 78 globals.dispatch(Actions.setEngineReady({ 83 globals.dispatch(Actions.setEngineReady({ 106 for (const trackId of Object.keys(globals.state.tracks)) { 107 const trackCfg = globals.state.tracks[trackId]; 116 for (const queryId of Object.keys(globals.state.queries)) { 127 app: globals, 140 const engineCfg = assertExists(globals.state.engines[this.engineId]); [all …]
|
/external/catch2/scripts/ |
D | generateSingleHeader.py | 29 globals = { 38 globals['includeImpl'] = False 52 if globals['includeImpl'] or globals['implIfDefs'] == -1: 75 globals['ifdefs'] += 1 77 globals['ifdefs'] -= 1 78 if globals['ifdefs'] == globals['implIfDefs']: 79 globals['implIfDefs'] = -1 96 globals['implIfDefs'] = globals['ifdefs']
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Instrumentation/AddressSanitizer/ |
D | global_metadata_array.ll | 1 ; RUN: opt < %s -asan -asan-module -asan-globals-live-support=0 -mtriple=x86_64-unknown-linux-gnu -… 2 ; RUN: opt < %s -asan -asan-module -asan-globals-live-support=0 -mtriple=x86_64-apple-macosx10.11.0… 3 ; RUN: opt < %s -asan -asan-module -asan-globals-live-support=0 -mtriple=x86_64-pc-windows-msvc19.0… 4 ; RUN: opt < %s -asan -asan-module -asan-globals-live-support=0 -asan-mapping-scale=5 -mtriple=x86_… 16 ; Check that globals were instrumented: 22 …__asan_gen_.[0-9]+]] = private unnamed_addr constant [22 x i8] c"/tmp/asan-globals.cpp\00", align 1 57 !llvm.asan.globals = !{!0, !1, !2, !3, !4} 68 !6 = !{!"/tmp/asan-globals.cpp", i32 5, i32 5} 69 !7 = !{!"/tmp/asan-globals.cpp", i32 7, i32 5} 70 !8 = !{!"/tmp/asan-globals.cpp", i32 12, i32 14} [all …]
|