Home
last modified time | relevance | path

Searched refs:old (Results 1 – 25 of 43) sorted by relevance

12

/frameworks/base/core/java/android/text/style/
DStyleSpan.java84 Typeface old = paint.getTypeface(); in apply() local
85 if (old == null) { in apply()
88 oldStyle = old.getStyle(); in apply()
94 if (old == null) { in apply()
97 tf = Typeface.create(old, want); in apply()
DTypefaceSpan.java76 Typeface old = paint.getTypeface(); in apply() local
77 if (old == null) { in apply()
80 oldStyle = old.getStyle(); in apply()
/frameworks/base/opengl/libagl/
DTextureObjectManager.cpp64 void EGLTextureObject::copyParameters(const sp<EGLTextureObject>& old) in copyParameters() argument
66 wraps = old->wraps; in copyParameters()
67 wrapt = old->wrapt; in copyParameters()
68 min_filter = old->min_filter; in copyParameters()
69 mag_filter = old->mag_filter; in copyParameters()
70 memcpy(crop_rect, old->crop_rect, sizeof(crop_rect)); in copyParameters()
71 generate_mipmap = old->generate_mipmap; in copyParameters()
72 direct = old->direct; in copyParameters()
292 const sp<EGLTextureObject>& old = mTextures.valueAt(index); in replaceTexture() local
293 const uint32_t refs = old->getStrongCount(); in replaceTexture()
[all …]
DTextureObjectManager.h62 void copyParameters(const sp<EGLTextureObject>& old);
/frameworks/base/core/java/android/text/method/
DPasswordTransformationMethod.java103 Visible[] old = sp.getSpans(0, sp.length(), Visible.class); in onTextChanged() local
104 for (int i = 0; i < old.length; i++) { in onTextChanged()
105 sp.removeSpan(old[i]); in onTextChanged()
128 Visible[] old = sp.getSpans(0, sp.length(), Visible.class); in onFocusChanged() local
129 for (int i = 0; i < old.length; i++) { in onFocusChanged()
130 sp.removeSpan(old[i]); in onFocusChanged()
DQwertyKeyListener.java296 String old = new String(repl[0].mText); in onKeyDown() local
307 content.replace(st, en, old); in onKeyDown()
/frameworks/base/core/java/android/os/
DConditionVariable.java65 boolean old = mCondition; in open()
67 if (!old) { in open()
/frameworks/base/core/java/android/view/
DWindowManagerImpl.java160 Object[] old = mViews; in addView() local
162 System.arraycopy(old, 0, mViews, 0, index-1); in addView()
163 old = mRoots; in addView()
165 System.arraycopy(old, 0, mRoots, 0, index-1); in addView()
166 old = mParams; in addView()
168 System.arraycopy(old, 0, mParams, 0, index-1); in addView()
/frameworks/base/services/java/com/android/server/
DNotificationManagerService.java620 NotificationRecord old = null; in enqueueNotificationWithTag() local
626 old = mNotificationList.remove(index); in enqueueNotificationWithTag()
629 if (old != null) { in enqueueNotificationWithTag()
631 old.notification.flags&Notification.FLAG_FOREGROUND_SERVICE; in enqueueNotificationWithTag()
668 if (old != null && old.statusBarKey != null) { in enqueueNotificationWithTag()
669 r.statusBarKey = old.statusBarKey; in enqueueNotificationWithTag()
691 if (old != null && old.statusBarKey != null) { in enqueueNotificationWithTag()
694 mStatusBarService.removeIcon(old.statusBarKey); in enqueueNotificationWithTag()
704 && (!(old != null in enqueueNotificationWithTag()
753 mLights.remove(old); in enqueueNotificationWithTag()
[all …]
DKeyInputQueue.java914 private static final int makeMetaState(int keycode, boolean down, int old) { in makeMetaState() argument
933 return old; in makeMetaState()
936 & (down ? (old | mask) : (old & ~mask)); in makeMetaState()
/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
Dmistream.h144 …ine istream_iterator operator++ (int) { istream_iterator old (*this); operator++(); return (old); }
145 …ine istream_iterator operator-- (int) { istream_iterator old (*this); operator--(); return (old); }
Dutf8.h98 …nline utf8in_iterator operator++ (int) { utf8in_iterator old (*this); operator++(); return (old); }
/frameworks/base/tools/aidl/
Daidl.cpp309 Type* old = NAMES.Find(type->QualifiedName()); local
310 if (old == NULL) {
334 if (old->Kind() == Type::BUILT_IN) {
340 else if (type->Kind() != old->Kind()) {
341 const char* oldKind = kind_to_string(old->Kind());
348 old->DeclFile().c_str(), old->DeclLine(), oldKind);
518 method_type* old = methodNames[m->name.data]; local
520 filename, old->name.lineno);
/frameworks/base/tests/AndroidTests/src/com/android/unit_tests/
DTimeUtilsTest.java73 String[] old = new String[] { in testOld() local
77 for (String name : old) { in testOld()
/frameworks/base/core/java/android/app/
DLocalActivityManager.java283 LocalActivityRecord old = mResumed; in startActivity() local
287 if (old != null && old != r && mCurState == RESUMED) { in startActivity()
288 moveToState(old, STARTED); in startActivity()
DActivityThread.java1026 ConnectionInfo old; in death() local
1030 old = mActiveConnections.remove(name); in death()
1031 if (old == null || old.binder != service) { in death()
1036 old.binder.unlinkToDeath(old.deathMonitor, 0); in death()
1047 ConnectionInfo old; in doConnected() local
1051 old = mActiveConnections.get(name); in doConnected()
1052 if (old != null && old.binder == service) { in doConnected()
1078 if (old != null) { in doConnected()
1079 old.binder.unlinkToDeath(old.deathMonitor, 0); in doConnected()
1084 if (old != null) { in doConnected()
/frameworks/base/media/jni/
Dandroid_media_MediaRecorder.cpp139 sp<MediaRecorder> old = (MediaRecorder*)env->GetIntField(thiz, fields.context); in setMediaRecorder() local
143 if (old != 0) { in setMediaRecorder()
144 old->decStrong(thiz); in setMediaRecorder()
147 return old; in setMediaRecorder()
Dandroid_media_MediaPlayer.cpp119 sp<MediaPlayer> old = (MediaPlayer*)env->GetIntField(thiz, fields.context); in setMediaPlayer() local
123 if (old != 0) { in setMediaPlayer()
124 old->decStrong(thiz); in setMediaPlayer()
127 return old; in setMediaPlayer()
Dandroid_media_MediaMetadataRetriever.cpp72 MediaMetadataRetriever *old = (MediaMetadataRetriever*) env->GetIntField(thiz, fields.context); in setRetriever() local
/frameworks/base/core/java/android/text/util/
DLinkify.java201 URLSpan[] old = text.getSpans(0, text.length(), URLSpan.class); in addLinks() local
203 for (int i = old.length - 1; i >= 0; i--) { in addLinks()
204 text.removeSpan(old[i]); in addLinks()
/frameworks/base/cmds/bmgr/src/com/android/commands/bmgr/
DBmgr.java178 String old = mBmgr.selectBackupTransport(which); in doTransport() local
179 if (old == null) { in doTransport()
183 System.out.println("Selected transport " + which + " (formerly " + old + ")"); in doTransport()
/frameworks/base/docs/html/
Doffline.jd31 <code><em>&lt;sdk_dir>/</em>docs/</code> directory (old docs are replaced).</p>
/frameworks/base/docs/html/sdk/1.5_r1/
Dupgrading.jd229 then you probably need to delete your old <code>R.java</code> or your old auto-generated
254 $ cp build.xml build.xml.old
271 the old <code>R.java</code> and old auto-generated AIDL java files from the
/frameworks/base/docs/html/sdk/1.5_r3/
Dupgrading.jd231 then you probably need to delete your old <code>R.java</code> or your old auto-generated
256 $ cp build.xml build.xml.old
273 the old <code>R.java</code> and old auto-generated AIDL java files from the
/frameworks/base/docs/html/sdk/1.5_r2/
Dupgrading.jd229 then you probably need to delete your old <code>R.java</code> or your old auto-generated
254 $ cp build.xml build.xml.old
271 the old <code>R.java</code> and old auto-generated AIDL java files from the

12