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

/frameworks/compile/mclinker/include/mcld/ADT/
H A DTreeAllocator.h63 replace(pClient);
78 /// replace - be the agent of client.
79 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.java809 public static CharSequence replace(CharSequence template, method in class:TextUtils
827 tb.replace(start, end, destinations[i]);
883 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.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/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.java1231 * Execute the previously prepared insert or replace using the bound values
1235 * way to use this class is to call insert() or replace().
1246 if (DEBUG) Log.v(TAG, "--- doing insert or replace in table " + mTableName);
1274 * Prepare the InsertHelper for a replace. The pattern for this is:
1300 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.cpp1744 bool replace, bool isId)
1795 if (overlay && replace) {
1810 bool replace, bool isId, const int32_t format)
1828 sp<Entry> e = getEntry(package, type, name, sourcePos, replace, params);
1839 status_t err = e->addToBag(sourcePos, bagKey, value, style, replace, isId, format);
3123 bool replace, bool isId, int32_t format)
3137 if (!replace) {
1737 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
1801 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
3120 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/core/java/android/webkit/
H A DWebViewCore.java636 int nativeClass, int oldStart, int oldEnd, String replace,
635 nativeReplaceTextfieldText( int nativeClass, int oldStart, int oldEnd, String replace, int newStart, int newEnd, int textGeneration) argument
H A DWebViewClassic.java234 editable.replace(0, editable.length(), text);
249 editable.replace(selectionStart, selectionEnd, text);
481 * @param text The new text to replace the changed text.
582 // Since the text has changed, do not allow the IME to replace the
7171 String replace, int newStart, int newEnd) {
7173 arg.mReplace = replace;
8187 // of date) state does not replace the new, valid state.
7170 replaceTextfieldText(int oldStart, int oldEnd, String replace, int newStart, int newEnd) argument
/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java3338 * already-installed application and replace it with our own
3826 + " renamed to replace old package " + pkgSetting.name;
4755 // replace the granted permissions of the system packages.
4769 private void grantPermissionsLPw(PackageParser.Package pkg, boolean replace) { argument
4778 if (replace) {
4919 if ((changedPermission || replace) && !ps.permissionsFixed &&
7816 boolean replace = false;
7882 replace = true;
7885 // on the device; we should replace it.
7886 replace
[all...]

Completed in 307 milliseconds