Searched refs:apply (Results 1 - 25 of 101) sorted by last modified time

12345

/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DOpReorderTest.java301 apply(items, mUpdateOps);
309 apply(clones, rewritten);
360 private void apply(List<Item> items, List<UpdateOp> updateOps) { method in class:OpReorderTest
/frameworks/volley/src/com/android/volley/
H A DRequestQueue.java178 public boolean apply(Request<?> request); method in interface:RequestQueue.RequestFilter
188 if (filter.apply(request)) {
205 public boolean apply(Request<?> request) {
/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DWebViewChromiumFactoryProvider.java153 mWebViewPrefs.edit().putInt(VERSION_CODE_PREF, currentVersion).apply();
/frameworks/support/v4/api21/android/support/v4/graphics/drawable/
H A DRoundedBitmapDrawable21.java53 Gravity.apply(gravity, bitmapWidth, bitmapHeight,
/frameworks/support/v4/ics/android/support/v4/media/session/
H A DMediaSessionCompatApi14.java74 editor.apply();
/frameworks/support/v4/java/android/support/v4/graphics/drawable/
H A DRoundedBitmapDrawableFactory.java57 GravityCompat.apply(gravity, bitmapWidth, bitmapHeight,
/frameworks/support/v4/java/android/support/v4/view/
H A DGravityCompat.java30 void apply(int gravity, int w, int h, Rect container, Rect outRect, int layoutDirection); method in interface:GravityCompat.GravityCompatImpl
31 void apply(int gravity, int w, int h, Rect container, int xAdj, int yAdj, method in interface:GravityCompat.GravityCompatImpl
44 public void apply(int gravity, int w, int h, Rect container, Rect outRect, method in class:GravityCompat.GravityCompatImplBase
46 Gravity.apply(gravity, w, h, container, outRect);
50 public void apply(int gravity, int w, int h, Rect container, int xAdj, int yAdj, method in class:GravityCompat.GravityCompatImplBase
52 Gravity.apply(gravity, w, h, container, xAdj, yAdj, outRect);
69 public void apply(int gravity, int w, int h, Rect container, Rect outRect, method in class:GravityCompat.GravityCompatImplJellybeanMr1
71 GravityCompatJellybeanMr1.apply(gravity, w, h, container, outRect, layoutDirection);
75 public void apply(int gravity, int w, int h, Rect container, int xAdj, int yAdj, method in class:GravityCompat.GravityCompatImplJellybeanMr1
77 GravityCompatJellybeanMr1.apply(gravit
130 public static void apply(int gravity, int w, int h, Rect container, method in class:GravityCompat
160 public static void apply(int gravity, int w, int h, Rect container, method in class:GravityCompat
[all...]
/frameworks/support/v4/jellybean-mr1/android/support/v4/view/
H A DGravityCompatJellybeanMr1.java29 public static void apply(int gravity, int w, int h, Rect container, Rect outRect, method in class:GravityCompatJellybeanMr1
31 Gravity.apply(gravity, w, h, container, outRect, layoutDirection);
34 public static void apply(int gravity, int w, int h, Rect container, int xAdj, int yAdj, method in class:GravityCompatJellybeanMr1
36 Gravity.apply(gravity, w, h, container, xAdj, yAdj, outRect, layoutDirection);
/frameworks/support/v4/kitkat/android/support/v4/media/session/
H A DMediaSessionCompatApi19.java43 editor.apply();
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DPhoneBase.java661 editor.apply();
H A DSubscriptionInfoUpdater.java370 editor.apply();
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCDMAPhone.java1666 editor.apply();
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGSMPhone.java949 editor.apply();
996 editor.apply();
1698 * Saves CLIR setting so that we can re-apply it as necessary
/frameworks/opt/timezonepicker/src/com/android/timezonepicker/
H A DTimeZoneResultAdapter.java234 prefs.edit().putString(KEY_RECENT_TIMEZONES, recentsString).apply();
/frameworks/multidex/library/src/android/support/multidex/
H A DMultiDexExtractor.java236 /* SharedPreferences.Editor doc says that apply() and commit() "atomically performs the
241 apply(edit);
379 sApplyMethod = cls.getMethod("apply");
385 private static void apply(SharedPreferences.Editor editor) { method in class:MultiDexExtractor
/frameworks/compile/mclinker/include/mcld/Fragment/
H A DRelocation.h59 /// @param pFragRef [in] the place to apply the relocation
96 void apply(Relocator& pRelocator);
/frameworks/compile/mclinker/lib/Fragment/
H A DRelocation.cpp47 /// @param pFragRef [in] the place to apply the relocation
102 void Relocation::apply(Relocator& pRelocator) function in class:Relocation
/frameworks/compile/mclinker/lib/Object/
H A DObjectLinker.cpp546 // apply all relocations of all inputs
739 // when producing relocatables, no need to apply relocation
743 // apply all relocations of all inputs
767 relocation->apply(*m_LDBackend.getRelocator());
773 // apply relocations created by relaxation
780 (*iter)->apply(*m_LDBackend.getRelocator());
836 // two relocations to apply to, and one of it is NONE type. The result
838 // in .exidx, there are usually an R_ARM_NONE and R_ARM_PREL31 apply to
877 // two relocations to apply to, and one of it is NONE type. The result
879 // in .exidx, there are usually an R_ARM_NONE and R_ARM_PREL31 apply t
[all...]
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsRelocator.cpp576 (*it)->apply(*this);
/frameworks/ex/common/java/com/android/common/
H A DOperationScheduler.java232 SharedPreferencesCompat.apply(mStorage.edit().putLong(name, time));
246 SharedPreferencesCompat.apply(
258 SharedPreferencesCompat.apply(mStorage.edit()
294 SharedPreferencesCompat.apply(
305 SharedPreferencesCompat.apply(mStorage.edit()
323 SharedPreferencesCompat.apply(editor);
333 SharedPreferencesCompat.apply(mStorage.edit().remove(PREFIX + "errorCount"));
343 SharedPreferencesCompat.apply(mStorage.edit().putBoolean(PREFIX + "permanentError", true));
351 SharedPreferencesCompat.apply(mStorage.edit().remove(PREFIX + "permanentError"));
H A DSharedPreferencesCompat.java25 * Reflection utils to call SharedPreferences$Editor.apply when possible,
26 * falling back to commit when apply isn't available.
33 sApplyMethod = cls.getMethod("apply");
39 public static void apply(SharedPreferences.Editor editor) { method in class:SharedPreferencesCompat
/frameworks/ex/common/java/com/android/common/content/
H A DSQLiteContentProvider.java231 results[i] = operation.apply(this, results, i);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeSharedPreferences.java123 public void apply() {
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DLocalPreferences.java38 .putBoolean(KEY_ADVANCED_DEVICES, display).apply();
43 .putBoolean(KEY_FILE_SIZE, display).apply();
H A DMimePredicate.java36 public boolean apply(DocumentInfo doc) { method in class:MimePredicate

Completed in 731 milliseconds

12345