Home
last modified time | relevance | path

Searched refs:type (Results 1 – 25 of 127) sorted by relevance

123456

/development/tools/winscope/libs/virtualList/
Dprops.js3 type: [String, Function], property
7 type: Array, property
11 type: [Object, Function], property
16 type: Number, property
20 type: Object property
23 type: Number, property
28 type: String, property
32 type: Number, property
36 type: Number, property
40 type: Number, property
[all …]
/development/tools/winscope/src/mixins/
DFileType.js21 return file.type == TRACE_TYPES.WINDOW_MANAGER ||
22 file.type == TRACE_TYPES.ACCESSIBILITY ||
23 file.type == TRACE_TYPES.SURFACE_FLINGER ||
24 file.type == TRACE_TYPES.WAYLAND ||
25 file.type == TRACE_TYPES.SYSTEM_UI ||
26 file.type == TRACE_TYPES.LAUNCHER ||
27 file.type == TRACE_TYPES.IME_CLIENTS ||
28 file.type == TRACE_TYPES.IME_SERVICE ||
29 file.type == TRACE_TYPES.IME_MANAGERSERVICE ||
30 file.type == DUMP_TYPES.WINDOW_MANAGER ||
[all …]
DFocusedDataViewFinder.js41 const dataView = this.$refs[file.type];
47 positions[file.type] = dataViewEl.getBoundingClientRect();
67 const pos = positions[file.type];
/development/tools/winscope/src/
Dtransform_transaction.js24 type: 'surfaceChange', property
32 type: 'displayChange', property
42 const type = entry.increment;
46 switch (type) {
50 type, property
63 layerIdToName[entry[type].id] = entry[type].name;
67 type, property
68 obj: entry[type],
69 layerName: entry[type].name ?? layerIdToName[entry[type].id],
Dmain.js45 (a, b) => (fileOrder[a.type] ?? Infinity) - (fileOrder[b.type] ?? Infinity));
97 .filter(file => !state.excludeFromTimeline.includes(file.type));
101 .filter(file => file.type === TRACE_TYPES.TAG);
105 .filter(file => file.type === TRACE_TYPES.ERROR);
124 setFileEntryIndex(state, { type, entryIndex }) { property
125 if (state.traces[type]) {
126 state.traces[type].selectedIndex = entryIndex;
134 if (!filesByType[file.type]) {
135 filesByType[file.type] = [];
137 filesByType[file.type].push(file);
[all …]
Ddecode.js146 return {oneOf: true, type: dataType};
308 type: FILE_TYPES.ACCESSIBILITY_TRACE, property
318 type: FILE_TYPES.WINDOW_MANAGER_TRACE, property
328 type: FILE_TYPES.SURFACE_FLINGER_TRACE, property
339 type: FILE_TYPES.WAYLAND_TRACE, property
350 type: FILE_TYPES.SURFACE_FLINGER_DUMP, property
361 type: FILE_TYPES.WINDOW_MANAGER_DUMP, property
372 type: FILE_TYPES.WAYLAND_DUMP, property
383 type: FILE_TYPES.SCREEN_RECORDING, property
392 type: FILE_TYPES.TRANSACTIONS_TRACE, property
[all …]
DTransactionEntry.vue4 <div v-if="source.type === 'vsyncEvent'" class="vsync">
30 <div class="type-column">{{transactionTypeOf(source)}}</div>
75 type: Number,
78 type: Object,
84 type: Function,
87 type: Object,
90 type: Object,
93 type: Function,
96 type: Boolean,
135 if (transaction.type !== 'transaction') {
[all …]
/development/tools/apkcheck/src/com/android/apkcheck/
DFieldInfo.java34 public FieldInfo(String name, String type) { in FieldInfo() argument
36 mType = type; in FieldInfo()
54 String type = TypeUtils.ambiguousToBinaryName(mType, apiList); in normalizeType() local
55 if (!type.equals(mType)) { in normalizeType()
57 mType = type; in normalizeType()
DTypeUtils.java55 public static String typeToDescriptor(String type) { in typeToDescriptor() argument
56 String quick = sQuickConvert.get(type); in typeToDescriptor()
63 while ((posn = type.indexOf('[', posn+1)) != -1) { in typeToDescriptor()
71 type = type.substring(0, firstPosn); in typeToDescriptor()
78 quick = sQuickConvert.get(type); in typeToDescriptor()
83 builder.append(type.replace('.', '/')); in typeToDescriptor()
/development/samples/ApiDemos/src/com/example/android/apis/view/
DSystemPointerIconButton.java52 int type; in onResolvePointerIcon() local
55 type = PointerIcon.TYPE_TOP_LEFT_DIAGONAL_DOUBLE_ARROW; in onResolvePointerIcon()
58 type = PointerIcon.TYPE_TOP_RIGHT_DIAGONAL_DOUBLE_ARROW; in onResolvePointerIcon()
61 type = PointerIcon.TYPE_HORIZONTAL_DOUBLE_ARROW; in onResolvePointerIcon()
64 type = PointerIcon.TYPE_VERTICAL_DOUBLE_ARROW; in onResolvePointerIcon()
67 type = PointerIcon.TYPE_ALL_SCROLL; in onResolvePointerIcon()
69 return PointerIcon.getSystemIcon(getContext(), type); in onResolvePointerIcon()
DList3.java59 int type = cursor.getInt(COLUMN_TYPE); in onCreate()
62 if (type == Phone.TYPE_CUSTOM) { in onCreate()
66 String text = (String) Phone.getTypeLabel(getResources(), type, label); in onCreate()
DList7.java83 int type = c.getInt(COLUMN_PHONE_TYPE); in onItemSelected() local
87 if (type == Phone.TYPE_CUSTOM) { in onItemSelected()
91 String numberType = (String) Phone.getTypeLabel(getResources(), type, label); in onItemSelected()
/development/vndk/tools/header-checker/tests/abi_dumps/
Dopaque_ptr_types.lsdump13 "referenced_type" : "type-1",
23 "referenced_type" : "type-2",
24 "self_type" : "type-1",
/development/samples/browseable/ShareActionProvider/src/com.example.android.shareactionprovider/content/
DContentItem.java44 public ContentItem(int type, int resourceId) { in ContentItem() argument
45 contentType = type; in ContentItem()
56 public ContentItem(int type, String assetFilePath) { in ContentItem() argument
57 contentType = type; in ContentItem()
/development/tools/winscope/src/utils/
Ddiff.js142 diffTree.diff = {type: DiffType.NONE}; property
154 diffTree.diff = {type: DiffType.ADDED_MOVE}; property
161 diffTree.diff = {type: DiffType.ADDED}; property
175 deletedTreeDiff.diff = {type: DiffType.DELETED_MOVE}; property
181 deletedTreeDiff.diff = {type: DiffType.DELETED}; property
196 diffTree.diff = {type: DiffType.MODIFIED}; property
209 diffTree.diff = {type: DiffType.DELETED_MOVE}; property
211 diffTree.diff = {type: DiffType.DELETED}; property
/development/tools/bugreport/src/com/android/bugreport/stacks/
DLockSnapshot.java32 public int type; field in LockSnapshot
42 this.type = that.type; in LockSnapshot()
/development/cmds/monkey/src/com/android/commands/monkey/
DMonkeyEvent.java45 public MonkeyEvent(int type) { in MonkeyEvent() argument
46 eventType = type; in MonkeyEvent()
/development/apps/Development/src/com/android/development/
DAccountsTester.java144 if (desc.type.equals(account.type)) { in getView()
210 String type = getSelectedAuthenticator().type; in onClick() local
211 onAccountsUpdated(mAccountManager.getAccountsByType(type)); in onClick()
222 mAccountManager.addAccount(getSelectedAuthenticator().type, in onClick()
228 mAccountManager.editProperties(getSelectedAuthenticator().type, in onClick()
366 getSelectedAuthenticator().type, in onCreateDialog()
391 AccountManagerCallback<Bundle> newAccountsCallback(String type, String[] features) { in newAccountsCallback() argument
392 return new GetAccountsCallback(type, features); in newAccountsCallback()
399 public GetAccountsCallback(String type, String[] features) { in GetAccountsCallback() argument
401 mAccountType = type; in GetAccountsCallback()
[all …]
/development/samples/browseable/BasicNetworking/
D_index.jd9 a network connection, and if so, what type of connection it is.
11 … on the active connection, and then the connection type is printed to an on-screen console.
/development/tools/winscope/spec/traces/
DExpectedTraces.js22 type: "BufferLayer", property
112 type: "BufferLayer", property
200 type: "BufferLayer", property
292 type: "BufferQueueLayer", property
397 type: "BufferLayer", property
/development/scripts/
Dadd3prf_test.py32 self.assertEqual(preferred_license.type, add3prf.LicenseType.APACHE2)
40 self.assertEqual(preferred_license.type, add3prf.LicenseType.MIT)
48 self.assertEqual(preferred_license.type, add3prf.LicenseType.BSD_LIKE)
/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
DMatrixTrackingGL.java142 public void glColorPointer(int size, int type, int stride, Buffer pointer) { in glColorPointer() argument
143 mgl.glColorPointer(size, type, stride, pointer); in glColorPointer()
212 public void glDrawElements(int mode, int count, int type, Buffer indices) { in glDrawElements() argument
213 mgl.glDrawElements(mode, count, type, indices); in glDrawElements()
486 public void glNormalPointer(int type, int stride, Buffer pointer) { in glNormalPointer() argument
487 mgl.glNormalPointer(type, stride, pointer); in glNormalPointer()
537 int type, Buffer pixels) { in glReadPixels() argument
538 mgl.glReadPixels(x, y, width, height, format, type, pixels); in glReadPixels()
593 public void glTexCoordPointer(int size, int type, in glTexCoordPointer() argument
595 mgl.glTexCoordPointer(size, type, stride, pointer); in glTexCoordPointer()
[all …]
/development/samples/browseable/BatchStepSensor/src/com.example.android.batchstepsensor/cardstream/
DCard.java273 private void addAction(String label, int id, int type) { in addAction() argument
277 cardAction.type = type; in addAction()
422 public Builder addAction(String label, int id, int type) { in addAction() argument
423 mCard.addAction(label, id, type); in addAction()
553 switch (action.type) { in initializeActionViews()
614 public int type; field in Card.CardAction
621 actionClone.type = type; in createShallowClone()
704 public void setProgressType(int type) { in setProgressType() argument
705 progressType = type; in setProgressType()
707 switch (type) { in setProgressType()
/development/vndk/tools/header-checker/src/repr/
Dir_representation.h56 static_cast<std::underlying_type<CompatibilityStatusIR>::type>(f) |
57 static_cast<std::underlying_type<CompatibilityStatusIR>::type>(s));
63 static_cast<std::underlying_type<CompatibilityStatusIR>::type>(f) &
64 static_cast<std::underlying_type<CompatibilityStatusIR>::type>(s));
253 CXXBaseSpecifierIR(const std::string &type, bool is_virtual, in CXXBaseSpecifierIR() argument
255 : ReferencesOtherType(type), is_virtual_(is_virtual), access_(access) {} in CXXBaseSpecifierIR()
274 TemplateElementIR(std::string &&type) in TemplateElementIR() argument
275 : ReferencesOtherType(std::move(type)) {} in TemplateElementIR()
277 TemplateElementIR(const std::string &type) in TemplateElementIR() argument
278 : ReferencesOtherType(type) {} in TemplateElementIR()
[all …]
/development/gsi/gsi_util/gsi_util/commands/
Dpull.py69 type=str,
75 type=str,

123456