/development/tools/winscope/src/flickerlib/ |
D | mixin.ts | 30 let obj: any = {} 32 properties.forEach(prop => obj[prop] = entry[prop]); 37 if (obj.children) delete obj.children 38 if (obj.proto) delete obj.proto 40 obj.proto = Object.assign({}, entry.proto) 41 if (obj.proto.children) delete obj.proto.children 42 if (obj.proto.childWindows) delete obj.proto.childWindows 43 if (obj.proto.childrenWindows) delete obj.proto.childrenWindows 44 if (obj.proto.childContainers) delete obj.proto.childContainers 45 if (obj.proto.windowToken) delete obj.proto.windowToken [all …]
|
D | ObjectFormatter.ts | 41 let obj: any = {} 43 properties.forEach(prop => obj[prop] = entry[prop]); 44 return obj; 56 let obj = entry; 59 const properties = Object.getOwnPropertyNames(obj).filter(it => { 80 } while (obj = Object.getPrototypeOf(obj)); 91 static format(obj: any): {} { 92 const properties = this.getProperties(obj); 98 const value: any = obj[key]; 128 result[key] = this.translateIntDef(obj, key, value) [all …]
|
/development/tools/winscope/src/ |
D | transform.js | 27 obj, property 50 const childs = call(childrenFunc, obj); 81 const kindResolved = call(kind, obj); 82 const nameResolved = call(name, obj); 83 const shortNameResolved = call(shortName, obj); 84 const rectResolved = call(rect, obj); 86 …eIdResolved = (stableId === undefined) ? kindResolved + '|-|' + nameResolved : call(stableId, obj); 94 obj: obj, property 95 timestamp: call(timestamp, obj), 97 bounds: call(bounds, obj) || transformedChildren.map( [all …]
|
D | transform_ime.js | 5 obj: entries, property 16 obj: entry, property 29 obj: transform_input_connection_call(entry), property 41 obj: entries, property 52 obj: entry, property 65 obj: transform_input_connection_call(entry), property 77 obj: entries, property 88 obj: entry, property 101 obj: entry, property 113 const obj = Object.assign({}, entry) [all …]
|
D | transform_sys_ui.js | 21 obj: edgeBack, property 30 obj: sysui, property 41 obj: entry, property 54 obj: entries, property
|
D | transform_accessibility.js | 21 obj: accessibility, property 30 obj: entry, property 43 obj: entries, property
|
D | transform_launcher.js | 21 obj: launcher, property 30 obj: entry, property 43 obj: entries, property
|
D | transform_wl.js | 35 obj: layer, property 54 obj: cntnr, property 71 obj: {name: "Output State", fullBounds: fullBounds}, property 84 obj: entry, property 97 obj: entries, property
|
D | transform_transaction.js | 25 obj: surfaceChange, property 33 obj: displayChange, property 68 obj: entry[type], property
|
/development/vndk/tools/definition-tool/tests/ |
D | compat.py | 65 obj, attr = target.rsplit('.') 66 obj = __import__(obj) 67 original_value = getattr(obj, attr) 68 setattr(obj, attr, mock) 72 setattr(obj, attr, original_value)
|
/development/samples/devbytes/animation/ListViewExpandingCells/src/com/example/android/expandingcells/ |
D | ExpandingCells.java | 60 ExpandableListItem obj = values[i % values.length]; in onCreate() local 61 mData.add(new ExpandableListItem(obj.getTitle(), obj.getImgResource(), in onCreate() 62 obj.getCollapsedHeight(), obj.getText())); in onCreate()
|
/development/host/windows/ |
D | .gitignore | 7 usb/api/obj* 10 usb/adb_winapi_test/obj* 13 usb/winusb/obj*
|
/development/tools/winscope/spec/ |
D | ObjectTransformerSpec.js | 7 const obj = { variable 8 obj: { property 35 const transformedObj = new ObjectTransformer(obj, 'root', 'root') 43 const obj = { variable 44 obj: { property 57 const transformedObj = new ObjectTransformer(obj, 'root', 'root')
|
/development/apps/OBJViewer/com/android/objviewer/ |
D | OBJViewer.java | 177 Object3D obj = OBJViewer.getObject(); in onDraw() local 181 mCenterX = (obj.getBoundsMinX() + obj.getBoundsMaxX())/2.0f; in onDraw() 182 mCenterY = (obj.getBoundsMinY() + obj.getBoundsMaxY())/2.0f; in onDraw() 183 mCenterZ = (obj.getBoundsMinZ() + obj.getBoundsMaxZ())/2.0f; in onDraw() 184 float spanX = obj.getBoundsMaxX() - obj.getBoundsMinX(); in onDraw() 185 float spanY = obj.getBoundsMaxY() - obj.getBoundsMinY(); in onDraw() 186 float spanZ = obj.getBoundsMaxZ() - obj.getBoundsMinZ(); in onDraw()
|
/development/samples/SampleSyncAdapter/samplesyncadapter_server/ |
D | web_services.py | 296 def safe_attr(self, obj, attr_name): argument 297 if attr_name in obj: 298 return obj[attr_name] 365 obj = datastore.Contact.get_contact_info(username) 368 if hasattr(obj, obj_name): 369 v = getattr(obj, obj_name) 374 contact['i'] = str(obj.key().id()) 375 contact['a'] = host_url + "/avatar?id=" + str(obj.key().id()) 383 obj = datastore.Contact.get_contact_info(username) 386 contact['i'] = str(obj.key().id())
|
/development/vndk/tools/header-checker/src/repr/symbol/ |
D | so_file_parser.cpp | 61 ELFSoFileParser(const llvm::object::ELFObjectFile<T> *obj); 86 ELFSoFileParser<T>::ELFSoFileParser(const llvm::object::ELFObjectFile<T> *obj) { in ELFSoFileParser() argument 87 assert(obj != nullptr); in ELFSoFileParser() 91 for (auto symbol_it : obj->getDynamicSymbolIterators()) { in ELFSoFileParser() 92 auto elf_sym_or_error = obj->getSymbol(symbol_it.getRawDataRefImpl()); in ELFSoFileParser()
|
/development/samples/UiAutomator/src/com/android/test/uiautomator/demos/ |
D | SetTwoMinuteAlarm.java | 136 UiObject obj = new UiObject(new UiSelector().description(text)); in clickByDescription() local 137 obj.clickAndWaitForNewWindow(); in clickByDescription() 146 UiObject obj = new UiObject(new UiSelector().text(text)); in clickByText() local 147 obj.clickAndWaitForNewWindow(); in clickByText()
|
/development/samples/devbytes/animation/ListViewCellInsertion/src/com/example/android/insertingcells/ |
D | CustomArrayAdapter.java | 91 ListItemObject obj = mData.get(position); in getView() local 99 .MATCH_PARENT, obj.getHeight())); in getView() 105 obj.getImgResource(), null); in getView() 107 textView.setText(obj.getTitle()); in getView()
|
D | InsertingCells.java | 83 ListItemObject obj = mValues[mItemNum % mValues.length]; in addRow() local 84 final ListItemObject newObj = new ListItemObject(obj.getTitle(), obj.getImgResource(), in addRow()
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/ |
D | Projector.java | 41 public void project(float[] obj, int objOffset, float[] win, int winOffset) { in project() argument 47 Matrix.multiplyMV(mV, 0, mMVP, 0, obj, objOffset); in project()
|
/development/host/windows/usb/api/ |
D | adb_api.cpp | 108 AdbInterfaceObject* obj = NULL; in AdbCreateInterfaceByName() local 115 obj = new AdbLegacyInterfaceObject(interface_name); in AdbCreateInterfaceByName() 121 obj = InstantiateWinUsbInterface(interface_name); in AdbCreateInterfaceByName() 122 if (NULL == obj) { in AdbCreateInterfaceByName() 131 ret = obj->CreateHandle(); in AdbCreateInterfaceByName() 136 if (NULL != obj) in AdbCreateInterfaceByName() 137 obj->Release(); in AdbCreateInterfaceByName()
|
/development/ |
D | CleanSpec.mk | 47 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/CorpApp_intermediates)
|
/development/samples/USB/AdbTest/src/com/android/adb/ |
D | AdbTestActivity.java | 83 m.obj = s; in log() 110 m.obj = device; in deviceOnline() 201 appendLog((String)msg.obj); 204 handleDeviceOnline((AdbDevice)msg.obj);
|
/development/samples/LceDemo/src/com/example/android/lce/ |
D | LceDemoActivity.java | 56 text.append((String)msg.obj); in onCreate() 68 message.obj = "New downlink capacity received: " + in onCreate()
|
/development/tools/winscope/src/utils/ |
D | diff.js | 111 _objIsEmpty(obj) { argument 112 return Object.keys(obj).length === 0 && obj.constructor === Object;
|