Home
last modified time | relevance | path

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

12

/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/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/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/ndk/platforms/android-9/include/
Djni.h539 jint Throw(jthrowable obj) in Throw()
540 { return functions->Throw(this, obj); } in Throw()
563 jobject NewGlobalRef(jobject obj) in NewGlobalRef()
564 { return functions->NewGlobalRef(this, obj); } in NewGlobalRef()
599 jclass GetObjectClass(jobject obj) in GetObjectClass()
600 { return functions->GetObjectClass(this, obj); } in GetObjectClass()
602 jboolean IsInstanceOf(jobject obj, jclass clazz) in IsInstanceOf()
603 { return functions->IsInstanceOf(this, obj, clazz); } in IsInstanceOf()
610 _jtype Call##_jname##Method(jobject obj, jmethodID methodID, ...) \
615 result = functions->Call##_jname##MethodV(this, obj, methodID, \
[all …]
/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/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/ndk/platforms/android-21/include/
Dstdatomic.h234 #define atomic_init(obj, value) __c11_atomic_init(obj, value) argument
241 #define atomic_init(obj, value) ((void)((obj)->__val = (value))) argument
323 #define atomic_is_lock_free(obj) \ argument
324 ((void)(obj), (_Bool)1)
326 #define atomic_is_lock_free(obj) \ argument
327 __c11_atomic_is_lock_free(sizeof(*(obj)))
329 #define atomic_is_lock_free(obj) \ argument
330 __atomic_is_lock_free(sizeof((obj)->__val), &(obj)->__val)
332 #define atomic_is_lock_free(obj) \ argument
333 ((void)(obj), sizeof((obj)->__val) <= sizeof(void *))
/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/
DCleanSpec.mk47 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/CorpApp_intermediates)
/development/samples/devbytes/animation/ListViewCellInsertion/src/com/example/android/insertingcells/
DInsertingCells.java83 ListItemObject obj = mValues[mItemNum % mValues.length]; in addRow() local
84 final ListItemObject newObj = new ListItemObject(obj.getTitle(), obj.getImgResource(), in addRow()
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()
/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/vndk/tools/header-checker/header-abi-util/include/
Dheader_abi_util.h101 static std::unique_ptr<SoFileParser> Create(const ObjectFile *obj);
119 ELFSoFileParser(const ELFObjectFile<T> *obj) : obj_(obj) {} in ELFSoFileParser() argument
/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/ndk/platforms/android-9/include/linux/
Daio_abi.h30 __u64 obj; member
/development/host/windows/usb/adb_winapi_test/
DSOURCES18 TARGETPATH = obj
37 ..\api\obj$(BUILD_ALT_DIR)\i386\AdbWinApi.lib
/development/tools/idegen/src/com/android/idegen/
DModule.java370 public boolean equals(Object obj) { in equals() argument
371 if (this == obj) { in equals()
374 if (obj == null || getClass() != obj.getClass()) { in equals()
377 Module other = (Module) obj; in equals()
/development/ndk/platforms/android-21/include/linux/
Daio_abi.h40 __u64 obj; member
/development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/
DWiFiChatFragment.java61 public void setChatManager(ChatManager obj) { in setChatManager() argument
62 chatManager = obj; in setChatManager()
DWiFiServiceDiscoveryActivity.java281 byte[] readBuf = (byte[]) msg.obj; in handleMessage()
289 Object obj = msg.obj; in handleMessage() local
290 (chatFragment).setChatManager((ChatManager) obj); in handleMessage()
/development/host/windows/usb/winusb/
DSOURCES18 TARGETPATH = obj
66 ..\api\obj$(BUILD_ALT_DIR)\i386\AdbWinApi.lib
/development/samples/browseable/JobScheduler/src/com.example.android.jobscheduler/service/
DMyJobService.java112 m.obj = params; in sendMessage()

12