/external/perfetto/ui/src/tracks/thread_state/ |
D | controller.ts | 52 await this.query(`create view ${this.tableName('sched_wakeup')} AS 63 `create virtual table ${this.tableName('window')} using window;`); 67 await this.query(`create view ${this.tableName('start')} as 69 (select ts from ${this.tableName('sched_wakeup')} UNION 75 await this.query(`create view ${this.tableName('fill')} AS 77 (select ts from ${this.tableName('start')}), 79 (select min(ts) from ${this.tableName('sched_wakeup')}), 81 )) - (select ts from ${this.tableName('start')}) as dur, 85 await this.query(`create view ${this.tableName('full_sched_wakeup')} as 86 select * from ${this.tableName('sched_wakeup')} UNION [all …]
|
/external/perfetto/ui/src/tracks/chrome_slices/ |
D | controller.ts | 45 `create virtual table ${this.tableName('window')} using window;`); 48 `create view ${this.tableName('small')} as ` + 57 await this.query(`create virtual table ${this.tableName('span')} using 58 span_join(${this.tableName('small')}, 59 ${this.tableName('window')});`); 66 this.query(`update ${this.tableName('window')} set 71 await this.query(`drop view if exists ${this.tableName('small')}`); 72 await this.query(`drop view if exists ${this.tableName('big')}`); 73 await this.query(`drop view if exists ${this.tableName('summary')}`); 76 `create view ${this.tableName('small')} as ` + [all …]
|
/external/perfetto/ui/src/tracks/cpu_freq/ |
D | controller.ts | 54 `create virtual table ${this.tableName('window')} using window;`); 56 await this.query(`create view ${this.tableName('freq')} 69 await this.query(`create view ${this.tableName('idle')} 82 await this.query(`create virtual table ${this.tableName('freq_idle')} 83 using span_join(${this.tableName('freq')} PARTITIONED cpu, 84 ${this.tableName('idle')} PARTITIONED cpu);`); 86 await this.query(`create virtual table ${this.tableName('span_activity')} 87 using span_join(${this.tableName('freq_idle')} PARTITIONED cpu, 88 ${this.tableName('window')});`); 91 await this.query(`create view ${this.tableName('activity')} [all …]
|
/external/bcc/src/cc/frontends/p4/compiler/ |
D | target.py | 16 def serializeLookup(self, serializer, tableName, key, value): argument 18 value, tableName, key) 20 def serializeUpdate(self, serializer, tableName, key, value): argument 23 tableName, key, value) 37 def serializeTableDeclaration(self, serializer, tableName, argument 40 assert isinstance(tableName, str) 48 self.tableName, self.section, tableName) 102 self.tableName = "bpf_map_def" 125 def serializeTableDeclaration(self, serializer, tableName, argument 128 assert isinstance(tableName, str) [all …]
|
D | ebpfTable.py | 376 def runAction(self, serializer, tableName, valueName, program, nextNode): argument 385 serializer.appendFormat("case {0}_{1}: ", tableName, a.name)
|
/external/perfetto/ui/src/tracks/process_scheduling/ |
D | controller.ts | 54 `create virtual table ${this.tableName('window')} using window;`); 55 await this.query(`create view ${this.tableName('process')} as 59 await this.query(`create virtual table ${this.tableName('span')} 60 using span_join(${this.tableName('process')} PARTITIONED cpu, 61 ${this.tableName('window')});`); 75 this.query(`update ${this.tableName('window')} set 103 from ${this.tableName('span')} 135 const query = `select ts,dur,cpu,utid from ${this.tableName('span')} 186 this.query(`drop table ${this.tableName('window')}`); 187 this.query(`drop table ${this.tableName('span')}`);
|
/external/perfetto/ui/src/tracks/process_summary/ |
D | controller.ts | 47 `create virtual table ${this.tableName('window')} using window;`); 56 const processSliceView = this.tableName('process_slice_view'); 64 await this.query(`create virtual table ${this.tableName('span')} 66 ${this.tableName('window')});`); 75 this.query(`update ${this.tableName('window')} set 96 from ${this.tableName('span')} 129 this.query(`drop table ${this.tableName('window')}`); 130 this.query(`drop table ${this.tableName('span')}`);
|
/external/perfetto/ui/src/tracks/counter/ |
D | controller.ts | 55 `create virtual table ${this.tableName('window')} using window;`); 57 await this.query(`create view ${this.tableName('counter_view')} as 64 await this.query(`create virtual table ${this.tableName('span')} using 65 span_join(${this.tableName('counter_view')}, 66 ${this.tableName('window')});`); 79 this.query(`update ${this.tableName('window')} set 86 from ${this.tableName('span')}
|
/external/perfetto/ui/src/tracks/cpu_slices/ |
D | controller.ts | 49 `create virtual table ${this.tableName('window')} using window;`); 50 await this.query(`create virtual table ${this.tableName('span')} 52 ${this.tableName('window')});`); 65 this.query(`update ${this.tableName('window')} set 91 from ${this.tableName('span')} 120 const query = `select ts,dur,utid,row_id from ${this.tableName('span')} 163 this.query(`drop table ${this.tableName('window')}`); 164 this.query(`drop table ${this.tableName('span')}`);
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | ICUResourceTableAccess.java | 25 public static String getTableString(String path, ULocale locale, String tableName, in getTableString() argument 29 return getTableString(bundle, tableName, null, itemName, defaultValue); in getTableString() 36 public static String getTableString(ICUResourceBundle bundle, String tableName, in getTableString() argument 41 ICUResourceBundle table = bundle.findWithFallback(tableName); in getTableString() 60 if (tableName.equals("Countries")) { in getTableString() 62 } else if (tableName.equals("Languages")) { in getTableString()
|
D | LocaleDisplayNamesImpl.java | 639 String get(String tableName, String code) { in get() argument 640 return get(tableName, null, code); in get() 643 String get(String tableName, String subTableName, String code) { in get() argument 663 public String get(String tableName, String subTableName, String code) { in get() argument 664 return ICUResourceTableAccess.getTableString(bundle, tableName, subTableName, in get()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | ICUResourceTableAccess.java | 23 public static String getTableString(String path, ULocale locale, String tableName, in getTableString() argument 27 return getTableString(bundle, tableName, null, itemName, defaultValue); in getTableString() 34 public static String getTableString(ICUResourceBundle bundle, String tableName, in getTableString() argument 39 ICUResourceBundle table = bundle.findWithFallback(tableName); in getTableString() 58 if (tableName.equals("Countries")) { in getTableString() 60 } else if (tableName.equals("Languages")) { in getTableString()
|
D | LocaleDisplayNamesImpl.java | 632 String get(String tableName, String code) { in get() argument 633 return get(tableName, null, code); in get() 636 String get(String tableName, String subTableName, String code) { in get() argument 656 public String get(String tableName, String subTableName, String code) { in get() argument 657 return ICUResourceTableAccess.getTableString(bundle, tableName, subTableName, in get()
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/codegen/templates/ |
D | gen_header_init.hpp | 35 void Init${tableName}${num}(); 38 static INLINE void Init${tableName}() 41 Init${tableName}${num}();
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/codegen/ |
D | gen_backends.py | 57 self.tableName = 'BackendPixelRate' 67 self.tableName = 'RasterizerFuncs' 127 tableName=backend.tableName)
|
/external/javasqlite/src/main/java/SQLite/ |
D | Shell.java | 24 String tableName; field in Shell 57 s.tableName = tableName; in clone() 156 tableName = ""; in set_table_name() 160 tableName = Shell.sql_quote_dbl(str); in set_table_name() 162 tableName = Shell.sql_quote(str); in set_table_name() 262 tname = tableName; in newrow() 283 tname = tableName; in newrow()
|
/external/fonttools/Lib/fontTools/varLib/ |
D | merger.py | 813 for name, tableName in [('XAdvance','XAdvDevice'), 818 assert not hasattr(self, tableName) 879 tableName = v+'DeviceTable' 880 if not hasattr(self, tableName): 882 dev = getattr(self, tableName) 883 delattr(self, tableName) 904 for name, tableName in [('XAdvance','XAdvDevice'), 909 if not hasattr(self, tableName): 911 dev = getattr(self, tableName) 912 delattr(self, tableName) [all …]
|
/external/perfetto/ui/src/controller/ |
D | track_controller.ts | 59 tableName(prefix: string) { method in TrackController
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/ |
D | DisplayNameTest.java | 338 private static String[] getCodes(ULocale locale, String tableName) { in getCodes() argument 342 ICUResourceBundle table = bundle.getWithFallback(tableName); in getCodes()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
D | DisplayNameTest.java | 335 private static String[] getCodes(ULocale locale, String tableName) { in getCodes() argument 339 ICUResourceBundle table = bundle.getWithFallback(tableName); in getCodes()
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | otBase.py | 724 tableName = name if name else self.__class__.__name__ 729 xmlWriter.begintag(tableName, attrs) 732 xmlWriter.endtag(tableName)
|
D | otConverters.py | 29 tableName = name 51 tableName = tp 58 tableClass = tableNamespace.get(tableName)
|
/external/guice/extensions/persist/lib/ |
D | hibernate-annotations.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/hibernate/
org/ ... |
/external/clang/test/Analysis/ |
D | localization.m | 30 table:(NSString *)tableName;
|
D | localization-aggressive.m | 35 table:(NSString *)tableName;
|