Searched defs:replace (Results 1 - 15 of 15) sorted by relevance

/frameworks/compile/mclinker/include/mcld/ADT/
H A DTreeAllocator.h61 replace(pClient);
76 /// replace - be the agent of client.
77 void replace(NodeFactory& pClient) { function in class:mcld::NodeFactory
/frameworks/base/core/java/android/text/
H A DEditable.java48 public Editable replace(int st, int en, CharSequence source, int start, int end); method in interface:Editable
51 * Convenience for replace(st, en, text, 0, text.length())
52 * @see #replace(int, int, CharSequence, int, int)
54 public Editable replace(int st, int en, CharSequence text); method in interface:Editable
57 * Convenience for replace(where, where, text, start, end)
58 * @see #replace(int, int, CharSequence, int, int)
63 * Convenience for replace(where, where, text, 0, text.length());
64 * @see #replace(int, int, CharSequence, int, int)
69 * Convenience for replace(st, en, "", 0, 0)
70 * @see #replace(in
[all...]
H A DSpannableStringBuilder.java202 return replace(where, where, tb, start, end);
207 return replace(where, where, tb, 0, tb.length());
212 SpannableStringBuilder ret = replace(start, end, "", 0, 0);
222 replace(0, length(), "", 0, 0);
247 return replace(length, length, text, 0, text.length());
253 return replace(length, length, text, start, end);
434 public SpannableStringBuilder replace(int start, int end, CharSequence tb) { method in class:SpannableStringBuilder
435 return replace(start, end, tb, 0, tb.length());
439 public SpannableStringBuilder replace(final int start, final int end, method in class:SpannableStringBuilder
441 checkRange("replace", star
[all...]
H A DTextUtils.java825 public static CharSequence replace(CharSequence template, method in class:TextUtils
843 tb.replace(start, end, destinations[i]);
899 ssb.replace(i, i+2, values[which]);
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
H A DTweener.java109 replace(props, object); // Cancel all animators for given object
163 private static void replace(ArrayList<PropertyValuesHolder> props, Object... args) { method in class:Tweener
/frameworks/base/core/java/android/app/
H A DFragmentTransaction.java41 * Calls {@link #replace(int, Fragment, String)} with a null tag.
43 public abstract FragmentTransaction replace(int containerViewId, Fragment fragment); method in class:FragmentTransaction
61 public abstract FragmentTransaction replace(int containerViewId, Fragment fragment, String tag); method in class:FragmentTransaction
H A DBackStackRecord.java421 public FragmentTransaction replace(int containerViewId, Fragment fragment) { method in class:BackStackRecord
422 return replace(containerViewId, fragment, null);
425 public FragmentTransaction replace(int containerViewId, Fragment fragment, String tag) { method in class:BackStackRecord
/frameworks/base/core/java/android/text/method/
H A DCharacterPickerDialog.java93 private void replaceCharacterAndClose(CharSequence replace) { argument
96 mText.insert(selEnd, replace);
98 mText.replace(selEnd - 1, selEnd, replace);
/frameworks/base/core/java/com/android/internal/widget/
H A DDrawableHolder.java68 * @param replace if true, replace the current animation with this one.
71 String property, float toValue, boolean replace) {
73 if (replace) removeAnimationFor(property);
79 this.addAnimation(anim, replace);
70 addAnimTo(long duration, long delay, String property, float toValue, boolean replace) argument
/frameworks/support/v4/java/android/support/v4/app/
H A DFragmentTransaction.java55 * Calls {@link #replace(int, Fragment, String)} with a null tag.
57 public abstract FragmentTransaction replace(int containerViewId, Fragment fragment); method in class:FragmentTransaction
75 public abstract FragmentTransaction replace(int containerViewId, Fragment fragment, String tag); method in class:FragmentTransaction
H A DBackStackRecord.java420 public FragmentTransaction replace(int containerViewId, Fragment fragment) { method in class:BackStackRecord
421 return replace(containerViewId, fragment, null);
424 public FragmentTransaction replace(int containerViewId, Fragment fragment, String tag) { method in class:BackStackRecord
/frameworks/base/core/java/android/database/
H A DDatabaseUtils.java1243 * Execute the previously prepared insert or replace using the bound values
1247 * way to use this class is to call insert() or replace().
1258 if (DEBUG) Log.v(TAG, "--- doing insert or replace in table " + mTableName);
1286 * Prepare the InsertHelper for a replace. The pattern for this is:
1312 public long replace(ContentValues values) { method in class:DatabaseUtils.InsertHelper
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDatabase.java1371 * @param table the table in which to replace the row
1383 public long replace(String table, String nullColumnHack, ContentValues initialValues) { method in class:SQLiteDatabase
1396 * @param table the table in which to replace the row
/frameworks/base/tools/aapt/
H A DResourceTable.cpp1806 bool replace, bool isId)
1857 if (overlay && replace) {
1872 bool replace, bool isId, const int32_t format)
1890 sp<Entry> e = getEntry(package, type, name, sourcePos, replace, params);
1901 status_t err = e->addToBag(sourcePos, bagKey, value, style, replace, isId, format);
3189 bool replace, bool isId, int32_t format)
3203 if (!replace) {
1799 startBag(const SourcePos& sourcePos, const String16& package, const String16& type, const String16& name, const String16& bagParent, const ResTable_config* params, bool overlay, bool replace, bool isId) argument
1863 addBag(const SourcePos& sourcePos, const String16& package, const String16& type, const String16& name, const String16& bagParent, const String16& bagKey, const String16& value, const Vector<StringPool::entry_style_span>* style, const ResTable_config* params, bool replace, bool isId, const int32_t format) argument
3186 addToBag(const SourcePos& sourcePos, const String16& key, const String16& value, const Vector<StringPool::entry_style_span>* style, bool replace, bool isId, int32_t format) argument
/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java3701 * already-installed application and replace it with our own
4327 + " renamed to replace old package " + pkgSetting.name;
5444 // replace the granted permissions of the system packages.
5458 private void grantPermissionsLPw(PackageParser.Package pkg, boolean replace) { argument
5467 if (replace) {
5572 if ((changedPermission || replace) && !ps.permissionsFixed &&
8824 killApplication(packageName, oldPkg.applicationInfo.uid, "replace sys pkg");
8978 boolean replace = false;
9045 replace = true;
9050 // on the device; we should replace i
[all...]

Completed in 3662 milliseconds