Home
last modified time | relevance | path

Searched refs:obj (Results 1 – 25 of 44) sorted by relevance

12

/development/tools/winscope/src/
Dtransform.js22 function transform({obj, kind, name, children, timestamp, rect, bounds, highlight, rects_transform,… property
30 var childs = call(childrenFunc, obj);
60 var kindResolved = call(kind, obj);
61 var nameResolved = call(name, obj);
62 var rectResolved = call(rect, obj);
65 call(stableId, obj);
71 obj: obj, property
72 timestamp: call(timestamp, obj),
74 …bounds: call(bounds, obj) || transformed_children.map((e) => e.bounds).find((e) => true) || undefi…
77 highlight: call(highlight, obj),
[all …]
Dtransform_wm.js43 obj: entry, property
58 obj: entry, property
69 obj: entry, property
80 obj: entry, property
91 obj: entry, property
102 obj: entry, property
113 obj: entry, property
124 obj: entry, property
140 obj: entry, property
155 obj: entry, property
[all …]
Dtransform_wl.js35 obj: layer, property
54 obj: cntnr, property
71 obj: {name: "Output State", fullBounds: fullBounds}, property
84 obj: entry, property
97 obj: entries, property
Dtransform_transaction.js21 obj: transaction, property
33 obj: item, property
46 obj: entry, property
56 obj: entries, property
Dtransform_sf.js238 obj: layer, property
299 idToTransformed[n.obj.id] = n;
307 obj: {}, property
328 obj: entry, property
341 obj: entries, property
/development/apps/OBJViewer/com/android/objviewer/
DOBJViewer.java177 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/vndk/tools/definition-tool/tests/
Dcompat.py65 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/
DExpandingCells.java60 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/samples/SampleSyncAdapter/samplesyncadapter_server/
Dweb_services.py296 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/
Dso_file_parser.cpp63 ELFSoFileParser(const llvm::object::ELFObjectFile<T> *obj);
88 ELFSoFileParser<T>::ELFSoFileParser(const llvm::object::ELFObjectFile<T> *obj) { in ELFSoFileParser() argument
89 assert(obj != nullptr); in ELFSoFileParser()
93 for (auto symbol_it : obj->getDynamicSymbolIterators()) { in ELFSoFileParser()
94 const Elf_Sym *elf_sym = obj->getSymbol(symbol_it.getRawDataRefImpl()); in ELFSoFileParser()
/development/samples/UiAutomator/src/com/android/test/uiautomator/demos/
DSetTwoMinuteAlarm.java136 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()
DLogBuildNumber.java116 UiObject obj = appsSettingsList.getChildByText(SettingsHelper.LIST_VIEW_ITEM, name); in selectSettingsFor() local
117 obj.click(); in selectSettingsFor()
/development/host/windows/usb/api/
Dadb_api.cpp108 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/samples/devbytes/animation/ListViewCellInsertion/src/com/example/android/insertingcells/
DCustomArrayAdapter.java91 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()
DInsertingCells.java83 ListItemObject obj = mValues[mItemNum % mValues.length]; in addRow() local
84 final ListItemObject newObj = new ListItemObject(obj.getTitle(), obj.getImgResource(), in addRow()
/development/samples/USB/AdbTest/src/com/android/adb/
DAdbTestActivity.java83 m.obj = s; in log()
110 m.obj = device; in deviceOnline()
201 appendLog((String)msg.obj);
204 handleDeviceOnline((AdbDevice)msg.obj);
/development/tools/idegen/src/com/android/idegen/
DModule.java371 public boolean equals(Object obj) { in equals() argument
372 if (this == obj) { in equals()
375 if (obj == null || getClass() != obj.getClass()) { in equals()
378 Module other = (Module) obj; in equals()
/development/build/
Dsdk.atree65 ${OUT_DIR}/target/common/obj/PACKAGING/framework-doc-stubs_generated-api-versions.xml platform-t…
66 ${OUT_DIR}/target/common/obj/PACKAGING/framework-doc-stubs_annotations.zip platform-tools/api/ann…
146 ${OUT_DIR}/host/common/obj/JAVA_LIBRARIES/shrinkedAndroid_intermediates/shrinkedAndroid.jar build-…
151 ${OUT_DIR}/target/common/obj/JAVA_LIBRARIES/core-lambda-stubs_intermediates/classes.jar build…
164 ${OUT_DIR}/target/common/obj/PACKAGING/android_jar_intermediates/android.jar platforms/$…
165 ${OUT_DIR}/target/common/obj/PACKAGING/android_jar_intermediates/android-stubs-src.jar platforms/$…
168 ${OUT_DIR}/target/common/obj/JAVA_LIBRARIES/core-current-stubs-for-system-modules_intermediates/cla…
172 ${OUT_DIR}/target/common/obj/JAVA_LIBRARIES/org.apache.http.legacy.stubs_intermediates/classes.jar …
174 ${OUT_DIR}/target/common/obj/JAVA_LIBRARIES/android_uiautomator_intermediates/classes.jar platf…
176 ${OUT_DIR}/target/common/obj/JAVA_LIBRARIES/android.test.mock.stubs_intermediates/classes.jar pla…
[all …]
/development/scripts/
Dcargo2android.py907 for obj in self.objs:
908 self.write(' "' + short_out_name(self.pkg, obj2cc[obj].src) + '",')
911 dflags = obj2cc[obj].dflags
912 fflags = obj2cc[obj].fflags
946 self.obj = ''
966 self.obj = unquote(args[i])[2:]
973 self.obj = unquote(args[i])
994 self.runner.pkg_obj2cc[self.pkg][self.obj] = self
1015 self.write('// obj = %s' % short_out_name(self.pkg, self.obj))
1257 for obj in sorted(obj2cc.keys()):
[all …]
/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
DProjector.java41 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/samples/LceDemo/src/com/example/android/lce/
DLceDemoActivity.java56 text.append((String)msg.obj); in onCreate()
68 message.obj = "New downlink capacity received: " + in onCreate()
/development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/
DWiFiServiceDiscoveryActivity.java348 byte[] readBuf = (byte[]) msg.obj; in handleMessage()
356 Object obj = msg.obj; in handleMessage() local
357 (chatFragment).setChatManager((ChatManager) obj); in handleMessage()
DWiFiChatFragment.java60 public void setChatManager(ChatManager obj) { in setChatManager() argument
61 chatManager = obj; in setChatManager()
/development/host/windows/usb/adb_winapi_test/
DSOURCES18 TARGETPATH = obj
37 ..\api\obj$(BUILD_ALT_DIR)\i386\AdbWinApi.lib
/development/
DCleanSpec.mk47 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/CorpApp_intermediates)

12