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

/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/
H A Dbuild-release.py9 def replace(inputFile, pattern, newVal, ): function
10 print 'About to replace repo path to {0} in {1}'.format(newVal, inputFile)
25 replace(os.getcwd()+"/local.properties", r'(.*)LOCAL_REPO(.*)', 'LOCAL_REPO=')
26 replace(os.getcwd()+"/local.properties", r'(.*)LIBRARY_VERSION(.*)', 'LIBRARY_VERSION=')
H A Dbuild-local.py9 def replace(inputFile, pattern, newVal, ): function
10 print 'About to replace repo path to {0} in {1}'.format(newVal, inputFile)
51 replace(os.getcwd()+"/local.properties", r'(.*)LOCAL_REPO(.*)', 'LOCAL_REPO='+repo_path)
52 replace(os.getcwd()+"/local.properties", r'(.*)LIBRARY_VERSION(.*)', 'LIBRARY_VERSION='+library_version)
/frameworks/support/samples/SupportLeanbackShowcase/
H A Dbuild-release.py9 def replace(inputFile, pattern, newVal, ): function
10 print 'About to replace repo path to {0} in {1}'.format(newVal, inputFile)
25 replace(os.getcwd()+"/local.properties", r'(.*)LOCAL_REPO(.*)', 'LOCAL_REPO=')
26 replace(os.getcwd()+"/local.properties", r'(.*)LIBRARY_VERSION(.*)', 'LIBRARY_VERSION=')
H A Dbuild-local.py9 def replace(inputFile, pattern, newVal, ): function
10 print 'About to replace repo path to {0} in {1}'.format(newVal, inputFile)
51 replace(os.getcwd()+"/local.properties", r'(.*)LOCAL_REPO(.*)', 'LOCAL_REPO='+repo_path)
52 replace(os.getcwd()+"/local.properties", r'(.*)LIBRARY_VERSION(.*)', 'LIBRARY_VERSION='+library_version)
/frameworks/base/packages/Osu/src/com/android/hotspot2/omadm/
H A DMultiValueMap.java35 public T replace(String key, T oldValue, T newValue) { method in class:MultiValueMap
/frameworks/compile/mclinker/include/mcld/ADT/
H A DTreeAllocator.h60 replace(pClient);
74 /// replace - be the agent of client.
75 void replace(NodeFactory& pClient) { function in class:mcld::NodeFactory
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
H A DMultiValueMap.java37 public T replace(String key, T oldValue, T newValue) { method in class:MultiValueMap
/frameworks/base/core/java/android/text/
H A DEditable.java52 public Editable replace(int st, int en, CharSequence source, int start, int end); method in interface:Editable
55 * Convenience for replace(st, en, text, 0, text.length())
56 * @see #replace(int, int, CharSequence, int, int)
58 public Editable replace(int st, int en, CharSequence text); method in interface:Editable
61 * Convenience for replace(where, where, text, start, end)
62 * @see #replace(int, int, CharSequence, int, int)
67 * Convenience for replace(where, where, text, 0, text.length());
68 * @see #replace(int, int, CharSequence, int, int)
73 * Convenience for replace(st, en, "", 0, 0)
74 * @see #replace(in
[all...]
H A DSpannableStringBuilder.java219 return replace(where, where, tb, start, end);
224 return replace(where, where, tb, 0, tb.length());
229 SpannableStringBuilder ret = replace(start, end, "", 0, 0);
239 replace(0, length(), "", 0, 0);
269 return replace(length, length, text, 0, text.length());
290 return replace(length, length, text, start, end);
507 public SpannableStringBuilder replace(int start, int end, CharSequence tb) { method in class:SpannableStringBuilder
508 return replace(start, end, tb, 0, tb.length());
512 public SpannableStringBuilder replace(final int start, final int end, method in class:SpannableStringBuilder
514 checkRange("replace", star
[all...]
H A DTextUtils.java843 public static CharSequence replace(CharSequence template, method in class:TextUtils
861 tb.replace(start, end, destinations[i]);
917 ssb.replace(i, i+2, values[which]);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DArrayObjectAdapter.java138 * @param position The index of item to replace.
141 public void replace(int position, Object item) { method in class:ArrayObjectAdapter
/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/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DReplaceMethodCallsAdapter.java71 public void replace(MethodInformation mi) {
89 public void replace(MethodInformation mi) {
115 public void replace(MethodInformation mi) {
129 public void replace(MethodInformation mi) {
145 public void replace(MethodInformation mi) {
157 public void replace(MethodInformation mi) {
178 public void replace(MethodInformation mi) {
190 // or exception when instantiating the views, the IDE can replace it with a mock view
208 public void replace(MethodInformation mi) {
257 replacer.replace(m
290 void replace(MethodInformation mi); method in interface:ReplaceMethodCallsAdapter.MethodReplacer
[all...]
/frameworks/base/core/java/android/app/
H A DFragmentTransaction.java54 * Calls {@link #replace(int, Fragment, String)} with a null tag.
56 public abstract FragmentTransaction replace(@IdRes int containerViewId, Fragment fragment); method in class:FragmentTransaction
74 public abstract FragmentTransaction replace(@IdRes int containerViewId, Fragment fragment, method in class:FragmentTransaction
H A DBackStackRecord.java496 public FragmentTransaction replace(int containerViewId, Fragment fragment) { method in class:BackStackRecord
497 return replace(containerViewId, fragment, null);
500 public FragmentTransaction replace(int containerViewId, Fragment fragment, String tag) { method in class:BackStackRecord
/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/data-binding/compilerCommon/src/main/java/android/databinding/tool/util/
H A DXmlEditor.java75 replace(lines, toPosition(it.getStart()), toEndPosition(it.getStop()), "");
93 replace(lines, rootStartTag, rootEndTag, "");
97 replace(lines, endLayoutPositions.left, endLayoutPositions.right, "");
239 private static boolean replace(ArrayList<String> lines, Position start, Position end, method in class:XmlEditor
308 replace(lines, start, end, it.attrName.getText() + "=\"" + defaultVal + "\"");
309 } else if (replace(lines, start, end, tag)) {
363 String unescaped = unquoted.replace("\"", "\\\"").replace("\\`", "`");
/frameworks/support/fragment/java/android/support/v4/app/
H A DFragmentTransaction.java71 * Calls {@link #replace(int, Fragment, String)} with a null tag.
73 public abstract FragmentTransaction replace(@IdRes int containerViewId, Fragment fragment); method in class:FragmentTransaction
91 public abstract FragmentTransaction replace(@IdRes int containerViewId, Fragment fragment, method in class:FragmentTransaction
H A DBackStackRecord.java471 public FragmentTransaction replace(int containerViewId, Fragment fragment) { method in class:BackStackRecord
472 return replace(containerViewId, fragment, null);
476 public FragmentTransaction replace(int containerViewId, Fragment fragment, String tag) { method in class:BackStackRecord
/frameworks/base/core/java/android/database/
H A DDatabaseUtils.java1263 * Execute the previously prepared insert or replace using the bound values
1267 * way to use this class is to call insert() or replace().
1278 if (DEBUG) Log.v(TAG, "--- doing insert or replace in table " + mTableName);
1306 * Prepare the InsertHelper for a replace. The pattern for this is:
1332 public long replace(ContentValues values) { method in class:DatabaseUtils.InsertHelper
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDatabase.java1376 * @param table the table in which to replace the row
1388 public long replace(String table, String nullColumnHack, ContentValues initialValues) { method in class:SQLiteDatabase
1402 * @param table the table in which to replace the row
/frameworks/base/tools/aapt/
H A DResourceTable.cpp1887 bool replace, bool /* isId */)
1934 if (overlay && replace) {
1949 bool replace, bool isId, const int32_t format)
1967 sp<Entry> e = getEntry(package, type, name, sourcePos, replace, params);
1978 status_t err = e->addToBag(sourcePos, bagKey, value, style, replace, isId, format);
3546 bool replace, bool isId, int32_t format)
3560 if (!replace) {
1880 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 ) argument
1940 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
3543 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/widget/
H A DEditor.java354 void replace() { method in class:Editor
796 // is however useful to delete or paste to replace the entire content.
2010 // Show the IME to be able to replace text, except when selecting non editable text.
2129 replace();
2510 com.android.internal.R.string.replace);
2611 // SuggestionSpans are removed by replace: save them before
2893 // 3 ActionPopup [replace, suggestion, easyedit] (suggestionsPopup first hides the others)
3255 suggestionInfo.mText.replace(0, suggestionInfo.mText.length(), suggestion);
3777 com.android.internal.R.string.replace)
6073 // StringBuilder do not share an interface for replace/delet
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerService.java7062 * already-installed application and replace it with our own
7705 final String useMarker = path.replace('/', '@');
8279 + " renamed to replace old package " + pkgSetting.name;
9040 String oldMarkerPrefix = canonicalOldCodePath.getAbsolutePath().replace('/', '@');
9044 String newMarkerPrefix = canonicalNewCodePath.getAbsolutePath().replace('/', '@');
9053 markerSuffixes.add(updatedPathName.replace('/', '@'));
9921 // replace the granted permissions of the system packages.
9925 // Only replace for packages on requested volume
9927 final boolean replace = ((flags & UPDATE_PERMISSIONS_REPLACE_ALL) != 0)
9929 grantPermissionsLPw(pkg, replace, changingPk
9943 grantPermissionsLPw(PackageParser.Package pkg, boolean replace, String packageOfInterest) argument
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 1040 milliseconds