Home
last modified time | relevance | path

Searched refs:obj (Results 1 – 25 of 48) 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
59 obj: entry, property
71 obj: entry, property
84 obj: entry, property
95 obj: entry, property
107 obj: entry, property
118 obj: entry, property
129 obj: entry, property
148 obj: entry, property
158 obj: entry, property
[all …]
Dtransform_sys_ui.js21 obj: edgeBack, property
30 obj: sysui, property
41 obj: entry, property
54 obj: entries, property
Dtransform_transaction.js21 obj: transaction, property
33 obj: item, property
46 obj: entry, property
56 obj: entries, property
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_launcher.js21 obj: launcher, property
30 obj: entry, property
43 obj: entries, property
Dtransform_sf.js83 obj: layer, property
143 idToTransformed[n.obj.id] = n;
151 obj: {}, property
173 obj: entry, property
186 obj: entries, property
/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/ndk/
D.gitignore2 samples/*/obj/
5 platforms/android-*/samples/*/obj
8 tests/*/obj/
/development/host/windows/
D.gitignore7 usb/api/obj*
10 usb/adb_winapi_test/obj*
13 usb/winusb/obj*
/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/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/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/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/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/
DCleanSpec.mk47 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/CorpApp_intermediates)
/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/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/scripts/
Dcargo2android.py680 for obj in self.objs:
681 self.write(' "' + short_out_name(self.pkg, obj2cc[obj].src) + '",')
684 dflags = obj2cc[obj].dflags
685 fflags = obj2cc[obj].fflags
719 self.obj = ''
739 self.obj = unquote(args[i])[2:]
746 self.obj = unquote(args[i])
767 self.runner.pkg_obj2cc[self.pkg][self.obj] = self
788 self.write('// obj = %s' % short_out_name(self.pkg, self.obj))
921 for obj in sorted(obj2cc.keys()):
[all …]
/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()

12