Searched refs:obj (Results 101 - 125 of 325) sorted by relevance

1234567891011>>

/frameworks/base/tests/BrowserTestPlugin/jni/event/
H A DEventPlugin.cpp53 PluginObject *obj = (PluginObject*) inst()->pdata; local
54 const int W = obj->window->width;
55 const int H = obj->window->height;
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DPropertyNode.java123 public boolean equals(Object obj) { argument
124 if (!(obj instanceof PropertyNode)) {
128 PropertyNode node = (PropertyNode)obj;
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DDataConnectionAc.java227 ApnSetting retVal = (ApnSetting) response.obj;
263 LinkProperties retVal = (LinkProperties) response.obj;
315 UpdateLinkPropertyResult retVal = (UpdateLinkPropertyResult)response.obj;
353 LinkCapabilities retVal = (LinkCapabilities) response.obj;
456 Collection<ApnContext> retVal = (Collection<ApnContext>)response.obj;
518 PendingIntent retVal = (PendingIntent) response.obj;
H A DIccFileHandler.java140 * ((AsyncResult)(onLoaded.obj)).result is the byte[]
158 * ((AsyncResult)(onLoaded.obj)).result is the byte[]
176 * @param onLoaded ((AsnyncResult)(onLoaded.obj)).result is the recordSize[]
195 * ((AsyncResult)(onLoaded.obj)).result is an ArrayList<byte[]>
212 * ((AsyncResult)(onLoaded.obj)).result is the byte[]
231 * ((AsyncResult)(onLoaded.obj)).result is the byte[]
249 * @param onComplete onComplete.obj will be an AsyncResult
250 * onComplete.obj.userObj will be a IccIoResult on success
305 ar = (AsyncResult) msg.obj;
316 ar = (AsyncResult) msg.obj;
[all...]
/frameworks/base/core/java/android/accessibilityservice/
H A DAccessibilityService.java327 AccessibilityEvent event = (AccessibilityEvent) message.obj;
339 (IAccessibilityServiceConnection) message.obj;
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothAudioGateway.java128 msg.obj = new IncomingConnectionInfo(
142 msg.obj = new IncomingConnectionInfo(
/frameworks/base/core/jni/android/graphics/
H A DColorFilter.cpp35 static void finalizer(JNIEnv* env, jobject clazz, SkColorFilter* obj, SkiaColorFilter* f) { argument
36 SkSafeUnref(obj);
/frameworks/base/libs/rs/
H A DrsFileA3D.cpp345 void FileA3D::appendToFile(ObjectBase *obj) { argument
346 if (!obj) {
354 indexEntry->mObjectName.setTo(obj->getName());
355 indexEntry->mType = obj->getClassId();
357 indexEntry->mRsObj = obj;
359 obj->serialize(mWriteStream);
371 ObjectBase *obj = fa3d->initializeFromEntry(index); local
372 //LOGV("Returning object with name %s", obj->getName());
374 return obj;
H A DrsFileA3D.h70 void appendToFile(ObjectBase *obj);
H A DrsContext.cpp535 void Context::assignName(ObjectBase *obj, const char *name, uint32_t len) { argument
536 rsAssert(!obj->getName());
537 obj->setName(name, len);
538 mNames.add(obj);
541 void Context::removeName(ObjectBase *obj) { argument
543 if (obj == mNames[ct]) {
639 void rsi_AssignName(Context *rsc, RsObjectBase obj, const char *name, size_t name_length) { argument
640 ObjectBase *ob = static_cast<ObjectBase *>(obj);
734 void rsaGetName(RsContext con, void * obj, const char **name) { argument
735 ObjectBase *ob = static_cast<ObjectBase *>(obj);
[all...]
/frameworks/ex/variablespeed/jni/
H A Dvariablespeed.cc171 #define OpenSL(obj, method, ...) \
173 LOG_OPENSL_API_CALL("OpenSL " #method "(" #obj ", " #__VA_ARGS__ ")"); \
174 SLresult result = (*obj)->method(obj, __VA_ARGS__); \
175 CheckSLResult("OpenSL " #method "(" #obj ", " #__VA_ARGS__ ")", result); \
179 #define VoidOpenSL(obj, method) \
181 LOG_OPENSL_API_CALL("OpenSL (void) " #method "(" #obj ")"); \
182 (*obj)->method(obj); \
186 #define OpenSL0(obj, metho
[all...]
/frameworks/base/core/java/com/android/internal/util/
H A DStateMachine.java1135 return (msg.what == SM_QUIT_CMD) && (msg.obj == mQuitObj);
1393 * what and obj.
1396 * @param obj is assigned to Message.obj.
1399 public final Message obtainMessage(int what, Object obj) argument
1403 return Message.obtain(mSmHandler, what, obj);
1425 * what, arg1, arg2 and obj
1430 * @param obj is assigned to Message.obj
1434 public final Message obtainMessage(int what, int arg1, int arg2, Object obj) argument
1454 sendMessage(int what, Object obj) argument
1484 sendMessageDelayed(int what, Object obj, long delayMillis) argument
1505 sendMessageAtFrontOfQueue(int what, Object obj) argument
[all...]
H A DAsyncService.java32 * msg.arg2 = startId, and msg.obj = intent.
101 msg.obj = intent;
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetHost.java57 msg.obj = views;
64 msg.obj = info;
84 updateAppWidgetView(msg.arg1, (RemoteViews)msg.obj);
88 onProviderChanged(msg.arg1, (AppWidgetProviderInfo)msg.obj);
/frameworks/base/core/java/android/net/
H A DRouteInfo.java155 public boolean equals(Object obj) { argument
156 if (this == obj) return true;
158 if (!(obj instanceof RouteInfo)) return false;
160 RouteInfo target = (RouteInfo) obj;
/frameworks/base/core/java/com/android/internal/os/
H A DLoggingPrintStream.java231 public synchronized void print(Object obj) { argument
232 builder.append(obj);
289 public synchronized void println(Object obj) { argument
290 builder.append(obj);
/frameworks/base/core/jni/
H A DBindTest.cpp146 /* native void setAll (Object obj, boolean bool, int i, String str, double d, long l) */
152 Object *obj = JARG_get_obj(1); local
159 JOBJ_set_obj(jthis, offset_mObj, obj);
171 /* native void compareAll (Object obj, boolean bool, int i, String str, double d, long l) */
177 Object *obj = JARG_get_obj(1); local
200 && (obj == JOBJ_get_obj(jthis, offset_mObj))
H A Dandroid_text_AndroidBidi.cpp28 static jint runBidi(JNIEnv* env, jobject obj, jint dir, jcharArray chsArray, argument
/frameworks/base/graphics/java/android/graphics/
H A DRegion.java331 public boolean equals(Object obj) { argument
332 if (obj == null || !(obj instanceof Region)) {
335 Region peer = (Region) obj;
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
H A DTestsListPreloaderThread.java66 mDoneMsg.obj = mTestsList;
/frameworks/base/tools/layoutlib/bridge/src/com/android/internal/textservice/
H A DITextServicesManager_Stub_Delegate.java39 public static ITextServicesManager asInterface(IBinder obj) { argument
40 // ignore the obj and return a fake interface implementation
/frameworks/base/wifi/java/android/net/wifi/
H A DSupplicantStateTracker.java167 StateChangeResult stateChangeResult = (StateChangeResult) message.obj;
217 StateChangeResult stateChangeResult = (StateChangeResult) message.obj;
255 StateChangeResult stateChangeResult = (StateChangeResult) message.obj;
297 StateChangeResult stateChangeResult = (StateChangeResult) message.obj;
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pDevice.java227 public boolean equals(Object obj) { argument
228 if (this == obj) return true;
229 if (!(obj instanceof WifiP2pDevice)) return false;
231 WifiP2pDevice other = (WifiP2pDevice) obj;
/frameworks/ex/carousel/java/com/android/ex/carousel/
H A DCarouselViewHelper.java147 mCarouselView.setTextureForItem(id, (Bitmap) msg.obj);
156 mCarouselView.setDetailTextureForItem(id, x, y, lx, ly, (Bitmap) msg.obj);
160 mCarouselView.setGeometryForItem(id, (Mesh) msg.obj);
164 mCarouselView.setMatrixForItem(id, (float[]) msg.obj);
/frameworks/base/core/java/android/widget/
H A DActivityChooserModel.java818 public boolean equals(Object obj) { argument
819 if (this == obj) {
822 if (obj == null) {
825 if (getClass() != obj.getClass()) {
828 HistoricalRecord other = (HistoricalRecord) obj;
887 public boolean equals(Object obj) { argument
888 if (this == obj) {
891 if (obj == null) {
894 if (getClass() != obj.getClass()) {
897 ActivityResolveInfo other = (ActivityResolveInfo) obj;
[all...]

Completed in 439 milliseconds

1234567891011>>