/external/perfetto/ui/src/tracks/cpu_freq/ |
D | controller.ts | 46 from ${this.tableName('freq_idle')} 57 create table ${this.tableName('freq_idle_cached')} as 64 from ${this.tableName('freq_idle')} 134 from ${this.tableName('freq_idle_cached')} 144 select ifnull(max(ts), 0) from ${this.tableName('freq')} 150 select ifnull(max(ts), 0) from ${this.tableName('idle')} 165 from ${this.tableName('freq_idle')} 177 from ${this.tableName('freq')} 184 await this.query(`select max(dur) from ${this.tableName('freq')}`); 191 await this.query(`select max(dur) from ${this.tableName('idle')}`); [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/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/upstream/cache/ |
D | CacheFileMetadataIndex.java | 63 private @MonotonicNonNull String tableName; field in CacheFileMetadataIndex 79 String tableName = getTableName(hexUid); in delete() local 85 dropTable(writableDatabase, tableName); in delete() 112 tableName = getTableName(hexUid); in initialize() 123 dropTable(writableDatabase, tableName); in initialize() 124 writableDatabase.execSQL("CREATE TABLE " + tableName + " " + TABLE_SCHEMA); in initialize() 172 Assertions.checkNotNull(tableName); in set() 179 writableDatabase.replaceOrThrow(tableName, /* nullColumnHack= */ null, values); in set() 195 Assertions.checkNotNull(tableName); in remove() 198 writableDatabase.delete(tableName, WHERE_NAME_EQUALS, new String[] {name}); in remove() [all …]
|
D | CachedContentIndex.java | 757 private String tableName; field in CachedContentIndex.DatabaseStorage 772 tableName = getTableName(hexUid); in initialize() 898 tableName, in getCursor() 910 dropTable(writableDatabase, tableName); in initializeTable() 911 writableDatabase.execSQL("CREATE TABLE " + tableName + " " + TABLE_SCHEMA); in initializeTable() 915 writableDatabase.delete(tableName, WHERE_ID_EQUALS, new String[] {Integer.toString(key)}); in deleteRow() 928 writableDatabase.replaceOrThrow(tableName, /* nullColumnHack= */ null, values); in addOrUpdateRow() 934 String tableName = getTableName(hexUid); in delete() local 940 dropTable(writableDatabase, tableName); in delete() 950 private static void dropTable(SQLiteDatabase writableDatabase, String tableName) { in dropTable() argument [all …]
|
/external/perfetto/ui/src/tracks/process_summary/ |
D | controller.ts | 43 `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')});`); 76 this.query(`update ${this.tableName('window')} set 97 from ${this.tableName('span')} 125 this.query(`drop table ${this.tableName('window')}`); 126 this.query(`drop table ${this.tableName('span')}`);
|
/external/perfetto/ui/src/tracks/cpu_slices/ |
D | controller.ts | 33 create view ${this.tableName('sched')} as 45 from ${this.tableName('sched')} 55 create table ${this.tableName('sched_cached')} as 62 from ${this.tableName('sched')} 90 isCached ? this.tableName('sched_cached') : this.tableName('sched'); 144 await this.query(`drop table if exists ${this.tableName('sched_cached')}`);
|
/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 | 638 String get(String tableName, String code) { in get() argument 639 return get(tableName, null, code); in get() 642 String get(String tableName, String subTableName, String code) { in get() argument 662 public String get(String tableName, String subTableName, String code) { in get() argument 663 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 | 631 String get(String tableName, String code) { in get() argument 632 return get(tableName, null, code); in get() 635 String get(String tableName, String subTableName, String code) { in get() argument 655 public String get(String tableName, String subTableName, String code) { in get() argument 656 return ICUResourceTableAccess.getTableString(bundle, tableName, subTableName, in get()
|
/external/perfetto/ui/src/controller/ |
D | heap_profile_controller.ts | 55 let tableName = this.cache.get(query); 56 if (tableName === undefined) { 64 tableName = `${this.prefix}_${this.tableId++}`; 66 `create temp table if not exists ${tableName} as ${query}`); 67 this.cache.set(query, tableName); 69 return tableName; 218 const tableName = constant 221 tableName, viewingOption, focusRegex); 228 tableName: string, viewingOption = DEFAULT_VIEWING_OPTION, 272 cumulative_alloc_count, map_name, size, count from ${tableName} ${
|
D | track_controller.ts | 86 namespaceTable(tableName: string): string { 88 return this.config.namespace + '_' + tableName; 90 return tableName; 103 tableName(prefix: string) {
|
/external/perfetto/ui/src/tracks/process_scheduling/ |
D | controller.ts | 50 from ${this.tableName('process_sched')} 60 create table ${this.tableName('process_sched_cached')} as 67 from ${this.tableName('process_sched')} 135 const queryTable = isCached ? this.tableName('process_sched_cached') : 136 this.tableName('process_sched'); 156 create view ${this.tableName('process_sched')} as
|
/external/perfetto/ui/src/tracks/counter/ |
D | controller.ts | 51 create view ${this.tableName('counter_view')} as 63 create view ${this.tableName('counter_view')} as 80 from ${this.tableName('counter_view')} 92 from ${this.tableName('counter_view')}`); 109 from ${this.tableName('counter_view')}
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/codegen/templates/ |
D | gen_header_init.hpp | 37 void Init${tableName}${num}(); 40 static INLINE void Init${tableName}() 43 Init${tableName}${num}();
|
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/offline/ |
D | DefaultDownloadIndex.java | 131 private final String tableName; field in DefaultDownloadIndex 164 tableName = TABLE_PREFIX + name; in DefaultDownloadIndex() 209 writableDatabase.replaceOrThrow(tableName, /* nullColumnHack= */ null, values); in putDownload() 219 databaseProvider.getWritableDatabase().delete(tableName, WHERE_ID_EQUALS, new String[] {id}); in removeDownload() 232 writableDatabase.update(tableName, values, WHERE_STATE_IS_DOWNLOADING, /* whereArgs= */ null); in setDownloadingStatesToQueued() 248 writableDatabase.update(tableName, values, /* whereClause= */ null, /* whereArgs= */ null); in setStatesToRemoving() 261 writableDatabase.update(tableName, values, WHERE_STATE_IS_TERMINAL, /* whereArgs= */ null); in setStopReason() 275 tableName, in setStopReason() 297 writableDatabase.execSQL("DROP TABLE IF EXISTS " + tableName); in ensureInitialized() 298 writableDatabase.execSQL("CREATE TABLE " + tableName + " " + TABLE_SCHEMA); in ensureInitialized() [all …]
|
/external/perfetto/ui/src/tracks/thread_state/ |
D | controller.ts | 43 create view ${this.tableName('thread_state')} as 57 from ${this.tableName('thread_state')} 82 from ${this.tableName('thread_state')} 156 await this.query(`drop table if exists ${this.tableName('thread_state')}`);
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/codegen/ |
D | gen_backends.py | 57 self.tableName = 'BackendPixelRate' 67 self.tableName = 'RasterizerFuncs' 140 tableName=backend.tableName)
|
/external/perfetto/ui/src/tracks/chrome_slices/ |
D | controller.ts | 39 const tableName = this.namespaceTable('slice'); constant 44 FROM ${tableName} WHERE track_id = ${this.config.trackId}`; 61 FROM ${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/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/database/ |
D | VersionTable.java | 167 /* package */ static boolean tableExists(SQLiteDatabase readableDatabase, String tableName) { in tableExists() argument 170 readableDatabase, "sqlite_master", "tbl_name = ?", new String[] {tableName}); in tableExists()
|
/external/fonttools/Lib/fontTools/varLib/ |
D | merger.py | 888 for name, tableName in [('XAdvance','XAdvDevice'), 893 assert not hasattr(self, tableName) 949 tableName = v+'DeviceTable' 950 if not hasattr(self, tableName): 952 dev = getattr(self, tableName) 954 delattr(self, tableName) 975 for name, tableName in [('XAdvance','XAdvDevice'), 980 if not hasattr(self, tableName): 982 dev = getattr(self, tableName) 984 delattr(self, tableName) [all …]
|
/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()
|