Searched defs:obj (Results 76 - 100 of 351) sorted by relevance

1234567891011>>

/frameworks/rs/
H A DrsApiFileA3D.cpp30 ObjectBase *obj = fa3d->initializeFromEntry(index); local
31 //ALOGV("Returning object with name %s", obj->getName());
33 return obj;
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDecoderBase.cpp151 sp<RefBase> obj; local
152 CHECK(msg->findObject("renderer", &obj));
153 onSetRenderer(static_cast<Renderer *>(obj.get()));
/frameworks/base/core/java/android/bluetooth/le/
H A DAdvertiseData.java113 public boolean equals(Object obj) { argument
114 if (this == obj) {
117 if (obj == null || getClass() != obj.getClass()) {
120 AdvertiseData other = (AdvertiseData) obj;
/frameworks/base/core/java/android/content/
H A DComponentName.java285 public boolean equals(Object obj) { argument
287 if (obj != null) {
288 ComponentName other = (ComponentName)obj;
/frameworks/base/core/java/android/content/pm/
H A DSignature.java204 public boolean equals(Object obj) { argument
206 if (obj != null) {
207 Signature other = (Signature)obj;
/frameworks/base/core/java/android/content/res/
H A DResourcesKey.java106 public boolean equals(Object obj) { argument
107 if (!(obj instanceof ResourcesKey)) {
111 ResourcesKey peer = (ResourcesKey) obj;
/frameworks/base/core/java/android/hardware/camera2/params/
H A DFace.java254 private static void checkNotNull(String name, Object obj) { argument
255 if (obj == null) {
260 private static void checkNull(String name, Object obj) { argument
261 if (obj != null) {
H A DRggbChannelVector.java167 public boolean equals(final Object obj) { argument
168 if (obj == null) {
170 } else if (this == obj) {
172 } else if (obj instanceof RggbChannelVector) {
173 final RggbChannelVector other = (RggbChannelVector) obj;
/frameworks/base/core/java/android/hardware/soundtrigger/
H A DSoundTriggerModule.java149 (SoundTrigger.RecognitionEvent)msg.obj);
155 (SoundTrigger.SoundModelEvent)msg.obj);
185 int what, int arg1, int arg2, Object obj) {
195 Message m = handler.obtainMessage(what, arg1, arg2, obj);
184 postEventFromNative(Object module_ref, int what, int arg1, int arg2, Object obj) argument
/frameworks/base/core/java/android/net/
H A DDhcpResults.java99 public boolean equals(Object obj) { argument
100 if (this == obj) return true;
102 if (!(obj instanceof DhcpResults)) return false;
104 DhcpResults target = (DhcpResults)obj;
106 return super.equals((StaticIpConfiguration) obj) &&
H A DNetworkIdentity.java77 public boolean equals(Object obj) { argument
78 if (obj instanceof NetworkIdentity) {
79 final NetworkIdentity ident = (NetworkIdentity) obj;
H A DNetworkPolicy.java164 public boolean equals(Object obj) { argument
165 if (obj instanceof NetworkPolicy) {
166 final NetworkPolicy other = (NetworkPolicy) obj;
/frameworks/base/core/java/android/print/
H A DPrintDocumentInfo.java235 public boolean equals(Object obj) { argument
236 if (this == obj) {
239 if (obj == null) {
242 if (getClass() != obj.getClass()) {
245 PrintDocumentInfo other = (PrintDocumentInfo) obj;
/frameworks/base/core/java/android/printservice/
H A DPrintServiceInfo.java275 public boolean equals(Object obj) { argument
276 if (this == obj) {
279 if (obj == null) {
282 if (getClass() != obj.getClass()) {
285 PrintServiceInfo other = (PrintServiceInfo) obj;
/frameworks/base/core/java/android/util/
H A DRational.java234 * @param obj a reference to another object
239 public boolean equals(Object obj) { argument
240 return obj instanceof Rational && equals((Rational) obj);
/frameworks/base/core/java/android/view/inputmethod/
H A DSparseRectFArray.java95 public boolean equals(Object obj){ argument
96 if (obj == null) {
99 if (this == obj) {
102 if (!(obj instanceof SparseRectFArray)) {
105 final SparseRectFArray that = (SparseRectFArray) obj;
/frameworks/base/core/jni/android/graphics/
H A DCamera.cpp11 static void Camera_constructor(JNIEnv* env, jobject obj) { argument
13 env->SetLongField(obj, gNativeInstanceFieldID, reinterpret_cast<jlong>(view));
16 static void Camera_destructor(JNIEnv* env, jobject obj) { argument
17 jlong viewHandle = env->GetLongField(obj, gNativeInstanceFieldID);
22 static void Camera_save(JNIEnv* env, jobject obj) { argument
23 jlong viewHandle = env->GetLongField(obj, gNativeInstanceFieldID);
28 static void Camera_restore(JNIEnv* env, jobject obj) { argument
29 jlong viewHandle = env->GetLongField(obj, gNativeInstanceFieldID);
34 static void Camera_translate(JNIEnv* env, jobject obj, argument
36 jlong viewHandle = env->GetLongField(obj, gNativeInstanceFieldI
41 Camera_rotateX(JNIEnv* env, jobject obj, jfloat degrees) argument
47 Camera_rotateY(JNIEnv* env, jobject obj, jfloat degrees) argument
53 Camera_rotateZ(JNIEnv* env, jobject obj, jfloat degrees) argument
59 Camera_rotate(JNIEnv* env, jobject obj, jfloat x, jfloat y, jfloat z) argument
67 Camera_setLocation(JNIEnv* env, jobject obj, jfloat x, jfloat y, jfloat z) argument
73 Camera_getLocationX(JNIEnv* env, jobject obj) argument
79 Camera_getLocationY(JNIEnv* env, jobject obj) argument
85 Camera_getLocationZ(JNIEnv* env, jobject obj) argument
91 Camera_getMatrix(JNIEnv* env, jobject obj, jlong matrixHandle) argument
98 Camera_applyToCanvas(JNIEnv* env, jobject obj, jlong canvasHandle) argument
105 Camera_dotWithNormal(JNIEnv* env, jobject obj, jfloat x, jfloat y, jfloat z) argument
[all...]
/frameworks/base/location/java/android/location/
H A DGeofence.java164 public boolean equals(Object obj) { argument
165 if (this == obj)
167 if (obj == null)
169 if (!(obj instanceof Geofence))
171 Geofence other = (Geofence) obj;
/frameworks/base/media/java/android/media/
H A DAudioFocusInfo.java129 public boolean equals(Object obj) { argument
130 if (this == obj)
132 if (obj == null)
134 if (getClass() != obj.getClass())
136 AudioFocusInfo other = (AudioFocusInfo) obj;
/frameworks/base/media/java/android/media/tv/
H A DTvStreamConfig.java166 public boolean equals(Object obj) { argument
167 if (obj == null) return false;
168 if (!(obj instanceof TvStreamConfig)) return false;
170 TvStreamConfig config = (TvStreamConfig) obj;
/frameworks/base/services/core/jni/
H A Dcom_android_server_HardwarePropertiesManagerService.cpp54 static void nativeInit(JNIEnv* env, jobject obj) { argument
H A Dcom_android_server_power_PowerManagerService.cpp103 static void nativeInit(JNIEnv* env, jobject obj) { argument
104 gPowerManagerServiceObj = env->NewGlobalRef(obj);
/frameworks/base/telecomm/java/android/telecom/
H A DLog.java219 private static String getPrefixFromObject(Object obj) { argument
220 return obj == null ? "<null>" : obj.getClass().getSimpleName();
/frameworks/base/telephony/java/android/telephony/
H A DPreciseCallState.java279 public boolean equals(Object obj) { argument
280 if (this == obj) {
283 if (obj == null) {
286 if (getClass() != obj.getClass()) {
289 PreciseCallState other = (PreciseCallState) obj;
H A DPreciseDataConnectionState.java204 public boolean equals(Object obj) { argument
205 if (this == obj) {
208 if (obj == null) {
211 if (getClass() != obj.getClass()) {
214 PreciseDataConnectionState other = (PreciseDataConnectionState) obj;

Completed in 683 milliseconds

1234567891011>>